/* ==============================================
1. 初始化CSS（重置默认样式，保证跨浏览器一致性）
============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", "Arial", sans-serif;
}
html {
  font-size: 16px;
  scroll-behavior: smooth; /* 平滑滚动 */
}
body {
  color: #222;
  line-height: 1.7;
  background-color: #f9f9f9;
  overflow-x: hidden; /* 隐藏横向滚动条（防止滚动容器溢出） */
}
body.bgfff{ background:#fff;}

ul, ol {
  list-style: none;
}





a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease; /* 所有链接过渡动画 */
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, textarea {
  outline: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* 全局容器（居中对齐，限制最大宽度） */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem; /* 20px 左右内边距，适配小屏幕 */
}


/* 全局按钮样式（复用） */
.btn {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  background-color: #0066cc; /* 主色调：醒目红，适配汽车网站 */
  color: #fff;
  font-weight: 600;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn:hover {
  background-color: #c72c3a;
  transform: translateY(-2px); /* 悬浮轻微上移 */
  box-shadow: 0 4px 12px rgba(22, 93, 255, 0.3);
}
.btn-outline {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  background-color: transparent;
  color: #0066cc;
  font-weight: 600;
  border: 2px solid #0066cc;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-outline:hover {
  background-color: #0066cc;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}
/* 全局标题样式（复用） */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #0066cc;
  margin: 1rem auto 0;
}

/* ==============================================
2. 顶部信息栏样式（可点击+贴近原图）
============================================== */
.top-bar {
  background-color: #222; /* 原图是深灰近黑 */
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}
.top-bar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  align-items:stretch;
}

.top-bar-wrap>div>i.fa,.top-bar-wrap>div>i.fab{ font-size:2rem;}

/* 拆分三个区域：左（WhatsApp）、中（Email）、右（Location） */
.top-bar-left, .top-bar-middle, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.3rem 0;
}
/* 中间Email区域：原图蓝色背景，独占中间栏 */
.top-bar-middle {
  background-color: #0066cc; /* 原图的深蓝色 */
  padding: 2rem 2rem;
  flex: 0 0 auto;
}
.top-bar-left, .top-bar-right {
  flex: 1;
  padding: 0 1rem;
}
.top-bar-left {
  justify-content: flex-start;
}
.top-bar-right {
  justify-content: flex-end;
}
.top-bar-item i {
  font-size: 1rem;
  color: #fff; /* 原图图标是白色 */
}
/* 可点击链接样式 */
.top-bar-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.top-bar-link:hover {
  color: #f0f0f0;
  text-decoration: underline;
}

/* ==============================================
3. 公共头部样式（所有页面共用，含PC/移动端）
============================================== */
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 9999; /* 保证头部始终在最上层 */
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Logo样式 */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 50px; /* 固定Logo高度，保证美观 */
}
.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-left: 0.75rem;
  text-transform: uppercase;
}
/* PC端导航 */
.pc-nav ul {
  display: flex;
  gap: 2.5rem; /* 导航项间距 */
}
.pc-nav a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
}
.pc-nav a:hover {
  color: #0066cc;
}
.pc-nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #0066cc;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}
.pc-nav a:hover::after {
  width: 100%;
}
/* 移动端菜单按钮 */
.mobile-menu-btn {
  display: none;
  background: transparent;
  font-size: 1.75rem;
  color: #222;
}
/* 移动端导航 */
.mobile-nav {
  display: none;
  background-color: #fff;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  margin-top: 0.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9998;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-nav a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f1f1;
}
.mobile-nav a:hover {
  color: #0066cc;
  padding-left: 0.5rem;
}

/* ==============================================
4. 轮播Banner样式（自动切换+手动控制）
============================================== */
/* 轮播容器 */
.banner-slider {
  position: relative;
  height: calc(100vh - 78px); /* 保持原有高度，减去头部高度 */
  overflow: hidden;
}
/* 轮播图片列表 */
.banner-slides {
  display: flex;
  width: 300%; /* 3张图，每张占100%，总宽度300% */
  height: 100%;
  transition: transform 0.8s ease-in-out; /* 平滑切换动画 */
}
/* 单张轮播图 */
.banner-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
/* 轮播图遮罩（保证文字清晰） */
.banner-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
/* 轮播内容（与原有静态Banner样式一致） */
.banner-content {
  max-width: 800px;
  padding: 0 1.25rem;
  z-index: 2; /* 高于遮罩层 */
  position: relative;
}
.banner-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.banner-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.banner-desc {
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}
/* 轮播下滑箭头（保留原有样式） */
.banner-down {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #fff;
  opacity: 0.8;
  animation: bounce 2s infinite;
  z-index: 2;
}
.banner-down:hover {
  opacity: 1;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}
/* 轮播控制按钮（左右箭头） */
.banner-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
}
.banner-control:hover {
  background-color: #0066cc;
  border-color: #0066cc;
  transform: translateY(-50%) scale(1.05);
}
.banner-control.prev {
  left: 2rem;
}
.banner-control.next {
  right: 2rem;
}
/* 轮播指示器（底部小圆点） */
.banner-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.indicator.active {
  width: 30px;
  border-radius: 6px;
  background-color: #0066cc;
}

/* ==============================================
5. 最新优惠车型模块（左右滚动+6个车型+响应式）
============================================== */
.latest-offers {
  padding: 6rem 0;
  background-color: #fff;
  position: relative;
}
.offers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.offers-header .section-subtitle {
  font-size: 1rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.offers-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin: 0.5rem 0;
}
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 25px;
  color: #222;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.view-all-btn:hover {
  border-color: #0066cc;
  color: #0066cc;
}
/* 滚动容器：隐藏溢出部分，仅显示3个车型 */
.offers-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
/* 滚动列表：存放6个车型，宽度自适应（每个车型占1/3） */
.offers-scroll-list {
  display: flex;
  gap: 2.5rem;
  transition: transform 0.6s ease-in-out; /* 平滑滚动动画 */
  width: fit-content; /* 自适应内容宽度 */
}
/* 车型卡片容器：固定宽度（占滚动容器的1/3，去除间距影响） */
.offers-card-wrapper {
  width: calc((100% - 2 * 2.5rem) / 3); /* 显示3个，扣除2个间距 */
  flex-shrink: 0; /* 禁止收缩，保证每个卡片宽度一致 */
}
/* 车型卡片（还原图示结构） */
.offer-card {
  background-color: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}
.offer-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.offer-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.offer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offer-card:hover .offer-card-img img {
  transform: scale(1.05);
}
.offer-card-content {
  padding: 1.5rem;
}
.offer-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
}
.offer-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1.5rem;
  flex-wrap: wrap; /* 小屏幕自动换行，避免拥挤 */
}
.offer-card-meta span {
  display: flex;
  align-items: center;
}
/* 客服按钮（空链接） */
.inquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background-color: #fef7e0;
  color: #e6b800;
  border-radius: 2px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.inquire-btn i {
  font-size: 1rem;
}
/* 价格区域 */
.offer-card-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  flex-wrap: wrap; /* 小屏幕自动换行 */
}
.current-price {
  font-weight: 700;
  color: #D5091B;
}
.original-price {
  font-size: 0.875rem;
  color: #999;
  text-decoration: line-through;
}
/* 滚动控制按钮（左右箭头） */
.offers-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #222;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.offers-control:hover {
  background-color: #0066cc;
  border-color: #0066cc;
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.offers-control.prev {
  left: 1rem;
  display: flex; /* 默认显示 */
}
.offers-control.next {
  right: 1rem;
  display: flex; /* 默认显示 */
}

/* ==============================================
6. 公共底部样式（所有页面共用）
============================================== */
.footer {
	background:url("../images/foot.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  position: relative;
  color: #aaa;
  padding: 8rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-col h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 1rem;
}
.footer-col h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #0066cc;
  position: absolute;
  bottom: 0;
  left: 0;
}

.form-group .email{ margin:1rem 0;}

