.aImg,
.aImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.newsTopNav {
  position: absolute;
  top: 0;
  left: calc(50% - 600px);
  height: 150px;
  z-index: 10000;
  background: none;
}
/* 2026 接诉即办第二版 - Main Stylesheet */
.srpc-wrapper {
  max-width: 1920px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.srpc-wrapper-banner {
  width: 100%;
  height: 778px;
  position: relative;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
}
.srpc-container-main {
  padding: 0 0 140px;
  background: url(./JieSuJiBan2026_Two_banner5.jpg) top center no-repeat;
  background-size: cover;
}

.srpc-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* -------------------------------------------------------------
   Top Navigation Tabs (4 Icons)
------------------------------------------------------------- */
.srpc-tabs-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  padding: 80px 0;
}

.srpc-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-bottom: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  user-select: none;
}

.srpc-tab-icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #dbdbdb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 10px;
}
.srpc-tab-text {
  font-size: 40px;
  font-weight: bold;
  color: #dbdbdb;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Tab Hover State */
.srpc-tab-item:hover .srpc-tab-icon {
  transform: translateY(-2px);
}

/* Active Tab State */
.srpc-tab-item.active .srpc-tab-icon {
  background: linear-gradient(180deg, #fa9e0c 0%, #ff3d01 100%);
  box-shadow: 0 8px 20px rgba(249, 87, 0, 0.32);
  transform: translateY(-2px);
}

.srpc-tab-item.active .srpc-tab-text {
  color: #e65c00;
  font-weight: bold;
}

/* Active Underline Indicator */
.srpc-tab-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #ff7a28, #f95700);
  border-radius: 4px;
  animation: tabIndicator 0.3s ease;
}

@keyframes tabIndicator {
  from {
    width: 0%;
    opacity: 0;
  }
  to {
    width: 60%;
    opacity: 1;
  }
}

/* -------------------------------------------------------------
   Tab Panels Visibility & Fade Animation
------------------------------------------------------------- */
.srpc-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.srpc-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------
   Tab 1: About SRPC Content
------------------------------------------------------------- */

/* Top Quote Box & Auto Overflow Scrollbar */
.srpc-intro-card {
  position: relative;
  margin-bottom: 70px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-height: 350px;
}

.srpc-intro-quote {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.8;
  color: #faeee6;
  user-select: none;
  flex-shrink: 0;
  margin-top: -6px;
}
.srpc-intro-card .srpc-intro-quote {
  position: absolute;
  top: 0;
  left: -50px;
  z-index: 1;
}

.srpc-intro-body {
  flex: 1;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 45px;
  font-size: 32px;
  color: rgb(74, 62, 61);
  line-height: 1.406;
  margin-bottom: 12px;
  text-align: justify;
}

.srpc-intro-body::-webkit-scrollbar {
  width: 10px;
}

.srpc-intro-body::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.srpc-intro-body::-webkit-scrollbar-thumb {
  background: #b5c7ea;
  border-radius: 10px;
}

.srpc-intro-text:last-child {
  margin-bottom: 0;
}

/* 4 Core Value Cards Row */
.srpc-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
  position: relative;
}
.srpc-values-grid .srpc-intro-quote {
  position: absolute;
  bottom: -15px;
  right: -50px;
  z-index: 1;
  line-height: 0;
}

.srpc-value-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 22px;
  border: 3px solid #f1f2f6;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  font-size: 24px;
  text-align: justify;
  color: rgb(48, 48, 48);
  transition: all 0.3s ease;
}

.srpc-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.highlight-orange {
  color: #ea580c;
  font-weight: 700;
}

.highlight-teal {
  color: #0d9488;
  font-weight: 700;
}

.highlight-blue {
  color: #2563eb;
  font-weight: 700;
}

/* Middle 2-Column Section */
.srpc-middle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 80px;
}

/* -------------------------------------------------------------
   Governance Models 7-Tab Switch Module
------------------------------------------------------------- */
.srpc-gov-container {
  background: #fff;
  margin-bottom: 70px;
  border-radius: 12px;
  overflow: hidden;
  padding: 65px 35px;
}

.srpc-gov-tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-bottom: 50px;
}

