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: min(920px, calc(100% - 48px));
	padding: 32px 0 80px;
	box-sizing: border-box;
	margin: 0 auto;
}
.page-reg .reg-banner{
	margin-bottom: 28px;
	border-radius: 6px;
	box-shadow: 0 12px 30px rgba(31, 35, 41, .08);
}
.page-reg .reg-hd{
	position: relative;
	width: 100%;
	font-weight: bold;
	font-size: 28px;
	color: #D61D01;
	text-align: left;
	line-height: 1.25;
}
.registration-partners{
	margin: -2px 0 10px;
	text-align: center;
}
.registration-partners a{
	display: inline;
	color: #D61D01;
	font-size: 15px;
	text-decoration: none;
}
.registration-partners a:hover{
	color: #b71901;
}
.page-reg .reg-form{
	position: relative;
	width: 100%;
	margin-top: 18px;
	padding: 30px 34px 34px;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid #eef0f3;
	border-radius: 8px;
	box-shadow: 0 16px 40px rgba(31, 35, 41, .08);
}
.reg-form .form-group{
	position: relative;
	width: 100%;
	margin-bottom: 22px;
}
.reg-form .form-group .group-label{
	position: relative;
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	color: #333333;
	line-height: 1.45;
}
.optional-label{
	font-size: 12px;
	color: #999;
	font-weight: normal;
	margin-left: 4px;
}
.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: flex-start;
	gap: 14px;
}
.reg-form .form-group .group-control.stacked-control{
	flex-direction: column;
	gap: 8px;
}
.reg-form .form-group .group-control.w80{
	width: 80%;
}
.reg-form .form-group .group-control .control-item{
	flex: 1;
	min-width: 0;
	min-height: 46px;
	border: #F2C2BB 1px solid;
	border-radius: 6px;
	padding: 0 14px;
	box-sizing: border-box;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.reg-form .form-group .group-control .control-item:focus-within{
	border-color: #D61D01;
	box-shadow: 0 0 0 3px rgba(214, 29, 1, .08);
}
.mr20{
	margin-right: 0;
}
.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;
}
.pop-thank div{
	color: #fff;
}
.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%;
	min-width: 0;
	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: 15px;
	color: #333;
	line-height: 24px;
}
.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.selectbox-wide{
	width: 100%;
	min-height: 46px;
	border: #F2C2BB 1px solid;
	border-radius: 6px;
	box-sizing: border-box;
	background: #fff;
}
.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: 15px;
	color: #333;
	padding: 0 34px 0 14px;
	box-sizing: border-box;
	background: none;
	border: none;
	outline: none;
	appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;
	z-index: 2;
	min-height: 44px;
	text-align-last: left;
}

.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;
	box-sizing: border-box;
}
.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: 1;
	min-width: 0;
	font-size: 14px;
	color: #333;
	line-height: 1.45;
	word-break: break-word;
}
.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 .option-list{
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
}
.reg-form .form-group .group-control .option-list .radio-item,
.reg-form .form-group .group-control .option-grid .radio-item{
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid #e6e8eb;
	border-radius: 6px;
	background: #fff;
}
.reg-form .form-group .group-control .option-list .radio-item{
	width: 100%;
	align-items: flex-start;
}
.reg-form .form-group .group-control .option-grid{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}
.reg-form .form-group .group-control .option-grid .radio-item{
	width: 100%;
}
.reg-form .form-group .group-control .compact-grid{
	max-width: 360px;
}
.reg-form .form-group .group-control .option-list .radio-item.on,
.reg-form .form-group .group-control .option-grid .radio-item.on{
	border-color: #D61D01;
	background: rgba(214, 29, 1, .04);
}

