﻿/* ============================================================
   GAIA FORUM 2026 二级页面（发言实录）样式 · 1920x2891 设计稿
   ============================================================ */

/* ---------------- 首屏 Banner ---------------- */
.s-hero {
  position: relative;
  width: 1920px;
  height: 779px;
  background: #0A2141;
  overflow: hidden;
}

.s-hero-bg {
  position: absolute;
  left: -37px;
  top: -364px;
  width: 2037px;
  height: 1145px;
  max-width: none;
  object-fit: cover;
}

.s-hero-title {
  position: absolute;
  left: 0;
  top: 212px;
  width: 1920px;
  text-align: center;
  font-size: 43px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--gold-soft);
}

.s-hero-cn {
  position: absolute;
  left: 0;
  top: 323px;
  width: 1920px;
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
}

.s-hero-en {
  position: absolute;
  left: 0;
  top: 393px;
  width: 1920px;
  text-align: center;
  font-size: 14px;
  letter-spacing: .32em;
  color: #fff;
}

.s-hero-arrow {
  position: absolute;
  top: 416px;
  width: 30px;
  height: 53px;
  opacity: .92;
  transition: opacity .25s, transform .25s;
}

.s-hero-arrow:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.s-hero-arrow-left {
  left: 128px;
}

.s-hero-arrow-right {
  right: 128px;
}

.s-hero-arrow img {
  width: 30px;
  height: 53px;
}

.s-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.s-hero-dots .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}

.s-hero-dots .dot.active {
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .25);
  transform: scale(1.15);
}

/* ---------------- 面包屑 ---------------- */
.s-breadcrumb {
  position: relative;
  width: 1920px;
  height: 71px;
  background: #F5F1F5;
  margin-top: 0;
}

.s-breadcrumb span {
  position: absolute;
  left: 267px;
  top: 25px;
  font-size: 14px;
  letter-spacing: .04em;
  color: #7B7A7A;
}

/* ---------------- 主体 ---------------- */
.s-body {
  position: relative;
  width: 1920px;
  height: 1344px;
  margin-top: 122px;
  /* 面包屑(850) 到正文(972) 的间距 */
}

/* 目录 */

.s-toc .toc-thumb::after {
  display: none;
}

.s-toc .toc-thumb {
  border-radius: 0;
}

/* 文章 */
.s-article {
  /* position: absolute; */
  left: 650px;
  top: 1px;
  width: 1013px;
  float: right;
}

.art-head {
  position: relative;
}

.art-head .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.art-theme {
  flex: 1;
  min-width: 0;
  margin-top: 0;
}

.art-author {
  margin-top: 0;
  font-size: 25px;
}

.art-role {
  font-size: 20px;
}

.art-line {}

.art-share {
  margin-top: 0;
  margin-left: 20px;
}

.share-ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E3E7EF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow .25s, transform .25s;
}

.share-ic:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(9, 33, 65, .14);
}

.art-lang {
  width: 128px;
  height: 40px;
  border-radius: 20px;
  background: var(--gold);
  display: flex;
  align-items: center;
  padding: 5px;
  cursor: pointer;
}

.art-lang .lang-zh,
.art-lang .lang-en {
  width: 58px;
  height: 30px;
  border-radius: 14px;
  font-family: AlibabaPuHuiTiR;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-lang .lang-zh {
  background: var(--navy-2);
  color: var(--gold-soft);
}

.art-lang .lang-en {
  color: var(--navy-2);
}

.art-lang.en .lang-zh {
  background: transparent;
  color: var(--navy-2);
}

.art-lang.en .lang-en {
  background: var(--navy-2);
  color: var(--gold-soft);
}

.art-body {
  width: 100%;
  font-size: 14px;
  line-height: 1.9;
  color: #666;
  margin-top: 60px;
}

.art-body strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #666;
}

.art-body p {
  margin-bottom: 30px;
  text-align: justify;
}