
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Huawei Sans", 方正兰亭黑简体;

}

/* 基础样式 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-red {
  background-color: #e60012;
  color: white;
  border: 1px solid #e60012;
}

.btn-red:hover {
  background-color: #c00010;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-white {
  background-color: white;
  color: #333;
  border: 1px solid #ddd;
}

.btn-white:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  /*color: #666;*/
  max-width: 700px;
  margin: 0 auto;
}

/* 独立大标题样式 */
.main-title {
  text-align: center;
  font-size: 36px;
  color: #333;
  margin-bottom: 15px;
  padding-top: 50px;
}

.main-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 900px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

/* Banner模块 - 去掉箭头，增大指示点 */
.banner {
  position: relative;
  height: 40vh;
  overflow: hidden;
}

.banner-slides {
  height: 100%;
  position: relative;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.banner-slide.active {
  opacity: 1;
  z-index: 1;
}

.banner-content {
  position: absolute;
  top: 20%;
  left: 20%;
  z-index: 2;
  /*padding-left: 10%;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);*/
}

.banner-title {
  font-size: 36px;
  color: #333;
  margin-bottom: 15px;
  max-width: 600px;
}

.banner-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
}

.banner-buttons .btn {
  margin-right: 15px;
}

/* 增大Banner指示点并调整位置 */
.banner-controls {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  display: flex;
  gap: 15px; /* 增加点之间的间距 */
}

