/*轮播图*/
.ew_lunbotu_hero-section {
	height: 90vh;
	position: relative;
	overflow: hidden;
}

.ew_lunbotu_hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: 100% auto;
	background-position: center;
	/*
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
	display: flex;
	align-items: center;
	*/
}

/* 已移除覆盖层效果 */

.hero-slide.active {
	opacity: 1;
	z-index: 2;
}

.ew_lunbotu_hero-content {
	position: absolute;
	top: 55%;
	left: 52%;
	z-index: 3;
	max-width: 50%;
	transform: translateY(-50%);
	padding: 0 1rem;
	opacity: 1;
	transition: all 0.8s ease 0.5s;
}

/* 为轮播图标题添加自适应字体大小和间距 */
.ew_lunbotu_hero-content h1 {
	font-size: clamp(1.5rem, 5vw, 3.5rem);
	line-height: clamp(1.1, 2vw, 1.3);
	margin-bottom: clamp(1rem, 2vw, 1.8rem);
	font-weight: 700;
}

/* 为轮播图正文添加自适应字体大小和间距 */
.ew_lunbotu_hero-content p {
	font-size: clamp(1rem, 2vw, 1.5rem);
	line-height: clamp(1.4, 3vw, 1.6);
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

/* 为轮播图内容整体添加响应式内边距 */
.ew_lunbotu_hero-content {
	padding: clamp(1rem, 3vw, 2rem);
}

/* 大屏幕响应式调整 */
@media (min-width: 1440px) {
	.ew_lunbotu_hero-content {
		left: clamp(50%, 5vw, 55%);
		max-width: clamp(45%, 10vw, 50%);
		transition: all 0.5s ease;
	}
}

/* 中等屏幕响应式调整 */
@media (min-width: 1024px) and (max-width: 1439px) {
	.ew_lunbotu_hero-content {
		left: clamp(40%, 5vw, 45%);
		max-width: clamp(55%, 10vw, 60%);
		transition: all 0.5s ease;
	}
}

/* 平板屏幕响应式调整 */
@media (min-width: 768px) and (max-width: 1023px) {
	.ew_lunbotu_hero-content {
		left: clamp(35%, 5vw, 40%);
		max-width: clamp(60%, 15vw, 65%);
		transition: all 0.5s ease;
	}
}

/* 小屏幕响应式调整 */
@media (max-width: 767px) {
	.ew_lunbotu_hero-content {
		left: 0;
		right: 0;
		max-width: 100%;
		padding: clamp(1rem, 5vw, 2rem);
		text-align: center;
		transition: all 0.5s ease;
	}
	
	.ew_lunbotu_hero-content h1 {
		font-size: clamp(1.2rem, 6vw, 2.5rem);
		line-height: clamp(1.1, 3vw, 1.3);
		margin-bottom: clamp(0.8rem, 2vw, 1.5rem);
	}
	
	.ew_lunbotu_hero-content p {
		font-size: clamp(0.9rem, 4vw, 1.2rem);
		line-height: clamp(1.4, 3vw, 1.6);
		margin-bottom: clamp(1rem, 3vw, 1.5rem);
	}
}

.swiper-horizontal > .swiper-pagination-bullets {
	position: absolute;
	bottom: 30px; /* 距离底部位置 */
	left: 50%;
	z-index: 10;
	transform: translateX(-50%);
	text-align: center;
}
.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
	width: 30px;
	height:12px;
	border-radius: 6px;
	background-color: #ff7700;
	cursor: pointer;
	transition: all 0.3s ease;
}
/*轮播图88*/


/* 移动端响应式样式 - 隐藏轮播图和导航栏第一行 */
@media (max-width: 780px) {
	.ew_lunbotu_hero-section {
		display: none !important;
	}
	.ew_lunbotu_hero-slide {
		display: none !important;
	}
}