@charset "utf-8";

/* 作品页swiper样式 */
.swiper-slide img {
	cursor: zoom-in;
}

.swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.8);
	opacity: 0.7;
	width: 12px;
	height: 12px;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	background: #00c6ff;
	opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
	color: white;
	background: rgba(0, 0, 0, 0.4);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
	z-index: 20;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: rgba(0, 0, 0, 0.6);
}

.swiper-button-prev:after,
.swiper-button-next:after {
	font-size: 22px;
	font-weight: bold;
}

/* 全屏大图样式 */
.close-btn {
	position: absolute;
	top: 25px;
	left: 25px;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 100;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-btn:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: rotate(90deg);
}

.close-btn::before,
.close-btn::after {
	content: '';
	position: absolute;
	width: 24px;
	height: 2px;
	background: white;
}

.close-btn::before {
	transform: rotate(45deg);
}

.close-btn::after {
	transform: rotate(-45deg);
}

.img_page {
	position: absolute;
	left: auto;
	top:1em;
	right: 1em;
	bottom:auto;
	color: white;
	font-size: 16px;
	background: rgba(0, 0, 0, 0.5);
	padding: 8px 16px;
	border-radius: 20px;
	z-index: 100;
	font-weight: 500;
	letter-spacing: 1px;
	width: auto;
}
/* 作品页swiper大图浏览样式 */
#origin-img{
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000;
	z-index: 9999;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
}
#origin-img .swiper-slide img{
	width:100%;
	vertical-align:middle;
	align-items: center;
	height: auto;
	cursor: zoom-out;
}
.swiper-pagination{
	color:#fff;
	}

@media (max-width: 768px) {
	.swiper-slide2 img{
		height: auto;
	}
	.close-btn {
		width: 45px;
		height: 45px;
	}
	
	.img_page {
		font-size: 14px;
		padding: 6px 14px;
	}
}