.banner-dot {
  width: 16px; /* 增大尺寸 */
  height: 16px; /* 增大尺寸 */
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.banner-dot.active {
  background-color: white;
  transform: scale(1.2);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

/* 移除箭头 */
.banner-arrows {
  display: none;
}

/* 动态新闻 */
.news {
  padding: 30px 0;
  background-color: #f9f9f9;
}

.news-container {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
}

.news-horn {
  width: 40px;
  height: 40px;
  /*background-color: #e60012;*/
  /*border-radius: 50%;*/
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  /*margin-right: 20px;*/
  /*flex-shrink: 0;*/
  color: black;
  font-size: 16px;
}

.news-content {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  height: 40px;
}

.news-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.5s ease;
}

.news-item {
  height: 40px;
  line-height: 40px;
}

.news-item a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

.news-item a:hover {
  color: #e60012;
  text-decoration: underline;
}

.news-more {
  margin-left: 20px;
}

/* 为什么选择合作 */
.why-cooperate {
  padding: 60px 0;
}

.reasons {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.reason-card {
  flex: 1;
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.reason-icon {
  width: 60px;
  height: 60px;
  background-color: #fdebeb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #e60012;
  font-size: 24px;
}

.reason-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.reason-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 合作成长路径 */
.growth-path {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.path-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.path-steps::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 80px;
  right: 80px;
  height: 2px;
  background-color: #e60012;
  z-index: 1;
}

.path-step {
  flex: 1;
  background-color: white;
  border-radius: 8px;
  padding: 60px 20px 30px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.path-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #e60012;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.step-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}

.step-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 选择伙伴发展路径 */
.partner-paths {
  padding: 60px 0;
}

.path-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.path-card {
  flex: 1;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.path-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.path-card-img {
  height: 180px;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
}

.path-card-content {
  padding: 20px;
  flex: 1;
  min-height: 300px;
}

.path-card-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.path-card-desc {
  font-size: 14px;
  /*color: #666;*/
  line-height: 1.6;
  /*margin-bottom: 25px;*/
}

.path-card .btn {
  width: 140px;
  /*margin-left: 30px;*/
}

/* 利用伙伴计划，实现您的业务增长 - 黑字白底样式 */
.business-growth {
  padding: 0 0 50px;
}

.growth-container {
  background: white;
  color: #333;
  border-radius: 12px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.growth-container::before,
.growth-container::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #fdebeb;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.5;
}

.growth-container::before {
  top: -150px;
  right: -150px;
  animation: float 15s infinite ease-in-out;
}

.growth-container::after {
  bottom: -100px;
  left: -100px;
  animation: float 20s infinite ease-in-out 2s;
}

.growth-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-bottom: 40px;
}

.growth-desc {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
}

.growth-btn {
  background-color: #e60012;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.growth-btn:hover {
  background-color: #c00010;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.growth-stats {
  display: flex;
  justify-content: space-around;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 40px;
  font-weight: bold;
  color: #e60012;
  margin-bottom: 10px;
  line-height: 1.2;
}

.stat-label {
  font-size: 16px;
  color: #333;
}

/* 分隔线 */
.divider {
  height: 1px;
  background-color: #eee;
  margin: 30px 0;
}

/* 伙伴故事 - 文字上下居中且轮播 */
.partner-stories {
  padding: 0 0 50px;
  position: relative;
  overflow: hidden;
}

.stories-bg-container {
  height: 33.333vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center; /* 垂直居中 */
}

.stories-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
}

.stories-bg.active {
  opacity: 1;
  z-index: 1;
}

.stories-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0,0,0,0.6);*/
  z-index: 2;
}

.stories-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.stories-title-text {
  font-size: 28px;
  margin-bottom: 15px;
  opacity: 0;

  color:white;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.stories-title-text.active {
  opacity: 1;
  transform: translateY(0);
}

.stories-subtitle-text {
  color:white;
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.2s;
}

.stories-subtitle-text.active {
  opacity: 1;
  transform: translateY(0);
}

.stories-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* 伙伴故事按钮样式 */
.stories-btn {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  width: auto;
  min-width: 160px;
}

.stories-btn.detail {
  background-color: white;
  color: #e60012;
  border: 2px solid white;
}

.stories-btn.more {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.stories-btn:hover {
  opacity: 0.9;
}

.stories-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.stories-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.stories-dot.active {
  background-color: white;
  transform: scale(1.2);
}

/* 动画效果 */
@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* 响应式设计 */
@media (max-width: 992px) {
  .reasons, .path-steps, .path-cards {
    flex-wrap: wrap;
  }

  .reason-card, .path-step, .path-card {
    flex: 1 1 calc(50% - 15px);
  }

  .banner-title {
    font-size: 28px;
  }

  .main-title {
    font-size: 32px;
    padding-top: 40px;
  }
}

@media (max-width: 768px) {
  .reason-card, .path-step, .path-card {
    flex: 1 1 100%;
  }

  .banner {
    height: 50vh;
  }

  .banner-content {
    padding-left: 5%;
    padding-right: 5%;
  }

  .banner-title {
    font-size: 24px;
  }

  .banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .banner-buttons .btn {
    margin-right: 0;
    width: 100%;
  }

  .news-container {
    flex-direction: column;
    gap: 15px;
  }

  .news-horn, .news-more {
    margin: 0;
  }

  .growth-container {
    padding: 30px 20px;
  }

  .growth-content {
    max-width: 100%;
    text-align: center;
  }

  .main-title {
    font-size: 28px;
    padding-top: 30px;
  }

  .stories-btn {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 140px;
  }
}


/*#其他优化*/

.indented-bullet3 {

  text-indent: 2em; /* 正文首行缩进 */
  font-size: 14px;
}
.indented-bullet2 {
  position: relative;
  padding-left: 0.5em;
  text-indent: 2em; /* 正文首行缩进 */
  font-size: 14px;
}
.indented-bullet {
  position: relative;
  padding-left: 1.5em;
  padding-top: 0.5em;
  text-indent: 3em; /* 正文首行缩进 */
  font-size: 14px;
}

.indented-bullet::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.5em;
}
.link-container {
  display: flex;
  /*padding-left: 32px;*/
  padding-bottom: 20px;
  align-items: center; /* 垂直居中对齐 */
  justify-content: center;
  gap: 20px; /* 可选：设置间距 */
}

