body {
	cursor: pointer;
}
.top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 3;
}
.lang-wrap{
	height: 30px;
	background: #EE1B25;
	top: 60px;
	position: fixed;
	width: 100%;
	z-index: 3;
}
.lang-wrap>a{
	float: left;
	width: 49%;
	text-align: center;
	text-decoration: underline;
	font-size: 13px;
	color: #fff;
}
.tabs {
	height: 36px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 3.2%;
	background: #EE1B25;
	position: fixed;
	top: 90px;
	left: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: 100%;
	z-index: 3;
}
.tabs .tab {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	position: relative;
	height: 36px;
	line-height: 36px;
	font-size: 13px;
	font-weight: 400;
	text-align: center;
	color: #fff;
	background: #EE1B25;
	border-radius: 8px 8px 0 0;

}
.tabs .tab::before {
	content: '';
	width: 16%;
	height: 2px;
	background: #EE1B25;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -8%;
}

.tabs .tab::after {
	content: '';
	width: 0;
	height: 0;
	border-bottom: 32px solid #fff;
	position: absolute;
	bottom: 0;
	z-index: 2;
	display: none;
}
.tabs .tab:nth-child(1)::after {
	border-right: 16px solid transparent;
	right: -15px;
}
.tabs .tab:nth-child(2)::after {
	border-left: 16px solid transparent;
	left: -15px;
}
.tabs .tab.curr::after {
	display: block;
}
.tabs .tab.curr {
	background: #fff;
	font-weight: 600;
	color: #333;
}

.main-container {
	padding-top: 130px;
}
/*form-container*/
.form-container {
	display: none;
	padding: 0 4%;
}
.form-container.curr {
	display: block;
}

.form-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 54px;
}
.form-row.hide {
	display: none;
}
/* select-error */
.form-row {position:relative;}
.form-column>.error {position: absolute;right: 0;bottom: 0;font-size: 11px;color: #ff0000;}

.form-column {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.under-line {
	border-bottom: 1px solid #E8E8E8;
	position: relative;
    z-index: 2;
}
.form-icon {
	width: 40px;
	-webkit-box-flex: inherit;
	    -ms-flex: inherit;
	        flex: inherit;
}
.form-icon i {
	width: 40px;
	height: 40px;
	display: inline-block;
	background-position: center;
	background-size: 24px;
	background-repeat: no-repeat;
}
.form-icon i.icon-user {
	background-image: url(../../images/newRegister/icon-user.png);
}
.form-icon i.icon-card {
	background-image: url(../../images/newRegister/icon-card.png);
}
.form-icon i.icon-lock {
	background-image: url(../../images/newRegister/icon-lock.png);
}
.form-icon i.icon-phone {
	background-image: url(../../images/newRegister/icon-phone.png);
}
.form-icon i.icon-valid {
	background-image: url(../../images/newRegister/icon-valid.png);
}
.form-icon i.icon-mail {
	background-image: url(../../images/newRegister/icon-mail.png);
}
.form-cell {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.form-cell.py-cell {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	color: #666;
}
.form-cell.py-cell span {
	text-align: right;
}
.form-cell.hide {
	display: none;
}
.form-input {
}
.form-err-txt {
	display: none;
	-webkit-box-flex: inherit;
	    -ms-flex: inherit;
	        flex: inherit;
	text-align: right;
	color: #FF1515;
}
.form-cell input, .btn-birthday {
	height: 50px;
	line-height: 50px;
	outline: none;
	border: 0;
	font-size: 14px;
	color: #333;
	flex: 1;
	min-width: 100px;
	width: 100%;
	font-weight: 600;
}
.form-cell input#birthday {
	width: 0.5px;
    height: 50px;
    min-width: auto;
	flex: 0;
	opacity: 0;
}
.form-cell input {
	line-height: 30px;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999;
  font-weight: 400;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  color: #999;
  font-weight: 400;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
  font-weight: 400;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999;
  font-weight: 400;
}
#areaCode {
	width: 100%;
	min-width: auto;
}
#email {
	min-width: 140px;
}
.form-cell label.error {
	min-width: 101px;
    line-height: 12px;
    color: #FF1515;
    text-align: right;
}
.form-cell label.checked {
	min-width: 0;
}
.btn-getcode {
	display: inline-block;
	padding: 0 10px;
	height: 30px;
	border: 1px solid #FF1515;
	border-radius: 30px;
	color: #FF1515;
	font-size: 12px;
	text-align: center;
	line-height: 30px;
	min-width: 80px;
}
.disabled {
	border: 1px solid #999;
	color: #999;
}
.btn-birthday.disabled {
	border: 0;
}
.ctl_register {
	display: flex;
	height: 40px;
	border-radius: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	line-height: 40px;
	background: #FF0000;
	padding: 0 12%;
}
.form-submit {
	justify-content: center;
	margin: 30px 0 20px;
}
.terms {
	height: 24px;
	line-height: 24px;
	margin-top: 10px;
}
.terms a {
	color: #FF1515;
}
.terms input[type='checkbox'],.terms input[type='radio'] {
	margin-right: 8px;
	width: 20px;
	height: 20px;
    -webkit-appearance:none;
    border: 0;
    outline: none;
	background: url(../../images/newRegister/check.png) no-repeat center;
	background-size: 16px;
	vertical-align: middle;
	margin-top: -3px;
}
.terms input[type=checkbox]:checked, .terms input[type=radio]:checked{
   background-image: url("../../images/newRegister/checked.png");
   background-size: 20px;
}