.footer-about p {
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: #fff;
}
.footer-social a:hover {
  background-color: #0066cc;
  transform: translateY(-3px);
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links a {
  font-size: 0.9375rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-links a i {
  color: #0066cc;
  font-size: 0.875rem;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 0.5rem;
}
.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-contact i {
  color: #0066cc;
  font-size: 1.125rem;
  margin-top: 0.25rem;
}
.footer-contact p {
  font-size: 0.9375rem;
  line-height: 1.6;
}
.footer-newsletter .form-group {
  margin-bottom: 1.5rem;
}
.footer-newsletter input {
  padding: 1rem;
  background-color: #222;
  border: 1px solid #333;
  border-radius: 2px;
  font-size: 0.9375rem;
  color: #fff;
  width: 100%;
}
.footer-newsletter input:focus {
  border-color: #0066cc;
}
.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #222;
  font-size: 0.875rem;
  opacity: 0.7;
}

/* ==============================================
7. 响应式适配（按屏幕尺寸递减，兼容小屏幕）
============================================== */
/* 平板设备（最大宽度 992px） */
@media (max-width: 992px) {
  /* 全局调整 */
  .section-title h2 {
    font-size: 1.875rem;
  }
  /* 顶部信息栏 */
  .top-bar-right {
    display: none; /* 平板端隐藏地址 */
  }
  .top-bar-middle {
    padding: 0.6rem 1.5rem;
  }
  /* Banner */
  .banner-title {
    font-size: 2.5rem;
  }
  .banner-control {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  .banner-control.prev {
    left: 1rem;
  }
  .banner-control.next {
    right: 1rem;
  }
  /* 汽车滚动模块：显示2个，隐藏1个 */
  .offers-card-wrapper {
    width: calc((100% - 1 * 2.5rem) / 2); /* 显示2个，扣除1个间距 */
  }
  /* 底部 */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 小平板/大手机（最大宽度 768px） */
@media (max-width: 768px) {
  /* 头部 */
  .pc-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  /* 全局按钮 */
  .btn, .btn-outline {
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
  }
  /* 顶部信息栏 */
  .top-bar-wrap {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .top-bar-left, .top-bar-middle, .top-bar-right {
    justify-content: center;
    padding: 0.3rem 0;
  }
  .top-bar-middle {
    width: 100%;
    justify-content: center;
  }
  /* Banner */
  .banner-slider {
    height: calc(80vh - 78px);
  }
  .banner-title {
    font-size: 2rem;
  }
  .banner-desc {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }
  /* 移动端隐藏Banner左右箭头，保留指示器 */
  .banner-control {
    display: none;
  }
  /* 汽车滚动模块：显示1个，隐藏5个 */
  .offers-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .offers-card-wrapper {
    width: 100%; /* 显示1个，占满整个容器 */
  }
  .offers-control {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  /* 底部 */
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 6rem 0 2rem;
  }
}

/* 手机设备（最大宽度 576px） */
@media (max-width: 576px) {
  /* 全局 */
  html {
    font-size: 14px;
  }
  .section-title {
    margin-bottom: 3rem;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  /* Logo */
  .logo span {
    display: none; /* 小屏幕隐藏Logo文字，只留图片 */
  }
  /* 顶部信息栏 */
  .top-bar-item {
    font-size: 0.75rem;
  }
  /* Banner */
  .banner-slider {
    height: calc(70vh - 78px);
  }
  .banner-subtitle {
    font-size: 1rem;
  }
  .banner-title {
    font-size: 1.75rem;
  }
  .indicator {
    width: 8px;
    height: 8px;
  }
  .indicator.active {
    width: 20px;
  }
  /* 汽车滚动模块 */
  .offer-card-img {
    height: 180px; /* 缩小图片高度，适配手机屏幕 */
  }
  .offers-control {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }
  /* 底部 */
  .footer-col h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}



/*服务模块*/

/* ==============================================
新增：CAR Field Services模块样式
============================================== */
.services-section {
  padding: 5rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url("../images/servicebg.webp") no-repeat center center;
  background-size: cover;
  color: #fff;
  position: relative;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.services-subtitle {
  font-size: 1rem;
  color: #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  position: relative;
}
.services-subtitle::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background-color: #0066cc;
  margin-left: 1rem;
  vertical-align: middle;
}
.services-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.services-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.services-contact-btn:hover {
  background-color: #0066cc;
  border-color: #0066cc;
  color: #fff;
}
/* 服务卡片网格 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
/* 服务卡片 */
.service-card {
  background-color: #0066cc; /* 匹配原图蓝色卡片 */
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  background-color: #0052a3;
}
.service-icon {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}
.service-icon i{ font-size:3rem; color:#fff;}
.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* 响应式适配 */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 2rem 1rem;
  }
}

/*服务模块结束*/



/*主页关于*/
/* ==============================================
新增：ABOUT CAR Field模块样式
============================================== */
.about-section {
  padding: 8rem 0;
  background-color: #fff;
}
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.about-content .section-subtitle {
  font-size: 1rem;
  color: #0066cc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.about-content .section-title {
  text-align: left;
  margin-bottom: 2rem;
}
.about-content .section-title::after {
  margin-left: 0;
}
.about-desc {
  color: #666;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.about-advantage {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #333;
}
.about-advantage i {
  color: #0066cc;
  font-size: 1rem;
}
.about-readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background-color: #0066cc;
  color: #fff;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.about-readmore-btn:hover {
  background-color: #0052a3;
  transform: translateY(-2px);
}
.about-img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.about-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 数据统计栏 */
.stats-section {
  color: #fff;
  padding: 4rem 0;
  background: url("../images/recordbg.webp") no-repeat center center;
  background-size: cover;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.stat-icon {
  width: 70px;
  height: 70px;
  background-color: #0066cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
.stat-label {
  font-size: 0.9375rem;
  color: #ccc;
  text-transform: uppercase;
}

/* 响应式适配 */
@media (max-width: 992px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .about-advantages {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: 2rem;
  }
}

/*主页关于*/



/* ==============================================
新增：CAR Field Recommends模块样式（适配两行多列）
============================================== */
.recommends-section {
  padding: 8rem 0;
  background-color: #f9f9f9;
}
.recommends-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  
}
.recommends-subtitle {
  font-size: 1rem;
  color: #0066cc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  position: relative;
}
.recommends-subtitle::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background-color: #0066cc;
  margin-left: 1rem;
  vertical-align: middle;
}
.recommends-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
}
.recommends-desc {
  font-size: 0.9375rem;
  color: #666;
  margin-top: 0.5rem;
}
.recommends-viewall-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 25px;
  color: #222;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.recommends-viewall-btn:hover {
  border-color: #0066cc;
  color: #0066cc;
}

/* 推荐车型网格（5列布局，两行） */
.recommends-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
/* 复用热门车型卡片样式，调整尺寸适配 */
.recommends-card {
  background-color: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.recommends-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.recommends-card-img {
  width: 100%;
  height: 180px; /* 比热门车型卡片略小 */
  overflow: hidden;
}
.recommends-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.recommends-card:hover .recommends-card-img img {
  transform: scale(1.05);
}
.recommends-card-content {
  padding: 1.25rem; /* 内边距略小 */
}
.recommends-card-title {
  font-size: 0.9375rem; /* 标题字体略小 */
  font-weight: 600;
  color: #222;
  margin-bottom: 0.75rem;
}
.recommends-card-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8125rem; /* 元信息字体略小 */
  color: #666;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.recommends-card-meta span {
  display: flex;
  align-items: center;
}
/* 客服按钮（复用热门车型样式） */
.recommends-inquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem; /* 按钮略小 */
  background-color: #fef7e0;
  color: #e6b800;
  border-radius: 2px;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}
