/* 客户服务页面专用样式 */

/* 页面整体样式 */
.customer-service-page {
	background: #fff;
	color: #333;
}

/* Hero区域样式 */
.customer-service-hero {
	position: relative;
	min-height: 60vh;
	background: url('./cusbg1.jpg');
	background-size: cover;
	background-position: center;
	 
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	overflow: hidden;
}

.customer-service-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(44, 82, 130, 0.8) 50%, rgba(49, 130, 206, 0.8) 100%);
	z-index: 1;
}

.customer-service-hero .container {
	position: relative;
	z-index: 2;
}

.customer-service-hero .hero-content h1{
	/* padding-top: 120px; */
	font-size: clamp(36px, 6vw, 40px) !important;
}
.customer-service-hero .hero-content p{
font-size: clamp(18px, 3vw, 24px);	
font-weight: 300;
color: rgba(255, 255, 255, 0.9);
}


.customer-service-hero h1 {
	font-size: clamp(48px, 8vw, 50px);
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.customer-service-hero p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 2;
}

/* 内容区域样式 */
.customer-service-content {
	padding: 80px 0;
	background: #fff;
	position: relative;
}

.customer-service-content.with-fixed-header {
	padding-top: 120px;
}

/* 章节标题样式 */
.section-header {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
}

.section-bg-text {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 6rem;
	font-weight: 900;
	color: rgba(11, 41, 82, 0.05);
	z-index: 1;
	white-space: nowrap;
	letter-spacing: 0.1em;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #0b2952;
	margin: 0 0 1rem 0;
	position: relative;
	z-index: 2;
}

.section-description {
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
	position: relative;
	z-index: 2;
}

/* FAQ容器样式 */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

/* FAQ项目样式 */
.faq-item {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	margin-bottom: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: #0b2952;
}

.faq-item.active {
	border-color: #0b2952;
	box-shadow: 0 4px 12px rgba(11, 41, 82, 0.15);
}

/* FAQ问题样式 */
.faq-question {
	padding: 24px 30px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	transition: all 0.3s ease;
	position: relative;
}

.faq-item.active .faq-question {
	background: linear-gradient(135deg, #f0e194 0%, #e6d47a 100%);
	border-bottom: 1px solid #e5e5e5;
}

.faq-question:hover {
	background: #f8f9fa;
}

.faq-item.active .faq-question:hover {
	background: linear-gradient(135deg, #e6d47a 0%, #d4c266 100%);
}

.question-text {
	font-size: 1.1rem;
	font-weight: 500;
	color: #333;
	line-height: 1.5;
	flex: 1;
	padding-right: 20px;
}

.faq-icon {
	font-size: 1.2rem;
	color: #0b2952;
	transition: transform 0.3s ease;
	font-weight: bold;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

/* FAQ答案样式 */
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #fff;
}

.faq-answer.show {
	max-height: 1000px;
}

.answer-content {
	padding: 20px 30px 20px 30px;
}

.answer-content p {
	font-size: 1rem;
	color: #555;
	line-height: 1.6;
	margin: 0 0 16px 0;
}

.answer-content ul {
	margin: 16px 0;
	padding-left: 20px;
}

.answer-content li {
	font-size: 1rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 8px;
}

.answer-content strong {
	color: #0b2952;
	font-weight: 600;
}

/* 收起按钮样式 */
.collapse-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 30px 20px 30px;
	padding: 12px 24px;
	background: #f8f9fa;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	color: #666;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.collapse-btn:hover {
	background: #e9ecef;
	border-color: #0b2952;
	color: #0b2952;
}

.collapse-icon {
	font-size: 0.8rem;
	font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.customer-service-hero {
		min-height: 40vh;
		padding: 100px 0 60px 0;
	}
	
	.customer-service-hero h1 {
		font-size: clamp(32px, 8vw, 48px);
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.section-bg-text {
		font-size: 4rem;
		top: -10px;
	}
	
	.faq-question {
		padding: 20px;
	}
	
	.question-text {
		font-size: 1rem;
		padding-right: 15px;
	}
	
	.answer-content {
		padding: 0 20px 20px 20px;
	}
	
	.collapse-btn {
		margin: 0 20px 20px 20px;
		padding: 10px 20px;
	}
}

@media (max-width: 480px) {
	.customer-service-hero {
		min-height: 35vh;
		padding-top: 80px;
	}
	
	.customer-service-hero h1 {
		font-size: clamp(28px, 6vw, 40px);
	}
	
	.section-title {
		font-size: 1.8rem;
	}
	
	.section-bg-text {
		font-size: 3rem;
	}
	
	.faq-question {
		padding: 16px;
	}
	
	.question-text {
		font-size: 0.95rem;
	}
	
	.answer-content {
		padding: 0 16px 16px 16px;
	}
	
	.collapse-btn {
		margin: 0 16px 16px 16px;
		padding: 8px 16px;
		font-size: 0.85rem;
	}
}
