/* ===================================
   服务页面通用样式（海外仓配、跨境物流）
   =================================== */

.service-desc-text {
  margin: 20px 0 30px;
  padding: 20px 24px;
  background: #f8faff;
  border-left: 4px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
  line-height: 1.8;
  color: #444;
  font-size: 15px;
}

.service-desc-text p {
  margin: 0;
}

.service-hero {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================
   拓展服务 - 头图切换动画
   =================================== */
.hero-banner-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.expanded-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0s 0.6s;
}

.expanded-hero.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0s 0s;
}

.expanded-hero.show .hero-banner-content h1 {
  animation: fadeInUp 0.6s ease;
}

.expanded-hero.show .hero-banner-content p {
  animation: fadeInUp 0.6s ease 0.15s both;
}

/* 服务导航 */
.service-nav {
  background-color: var(--background-light);
  padding: var(--spacing-md) 0;
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-tabs {
  display: flex;
  gap: var(--spacing-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.service-tab {
  padding: var(--spacing-sm) var(--spacing-lg);
  color: var(--text-primary);
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-tab:hover,
.service-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* 服务区块 */
.service-section {
  padding: var(--spacing-xxl) 0;
  display: none;
}

.service-section.active {
  display: block;
}

/* 全球布局图 */
.global-map-section {
  margin: var(--spacing-xl) 0;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
  margin-bottom: var(--spacing-lg);
}

.global-map-image {
  width: 100%;
  height: auto;
  display: block;
}

.warehouse-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.stat-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: var(--spacing-lg);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.9375rem;
  opacity: 0.9;
}

/* 服务流程（横向卡片） */
.process-steps-horizontal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.process-step-card {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.process-step-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.process-step-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
}

.process-step-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* 服务优势网格 */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.advantage-card {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.advantage-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.advantage-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* 特色服务详情 */
.special-service-detail {
  margin: var(--spacing-xl) 0;
}

.service-detail-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.feature-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid transparent;
}

.feature-box:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  border-bottom-color: var(--primary-color);
}

.feature-box-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.feature-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.service-content {
  max-width: 1400px;
  margin: 0 auto;
}

.service-intro h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.service-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

/* 服务特色 */
.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.feature-item {
  text-align: center;
  padding: var(--spacing-lg);
  background-color: var(--background-light);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.feature-item h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xs);
}

.feature-item p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
}

/* 服务流程 */
.service-process {
  margin-top: var(--spacing-xxl);
  text-align: center;
}

.service-process h3 {
  font-size: 2rem;
  margin-bottom: var(--spacing-xl);
}

/* CTA */
.service-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
}

/* 特色服务网格 */
.special-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.special-card {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.3s ease;
}

.special-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.special-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.special-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.special-card p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  font-size: 0.9375rem;
}

/* 响应式 */
@media (max-width: 1024px) {
  .process-steps-horizontal {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .warehouse-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 260px;
  }

  .hero-banner-wrapper {
      height: 260px;
    }

  .service-intro h2 {
    font-size: 2rem;
  }
  
  .service-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .special-services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps-horizontal {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .service-features {
    grid-template-columns: 1fr;
  }
  
  .process-steps-horizontal {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .warehouse-stats {
    grid-template-columns: 1fr;
  }
  
  .service-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   自定义服务流程（图片还原）
   =================================== */
.logistics-process-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin: 40px 0;
}

.logistics-process {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logistics-process .process-header {
  text-align: center;
  margin-bottom: 50px;
}

.logistics-process .process-header h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 6px;
  font-weight: 700;
}

.logistics-process .process-header p {
  font-size: 14px;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 24px;
  flex-wrap: wrap;
}

.process-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 340px;
  max-width: 380px;
  padding: 28px 24px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
  box-shadow: 0 14px 30px rgba(31, 96, 233, 0.18);
}

.group-items {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 6px;
}

.process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 96px;
  text-align: center;
}

