html, body {
	width: 100%;
	height: 100%;
	background-color: #F6F5FA;
}
.verify {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 20px 30px;
	border-radius: 10px;
	background-color: white;
}
.verify .input {
	width: 250px;
	font-size: 14px;
	padding: 10px;
    border-radius: 5px;
    border: 1px solid #DEDFE5;
}
.verify .submit {
	color: white;
	font-size: 14px;
	text-align: center;
	cursor: pointer;
	padding: 8px 0;
	margin-top: 10px;
	border-radius: 5px;
	background: linear-gradient(90deg, #9963FF 0%, #2664FF 100%);
}
.header {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	height: 60px;
	font-weight: 600;
	padding: 10px 40px;
	background-color: white;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header .right {
	margin-left: 20px;
}
.header .button {
	display: flex;
	cursor: pointer;
	padding: 10px 25px;
	border-radius: 30px;
	background: linear-gradient(90deg, #9963FF 0%, #2664FF 100%);
}
.header .button .text {
	color: white;
	font-size: 14px;
}
.header .button .show {
	width: 20px;
	height: 20px;
	margin-right: 5px;
}
.header .button .arrow {
	position: relative;
    top: 1px;
	width: 12px;
	height: 12px;
	margin-left: 10px;
}
.header .exit {
	display: none;
}
.header .exit .icon {
	width: 15px;
	height: 15px;
	margin-right: 5px;
	border-radius: 5px;
	background-color: white;
}
.header .dropdown-item {
	cursor: pointer;
}
.list-box {
	height: calc(100vh - 60px);
	margin-top: 60px;
	overflow: scroll;
}
.list {
	gap: 10px;
	height: auto;
	padding: 20px;
	box-sizing: border-box;
}
.list .item {
	width: 100%;
	max-width: 1000px;
	height: auto;
	border-radius: 10px;
	box-shadow: 0px 10px 40px 0px rgba(0, 13, 69, 0.1);
}
.swiper-pagination {
	display: none;
	position: fixed;
    top: unset !important;
    right: unset !important;
    left: unset !important;
    bottom: 2px;
    width: 100%;
    transform: unset !important;
    gap: 1px;
}
.swiper-pagination-bullet {
    flex: 1;
    opacity: 1;
	margin: unset !important;
    border-radius: 2px;
    background-color: #CEE2FD;
}
.swiper-pagination-bullet-active {
	background-color: #70BCFB;
}
.made {
	position: fixed;
	z-index: 2;
	right: 20px;
	bottom: 20px;
	display: flex;
	color: #462DE1;
	font-size: 14px;
	padding: 6px 11px;
	border-radius: 30px;
	background-color: white;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
}
.made .logo {
	width: 28px;
	height: 28px;
	margin-right: 10px;
}
/*演示模式*/
.showcase {
	height: 100%;
}
.showcase .header {
	display: none;
}
.showcase .header .button {
	display: none;
}
.showcase .header .exit {
	display: flex;
}
.showcase .swiper {
	width: 100%;
	height: 100%;
}
.showcase .swiper-slide {
	width: 100%;
	height: 100%;
	max-width: unset;
}
.showcase .list-box {
	height: 100%;
	margin-top: 0;
	overflow: hidden;
}
.showcase .list {
	gap: 0;
	padding: 0;
}
.showcase .list .item {
	border-radius: 0;
}
.showcase .made {
	display: none;
}
.showcase .swiper-pagination {
	display: flex;
}
@media (max-width: 768px) {
	.header {
		padding: 10px 20px;
	}
	.header .left {
		font-size: 14px;
	}
	.header .right {
		display: none;
	}
	.header .button {
		padding: 10px 15px;
	}
}