* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: min(13.333vw, 100px);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
	background-color: #F2F5FB;
	color: #151649;
	-webkit-tap-highlight-color: transparent;
}

.page-wrap {
	max-width: 7.5rem;
	margin: 0 auto;
	min-height: 100vh;
	background-color: #F2F5FB;
}

.nav-bar {
	height: 0.88rem;
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border-bottom: 1px solid #F0F2F7;
}

.nav-title {
	font-size: 0.34rem;
	font-weight: 600;
	color: #000000;
	line-height: 0.88rem;
}

.nav-back {
	position: absolute;
	left: 0;
	top: 0;
	width: 0.88rem;
	height: 0.88rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #000000;
}

.nav-back::before {
	content: "";
	width: 0.18rem;
	height: 0.18rem;
	border-left: 0.04rem solid #000000;
	border-bottom: 0.04rem solid #000000;
	transform: rotate(45deg);
	margin-left: 0.08rem;
}

.toast {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	min-width: 2.4rem;
	max-width: 5.6rem;
	padding: 0.28rem 0.4rem;
	background-color: rgba(8, 14, 44, 0.78);
	color: #FFFFFF;
	font-size: 0.28rem;
	line-height: 0.4rem;
	text-align: center;
	border-radius: 0.16rem;
	pointer-events: none;
}

.modal-mask {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 900;
	background-color: rgba(8, 14, 44, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.4rem;
}

.modal-box {
	width: 100%;
	max-width: 5.6rem;
	background-color: #FFFFFF;
	border-radius: 0.24rem;
	padding: 0.4rem 0.32rem 0.32rem;
}

.modal-title {
	font-size: 0.32rem;
	font-weight: 700;
	color: #151649;
	text-align: center;
	margin-bottom: 0.2rem;
}

.modal-content {
	font-size: 0.28rem;
	color: #7B8499;
	line-height: 0.44rem;
	text-align: center;
}

.modal-ok {
	margin-top: 0.32rem;
	height: 0.72rem;
	border-radius: 0.12rem;
	background: linear-gradient(135deg, #38BAE0 0%, #6A30AE 100%);
	color: #FFFFFF;
	font-size: 0.28rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.modal-ok:active {
	opacity: 0.8;
}
