/* ===== 顶部 Banner 区域 ===== */
.banner-section {
  width: 100%;
  /* 移除固定高度，使用 padding-top 保持比例 */
  position: relative;
  overflow: hidden;
}

.banner-section1 {
  width: 100%;
  /* 移除固定高度，使用 padding-top 保持比例 */
  position: relative;
  overflow: hidden;
}

/* 使用比例盒子方法，让高度随宽度等比例缩放 */
.banner-section::before {
  content: "";
  display: block;
  padding-top: 39.06%; /* 高度/宽度 = 750/1920 ≈ 0.3906 */
}

.banner-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 保持图片比例填充容器 */
  display: block;
}

/* ===== 移动端自适应 ===== */
@media (max-width: 768px) {
  .banner-section::before {
    padding-top: 39.06%; /* 保持比例 */
  }
}
/* ===== 公有云优势模块 ===== */
.cloud-advantages-section {
  width: 100%; /* 宽度100% */
  min-height: 600px; /* 可根据需求设置最小高度 */
  background: url("../imges/cloud-bg.jpg"); /* 背景图路径 */
  background-repeat: no-repeat;  /* 不重复 */
  background-position: center;   /* 居中显示 */
  background-size: cover;        /* 等比例拉伸覆盖整个容器 */
  padding: 60px 0 80px;         /* 上下内边距 */
  box-sizing: border-box;
}

.cloud-advantages-section1 {
  width: 100%; /* 宽度100% */
  min-height: 600px; /* 可根据需求设置最小高度 */
  background-repeat: no-repeat;  /* 不重复 */
  background-position: center;   /* 居中显示 */
  background-size: cover;        /* 等比例拉伸覆盖整个容器 */
  padding: 60px 0 80px;         /* 上下内边距 */
  box-sizing: border-box;
}

/* 内部小容器，宽度1200px居中 */
.cloud-advantages-container {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* 大标题 */
.cloud-advantages-title {
  font-size: 36px;
  font-weight: 700;
  color: #233863;
  margin-bottom: 60px;
}

/* 4列网格 */
.cloud-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* 卡片样式 */
.advantage-card {
  background: #fff;
  padding: 40px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}

/* 卡片内图片 */
.advantage-card img {
  width: 180px;
  height: 145px;
  margin-bottom: 16px;
}

/* 卡片标题 */
.advantage-card .card-title {
  font-size: 18px;
  font-weight: 700;
  color: #233863;
  margin-bottom: 12px;
}

/* 卡片描述 */
.advantage-card .card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 卡片悬停效果 */
.advantage-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* ===== 移动端自适应 ===== */
@media (max-width: 768px) {
  .cloud-advantages-container {
    width: 100%;
    padding: 0 20px;
  }

  .cloud-advantages-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .cloud-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .advantage-card img {
    width: 60px;
    height: 60px;
  }

  .advantage-card .card-title {
    font-size: 16px;
  }

  .advantage-card .card-desc {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .cloud-advantages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* ===============================
   企业办公场景赋能 - 外层容器
   =============================== */
.office-scene-section {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;

  /* 背景图片（等比例缩放） */
  background: url("./images/office-bg.jpg") no-repeat center;
  background-size: cover;

  padding: 30px 0 80px;
  box-sizing: border-box;
}

/* ===============================
   内部 1200px 容器
   =============================== */
.office-scene-container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ===============================
   大标题
   =============================== */
.office-scene-title {
  margin-top: 60px;
  margin-bottom: 60px;
  font-size: 32px;
  font-weight: bold;
  color: #233863;
}

/* ===============================
   三列卡片布局
   =============================== */
.office-scene-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* ===============================
   单个卡片
   =============================== */
.office-scene-item {
  flex: 1;
  background: #ffffff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;

  /* 默认阴影 */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* 鼠标悬停阴影变化 */
.office-scene-item:hover {
  box-shadow: 0 12px 30px rgba(35, 56, 99, 0.1);
  transform: translateY(-2px);
}

/* 卡片图片 */
.office-scene-item img {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

/* 描述文字（灰色） */
.scene-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

/* 标题文字（蓝色加粗） */
.scene-title {
  font-size: 18px;
  font-weight: bold;
  color: #233863;
}

/* ===============================
   移动端适配
   =============================== */
@media (max-width: 768px) {
  .office-scene-list {
    flex-direction: column;
  }

  .office-scene-item {
    margin-bottom: 20px;
  }

  .office-scene-title {
    font-size: 26px;
  }
}
/* ===============================
   定制化方案 - 外层容器
   =============================== */
.custom-solution-section {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px 0 80px;
  box-sizing: border-box;
}

/* ===============================
   内部 1200px 容器
   =============================== */
.custom-solution-container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ===============================
   大标题
   =============================== */
.custom-solution-title {
  margin-top: 00px;
  margin-bottom: 60px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #233863;
}

/* ===============================
   单行方案布局
   =============================== */
.solution-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* 反向布局（div2 使用） */
.solution-row.reverse {
  flex-direction: row-reverse;
}

/* ===============================
   图片区域
   =============================== */
.solution-img {
  flex: 1;
  text-align: center;
}

.solution-img img {
  max-width: 100%;
  height: auto;
}
.solution-img1 {
  flex: 1;
  text-align: left;
}

.solution-img1 img {
  max-width: 100%;
  height: auto;
}
/* ===============================
   文案区域
   =============================== */
.solution-text {
  flex: 1;
}

/* 标题（蓝色加粗） */
.solution-name {
  font-size: 28px;
  font-weight: bold;
  color: #1f6bff;
  margin-bottom: 20px;
}

/* 描述文字 */
.solution-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-right:100px;
}


/* ===============================
   移动端自适应
   =============================== */
@media (max-width: 768px) {
  .solution-row,
  .solution-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .solution-text {
    margin-top: 30px;
  }

  .custom-solution-title {
    font-size: 26px;
  }
}

