html {
	font-size: 50px;
}
body, #app {
	overflow-x: auto;
}
html,
body,
#app {
	width: 100%;
	font-family: 'PingFang SC', Helvetica, 'Microsoft YaHei';
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

body {
	font-size: 0.14rem;
}

#app {
	display: block;
	margin: 0 auto;
	width: 100%;
	/* min-width: 14.8rem; */
}

.container {
	overflow: auto;
}

.banner {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	/* height: 892px; */
	overflow: hidden;
}

.banner img {
	width: 100%;
}

.banner-arrow {
	position: absolute;
	bottom: -0.02rem;
	left: 0;
	right: 0;
	width: 1.82rem;
	height: 0.37rem;
	margin: 0 auto;
	background: url(../images/index/banner-arrow.png) no-repeat center/cover;
	z-index: 3;
}

/* 导航开始 */

#header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 0.8rem;
	border-bottom: 0.01rem solid rgba(255, 255, 255, 0.3);
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	z-index: 10;
	/* background: url(/static/website/pc/images/index/banner.png) no-repeat top / cover; */
}

#header .logo {
	width: 1.7rem;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 12rem;
	/* min-width: 9.3rem; */
	margin: 0 auto;
	line-height: 0.8rem;
}

.header-content .nav-list {
	display: flex;
	align-items: center;
}

.nav-item {
	position: relative;
	display: block;
	margin-left: 0.6rem;
	padding: 0 0.1rem;
	font-size: 0.17rem;
	color: #fff;
}

/* .nav-item .borderBottom {
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    border-top: 2px solid #fff;
    animation: showLine 0.4s;
    animation-iteration-count: 1;
    opacity: 0;
} */

.nav-item.isActive .borderBottom {
	/* display: block; */
	position: absolute;
	bottom: 0.01rem;
	left: 0;
	width: 100%;
	border-top: 0.02rem solid #fff;
	animation: showLine 0.4s;
	animation-iteration-count: 1;
}

@keyframes showLine {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

/* 导航结束 */

/* 页脚开始 */
#footer {
	width: 100%;
	background: #313131;
}

.footer-content {
	max-width: 14.8rem;
	margin: 0 auto;
	padding: 0.58rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #787878;
	font-size: 0.16rem;
}

.footer-content .footer-right {
	flex: 1;
	display: flex;
	justify-content: end;
}

.footer-content .footer-right > div {
	margin-left: 0.9rem;
}

.footer-content .footer-right > div p:first-child {
	color: #fff;
	margin-bottom: 0.2rem;
}

.footer-content p {
	margin-bottom: 0.1rem;
	font-size: 0.16rem;
}

.footer-content a {
	color: #787878;
	transition: color 0.3s;
}

.footer-content a:hover {
	color: #f6f6f6;
}

.footer-logo {
	width: 1.7rem;
	height: 0.5rem;
	margin-bottom: 0.27rem;
	background: url(../images/index/logo.png) no-repeat center/cover;
}

.footer-info {
	padding: 0.34rem 0;
	border-top: 0.01rem solid #595959;
	color: #787878;
	font-size: 0.16rem;
	text-align: center;
}

.footer-info-content {
	margin-top: 0.1rem;
}

.footer-info-content span {
	display: inline-block;
	padding: 0 0.1rem;
	line-height: 1;
	font-size: 0.14rem;
	border-left: 0.01rem solid #787878;
	cursor: pointer;
	transition: .3s;
}

.footer-info-content span:first-child {
	border: 0;
}

.footer-info-content span:hover {
	color: #f6f6f6;
}

/* 页脚结束 */

.popup-logo,
.modal-popup-logo {
	width: 1.28rem;
	height: 0.38rem;
	background: url(../images/popup-logo.png) no-repeat center/cover;
}

/* 错误提示弹窗 */

#tipsPopup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

#tipsPopup .content {
	position: absolute;
	top: 40%;
	left: 50%;
	max-width: 3rem;
	padding: 0.08rem 0.1rem;
	text-align: center;
	font-size: 0.15rem;
	color: #fff;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 0.06rem;
	transform: translate(-50%);
}

/* 各种说明的弹窗 */
.modal-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;
}

.modal-popup-container {
	/* max-height: 5.98rem; */
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 50%;
	/* bottom: 0; */
	left: 50%;
	/* right: 0; */
	width: 7rem;
	/* height: 7.7rem; */
	max-height: 70vh;
	/* max-height: 7.7rem; */
	margin: 0 auto;
	background: #fff;
	transform: translate(-50%, -50%);
	border-radius: 0.15rem;
	z-index: 12;
	overflow: hidden;
}

.modal-popup-title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0.8rem;
	padding: 0 0.45rem;
	font-size: 0.3rem;
	color: #000;
}

.modal-popup-title > div {
	/* padding-left: 0.15rem;
	margin-left: 0.15rem; */
	/* border-left: 0.01rem solid #a6a6a6; */
	text-align: center;
	/* line-height: 1; */
	font-weight: 550;
}

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

.modal-popup-content {
	flex: 1;
	padding: 0 0.45rem 0.2rem;
	font-size: 0.18rem;
	color: #222;
	overflow: auto;
}
.modal-popup-content p {
	margin-bottom: 0.1rem;
	line-height: 1.5;
}

.modal-popup-content .indent-2 {
	/* text-indent: .36rem; */
}

.mb-10 {
	margin-bottom: .1rem;
}

.text-underline {
	text-decoration: underline;
}