/* 仓储及配送服务页面样式 */
:root {
  --primary-color: #0a3d62; /* 深蓝色主色调 */
  --secondary-color: #e67e22; /* 橙色点缀 */
  --text-color: #333;
  --light-text: #fff;
  --light-bg: #f8f9fa;
  --dark-bg: #1a2a3a;
  --border-radius: 8px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Banner 样式 */
.banner-container {
  position: relative;
  max-height: 100%;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 61, 98, 0.8), rgba(230, 126, 34, 0.6));
  z-index: 1;
}

.banner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--light-text);
  z-index: 2;
  width: 90%;
  max-width: 1000px;
}

.banner-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
}

/* 导航样式 */
.page-navigation {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.breadcrumb-icon {
  margin-right: 10px;
}

.breadcrumb-icon i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../images/home-icon.svg') no-repeat center;
  background-size: contain;
}

.nav-container {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.service-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
}

.service-nav li {
  margin-right: 30px;
}

.service-nav a {
  display: block;
  padding: 8px 0;
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  position: relative;
  white-space: nowrap;
}

.service-nav a.active {
  color: var(--primary-color);
  font-weight: 600;
}

.service-nav a.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

/* 服务介绍部分 */
.service-intro {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.intro-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.intro-text {
  flex: 1;
}

.section-subtitle {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 30px;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(10, 61, 98, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-warehouse {
  background-image: url('../images/icon-warehouse.svg');
}

.icon-security {
  background-image: url('../images/icon-security.svg');
}

.icon-customize {
  background-image: url('../images/icon-customize.svg');
}

.icon-delivery {
  background-image: url('../images/icon-delivery.svg');
}

.icon-warehouse-management {
  background-image: url('../images/icon-warehouse-management.svg');
}

.icon-inventory {
  background-image: url('../images/icon-inventory.svg');
}

.icon-value-added {
  background-image: url('../images/icon-value-added.svg');
}

.icon-fast-delivery {
  background-image: url('../images/icon-fast-delivery.svg');
}

.icon-consultation {
  background-image: url('../images/icon-consultation.svg');
}

.icon-receiving {
  background-image: url('../images/icon-receiving.svg');
}

.icon-storage {
  background-image: url('../images/icon-storage.svg');
}

.icon-picking {
  background-image: url('../images/icon-picking.svg');
}

.icon-accuracy {
  background-image: url('../images/icon-accuracy.svg');
}

.icon-delivery-time {
  background-image: url('../images/icon-delivery-time.svg');
}

.icon-customer {
  background-image: url('../images/icon-customer.svg');
}

.icon-check {
  background-image: url('../images/icon-check.svg');
}

.intro-image {
  flex: 1;
  position: relative;
}

.intro-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background-color: var(--secondary-color);
  color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.badge-number {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.badge-number span {
  font-size: 20px;
}

.badge-text {
  font-size: 14px;
  margin-top: 5px;
}

/* 服务优势部分 */
.service-advantages {
  padding: 80px 0;
  background-color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 15px 0;
}

.section-desc {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.advantage-card {
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(10, 61, 98, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  display: block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.card-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* 服务特色部分 */
.service-features {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.features-container {
  margin-top: 50px;
}

.feature-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 1px solid #e1e1e1;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 20px 15px;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  background-color: #fff;
  border-radius: 8px 8px 0 0;
}

.tab.active {
  border-bottom-color: var(--secondary-color);
  background-color: #fff;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.tab-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(10, 61, 98, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.tab-icon i {
  display: block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.tab h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.tab-content {
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.pane-content {
  display: flex;
  align-items: center;
}

.pane-image {
  flex: 1;
  padding: 30px;
}

.pane-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pane-text {
  flex: 1;
  padding: 30px;
}

.pane-text h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.pane-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 15px;
  color: #555;
}

.feature-list li i {
  display: block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
  flex-shrink: 0;
}

/* 服务流程部分 */
.service-process {
  padding: 80px 0;
  background-color: #fff;
}

.process-container {
  margin-top: 50px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-step {
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  font-weight: 700;
  color: rgba(10, 61, 98, 0.2);
}

.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(10, 61, 98, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon i {
  display: block;
  width: 35px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.process-step p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* 成功案例部分 */
.service-cases {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.case-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-image {
  height: 250px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.case-card:hover .case-image img {
  transform: scale(1.05);
}

.case-content {
  padding: 25px;
}

.case-tag {
  display: inline-block;
  background-color: rgba(10, 61, 98, 0.1);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.case-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.case-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* 数据统计部分 */
.service-data {
  padding: 60px 0;
  background-color: var(--primary-color);
}

.data-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.data-item {
  text-align: center;
  color: var(--light-text);
}

.data-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.data-icon i {
  display: block;
  width: 35px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}

.data-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.data-number span {
  font-size: 20px;
}

.data-text {
  font-size: 16px;
  opacity: 0.8;
}

/* 联系我们部分 */
.service-contact {
  padding: 60px 0;
  background-color: var(--dark-bg);
  color: var(--light-text);
}

.contact-content {
  text-align: center;
}

.contact-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.8);
}

.contact-btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.contact-btn:hover {
  background-color: #d35400;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

/* 响应式样式 */
@media (max-width: 1200px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .data-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .cases-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .intro-content {
    flex-direction: column;
  }
  
  .pane-content {
    flex-direction: column;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .banner-content p {
    font-size: 1.2rem;
  }
  
  .feature-tabs {
    flex-wrap: wrap;
  }
  
  .tab {
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
  .intro-features {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .data-container {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .section-desc {
    font-size: 16px;
  }
  
  .tab {
    flex: 0 0 100%;
  }
} 