body {
	background: url(../images/investor/bg.png) repeat center/cover;
}

.banner {
	height: 100vh;
	min-height: 9rem;
	background: url(../images/investor/banner.png) repeat center/cover;
}

#footer {
	position: absolute;
	bottom: 0;
	left: 0;
	background: transparent;
}

.footer-info {
	border-top: 0;
	color: rgba(255, 255, 255, 0.75);
}

.footer-info-content span {
	font-size: 0.16rem;
}

.login-popup {
	border-radius: 0.15rem;
	overflow: hidden;
}

.login-popup-top {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 5.22rem;
	height: 0.86rem;
	background: url(../images/investor/popup-top.png) no-repeat center/cover;
}

.login-type-item {
	position: relative;
	line-height: 0.86rem;
	font-size: 0.2rem;
	color: #715f39;
	cursor: pointer;
	font-weight: 500;
	transition: 0.3s;
}

.login-type-item:hover {
	color: #fff;
}

.login-type-item.active::after {
	position: absolute;
	bottom: -0.28rem;
	left: 50%;
	margin-left: -0.08rem;
	content: '';
	border: 0.16rem solid transparent;
	border-top-color: #ecbf65;
}

.login-type-item.active {
	color: #fff;
}

.login-popup-form {
	padding: 0.28rem 0.45rem;
	background: #fff;
	/* border-radius: .15rem; */
}

.login-popup-form-item {
	margin-bottom: 0.2rem;
	font-size: 0.16rem;
	color: #999999;
}

.login-input-box {
	display: flex;
	align-items: center;
	margin-top: 0.08rem;
	padding: 0.18rem 0.2rem;
	border-radius: 0.12rem;
	/* background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%); */
	background: #f8f8f8;
	box-shadow: inset 0 0 0.04rem rgba(0, 0, 0, 0.03);
}

.login-input-box .icon.user {
	width: 0.18rem;
	height: 0.2rem;
	background: url(../images/investor/user-icon.png) no-repeat center/cover;
	background-size: contain;
	margin-right: 0.1rem;
}

.login-input-box .icon.password {
	width: 0.2rem;
	height: 0.23rem;
	background: url(../images/investor/password-icon.png) no-repeat center/cover;
	background-size: contain;
	margin-right: 0.07rem;
}

.login-input-box input {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	font-size: 0.16rem;
	color: #333;
}

/*
 * 覆盖自动填充背景：reset.css 中 input:-webkit-autofill 使用 box-shadow ... white !important，
 * 必须用更高优先级 + !important 才能改为与 .login-input-box 一致的 #f8f8f8。
 */
.login-input-box input:-webkit-autofill,
.login-input-box input:-webkit-autofill:hover,
.login-input-box input:-webkit-autofill:focus,
.login-input-box input:-webkit-autofill:active {
	-webkit-text-fill-color: #333 !important;
	caret-color: #333;
	transition: background-color 99999s ease-out 0s;
	-webkit-box-shadow: 0 0 0 1000px #f8f8f8 inset !important;
	box-shadow: 0 0 0 1000px #f8f8f8 inset !important;
}

.login-input-box input::placeholder {
	color: #bbb;
}

.login-input-box--captcha {
	padding: 0.14rem 0.18rem;
	align-items: stretch;
}

.login-input-box--captcha input {
	flex: 1 1 auto;
	min-width: 2.45rem;
	margin-right: 0.14rem;
	padding: 0.06rem 0;
	box-sizing: border-box;
}

.login-captcha-img {
	flex: 0 0 auto;
	align-self: center;
	max-width: 1.32rem;
	width: auto;
	height: 0.44rem;
	cursor: pointer;
	border-radius: 0.06rem;
	vertical-align: middle;
	object-fit: contain;
}

.login-input-box--sms {
	padding: 0.12rem 0.14rem;
}

.login-input-box--sms input {
	flex: 1;
	min-width: 0;
	margin-right: 0.12rem;
}

