/* 
* @Author: Marte
* @Date:   2016-06-27 15:08:26
* @Last Modified by:   Marte
* @Last Modified time: 2017-07-12 11:57:34
*/

/* 初始化CSS  重置浏览器样式*/

html {font-size:62.5%; -webkit-text-size-adjust: 100%;  -ms-text-size-adjust: 100%; /* 禁用iPhone中Safari的字号自动调整 */}
body{-webkit-text-size-adjust: 100%!important;}/*禁止微信字体大小调整*/
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form,img,input,textarea,table,figure,caption,figcaption,aside,details,footer,header,hgroup,menu,nav,section,select,button,time{ margin:0; padding:0; font-family:"SourceHanSansSC","PingFang","Microsoft Yahei",sans-serif;}
h1, h2, h3, h4, h5, h6{ font-weight:normal;}
li { list-style:none; }
textarea { resize:none; }   
body { color:#333;background-color: #fff;}  /*正文的字体大小和颜色*/
.clearfix:after{content:''; height:0; line-height:0; visibility:hidden; display:block; clear:both;}
.clearfix{zoom:1;} /*针对ie低级版本的浏览器*/
a { color:#3C3C3C; text-decoration:none; outline:none;}
/*a:active{ color:#f60; }*/    /* 按下状态 */
input,textarea,select,button,form{ display: block; background:none;border:none; outline:none;}
em,i{ font-style:normal; }
strong{ font-weight: normal; }

/* 去除iPhone中默认的input样式 */
input[type="submit"], input[type="reset"], input[type="button"], input[type="date"],input[type="time"],input{ -webkit-appearance:none; resize: none; color:inherit;}

input::placeholder,textarea::placeholder{ color:#b7b7b7;}

/* 取消链接高亮  */
body,div,ul,li,ol,h1,h2,h3,h4,h5,h6,input,textarea,select,p,dl,dt,dd,a,img,button,form,table,th,tr,td,tbody,article,aside, details,figcaption,figure,footer,header,hgroup, menu,nav,section{ -webkit-tap-highlight-color:rgba(0, 0, 0, 0); }

/* 设置HTML5元素为块 */
article, aside, details,figcaption,figure,footer,header,hgroup, menu,nav,section { display: block; }

/* 图片自适应 */
img { width: 100%; height: auto; -ms-interpolation-mode:bicubic;display:block; /*为了照顾ie图片缩放失真*/ }

/*浏览器默认是横向排列*/
.flex{
	display:flex;
	justify-content: center;
	align-items: center;
	display:-webkit-flex;
	-webkit-justify-content: center;
	-webkit-align-items: center;
}
.flex1{
	flex:1;
	-webkit-flex:1;
}
.flex_v{
	flex-direction:column;
	-webkit-flex-direction:column;
	-ms-flex-direction:column;
	display:flex;
	justify-content: center;
	align-items: center;
	display:-webkit-flex;
	-webkit-justify-content: center;
	-webkit-align-items: center;
}

/*-----------不同分辨率适配-----------*/
/*html{font-size: 100px;}*/
@media screen and (max-width:1024px) {
    html{font-size:53.37px;}
}
@media screen and (max-width:1259px) and (min-width:1025px){
    html{font-size:59.37px;}
}
@media screen and (min-width:1260px) {
    html{font-size:66.68px;}
    .member li{ width:4.6rem !important; }
}
@media screen and (min-width:1346px) {
    html{font-size:71.12px;}
    .member li{ width:4.6rem !important; }
}
@media screen and (min-width:1420px) {
    html{font-size:75px;}
    .member li{ width:4.6rem !important; }
}
@media screen and (min-width: 1900px) {
    html { font-size: 100px; }
    .member li{ width:4.6rem !important; }
}
