html,body{ 
    width: 100%;
    height: 100%;
	background: #fff;
}
body img{
    width: 100%;
    height: auto;
    display: block;
}
.fixed-nav {
	position: fixed;
	right: 40px;
	width: 140px;
	top: 50%;
	z-index: 10;
}
.fixed-nav-mobile{
	position: fixed;
	width: 3.5rem;
	right: 0;
	bottom: 15%;
	z-index: 10;
}
.icon-hand {
	position: absolute;
	width: 1.5rem;
	top: 80%;
	right: 24%;
	animation: yun 1s linear infinite;
}

@keyframes yun {

	0%,
	100% {
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		/*贝塞尔曲线 ： X1 Y1 X2 Y2*/
		transform: translate3d(0, 0, 0);
		/*设置只在Z轴上移动*/
	}

	50% {
		transition-timing-function: cubic-bezier(0.755, 0.50, 0.855, 0.060);
		transform: translate3d(0, 4px, 0);
	}
}
.pc{
	display: block;
}
.phone{
	display: none;
}
.page{
    position: relative;
    width: 100%;
	overflow:auto;
	overflow-x: hidden;
	min-width: 960px;
    min-height: 100%;
    z-index: 1;
}
.page-head{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 92px;
	background: #fff;
	border-bottom: #ededed 1px solid;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}
.page-head .head-inner{
	position: relative;
	width: 960px;
	margin: 0 auto;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}

.page-head .head-inner .hd-left{
	position: relative;
	flex-shrink: 0;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}
.page-head .head-inner .hd-left .logo{
	flex-shrink: 0;
	width: 102px;
}
.page-head .head-inner .hd-left .l-menu{
	position: relative;
	flex-shrink: 0;
	margin-left: 50px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}
.l-menu .menu-item{
	position: relative;
	flex-shrink: 0;
	margin-right: 50px;
	color: #999;
	font-size: 18px;
	/*font-weight: 600;*/
	cursor: pointer;
	/*letter-spacing: 3px;*/
	/*text-indent: 3px;*/
}
.l-menu .menu-item:hover,
.l-menu .menu-item.on{
	color: #D61D01;
}
.l-menu .menu-item.on.on::after{
	position: absolute;
	display: inline-block;
	content: '';
	top: 80%;
	left: 50%;
	margin-left: -16px;
	width: 32px;
	height: 4px;
	border-radius: 2px;
	background: #D61D01;
	margin-top: 10px;
}
.page-head .pop-menu{
	
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	margin-top: -1px;
	background: #fff;
	padding: 1rem;
	box-sizing: border-box;
	z-index: 5;
	display: none;
}
.page-head .pop-menu .menu-item{
	position: relative;
	width: 100%;
	padding: .75rem 0;
	box-sizing: border-box;
	font-size: .7rem;
	color: #333333;
	border-bottom: #ccc 1px solid;
}
.page-head .pop-menu .menu-item.on{
	color: #D61D01;
	font-weight: bold;
}
.page-head .head-inner .hd-right{
	position: relative;
	flex-shrink: 0;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}
.page-head .head-inner .hd-right .icon-menu{
  display: none;
}

.page-head .head-inner .hd-right .r-link{
	flex-shrink: 0;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	cursor: pointer;
}
.page-head .head-inner .hd-right .r-link .link-txt{
	flex-shrink: 0;
	color: #999;
	margin: 0 10px;
	font-size: 18px;
}
.page-head .head-inner .hd-right .r-link .link-txt:hover,
.page-head .head-inner .hd-right .r-link .link-txt.on{
	color: #D61D01;
}
.page-head .head-inner .hd-right .r-link .link-line{
	color: #999;
}

.page-body{
	position: relative;
	width: 100%;
	padding-top: 92px;
	z-index: 1;
}
/*banner*/
.page-banner{
	position: relative;
	width: 100%;
	overflow:hidden
}
/*login*/
.loginBox{
	position: absolute;
	left: 40%;
	top: 30%;
	width: 21%;
	height: 47%;
	/* background: rgba(0,0,0,.5); */
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	z-index: 100;
}
.loginBox.login-phone{
	position: relative;
	left: auto;
	top: auto;
	width: 100%;
	margin: 3rem auto;
}
.loginBox .login-hd{
	position: relative;
	width: 100%;
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #D61D01;
	text-align: center;
}
.loginBox.login-phone .login-hd{
	font-size: 1.8rem;
}
.loginBox .login-bd{
	position: relative;
	width: 90%;
	margin: 5% auto;
}
.login-form{
	position: relative;
	width: 100%;
	/* padding: 0 10px;
	box-sizing: border-box; */
}
.login-form .form-row{
	position: relative;
	width: 100%;
	height: 48px;
	padding: 5px 10px;
	box-sizing: border-box;
	margin-bottom: 20px;
	background:#fff;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}
.loginBox.login-phone .login-form .form-row{
	border: #F2C2BB 1px solid;
	margin-bottom: .5rem;
}
.login-form .form-row .row-line{
	position: relative;
	height: 24px;
	width: 1px;
	background: #ccc;
	margin: 0 10px;
}
.login-form .form-row .row-select{
	position: relative;
	width: 50px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 14px;
	color: #333;
}
.login-form .form-row .row-select::after{
	position: absolute;
	display: block;
	content: '';
	right: 0;
	top: 50%;
	margin-top: -4px;
	width: 4px;
	height: 4px;
	border-left: #D61D01 2px solid;
	border-bottom: #D61D01 2px solid;
	transform: rotate(-45deg);
	z-index: 1;
}
.login-form .form-row .row-select select{
	position: relative;
	width: 100%;
	text-align: center;
	font-size: 14px;
	color: #333;
	padding-right: 10px;
	box-sizing: border-box;
	background: none;
	border: none;
	outline: none;
	appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;  
	z-index: 2;
}
.login-form .form-row .row-input{
	position: relative;
	flex: 1;
	width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.login-form .form-row .row-input input{
	position: relative;
	width: 100%;
	border: none;
	background: none;
	outline: none;
	font-size: 14px;
	color: #333;
}
.login-form .form-row .row-input input::placeholder{
	color: #ccc;
}
.login-form .form-row .row-btn{
	position: relative;
	flex-shrink: 0;
	font-size: 14px;
	font-weight: 400;
	color: #D61D01;
	cursor: pointer;
}
.loginBox .login-ft{
	position: relative;
	width: 100%;
	font-size: 16px;
	color: #D61D01;
	text-align: center;
	cursor: pointer;
}


.btn-login{
	position: relative;
	width: 100%;
	height: 48px;
	padding: 5px 10px;
	box-sizing: border-box;
	margin-top: 40px;
	margin-bottom: 40px;
	background:#D61D01;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 3px;
	text-indent: 3px;
	cursor: pointer;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	
}

.loginBox.login-phone .btn-login{
	margin: 10% auto;
}

.page-slider{
	position: relative;
	width: 100%;
	/*height: 230px;*/
}
.page-slider .sliderbox{
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.sliderbox .swiper{
	position: relative;
	width: 100%;
	height: 100%;
}
.sliderbox .swiper .swiper-wrapper{
	position: relative;
	width: 100%;
	height: 100%;
}
.sliderbox .swiper .swiper-wrapper .swiper-slide{
	position: relative;
	width: 100%;
	height: 100%;
}
.sliderbox .swiper .swiper-wrapper .swiper-slide img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sliderbox .swiper-pagination-bullet{
	background: #ccc;
	opacity: 1;
}
.sliderbox .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background:#D61D01;
	opacity: 1;
}


/*reg*/
.page-reg{
	position: relative;
	width: 800px;
	padding: 0;
	box-sizing: border-box;
	margin: 0 auto;
}
.page-reg .reg-hd{
	position: relative;
	width: 100%;
	font-weight: bold;
	font-size: 30px;
	color: #D61D01;
	text-align: left;
}
.page-reg .reg-form{
	position: relative;
	width: 100%;
	margin-top: 40px;
}
.reg-form .form-group{
	position: relative;
	width: 100%;
	margin-bottom: 20px;
}
.reg-form .form-group .group-label{
	position: relative;
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	color: #333333;
}
.red-star{
	color: #D61D01;
}
.reg-form .form-group .group-control{
	position: relative;
	width: 100%;
	font-size: 16px;
	color: #333333;
	margin-top: 10px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}
.reg-form .form-group .group-control.w80{
	width: 80%;
}
.reg-form .form-group .group-control .control-item{
	flex: 1;
	height: 40px;
	border: #F2C2BB 1px solid;
	padding: 0 10px;
	box-sizing: border-box;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}
.mr20{
	margin-right: 20px;
}
.page-schedule {
	position: relative;
	width: 900px;
	padding: 0;
	box-sizing: border-box;
	margin: 0 auto;
}

/*弹出层*/
.popbox{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}
.maskbox{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.7);
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}
.pop-thank{
	position: relative;
	width: 45%;
	margin: 0 auto;
}
.icon-close{
	position: relative;
	width: 2rem;
	height: 2rem;
	background: url(../images/icon-close.png) center no-repeat;
	background-size: 100% 100%;
	margin: 1.5rem auto 0;
}
.pop-sc{
	position: relative;
	width: 72%;
	margin: 0 auto;
}
.pop-btn{
	position: absolute;
	left: 0;
	bottom: 10%;
	width: 100%;
	margin-top: 1rem;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}
.pop-btn .btn-item{
	flex-shrink: 0;
	width: 36%;
	margin: 0 .5rem;
	height: 1.6rem;
	border-radius: .8rem;

	background: linear-gradient(to right,#1761cb,#755adc);
	box-shadow: 0 0 5px #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}

.reg-form .form-group .group-control .inputbox{
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.reg-form .form-group .group-control .inputbox input{
	position: relative;
	width: 100%;
	border: none;
	background: none;
	outline: none;
	font-size: 14px;
	color: #333;
}
.reg-form .form-group .group-control .inputbox input::placeholder{
	color: #ccc;
}
.reg-form .form-group .group-control .selectbox{
	position: relative;
	width: 60px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.reg-form .form-group .group-control .selectbox::after{
	position: absolute;
	display: block;
	content: '';
	right: 10px;
	top: 50%;
	margin-top: -4px;
	width: 4px;
	height: 4px;
	border-left: #D61D01 2px solid;
	border-bottom: #D61D01 2px solid;
	transform: rotate(-45deg);
	z-index: 1;
}
.reg-form .form-group .group-control .selectbox select{
	position: relative;
	width: 100%;
	text-align: center;
	font-size: 14px;
	color: #333;
	padding-right: 10px;
	box-sizing: border-box;
	background: none;
	border: none;
	outline: none;
	appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;  
	z-index: 2;
}

.reg-form .form-group .group-control .radiobox{
	position: relative;
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}
.reg-form .form-group .group-control .radiobox .radio-item{
	position: relative;
	flex-shrink: 0;
	width: 20%;
	text-align: left;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	cursor: pointer;
}
.reg-form .form-group .group-control .radiobox .radio-item .icon-radio{
	position: relative;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: #D61D01 1px solid;
	margin-right: 10px;

}
.reg-form .form-group .group-control .radiobox .radio-item .txt-radio{
	flex-shrink: 0;
	font-size: 14px;
	color: #333;
}
.reg-form .form-group .group-control .radiobox .radio-item.on .icon-radio::after{
	position: absolute;
	content: '';
	display: block;
	left: 50%;
	top: 50%;
	margin-left: -5px;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #D61D01;
}

.reg-form .form-group .group-control .checkbox{
	position: relative;
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
}
.reg-form .form-group .group-control .checkbox .check-item{
	position: relative;
	flex-shrink: 0;
	text-align: left;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	cursor: pointer;
}
.reg-form .form-group .group-control .checkbox .check-item .icon-chk{
	position: relative;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	border: #D61D01 1px solid;
	margin-right: 10px;

}
.reg-form .form-group .group-control .checkbox .check-item .txt-chk{
	flex-shrink: 0;
	font-size: 14px;
	color: #333;
}
.reg-form .form-group .group-control .checkbox .check-item.on .icon-chk::after{
	position: absolute;
	content: '';
	display: block;
	left: 50%;
	top: 50%;
	margin-left: -5px;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	background: #D61D01;
}

.reg-form .form-group .group-control .control-item .tel-select{
	flex-shrink: 0;
	width: 60px;
}
.reg-form .form-group .group-control .control-item .tel-line{
	flex-shrink: 0;
	width: 1px;
	height: 24px;
	background:#F2C2BB;
	margin: 0 10px;
}
.reg-form .form-group .group-control .control-item .tel-input{
	flex: 1;
}
.reg-form .form-group .group-control .control-item .code-input{
	flex: 1;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}
.reg-form .form-group .group-control .control-item .code-line{
	flex-shrink: 0;
	width: 1px;
	height: 24px;
	background:#F2C2BB;
	margin: 0 10px;
}
.reg-form .form-group .group-control .control-item .code-btn{
	flex-shrink: 0;
	font-size: 14px;
	color: #D61D01;
	cursor: pointer;
}
.reg-form .form-upload{
	position: relative;
	width: 100%;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-end;
}
.reg-form .form-upload .upload-btn{
	position: relative;
	flex-shrink: 0;
	width: 214px;
	height: 50px;
	border: #D61D01 1px dotted;
	box-sizing: border-box;
	background:rgba(214, 29, 1, 0.04);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #D61D01;
	font-size: 14px;
	font-weight: 600;
	margin-right: 20px;
	cursor: pointer;
}
.reg-form .form-upload .upload-btn input{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}
.reg-form .form-upload .upload-tip{
	flex-shrink: 0;
	font-size: 14px;
	color: #999;
}
.reg-form .form-agreen{
	position: relative;
	width: 100%;
	margin: 40px auto;
}
.reg-form .form-agreen .agreen-txt{
	position: relative;
	width: 100%;
	border: #F2C2BB 1px solid;
	padding: 20px;
	box-sizing: border-box;
	background: rgba(242, 194, 187, 0.1);
	color: #333333;
	font-size: 14px;
}
.reg-form .form-agreen .agreen-btn{
	position: relative;
	width: 100%;
	display: flex;
	flex-flow: row nowrap;
	margin: 10px auto 0;
}
.reg-form .form-agreen .agreen-btn .icon-chk{
	position: relative;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	border: #D61D01 1px solid;
	margin-right: 10px;
	cursor: pointer;
}
.reg-form .form-agreen .agreen-btn .txt-chk{
	position: relative;
	cursor: pointer;
	flex-shrink: 0;
	font-size: 14px;
	color: #333;
}
.reg-form .form-agreen .agreen-btn.on .icon-chk::after{
	position: absolute;
	content: '';
	display: block;
	left: 50%;
	top: 50%;
	margin-left: -5px;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	background: #D61D01;
}

.activebox{
	position: relative;
	width: 100%;
	border: #e2e2e2 1px solid;
	box-sizing: border-box;
}
.activebox .active-hd{
	position: relative;
	width: 100%;
	min-height: 40px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	text-align: center;
	background: #CA0f10;
}
.activebox .active-hd .hd-item{
	position: relative;
	flex: 1;
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}
.activebox .active-bd{
	position: relative;
	width: 100%;
}
.activebox .active-bd .bd-row{
	position: relative;
	width: 100%;
	min-height: 36px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	text-align: center;
	background: #e2e2e2;
}
.activebox .active-bd .bd-row:nth-child(odd){
	background: #fff;
}
.activebox .active-bd .bd-row .row-item{
	position: relative;
	flex: 1;
	font-size: 14px;
	color: #333333;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: center;
}
.activebox .active-bd .bd-row .row-item .icon-true{
	position: relative;
	width: 14px;
	height: 14px;
	background: url(../images/icon-true.png) center no-repeat;
	background-size: 100% 100%;
	margin: 0 auto;
}
.activebox .active-bd .bd-row .row-item .icon-false{
	position: relative;
	width: 14px;
	height: 14px;
	background: url(../images/icon-false.png) center no-repeat;
	background-size: 100% 100%;
	margin: 0 auto;
}


.btn-reg{
	position: relative;
	width: 60%;
	height: 48px;
	padding: 5px 10px;
	box-sizing: border-box;
	margin: 60px auto 0;
	background:#D61D01;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 3px;
	text-indent: 3px;
	cursor: pointer;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	
}

/*弹出层*/
.popbox{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}
.maskbox{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background:rgba(0,0,0,.7);
	display:flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}
.pop-login{
	position: relative;
	width: 700px;
	background: #fff;
	border-radius: 13px;
	padding: 2rem;
	box-sizing: border-box;
}
.pop-login img{
	border-radius: 50%;
}
.pop-login .login-form{
	position: relative;
	width: 100%;
	z-index: 2;
}
.pop-login .login-form .form-title{
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	text-indent: 10px;
	letter-spacing: 10px;
	color: #333;
	/* background: linear-gradient(to bottom, #ffffff, #A2FFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}
.pop-login .login-form .form-title2{
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	text-indent: 10px;
	color: #333;
	/* background: linear-gradient(to bottom, #ffffff, #A2FFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}
.pop-login .login-form .form-line{
	position: relative;
	width: 2rem;
	height: 4px;
	border-radius: 2px;
	background: linear-gradient(to right, #392CBF, #C068DB);
	margin: .5rem auto 1rem;
}
.pop-login .login-form .form-con{
	position: relative;
	width: 100%;
	margin-top: 1.5rem;
}
.pop-login .login-form .form-con .form-tip{
	position: relative;
	width: 100%;
	margin: 0 auto 1rem;
	color: #B262D8;
	font-size: 13px;
	text-align: center;
}

.pop-close{
	position: relative;
	width: 2.5rem;
	height: 2.5rem;
	background: url(../images/icon-close.png) center no-repeat;
	background-size: 100% 100%;
	margin-top: 1.5rem;
	cursor: pointer;
}

/* 当窗口宽度大于 900px 时应用的样式 */
/* @media (min-width: 1701px) {
	.loginBox .login-hd{
		font-size: 28px;
	}
} */

/* 当窗口宽度大于 1500px 且小于或等于 1600px 时应用的样式 */
/* @media screen and (min-width: 1500px) and (max-width: 1700px) {
  .loginBox .login-hd{
  	font-size: 24px;
  }
}
 */
/* 视口宽度小于等于768px */
/* @media (max-width: 768px) {
	.l-menu{
		display: none;
	}
} */
@media screen and (max-width: 750px) {
  /* 在屏幕宽度小于或等于 750px 时应用的 CSS 规则 */
	.loginBox .login-hd{
		font-size: 1.8rem;
		margin-bottom: 2rem;
		margin-top: 2rem;
	}
  .pc{
  	display: none;
  }
  .phone{
  	display: block;
  }
  .page{
	  min-width: 100%;
  }
  .page-head{
	  height: 3.5rem;
	  padding: 1rem 1rem;
	  box-sizing: border-box;
  }
  .page-head .head-inner{
	  width: 100%;
  }
  .page-head .head-inner .hd-left .logo{
	  width: 4.5rem;
  }
  .page-head .head-inner .hd-left .l-menu{
  	display: none;
  }
  .page-head .head-inner .hd-right .r-link{
	  display: none;
  }
  .page-head .head-inner .hd-right .icon-menu{
	  display: block;
	  width: 1.2rem;
	  height: 1.2rem;
	  background: url(../images/icon-menu.png) center no-repeat;
	  background-size: 100% 100%;
  }
  
  .page-slider{
	  height: 11rem;
  }
  .page-reg{
	  width: 90%;
	  padding: 1rem 0;
	  box-sizing: border-box;
  }
  .page-reg .reg-hd{
	  font-size: 2rem;
  }
  .page-reg .reg-form{
	  margin-top: 1rem;
  }

  .page-schedule{
	  width: 100%;
	  padding: 0;
	  box-sizing: border-box;
  }
  .reg-form .form-group .group-control.w80{
	  width: 100%;
  }
  
  .reg-form .form-group .group-control .checkbox{
	  flex-flow: column;
  }
  .reg-form .form-group .group-control .checkbox .check-item{
	  width: 100%;
	  justify-content: flex-start;
	  margin: .5rem 0;
  }
  .reg-form .form-group .group-control{
	  flex-flow: column;
	  margin-top: 0;

  }
  .reg-form .form-group .group-control .control-item{
	  flex: none;
	  width: 100%;
	  margin: .5rem 0!important;
  }
  .reg-form .form-upload{
	  flex-flow: column;
	  align-items: center;
	  justify-content: center;
  }
  .reg-form .form-upload .upload-btn{
	  width: 100%;
	  margin-right: 0;
  }
  .reg-form .form-upload .upload-tip{
	  text-align: center;
	  margin-top: .5rem;
  }
  .reg-form .form-upload .upload-tip{
	  padding: .75rem;
  }
  .btn-reg{
	  margin: 1rem auto;
	  font-size: .9rem;
	  width: 100%;
  }
  
  .reg-form .form-group .group-control .radiobox.r1 .radio-item{
	  width: 50%;
	  margin: .5rem 0;
  }
  .reg-form .form-group .group-control .radiobox.r2 .radio-item{
  	  width: 25%;
  	  margin: .5rem 0;
  }
  .reg-form .form-group .group-control .radiobox.r3 .radio-item{
  	  width: 33.33%;
  	  margin: .5rem 0;
  }
  
  .activebox .active-hd .hd-item{
	  font-size: .6rem;
  }
  .activebox .active-bd .bd-row .row-item{
	  font-size: .6rem;
  }
  
  .page-body{
	  padding-top: 3.5rem;
  }

	.pop-menu2{
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 8;
		margin-top: 3.5rem;
	}
	.pop-menu2 .menu-mask{
		position: absolute;
		left: 0;
		top:0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.6);
	}
	.pop-menu2 .menu-mask .menubox{
		position: relative;
		width: 100%;
		padding:15px;
		box-sizing: border-box;
		border-radius: 0 0 10px 10px;
		background: #fff;
	}
	.pop-menu2 .menu-mask .menubox ul{
		position: relative;
		width: 100%;
	}
	.pop-menu2 .menu-mask .menubox ul li{
		position: relative;
		width: 100%;
		font-size: 1rem;
		color: #333333;
		padding: 15px 0;
		box-sizing: border-box;
	}
	.pop-menu2 .menu-mask .menubox ul li a{
		color: #333333;
	}
	.pop-menu2 .menu-mask .menubox ul li.on{
		color: #D61D01;
		font-weight: bold;
	}
  
  .page-banner{
	  overflow: inherit;
  }
  .loginBox{
	  position: absolute;
	  left: 0;
	  top: 100%;
	  width: 100%;
	  /*margin-top: 1rem;*/
	  display: block;
  }
  .login-form .form-row{
	  border: #F2C2BB 1px solid;
  }

	.pop-login{
		width: 80%;
		padding: 1rem;
	}

	.pop-login .login-form .form-title{
		font-size: 1.5rem;
	}
	.pop-login .login-form .form-title2{
		font-size: 1rem;
	}
	.pop-close{
		width: 2rem;
		height: 2rem;
	}
	.pop-login .login-form .form-con {
		font-size: 14px !important;
	}
}