.recommends-inquire-btn i {
  font-size: 0.9375rem;
}
/* 价格区域（复用热门车型样式） */
.recommends-card-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  flex-wrap: wrap;
}
.recommends-current-price {
  font-weight: 700;
  color: #D5091B;
}
.recommends-original-price {
  font-size: 0.8125rem;
  color: #999;
  text-decoration: line-through;
}

/* 响应式适配 */
@media (max-width: 1200px) {
  .recommends-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .recommends-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .recommends-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .recommends-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .recommends-grid {
    grid-template-columns: 1fr;
  }
  .recommends-card-img {
    height: 160px;
  }
}



/* ==============================================
调整：双链接入口模块样式（新增模块标题+全屏图片+贴合图示）
============================================== */
.link-entrance-section {
  padding: 0; /* 移除内边距，让图片贴合浏览器边缘 */
  background-color: #fff;
  margin: 5rem 0; /* 保留模块上下间距，避免与其他模块粘连 */
}
/* 新增：模块标题样式 */
.link-entrance-header {
  text-align: center;
  padding: 2rem 1rem 3rem; /* 上下内边距，与图片模块拉开间距 */
  margin: 0 auto;
  max-width: 1240px; /* 与其他模块标题宽度保持一致 */
}
.link-entrance-subtitle {
  font-size: 1rem;
  color: #0066cc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.link-entrance-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 2px;
}
/* 取消容器限制，让图片全屏 */
.link-entrance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0; /* 移除两列之间的间距，贴合图示 */
}
.link-entrance-item {
  position: relative;
  height: 500px; /* 提高高度，更贴合图示比例 */
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* 背景图遮罩（调整透明度，更贴合图示） */
.link-entrance-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* 加深遮罩，突出文字 */
  z-index: 1;
  transition: background-color 0.3s ease;
}
.link-entrance-item:hover::before {
  background-color: rgba(0, 102, 204, 0.7);
}
/* 背景图（设置全屏覆盖，不被容器限制） */
.link-entrance-img {
  width: 100vw; /* 视图宽度全屏，突破容器限制 */
  height: 100%;
  object-fit: cover;
  object-position: center; /* 居中显示，保证图片核心内容不被裁切 */
  transition: transform 0.5s ease; /* 新增图片放大动画 */
}
.link-entrance-item:hover .link-entrance-img {
  transform: scale(1.05); /* 悬浮时图片轻微放大，提升层次感 */
}
/* 文字内容（调整间距和字体，更贴合图示） */
.link-entrance-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1rem; /* 小屏幕文字内边距，避免溢出 */
}
.link-entrance-title {
  font-size: 2.5rem; /* 放大标题字体，更贴合图示 */
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px; /* 增加字间距，更贴合英文排版风格 */
}
.link-entrance-btn {
  display: inline-block;
  padding: 1rem 2rem; /* 放大按钮内边距，更贴合图示 */
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  border-radius: 0; /* 取消圆角，改为直角按钮，更贴合图示 */
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.link-entrance-btn:hover {
  background-color: #fff;
  color: #0066cc;
  transform: translateY(-3px); /* 按钮悬浮上移，提升交互感 */
}

/* 响应式适配（保留全屏效果，适配小屏幕） */
@media (max-width: 768px) {
  .link-entrance-header {
    padding: 1.5rem 1rem 2rem; /* 小屏幕缩小标题内边距 */
  }
  .link-entrance-main-title {
    font-size: 1.75rem; /* 小屏幕缩小主标题 */
  }
  .link-entrance-grid {
    grid-template-columns: 1fr; /* 单列布局 */
    gap: 0; /* 移除上下卡片间距 */
  }
  .link-entrance-item {
    height: 300px; /* 缩小高度，适配小屏幕 */
  }
  .link-entrance-title {
    font-size: 1.875rem; /* 缩小标题字体 */
  }
  .link-entrance-btn {
    padding: 0.75rem 1.5rem; /* 缩小按钮内边距 */
  }
}
@media (max-width: 576px) {
  .link-entrance-main-title {
    font-size: 1.5rem;
  }
  .link-entrance-item {
    height: 250px; /* 进一步缩小高度 */
  }
  .link-entrance-title {
    font-size: 1.5rem;
  }
}

.neinav{ padding:5rem 0 0;}
.neinav ul{ display:grid; grid-template-columns:repeat(5, 1fr); gap:1rem;}
.neinav ul li{}
.neinav ul li a{ display:block; padding:0.6rem; background:#f1f1f1; text-align:center; border-radius:6px;}
.neinav ul li a:hover,.neinav ul li.act a{ background:#0066cc; color:#fff;}

@media (max-width: 768px) {
.neinav ul{grid-template-columns:repeat(3, 1fr);}
}
@media (max-width: 480px) {
.neinav ul{grid-template-columns:repeat(2, 1fr);}
}


/* ==============================================
新增：Import Cars标题模块样式
============================================== */
.import-cars-header-section {
  padding: 3rem 0;
  background-color: #fff;
  text-align: center;
}
.import-cars-title-wrap {
  display: inline-block;
  padding: 1.5rem 2rem;
  max-width: 80%; /* 限制宽度，避免小屏幕溢出 */
}
.import-cars-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.import-cars-desc {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.5;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .import-cars-main-title {
    font-size: 1.5rem;
  }
  .import-cars-title-wrap {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 576px) {
  .import-cars-main-title {
    font-size: 1.25rem;
  }
}



/* ==============================================
调整：Become CAR Field’s Distributor模块（统一主体宽度）
============================================== */
.distributor-section {
  padding: 6rem 0;
  background-color: #fff;
  text-align: center;
}
.distributor-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 4rem;
  letter-spacing: 1px;
  /* 新增：与其他模块标题统一宽度限制 */

  margin-left: auto;
  margin-right: auto;
}
/* 功能网格（统一主体宽度，与页面其他模块保持一致） */
.distributor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  /* 关键调整：统一主体宽度（与header、汽车模块等一致） */
  margin: 0 auto 3rem;
  /* 保留左右内边距，适配小屏幕 */
}
/* 功能项（带悬浮效果） */
.distributor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  /* 新增：拉伸项宽，填满网格列 */
  width: 100%;
}

.distributor-item:hover {
  background-color: #f8f9fa;
}
.distributor-icon {
  font-size: 3rem;
  color: #0066cc;
  transition: color 0.3s ease;
}

.distributor-text {
  font-size: 0.9375rem;
  font-weight: 500;
}
/* 按钮样式（统一宽度内居中） */
.distributor-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: #0066cc;
  color: #fff;
  font-weight: 600;
  border-radius: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  /* 新增：与网格统一左右内边距，保证对齐 */
  margin: 0 1.25rem;
}
.distributor-btn:hover {
  background-color: #0052a3;
  transform: translateY(-2px);
}

/* 响应式适配（保持与页面其他模块一致的适配逻辑） */
@media (max-width: 768px) {
  .distributor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .distributor-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 576px) {
  .distributor-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================================
优化：Clients Review模块（添加真正的滚动布局+平滑动画）
============================================== */
.clients-review-section {
  padding: 8rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url("../images/case.webp") no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.clients-review-header {
  margin-bottom: 3rem;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
}
.clients-review-subtitle {
  font-size: 1rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  position: relative;
}
.clients-review-subtitle::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background-color: #0066cc;
  margin-left: 1rem;
  vertical-align: middle;
}
.clients-review-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* 关键补充：滚动容器（隐藏溢出+实现横向滚动） */
.clients-review-scroll-wrap {
  margin: 0 auto;
  overflow: hidden; /* 隐藏超出容器的slide，实现仅显示当前slide */
  position: relative;
}
/* 滚动列表（承载所有slide，实现平移滚动） */
.clients-review-scroll-list {
  display: flex; /* 横向排列所有slide */
  transition: transform 0.6s ease-in-out; /* 平滑滚动动画，核心！ */
  width: fit-content; /* 自适应内容宽度，不被容器限制 */
}
/* 评论slide（固定宽度，与滚动容器匹配） */
.review-slide {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: #fff;
  color: #222;
  padding: 2rem;
  border-radius: 4px;
  width: 100%; /* 每个slide占满滚动容器宽度，实现一次显示一个 */
  flex-shrink: 0; /* 禁止slide收缩，保证宽度一致 */
}
.review-content {
  flex: 1;
  text-align: left;
}
.review-location {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0066cc;
  margin-bottom: 1rem;
}
.review-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.review-img {
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  flex:1;
}
.review-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 滚动指示器 */
.review-indicators {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}
.review-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.review-indicator.active {
  background-color: #0066cc;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .review-slide {
    flex-direction: column;
    text-align: center;
  }
  .review-content {
    text-align: center;
  }
  .review-img {
    width: 100%;
    max-width: 300px;
  }
  .clients-review-title {
    font-size: 1.75rem;
  }
}


