@charset "utf-8";


/* ======================== 服务 Banner ======================== */
.service-header {
	width: 100%;
	height: 400px;
	background: linear-gradient(rgba(0, 102, 179, 0.8), rgba(0, 102, 179, 0.8)), url('../img/fw_banner.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
	margin-bottom: 80px;
}
.service-header h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: bold;
	margin-bottom: 20px;
}
.service-header p {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 800px;
	margin: 0 auto;
}

/* ======================== 服务详情卡片 ======================== */
.services-detail {
	padding: 0 0 80px;
	background: #fff;
}
.services-wrap {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}
.service-item {
	flex: 1;
	min-width: 300px;
	padding: 30px 20px;
	background: #f9f9f9;
	border-radius: 8px;
	transition: all 0.3s ease;
}
.service-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.service-icon {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 25px;
	border-radius: 50%;
	background: #e8f5f4;
	display: flex;
	align-items: center;
	justify-content: center;
}
.service-icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}
.service-title {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
}
.service-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
}

/* ======================== 服务左右布局模块 ======================== */
.service-module {
  padding: 1.75rem 0;
  width: 100%;
}
.service-container {
  width: 90%;
  max-width: var(--max-width);
  height: 25rem;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
}
.service-reverse {
  flex-direction: row-reverse !important;
}

/* 图片区域 */
.service-img-wrap {
  flex: 0 0 50%;
  height: 100%;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.03);
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-img-wrap:hover img {
  transform: scale(1.05);
}

/* 内容区域 */
.service-content-wrap {
  flex: 0 0 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem 0 0 0.5rem;
  overflow-y: auto;
  scrollbar-width: none;
}
.service-content-wrap::-webkit-scrollbar {
  display: none;
}

/* 标题组 */
.service-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.title-icon {
  width: 3rem;
  height: 3rem;
  background: #E8F4FF;
  border-radius: 0.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-main-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}

/* 内容文本 */
.service-desc {
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.025rem;
}

/* 场景标签 */
.tag-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.scenario-tag {
  padding: 0.25rem 0.875rem;
  background: var(--bg-light-gray);
  border-radius: var(--border-radius-lg);
  font-size: 0.8125rem;
  color: var(--text-gray);
}

/* 优势列表 */
.advantage-layout {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.advantage-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.advantage-item {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: 0.9375rem;
  color: var(--text-dark);
}
.check-icon {
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300A896'%3E%3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100%;
}

/* 咨询按钮 */
.consult-btn {
  background: var(--primary-orange);
  color: #fff;
  border: none;
  width: 20%;
  padding: 0.75rem 0;
  border-radius: var(--border-radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.consult-btn:hover {
  background: #E56000;
}

/* ======================== 定制方案 CTA 模块 ======================== */
.cta-section {
  width: 100%;
  padding: 3rem 0;
  background: #fafbfc;
  position: relative;
  border-bottom: 2px solid var(--primary-blue);
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8%;
  height: 100%;
  background: linear-gradient(to right, #eee, transparent);
  pointer-events: none;
}
.cta-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.cta-title {
  font-size: 2.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.cta-desc {
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  background: var(--primary-blue);
  color: #fff;
  border: none;
  padding: 1rem 3rem;
  border-radius: 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: #0078d4; /* 深蓝色加深，同色系 */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgb(0 141 247 / 20%);
  color: #fff;
}

/* ======================== 动画 ======================== */
.fade-up {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ======================== 响应式适配（合并版，无重复） ======================== */
@media (max-width: 62rem) {
  .service-container {
    max-width: 75rem;
  }
  .service-main-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 48rem) {
  .service-container,
  .service-reverse {
    flex-direction: column !important;
    gap: 1rem;
    height: auto;
  }
  .service-img-wrap,
  .service-content-wrap {
    flex: 0 0 100%;
    height: auto;
  }
  .service-img-wrap img {
    height: 18.75rem;
  }
  .advantage-layout {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 0;
  }
  .cta-title {
    font-size: 1.75rem;
  }
  .cta-desc {
    font-size: 1rem;
  }
  .cta-btn {
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
  }
  .consult-btn {
	  width: 100%;
  }
}