body{
	color:#333;
	background-color:transparent;
	font-size:.28em;
}
a,.blue{
	color:#0066cc;
}
img{
	width:100%;
	max-width:100%;
}
big{
	font-size: .3rem;
}
.tc{
	text-align: center;
}
.tr{
	text-align: right;
}
.btn-main,.x-input-wrap.phone:before,.x-input-wrap.checkcode:before,.x-input-wrap.error:after,.overlayer-close{
	background-image:url(../images/css_sprite.png);
	background-size: .75rem auto;
}
.btn{
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	-webkit-user-select:none;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	border:0;
	-webkit-appearance:none;
}
.btn-main{
	line-height: 0.8rem;
	height:.8rem;
	color:#fff;
	width:100%;
	background-color: #e90a0a;
	background-repeat: repeat-x;
	background-position: 0 -2.6rem;
	font-size: .34rem;
	border-radius:.4rem;
}
.btn-main:hover,.btn-main:active,.btn-main:focus{
	background: #e90a0a; 
}

.x-wrap{
	height: 100%;
	width:100%;
	position: relative;
}

.bg{
	width:100%;
	height:100%;
}

.hide{
	display: none;
}
.show{
	display: block;
}
/* 表单 */
.box{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.box-flex{
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
.x-input-wrap{
	border:#000 .02rem solid;
	border-radius:.1rem;
	-webkit-border-radius:.1rem;
	width:100%;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	position: relative;
	padding-left: 1.05rem;
	background-color: #fff;
}
.x-input-wrap.phone:before,.x-input-wrap.checkcode:before,.x-input-wrap.error:after{
	content:'';
	position: absolute;
	top:.1rem;
	height:.54rem;
	width:.75rem;
	display: inline-block;
	border-right: #7f7f7f 1px solid;
	background-repeat: no-repeat;
}
.x-input-wrap.phone:before{
	left:0;
	background-position: 0 0;
}
.x-input-wrap.checkcode:before{
	left:0;
	background-position: 0 -0.64rem;
}
.x-input-wrap.error:after{
	background-position: 0 -1.26rem;
	right:0;
	border-right:0;
}
.x-input-wrap.error{
	border-color:#e90a0a;
}
.x-input-wrap input{
	height: .72rem;
	line-height: .5rem;
	width:100%;
	display: block;
	color:#333;
	font-size:.3rem;
	background-color: #fff;
	border-radius:.1rem;
	-webkit-border-radius:.1rem;
}
.x-fm{
	margin:.95rem .25rem 0 .25rem;
}
.x-fm .item{
	min-height: .76rem;
	margin-top: .25rem;
}
.x-fm .error-tips{
	margin-top: .15rem;
	margin-bottom: .15rem;
	min-height: .35rem;
	color:#e90a0a;
}
.checkcodeImg{
	display: inline-block;
	width:1.80rem;
	height:.72rem;
	line-height: .72rem;
	margin-left: .1rem;
	text-align: center;
	font-family:Arial;
	font-style:italic;
	font-weight:bold;
	letter-spacing:2px;
	font-size: .5rem;
	color:blue;
}
.x-fm .button{
	padding: 0 .2rem;
}

/* 弹出层 */
.overlayer{
	position:fixed;
	top:0;
	left:0;
	bottom: 0;
	right:0;
	z-index: 200;
	width:100%;
	/* height:100%; */
	background-color: rgba(0,0,0,.5);
}
.loading{
	position: absolute;
	top:50%;
	left:50%;
	display: inline-block;
	width:.4rem;
	height:.4rem;
	margin:-.38rem 0 0 -.38rem;
	border:rgba(255,255,255,.7) .08rem solid;
	border-left:transparent .08rem solid;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-webkit-animation: loading .6s infinite linear;
  	animation: loading .6s infinite linear;
}
@-webkit-keyframes loading{
	 100% { -webkit-transform: rotate(360deg) }
}
@keyframes loading{
	 100% { transform: rotate(360deg) }
}
.overlayer-content{
	position:fixed;
	top:15%;
	left:50%;
	width:90%;
	min-height:4.6rem;
	margin: 0 0 0 -45%;
	background-color: #f4f4f4;
	border-radius:.15rem; 
	-webkit-border-radius:.15rem; 
}
.overlayer-close{
	width:.36rem;
	height:.36rem;
	position: absolute;
	top:.16rem;
	right:.16rem;
	display: block;
	background-position: 50% -1.9rem;
	cursor: pointer;
}

@media screen and (min-width: 1025px) {
    .overlayer-content{
		max-width:5.9rem;
		margin-left:-2.95rem;
    }
}