.srpc-gov-tab {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.srpc-gov-tab:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

/* Icons via CSS Class Name */
.srpc-gov-icon {
  width: 60px;
  height: 60px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.srpc-gov-icon.icon-1 {
  background-image: url(./JieSuJiBan2026_Two_icon14.png);
}
.srpc-gov-icon.icon-2 {
  background-image: url(./JieSuJiBan2026_Two_icon15.png);
}
.srpc-gov-icon.icon-3 {
  background-image: url(./JieSuJiBan2026_Two_icon16.png);
}
.srpc-gov-icon.icon-4 {
  background-image: url(./JieSuJiBan2026_Two_icon17.png);
}
.srpc-gov-icon.icon-5 {
  background-image: url(./JieSuJiBan2026_Two_icon18.png);
}
.srpc-gov-icon.icon-6 {
  background-image: url(./JieSuJiBan2026_Two_icon19.png);
}
.srpc-gov-icon.icon-7 {
  background-image: url(./JieSuJiBan2026_Two_icon20.png);
}

.srpc-gov-title {
  font-size: 20px;
  font-weight: 700;
  color: #334155;
  text-align: center;
  line-height: 1.25;
  transition: color 0.3s ease;
}

/* Active State for 7 Tabs */
.srpc-gov-tab.active {
  background: #fff8f2;
  border-color: #ffe4d2;
  box-shadow: 0 6px 18px rgba(249, 87, 0, 0.12);
  transform: translateY(-2px);
}

.srpc-gov-tab.active .srpc-gov-title {
  color: #ea580c;
}

/* Bottom Content Box */
.srpc-gov-content-wrapper {
  background: #fff8ec;
  border-radius: 12px;
  padding: 10px 30px;
}
.srpc-gov-content {
  padding: 0 40px 0 0;
  max-height: 415px;
  overflow-y: auto;
}

.srpc-gov-content::-webkit-scrollbar {
  width: 10px;
}

.srpc-gov-content::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.srpc-gov-content::-webkit-scrollbar-thumb {
  background: #b5c7ea;
  border-radius: 10px;
}

.srpc-gov-box {
  border-radius: 10px;
  padding: 30px 40px;
  max-height: 360px;
  overflow-y: auto;
}

.srpc-gov-box::-webkit-scrollbar {
  width: 10px;
}

.srpc-gov-box::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.srpc-gov-box::-webkit-scrollbar-thumb {
  background: #b5c7ea;
  border-radius: 10px;
}

/* Panel Animations */
.srpc-gov-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 24px;
  color: #333333;
  line-height: 1.6;
  text-align: justify;
  position: relative;
}

.srpc-gov-panel.active {
  display: block;
  opacity: 1;
}

.srpc-gov-desc {
  font-size: 24px;
  color: #333333;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 24px;
}

.srpc-gov-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srpc-gov-bullet {
  font-size: 24px;
  color: #333333;
  line-height: 1.6;
  text-align: justify;
  position: relative;
  padding-left: 20px;
}

.srpc-gov-bullet::before {
  content: "▪";
  position: absolute;
  left: 0;
  top: 0;
  color: #f97316;
  font-size: 24px;
  line-height: 1.6;
}

.gov-item-label {
  font-weight: 700;
  color: #1e293b;
  margin-right: 4px;
}

.srpc-col-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.srpc-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 35px 45px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}
.srpc-card-month {
  background: url(./JieSuJiBan2026_Two_banner6.jpg) left bottom #fff no-repeat;
  background-size: contain;
}
.srpc-card-title {
  font-size: 34px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 22px;
  padding-bottom: 20px;
  position: relative;
  border-bottom: 2px solid #ededed;
}

/* Request Handling Loop Tab Switching */
.srpc-loop-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
  margin-bottom: 14px;
}

.srpc-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  user-select: none;
  padding-bottom: 8px;
}

.srpc-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  background: #afc8ec;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.srpc-step-icon svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  transition: all 0.3s ease;
}

.srpc-step-label {
  font-size: 25px;
  font-weight: 700;
  color: #1e293b;
  transition: all 0.3s ease;
}

.loop-arrow {
  display: none;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 9px solid #fff8f0;
  z-index: 5;
}

/* Hover State */
.srpc-step-item:hover .srpc-step-icon {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(147, 197, 253, 0.4);
}

