/* 通用容器与页面控制 */
.newsTopNav {
  position: absolute;
  top: 0;
  left: calc(50% - 600px);
  height: 150px;
  z-index: 10000;
  background: none;
}
.newsTopNav-box {
  padding-top: 20px;
}
.container_cw {
  max-width: 1920px;
  min-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  background: url(./2026-Colorful-World-banner.jpg) top center no-repeat;
  padding-top: 800px;
  position: relative;
}
.cw-main {
  background: url(./2026-Colorful-World-bg.jpg) top 85px center no-repeat;
  background-size: auto 100%;
}
.cw-container {
  width: 1200px;
  margin: 30px auto 50px;
  box-sizing: border-box;
  position: relative;
}

/* ==================== 模块一：Hero 轮播 + 列表组合 ==================== */
.cw-hero-section {
  width: 1200px;
  margin: 0 auto 40px;
  box-sizing: border-box;
}

.cw-hero-box {
  width: 1200px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.cw-hero-swiper {
  width: 734px;
  height: 437px;
  position: absolute;
  left: 0;
  top: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.cw-hero-swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.cw-hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cw-hero-pagination {
  width: 734px !important;
  position: absolute;
  left: 0 !important;
  bottom: 16px !important;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cw-hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 0.5;
  margin: 0 5px !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cw-hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffffff;
  transform: scale(1.2);
}

.cw-hero-news-list {
  margin: 30px 0 0 55px;
  flex: 1;
  padding: 35px 35px 25px 700px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  background: linear-gradient(180deg, #6885ff 0%, #8877ff 100%);
}

.cw-hero-news-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cw-hero-news-list li {
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}

.cw-hero-news-list li:last-child {
  margin-bottom: 0;
}

.cw-hero-news-list li.active,
.cw-hero-news-list li:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cw-hero-news-list li a {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.5;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.85;
  transition:
    opacity 0.25s ease,
    font-weight 0.25s ease;
}

.cw-hero-news-list li.active a,
.cw-hero-news-list li:hover a {
  opacity: 1;
  font-weight: bold;
}

.cw-hero-more {
  text-align: right;
  margin-top: 45px;
}

.cw-hero-more a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  opacity: 0.9;
  font-weight: 500;
  transition: opacity 0.25s ease;
}

.cw-hero-more a:hover {
  opacity: 1;
  text-decoration: underline;
}

.cw-hero-more-m {
  display: none;
}

/* ==================== 模块二与三：BANLIEUE COLORÉE 主题卡片 ==================== */
.cw-banner-section {
  width: 1200px;
  margin: 0 auto 45px;
  box-sizing: border-box;
}

.cw-section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px auto 50px;
}

.title-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130px;
  background: url(./2026-Colorful-World-titleBg.png);
  background-size: auto 130px;
  background-position: center center;
  background-repeat: no-repeat;
}

.title-bubble span {
  max-width: 340px;
  font-size: 30px;
  font-style: italic;
  font-weight: 800;
  color: #ffffff;
  margin-right: 80px;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(195, 84, 232, 0.7),
    0 0 20px rgba(195, 84, 232, 0.4);
  text-align: center;
}