.form-ewm, .form-getcode {
	text-align: right;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.form-err .under-line {
	border-bottom: 1px solid #FF1515;
}
.form-err .form-err-txt {
	display: block;
}

.tips-box {
	padding: 4%;
	background: #F9F9F9;
	margin-bottom: 4%;
	border-radius: 8px;
}
.tips-box h5 {
	font-size: 14px;
	color: #333;
	line-height: 30px;
	font-weight: 600;
}
.tips-box p {
	position: relative;
	padding-left: 20px;
	font-size: 12px;
	color: #666;
	line-height: 20px;
	margin-bottom: 5px;
}
.tips-box p i {
	position: absolute;
	width: 20px;
	line-height: 20px;
	font-style: normal;
	left: 0;
	top: 0;
}

.form-group {}
.form-group h5 {
	position: relative;
	margin: 0 -4%;
	height: 32px;
	line-height: 32px;
	background: #F9F9F9;
	color: #ccc;
	font-size: 12px;
	padding: 0 4%;
	border-top: 1px solid #e8e8e8;
    margin-top: -1px;
}
.form-group:first-child h5 {
	border-top: 0;
	margin-top: 0;
}
.form-select {
	position: relative;
}
.form-select select {
	width: 100%;
	border: none;
	-webkit-appearance: none;   /* Safari 和 Chrome */
	-moz-appearance: none;   /* Firefox */
	background: transparent;
	outline: none;
	background: url(../../images/newRegister/icon-drop.png) no-repeat right center;
	background-size: 12px;
	font-size: 14px;
	color: #333;
	font-weight: 600;
}
.form-select label {
	position: absolute;
	font-size: 12px;
	color: #666;
	right: 14px;
	height: 20px;
	line-height: 20px;
	top: 50%;
	margin-top: -10px;
	z-index: 2;
	pointer-events: none
}

.form-area-code {
	-webkit-box-flex: inherit;
	    -ms-flex: inherit;
	        flex: inherit;
	width: 50px;
	margin-right: 20px;
}
.weui-half-screen-dialog {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}
.weui-half-screen-dialog__hd {
	height: 4em;
}
.weui-half-screen-dialog__ft {
	padding: 20px 24px 32px;
}
#weui-picker-confirm {background: #ff0000;}

.layui-m-layer1 .layui-m-layerchild.layui-m-layer-rule {
	width: 90%;
	border-radius: 8px;
}
.layui-m-layer0 .layui-m-layerchild {
	width: 80% !important;
}
.layui-m-layer-confirm .layui-m-layercont {
	padding: 30px 20px !important;
}
.layui-m-layerbtn span[yes] {
	color: #FF0000 !important;
}
.layer-rule {
	padding: 15px;
	background: #fff;
	position: relative;
	border-radius: 8px;
}
.layer-header {
	height: 45px;
}
.layer-header h5 {
	color: #333;
	font-size: 18px;
	height: 45px;
	line-height: 45px;
	text-align: center;
}
.layer-rule .close {
	position: absolute;
	width: 20px;
	height: 20px;
	background: url(../../images/close.png) no-repeat center;
	background-size: 18px;
	right: 15px;
	top: 15px;
}
.layer-con {
	height: 60vh;
	overflow: hidden;
	overflow-y: auto;
	background: #F9F9F9;
	padding: 0 12px;
	border-radius: 4px;
	border-top: 12px solid #F9F9F9;
	border-bottom: 12px solid #F9F9F9;
}
.layer-con p {
	font-size: 12px;
	color: #666;
}
.layer-con iframe {
	width: 100%;
	height: 100%;
	border: 0;
	background: transparent;
}
.layer-floor {
}
.layer-floor .btns {
	margin-top: 20px;
	text-align: center;
}
.layer-floor .btns span {
	height: 34px;
	line-height: 34px;
	font-size: 16px;
	color: #fff;
	background: #FF0000;
	border-radius: 8px;
	margin: 0 6px;
	display: inline-block;
	width: 30%;
	border: 1px solid #FF0000;
}
.layer-floor .btns span.agree {}
.layer-floor .btns span.unagree {
	background:#fff;
	color: #FF0000;
}
.layer-floor p {
	text-align: center;
	font-size: 12px;
	color: #666;
	margin-top: 12px;
}
.layer-floor p a {
	margin: 0 20px;
	text-decoration: underline;
}
body .layui-m-layer .layui-m-layer-msg {
	bottom: auto !important;
}