
*{    margin: 0;
	padding: 0;
	box-sizing: border-box;
}
canvas{
	display: inline-block;
	vertical-align: baseline;
}
html{
	color: #fff;
	font-size: 14px;
}
.container{   
	text-align: center;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 15px 5px;
	background-color: rgba(0,0,0,0);
	height: 100%;
	position: fixed;
	z-index: 1005;
	top: 0;
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 0;
	-webkit-animation: fromBack 1s linear forwards;
	animation: fromBack 1s linear forwards;
}
@-webkit-keyframes fromBack{
	0%{
		transform: scale(0);
		opacity: 0;
	}
	100%{
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes fromBack{
	0%{
		transform: scale(0);
		opacity: 0;
	}
	100%{
		transform: scale(1);
		opacity: 1;
	}
}
.RedBox{
	height: 450px;
	background-color: #ff605e;
	width: 300px;
	left: 0;
	top: 0;
	border-radius: 10px;
	margin: 0 auto;
	border-radius: 50% 50% 10px 10px / 15% 15% 10px 10px;
	box-shadow: inset 0 4px 0 -1px rgba(0,0,0,0.2);

}
.topcontent{
	height: 280px;
	background-image: url("../images/red_02.png");
	-webkit-background-size: contain;
	background-size: contain;
	background-repeat: no-repeat;

}
.avatar{
	position: relative;
}
.topcontent img{
    width:80px;
    height:80px;
	border: 1px solid #BD503A;
	border-radius: 50%;
	overflow: hidden;
	margin-top: -8%;
    margin-left:auto;
    margin-right:auto;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;

}
.topcontent h2{
	font-size: 14px;
	margin: 5px 0;
	padding-top: 100px;
	color: #ff605e;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
}
.text{
	color: #ff605e;
	font-weight: bold;
	font-size: 1rem;
	-webkit-animation-duration: 4s;
	animation-duration: 4s;
}
.text b{
	font-size: 1.5rem;

}
.description1{
	margin: 20px 50px;
	font-size: 16px;
	font-weight: 600;
	height: 34px;
	background: #fff;
	color:#ff605e;
	line-height: 34px;
	border-radius: 5px;
	-webkit-animation-duration: 4s;
	animation-duration: 4s;
}
.description2{
	margin: 10px 50px;
	font-size: 16px;
	font-weight: 600;
	color:#ffd800;
}

.rotate{
	-webkit-animation: anim .6s infinite alternate;
		-ms-animation: anim .6s infinite alternate;
			animation: anim .6s infinite alternate;
}
@-webkit-keyframes anim {
	from { -webkit-transform: rotateY(180deg); }
	to { -webkit-transform: rotateY(360deg); }
}
@-ms-keyframes anim {
	from { -ms-transform: rotateY(180deg); }
	to { -ms-transform: rotateY(360deg); }
}
@keyframes anim {
	from { transform: rotateY(180deg); }
	to { transform: rotateY(360deg); }
}

@-webkit-keyframes bounceInDown {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInDown {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

.bounceInDown{
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;}
@-webkit-keyframes flash {
	from, 0%, to {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes flash {
	from, 0%, to {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}

@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.2, .2, .2);
		transform: scale3d(.2, .2, .2);
	}

	50% {
		opacity: 1;
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.2, .2, .2);
		transform: scale3d(.2, .2, .2);
	}

	50% {
		opacity: 1;
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

@-webkit-keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
}

.smscontainer {
	width: 320px;
	height: 250px;
	margin: 80px auto;
	background: #ffffff;
}

	.smscontainer .smstitle {
		width: 100%;
		height: 50px;
		line-height: 50px;
		border-bottom: 1px solid #e6e8e5;
	}
		.smscontainer .smstitle .backicon {
			display:block;
			float:left;
			background-image: url("../images/back.png");
			width:16px;
			height:25px;
			margin:11px 5px auto 10px;
		    
		}
		.smscontainer .smstitle .backtitle {
			display: block;
			float: left;
			width: 80px;
			color: #5f82a4;
			font-size: 18px;
		}
		.smscontainer .smstitle .stitle {
			display: block;
			float: left;
			width: 160px;
			color: #575757;
			font-size: 18px;
			font-family: Microsoft YaHei;
			text-align: center;
		}
	.smscontainer .smsprompt {
		width: 100%;
		height: 50px;
		line-height: 50px;
		background: #f4f8fb;
		color: #a7abae;
		padding-left:10px;
	}
	.smscontainer .smsphone {
		width: 100%;
		height: 50px;
		line-height: 50px;
		color: #a7abae;
		padding-left: 10px;
		border-bottom: 1px solid #e6e8e5;
	}
		.smscontainer .smsphone .phonetitle {
			display: block;
			float: left;
			width: 70px;
			height: 50px;
			line-height: 50px;
			margin: auto 1px auto 10px;
			color: #a1a1a1;
			font-size: 16px;
			font-family: Microsoft YaHei;
		}
		.smscontainer .smsphone .phoneinput {
			display: block;
			float: left;
			width: 220px;
			height: 50px;
			line-height: 50px;
		}
			.smscontainer .smsphone .phoneinput input {
				width: 100%;
				height: 50px;
				line-height: 50px;
				color: #575757;
				font-weight: 800;
				font-size: 16px;
			}

	.smscontainer .verification {
		width: 100%;
		height: 50px;
		line-height: 50px;
		color: #a7abae;
		padding-left: 10px;
	}
		.smscontainer .verification .verificationtitle {
			display: block;
			float: left;
			width: 90px;
			height: 50px;
			line-height: 50px;
			margin: auto 5px auto 10px;
			color: #a1a1a1;
			font-family: Microsoft YaHei;
			font-size: 16px;
		}
		.smscontainer .verification .verificationinput {
			display: block;
			float: left;
			width: 100px;
			height: 50px;
			line-height: 50px;
		}

			.smscontainer .verification .verificationinput input {
				width: 100%;
				height: 50px;
				line-height: 50px;
				color: #575757;
				font-weight: 800;
				font-size: 16px;
			}

		.smscontainer .verification .splitline {
			display: block;
			float: left;
			width: 2px;
			height: 28px;
			margin: 10px 5px;
			background-image: url("../images/splitline.png");
		}

		.smscontainer .verification .verificationtime {
			display: block;
			float: left;
			width: 90px;
			height: 50px;
			line-height: 50px;
			text-align: center;
			color: #dedede;
			font-size: 16px;
		}

		.smscontainer .verification .sendtxt {
			color: #575757;
		}

	.smscontainer .smsconfirm {
		width: 100%;
		height: 100px;
		line-height: 100px;
		background: #f4f8fb;
		overflow: hidden;
	}
		.smscontainer .smsconfirm .smsbutton {
			clear:both;
			width: 250px;
			height: 50px;
			margin: 25px auto;
			line-height: 50px;
			text-align: center;
			background: #4086f5;
			color: #ecf8fa;
			font-size: 16px;
			border-radius: 8px;
		}

		.smscontainer .smsconfirm .smsdisablebutton {
			clear: both;
			width: 250px;
			height: 50px;
			margin: 25px auto;
			line-height: 50px;
			text-align: center;
			background: #cbcbcb;
			color: #dddddd;
			font-size: 16px;
			border-radius: 8px;
		}