/*
*网站全局/CSS重置表
*http://www.lvyou114.com     2014-1-14
*小菜
*/
/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote,
dl, dt, dd, ul, ol, li,
pre,
form, fieldset, legend, button, input, textarea,
th, td {
    margin: 0;
    padding: 0;
}
*{
    font-family: "微软雅黑";
    box-sizing: border-box;
}
input::-ms-clear{display: none;}
input::-ms-reveal{display: none;}
/*设置默认字体*/
h1,h2,h3,h4,h5,h6{font-weight: 400;}
h1{font-size: 24px;}
h2{font-size: 18px;}
h3{font-size: 16px;}
h4{font-size: 14px;}
h5{font-size: 12px;}
h6 {font-size: 10px;}
address, cite, dfn, em, var, i { font-style: normal; }
code, kbd, pre, samp { font-family: courier new, courier, monospace; }
small { font-size: 12px; }
/*重置列表元素*/
ul, ol { list-style: none; }
/*重置文本格式元素*/

a,
a:hover { text-decoration: none; -webkit-tap-highlight-color: rgba(0,0,0,0);}
a{outline:none;-moz-outline:none;}
a{color: #666;outline:none;-moz-outline:none;}
/* a:hover{color: #fe8638;} */
sup { vertical-align: text-top; }
sub { vertical-align: text-bottom; }
/*重置表单元素*/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; }
button, input, select, textarea { font-size: 100%; }
/*重置表格元素*/
table { border-collapse: collapse; border-spacing: 0; }
/* 重置 HTML5 元素 */
article, aside, details, figcaption, figure, footer,header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
    display: block;
    margin: 0;
    padding: 0;
}
mark { background: #ff0; }
/*全局*/
.fl{float: left!important;}
.fr{float: right!important;}
.s{font-weight: 400;}
.b{font-weight: 700;}
.b0{border: 0!important;}
/*字体大小*/
.f12{font-size: 12px!important;}
.f14{font-size: 14px!important;}
.f16{font-size: 16px!important;}
.f18{font-size: 18px!important;}
.f20{font-size: 20px!important;}
.f24{font-size: 24px!important;}
.f30{font-size: 30px!important;}
.f36{font-size: 36px!important;}
.f42{font-size: 42px!important;}
/*颜色*/
.f50{color: #f50!important;}
.f80{color: #f80!important;}
.c5{color: #555!important;}
.c8{color: #888!important;}
/*间距*/
.m0{margin: 0!important}
.mt0{margin-top: 0!important}
.mt10{margin-top: 10px!important}
.mt20{margin-top: 20px!important}
.mt30{margin-top: 30px!important}
.mt40{margin-top: 40px!important}
.ml0{margin-left: 0!important}
.ml10{margin-left: 10px!important}
.mr20{margin-right: 20px!important}
.p0{padding: 0!important}
.pt0{padding-top: 0!important}
.pl0{padding-left: 0!important}
/*字体图标*/
@font-face {font-family: 'iconfont';
    src: url('/libs/iconfont/iconfont.eot'); 
    src: url('/libs/iconfont/iconfont.eot?#iefix') format('embedded-opentype'), 
    url('/libs/iconfont/iconfont.woff') format('woff'), 
    url('/libs/iconfont/iconfont.ttf') format('truetype'),
    url('/libs/iconfont/iconfont.svg#svgFontName') format('svg'); 
}
.iconfont{font-family:"iconfont";font-size:16px;}
.full-width{
  width: 100%;
}
/* flex */
.d-flex{
  display: flex;
}
.column{
  display: flex;
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.align-center{
  align-items: center;
}
.align-start{
  align-items: flex-start;
}
.justify-center{
  justify-content: center;
}
.space-between{
  justify-content: space-between;
}
.nowrap{
  white-space: nowrap;
}
.spacer{
  display: block;
  flex: 1;
}
/* 定位 */
.posRela{
  position: relative;
}
.posAbs{
  position: absolute;
}
.posSticky{
  position: sticky;
}

.posAbsFull{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.posFixedFull{
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.borderBox{
  box-sizing: border-box;
}
/* 颜色 */
.white{
  background-color: #fff;
}
.text-white{
  color: #fff;
}
/* 表单弹窗 */
 .modalLayer{
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999999999;
}
 .form {
  font-size: .28rem;
  border-radius: 0.1rem;
  overflow: hidden;
  margin: 0 0.34rem;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
 .form header {
  height: 0.96rem;
  background: #eee;
  font-size: 0.3rem;
  color: #333;
  padding: 0 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
 .form header img {
  width: 0.3rem;
  height: 0.3rem;
}
 .form .content {
  padding: 0.4rem 0.3rem;
  color: #333;
}
 .form .content label {
  /* width: 100%; */
  flex: 1;
  height: 0.76rem;
  line-height: 0.46rem;
  display: block;
  border: 1px solid #ddd;
  border-radius: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.2rem;
}
 .form .content label input {
  border: none;
  outline: none;
  font-size: .28rem;
  height: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 0.32rem;
}
.form .content label + label {
  margin-top: 0.2rem;
}
.form .content .label + .label {
  margin-top: 0.2rem;
}
.form .content .label span + span {
  font-weight: 300;
}
.form .content .label + label {
  margin-top: 0.2rem;
}
.form .content .title {
  font-size: 0.28rem;
  position: relative;
}
.form .content .title span {
  font-size: 0.24rem;
  color: #999;
}
.form .content .required::before {
  content: "*";
  color: #ff0101;
}
.form .content .checkboxes {
  color: #333;
  font-size: 0.28rem;
  margin-top: 0.32rem;
  margin-bottom: 0.3rem;
}
.form .content .checkboxes ul,
.form .content .checkboxes li {
  list-style: none;
}
.form .content .checkboxes input[type=checkbox] {
  margin-right: 0.1rem;
  cursor: pointer;
  font-size: 0.28rem;
  width: 0.3rem;
  height: 0.3rem;
  position: relative;
  margin-right: 0.16rem;
  visibility: hidden;
}
 .form .content .checkboxes input[type=checkbox]::after {
  position: absolute;
  width: 0.3rem;
  height: 0.3rem;
  top: 0;
  content: " ";
  color: #fff;
  display: inline-block;
  visibility: visible;
  border-radius: 0.06rem;
  border: 1px solid #ddd;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
 .form .content .checkboxes li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.28rem;
}
 .form .content .checkboxes input[type=checkbox]:checked::after {
  content: "✓";
  font-size: 0.24rem;
  background: #009ddc;
}
 .form .content .toSelect {
  position: relative;
}
 .form .content .toSelect ul {
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 .2rem #333;
          box-shadow: 0 0 .2rem #333;
  background: #fff;
  border-radius: .1rem;
  -webkit-transform: translateY(100%);
     -moz-transform: translateY(100%);
      -ms-transform: translateY(100%);
       -o-transform: translateY(100%);
          transform: translateY(100%);
  z-index: 11;
  max-height: 3rem;
  overflow-y: auto;
}
 .form .content .toSelect ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: .76rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: .28rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 .3rem;
}
 .form .content .toSelect ul li + li {
  border-top: 1px solid #eee;
}
 .form .content label .filePlaceholder {
  color: #009ddc;
}
 .form .content label img {
  width: .26rem;
}
 .form .content button {
  width: 100%;
  outline: none;
  border: none;
  border-radius: 0.1rem;
  height: 0.76rem;
  line-height: 0.76rem;
  text-align: center;
  color: #fff;
  background: #009ddc;
  margin-top: 0.3rem;
}
 .alertModalLayer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}
 .alert {
  -webkit-box-shadow: 0 0 .12rem .08rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 .12rem .08rem rgba(0, 0, 0, 0.2);
  position: absolute;
  background: #fff;
  left: 50%;
  top: 50%;
  width: 75%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: .1rem;
  font-size: .24rem;
}
 .alert .header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 .2rem;
  height: .6rem;
  background: #ddd;
}
 .alert .header img {
  width: .2rem;
  height: .2rem;
}
 .alert .errorText {
  padding: .2rem;
}
.em5{
  display: inline-block;
  width: 5em;
  text-align-last: justify;
  white-space: nowrap;
  margin-right: .32rem;
}
.em5::after{
  content: ':';
}