#ApiUrl {
	display: none;
}

.background {
	position: absolute;
	width: 100%;
	height: auto;
	/*background-image: url('https://tuchuang2.youhui112.com/view.php/42e36ed55fe4a8f2ec72b53f5ec5cc18.gif');*/
	background-size: cover;
	background-position: center;
	opacity: 0.3;
	z-index: -1;
}

.urlgroup {
	margin-top: 0;
	padding-top: 0;
}

.content {
	z-index: 1;
}

#iframeContainer {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 70%;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1001;
	cursor: pointer;
	color: white;
}

#overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
}

.header {
	position: relative;
}

.announcement {
	background-color: white;
	padding: 10px;
	border-bottom: 1px solid #ccc;
}

.button-containerlogin {
	text-align: center;
	width: 100%;
	margin-top: 20px;
}

input[type='submit'] {
	width: 80%;
	padding: 10px;
	background-color: #4CAF50;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#imgbox {
	min-height: 100%;
	max-width: 750px;
	margin: 0 auto;
	overflow: hidden auto;
	opacity: 95%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.qr_content {
	display: block;
	width: 90%;
	left: 5%;
	border-radius: 0.1rem;
	height: 80%;
	padding: 0.1rem;
	z-index: 999;
	position: fixed;
	top: 13%;
	box-sizing: border-box;
	opacity: 98%;
}

.download-dialog {
	position: fixed;
	z-index: 9999;
	left: 0;
	right: 0;
	padding: 5px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 5px;
	top: .2rem;
	width: 75%;
	background-color: #fff;
	align-items: center;
	overflow: hidden;
	display: flex;
}

.download-dialog img {
	width: 40px;
	height: 40px;
}

.download-dialog .text {
	font-size: 18px;
}

.video-container {
	position: relative;
	width: 100%;
	max-width: 600px;
	/* 可以调整为你想要的最大宽度 */
	margin: 0 auto;
}

video {
	width: 100%;
	height: auto;
	/*aspect-ratio: 9/16; !* 设置视频的宽高比为9:16 *!*/
	object-fit: cover;
	/* 确保视频覆盖整个容器，同时保持宽高比 */
}

.text {
	text-align: center;
}

@media (max-width: 600px) {
	.video-container {
		max-width: 100%;
	}
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper {
	margin-left: auto;
	margin-right: auto;
}

.swiper .swiper-pagination-bullet {
	background: rgba(255, 255, 255, .5);
}

.swiper .swiper-pagination-bullet-active {
	background: #E56600;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
	color: #E56600;
}

.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
	font-size: 2em;
}

.loaded-box {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 9999999999999;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
    justify-content: center;
	background-color: white;
}

.dot-spinner {
	--uib-size: 3em;
	--uib-speed: .9s;
	--uib-color: #183153;
	position: relative;
	display: flex;
	align-items: center;
    justify-content: center;
	height: var(--uib-size);
	width: var(--uib-size);
}

.dot-spinner__dot {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 100%;
	width: 100%;
}

.dot-spinner__dot::before {
	content: '';
	height: 20%;
	width: 20%;
	border-radius: 50%;
	background-color: var(--uib-color);
	transform: scale(0);
	opacity: 0.5;
	animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
	box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
	transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
	animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
	transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
	animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
	transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
	animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
	transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
	animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
	transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
	animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
	transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
	animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
	transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
	animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {

	0%,
	100% {
		transform: scale(0);
		opacity: 0.5;
	}

	50% {
		transform: scale(1);
		opacity: 1;
	}
}