	
html{
	-webkit-tap-highlight-color: rgba(255,255,255,0);
}
body {
	background-image: url('../img/bg2.png');
	background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
	overflow: hidden;
    margin: 0;
}
.prev{
	width: 100%;
	height: 100%;
}
.title{
	position: absolute;
	top: 80px;
	color: #000;
	font-size: 30px;
	font-weight: 600;
}
.slideshow-container {
	position: absolute;
	opacity: 0;
	width: 400px; /* 设置容器的宽度 */
	height: 400px; /* 设置容器的高度 */
	overflow: hidden; /* 隐藏超出容器的部分 */
	transition: all 0.5s linear;
    pointer-events: none; /* 禁用点击事件 */
	
}
.active-container {
	opacity: 1;
    pointer-events: auto; /* 允许点击事件 */
}
.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all 0.5s linear;
}
.active {
	opacity: 1;
}
.controls {
	position: absolute;
	font-family: YJTop Ellipsis, ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
	line-height: 30px;
	bottom: 80px;
	display: flex;
	gap: 10px;
	z-index: 20;
	cursor: pointer;
}
.colorItem {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
}
.activeColor:after {
	content: "";
	width: 12px;
	height: 6px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: translate(-50%, -50%) rotate(-45deg);
	position: absolute;
	top: 50%;
	left:50%;
	z-index: 9;
}

.modal {
	display: none; /* 默认隐藏 */
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255);
	align-items: center;
	justify-content: center;
	z-index:10;
}

/* 放大的图片样式 */
.modal-content {
	width: 700px;
	transition: transform 0.25s ease;
	cursor: zoom-in;
}

/* 关闭按钮样式 */
.close-btn {
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 24px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	color: white;
	cursor: pointer;
	background-color: black;
	border: none;
	z-index:20;
}


@media (max-width: 1208px) {
    

	.slideshow-container {
	    margin-top: 30px;
		width: 260px; /* 设置容器的宽度 */
		height: 260px; /* 设置容器的高度 */
	}
	.controls {
		line-height: 50px;
		bottom: 50px;
		font-size:25px;
		line-height: 50px;
	}
	
    .activeColor:after {
    	content: "";
    	width: 24px;
    	height: 12px;
    }

	.colorItem {
		width: 50px;
		height: 50px;
	}
}
@media screen and (max-width:402px) {
	

	.slideshow-container {
	    margin-top: 30px;
		width: 120px; /* 设置容器的宽度 */
		height: 120px; /* 设置容器的高度 */
	}
	.title{
		font-size: 30px;
		margin: 0;
	}
	.controls {
		bottom: 20px;
	}
	/* 放大的图片样式 */
	.modal-content {
		width: 300px;
	}
	/* 关闭按钮样式 */
	.close-btn {
		width: 30px;
		height: 30px;
		line-height: 30px;
	}
	.title{
		position: absolute;
		top: 60px;
		color: #000;
		font-size: 20px;
		font-weight: 600;
	}

	.controls {
		position: absolute;
		font-family: YJTop Ellipsis, ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
		line-height: 30px;
		bottom: 20px;
		font-size:13px;
	}
	.colorItem {
		width: 30px;
		height: 30px;
	}
	
    .activeColor:after {
    	content: "";
    	width: 12px;
    	height: 6px;
    }
}



@media screen and (max-width: 492px) and (orientation: portrait) {
	
	/* 放大的图片样式 */
	.modal-content {
		width: 300px;
	}
	/* 关闭按钮样式 */
	.close-btn {
		width: 30px;
		height: 30px;
		line-height: 30px;
	}
	
	
}