/* ==============================================
FAQ模块样式（完整保留，确保过渡效果生效）
============================================== */
.faq-section {
  padding: 8rem 0;
  background-color: #fff;
}
.faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}
.faq-list {
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid #e0e0e0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  outline: none;
}
.faq-icon {
  font-size: 1.25rem;
  color: #0066cc;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 0;
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.8;
}
.faq-item.active .faq-answer {
  max-height: 500px; /* 增大高度，适配更长内容 */
  padding: 0 0 1.5rem 0;
}
.faq-answer a {
  color: #0066cc;
  text-decoration: underline;
}
.faq-item:last-child {
  border-bottom: 1px solid #e0e0e0;
}


@media (max-width: 768px) {
  .faq-title {
    font-size: 1.75rem;
  }
  .faq-question {
    font-size: 0.9375rem;
  }
}



/* ==============================================
新增：Latest News模块样式（仅标题复用，卡片+滚动独立）
============================================== */
.news-section {
  padding: 8rem 0;
  background-color: #f9f9f9;
}
/* 标题容器（复用产品模块标题样式，仅统一布局） */
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}
.news-header-left {
  display: flex;
  flex-direction: column;
}
/* 直接复用产品模块的标题样式，保证视觉统一 */
.news-subtitle {
  font-size: 1rem;
  color: #0066cc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  position: relative;
}
.news-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
}
/* 查看全部按钮（与产品模块按钮样式一致） */
.news-viewall-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 25px;
  color: #222;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.news-viewall-btn:hover {
  border-color: #0066cc;
  color: #0066cc;
}

/* 新闻滚动容器（核心：实现左右滚动） */
.news-scroll-wrap {
  margin: 0 auto;
  overflow: hidden; /* 隐藏溢出内容，仅显示当前可视区域 */
  position: relative;
}
/* 新闻滚动列表（承载两个卡片，实现横向滚动） */
.news-scroll-list {
  display: flex;
  gap: 2rem; /* 两个卡片之间的间距 */
  transition: transform 0.6s ease-in-out; /* 平滑滚动动画 */
  width: fit-content; /* 自适应内容宽度 */
}
/* 新闻卡片（独立样式，与产品卡片区分） */
.news-card {
  width: calc(50% - 1rem); /* 两个卡片平分容器宽度，减去间距的一半 */
  flex-shrink: 0; /* 禁止收缩，保证宽度一致 */
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
/* 新闻卡片图片 */
.news-card-img {
  position: relative;
  height: 250px; /* 固定图片高度，保证统一 */
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img {
  transform: scale(1.05); /* 悬浮图片放大 */
}
/* 新闻日期标签（独立样式，贴合新闻模块） */
.news-date {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: #0066cc;
  color: #fff;
  padding: 1rem;
  text-align: center;
  border-radius: 4px;
  width: 110px;
}
.news-date-day {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}
.news-date-month {
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
/* 新闻卡片内容 */
.news-card-content {
  padding: 2rem;
}
.news-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.news-card-desc {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
/* 新闻卡片作者/评论信息 */
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 1.5rem;
}
.news-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* 新闻卡片阅读更多按钮 */
.news-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0066cc;
  font-weight: 500;
  transition: all 0.3s ease;
}
.news-card-btn:hover {
  color: #0052a3;
  transform: translateX(5px);
}
/* 滚动控制按钮（左右箭头，可选，提升交互） */
.news-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.news-scroll-btn:hover {
  background-color: #0066cc;
  color: #fff;
  border-color: #0066cc;
}
.news-scroll-btn-left {
  left: 20px;
}
.news-scroll-btn-right {
  right: 20px;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .news-card {
    width: 100%; /* 小屏幕下一个卡片占满宽度，滚动切换 */
  }
  .news-card-title {
    font-size: 1rem;
  }
  .news-card-content {
    padding: 1.5rem;
  }
}
@media (max-width: 576px) {
  .news-title {
    font-size: 1.75rem;
  }
  .news-card-img {
    height: 200px;
  }
}

/* ==============================================
优化：News模块响应式样式（修复小屏幕宽度溢出）
============================================== */
@media (max-width: 768px) {
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  /* 小屏幕下卡片宽度100%，并添加左右内边距，避免溢出 */
  .news-card {
    width: 100%;
    padding: 0 1.25rem; /* 与容器内边距一致，避免内容贴边 */
    box-sizing: border-box; /* 保证内边距不影响宽度计算 */
  }
  /* 小屏幕下滚动列表宽度100%，避免超出容器 */
  .news-scroll-list {
    width: 100%;
  }
  /* 小屏幕下隐藏滚动按钮（可选，避免遮挡） */
  .news-scroll-btn {
    display: none;
  }
  .news-card-title {
    font-size: 1rem;
  }
  .news-card-content {
    padding: 1.5rem;
  }
}
@media (max-width: 576px) {
  .news-title {
    font-size: 1.75rem;
  }
  .news-card-img {
    height: 200px;
  }
  /* 小屏幕下日期标签缩小，避免遮挡图片 */
  .news-date {
    padding: 0.75rem;
    width: 70px;
  }
  .news-date-day {
    font-size: 1.5rem;
  }
}




/* -----------------------------------产品页----------------------------------- */
/* 产品页-顶部banner模块 独有样式 */
/* 产品页-顶部banner模块 独有样式 */
.product-banner {
    padding: 6rem 0;
    color: #fff;
	background-repeat:no-repeat;
	background-size:cover;
    position: relative;
}
.product-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.banner-content {
    position: relative;
    z-index: 2;
}
.product-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.banner-features {
    list-style: disc;
    padding-left: 1.5rem;
    font-size: 1.2rem;
    line-height: 2;
}

.prolist{ background:#fff; padding-bottom:3rem;}
.prolist .import-cars-header-section{ background:none;}

.propage .section-title{ width:100%;}
.propage .section-title::after{ display:none;}
.propage .section-title .subtitle-desc{ font-weight:normal;}


.prolist .recommends-grid{ padding-bottom:3rem;}
.fenye .pagination{ display:flex; justify-content:center; gap:1rem;}
.fenye .pagination a{ border:1px solid #666; padding:0.4rem 1rem; border-radius:5px;}
.fenye .pagination a:hover,.fenye .pagination a.page-num-current{ background:#000; color:#fff;border:1px solid #000;}



/* 响应式适配 */
@media (max-width: 992px) {
    .product-banner {
        padding: 4rem 0;
    }
    .product-banner h1 {
        font-size: 2rem;
    }
    .banner-features {
        font-size: 1.1rem;
    }
}
@media (max-width: 768px) {
    .product-banner {
        padding: 3rem 0;
    }
    .product-banner h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    .banner-features {
        font-size: 1rem;
    }
}

/* 产品页-支持服务板块 独有样式 */
.support-section {
    padding: 5rem 0;
    background: #f9f9f9;
}
.section-title .subtitle-desc {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
    display: block;
    text-align: center;
}
.support-grid {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.support-item {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    border: 1px solid #eee;
    background: #fff;
}
.support-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}
.support-item ul {
    list-style: disc;
    padding-left: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}
.support-item .btn {
    background: #0066cc;
    color: #fff;
    padding: 0.75rem 2rem;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .support-section {
        padding: 3rem 0;
    }
    .support-grid {
        gap: 1.5rem;
    }
    .support-item {
        padding: 1.8rem;
    }
}


/* 优势模块整体样式 */
.advantages-section {
  padding: 60px 0;
  background-color: #fff;
}

/* 模块标题 */
.advantages-header {
  text-align: center;
  margin-bottom: 40px;
}

.advantages-header h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 8px;
}

.advantages-header .subtitle {
  font-size: 16px;
  color: #999;
  margin: 0;
}

/* 优势项网格布局（适配截图的排列） */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* 优势卡片样式 */
.advantage-card {
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
}

.advantage-card:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 图标+标题 容器（实现一行排列核心） */
.advantage-icon-title {
  display: flex;
  align-items: center;
  gap: 10px; /* 图标与标题间距，视觉更协调 */
  margin-bottom: 10px; /* 保持与原样式一致的标题下方间距 */
}

/* 对勾图标样式（还原截图的绿色对勾，保持原规格） */
.advantage-icon {
  /* 保留原类名兼容性，核心样式迁移至 icon 标签 */
}

.advantage-icon-title i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #28a745; /* 绿色 */
  color: #fff;
  text-align: center;
  line-height: 20px;
  border-radius: 2px;
  font-style: normal; /* 清除默认斜体 */
  flex-shrink: 0; /* 固定图标尺寸，不被压缩 */
}

.advantage-icon-title i::before {
  content: "✓"; /* 对勾符号 */
  font-size: 12px; /* 对勾居中优化，视觉更舒适 */
}

/* 优势卡片标题和描述（保持原规格，调整标题margin） */
.advantage-card h3 {
  font-size: 18px;
  color: #333;
  margin: 0; /* 清除原底部margin，由父容器 gap 控制间距 */
  line-height: 1.2; /* 标题行高优化，避免垂直错位 */
}

.advantage-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* 响应式适配（小屏幕下调整布局，保持原规格） */
@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}


/* 购买流程模块整体样式 */
.purchase-section {
  padding: 60px 0;
  background-color: #fff;
}

/* 模块标题 */
.purchase-header {
  text-align: center;
  margin-bottom: 40px;
}

.purchase-header h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 8px;
}

.purchase-header .purchase-subtitle {
  font-size: 16px;
  color: #999;
  margin: 0;
}

/* 流程卡片网格（2行3列布局） */
.purchase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 流程卡片样式（匹配上方优势模块风格） */
.purchase-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 25px;
  border: 1px solid #eee;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  transition: box-shadow 0.3s ease; /* 与上方模块统一过渡效果 */
}

