.tabbar-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.3rem 1rem;
}

.tabbar-title .left-icon {
	width: 6rem;
	height: 2.6rem;
}

.tabbar-title .left-icon .circle {
	width: 26px;
	height: 26px;
	background: #FFFFFF;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 0;
}

.tabbar-title .center_content {
	flex: 1;
	text-align: center;
	color: #fff;
}

.tabbar-title .right_policy {
	width: 6rem;
	height: 2.6rem;
	background: #FFFFFF;
	border-radius: 13px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.tabbar-title .right_policy .policy_text {
	font-size: 1.2rem;
	font-weight: 500;
	color: #333333;
	line-height: 0;
}

.form_content {
	padding: 0 2.1rem;
}

.form_content li {
	position: relative;
	height: 44px;
	background: #F5F0FF;
	margin-top: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1.4rem;
	font-weight: 400;
	color: #333333;
	line-height: 1.6rem;
}

.form_content li .x-input {
	height: 100%;
	width: 100%;
	border: 0;
	background: transparent;
	outline: none;
}

.form_content li>.rule-message {
	position: absolute;
	left: 0;
	bottom: -1.5rem;
	font-size: 1rem;
	font-weight: 400;
	color: #FF3B30;
	line-height: 1.2rem;
	display: none;
}

.form_content li .info {
	display: flex;
	align-items: center;
	justify-content: center;
}

.form_content li .send-sty {
	font-size: 14px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 500;
	color: #9C28EA;
	line-height: 20px;
	/* opacity: 0.4; */
}

.form_content .row-item::after {
	content: '';
	width: 100%;
	height: 1px;
	background-color: #A0A6AE;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: scaleY(0.5);
}

.foot-bottom {
	padding: 2rem 1rem;
}

.btn-download {
	width: 35.5rem;
	height: 4.8rem;
	line-height: 4.8rem;
	text-align: center;
	background: #FF953F;
	border-radius: .8rem;
	font-size: 1.6rem;
	font-weight: 500;
	color: #FFFFFF;
}

.email_login_des {
	font-size: 1.2rem;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 1.4rem;
	margin-top: 1.2rem;
}

.photo_img {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
}

.win_dialog,.win_dialog_alert {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	line-height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	text-align: center;
	z-index: 10000;
}

.win_dialog .tips_area {
	background: #FFFFFF;
	border-radius: 1.2rem;
	padding: 2rem;
	margin: 2.6rem;
	display: inline-block;
}

.win_dialog .tips_area .tips {
	font-size: 1.7rem;
	font-weight: 600;
	color: #333333;
	line-height: 2rem;
	text-align: center;
	margin-bottom: 1.6rem;
}

.win_dialog .tips_area .content {
	font-size: 1.4rem;
	font-weight: 400;
	color: #666666;
	line-height: 2.1rem;
	margin-bottom: 1rem;
}

.win_dialog .tips_area .tips-txt {
	font-size: 1.4rem;
	font-weight: 500;
	color: #333333;
	line-height: 2.1rem;
	margin-bottom: 2rem;
}

.win_dialog .tips_area .got-it-btn {
	height: 3.2rem;
	background: #FF953F;
	border-radius: .8rem;
	line-height: 3.2rem;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
	color: #FFFFFF;
}

.timerNumber{
	display: none;
}


.windowArea{
	z-index: 999;
	height: 100vh;
	width: 100vw;
	background-color: rgba(0,0,0,0.2);
	position: fixed;
    top: 0;
	display: none;
}


.loadArea {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 200px auto 0;
    transform: rotate(360deg);
    animation: rotate 45s infinite linear;
}

.loadArea::before {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    box-sizing: border-box;
    border-radius: 50%;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-right: 3px solid transparent;
    transform: rotate(720deg);
    animation: rotate 3s infinite ease-out;
}

.loadArea::after {
    position: absolute;
    content: "";
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    box-sizing: border-box;
    border-radius: 50%;
    border-bottom: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000;
    border-left: 6px solid #000;
    transform: rotate(720deg);
    animation: rotate 3s infinite ease-in-out;
}

@keyframes rotate {
    100% {
        transform: rotate(0deg);
    }
}