/*移动端通用*/
@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    border: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 去掉ios默认 */
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling : touch
}

body {
    font-family: "Microsoft YaHei", "宋体", Arial, sans-serif;
    max-width: 750px;
    margin: 0 auto;
    overflow-x: hidden;
    color: #333333;
    font-size: 14px;
    -webkit-text-size-adjust: 100% !important
}

a {
    color: inherit;
    /*继承父级*/
    text-decoration: none
}

a:link,
a:active,
a:visited,
a:hover {
    border: none;
    outline: none
}

dl,
ol,
ul {
    list-style-type: none
}

input{
    outline: none;
    -moz-appearance:none;
    vertical-align: middle
}

select {
    outline: none;
    -moz-appearance:none;
    -webkit-appearance: none;
    vertical-align: middle
}

button {
    border: none;
    background: white
}

textarea {
    -webkit-appearance: none;
    resize: none
}

/* Chrome/Opera/Safari */
::-webkit-input-placeholder {
    color: #999999;
}

/* Firefox 19+ */
::-moz-placeholder {
    color: #999999;
}

/* Firefox 19+ */
:-moz-placeholder {
    color: #999999;
}

/* IE 10+ */
:-ms-input-placeholder {
    color: #999999;
}

table {
    border-collapse: collapse
}

/* 去掉图片底侧默认的3像素空白缝隙*/
img {
    border: 0;
    vertical-align: middle
}

.photo_box img{
    background: #bfbfbf;
}

/*清除浮动*/
.clearfix::after,
.clearfix::before {
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both
}

.clearfix {
    /*IE/7/6*/
    *zoom: 1
}
.fl {
    float: left;
}
.fr {
    float: right;
}
