﻿/* CSS Document */
body{
	background: url(../images/animate-bg.jpg) #ffffff center top repeat;
}
.as_register{
	position: relative;
	z-index: 10;
	width: 1000px;
	height: auto;
	padding: 60px 0 10px;
	background: #ffffff;
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
	margin: 60px auto 60px;
}
.as_register .tit {
    color: #333333;
    line-height: 36px;
    font-size: 34px;
    text-shadow: none;
    font-weight: normal;
    margin: 0 0 10px;
	letter-spacing: 5px;
	text-align: center;
}
.as_register .vicetit {
    font-size: 14px;
    text-align: center;
	color: #999999;
    line-height: 18px;
    margin: 0 0 34px;
}
.hs_title{background-color: #d72020; width:95%; margin:0 auto; margin-top:30px; margin-bottom:30px; font-size:16px; font-family:microsoft yahei; text-align:center; height: 45px; line-height: 45px; color: #fff;}
.hs_sub{ font-size: 16px;padding:10px; color:#fff;text-align:center; background: #ed1919; border: 1px solid #dbdbdb; border-radius: 4px; width:35%; margin:40px 20px 0;}
.hs_s_r{ width:100%; height:auto; display:table; margin-top:30px; margin:0 auto; text-align:center }

#btnSendCode1 {
    width: 90px;
    height: 30px;
    padding: 0 5px;
    margin: 0;
    font-size: 13px;
    text-align: center;
    background: #fff;
    border-radius: 5px;
    color: #a07941;
    border: 1px solid #a07941;
}
.circle-box{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 916px;
	overflow: hidden;
}
.circle-box .circle-1{
	position: absolute;
	left: 50%;
	margin: 0 0 0 -716px;
	top: 258px;
	width: 630px;
	height: 630px;
	background: url('../images/circle-1.png') left center no-repeat;
    -moz-animation: clockwise 40s linear infinite;
	-ms-animation: clockwise 40s linear infinite;
	-webkit-animation: clockwise 40s linear infinite;
	animation: clockwise 40s linear infinite;
}
.circle-box .circle-2{
	position: absolute;
	right: -308px;
	top: 202px;
	width: 616px;
	height: 616px;
	background: url('../images/circle-2.png') left center no-repeat;
	-moz-animation: antiClockwise 40s linear infinite;
	-ms-animation: antiClockwise 40s linear infinite;
	-webkit-animation: antiClockwise 40s linear infinite;
	animation: antiClockwise 40s linear infinite;
}
.circle-box .circle-3{
	position: absolute;
	left: 50%;
	top: -590px;
	margin: 0 0 0 -590px;
	width: 1181px;
	height: 1181px;
	background: url('../images/circle-3.png') left center no-repeat;
	-moz-animation: antiClockwise 40s linear infinite;
	-ms-animation: antiClockwise 40s linear infinite;
	-webkit-animation: antiClockwise 40s linear infinite;
	animation: antiClockwise 40s linear infinite;
}
.circle-box .element-1{
	position: absolute;
	left: 50%;
	top: 160px;
	margin: 0 0 0 450px;
	width: 269px;
	height: 417px;
	background: url('../images/element1.png') left center no-repeat;
	animation:down_float 10s linear infinite ;
	-webkit-animation:down_float 10s linear infinite;
	-moz-animation:down_float 10s linear infinite;
	-ms-animation:down_float 10s linear infinite;
}
.circle-box .element-2{
	position: absolute;
	left: 50%;
	top: 350px;
	margin: 0 0 0 -590px;
	width: 1446px;
	height: 207px;
	background: url('../images/element2.png') left center no-repeat;
	animation:up_float 10s linear infinite ;
	-webkit-animation:up_float 10s linear infinite;
	-moz-animation:up_float 10s linear infinite;
	-ms-animation:up_float 10s linear infinite;
}

/*圆圈*/
@-moz-keyframes clockwise {
	0% {
	   -moz-transform:rotate(0);
	}
	to {
	   -moz-transform:rotate(360deg);
	}
}
@-ms-keyframes clockwise{
	0% {
	   -ms-transform:rotate(0);
	}
	to {
	   -ms-transform:rotate(360deg);
	}
}
@-webkit-keyframes clockwise {
	0% {
	   -webkit-transform:rotate(0);
	}
	to {
	   -webkit-transform:rotate(360deg);
	}
}
@keyframes clockwise {
	0% {
	   transform:rotate(0);
	}
	to {
	   transform:rotate(360deg);
	}
}
@-moz-keyframes antiClockwise {
	0% {
	   -moz-transform:rotate(360deg);
	}
	to {
	   -moz-transform:rotate(0);
	}
}
@-ms-keyframes antiClockwise{
	0% {
	   -ms-transform:rotate(360deg);
	}
	to {
	   -ms-transform:rotate(0);
	}
}
@-webkit-keyframes antiClockwise {
	0% {
	   -webkit-transform:rotate(360deg);
	}
	to {
	   -webkit-transform:rotate(0);
	}
}
@keyframes antiClockwise {
	0% {
	   transform:rotate(360deg);
	}
	to {
	   transform:rotate(0);
	}
}
/*下浮动*/
@keyframes down_float{
	0%{ transform: translate(0px,0px); opacity: 1}
	50%{transform:translate(0px,25px);opacity: 0.5}
	100%{ transform:translate(0px,0px);opacity: 1}
}
@-webkit-keyframes down_float{
	0%{ transform: translate(0px,0px); opacity: 1}
	50%{transform:translate(0px,25px);opacity: 0.5}
	100%{ transform:translate(0px,0px);opacity: 1}
}
@-moz-keyframes down_float{
	0%{ transform: translate(0px,0px); opacity: 1}
	50%{transform:translate(0px,25px);opacity: 0.5}
	100%{ transform:translate(0px,0px);opacity: 1}
}
@-ms-keyframes down_float{
	0%{ transform: translate(0px,0px); opacity: 1}
	50%{transform:translate(0px,25px);opacity: 0.5}
	100%{ transform:translate(0px,0px);opacity: 1}
}
/*上浮动*/
@keyframes up_float{
	0%{ transform: translate(0px,0px); opacity: 0.3}
	50%{transform:translate(0px,-25px);opacity: 1}
	100%{ transform:translate(0px,0px);opacity: 0.3}
}
@-webkit-keyframes up_float{
	0%{ transform: translate(0px,0px); opacity: 0.3}
	50%{transform:translate(0px,-25px);opacity: 1}
	100%{ transform:translate(0px,0px);opacity: 0.3}
}
@-moz-keyframes up_float{
	0%{ transform: translate(0px,0px); opacity: 0.3}
	50%{transform:translate(0px,-25px);opacity: 1}
	100%{ transform:translate(0px,0px);opacity: 0.3}
}
@-ms-keyframes up_float{
	0%{ transform: translate(0px,0px); opacity: 0.3}
	50%{transform:translate(0px,-25px);opacity: 1}
	100%{ transform:translate(0px,0px);opacity: 0.3}
}