/* 调整hover效果：与上方优势模块保持一致（浅阴影），视觉统一 */
.purchase-card:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* 复用上方优势模块hover阴影 */
  color: #333; /* 保持文字颜色不变，与上方模块风格统一 */
  border-color: #eee; /* 保持边框颜色不变，避免突兀 */
}

/* 箭头图标样式（匹配设计，微调视觉更协调） */
.purchase-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #28a745; /* 改用上方模块的绿色，统一色调 */
  color: #fff;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  flex-shrink: 0;
  border-radius: 2px; /* 与上方模块图标圆角统一 */
}

.purchase-title {
  font-size: 16px;
  font-weight: 500;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .purchase-grid {
    grid-template-columns: 1fr;
  }
  .purchase-header h2 {
    font-size: 24px;
  }
  .purchase-title {
    font-size: 15px;
  }
}


/* 展厅模块整体样式 */
.showrooms-section {
  padding: 60px 0;
  background-color: #fff;
}

/* 模块标题 */
.showrooms-title {
  font-size: 28px;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

/* 数据统计网格 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

/* 数据卡片 */
.stats-card {
  padding: 30px 25px;
  background-color: #f8f9fa;
  border-radius: 4px;
  text-align: center;
}

/* 统计图标（还原截图的蓝色圆形） */
.stats-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background-color: #0066cc;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-icon svg {
  width: 30px;
  height: 30px;
}

/* 统计数值与标签 */
.stats-value {
  font-size: 28px;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 8px;
}
.stats-label {
  font-size: 14px;
  color: #666;
}

/* 优势列表 */
.showrooms-advantages {
  margin-bottom: 30px;
  padding-left: 20px;
}
.showrooms-advantages p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}
.showrooms-advantages ul {
  list-style: none;
}
.showrooms-advantages li {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

/* 展厅图片画廊 */
.showrooms-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.showrooms-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .showrooms-gallery {
    grid-template-columns: 1fr 1fr;
  }
}






/* 原生多图切换 - 主图区域样式 */
.main-gallery {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 15px;
  overflow: hidden;
}
.main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.main-img.active {
  opacity: 1;
  position: relative;
}

/* 原生多图切换 - 切换按钮（优化交互：悬浮变色+缩放） */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9); /* 略加深背景，提升可读性 */
  color: #165DFF; /* 主题色：按钮图标 */
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease; /* 统一过渡动画，更流畅 */
}
.gallery-btn:hover {
  background-color: #165DFF; /* 主题色：悬浮背景反转 */
  color: #ffffff; /* 悬浮文字变白 */
  transform: translateY(-50%) scale(1.1); /* 悬浮轻微放大，提升交互感 */
  box-shadow: 0 0 10px rgba(22, 93, 255, 0.4); /* 悬浮阴影，增强层次感 */
}
.prev-btn { left: 15px; }
.next-btn { right: 15px; }

/* 原生多图切换 - 缩略图区域（优化激活样式） */
.thumb-gallery {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 80px;
  overflow: hidden;
}
.thumb-img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.3s ease; /* 统一过渡动画 */
  border: 2px solid transparent;
  border-radius: 4px; /* 增加圆角，与整体风格统一 */
}
.thumb-img.active {
  opacity: 1;
  border: 2px solid #165DFF; /* 主题色：激活边框 */
  box-shadow: 0 0 8px rgba(22, 93, 255, 0.3); /* 激活阴影，突出选中状态 */
}
.thumb-img:hover:not(.active) {
  opacity: 0.8; /* 未激活缩略图悬浮略亮，提升交互反馈 */
  border: 2px solid rgba(22, 93, 255, 0.2); /* 悬浮浅边框，提示可点击 */
}

/* 产品详情模块整体样式 */
.product-detail-section {
  padding: 80px 0 0; /* 增加上下内边距，更宽松美观 */
  background-color: #FFFFFF;
}
.product-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; /* 增加列间距，避免拥挤 */
  align-items: flex-start;
}



.prodet .recommends-section{ padding:3rem 0;}
.prodet .news-section{padding:3rem 0;}
.prodet .support-section{ padding:2rem 0;}

.newslist .news-scroll-list{flex-wrap:wrap;}
.newslist .news-section{ padding:3rem 0;}

.newslist .news-scroll-list{ padding-bottom:3rem;}
.fenye{}

.prolpg .purchase-section{ padding-top:0;}


/* 产品信息区域（主题色替换+细节优化） */
.product-info {
  padding: 30px; /* 增加内边距，提升舒适感 */
  border: 1px solid #E8ECEF; /* 更柔和的边框色 */
  border-radius: 8px; /* 增加圆角，更现代 */
  background-color: #F5F7FA; /* 辅色：浅灰蓝背景，突出信息区域 */
}
.product-title {
  font-size: 26px; /* 放大标题，更醒目 */
  color: #0066cc; /* 主题色：产品标题 */
  margin-bottom: 12px;
  font-weight: 700; /* 加粗，提升层级 */
}
.product-subtitle {
  font-size: 19px;
  color: #333333; /* 强调文本色 */
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E8ECEF; /* 柔和分割线 */
}