/* Active Loop Step State */
.srpc-step-item.active .srpc-step-icon {
  background: linear-gradient(180deg, #fa9e0c 0%, #ff3d01 100%);
  box-shadow: 0 6px 16px rgba(249, 87, 0, 0.35);
  transform: translateY(-2px);
}

.srpc-step-item.active .srpc-step-label {
  color: #e97128;
}

.srpc-step-item.active .loop-arrow {
  display: block;
}

/* Loop Content Box & Panels */
.srpc-loop-box {
  background: #fef8ec;
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 24px;
  color: #333;
  line-height: 1.6;
  text-align: left;
  margin-top: 10px;
  min-height: 85px;
  position: relative;
}

.srpc-loop-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.srpc-loop-panel.active {
  display: block;
  opacity: 1;
}

/* One Issue per Month Text */
.srpc-month-text {
  font-size: 24px;
  color: #333333;
  line-height: 1.65;
  position: relative;
  padding-right: 15px;
}

.srpc-month-box {
  position: relative;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 30px;
}

.srpc-month-box::-webkit-scrollbar {
  width: 10px;
  box-shadow: 0 4px 12px rgba(147, 197, 253, 0.4);
}

.srpc-month-box::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.srpc-month-box::-webkit-scrollbar-thumb {
  background: #b5c7ea;
  border-radius: 10px;
}

/* Timeline Card */
.srpc-col-right .srpc-card {
  display: flex;
  flex-direction: column;
}

.srpc-timeline-wrapper {
  position: relative;
  flex: 1;
  padding-left: 36px;
  margin-top: 45px;
  padding-right: 40px;
  max-height: 750px;
  overflow-y: auto;
}

.srpc-timeline-wrapper::-webkit-scrollbar {
  width: 10px;
}

.srpc-timeline-wrapper::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.srpc-timeline-wrapper::-webkit-scrollbar-thumb {
  background: #b5c7ea;
  border-radius: 10px;
}

.srpc-timeline-line {
  display: none;
}

.srpc-timeline-item {
  position: relative;
  padding-bottom: 50px;
}

.srpc-timeline-item:last-child {
  padding-bottom: 0;
}

/* Vertical Colored Bar Segment (Extends downwards per item) */
.srpc-timeline-item::before {
  content: "";
  position: absolute;
  left: -19.5px;
  top: 15px;
  height: 100%;
  width: 4px;
  border-radius: 2px;
  background: #9eb538;
  z-index: 1;
}

.srpc-timeline-item:last-child::before {
  bottom: 4px;
}

/* Hollow Dot Node */
.srpc-timeline-dot {
  position: absolute;
  left: -27px;
  top: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #9eb538;
  z-index: 3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* 4-Color Loop Rules: 1&5, 2&6, 3&7, 4&8... */

/* Color 1 (1, 5, 9...): Olive / Yellow-Green */
.srpc-timeline-item:nth-child(4n + 1)::before {
  background: #9eb538;
}
.srpc-timeline-item:nth-child(4n + 1) .srpc-timeline-dot {
  border-color: #9eb538;
}

/* Color 2 (2, 6, 10...): Grass Green */
.srpc-timeline-item:nth-child(4n + 2)::before {
  background: #53b466;
}
.srpc-timeline-item:nth-child(4n + 2) .srpc-timeline-dot {
  border-color: #53b466;
}

/* Color 3 (3, 7, 11...): Dark Teal Green */
.srpc-timeline-item:nth-child(4n + 3)::before {
  background: #1ea08d;
}
.srpc-timeline-item:nth-child(4n + 3) .srpc-timeline-dot {
  border-color: #1ea08d;
}

/* Color 4 (4, 8, 12...): Ocean Blue / Cyan */
.srpc-timeline-item:nth-child(4n + 4)::before {
  background: #2993ba;
}
.srpc-timeline-item:nth-child(4n + 4) .srpc-timeline-dot {
  border-color: #2993ba;
}

.srpc-timeline-year {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 22px;
}

.srpc-timeline-desc {
  font-size: 26px;
  color: #64748b;
  line-height: 1.5;
}

/* Bottom Hotline Callout */
.srpc-bottom-callout {
  text-align: center;
  margin-top: 35px;
  padding-top: 10px;
}

.bottom-subtitle {
  font-size: 40px;
  font-weight: 600;
  font-style: italic;
  color: #475569;
  margin-bottom: 45px;
}

.hotline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #fa9e0c 0%, #ff3d01 100%);
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  padding: 12px 38px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hotline-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(255, 69, 0, 0.4);
}

.hotline-btn svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.bottom-tagline {
  font-size: 34px;
  font-style: italic;
  color: #475569;
  margin-top: 50px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* -------------------------------------------------------------
   Tab 2: SRPC Forum Layout & Styles
------------------------------------------------------------- */
.forum-card-title {
  font-size: 40px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 40px;
}

/* 1. About Card */
.forum-about-card {
  background: url(./JieSuJiBan2026_Two_banner7.jpg) no-repeat;
  background-size: cover;
  border-radius: 8px;
  padding: 50px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 80px;
  height: 480px;
  box-sizing: border-box;
}
.forum-about-card .forum-card-title {
  padding-bottom: 40px;
  margin: 0 35px 40px;
  border-bottom: 1px solid #e2e2e0;
}
.forum-about-body {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 10px;
  font-size: 32px;
  line-height: 1.65;
  color: #4a3e3d;
}

.forum-about-body::-webkit-scrollbar {
  width: 10px;
}

.forum-about-body::-webkit-scrollbar-track {
  background: #ff8201;
  border-radius: 10px;
}

.forum-about-body::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

/* 2. How to Participate Banner */
.forum-register-banner {
  margin-bottom: 80px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.forum-register-banner a,
.forum-register-banner a img {
  display: block;
  width: 100%;
  height: auto;
}

.forum-register-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 87, 0, 0.12);
}

.register-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #ea580c;
  margin-bottom: 4px;
}

.register-title {
  font-size: 38px;
  font-weight: 900;
  color: #f95700;
  text-shadow: 0 2px 10px rgba(249, 87, 0, 0.2);
  letter-spacing: 0.5px;
}

/* 3. Agenda Section */
.forum-agenda-card {
  background: linear-gradient(135deg, #fefdfd 0%, #fefaf8 100%);
  border-radius: 8px;
  padding: 55px 28px 65px 50px;
  border: 1px solid #fcf8f3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 80px;
}

.forum-agenda-body {
  max-height: 550px;
  overflow-y: auto;
  padding-right: 40px;
}

.forum-agenda-body::-webkit-scrollbar {
  width: 10px;
}

.forum-agenda-body::-webkit-scrollbar-track {
  background: #ff8201;
  border-radius: 10px;
}

.forum-agenda-body::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

.agenda-timeline {
  position: relative;
  padding-left: 24px;
}

.agenda-line {
  position: absolute;
  left: 8px;
  top: 14px;
  height: 100%;
  width: 1px;
  background: #ff8331;
}

.agenda-item {
  position: relative;
  margin-bottom: 16px;
}

.agenda-item:last-child {
  margin-bottom: 0;
}

.agenda-dot {
  position: absolute;
  left: -24px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #ff6a35;
  z-index: 1;
}

.agenda-content-box {
  background: url(./JieSuJiBan2026_Two_banner8.png) no-repeat;
  background-size: cover;
  border: 1px solid #fbb62f;
  padding: 30px;
}

.agenda-item-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
}

