body,html,button{
  font-size: 30px;
  color: #333;
  font-family: Helvetica,微软雅黑;
  padding: 0;
  margin:0;
}
@media all and (max-width:720px){
  html,body{
    font-size: 30px;
  }
}
@media all and (max-width:640px){
  html,body{
    font-size: 24px;
  }
}
@media all and (max-width:480px){
  html,body{
    font-size: 20px;
  }
}
@media all and (max-width:414px){
  html,body{
    font-size: 17px;
  }
}
@media all and (max-width:400px){
  html,body{
    font-size: 16px;
  }
}
@media all and (max-width:320px){
  html,body{
    font-size: 15px;
  }
}
@media all and (max-width:250px){
  html,body{
    font-size: 10px;
  }
}
*{
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.drip-footer{
  font-size: 0.8rem;
  margin: 3.5rem 0 2rem 0;
  bottom: 0;
  text-align: center;
  display: block;
  width: 100%;
  color: #999;
}
.drip-footer a{
  color: #999;
}

.form-title{
  height: 3.3rem;
  line-height: 3.3rem;
  padding: 0 1.25rem;
  font-size: 1.17rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e2e2e2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field{
  padding: 2rem 1.25rem 0 1.25rem;
}
.field .hd{
  margin-bottom: 1rem;
}
.field .hd label{
  font-size: 1.17rem;
  max-width: 12rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}
.field .hd span a.selected{
  background-color: #a1a1a1;
}
.field .hd span a{
  height: 1.7rem;
  line-height: 1.7rem;
  background-color: #ececec;
  width: 3.3rem;
  display: inline-block;
  float: left;
  margin-left: 0.1rem;
  text-align: center;
}
.field .hd span a:first-child{
  border-top-left-radius:0.4rem;
  border-bottom-left-radius:0.4rem;
}
.field .hd span a:last-child{
  border-top-right-radius:0.4rem;
  border-bottom-right-radius:0.4rem;
}
.field .hd span a em{
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-size: 100%;
  margin-top: 0.36rem;
  background-repeat: no-repeat;
}
.field .hd span a.pie em{
  background-image: url(../../../img/shop/single/form/pie-grey.png);
  
}
.field .hd span a.bar em{
  background-image: url(../../../img/shop/single/form/bar-grey.png);
  width: 0.8rem;
}
.field .hd span a.pie.selected em{
  background-image: url(../../../img/shop/single/form/pie-white.png);
  
}
.field .hd span a.bar.selected em{
  background-image: url(../../../img/shop/single/form/bar-white.png);
  width: 0.8rem;
}
.field .bar-box ul li{
  position: relative;
  padding: 0 2.4rem 0 1.2rem;
}
.field .bar-box ul li:before{
  content: "";
  display: inline-block;
  width: 0.33rem;
  height: 0.33rem;
  border: 3px solid #ebebeb;
  position: absolute;
  left: 0.1rem;
  top: 0.35rem;
}
.field .bar-box ul.select-list li:before,
.field .bar-box ul.gender-list li:before,
.field .bar-box ul.img-list li:before,
.field .bar-box ul.radio-list li:before{
  border-radius: 50%;
}
.field .bar-box ul li p{
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.field .bar-box ul li .bar-all{
  background-color: #f5f5f5;
  height: 0.417rem;
  border-radius: 1rem;
  position: relative;
}
.field .bar-box ul li .bar-all > div{
  background-color: #74d86b;
  height: 0.417rem;
  border-radius: 1rem;
}
.field .bar-box ul li > span{
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  font-size: 0.83rem;
  color: #999;
}
.field .bar-box ul li{
  margin-bottom: 1rem;
}

.none-data{
  text-align: center;
  margin-top: 6rem;
}
.loading{
  height: 100%;
  width: 100%;
  top: 3.3rem;
  left: 0;
  position: fixed;
  z-index: 10000000;
  background-color: #fff;
  transition:all 0.5s ease-out;
  -webkit-transition:all 0.5s ease-out;
}
.loading.hide{
  opacity: 0;
  -webkit-opacity: 0;
}
.loading .wrap{
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -3rem;
  margin-top: -6.3rem;
  background-color: #aaa;
  width: 6rem;
  height: 6rem;
  text-align: center;
  border-radius: 0.4rem;
  font-size: 0.8rem;
  color: #fff;
  text-align: center;
}
.loading .wrap .circle{
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin: 1.3rem 0 0.4rem 0;
  background-image: url(../../../img/shop/single/form/loading.png);
  background-size: 100%;
  opacity: 0.8;
  -webkit-opacity:0.8;
  -webkit-animation: spin 0.8s infinite linear;
  -moz-animation: spin 0.8s infinite linear;
  -o-animation: spin 0.8s infinite linear;
  animation: spin 0.8s infinite linear;
}
@-moz-keyframes spin { 0% { -moz-transform: rotate(359deg); }
  100% { -moz-transform: rotate(0deg); } }
@-webkit-keyframes spin { 0% { -webkit-transform: rotate(359deg); }
  100% { -webkit-transform: rotate(0deg); } }
@-o-keyframes spin { 0% { -o-transform: rotate(359deg); }
  100% { -o-transform: rotate(0deg); } }
@-ms-keyframes spin { 0% { -ms-transform: rotate(359deg); }
  100% { -ms-transform: rotate(0deg); } }
@keyframes spin { 0% { transform: rotate(359deg); }
  100% { transform: rotate(0deg); } }