@charset "utf-8";
/* CSS Document */
body,ol,ul,h1,h2,h3,h4,h5,h6,p,th,td,dl,dd,form,fieldset,legend,input,textarea,select,td,figure{margin:0;padding:0;}
body{font-size:14px;color:#464646; word-wrap:break-word;
  font-family:"PingFang SC,Microsoft YaHei,NotoSansHans-Regular,Arial,ArialMT";
}
a,u,s,del{color:#464646;text-decoration:none;} 
fieldset ,a img,.bor0 {border:0;}
i,em,b{font-style:normal;font-weight:100;}
li{list-style:none;}
img{vertical-align:middle;}
table{border-collapse:collapse;}
.ind2{text-indent:2em;}
input,textarea{outline:none;}
textarea{resize:none;}/*禁止拖动*/

/*文本溢出隐藏出现省略号*/
.over{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}

/* 图片水平垂直居中 */
/* .valign{} */
.valign img{vertical-align:middle;}
.valign:after{content:"";vertical-align:middle;display:inline-block;height:100%;}

/*万能清除法*/
.clear{zoom:1;/*一条解决ie疑难杂症(浮动)的神奇属性*/}
.clear:after{content:"";clear:both;display:block;}
.clear:before{content:"";display:table;}/*解决第一个块元素margin-top向上传递问题*/

.pointer{cursor: pointer;}

.borderBox{
  -moz-box-sizing: border-box;  
  -webkit-box-sizing: border-box; 
  -o-box-sizing: border-box; 
  -ms-box-sizing: border-box; 
  box-sizing: border-box;
}
.flex{
  display: -moz-box;  /* Firefox */ 
  display: -ms-flexbox;    /* IE10 */ 
  display: -webkit-box;    /* Safari */  
  display: -webkit-flex;    /* Chrome, WebKit */ 
  display: flex;
}
/*主轴对齐*/
.justifyCenter{
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.justifyEnd{
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.justifyBetween {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.justifyAround {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
/*侧轴对齐*/
.alignCenter{
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

[v-cloak]{
  display:none;
}

.bg{background:#fff;}
