/* ========== Banner 区 ========== */
.banner {
  position: relative;
  height: 520px;
  background: url("../img/consolidationSteps.jpg") center/cover no-repeat;
  color: #fff;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.logistics-tracking-banner {
  background: url("../img/logisticsTracking.jpg") center/cover no-repeat;
}
.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
}

.banner-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  color: #fff;
}

/* ========== 步骤条 ========== */
.steps {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.step-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.step-box {
  width: 80px;
  height: 80px;
  background: #ff3b30;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: relative;
}
.step-box:hover {
  background: #fff;
}
.step-box:hover i {
  color: #ff3b30;
}

.step-box i {
  font-size: 36px;
  color: #fff;
}

.step-number {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 22px;
  height: 22px;
  background: #ff6a6a;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text {
  font-size: 14px;
  margin-top: 8px;
  white-space: nowrap;
}

/* ========== 优势区 ========== */
.feature {
  padding: 80px 0;
  background: #fff;
}

.feature-card {
  text-align: center;
  padding: 40px 20px;
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: #eef8e9;
  border-radius: 6px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 36px;
  color: #ff3b30;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.feature-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.logistics-tracking-content {
  text-align: center;
}

.logistics-tracking-title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}
.logistics-tracking-desc {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 48px;
}



.logistics-tracking-btn {
  display: inline-block;
  padding: 12px 32px;
  margin-right: 100px;
  background: #ff3b30;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logistics-tracking-btn:hover {
  background: #e63930;
}

/* 客户按钮样式 */
.customer-btn {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ed5255;
  color: #fff;
  padding: 20px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: all 0.3s ease;
}

.customer-btn:hover {
  background-color: #c83a3d;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.customer-btn i {
  font-size: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .customer-btn {
    right: 20px;
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .customer-btn i {
    font-size: 18px;
  }
}