:root {
  --news-primary-blue: #001880;
  --news-primary-green: #0AFFAB;
  --news-bg-light: #F1F1F1;
  --news-text-dark: #1a1a1a;
  --news-text-light: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Microsoft YaHei", "Microsoft YaHei UI", sans-serif;
}

body {
  background-color: var(--news-text-light);
  color: var(--news-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}





  /* ====== 布局容器 ====== */
  .cs-layout {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cs-container {
    width: 100%;
    max-width: 1440px; /* 中心区域最大宽度 */
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ====== 1. 顶部导航栏 ====== */
  .cs-header {
    width: 100%;
    height: 80px;
    background-color: rgba(0, 24, 128, 0.1);
    display: flex;
    align-items: center;
  }
  .cs-header-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .cs-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }
  .cs-back-btn:hover {
    opacity: 0.8;
  }
  .cs-back-icon {
    width: 11px;
    height: 20px;
    object-fit: contain;
  }
  .cs-back-text {
    font-size: 18px;
    color: #001880;
  }



/* =========================================
 第二部分：合作 (Cooperation)
 ========================================= */
.news-coop-section {
  background-color: var(--news-bg-light);
  position: relative;
}

.news-coop-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 20px;
}

.news-slider-arrows {
  display: flex;
  gap: 15px;
}

.news-slider-arrows img {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.news-slider-arrows img:hover {
  opacity: 0.7;
}

.news-coop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.news-coop-card {
  width: calc(33.333% - 20px);
  min-width: 300px;
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  color: var(--news-text-dark);
  transition: all 0.3s;
}

.actSwiper  .news-coop-card {
     width: 100%;
}
.news-container .actSwiper{
  overflow: visible;
}

/* 深蓝高亮卡片 */
.news-coop-card.active,
.news-coop-card:hover {
  background-color: var(--news-primary-blue);
  color: var(--news-text-light);
  border-color: var(--news-primary-blue);
}

.date2 {
  display: none;
}

.news-coop-card.active .date2,
.news-coop-card:hover .date2 {
  display: block;
}

.news-coop-card.active .date1,
.news-coop-card:hover .date1 {
  display: none;
}

.news-coop-date {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
}

.news-coop-date img {
  width: 20px;
  height: 20px;
}

.news-coop-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 40px;
  margin-top: 20px;
  text-align: left;
}

.news-coop-footer {
  background: transparent;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 50%;
}

.news-coop-card.active .news-coop-footer,
.news-coop-card:hover .news-coop-footer {

  background: #0AFFAB;
}

.news-coop-footer img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.news-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.news-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
}

.news-dot.active {
  background-color: var(--news-primary-blue);
}

/* =========================================
 第三部分：活动 (Events)
 ========================================= */
.news-events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: left;
}

.news-event-card {
  width: calc(33.3% - 30px);
  min-width: 320px;
  display: flex;
  flex-direction: column;
}

.news-event-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 20px;
  object-fit: cover;
}

.news-event-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
}

.news-event-card:hover{
  background-color: var(--news-primary-blue);
  color: var(--news-text-light);
  border-color: var(--news-primary-blue);
  border-radius: 20px;
}

.news-event-card:hover .news-event-title{
  color:#fff;
}

.news-event-card:hover .news-event-date-wrap{
  color:#fff;
}

.news-event-card:hover .news-event-date-wrap img{
  background: #0AFFAB;
}

.news-event-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--news-text-dark);
  text-align: left;
  flex: 1;
  /*padding-right: 50px;*/
}

.news-event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.news-event-date-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #666;
}

.news-event-date-wrap img {
  width: 20px;
  height: 20px;
}

.news-event-arrow {
  background: transparent;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 30px;
}

.news-event-card:hover .news-event-arrow {
  background: #0AFFAB;
}

.news-event-arrow img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}



.news-container .swiper-pagination1 .swiper-pagination-bullet{
  background: #001880;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .news-coop-card {
      width: calc(50% - 15px);
  }

  .news-event-card {
      width: 100%;
  }
}

@media (max-width: 768px) {
  .news-coop-card {
      width: 100%;
  }

  .news-section-title {
      font-size: 36px;
      text-align: center;
  }

  .news-coop-top {
      justify-content: center;
      flex-direction: column;
  }

  .news-banner-title {
      font-size: 28px;
  }

  .news-tab {
      font-size: 20px;
      padding: 10px 30px;
  }
}

.post-content{
  
  word-break: break-word;
  word-wrap: break-word;
  max-width: 1195px;
}
.shareicons{
  position: fixed;
  top: 40%;
  right: 100px;
  z-index: 999;
}

/* 外层包裹区，实现整体水平居中 */
.fx-box-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}

/* 核心内容容器，中心最大宽度 1440px */
.fx-box-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* 默认让内部元素水平居中 */
  width: 100%;
  max-width: 1440px;
  padding: 40px 20px; 
  gap: 40px; /* 控制各个区块之间的默认间距 */
}

/* 日期文本：按原版设计在左侧靠上的位置 */
.fx-box-date {
  align-self: flex-start; 
  color: rgb(0, 24, 128);
  font-size: 14px;
  margin-bottom: -20px; /* 微调日期和标题之间的间距 */
  padding-left: calc((100% - 1195px) / 2); /* 保证与主体文字左对齐对齐 */
}

/* 标题样式 */
.fx-box-title {
  width: 100%;
  max-width: 1195px;
  color: rgb(0, 24, 128);
  font-size: 48px;
  line-height: 1.2;
  word-wrap: break-word;
  word-break: break-word;
  text-align: left; /* 根据原版，标题为左对齐偏中 */
}

/* 段落正文容器样式 */
.fx-box-paragraph {
  width: 100%;
  max-width: 1195px;
  font-size: 18px;
  line-height: 31.5px;
  color: #000;
  white-space: pre-wrap;
  word-break: break-word;
  word-wrap: break-word;
}

/* 图片包裹容器，限制图片的最大尺寸，并使其居中展示 */
.fx-box-image-wrapper {
  width: 100%;
  max-width: 510px; /* 原图中设定的容器宽度 */
  display: flex;
  justify-content: center;
  margin: 20px 0; /* 增加上下留白 */
}

.fx-box-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* 响应式适配：在移动端调整字体大小和间距 */
@media (max-width: 768px) {
  .fx-box-container {
      padding: 20px 15px;
      gap: 24px;
  }
  .fx-box-date {
      padding-left: 0;
  }
  .fx-box-title {
      font-size: 32px;
  }
  .fx-box-paragraph {
      font-size: 16px;
      line-height: 1.6;
  }
}