/* 产品参数列表（细节优化） */
.product-specs {
  list-style: none;
  margin-bottom: 35px;
}
.product-specs li {
  font-size: 15px; /* 放大文本，提升可读性 */
  color: #666666; /* 常规文本色 */
  margin-bottom: 15px;
  line-height: 1.8; /* 增加行高，更易阅读 */
}
.product-specs li span {
  color: #333333; /* 强调文本色：参数名称 */
  font-weight: 600; /* 加粗，区分参数名和值 */
  display: inline-block;
  padding-right:10px;
}

/* 按钮样式（核心优化：主题色+丰富交互+圆角） */
.product-buttons {
  display: flex;
  gap: 20px;
}
.btn-primary {
  padding: 14px 30px; /* 放大按钮，更易点击 */
  background-color: #0066cc; /* 主题色：主按钮背景 */
  color: #ffffff;
  border: none;
  border-radius: 8px; /* 圆角，更现代 */
  cursor: pointer;
  font-size: 15px; /* 放大按钮文本 */
  font-weight: 600; /* 加粗文本，提升视觉重点 */
  transition: all 0.3s ease; /* 统一过渡动画 */
}
.btn-primary:hover {
  background-color: #0E42D2; /* 主题色hover：深一点的蓝 */
  transform: translateY(-2px); /* 悬浮轻微上移，提升交互感 */
  box-shadow: 0 5px 15px rgba(22, 93, 255, 0.3); /* 悬浮阴影，增强层次感 */
}
.btn-primary:active {
  transform: translateY(0); /* 点击还原位置，模拟按压效果 */
  box-shadow: 0 2px 8px rgba(22, 93, 255, 0.2); /* 点击阴影缩小，提升真实感 */
}
.btn-outline {
  padding: 14px 30px; /* 与主按钮保持一致大小 */
  background-color: #FFFFFF; /* 白色背景 */
  color: #0066cc; /* 主题色：边框和文本 */
  border: 2px solid #0066cc; /* 主题色边框 */
  border-radius: 8px; /* 圆角，与主按钮统一 */
  cursor: pointer;
  font-size: 15px; /* 放大按钮文本 */
  font-weight: 600; /* 加粗文本 */
  transition: all 0.3s ease; /* 统一过渡动画 */
}
.btn-outline:hover {
  background-color: #0066cc; /* 辅色hover：浅蓝背景，不刺眼 */
  transform: translateY(-2px); /* 悬浮轻微上移，与主按钮交互统一 */
  box-shadow: 0 5px 15px rgba(22, 93, 255, 0.15); /* 悬浮阴影，增强层次感 */
}
.btn-outline:active {
  transform: translateY(0); /* 点击还原位置 */
  box-shadow: 0 2px 8px rgba(22, 93, 255, 0.1); /* 点击阴影缩小 */
}

/* 响应式适配（保持原有逻辑，优化细节） */
@media (max-width: 768px) {
  .product-detail-wrap {
    grid-template-columns: 1fr;
  }
  .main-gallery {
    height: 320px; /* 适当调整高度，适配小屏幕 */
  }
  .product-specs li span {
    width: 160px; /* 调整参数名宽度，适配小屏幕 */
  }
  .product-buttons {
    flex-direction: column;
    gap: 15px; /* 调整按钮间距，适配竖排 */
  }
  .product-buttons button {
    width: 100%;
    padding: 14px 0; /* 横向内边距清零，适配全屏宽度 */
  }
}



/* 联系信息模块整体样式 */
.contact-info-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

/* 模块标题（还原截图的红色下划线，与之前风格统一） */
.contact-title {
  font-size: 28px;
  color: #333333;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.contact-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #E53935; /* 截图同款红色下划线 */
}

/* 联系信息网格布局（自适应，小屏幕适配） */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

/* 单个联系信息项（hover交互与之前模块统一） */
.contact-info-item {
  padding: 25px;
  transition: all 0.3s ease;
}
.contact-info-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

/* 字体图标容器（还原截图蓝色圆形，优化图标居中） */
.info-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background-color: #0a3d91; /* 项目统一主题色 */
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 24px; /* 控制字体图标大小，适配圆形容器 */
}
/* 图标容器hover效果（与主题色hover统一） */
.contact-info-item:hover .info-icon {
  background-color: #0E42D2; /* 主题色加深，提升交互层次感 */
}

/* 标签与内容（文本样式与之前模块统一） */
.info-label {
  font-size: 16px;
  color: #333333;
  font-weight: 600;
  margin-bottom: 12px;
}
.info-content {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

.conpage .banner-bg{ height:400px;}
.conpage .banner-content{ position:absolute; top:50%; text-align:center; left:50%; transform:translate(-50%,-50%);}

.conpage .section-title{ position:inherit; width:100%; font-size:3rem;}
.conpage .section-title::after{ display:none;}

.conpage .intro-content{ max-width:1400px;}
.conpage .banner-title{ font-size:3rem;}
.conpage .banner-subtitle{ color:#fff;}

.conpage .contact-title{ font-size:2.5rem;}
.conpage .contact-title::after{ display:none;}

.conpage .contact-info-item{ background:#fff;}

.conpage .contact-info-section{ background:none;}
.conpage .contact-info-grid{grid-template-columns:repeat(4, 1fr);}


.googleditu{ height:500px; width:100%; background:#ccc;}


/* 响应式适配（小屏幕单列居中，优化显示） */
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .contact-title {
    font-size: 24px;
  }
  .info-icon {
    width: 48px;
    height: 48px;
    font-size: 20px; /* 小屏幕下图标适当缩小 */
  }
}



/* 内页Banner核心样式 */
.inner-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner-bg {
  width: 100%;
  height: 280px; /* 适配参考图比例，可按需调整 */
  position: relative;
}
/* 背景图样式（自适应铺满，保持比例） */
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 覆盖容器且保持比例，不拉伸 */
  object-position: center; /* 居中显示核心区域 */
}
/* 半透明遮罩（让文字更清晰） */
.banner-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* 黑色半透明，可调整透明度 */
  z-index: 1;
}
/* Banner文字容器（居中+层级） */
.banner-content {
  width: 100%;
}
/* Banner标题样式（还原参考图文字风格） */
.banner-title {
  font-size: 32px;
  color: #FFFFFF; /* 白色文字，对比背景更醒目 */
  font-weight: 700;
  letter-spacing: 1px; /* 轻微字间距，提升质感 */
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 文字阴影，增强立体感 */
}

/* 响应式适配（小屏幕优化） */
@media (max-width: 768px) {
  .banner-bg {
    height: 200px; /* 小屏幕缩短Banner高度 */
  }
  .banner-title {
    font-size: 24px; /* 小屏幕缩小文字 */
    letter-spacing: 0.5px;
  }
}
@media (max-width: 480px) {
  .banner-bg {
    height: 160px;
  }
  .banner-title {
    font-size: 20px;
  }
}

.aboutpage .banner-bg{ height:400px;}
.aboutpage .banner-content{ position:absolute; top:50%; text-align:center; left:50%; transform:translate(-50%,-50%);}

.aboutpage .section-title{ position:inherit; width:100%; font-size:3rem;}
.aboutpage .section-title::after{ display:none;}

.aboutpage .intro-content{ max-width:1400px;}
.aboutpage .banner-title{ font-size:3rem;}

.aboutpage .about-intro-section{ padding:3rem 0 0;}
.aboutpage .pioneer-title{ font-size:3rem;}

.aboutpage .stats-value,.aboutpage .stats-label{ color:#fff;}
.aboutpage .trust-title{ font-size:2.5rem;}
.aboutpage .trust-title::after{ display:none;}

.aboutpage .trust-img img{ height:auto;}
.aboutpage .services-grid{grid-template-columns:repeat(3, 1fr);}
.aboutpage .export-services-section{ padding:0;}

.aboutpage .section-main-title{ font-size:2.5rem; margin-bottom:20px;}

.aboutpage .deals-img img{ height:auto;}

.aboutpage .advantage-icon{ width:70px; height:70px;}
.aboutpage .advantage-icon i{ font-size:2rem;}

.aboutpage .service-icon i{ color:#0a3d91;}
.aboutpage .section-subtitle{ text-align:center;}

.aboutpage .purchase-section{ padding-bottom:0;}

.aboutpage .recommends-section{ padding:3rem 0 0;}
.aboutpage .news-section{ padding:3rem 0;}


/* 新闻内容页模块样式 */
.news-detail-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}
.news-detail-wrap {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* 左侧新闻内容区 */
.news-content {
  width: 100%;
}
.news-title {
  font-size: 26px;
  color: #333333;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.news-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #165DFF; /* 全局主题色 */
}

/* 快速回顾模块 */
.quick-review {
  margin-bottom: 30px;
  border: 1px solid #E8ECEF;
  border-radius: 4px;
  overflow: hidden;
}
.review-header {
  background-color: #0A3D91;
  color: #FFFFFF;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.review-header span {
  font-weight: 600;
}
.review-header i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.quick-review.active .review-header i {
  transform: rotate(180deg);
}
.review-body {
  padding: 15px;
  background-color: #F5F7FA;
  color: #666666;
  font-size: 14px;
  display: none;
}
.quick-review.active .review-body {
  display: block;
}

/* 新闻正文（兼容富文本） */
.news-body {
  margin-bottom: 30px;
  color: #555555;
  line-height: 1.8;
  font-size: 15px;
}
.news-body img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
  border-radius: 4px;
}
.news-body p {
  margin-bottom: 15px;
}
.news-body ul, .news-body ol {
  margin: 15px 0 15px 20px;
}
.news-body ul li, .news-body ol li {
  margin-bottom: 8px;
}

/* 分享+分类 */
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #E8ECEF;
}
.share-icons a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #E8ECEF;
  color: #666666;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  margin-right: 8px;
  transition: all 0.3s ease;
}
.share-icons a:hover {
  background-color: #165DFF;
  color: #FFFFFF;
}
.news-category {
  font-size: 14px;
  color: #666666;
}
.news-category a {
  color: #165DFF;
  text-decoration: none;
}
.news-category a:hover {
  text-decoration: underline;
}