.login-sms-send-btn {
	flex-shrink: 0;
	padding: 0.08rem 0.14rem;
	border: none;
	border-radius: 0.08rem;
	background: #ecbd62;
	color: #fff;
	font-size: 0.14rem;
	white-space: nowrap;
	cursor: pointer;
	line-height: 1.3;
}

.login-sms-send-btn:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

/* 复选框区域 */
.login-popup-agree-box {
	display: flex;
	align-items: center;
	margin-bottom: 0;
	font-size: 0.14rem;
}

.login-popup-agree-box input {
	margin-right: 0.08rem;
}

.login-popup-agree-box a {
	color: #f5a623;
	text-decoration: none;
}

/* 去除默认样式 */
input[type='checkbox'] {
	-webkit-appearance: none;
	appearance: none;
	width: 0.16rem;
	height: 0.16rem;
	border: 0.02rem solid #ccc;
	border-radius: 0.04rem;
	cursor: pointer;
	position: relative;
	outline: none;
}

/* 勾选状态 */
input[type='checkbox']:checked {
	background-color: #f5a623;
	border-color: #f5a623;
}

/* 勾选图标 */
input[type='checkbox']:checked::after {
	content: '';
	position: absolute;
	left: 0.02rem;
	top: -0.02rem;
	width: 0.06rem;
	height: 0.1rem;
	border: solid #fff;
	border-width: 0 0.02rem 0.02rem 0;
	transform: rotate(45deg);
}

.login-popup-form-submit {
	display: block;
	width: 100%;
	padding: 0.1rem 0;
	margin-top: 0.16rem;
	background: #ecbd62;
	/* background: linear-gradient(180deg, #eab86b 0%, #dca34e 100%); */
	border: none;
	border-radius: 0.1rem;
	color: white;
	font-size: 0.25rem;
	letter-spacing: 0.04rem;
	cursor: pointer;
}

#USETERM-POPUP,
#PRIVACY-POPUP {
	display: none;
}

.popup-mask {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 11;
}

.useterm-popup-container,
.privacy-popup-container {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 6.35rem;
	/* height: 7.7rem; */
	height: 70vh;
	max-height: 7.7rem;
	margin: auto;
	background: #fff;
	border-radius: 0.15rem;
	z-index: 12;
}

.privacy-popup-container {
    max-height: 5.98rem;
}

.useterm-popup-title,
.privacy-popup-title {
    position: relative;
	display: flex;
	align-items: center;
	height: 1.1rem;
	padding: 0 0.45rem;
	font-size: 0.3rem;
	color: #000;
}

.useterm-popup-title > div,
.privacy-popup-title > div {
	padding-left: 0.15rem;
	margin-left: 0.15rem;
	border-left: 0.01rem solid #a6a6a6;
	line-height: 1;
}

.useterm-popup-title em,
.privacy-popup-title em {
	font-size: 0.18rem;
	color: rgba(85, 85, 85, 0.3);
}

.useterm-popup-content,
.privacy-popup-content {
	flex: 1;
	padding: 0 0.45rem 0.1rem;
	font-size: .18rem;
	color: #222;
	overflow: auto;
}

.useterm-popup-content > p,
.privacy-popup-content > p {
	margin-bottom: 0.15rem;
}

.useterm-popup-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0.45rem;
	height: 1.1rem;
}

.useterm-popup-btns > span {
	display: inline-block;
	font-size: 0.2rem;
	color: #fff;
	padding: 0.04rem 0.35rem;
	background: #ea1510;
	cursor: pointer;
}

.useterm-popup-btns > span:first-child {
	margin-right: 0.1rem;
	background: #a8a8a8;
}

.useterm-popup-agree-box {
	display: flex;
	align-items: center;
}

.useterm-popup-agree-box > label {
	margin-left: 0.08rem;
	cursor: pointer;
}

#privacy-popup-close {
    position: absolute;
    top: .25rem;
    right: .25rem;
    width: .19rem;
    height: .19rem;
    background: url(../images/close.png) no-repeat center/cover;
    cursor: pointer;
}
