@charset "utf-8";
*{-webkit-tap-highlight-color:transparent;}
html,body {width: 100%;height: 100%;margin:0; padding:0; -webkit-font-smoothing:antialiased;font-size: 10px;}
div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,blockquote,p{padding:0; margin:0;box-sizing:border-box;}
table,td,tr,th{font-size:10px;}
a{text-decoration: none;color: #000;}
ol,ul {list-style:none;}
li{list-style-type:none;}
input,select {outline: none;border: none;border-radius: 0;}
input {-webkit-appearance:none;}
img{vertical-align: top;width: 100%;}
h1,h2,h3,h4,h5,h6{font-size:inherit; font-weight:normal;}
address,cite,code,em,th,i{font-weight:normal; font-style:normal;}

/*placeholder -- color*/
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder { color: #999999; }
input::-ms-input-placeholder,textarea::-ms-input-placeholder { color: #999999; }
input::-moz-input-placeholder,textarea::-moz-input-placeholder { color: #999999; }
input::input-placeholder,textarea::input-placeholder { color: #999999; }

/*浮动及清除浮动*/
.clearfix{zoom:1;}
.clearfix:after{display:block; overflow:hidden; clear:both; height:0; visibility:hidden; content:".";}
.fl { float: left; }
.fr { float: right; }

.wrap {
	position: relative;
	width: 100%;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	/*background-color: #ececec;*/
	min-width: 320px;
	max-width: 750px;
	margin: auto;
	overflow: hidden;
}
.mask {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.3);
	z-index: 1;
	display: none;
}
input:disabled { background-color: transparent; }
input[type=number]::-webkit-inner-spin-button {
   -webkit-appearance: none;
}
input[type=number]::-webkit-outer-spin-button {
   -webkit-appearance: none;
}
/*提示框*/
.popup{
	position: fixed;
	width: 280px;
	border-radius: 2px;
	background-color: #fff;
	padding: 0 18px;
	box-sizing:border-box;
	z-index: 10;
	top: 28.5%;
	left: 50%;
	margin-left: -140px;
	box-shadow: 0 0 5px rgba(0,0,0,.3);
	display: none;
}
.popup p{
	line-height: 22px;
	text-align: center;
	font-size: 16px;
	color: #373C40;
	padding: 50px 12px 38px;
}
.popup p i.residue{
  color: #43A4EB;
}
.popup p i.topay{
  color: #f00;
}
.popup p i{
  font-weight: 600;
  font-size: 18px;
}
.popup .popupBtn{
	padding: 9px 0;
    height: 48px;
    box-sizing: border-box;
    line-height: 30px;
    border-top: 1px solid #F2F2F2;
    overflow: hidden;
}
.popup.popup-confirm .popupBtn span{
	float: left;
	width: 122px;
	text-align: center;
	font-size: 14px;
	color: #7A7A7A;
  box-sizing: border-box;
}
.popup.popup-confirm .popupBtn span.yes{
	border-left: 1px solid #F2F2F2;
  color: #fb9426;
}
.popup.popup-alert .popupBtn {
	color: #fb9426;
	text-align: center;
	font-size: 14px;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
}

/*简化提示框*/
.popup-toast {
	pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content:center;
  align-items:center;
}
.popup-toast .text{
  transform:translate(-50%,-50%);*/
  height: 18px;
  line-height: 18px;
  background-color: rgba(0,0,0,0.8);
  color: #fff;
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,.1);
  pointer-events: auto;
  transform-origin:center center;
  animation-name: fieldTipBounceIn;
  -webkit-animation-name: fieldTipBounceIn;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: .18s;
  animation-duration: .18s;
}
@-webkit-keyframes fieldTipBounceIn{
	0% {
    opacity: 0;
    -webkit-transform: scale(.3);
  	transform: scale(.3);
	}
	100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
	}
}
@keyframes  {
	0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
	}
	100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
	}
}
.loading {
	width: .8rem;
	margin: 20px auto;
	display: none;
}
.no-more,.no-data {
  font-size: .28rem;
  color: #999999;
  text-align: center;
  margin: 20px auto;
  display: none;
}
.popup-loading {
  position: fixed;
  width: 2.4rem;
  height: 2.4rem;
  top: 50%;
  left: 50%;
  margin-left: -1.2rem;
  margin-top: -1.2rem;
  border-radius: .24rem;
  text-align: center;
  background-color: rgba(0,0,0,.7);
  padding-top: .4rem;
}
.popup-loading img {
  width: .8rem;
  margin-bottom: .4rem;
}
.popup-loading .content {
  color: #ffffff;
  font-size: .28rem;
}