.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;
	box-sizing: border-box;
}
.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: 1;
	min-width: 0;
	font-size: 14px;
	color: #333;
	line-height: 1.45;
	word-break: break-word;
}
.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 .chip-list{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	gap: 10px;
}
.reg-form .form-group .group-control .chip-list .check-item{
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 12px;
	border: 1px solid #e6e8eb;
	border-radius: 6px;
	background: #fff;
}
.reg-form .form-group .group-control .chip-list .check-item.on{
	background: #fff5f3;
	border-color: #D61D01;
	color: #D61D01;
}
.reg-form .form-group .group-control .chip-list .check-item.on .txt-chk{
	color: #D61D01;
}
.phone-control{
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	width: 100%;
	min-width: 0;
}
.phone-control .phone-code-item{
	flex: 0 0 auto;
	width: 80px;
	padding-left: 12px;
	padding-right: 10px;
}
.reg-form .form-group .group-control .phone-code-item{
	flex: 0 0 100px;
	width: 100px;
}
.phone-control .phone-tel-item{
	flex: 1;
	min-width: 0;
}
.phone-control .phone-code-prefix{
	flex-shrink: 0;
	font-size: 15px;
	color: #333;
	line-height: 24px;
	margin-right: 2px;
	user-select: none;
}
.phone-control .phone-code-item .inputbox{
	flex: 1;
	min-width: 0;
}
.phone-control .phone-code-item .inputbox input::-webkit-calendar-picker-indicator{
	display: none !important;
}
.form-tip {
	width: 100%;
	font-size: 12px;
	color: #999;
	line-height: 1.5;
	margin-top: 6px;
}
.conditional-block{
	margin: 4px 0 22px;
	padding: 20px 22px 2px;
	border: 1px dashed #F2C2BB;
	border-radius: 8px;
	background: rgba(214, 29, 1, .025);
	box-sizing: border-box;
}
.acca-verify-status-wrap{
	margin-top: 8px;
	min-height: 18px;
}
.acca-verify-status{
	font-size: 12px;
	line-height: 18px;
}

.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;
	gap: 16px;
	margin-top: 8px;
}
.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: 0;
	cursor: pointer;
	border-radius: 6px;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.reg-form .form-upload .upload-btn.uploading {
	background-color: #f0f0f0;
	border-color: #dcdfe6;
	color: #666;
	cursor: not-allowed;
}
.reg-form .form-upload .upload-btn.success {
	background-color: #22ac38;
	border-color: #22ac38;
	color: white;
}
.reg-form .form-upload .upload-btn.success:hover {
	background-color: #1e9932;
}
.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: 1;
	min-width: 0;
	font-size: 14px;
	color: #999;
	line-height: 1.55;
}
.reg-form .form-agreen{
	position: relative;
	width: 100%;
	margin: 28px 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;
	align-items: flex-start;
}
.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: 1;
	min-width: 0;
	font-size: 14px;
	color: #333;
	line-height: 1.55;
	word-break: break-word;
}
.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;
}
.consent-box {
	background: #fafbfc;
	border: 1px solid #e6e8eb;
	border-radius: 8px;
	padding: 18px 20px;
	box-sizing: border-box;
}
.consent-title-main {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 12px;
	color: #1f2329;
}
.consent-section {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px dashed #e6e8eb;
}
.consent-section:first-of-type {
	border-top: none;
	padding-top: 0;
	margin-top: 12px;
}
.consent-title {
	font-weight: bold;
	color: #1f2329;
	margin-bottom: 8px;
	font-size: 14px;
}
.consent-scroll {
	max-height: 220px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #e6e8eb;
	border-radius: 6px;
	padding: 10px 12px;
	font-size: 13px;
	line-height: 1.65;
	color: #4e5969;
	margin-bottom: 10px;
	box-sizing: border-box;
}
.consent-scroll p {
	margin: 0 0 8px 0;
	text-align: justify;
}
.consent-scroll p:last-child {
	margin-bottom: 0;
}
.consent-section .agreen-btn {
	margin-top: 8px;
}
.form-partners{
	text-align: center;
	margin: 18px 0 8px;
}
.form-partners a{
	color: #1e6bd6;
	font-size: 14px;
}