.agenda-bullet-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  font-size: 26px;
  color: #4a3e3d;
  line-height: 1.333;
}

/* 4. Previous Forums Section */
.forum-previous-card {
}

.previous-forum-banner {
  background: linear-gradient(135deg, #ff7a28 0%, #f95700 100%);
  border-radius: 12px;
  padding: 28px 24px 45px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(249, 87, 0, 0.2);
}

.previous-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.srpc-logo-badge {
  background: #ffffff;
  color: #f95700;
  font-weight: 800;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.previous-slogan {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.previous-main-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #ffffff;
}

.previous-sub-title {
  font-size: 14.5px;
  font-weight: 500;
  opacity: 0.92;
  color: #ffffff;
}

.previous-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  pointer-events: none;
}

/* -------------------------------------------------------------
   Tab 3: What's On Layout & Styles (Swiper Carousel Supported)
------------------------------------------------------------- */
.whatson-card {
  background: linear-gradient(180deg, #ffffff 0%, #fef8e7 100%);
  padding: 30px 0 50px 20px;
  box-shadow: 0 6px 20px rgba(249, 87, 0, 0.04);
  position: relative;
  box-sizing: border-box;
  min-width: 0; /* CRITICAL: Prevents Swiper flex/grid blowout */
}
.exchanges-card {
  padding: 30px 20px 50px 20px;
}
.research-card {
  padding: 45px 160px 40px 160px;
  background: url(./JieSuJiBan2026_Two_banner9.jpg) no-repeat;
  background-size: cover;
  box-shadow: 0px 21px 13.12px 2.88px rgba(173, 179, 192, 0.15);
}
.whatson-card-title {
  font-size: 40px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 30px;
  white-space: nowrap;
}

.card-read-more {
  position: absolute;
  right: 30px;
  bottom: 20px;
}

.card-read-more a {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.card-read-more a:hover {
  color: #ea580c;
}

/* Top Row 2-Column Grid */
.whatson-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
  width: 100%;
}

.whatson-top-grid > div {
  min-width: 0; /* CRITICAL: Prevents Swiper grid blowout */
}

/* Updates List (Left) */
.updates-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.update-item {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.25s ease;
}

.update-item.active {
  background: #eaf4ff;
  border-color: #cbe0ff;
}

.update-item:hover {
  background: #eaf4ff;
  border-color: #cbe0ff;
  transform: translateY(-1px);
}

.update-img-box {
  width: 193px;
  height: 124px;
  overflow: hidden;
  flex-shrink: 0;
}

.update-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.update-text-box {
  font-size: 28px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.172;
  padding-right: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical; /*设置对齐模式*/
  -webkit-line-clamp: 2; /*设置多行的行数*/
}

/* Exchanges and Mutual Learning Swiper (Right) */
.exchanges-swiper-wrapper {
  position: relative;
  padding: 0 32px;
}

.exchanges-swiper-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.exchange-slide-img {
  height: 274px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.exchange-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exchange-slide-title {
  font-size: 30px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-top: 14px;
  line-height: 1.241;
}
.exchange-slide-title a {
  color: #1e293b;
}

/* Swiper Circular Navigation Buttons */
.swiper-btn-circle {
  position: absolute;
  top: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.exchange-prev,
.research-prev {
  left: 0;
}

.exchange-next,
.research-next {
  right: 0;
}

/* Bottom Card: Theoretical Research (Book Swiper) */
.research-swiper-wrapper {
  position: relative;
  padding: 0 45px;
  margin-bottom: 10px;
}

.research-swiper-container {
  width: 100%;
  overflow: hidden;
}
.research-swiper-container .swiper-slide {
  display: flex;
  justify-content: center;
  gap: 45px;
  padding: 20px 0 30px;
}

.book-card {
  width: 225px;
  height: 326px;
  position: relative;
  overflow: hidden;
  box-shadow:
    12px 14px 22px rgba(0, 0, 0, 0.22),
    4px 6px 10px rgba(0, 0, 0, 0.12),
    inset 8px 0 10px -2px rgba(0, 0, 0, 0.18),
    inset 1px 0 2px rgba(255, 255, 255, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.book-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    16px 20px 28px rgba(0, 0, 0, 0.28),
    6px 8px 14px rgba(0, 0, 0, 0.15),
    inset 8px 0 10px -2px rgba(0, 0, 0, 0.22),
    inset 1px 0 2px rgba(255, 255, 255, 0.5);
}

.book-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.book-logo {
  font-size: 10px;
  font-weight: 900;
  opacity: 0.85;
  margin-bottom: 6px;
}

.book-title {
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}

.book-year {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: auto;
}

.book-footer {
  font-size: 7.5px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.75;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* Download Button */
.research-download-action {
  text-align: center;
  margin-top: 15px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.download-btn:hover {
  transform: scale(1.05);
}

.download-btn svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.news-snippet {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}

.news-meta {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* -------------------------------------------------------------
   Tab 4: Hotline Stories Layout & Styles (Video Swiper & Cases Swiper)
------------------------------------------------------------- */
/* -------------------------------------------------------------
   Tab 4: Hotline Stories Layout & Styles (Video Swiper & Cases)
------------------------------------------------------------- */
.stories-video-section {
  margin-bottom: 80px;
  width: 100%;
}

.stories-video-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  position: relative;
  width: 100%;
}

.video-showcase-container {
  display: flex;
  gap: 22px;
  flex: 1;
  min-width: 0;
  align-items: center;
}

/* Left Main Video Swiper */
.stories-swiper-container {
  flex: 1;
  min-width: 0;
  height: 493px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.main-video-card {
  position: relative;
  width: 100%;
  height: 493px;
}

.main-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-layer {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-icon-circle:hover {
  transform: scale(1.1);
}

.play-icon-circle svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  margin-left: 4px;
}

/* Playlist Thumbnails (Right Stack Container with Smooth Vertical Scrolling) */
.video-playlist-thumbs {
  width: 265px;
  height: 495px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.playlist-thumbs-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.playlist-thumb-item {
  position: relative;
  width: 100%;
  height: 150px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.25s ease;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.playlist-thumb-item.active {
  border-color: #da310a;
  border-radius: 3px;
}

.playlist-thumb-item:hover {
  transform: scale(1.02);
}

.thumb-img-box {
  width: 100%;
  height: 100%;
  position: relative;
}

.thumb-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.thumb-play-icon svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  margin-left: 2px;
}

/* PC Hide Mobile-Only Cases Buttons */
.cases-prev,
.cases-next {
  display: none !important;
}

/* Left & Right Circular Navigation Arrows */
.stories-prev,
.stories-next {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #334795;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  top: 0;
  transition: background 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: none !important;
}

.stories-prev svg,
.stories-next svg {
  width: 42px;
  height: 42px;
  fill: #1e3a8a;
}
.swiper-button-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
#tab-stories .swiper-btn-circle:hover {
  background: linear-gradient(135deg, #ff6b00 0%, #ff3b00 100%);
  border-color: #ff4500;
  transition: background 0.2s ease;
}
#tab-stories .swiper-btn-circle:hover svg {
  fill: #fff;
}

/* Bottom Section: Typical Cases (Hover or Click 4 Bullet Items to Switch Left Photo) */
.typical-cases-card {
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(249, 87, 0, 0.04);
  min-width: 0;
}

.cases-header-banner {
  background: url(./JieSuJiBan2026_Two_banner10.jpg) no-repeat;
  padding: 14px 20px;
  text-align: center;
}

.cases-header-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
}

.cases-content-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 25px;
  padding: 50px 45px 70px;
  align-items: center;
  min-width: 0;
  background: url(./JieSuJiBan2026_Two_banner11.jpg) no-repeat;
  background-size: cover;
  position: relative;
}

/* Left Photo Container with Fade Transition */
.cases-photo-container {
  position: relative;
  height: 396px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.case-photo-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.case-photo-item.active {
  opacity: 1;
  visibility: visible;
}

.case-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Column Case Blocks */
.cases-info-box {
  position: relative;
  display: flex;
  flex-direction: column;
}

.cases-tag-ribbon {
  background: linear-gradient(90deg, #ff6b00 0%, #ff4500 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.2);
}

.ribbon-pointer {
  position: absolute;
  left: -6px;
  top: 10px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #ff6b00;
}

.cases-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.case-bullet-item {
  position: relative;
  cursor: pointer;
  font-size: 23px;
  color: #475569;
  line-height: 1.25;
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  transition: all 0.2s ease;
}

.case-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical; /*设置对齐模式*/
  -webkit-line-clamp: 2; /*设置多行的行数*/
}

.case-bullet-item:last-child {
  margin-bottom: 0;
}

.case-bullet-item:hover,
.case-bullet-item.active {
  background: #ff6834;
  color: #fff;
  font-weight: 600;
  font-size: 25px;
  padding: 10px;
}

.case-bullet-item:hover::before,
.case-bullet-item.active::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid #ff6834;
}

.case-bullet-item:hover .red-bullet,
.case-bullet-item.active .red-bullet {
  display: none;
}

.red-bullet {
  color: #ea580c;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 20px;
  transition: transform 0.2s ease;
}
/* -------------------------------------------------------------
   Right Fixed Floating Side Icons
------------------------------------------------------------- */
.floating-side-icons {
  position: fixed;
  right: 20px;
  top: 70%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.return-allChat{
  bottom: 50px !important;
}

.side-icon {
  display: block;
  width: 200px;
  height: auto;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.side-icon:hover {
  transform: scale(1.08) translateY(-2px);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.15));
}

.side-icon img {
  display: block;
  width: 100%;
  height: auto;
  border: none;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .srpc-tabs-wrapper {
    gap: 30px;
  }
  .srpc-values-grid,
  .news-grid,
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .srpc-middle-grid,
  .forum-sections-grid,
  .story-featured {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   Mobile Responsiveness (About SRPC - Tab 1 REM Fluid Adapter)
   Standard: Based on user's rem.js (16rem = 100% Viewport Width)
   Target: Screens <= 1024px
============================================================= */
@media (max-width: 1024px) {
  /* 1. Global Container & Banner Adjustments */
  .srpc-wrapper-banner {
    height: 8.9rem;
    background-size: contain;
    background-position: center bottom;
  }

  .srpc-container-main {
    padding: 0 0 1.5rem;
    background: url(./JieSuJiBan2026_Two_banner5_M.jpg) top center no-repeat;
    background-size: cover;
  }

  .srpc-container {
    width: 100%;
    max-width: 100%;
    padding: 0 0.35rem;
    box-sizing: border-box;
  }

  /* Hide right fixed floating side icons on mobile */
  .floating-side-icons {
    /* display: none !important; */
    width: 3rem;
  }

  .side-icon {
    width: 100%;
  }

  /* 2. Top 4 Navigation Tabs */
  .srpc-tabs-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.65rem 0 0.5rem;
  }

  .srpc-tab-item {
    flex: 1;
    padding-bottom: 0.2rem;
  }

  .srpc-tab-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.2rem;
  }

  .srpc-tab-icon img {
    width: 1rem;
    height: 1rem;
  }

  .srpc-tab-text {
    font-size: 0.56rem;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
  }

  .srpc-tab-item.active::after {
    height: 0.1rem;
    width: 1.2rem;
    bottom: 0;
  }

  /* 3. Intro Quote Card */
  .srpc-intro-card {
    margin-bottom: 0.8rem;
    max-height: none;
    gap: 0;
  }

  .srpc-intro-card .srpc-intro-quote {
    position: relative;
    top: 0;
    left: 0;
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: -0.2rem;
  }

  .srpc-intro-body {
    max-height: 8rem;
    font-size: 0.62rem;
    line-height: 1.6;
    padding-right: 0.4rem;
  }

  /* 4. Hide 4 Core Values Grid on Mobile per Design */
  .srpc-values-grid {
    display: none !important;
  }

  /* 5. Middle Section Layout & Order Reset */
  .srpc-middle-grid {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
  }

  .srpc-col-left,
  .srpc-col-right {
    display: contents;
  }

  .srpc-card {
    padding: 0.8rem 0.55rem;
    border-radius: 0.2rem;
    box-shadow: 0 0.15rem 0.5rem rgba(0, 0, 0, 0.03);
  }

  .srpc-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
    padding-bottom: 0.4rem;
  }

  /* Order 1: Closed-loop Handling Process */
  .srpc-middle-grid .srpc-col-left .srpc-card:first-child {
    order: 1;
  }

  .srpc-loop-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.2rem;
    margin-bottom: 0.4rem;
  }

  .srpc-step-item {
    padding-bottom: 0.15rem;
  }

  .srpc-step-icon {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 0.25rem;
    margin-bottom: 0.2rem;
  }

  .srpc-step-icon img {
    width: 0.9rem;
    height: 0.9rem;
  }

  .srpc-step-label {
    font-size: 0.52rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .loop-arrow {
    border-left-width: 0.2rem;
    border-right-width: 0.2rem;
    border-bottom-width: 0.24rem;
    bottom: -0.3rem;
  }

  .srpc-loop-box {
    padding: 0.55rem 0.6rem;
    font-size: 0.62rem;
    line-height: 1.6;
    max-height: 6rem;
    overflow-y: auto;
    border-radius: 0.3rem;
  }

  /* Order 2: Timeline */
  .srpc-col-right .srpc-card {
    order: 2;
  }

  .srpc-timeline-wrapper {
    margin-top: 0.4rem;
    padding-left: 0.8rem;
    padding-right: 0.4rem;
    max-height: 10rem;
    overflow-y: auto;
  }

  .srpc-timeline-item {
    padding-bottom: 0.6rem;
  }

  .srpc-timeline-item::before {
    top: 0.15rem;
    left: -0.55rem;
    width: 0.1rem;
  }

  .srpc-timeline-dot {
    width: 0.4rem;
    height: 0.4rem;
    left: -0.8rem;
    top: 0;
  }

  .srpc-timeline-year {
    font-size: 0.68rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
  }

  .srpc-timeline-desc {
    font-size: 0.58rem;
    line-height: 1.5;
  }

  /* Order 3: Theme of the Month (One Issue per Month) */
  .srpc-card-month {
    order: 3;
    background-size: cover;
  }

  .srpc-month-box {
    max-height: 8rem;
    overflow-y: auto;
    padding-right: 0.4rem;
  }

  .srpc-month-text {
    font-size: 0.62rem;
    line-height: 1.6;
    padding-right: 0;
  }

  /* 6. Governance 7-Tab Module */
  .srpc-gov-container {
    padding: 0.8rem 0.5rem;
    margin-bottom: 1rem;
    border-radius: 0.4rem;
  }

  .srpc-gov-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.65rem;
  }

  .srpc-gov-tab {
    width: calc(25% - 0.15rem);
    box-sizing: border-box;
    padding: 0.35rem 0.1rem;
    border-radius: 0.3rem;
  }

  .srpc-gov-icon {
    width: 1.4rem;
    height: 1.4rem;
    margin-bottom: 0.15rem;
  }

  .srpc-gov-title {
    font-size: 0.48rem;
    font-weight: 700;
    line-height: 1.15;
  }

  .srpc-gov-content-wrapper {
    padding: 0.4rem 0.5rem;
    border-radius: 0.3rem;
  }

  .srpc-gov-content {
    padding: 0 0.3rem 0 0;
    max-height: 8rem;
    overflow-y: auto;
  }

  .srpc-gov-panel {
    font-size: 0.62rem;
    line-height: 1.6;
  }

  .srpc-gov-desc {
    font-size: 0.62rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }

  .srpc-gov-bullet {
    font-size: 0.62rem;
    line-height: 1.6;
    padding-left: 0.5rem;
  }

  .srpc-gov-bullet::before {
    font-size: 0.65rem;
  }

  /* 7. Bottom Callout Mobile Adaption (.srpc-bottom-callout) */
  .srpc-bottom-callout {
    margin-top: 0.8rem;
    padding: 0.6rem 0.35rem 0.8rem;
    text-align: center;
  }

  .bottom-subtitle {
    font-size: 0.72rem;
    font-weight: 700;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 0.5rem;
  }

  .hotline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    background: linear-gradient(90deg, #ff6b00 0%, #ff3d01 100%);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.32rem 1.1rem;
    border-radius: 1rem;
    text-decoration: none;
    box-shadow: 0 0.15rem 0.4rem rgba(255, 61, 1, 0.25);
  }

  .hotline-btn svg {
    width: 0.52rem;
    height: 0.52rem;
    fill: #ffffff;
  }

  .bottom-tagline {
    font-size: 0.56rem;
    font-style: italic;
    color: #334155;
    margin-top: 0.65rem;
    max-width: 100%;
    line-height: 1.6;
    padding: 0 0.2rem;
  }

  /* 8. Tab 2 (SRPC Forum) Mobile Adaption */
  .forum-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
  }

  /* About the Forum Card */
  .forum-about-card {
    padding: 0.65rem 0.45rem;
    height: auto;
    margin-bottom: 0.8rem;
    border-radius: 0.3rem;
  }

  .forum-about-card .forum-card-title {
    padding-bottom: 0.35rem;
    margin: 0 0.2rem 0.45rem;
  }

  .forum-about-body {
    max-height: 7.5rem;
    font-size: 0.62rem;
    line-height: 1.6;
    padding-right: 0.3rem;
  }

  /* Register / Participate Banner */
  .forum-register-banner {
    margin-bottom: 0.8rem;
  }

  /* Agenda Section */
  .forum-agenda-card {
    padding: 0.65rem 0.45rem;
    margin-bottom: 0.8rem;
    border-radius: 0.3rem;
  }

  .forum-agenda-body {
    max-height: 9.5rem;
    overflow-y: auto;
    padding-right: 0.3rem;
  }

  .agenda-timeline {
    padding-left: 0.6rem;
  }

  .agenda-line {
    left: 0.2rem;
    top: 0.3rem;
    width: 0.04rem;
  }

  .agenda-dot {
    left: -0.6rem;
    top: 0.3rem;
    width: 0.4rem;
    height: 0.4rem;
    border-width: 0.08rem;
  }

  .agenda-content-box {
    padding: 0.45rem 0.4rem;
    border-radius: 0.2rem;
    margin-bottom: 0.4rem;
  }

  .agenda-item-title {
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.35;
  }

  .agenda-bullet-list {
    font-size: 0.58rem;
    line-height: 1.5;
    margin-top: 0.3rem;
  }

  .agenda-bullet-list li {
    margin-bottom: 0.35rem;
    display: flex;
    gap: 0.15rem;
    align-items: flex-start;
  }

  /* Previous Forums Section */
  .forum-previous-card {
    margin-bottom: 0.8rem;
  }

  /* 9. Tab 3 (What's on / Latest Info) Mobile Adaption */
  .whatson-top-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .whatson-card {
    padding: 0.65rem 0.45rem 1.2rem;
    border-radius: 0.3rem;
    margin-bottom: 0.8rem;
  }

  .exchanges-card {
    padding: 0.65rem 0.45rem 1.2rem;
  }

  .research-card {
    padding: 0.65rem 0.45rem 1rem;
    background-size: cover;
    border-radius: 0.3rem;
  }

  .whatson-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.0306rem;
    white-space: normal;
    text-align: center;
  }

  .card-read-more {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 0.4rem;
    text-align: right;
    align-self: end;
  }

  .card-read-more a {
    font-size: 0.52rem;
    font-weight: 700;
    color: #1e293b;
  }

  /* 1. Work Updates List */
  .updates-list {
    gap: 0.7729rem;
  }

  .update-item {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    border-radius: 0.15rem;
  }

  .update-img-box {
    width: 6.4412rem;
    height: 3.62rem;
    flex-shrink: 0;
  }

  .update-text-box {
    font-size: 0.58rem;
    line-height: 1.35;
    padding-right: 0;
    -webkit-line-clamp: 4;
  }

  /* 2. Exchanges and Mutual Learning Swiper */
  .exchanges-swiper-wrapper {
    position: relative;
    padding: 0 0.8rem;
  }

  .exchanges-swiper-container {
    width: 100%;
    max-width: 90%;
    border-radius: 0.2rem;
  }

  .exchange-slide-img {
    height: 6.4412rem;
    width: 100%;
    border-radius: 0.2rem;
  }

  .exchange-slide-title {
    font-size: 0.58rem;
    margin-top: 0.3rem;
    line-height: 1.3;
  }

  .swiper-btn-circle {
    top: 35%;
    width: 1.2rem;
  }

  .swiper-btn-circle img {
    width: 100%;
    height: auto;
  }

  .exchange-prev,
  .research-prev {
    left: 0;
  }

  .exchange-next,
  .research-next {
    right: 0;
  }

  /* 3. Theoretical Research (Book Swiper) */
  .research-swiper-wrapper {
    position: relative;
    padding: 0 0.8rem;
    margin-bottom: 0.3rem;
  }

  .research-swiper-container .swiper-slide {
    gap: 0.35rem;
    padding: 0.2rem 0;
    justify-content: space-between;
  }

  .book-card {
    width: 5.153rem;
    height: 7.4461rem;
    border-radius: 0.15rem;
    box-shadow: none;
  }

  .research-download-action {
    margin-top: 0.4rem;
    text-align: center;
  }

  .download-btn img {
    width: 3.5rem;
    height: auto;
  }

  .research-card .research-next {
    right: -0.7rem;
  }

  .research-card .research-prev {
    left: -0.7rem;
  }

  /* 10. Tab 4 (Hotline Stories) Mobile Adaption */
  .stories-video-section {
    margin-bottom: 1.0306rem;
  }

  .stories-video-wrapper {
    width: auto;
    position: relative;
    padding: 0 0.8rem 1.3527rem;
    flex-direction: column;
    align-items: center;
  }

  .video-showcase-container {
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
  }

  .stories-swiper-container {
    width: 11.2593rem;
    height: 6.3768rem;
    border-radius: 0.2rem;
  }

  .main-video-card {
    height: 6.3768rem;
  }

  .play-icon-circle {
    width: 1.4rem;
    height: 1.4rem;
  }

  .play-icon-circle img {
    width: 100%;
    height: 100%;
  }

  .stories-prev,
  .stories-next {
    position: absolute;
    top: 20%;
    width: 1.2rem;
    height: 1.2rem;
    z-index: 10;
  }

  .stories-prev {
    left: 0.2rem;
  }

  .stories-next {
    right: 0.2rem;
  }

  #tab-stories .swiper-btn-circle:hover {
    background: #fff;
    border-color: #334795;
  }

  #tab-stories .swiper-btn-circle:hover svg {
    fill: #334795;
  }

  /* Playlist Thumbnails (Mobile Horizontal Scrollable Track) */
  .video-playlist-thumbs {
    width: 100%;
    height: auto;
    margin-top: 0.4rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.2rem;
  }

  .video-playlist-thumbs::-webkit-scrollbar {
    display: none;
  }

  .playlist-thumbs-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.35rem;
    transform: none !important;
    width: max-content !important;
  }

  .playlist-thumb-item {
    width: 4.5rem !important;
    height: 2.409rem !important;
    border-radius: 0.15rem;
    box-shadow: none;
    flex-shrink: 0;
  }

  .thumb-play-icon {
    width: 0.6rem;
    height: 0.6rem;
  }

  .thumb-play-icon img {
    width: 100%;
    height: 100%;
  }

  /* Typical Cases Section */
  .typical-cases-card {
    border-radius: 0.3rem;
    margin-bottom: 0.8rem;
  }

  .cases-header-banner {
    padding: 0.35rem 0.2rem;
    background: linear-gradient(90deg, #ffe0b2 0%, #fff7ed 100%);
    text-align: center;
  }

  .cases-header-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
  }

  .cases-content-grid {
    display: flex;
    flex-direction: column;
    padding: 1.0306rem 0.35rem 0.8rem;
    background-size: cover;
    border-radius: 0 0 0.3rem 0.3rem;
    position: relative;
    gap: 0;
  }

  .cases-photo-container {
    width: 11.285rem;
    height: 7.3043rem;
  }

  .cases-info-box {
    width: 11.285rem;
    text-align: center;
  }

  .cases-bullet-list {
    padding: 0;
    margin: 0;
  }

  .case-bullet-item {
    font-size: 0.62rem;
    line-height: 1.5;
    justify-content: center;
    text-align: center;
    display: none;
  }

  .case-bullet-item:hover,
  .case-bullet-item.active {
    font-size: 0.62rem;
    padding: 0.3rem 1rem;
    display: block;
    background: #fff;
    color: #333;
    font-weight: 500;
  }

  .case-bullet-item:hover::before,
  .case-bullet-item.active::before {
    display: none;
  }

  /* Typical Cases Mobile Circular Navigation Buttons */
  .cases-prev,
  .cases-next {
    display: flex !important;
    position: absolute;
    top: 4rem;
    z-index: 20;
    width: 1.2rem;
    height: auto;
    cursor: pointer;
  }

  #tab-stories .cases-prev:hover,
  #tab-stories .cases-next:hover {
    background: none;
  }

  .cases-prev {
    left: 0.3rem;
  }

  .cases-next {
    right: 0.3rem;
  }

  .cases-prev img,
  .cases-next img {
    width: 100%;
    height: auto;
    display: block;
  }
}
