@import url('comm.css');
body{color:#383838;background-color: #f0f0f0;}
/** input */
input{border:0;background: transparent;}
/*下载页面*/
.down-cover{
	display: block;
    position: fixed;
    z-index: 2;
    width: 100%;
    max-width: none;
    height: 100%;
    background: url(../images/down-bg.jpg) top left no-repeat #666666;
    background-size: cover;
    background-position: center center;
}
.down-logo{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: 0;
}
.down-logo-con{
	width: 34%;
	height: 100%;
	display: table;
	margin: 0 auto;	
}
.down-logo-box{
	display: table-cell;
	vertical-align: middle;
}
.down-logo .logo{
	display: block;
	margin: 0 auto;
	width: 100%;
}
.down-logo .down-app-a{
	display: block;
	width: 100%;
	height: 50px;
	background: #f8b62d;
	color: #fff;
	font-size: 16px;
	line-height: 50px;
	text-align: center;
	border-radius: 5px;
}
.down-submit{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}
.down-submit-con{
	width: 34%;
	height: 100%;
	display: table;
	margin: 0 auto;	
}
.down-submit-box{
	display: table-cell;
	vertical-align: middle;
}
.down-submit .logo-app-0{
	width: 80.28%;
	display: block;
	margin: 0 auto 32px auto;
}
.form-submit .form-cell-1{
	position: relative;
}
.form-submit .form-cell-1,.form-submit .form-cell-2{
	margin-bottom: 13px;
}
input.celli{
	width: 100%;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	line-height: 33px;
	padding: 0 14px;
	color: #fff;
	font-size: 16px;
	border-radius: 5px;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
.form-cell-1 input.celli{
	padding-right: 90px;
}
input.celli::-webkit-input-placeholder {
	color: #fff; 
} 
input.celli:-moz-placeholder {
	color: #fff; 
} 
input.celli::-moz-placeholder {
	color: #fff; 
} 
input.celli:-ms-input-placeholder {
	color: #fff; 
} 
.btnGetVC{
 	position: absolute;
 	right: 0;
 	top: 0;
 	width: 90px;
	float: left;
 	text-align: center;
 	font-size: 14px;
 	color:#ded3c0;
 	background:#957b43;
 	height: 50px;
 	line-height: 50px;
 	border-radius: 5px;

}
 .btnGetVC.active{
 	background:#f8b62d;
 	color: #fff;
 }


/*重置btn*/


.u-btn-m{
	display: block;
	width: 100%;
	height: 50px;
	color: #fff;
	font-size: 16px;
	text-align: center;
	line-height: 50px;
}
.u-btn-m.u-btn-my{
	background: #f8b62d;
	border-radius: 5px;
}
.u-btn-m.u-btn-operr{
	opacity: .6;
	background: #665335;
}




/*tips*/

.tips{
	position: fixed;
	left: 50%;
	top: 50%;
	width: 250px;
	height: 158px;
	background: #fff;
	border-radius: 10px;
	margin: -79px 0 0 -125px;
	text-align: center;
	z-index: 1000;
	color: #333333;
	font-size: 14px;
	display: none;
}
.tips .msg{
	margin-top: 10px;
}
.tips .msg span{
	display: block;
	width: 100%;
	font-size: 12px;
	color: #999999;
	margin-top: 4px;
}
.tips .expire{
	width: 40px;
	height: 40px;
	display: inline-block;
	background: url(../images/tips-expire.png) no-repeat;
	background-size: 100% 100%; 
}
.tips .ver-tips-con{
	display: table;
	width: 100%;
	height: 113px;
}
.tips .ver-tips-con > div{
	display: table-cell;
   text-align: center;
   vertical-align: middle;
}
.tips .tips-bottom{
	position: absolute;
	left: 0;
	bottom: 0;
	height: 40px;
	width: 100%;
	font-size: 14px;
	line-height: 40px;
	color: #f8b62d;
}
.tips .tips-bottom::after{
	content: " ";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 1px;
	background: #e0e0e0;
	transform: scaleY(0.5);
	-webkit-transform: scaleY(0.5)
}

/* 重置*/

.mask{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 900;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0,.5);
	display: none;
}

/*css3*/

.anibottom{
	-webkit-animation:anibottom .5s ease-out forwards;
    -moz-animation:anibottom .5s ease-out forwards;
    animation:anibottom .5s ease-out forwards;
    z-index: 4;
}
@-webkit-keyframes anibottom{
	0%{-webkit-transform:translateY(0);opacity:1;}
    100%{-webkit-transform:translateY(60px);opacity:0;}
}
@keyframes anibottom{
	0%{transform:translateY(0);opacity:1;}
    100%{transform:translateY(60px);opacity:0;}
}
.anitop{
	-webkit-animation:anitop 1s ease-out .5s forwards;
    -moz-animation:anitop 1s ease-out .5s forwards;
    animation:anitop 1s ease-out .5s forwards;
    z-index: 10;
}
@-webkit-keyframes anitop{
	0%{-webkit-transform:translateY(-100px);opacity:0;}
    100%{-webkit-transform:translateY(0);opacity:1;}
}
@keyframes anitop{
	0%{transform:translateY(-100px);opacity:0;}
    100%{transform:translateY(0);opacity:1;}
}
.aniscale{
	-webkit-animation:aniscale .2s ease-out  forwards;
    -moz-animation:aniscale .2s ease-out  forwards;
    animation:aniscale .2s ease-out forwards;
    display: block;
}
@-webkit-keyframes aniscale{
	0%{-webkit-transform:scale(0);opacity:1;}
    100%{-webkit-transform:scale(1);opacity:1;}
}
@keyframes aniscale{
	0%{transform:scale(0);opacity:1;}
    100%{transform:scale(1);opacity:1;}
}

@media (max-width: 640px){
	.down-logo-con {
	    width:70%;
	}
	.down-submit-con {
	    width: 70%;
	}
	.down-logo .down-app-a{
		height: 50px;
		line-height: 50px;
	}
	input.celli{
		height: 50px;
		line-height: 50px;
	}
	.btnGetVC{
		width: 100px;
		height: 50px;
	 	line-height: 50px;
	}
	.u-btn-m{
		height: 50px;
		line-height: 50px;
	}
	.form-submit .form-cell-1, .form-submit .form-cell-2 {
	    margin-bottom: 20px;
	}
}