/* ==============================
   服务支持 Banner 头部样式
============================== */
.service-banner {
  width: 100%;
  /* 图片背景设置 */
  background: url("/template/white/css/img/banner/service_banner.jpg") no-repeat center center;
  background-size: cover;
  padding: 150px 0;
  color: #000;
  font-family: "Microsoft YaHei", Arial, sans-serif;
  box-sizing: border-box;
}


/* 主标题 */
.service-banner .main-title h1 {
  margin: 0;
  padding: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  /* 移除自带的 d-flex / my-4 冲突 */
  display: block !important;
  margin-bottom: 16px !important;
  flex-grow: initial !important;
}

/* 描述文字 */
.service-banner .main-title-desc {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  max-width: 800px;
}

/* ==============================
   响应式适配（手机/平板友好）
============================== */

@media (max-width: 768px) {
  .service-banner {
    padding: 35px 0;
    text-align: center;
  }
  .service-banner .main-title h1 {
    font-size: 28px;
    justify-content: center;
  }
  .service-banner .main-title-desc {
    margin: 0 auto;
  }
}
/* ==============================
   服务支持模块整体样式
============================== */
.cloud-support {
  width: 100%;
  padding: 60px 0;
  background-color: #f8f9fa;
  font-family: "Microsoft YaHei", Arial, sans-serif;
}

.cloud-support .container {
  margin: 0 auto;
  box-sizing: border-box;
}





/* 服务支持模块整体样式 */
.cloud-support {
  padding: 60px 0;
  background-color: #f7f9fc;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

/* 选项卡导航 */
.cloud-support .support-stype {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid #e5e9f2;
}

.cloud-support .support-stype li {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  bottom: -1px;
}

.cloud-support .support-stype li:hover {
  color: #165dff;
  border-color: #d0e0ff;
  background-color: #f5f8ff;
}

.cloud-support .support-stype li.active {
  color: #165dff;
  font-weight: 600;
  border-bottom: 2px solid #165dff;
  background-color: #fff;
  border-color: #165dff;
}

/* 内容区域 */
.cloud-support .support-body {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 30, 80, 0.06);
}

/* 内容卡片默认隐藏 */
.cloud-support .support-info {
  display: none;
  animation: fadeIn 0.35s ease forwards;
}

.cloud-support .support-info[style*="block"] {
  display: block !important;
}

/* 淡入动画 */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 标题样式 */
.cloud-support .support-info h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1d2129;
  margin: 30px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f2f5;
}

.cloud-support .support-info h2:first-child {
  margin-top: 0;
}

.cloud-support .support-info h4 {
  font-size: 16px;
  color: #4e5969;
  line-height: 1.7;
  font-weight: 400;
  margin: 0 0 24px;
}

/* 段落样式 */
.cloud-support .support-info p {
  font-size: 15px;
  color: #4e5969;
  line-height: 1.8;
  margin: 0 0 12px;
  padding-left: 20px;
  position: relative;
}

.cloud-support .support-info p::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: #165dff;
  font-weight: bold;
}

/* 步骤容器 */
.cloud-support .support-steps {
  min-height: 20px;
  margin: 16px 0 28px;
}
.support-detail1 .support-steps {
    margin: 30px 0 0;
    width: 770px;
    height: 62px;
    background: url(img/cloud/process1.png) left top no-repeat;
}

.support-detail2 .support-steps {
    margin: 30px 0 0;
    width: 771px;
    height: 85px;
    background: url(img/cloud/process2.png) left top no-repeat;
}


.support-detail3 .support-steps {
    margin: 30px 0 0;
    width: 771px;
    height: 62px;
    background: url(img/cloud/process3.png) left top no-repeat;
}

.support-detail4 .support-steps {
    margin: 30px 0 0;
    width: 771px;
    height: 85px;
    background: url(img/cloud/process4.png) left top no-repeat;
}

.support-detail5 .support-steps {
    margin: 30px 0 0;
    width: 771px;
    height: 85px;
    background: url(img/cloud/process5.png) left top no-repeat;
}


/* 移动端适配 */
@media (max-width: 768px) {
  .cloud-support {
    padding: 40px 0;
  }

  .cloud-support .support-stype {
    gap: 8px;
  }

  .cloud-support .support-stype li {
    padding: 10px 16px;
    font-size: 14px;
  }

  .cloud-support .support-body {
    padding: 24px;
  }

  .cloud-support .support-info h2 {
    font-size: 19px;
  }
}