.newsdet .news-meta{ display:block;}
.newsdet .share-icons{ margin-bottom:1rem;}

.newsdet .recommends-section{ padding:3rem 0 0;}
.newsdet .news-section{ padding:3rem 0;}

/* 右侧悬浮留言板 */
.news-sidebar {
  width: 100%;
  position: sticky;
  top: 20px;
}
.sidebar-search {
  position: relative;
  margin-bottom: 20px;
}
.sidebar-search input {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 1px solid #E8ECEF;
  border-radius: 4px;
  font-size: 14px;
}
.sidebar-search button {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666666;
  cursor: pointer;
}

/* 留言表单 */
.sidebar-form {
  background-color: #F5F7FA;
  padding: 20px;
  border-radius: 4px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #E8ECEF;
  border-radius: 4px;
  font-size: 14px;
  background-color: #FFFFFF;
}
.form-group textarea {
  resize: vertical;
}
.form-btn {
  width: 100%;
  padding: 12px 0;
  background-color: #165DFF;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.form-btn:hover {
  background-color: #0E42D2;
}

/* 响应式适配 */
@media (max-width: 992px) {
  .news-detail-wrap {
    grid-template-columns: 1fr;
  }
  .news-sidebar {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .news-title {
    font-size: 22px;
  }
  .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .aboutpage .services-grid{grid-template-columns:repeat(1, 1fr);}
  
}


/* 询价引导模块样式 */
.price-request-section {
  padding: 50px 0;
  background-color: #FFFFFF;
}
.price-request-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
}
/* 左侧图片 */
.request-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}
/* 右侧内容 */
.request-title {
  font-size: 28px;
  color: #0A3D91; /* 匹配参考图蓝色标题 */
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 12px;
}
.request-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 3px;
  background-color: #0A3D91;
}
.request-desc {
  font-size: 16px;
  color: #333333;
  margin-bottom: 25px;
  line-height: 1.6;
}
/* 按钮样式 */
.request-buttons {
  display: flex;
  gap: 20px;
}
.btn-request {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0A3D91;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.btn-request:hover {
  background-color: #072C6E;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .price-request-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .request-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .request-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}



/* 复用内页Banner样式，仅调整副标题 */
.about-banner .banner-subtitle {
  color: #FFFFFF;
  font-size: 18px;
  margin-top: 10px;
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}


/* Who we are模块样式 */
.about-intro-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}
.section-title {
  font-size: 28px;
  color: #333333;
  font-weight: 700;
  margin-bottom: 40px;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #165DFF; /* 全局主题色 */
}
.intro-content {
  max-width: 1000px;
  margin: 0 auto;
  color: #555555;
  line-height: 1.8;
  font-size: 15px;
}
.intro-content p {
  margin-bottom: 20px;
}


/* 发展历程数据模块样式 */
.pioneer-section {
  background-color: #FFFFFF;
}
/* 头部标题 */
.pioneer-header {
  padding: 60px 0;
  text-align: center;
}
.pioneer-title {
  font-size: 28px;
  color: #333333;
  font-weight: 700;
  margin-bottom: 15px;
}
.pioneer-desc {
  font-size: 15px;
  color: #999999;
  max-width: 1000px;
  margin: 0 auto;
}

/* 数据卡片层（背景图+半透明遮罩） */
.pioneer-stats {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* 降低背景图亮度，突出前景文字 */
}
/* 数据列表（居中+叠加） */
.stats-list {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
}
/* 单个数据项 */
.stats-item {
  padding: 0 20px;
}
.stats-item i {
  font-size: 36px;
  margin-bottom: 15px;
  opacity: 0.9;
}
.stats-value {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.stats-label {
  font-size: 14px;
  opacity: 0.8;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .pioneer-stats {
    height: auto;
    padding: 40px 0;
  }
  .stats-list {
    flex-wrap: wrap;
    gap: 30px;
  }
  .pioneer-title {
    font-size: 24px;
  }
}

/* 经销商信任优势模块样式（延续全局主题色/间距） */
.trust-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}
.trust-title {
  font-size: 28px;
  color: #333333;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.trust-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #165DFF; /* 全局统一主题色 */
}

/* 优势项容器（统一间距） */
.trust-list {
  margin: 0 auto;
}
.trust-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
/* 反向布局（仅第二项） */
.trust-item.trust-reverse {
  grid-template-columns: 1fr 1fr;
}

/* 文字内容区（延续全局文本样式） */
.trust-content {
  padding: 0 20px;
}
.trust-subtitle {
  font-size: 22px;
  color: #333333;
  font-weight: 600;
  margin-bottom: 15px;
}
.trust-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.8; /* 与新闻内容页文本行高一致 */
}

/* 图片区（统一圆角/阴影） */
.trust-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* 轻量化阴影，延续全局风格 */
}

/* 响应式适配（小屏幕单列） */
@media (max-width: 768px) {
  .trust-item,
  .trust-item.trust-reverse {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  .trust-title {
    font-size: 24px; /* 与联系页标题尺寸一致 */
  }
  .trust-subtitle {
    font-size: 20px;
  }
  .trust-img img {
    height: 250px; /* 小屏幕图片高度适配 */
  }
}


/* 经销商优势模块样式 */
.distributor-adv-section {
  padding: 60px 0;
  background-color: #F9FAFB; /* 浅灰背景区分模块 */
}
.section-subtitle {
  font-size: 15px;
  color: #999999;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  text-align: center;
}
.advantage-item {
  padding: 25px 20px;
}
.advantage-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background-color: #F0F5FF; /* 主题色浅背景 */
  color: #0a3d91;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.advantage-desc {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}


/* 出口服务模块样式 */
.export-services-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}
.section-main-title {
  font-size: 28px;
  color: #333333;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
.services-grid {
  display: grid;
  gap: 30px;
  margin: 0 auto;
  text-align: center;
}
.service-item {
  padding: 30px 20px;
}
.service-icon {
  font-size: 36px;
  color: #165DFF; /* 全局主题色 */
  margin-bottom: 20px;
}
.service-title {
  font-size: 18px;
  color: #333333;
  font-weight: 600;
  margin-bottom: 15px;
}
.service-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .section-main-title {
    font-size: 24px;
  }
}