.process-item .icon-circle {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.14);
  transition: all 0.3s ease;
}

.process-item:hover .icon-circle {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.process-item .icon-circle.highlight-icon {
  border: none;
  font-size: 70px;
  color: #e53935;
  background-color: transparent;
}

.process-item .icon-circle.highlight-icon.ship-icon {
  color: var(--primary-color);
}

.process-item:hover .icon-circle.highlight-icon {
  box-shadow: none;
  transform: scale(1.05);
}

.process-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 24px;
}

.group-arrow {
  padding: 0 25px;
}

.group-bracket {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.bracket-line {
  display: none;
}

.bracket-label {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .process-flow {
    flex-wrap: wrap;
    gap: 30px;
  }
  .group-arrow {
    display: none;
  }
  .process-group {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .group-items {
    flex-direction: column;
    align-items: center;
  }
  .process-item {
    width: 100%;
    margin-bottom: 10px;
  }
  .process-arrow {
    height: auto;
    padding: 15px 0;
    transform: rotate(90deg);
  }
  .bracket-line {
    display: none;
  }
  .group-bracket {
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 10px;
  }
}

/* ===================================
   一件代发介绍版块
   =================================== */
.ffm-banner {
  position: relative;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 80px;
}

.ffm-banner-content {
  position: relative;
  z-index: 1;
  text-align: right;
  color: #fff;
}

.ffm-banner-content h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: 2px;
  color: #fff;
}

.ffm-banner-content p {
  font-size: 18px;
  letter-spacing: 1px;
}

.highlight-green {
  /* color: #4caf50; */
}

.ffm-intro-section {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.ffm-intro-image {
  flex: 1;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ffm-intro-image img {
  width: 100%;
  height: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.image-overlay-text {
  text-align: center;
  z-index: 1;
  padding: 80px 0 0;
}

.image-overlay-text h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.image-overlay-text p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  color: #666;
}

.ffm-intro-content {
  flex: 1;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ffm-intro-header {
  text-align: center;
  margin-bottom: 50px;
}

.ffm-intro-header h3 {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 6px;
}

.ffm-intro-header p {
  font-size: 14px;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.ffm-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 20px;
}

.ffm-step-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step-num {
  width: 60px;
  height: 60px;
  background-color: #3f68a8;
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .ffm-banner {
    padding: 0 30px;
    justify-content: center;
    text-align: center;
  }
  .ffm-banner-content {
    text-align: center;
  }
  .ffm-intro-section {
    flex-direction: column;
  }
  .ffm-intro-image img {
    min-height: 300px;
  }
  .ffm-intro-content {
    padding: 20px 0;
  }
}

/* ===================================
   退货处理介绍与流程版块
   =================================== */
.returns-banner {
  position: relative;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.returns-banner-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.returns-banner-content h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: 2px;
  color: #fff;
}

.returns-banner-content p {
  font-size: 18px;
  letter-spacing: 1px;
}

.returns-process-section {
  padding: 40px 0;
}

.returns-process-header {
  text-align: center;
  margin-bottom: 60px;
}

.returns-process-header h3 {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 6px;
}

.returns-process-header p {
  font-size: 14px;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.returns-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.returns-step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.returns-step-num {
  width: 70px;
  height: 70px;
  background-color:  var(--primary-color);
  color: #fff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.returns-step-text {
  flex: 1;
}

.returns-step-text h4 {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: 5px;
}

.returns-step-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===================================
   仓库介绍模块
   =================================== */
.warehouse-info-section {
  margin-top: 60px;
  margin-bottom: 80px;
}

.warehouse-main-title {
  margin-bottom: 50px;
}

.warehouse-main-title h3 {
  font-size: 24px;
  color: #555;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.warehouse-main-title h2 {
  font-size: 32px;
  color:  var(--primary-color);
  font-weight: bold;
}

.warehouse-row {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}

.warehouse-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wh-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.wh-num {
  width: 60px;
  height: 60px;
  background-color:  var(--primary-color);
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 20px;
}

.wh-name {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}

.wh-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.wh-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.wh-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 5px;
}

.wh-text h5 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

.wh-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.wh-images {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.wh-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Layout 1: 1 big left, 2 small right (top/bottom) */
.wh-layout-1 {
  height: 300px;
}
.wh-layout-1 .img-main {
}
.wh-layout-1 .img-sub-1 {
  grid-column: 2;
  grid-row: 1;
}
.wh-layout-1 .img-sub-2 {
  grid-column: 2;
  grid-row: 2;
}

/* Layout 2: 1 big top, 2 small bottom (left/right) */
.wh-layout-2 {
  height: 400px;
}
.wh-layout-2 .img-main {
}
.wh-layout-2 .img-sub-1 {
  grid-column: 1;
  grid-row: 2;
}
.wh-layout-2 .img-sub-2 {
  grid-column: 2;
  grid-row: 2;
}

/* Layout 3: 1 single big image */
.wh-layout-3 {
  grid-template-columns: 1fr;
  height: 300px;
}
.wh-layout-3 .img-main {
  grid-column: 1;
  grid-row: 1;
}

/* Layout 4: 2 images left (top/bottom), 1 tall right */
.wh-layout-4 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 400px;
}
.wh-layout-4 .img-sub-1 {
  grid-column: 1;
  grid-row: 1;
}
.wh-layout-4 .img-sub-2 {
  grid-column: 1;
  grid-row: 2;
}
.wh-layout-4 .img-main {
  grid-column: 2;
  grid-row: 1 / 3;
}

@media (max-width: 992px) {
  .warehouse-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .wh-details-grid {
    grid-template-columns: 1fr;
  }
}

.fba-banner {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  padding: 0 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
}

.fba-banner-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.fba-banner.right-align {
  justify-content: flex-end;
  text-align: right;
}

.fba-banner-content h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: 2px;
  color: #fff;
}

.fba-banner-content p {
  font-size: 18px;
  letter-spacing: 1px;
}

.fba-labels-flow {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.fba-labels-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.fba-label-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  text-align: center;
}

.fba-label-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 15px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.fba-label-icon.filled {
  background-color: var(--primary-color);
  color: #fff;
}

.fba-label-item:hover .fba-label-icon {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.fba-label-item p {
  font-size: 12px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

.fba-label-arrow {
  color: var(--primary-color);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px; /* Align with icons */
  margin-bottom: 30px; /* offset for text below icon */
}

.fba-label-arrow.down {
  margin-bottom: 0;
  height: auto;
  margin-left: auto;
  margin-right: 50px;
}

@media (max-width: 768px) {
  .returns-banner {
    padding: 0 30px;
    justify-content: center;
    text-align: center;
  }
  .returns-process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .fba-banner {
    padding: 0 30px;
    justify-content: center;
    text-align: center;
  }
  .fba-banner.right-align {
    text-align: center;
  }
  .fba-labels-row {
    flex-wrap: wrap;
  }
  .fba-label-arrow.down {
    display: none;
  }
}

/* ===================================
   行内样式迁移：服务流程布局
   =================================== */
.service-section .container--mt-40 {
  margin-top: 40px;
}

.service-section .process-flow-wide {
  max-width: 1440px;
}

.process-item--auto-width {
  width: auto;
  padding: 0 20px;
}

.logistics-process--mt-60 {
  margin-top: 60px;
}

.process-flow--mt-20 {
  margin-top: 20px;
}

/* FBA中转/换标流程头部 */
.process-header--center {
  text-align: center;
  margin-bottom: 60px;
}

.process-header--center h3 {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 6px;
}

.process-header--center p {
  font-size: 14px;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.returns-process-grid--mb-80 {
  margin-bottom: 80px;
}

/* FBA标签图标文字样式 */
.fba-label-icon--fba-text {
  font-size: 18px;
  font-weight: bold;
}

.returns-process-section--mt-40 {
  margin-top: 40px;
}

/* 仓库图片宽度 */
.img-main--full {
  width: 100%;
}

/* 英国仓卡片偏移 */
.warehouse-card--offset-up {
  transform: translateY(230px);
}

/* 占位隐藏卡片 */
.warehouse-card--hidden {
  visibility: hidden;
}

/* 机械组装容器 */
.container--mt-230 {
  margin-top: 230px;
}

/* 全美拆柜提柜容器 */
.container--mt-80 {
  margin-top: 80px;
}

/* 服务列 */
.service-column--flex {
  flex: 1;
}

/* 子版块 */
.sub-section--mb-40 {
  margin-bottom: 40px;
}

.sub-section--mt-40 {
  margin-top: 40px;
}

/* 子版块标题 */
.sub-section-title--center {
  text-align: center;
  margin-bottom: 24px;
}

.sub-section-title--center h4 {
  font-size: 24px;
  color: #1F60E9;
  margin-bottom: 4px;
  font-weight: bold;
}

.sub-section-title--center p {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 业务布局内容 */
.business-layout-content--flex {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* 地图占位 */
.map-placeholder--styled {
  flex: 1;
  background-color: #f0f4f8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* 布局文字 */
.layout-text--styled {
  flex: 1;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
}

.layout-text--styled p {
  margin-bottom: 12px;
}

.layout-text--styled p:last-child {
  margin: 0;
}

/* 列表项容器 */
.list-items--flex {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 列表项 */
.list-item--flex {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* 编号圆 */
.list-item-number {
  background-color: #1F60E9;
  color: white;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
}

/* 列表项文字内容 */
.list-item-text h5 {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 4px 0;
  color: #333;
  padding-top: 2px;
}

.list-item-text p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* ===================================
   海外仓实景展示画廊
   =================================== */
.warehouse-gallery {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ===================================
   Footer 二维码区域
   =================================== */
.footer-ewm-list {
  display: flex;
  align-items: center;
}

.footer-ewm-item {
  margin-right: 20px;
}

.footer-ewm-item:last-child {
  margin-right: 0;
}

.footer-ewm-item img {
  width: 120px;
  height: 120px;
}

.footer-ewm-item p {
  text-align: center;
  font-size: 12px;
  margin-top: 5px;
}

/* ===================================
   响应式：迁移的行内样式
   =================================== */
@media (max-width: 992px) {
  .warehouse-card--offset-up {
    transform: none;
  }

  .container--mt-230 {
    margin-top: 80px;
  }

  .business-layout-content--flex {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .process-header--center h3 {
    font-size: 24px;
  }

  .process-header--center {
    margin-bottom: 40px;
  }

  .container--mt-230 {
    margin-top: 60px;
  }

  .container--mt-80 {
    margin-top: 40px;
  }

  .list-item--flex {
    gap: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .footer-ewm-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-ewm-item {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* ===================================
   FBA转运流程卡片（icon+标题+说明 蓝底白字）
   =================================== */
.fba-process-cards {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 20px;
  width: 100%;
}

.fba-process-card {
  flex: 1;
  min-width: 160px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.fba-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31, 96, 233, 0.3);
}

.fba-process-card + .fba-process-card {
  margin-left: 0;
}

.fba-process-card-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.fba-process-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.fba-process-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

.fba-process-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  color: var(--primary-color);
  font-size: 22px;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .fba-process-cards {
    flex-wrap: wrap;
    gap: 16px;
  }
  .fba-process-card {
    flex: 0 0 calc(33.333% - 12px);
    min-width: 0;
  }
  .fba-process-card-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .fba-process-card {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 576px) {
  .fba-process-card {
    flex: 0 0 100%;
  }
}


