/*CSS基本设定*/
body,ul,ol,li,p,h1,h2,h3,h4,h5,h6,form,fieldset,table,td,img,div,dl,dt,dd,input{margin: 0;padding: 0}
html, body {
    background-color: #eee;
    height: 100%;
    width: 100%;
}
body {
    font-size: 14px;
    font-family: 微软雅黑;
    height: 100%;
    width: 100%;
}

@media only screen and (max-device-width :480px) {body {font-size: 12px;}}
/*6*/
@media (min-device-width : 375px) and (max-device-width : 667px) and (-webkit-min-device-pixel-ratio : 2) {body {font-size: 13px; }}

/*6+*/
@media (min-device-width : 414px) and (max-device-width : 736px) and (-webkit-min-device-pixel-ratio : 3) {body {font-size: 14px;}}

/*魅族*/
@media only screen and (min-device-width :1080px) and (-webkit-min-device-pixel-ratio : 2.5) {body {font-size: 14px;}}

/*mate7*/
@media only screen and (min-device-width :1080px) and (-webkit-min-device-pixel-ratio : 3) {body {font-size: 14px;}}

img {
    border: none;
}
ul,li,p,h1,h2,h4,h3,h5{margin: 0;padding: 0;list-style: none;}
input,select,textarea{outline: none;border: none;}
textarea{resize: none;}
a{text-decoration: none;color: #656565}
img,span,button{display: block;margin: 0;padding: 0;}
button{border:none;}
p,span{color:#2a2a2a;font-size:0.9rem;}
table,table tr th, table tr td { border:1px solid #000; }
table { text-align: center; border-collapse: collapse; }  
/*清除浮动*/
.clearfix:after{content: "";display: block;clear: both;}
.clearfix{zoom:1;}