/* 成功交易数据模块样式 */
.success-deals-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}
.deals-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 0 auto;
}
/* 左侧图片 */
.deals-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
/* 右侧数据区域 */
.stats-title {
  font-size: 28px;
  color: #333333;
  font-weight: 700;
  margin-bottom: 30px;
}
/* 进度条容器 */
.progress-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.progress-item {
  width: 100%;
}
.progress-label {
  font-size: 15px;
  color: #555555;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
/* 进度条外框 */
.progress-bar-wrap {
  width: 100%;
  height: 12px;
  background-color: #E8ECEF;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
/* 进度条（默认宽度0，JS控制动画） */
.progress-bar {
  height: 100%;
  background-color: #0A3D91; /* 参考图深蓝色 */
  border-radius: 6px;
  width: 0;
  transition: width 1.5s ease-in-out;
}
/* 百分比文本（定位在进度条上） */
.progress-percent {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #FFFFFF;
  font-weight: 600;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .deals-wrap {
    grid-template-columns: 1fr;
  }
  .stats-title {
    font-size: 24px;
    margin-top: 20px;
  }
  .deals-img img {
    height: 300px;
  }
}



/* 全局样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 公司展示模块样式 */
.company-display-section {
  width: 100%;
  background-color: #FFFFFF;
}

/* 顶部标题栏 */
.display-header {
  width: 100%;
  padding: 60px 0;
  background-color: #F8FAFC;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.display-title {
  font-size: 32px;
  color: #94A3B8;
  font-weight: 500;
}
.display-desc {
  flex: 1;
  max-width: 700px;
}
.display-desc p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 15px;
}
.btn-contact {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0A3D91;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.btn-contact:hover {
  background-color: #072C6E;
}

/* 全屏轮播区核心样式 */
.display-carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.carousel-wrap {
  width: 100%;
  height: 450px; /* 轮播图高度 */
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}
/* 轮播轨道（横向排列） */
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out; /* 切换动画 */
  gap: 15px; /* 图片之间的间距 */
}
/* 轮播项（大屏显示3张，计算宽度） */
.carousel-item {
  width: calc((100% - 30px) / 3); /* 3张图 + 2个间距(15px)，总宽度100% */
  height: 100%;
  flex-shrink: 0;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 铺满且保持比例 */
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* 左右切换按钮 */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgba(10, 61, 145, 0.7);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.carousel-btn:hover {
  background-color: #0A3D91;
}
.prev-btn {
  left: 10px;
}
.next-btn {
  right: 10px;
}

/* 轮播指示器 */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.indicator.active {
  background-color: #FFFFFF;
}

/* 响应式适配 */
/* 中屏：显示2张 */
@media (max-width: 992px) {
  .carousel-item {
    width: calc((100% - 15px) / 2);
  }
  .carousel-wrap {
    height: 400px;
  }
}

/* 小屏：显示1张 */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  .display-title {
    font-size: 26px;
  }
  .carousel-item {
    width: 100%;
  }
  .carousel-wrap {
    height: 300px;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}


/* 仅修复轮播模块全屏无留白 */
.display-carousel {
  width: 100vw !important; /* 强制占满视口宽度 */
  position: relative;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  left: 50%;
  transform: translateX(-50%); /* 解决vw可能的偏移问题 */
}
.carousel-wrap {
  width: 100% !important;
  height: 450px;
  position: relative;
  overflow: hidden;
  padding: 0 !important; /* 彻底清除内边距 */
  margin: 0 !important;
}
.carousel-track {
  display: flex;
  width: 100% !important;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  gap: 0; /* 图片间距可根据需求调整，如需保留间距则：
             gap: 10px; 
             同时修改carousel-item宽度为 calc((100% - 20px) / 3)
           */
}
/* 大屏显示3张，无留白 */
.carousel-item {
  width: calc(100% / 3) !important; /* 3张均分100%宽度 */
  height: 100%;
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0 !important;
}
.carousel-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block; /* 清除图片默认行高留白 */
}

/* 响应式适配（仅调整宽度，保持无留白） */
@media (max-width: 992px) {
  .carousel-item {
    width: calc(100% / 2) !important; /* 中屏2张 */
  }
}
@media (max-width: 768px) {
  .carousel-item {
    width: 100% !important; /* 小屏1张 */
  }
  .carousel-wrap {
    height: 300px;
  }
}

/* 按钮位置微调（保证在屏幕内） */
.carousel-btn.prev-btn {
  left: 15px !important;
}
.carousel-btn.next-btn {
  right: 15px !important;
}



/* 联系表单模块样式 */
.contact-form-section {
  padding: 80px 0;
  background-color: #F8FAFC; /* 浅灰背景区分模块 */
}
.form-title {
  font-size: 28px;
  color: #333333;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.form-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #165DFF; /* 全局主题色 */
}
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
/* 表单组 */

.message-board-section{ padding:3rem 0;}
.message-board-section .board-title{ margin-bottom:2rem;}

.form-group {
  margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  font-size: 15px;
  color: #333333;
  background-color: #FFFFFF;
  transition: border-color 0.3s ease;
}
/* 输入框聚焦效果 */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #165DFF;
  box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.1);
}
/* 占位符样式 */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94A3B8;
}
/* 提交按钮 */
.form-btn {
  padding: 14px 30px;
  background-color: #165DFF;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-btn:hover {
  background-color: #0E42D2;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(22, 93, 255, 0.2);
}
.form-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(22, 93, 255, 0.15);
}

/* 响应式适配 */
@media (max-width: 768px) {
  .form-title {
    font-size: 24px;
  }
  .form-btn {
    width: 100%;
  }
}




/* 侧边悬浮按钮样式 */
.side-float {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: none;
  font-size: 22px;
}
/* WhatsApp按钮 */
.wa-btn {
  background-color: #25D366;
  text-decoration: none;
}
.wa-btn:hover {
  background-color: #1DA851;
  transform: translateY(-3px);
}
/* 留言按钮 */
.quote-btn {
  background-color: #0A3D91; /* 全局主题色 */
  flex-direction: column;
  font-size: 12px;
  padding: 0;
  text-align: center;
}
.quote-btn i {
  font-size: 20px;
  margin-bottom: 4px;
}
.quote-btn:hover {
  background-color: #072C6E;
  transform: translateY(-3px);
}

/* 弹窗表单样式 - 关键修复：确保弹窗可正常显示并居中 */
.quote-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw; /* 修复宽度：确保覆盖整个视口 */
  height: 100vh; /* 修复高度：确保覆盖整个视口 */
  background-color: rgba(0,0,0,0.5);
  z-index: 1000; /* 确保层级高于悬浮按钮 */
  display: none; /* 默认隐藏 */
  align-items: center;
  justify-content: center;
  overflow: hidden; /* 防止滚动穿透 */
}
.modal-content {
  background-color: #fff;
  width: 100%;
  max-width: 400px;
  padding: 30px 25px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transform: translateY(0); /* 初始位置，可添加动画 */
  transition: transform 0.3s ease;
}
.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  /* 修复：添加点击区域，避免点击不到 */
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-modal:hover {
  color: #000;
}
.modal-content h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}
.modal-form .form-group {
  margin-bottom: 15px;
}
.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
  box-sizing: border-box; /* 修复：防止输入框溢出 */
}
.modal-form input:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: #0A3D91;
}
.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #0A3D91;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.submit-btn:hover {
  background-color: #072C6E;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .side-float {
    right: 15px;
    bottom: 30px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  .quote-btn i {
    font-size: 18px;
  }
  .modal-content {
    max-width: 90%;
    padding: 25px 20px;
  }
}














