:root {
	--primary-color: #5c43ff;
	--bg-color: rgba(255, 255, 255, 0.1);
	--font-color: #272725;;
	--gray-color: #9997a5;
	--white-color: #fff;
	--black-color: #000;
	--border-color: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 768px) {
	*::-webkit-scrollbar {
		width: 5px;
		height: 5px;
		display: none;
	}
}
@font-face {
	font-family: "Inter";
	src: url(/static/font/Inter-Regular.woff2) format("woff2");
}
@font-face {
	font-family: "Encode Sans Expanded";
	src: url(/static/font/EncodeSansExpanded-Regular.woff2) format("woff2");
}
@font-face {
	font-family: "Encode Sans Semi Expanded";
	src: url(/static/font/EncodeSansExpanded-SemiBold.woff2) format("woff2");
}
@font-face {
	font-family: Anton;
	src: url(/static/font/Anton-Regular.woff2) format("woff2");
}
@font-face {
	font-family: Roboto;
	src: url(/static/font/Roboto-Regular.woff2) format("woff2");
	font-weight: normal;
}
html,
body,
#app {
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-overflow-scrolling: touch;
	text-size-adjust: 100%;
}
* {
	max-height: 999999px;
	box-sizing: border-box;
	touch-action: manipulation;
	-webkit-text-size-adjust: 100% !important;
	-moz-text-size-adjust: 100% !important;
	text-size-adjust: 100% !important;
	margin: 0;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
}
body {
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
}
img {
	vertical-align: top;
}
.icon {
	width: 1em;
	height: 1em;
	vertical-align: -0.15em;
	fill: currentColor;
	overflow: hidden;
}
.van-toast {
	position: fixed;
	top: 50%;
	left: 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	box-sizing: content-box;
	width: 90px;
	max-width: 70%;
	min-height: 90px;
	padding: 16px;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	white-space: pre-wrap;
	text-align: center;
	word-wrap: break-word;
	background-color: rgba(50, 50, 51, 0.88);
	border-radius: 4px;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
}
.van-button--info {
	background: -moz-linear-gradient(left, #e15b49 0%, #ec7843 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e15b49), color-stop(100%, #ec7843));
	background: -webkit-linear-gradient(left, #e15b49 0%, #ec7843 100%);
	background: -o-linear-gradient(left, #e15b49 0%, #ec7843 100%);
	background: -ms-linear-gradient(left, #e15b49 0%, #ec7843 100%);
	background: linear-gradient(to right, #e15b49 0%, #ec7843 100%);
}
.van-pull-refresh {
	overflow: inherit !important;
}
.van-list .van-list__finished-text {
	color: #999;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