.activebox{
	position: relative;
	width: 100%;
	border: #e2e2e2 1px solid;
	box-sizing: border-box;
	border-radius: 6px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.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,
.activebox .active-bd{
	min-width: 680px;
}
.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;
	padding: 8px 10px;
	box-sizing: border-box;
	line-height: 1.35;
}
.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%;
	min-height: 50px;
	padding: 12px 18px;
	box-sizing: border-box;
	margin: 36px auto 0;
	background:#D61D01;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
	text-indent: 0;
	cursor: pointer;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 6px;
	line-height: 1.4;

}

/* 邀请有礼 */
.invite-promo-card{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 20px 0 28px;
	padding: 20px 24px;
	box-sizing: border-box;
	background: #CA0f10;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}
.invite-promo-card:hover,
.invite-promo-card:visited,
.invite-promo-card:active{
	color: #fff;
	text-decoration: none;
}
.invite-promo-main{
	flex: 1;
	min-width: 0;
}
.invite-promo-title{
	font-weight: bold;
	font-size: 30px;
	color: #fff;
	line-height: 1.3;
}
.invite-promo-desc{
	margin-top: 8px;
	font-size: 14px;
	color: #fff;
	line-height: 1.4;
}
.invite-promo-arrow{
	flex-shrink: 0;
	margin-left: 16px;
	width: 14px;
	height: 14px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	box-sizing: border-box;
}

.invite-rules-panel{
	margin: 24px 0 20px;
	padding: 18px 20px;
	background: #FFF7F6;
	border: 1px solid #F2C2BB;
	box-sizing: border-box;
}
.invite-rules-title{
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 700;
	color: #D61D01;
	line-height: 1.4;
}
.invite-rules-desc{
	font-size: 14px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 8px;
}

.invite-list-hd{
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin-bottom: 14px;
}
.invite-list-count{
	font-size: 14px;
	font-weight: 500;
	color: #999;
}
.invite-empty{
	padding: 40px 16px;
	text-align: center;
	color: #999;
	font-size: 14px;
	background: #fafafa;
	border: 1px dashed #e5e5e5;
}
.invite-table{
	width: 100%;
	border: 1px solid #F2C2BB;
	box-sizing: border-box;
}
.invite-table-hd,
.invite-table-row{
	display: flex;
	align-items: stretch;
	width: 100%;
}
.invite-table-hd{
	background: #FFF0EE;
	font-weight: 600;
	color: #333;
	font-size: 14px;
}
.invite-table-row{
	border-top: 1px solid #F2C2BB;
	font-size: 14px;
	color: #555;
	background: #fff;
}
.invite-table-hd > div,
.invite-table-row > div{
	padding: 12px 14px;
	box-sizing: border-box;
	word-break: break-all;
	display: flex;
	align-items: center;
}
.invite-table .col-index{
	flex: 0 0 56px;
	justify-content: center;
}
.invite-table .col-email{
	flex: 1.4;
	min-width: 0;
	border-left: 1px solid #F2C2BB;
}
.invite-table .col-date{
	flex: 0.8;
	min-width: 96px;
	border-left: 1px solid #F2C2BB;
}
.invite-back{
	margin: 36px auto 20px;
	width: 60%;
	height: 48px;
	background: #fff;
	border: 1px solid #D61D01;
	color: #D61D01;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

/*弹出层*/
.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;
}

/* public stats */
.public-stats{
	position: relative;
	width: min(920px, calc(100% - 48px));
	padding: 32px 0 80px;
	box-sizing: border-box;
	margin: 0 auto;
}
.public-stats-head{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 18px;
}
.public-stats-kicker{
	font-size: 13px;
	color: #999;
	line-height: 1.5;
	margin-bottom: 4px;
}
.public-stats h1{
	margin: 0;
	font-size: 28px;
	line-height: 1.25;
	color: #D61D01;
}
.public-stats-meta{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	font-size: 13px;
	color: #777;
	line-height: 1.45;
}
.public-stats-card{
	background: #fff;
	border: 1px solid #eef0f3;
	border-radius: 8px;
	box-shadow: 0 16px 40px rgba(31, 35, 41, .08);
	overflow: hidden;
}
.public-stats-filter{
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 18px;
	padding: 18px;
	border-bottom: 1px solid #eef0f3;
	box-sizing: border-box;
}
.public-stats-filter label{
	flex: 0 0 auto;
	font-size: 14px;
	color: #555;
	line-height: 1.45;
}
.public-stats-filter select{
	width: 260px;
	max-width: 100%;
	height: 38px;
	padding: 0 34px 0 12px;
	border: 1px solid #d8dde6;
	border-radius: 6px;
	background: #fff;
	color: #333;
	font-size: 14px;
	line-height: 38px;
	box-sizing: border-box;
}
.public-stats-filter button,
.public-stats-filter a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 38px;
	padding: 0 16px;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	box-sizing: border-box;
	cursor: pointer;
}
.public-stats-filter button{
	border: 1px solid #D61D01;
	background: #D61D01;
	color: #fff;
}
.public-stats-filter a{
	border: 1px solid #d8dde6;
	background: #fff;
	color: #555;
}
.public-stats-table-wrap{
	width: 100%;
	overflow-x: auto;
}
.public-stats-table{
	width: 100%;
	border-collapse: collapse;
	min-width: 560px;
}
.public-stats-table th,
.public-stats-table td{
	padding: 14px 18px;
	border-bottom: 1px solid #eef0f3;
	font-size: 14px;
	line-height: 1.45;
	text-align: left;
	color: #333;
	white-space: nowrap;
}
.public-stats-table th{
	background: #2f3338;
	color: #fff;
	font-weight: 600;
}
.public-stats-table tbody tr:nth-child(even){
	background: #fafafa;
}
.public-stats-table tbody tr:last-child td{
	border-bottom: none;
}
.public-stats-empty{
	padding: 48px 20px;
	text-align: center;
}
.public-stats-empty .empty-title{
	font-size: 18px;
	color: #333;
	margin-bottom: 8px;
}
.public-stats-empty .empty-desc{
	font-size: 13px;
	color: #999;
}

