/* Banner样式统一调整 - 确保第一个Banner与第二个Banner样式匹配 */

/* 确保CSS变量可用 */
:root {
	--neo-card-bg: rgba(255, 255, 255, 0.06);
	--neo-card-border: rgba(255, 255, 255, 0.18);
	--neo-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
	--neo-cyan: #00ffff;
	--neo-blue: #1e90ff;
	--neo-silver: #c7d2e0;
}

/* 强制第一个Banner的chip使用与第二个Banner完全相同的样式 */
.banner-slide:first-child .chip,
.banner-slide:nth-child(2) .chip {
	display: inline-flex;
	align-items: center;
	background: rgba(0, 255, 255, 0.2);
	color: var(--neo-cyan);
	padding: 8px 14px;
	border-radius: 20px;
	font-size: 0.9rem;
	border: 1px solid rgba(0, 255, 255, 0.3);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	letter-spacing: 0.3px;
	white-space: nowrap;
	text-decoration: none;
	cursor: default;
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
	line-height: 1.2;
	vertical-align: middle;
}

.banner-slide:first-child .chip:hover,
.banner-slide:nth-child(2) .chip:hover {
	background: rgba(0, 255, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2), 0 0 20px rgba(0, 255, 255, 0.15);
	border-color: rgba(0, 255, 255, 0.5);
}

/* 第一个Banner的glass-card video-card样式调整 - 与第二个Banner完全一致 */
.banner-slide:first-child .glass-card.video-card {
	/* 使用与第二个Banner完全相同的样式 */
	position: relative;
	margin: 25px auto 0;
	max-width: 1040px;
	width: min(92%, 1040px);
	padding: 0;
	background: var(--neo-card-bg, rgba(255, 255, 255, 0.1));
	border: 1px solid var(--neo-card-border, rgba(255, 255, 255, 0.2));
	border-radius: 18px;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: var(--neo-shadow, 0 8px 32px rgba(0, 0, 0, 0.3));
	z-index: 1;
	transition: all 0.3s ease;
}

/* 确保video-card的悬停效果与第二个Banner一致 */
.banner-slide:first-child .glass-card.video-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
	border-color: rgba(0, 255, 255, 0.3);
}

/* feature-strip样式统一 - 与第二个Banner完全一致 */
.banner-slide:first-child .feature-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 18px;
	padding: 0;
}

/* chip样式统一 - 与第二个Banner的'沉睡客户唤醒'等标签完全一致 */
.banner-slide:first-child .chip {
	display: inline-flex;
	align-items: center;
	background: rgba(0, 255, 255, 0.2);
	color: var(--neo-cyan, #00ffff);
	padding: 8px 14px;
	border-radius: 20px;
	font-size: 0.9rem;
	border: 1px solid rgba(0, 255, 255, 0.3);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	letter-spacing: 0.3px;
	white-space: nowrap;
	text-decoration: none;
	cursor: default;
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

.banner-slide:first-child .chip:hover {
	background: rgba(0, 255, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2), 0 0 20px rgba(0, 255, 255, 0.15);
	border-color: rgba(0, 255, 255, 0.5);
}

/* 视频容器样式调整 */
.banner-slide:first-child .video-container-large {
	/* margin-bottom: 1rem; */
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.banner-slide:first-child .video-container-large video {
	border-radius: 15px;
	width: 100%;
	height: auto;
	min-height: 300px;
	object-fit: cover;
}

/* 响应式设计 - 与第二个Banner保持完全一致 */
@media (max-width: 992px) {
	.banner-slide:first-child .glass-card.video-card {
		padding: 0;
		width: min(95%, 1040px);
		margin-top: 20px;
	}
	
	.banner-slide:first-child .feature-strip {
		gap: 10px;
		margin-top: 16px;
	}
	
	.banner-slide:first-child .chip {
		font-size: 0.85rem;
		padding: 7px 13px;
	}
}

@media (max-width: 768px) {
	.banner-slide:first-child .glass-card.video-card {
		padding: 0;
		margin-top: 15px;
	}
	
	.banner-slide:first-child .video-container-large video {
		min-height: 250px;
	}
	
	.banner-slide:first-child .chip {
		font-size: 0.8rem;
		padding: 6px 12px;
	}
}

@media (max-width: 600px) {
	.banner-slide:first-child .glass-card.video-card {
		padding: 0;
		width: min(98%, 1040px);
	}
}

@media (max-width: 480px) {
	.banner-slide:first-child .glass-card.video-card {
		padding: 0;
	}
	
	.banner-slide:first-child .feature-strip,
	.banner-slide:nth-child(2) .feature-strip {
		gap: 8px;
		margin-top: 14px;
	}
	
	.banner-slide:first-child .chip,
	.banner-slide:nth-child(2) .chip {
		font-size: 0.75rem;
		padding: 5px 10px;
	}
}

/* 确保所有屏幕尺寸下chip样式完全一致 */
@media (max-width: 768px) {
	.banner-slide:first-child .chip,
	.banner-slide:nth-child(2) .chip {
		font-size: 0.8rem;
		padding: 6px 12px;
	}
}

@media (max-width: 992px) {
	.banner-slide:first-child .chip,
	.banner-slide:nth-child(2) .chip {
		font-size: 0.85rem;
		padding: 7px 13px;
	}
}