.cw-banner-card {
  display: block;
  width: 1200px;
  height: 670px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.cw-banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.cw-banner-card:hover img {
  transform: scale(1.02);
}

.cw-banner-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(
    0deg,
    rgba(102, 134, 255, 0.95) 0%,
    rgba(102, 134, 255, 0.65) 50%,
    rgba(102, 134, 255, 0) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 0 32px 20px 32px;
  box-sizing: border-box;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.cw-banner-card:hover .cw-banner-caption {
  opacity: 1;
  transform: translateY(0);
}

.cw-banner-caption span {
  width: 100%;
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==================== 模块四：炫彩时刻 Header 补充 ==================== */
.cw-section-header {
  width: 1200px;
  margin: 60px auto 50px;
  box-sizing: border-box;
  position: relative;
}

.cw-section-header .more-link {
  color: #666666;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.25s;
  position: absolute;
  right: 18px;
  bottom: 0;
}

.cw-section-header .more-link:hover {
  color: #6c82fe;
}

/* 炫彩时刻原有样式 */
.cw-moment-section {
  width: 1200px;
}

.cw-moment-big-swiper {
  width: 1200px;
  height: 670px;
  border-radius: 0;
  border: none;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  margin-bottom: 22px;
}

.cw-moment-big-swiper .moment-big-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.cw-moment-big-swiper .moment-big-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cw-moment-big-swiper:hover .moment-big-link img {
  transform: scale(1.02);
}

.cw-moment-big-swiper .moment-big-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(
    0deg,
    rgba(102, 134, 255, 0.95) 0%,
    rgba(102, 134, 255, 0.65) 50%,
    rgba(102, 134, 255, 0) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 0 32px 20px 32px;
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  z-index: 2;
}

.cw-moment-big-swiper .moment-big-title span {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cw-moment-thumbs-wrap {
  width: 1200px;
  height: 110px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cw-moment-thumbs-container {
  width: 1072px;
  height: 110px;
  overflow: hidden;
}

.cw-moment-thumbs-container .swiper-slide {
  width: 200px;
  height: 110px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: none;
  opacity: 0.65;
}

.cw-moment-thumbs-container .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 8px solid #d6d8fa;
  pointer-events: none;
  transition: all 0.25s;
  z-index: 2;
}

.cw-moment-thumbs-container .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cw-moment-thumbs-container .swiper-slide:hover,
.cw-moment-thumbs-container .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.cw-moment-thumbs-container .swiper-slide:hover::after,
.cw-moment-thumbs-container .swiper-slide.swiper-slide-thumb-active::after {
  border-color: #826dfb;
}

.cw-moment-arrow {
  width: 33px;
  height: 110px;
  background: linear-gradient(180deg, #fbdaf2 0%, #b9ebfb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  z-index: 5;
  border-radius: 0;
  box-shadow: none;
}

.cw-moment-arrow:hover {
  background: linear-gradient(180deg, #f2c7e8 0%, #a4dff5 100%);
}

.cw-moment-arrow::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-radius: 1px;
}

.moment-arrow-prev::after {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.moment-arrow-next::after {
  transform: rotate(45deg);
  margin-right: 4px;
}

/* PC 端隐藏 Hero slide 内部标题 */
.cw-hero-swiper .hero-slide-title {
  display: none;
}

.cw-moment-more {
  display: none;
}

/* ==========================================================================
   移动端媒体查询 (基于 1242px 设计稿, REM 适配)
   ========================================================================== */
@media screen and (max-width: 1024px) {
  body {
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;
  }

  .container_cw {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding-top: 0;
    background: none;
    background-size: 100% auto;
    box-sizing: border-box;
  }

  .cw-main {
    padding-top: 11rem;
    background: url(./2026-Colorful-World-bg-m.jpg) top center #b463f6 no-repeat;
    background-size: 100% auto;
  }

  .cw-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.4rem;
    box-sizing: border-box;
  }

  /* ------------------- 模块一：Hero 轮播 移动端 ------------------- */
  .cw-hero-section {
    width: 100%;
    margin: 0 auto 0.4rem;
  }

  .cw-hero-box {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    background: transparent;
    margin: 0;
  }

  .cw-hero-swiper {
    width: 100%;
    height: auto;
    position: relative;
    left: 0;
    top: 0;
    border-radius: 0.31rem;
    overflow: hidden;
  }

  .cw-hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
  }

  .cw-hero-swiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .cw-hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* 移动端轮播图上的标题遮罩 */
  .cw-hero-swiper .hero-slide-title {
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2rem;
    background: linear-gradient(
      0deg,
      rgba(102, 134, 255, 0.95) 0%,
      rgba(102, 134, 255, 0.5) 60%,
      rgba(102, 134, 255, 0) 100%
    );
    align-items: flex-end;
    padding: 0 0.4rem 0.8rem 0.4rem;
    box-sizing: border-box;
    z-index: 2;
  }

  .cw-hero-swiper .hero-slide-title span {
    width: 100%;
    color: #ffffff;
    font-size: 0.58rem;
    line-height: 1.35;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  /* 指示器 */
  .cw-hero-pagination {
    width: 100% !important;
    left: 0;
    bottom: 0.25rem;
    z-index: 10;
  }

  .cw-hero-pagination .swiper-pagination-bullet {
    width: 0.2rem;
    height: 0.2rem;
    margin: 0 0.1rem;
  }

  /* 隐藏右侧列表 */
  .cw-hero-news-list {
    display: none;
  }

  /* more 按钮 (移动端专用) */
  .cw-hero-more-m {
    display: block;
    text-align: right;
    margin: 0.2rem 0.1rem 0.5rem 0;
  }

  .cw-hero-more-m a {
    color: #ffffff;
    font-size: 0.52rem;
    opacity: 0.9;
    text-decoration: none;
  }

  /* ------------------- 模块二与模块三：专栏卡片 ------------------- */
  .cw-banner-section {
    width: 100%;
    margin: 0 auto 0.5rem;
  }

  .cw-section-title {
    margin-bottom: 0.25rem;
  }

  .title-bubble {
    width: 100%;
    height: 1.68rem;
    background: none;
    background-size: auto 1.68rem;
  }

  .cw-section-header .more-link {
    display: none;
  }

  .title-bubble span {
    max-width: 85%;
    font-size: 0.72rem;
    margin-right: 0;
    text-shadow: none;
  }

  .cw-banner-card {
    width: 100%;
    height: auto;
    border-radius: 0.31rem;
    overflow: hidden;
  }

  .cw-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* 移动端标题常亮显示 */
  .cw-banner-caption {
    opacity: 1;
    transform: translateY(0);
    height: 2rem;
    padding: 0 0.4rem 0.4rem 0.4rem;
  }

  .cw-banner-caption span {
    font-size: 0.58rem;
    line-height: 1.35;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  /* ------------------- 模块四：炫彩时刻 ------------------- */
  .cw-section-header {
    width: 100%;
    margin: 0.4rem auto 0.25rem;
  }

  .cw-moment-section {
    width: 100%;
  }

  .cw-moment-big-swiper {
    width: 100%;
    height: auto;
    border-radius: 0.31rem;
    margin-bottom: 0;
  }

  .cw-moment-big-swiper .moment-big-title {
    height: 2rem;
    padding: 0 0.4rem 0.4rem 0.4rem;
    font-size: 0.58rem;
  }

  .cw-moment-big-swiper .moment-big-title span {
    font-size: 0.58rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .cw-moment-thumbs-wrap {
    width: 100%;
    height: 2rem;
    margin-top: 0.25rem;
    overflow: hidden;
  }

  .cw-moment-thumbs-container {
    width: 100%;
    height: 2rem;
  }

  .cw-moment-thumbs-container .swiper-slide {
    height: 2rem;
    border-radius: 0.15rem;
  }

  .cw-moment-arrow {
    display: none;
  }

  .cw-moment-more {
    display: block;
    text-align: right;
    margin: 0.2rem 0.1rem 0.4rem 0;
  }

  .cw-moment-more a {
    color: #ffffff;
    font-size: 0.52rem;
    opacity: 0.9;
    text-decoration: none;
  }
  .cw-container{
    margin: 0 auto;
  }
  .cw-moment-big-swiper{
    margin-bottom: 0;
  }
}