/* 当窗口宽度大于 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: calc(100% - 24px);
		  padding: .85rem 0 2rem;
		  box-sizing: border-box;
	  }
	  .page-reg .reg-banner{
		  margin-bottom: 1rem;
		  border-radius: 4px;
	  }
	  .page-reg .reg-hd{
		  font-size: 1.6rem;
	  }
	  .page-reg .reg-form{
		  margin-top: .8rem;
		  padding: 1rem;
		  border-radius: 8px;
	  }

  .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: .35rem 0;
	  }
	  .reg-form .form-group .group-control{
		  flex-flow: column;
		  margin-top: .45rem;
		  gap: .5rem;

	  }
	  .reg-form .form-group .group-control .control-item{
		  flex: none;
		  width: 100%;
		  margin: 0!important;
		  min-height: 44px;
	  }
	  .reg-form .form-group .group-control.verification-control{
		  gap: .6rem;
	  }
	  .phone-control{
		  width: 100%;
		  min-width: 0;
		  gap: .45rem;
	  }
	  .reg-form .form-group .group-control .phone-control .phone-code-item{
		  flex: 0 0 5.6rem;
		  width: 5.6rem;
		  min-width: 0;
		  padding-left: .7rem;
		  padding-right: .55rem;
	  }
	  .reg-form .form-group .group-control .phone-control .phone-tel-item{
		  flex: 1 1 auto;
		  width: auto;
		  min-width: 0;
	  }
	  .phone-control .phone-code-prefix{
		  font-size: .8rem;
	  }
	  .conditional-block{
		  padding: .8rem .75rem .15rem;
		  margin: .3rem 0 1rem;
	  }
	  .reg-form .form-group .group-control .chip-list{
		  flex-flow: row wrap;
		  gap: .5rem;
	  }
	  .reg-form .form-group .group-control .chip-list .check-item{
		  width: auto;
		  max-width: 100%;
		  margin: 0;
	  }
	  .reg-form .form-upload{
		  flex-flow: column;
		  align-items: stretch;
		  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: 1.2rem auto 0;
		  font-size: .9rem;
		  width: 100%;
		  min-height: 48px;
	  }

  .invite-promo-card{
	  margin: 20px 0 1rem;
	  padding: .9rem 1rem;
  }
  .invite-promo-title{
	  font-size: 1.4rem;
  }
  .invite-promo-desc{
	  font-size: .75rem;
  }
  .invite-promo-arrow{
	  margin-left: .5rem;
	  width: 10px;
	  height: 10px;
  }
  .invite-rules-panel{
	  margin: 1rem 0;
	  padding: .85rem;
  }
  .invite-rules-title{
	  font-size: 1rem;
  }
  .invite-rules-desc{
	  font-size: .75rem;
  }
  .invite-table-hd,
  .invite-table-row{
	  flex-wrap: wrap;
  }
  .invite-table .col-index,
  .invite-table .col-email,
  .invite-table .col-date{
	  flex: none;
	  width: 100%;
	  border-left: none;
	  min-width: 0;
	  justify-content: flex-start;
  }
  .invite-table .col-date{
	  border-top: 1px dashed #F2C2BB;
	  padding-top: .4rem;
  }
  .invite-table-hd .col-index,
  .invite-table-hd .col-date{
	  display: none;
  }
  .invite-table-row .col-index:before{
	  content: "编号：";
	  color: #999;
	  flex-shrink: 0;
  }
  .invite-table-row .col-date:before{
	  content: "注册日期：";
	  color: #999;
	  flex-shrink: 0;
  }
  .invite-back{
	  width: 100%;
	  margin: 1.5rem auto 1rem;
	  font-size: .9rem;
  }
  .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;
  }
	  .reg-form .form-group .group-control .radiobox.option-list,
	  .reg-form .form-group .group-control .radiobox.option-grid{
		  gap: .4rem;
	  }
	  .reg-form .form-group .group-control .radiobox.option-list .radio-item,
	  .reg-form .form-group .group-control .radiobox.option-grid .radio-item{
		  width: 100%;
		  margin: 0;
		  min-height: 42px;
		  padding: 8px 12px;
	  }
	  .reg-form .form-group .group-control .option-grid{
		  grid-template-columns: 1fr;
	  }
	  .reg-form .form-agreen{
		  margin: 1.2rem auto;
	  }
	  .consent-box{
		  padding: .85rem;
	  }
	  .consent-scroll{
		  max-height: 11rem;
		  font-size: .68rem;
	  }
	  .reg-form .form-agreen .agreen-btn .txt-chk{
		  font-size: .72rem;
	  }
	  .activebox .active-hd,
	  .activebox .active-bd{
		  min-width: 620px;
	  }

	  .public-stats{
		  width: calc(100% - 24px);
		  padding: .85rem 0 2rem;
	  }
	  .public-stats-head{
		  flex-direction: column;
		  align-items: flex-start;
		  gap: .6rem;
		  margin-bottom: .8rem;
	  }
	  .public-stats h1{
		  font-size: 1.6rem;
	  }
	  .public-stats-meta{
		  align-items: flex-start;
		  font-size: .68rem;
	  }
	  .public-stats-card{
		  border-radius: 8px;
	  }
	  .public-stats-filter{
		  align-items: stretch;
		  flex-direction: column;
		  gap: .5rem;
		  margin: .75rem;
		  padding: .75rem;
	  }
	  .public-stats-filter label,
	  .public-stats-filter select,
	  .public-stats-filter button,
	  .public-stats-filter a{
		  width: 100%;
		  font-size: .72rem;
	  }
	  .public-stats-filter select,
	  .public-stats-filter button,
	  .public-stats-filter a{
		  height: 2rem;
	  }
	  .public-stats-table{
		  min-width: 520px;
	  }
	  .public-stats-table th,
	  .public-stats-table td{
		  padding: .65rem .75rem;
		  font-size: .72rem;
	  }

	  .activebox .active-hd .hd-item{
	  font-size: .7rem;
  }
	  .activebox .active-bd .bd-row .row-item{
	  font-size: .68rem;
  }
  
  .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;
	}
}




