:root {
  --blue: #0d559c;
  --blue-deep: #073d76;
  --blue-light: #eef6ff;
  --line: #d7e2ef;
  --text: #1d2b3a;
  --muted: #6d7d8d;
  --white: #fff;
  --shadow: 0 12px 30px rgba(21, 63, 105, .10);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: #f5f8fc;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
}

/* 通用内容宽度 */
.container,
.header-container {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

/* =========================================================
   顶部区域
========================================================= */

.site-header {
  position: relative;
  overflow: hidden;
  background-color: #75bce9;
  background-image: url("/html/img/index_bg.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 0;
}

.site-header::after {
  display: none;
  content: none;
}

/* 对应 HTML：site-header-top header-container */
.site-header-top {
  position: relative;
  z-index: 2;
  min-height: 168px;
  padding-top: 24px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.brand-logo {
  display: block;
  width: 760px;
  max-width: min(66vw, 760px);
  height: auto;
  max-height: 112px;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: left center;
  border: 0;
  filter: drop-shadow(0 3px 7px rgba(0, 45, 92, .22));
}

/* 对应 HTML：site-search */
.site-search {
  display: flex;
  align-items: center;
  flex: 0 0 310px;
  width: 310px;
  height: 40px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .95);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 6px 16px rgba(0, 72, 136, .18);
}

.site-search input {
  min-width: 0;
  flex: 1 1 auto;
  width: 0;
  height: 100%;
  margin: 0;
  padding: 0 12px;
  border: 0;
  outline: 0;
  color: #34485c;
  background: transparent;
}

.site-search input::placeholder {
  color: #8a929a;
}

.site-search button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 64px;
  width: 64px;
  min-width: 64px;
  height: 100%;
  margin: 0;
  padding: 0 8px;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: var(--blue);
  white-space: nowrap;
  word-break: keep-all;
}

.site-search button:hover {
  background: var(--blue-deep);
}

/* =========================================================
   顶部导航
   重点：HTML 结构是 nav-inner > ul > li > a
========================================================= */

.main-navigation {
  position: relative;
  z-index: 3;
  width: 100%;
  background: var(--blue);
  border-top: 1px solid rgba(255, 255, 255, .35);
  box-shadow: 0 4px 18px rgba(3, 59, 111, .18);
}

.main-navigation .nav-inner {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.main-navigation .nav-inner ul {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation .nav-inner li {
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation .nav-inner li a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, .08);
  transition: background-color .2s ease;
}

.main-navigation .nav-inner li:last-child a {
  border-right: 0;
}

.main-navigation .nav-inner li a:hover,
.main-navigation .nav-inner li.active a {
  background: var(--blue-deep);
}

/* =========================================================
   首屏内容
========================================================= */

.hero-section {
  padding-top: 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 16px;
}

.carousel,
.panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.carousel {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

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

.slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 28px 24px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 20, 45, .9));
}

.slide-caption strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.55;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.slide-visual {
  display: grid;
  place-items: center;
  color: #fff;
}

.slide-blue {
  background: linear-gradient(135deg, #0b4c90, #2b7fc5 58%, #81c7ea);
}

.slide-gold {
  background: linear-gradient(135deg, #785219, #d39a34 60%, #f4d795);
}

.slide-copy {
  max-width: 78%;
  text-align: center;
}

.slide-copy h2 {
  margin: 18px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
}

.slide-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .9);
}

.carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 70px;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(0, 33, 68, .48);
  font-size: 42px;
  line-height: 1;
  transition: .2s;
}

.carousel-arrow:hover {
  background: rgba(0, 33, 68, .78);
}

.carousel-arrow.prev {
  left: 14px;
}

.carousel-arrow.next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 18px;
  display: flex;
  gap: 7px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, .5);
}

.carousel-dots button.active {
  width: 24px;
  border-radius: 8px;
  background: #fff;
}

/* =========================================================
   通用信息面板
========================================================= */

.panel {
  overflow: hidden;
}

.panel-header {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 3px solid var(--blue);
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.panel-header h2 {
  margin: 0;
  color: var(--blue);
  font-size: 19px;
}

.panel-header a {
  color: #46586b;
  font-size: 14px;
}

.panel-header a:hover {
  color: var(--blue);
}

.panel-header h2 {
  margin: 0;
  display: flex;
  align-items: center;
  color: var(--blue);
  font-size: 19px;
}

.section-icon {
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-right: 9px;
  object-fit: contain;
}
.news-list {
  list-style: none;
  padding: 8px 20px 14px;
  margin: 0;
}

.news-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 39px;
  border-bottom: 1px dashed #edf1f5;
}

.news-list li:last-child {
  border-bottom: 0;
}

.news-list a {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: 14px;
  font-size: 14px;
}

.news-list a::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #3d5b79;
}

.news-list a:hover {
  color: var(--blue);
}

.news-list time {
  color: #4e5d6c;
  font-size: 13px;
  white-space: nowrap;
}

.notice-panel {
  min-height: 340px;
}

.notice-list li {
  min-height: 38px;
}

/* =========================================================
   快捷服务
========================================================= */

.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 18px;
}

.quick-stats a {
  position: relative;
  overflow: hidden;
  min-height: 98px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(22, 66, 108, .07);
  transition: .2s ease;
}

.quick-stats a::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -28px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--blue-light);
}

.quick-stats a:hover {
  transform: translateY(-3px);
  border-color: #9cc0e5;
  box-shadow: var(--shadow);
}

.quick-stats strong {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-size: 18px;
}

.quick-stats span {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================
   中部内容
========================================================= */

.content-section {
  padding-top: 18px;
  padding-bottom: 38px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.compact {
  padding-top: 10px;
}

.compact li {
  min-height: 39px;
}

.member-content {
  padding: 22px;
}

.member-badge {
  display: inline-block;
  padding: 5px 10px;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

.member-content h3 {
  margin: 18px 0 10px;
  font-size: 18px;
  line-height: 1.55;
}

.member-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
}

/* =========================================================
   专业服务
========================================================= */

.service-section {
  padding: 58px 0 66px;
  color: #fff;
  background: linear-gradient(135deg, #073c72, #0d5ba8 58%, #0f6fc2);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.section-title span {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.section-title h2 {
  margin: 6px 0 0;
  font-size: 34px;
}

.section-title p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-grid a {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px);
  transition: .25s ease;
}

.service-grid a:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .15);
}

.service-grid b {
  font-size: 38px;
  color: rgba(255, 255, 255, .32);
}

.service-grid h3 {
  margin: 24px 0 10px;
  font-size: 21px;
}

.service-grid p {
  min-height: 48px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .74);
  line-height: 1.7;
  font-size: 14px;
}

.service-grid span {
  font-size: 13px;
  font-weight: 700;
}

/* =========================================================
   右侧悬浮导航
========================================================= */

.side-nav {
  position: fixed;
  z-index: 30;
  right: 0;
  top: 260px;
  width: 126px;
  background: #fff;
  border: 1px solid #c9d4e0;
  box-shadow: 0 8px 28px rgba(14, 58, 101, .14);
}

.side-nav h3 {
  margin: 0;
  padding: 13px 8px;
  text-align: center;
  color: #fff;
  background: #3d67a5;
  font-size: 17px;
}

.side-nav a {
  display: block;
  padding: 12px 10px;
  text-align: center;
  font-weight: 700;
  border-bottom: 1px dashed #d7dee6;
  font-size: 14px;
}

.side-nav a:last-child {
  border-bottom: 0;
}

.side-nav a:hover {
  color: #fff;
  background: var(--blue);
}

/* =========================================================
   页脚
========================================================= */

.site-footer {
  color: rgba(255, 255, 255, .8);
  background: #102b47;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr .7fr;
  gap: 70px;
  padding: 45px 0 35px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.footer-brand span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.site-footer p,
.site-footer a {
  margin: 8px 0;
  display: block;
  font-size: 13px;
  line-height: 1.8;
}

.site-footer a:hover {
  color: #fff;
}

.copyright {
  padding: 18px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px;
}

/* =========================================================
   响应式
========================================================= */

@media (max-width: 1480px) {
  .side-nav {
    display: none;
  }
}

@media (max-width: 1100px) {
  .container,
  .header-container,
  .main-navigation .nav-inner {
    width: min(100% - 32px, 1100px);
  }

  .site-header-top {
    min-height: 142px;
    padding-top: 22px;
    padding-bottom: 16px;
  }

  .brand-logo {
    width: 600px;
    max-width: 62vw;
    height: auto;
    max-height: 92px;
  }

  .site-search {
    flex-basis: 270px;
    width: 270px;
  }

  .main-navigation .nav-inner li a {
    font-size: 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .carousel,
  .notice-panel {
    min-height: 360px;
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .member-card {
    grid-column: 1 / -1;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container,
  .header-container,
  .main-navigation .nav-inner {
    width: min(100% - 24px, 760px);
  }

  .site-header-top {
    min-height: 104px;
    padding-top: 17px;
    padding-bottom: 14px;
    gap: 12px;
  }

  .brand-logo {
    width: auto;
    max-width: calc(100vw - 48px);
    height: 64px;
    max-height: 64px;
  }

  .site-search {
    display: none;
  }

  .main-navigation .nav-inner {
    width: 100%;
  }

  .main-navigation .nav-inner ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .main-navigation .nav-inner li a {
    min-height: 46px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .hero-section {
    padding-top: 12px;
  }

  .carousel {
    min-height: 245px;
  }

  .notice-panel {
    min-height: auto;
  }

  .carousel-arrow {
    width: 34px;
    height: 54px;
    font-size: 34px;
  }

  .slide-caption {
    padding: 36px 18px 18px;
  }

  .slide-caption strong {
    font-size: 15px;
  }

  .slide-copy h2 {
    font-size: 24px;
  }

  .slide-copy p {
    font-size: 14px;
  }

  .panel-header {
    min-height: 50px;
    padding: 0 14px;
  }

  .panel-header h2 {
    font-size: 17px;
  }

  .news-list {
    padding: 8px 14px 12px;
  }

  .news-list li {
    gap: 10px;
    min-height: 42px;
  }

  .news-list a {
    font-size: 13px;
  }

  .news-list time {
    font-size: 12px;
  }

  .quick-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 12px;
  }

  .quick-stats a {
    min-height: 92px;
    padding: 16px;
  }

  .content-section {
    padding-top: 12px;
  }

  .content-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .member-card {
    grid-column: auto;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .service-section {
    padding: 42px 0;
  }

  .service-grid a {
    min-height: auto;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 460px) {
  .site-header-top {
    min-height: 92px;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .brand-logo {
    height: 54px;
    max-height: 54px;
  }

  .main-navigation .nav-inner ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-stats {
    grid-template-columns: 1fr;
  }

  .news-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
    padding: 8px 0;
  }

  .news-list time {
    padding-left: 14px;
    color: #8b98a5;
  }
}

/* =========================================================
   会员平台模块
========================================================= */

.memberArea {
  padding: 0 0 38px;
}

.memberArea .mem_body {
  padding: 16px 16px 20px;
  background: #f0f3f9;
}

/* 标题区域 */
.memberArea .mem_t {
  min-height: 52px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.memberArea .mem_t_icon {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
}

.memberArea .mem_t_icon img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.memberArea .mem_t h3 {
  margin: 0;
  color: var(--blue);
  font-size: 19px;
  font-weight: 700;
}

/* 平台列表：4列2行 */
.memberArea .mem_b {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;

  width: 100%;
  margin: 0;
  padding: 0;

  list-style: none;
}

.memberArea .mem_b li {
  position: relative;
  min-width: 0;
  aspect-ratio: 2.8 / 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #e1e6ee;
}

.memberArea .mem_b li a {
  display: block;
  width: 100%;
  height: 100%;
}

.memberArea .mem_b li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
          transform 0.25s ease,
          filter 0.25s ease;
}

/* 鼠标经过效果 */
.memberArea .mem_b li a:hover img {
  transform: scale(1.025);
  filter: brightness(1.05);
}

/* 两个空白卡片 */
.memberArea .mem_b li.mem_empty {
  background: #e2e6ee;
}

/* 平板 */
@media screen and (max-width: 1000px) {
  .memberArea .mem_b {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 手机 */
@media screen and (max-width: 560px) {
  .memberArea {
    padding-bottom: 24px;
  }

  .memberArea .mem_body {
    padding: 12px;
  }

  .memberArea .mem_t {
    min-height: 46px;
  }

  .memberArea .mem_t_icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    margin-right: 8px;
  }

  .memberArea .mem_t_icon img {
    width: 19px;
    height: 19px;
  }

  .memberArea .mem_t h3 {
    font-size: 17px;
  }

  .memberArea .mem_b {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* =========================================================
   会员平台下方栏目区域
========================================================= */

.channel-area {
  padding: 0 0 40px;
}

.channel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(400px, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* =========================================================
   左侧栏目
========================================================= */

.channel-left {
  min-width: 0;
}

.channel-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid #cfd5dc;
  box-shadow: 0 2px 6px rgba(25, 55, 85, 0.08);
}

.policy-panel {
  min-height: 300px;
}

.channel-left-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 14px;
}

.small-channel-panel {
  min-height: 250px;
}

/* 标题 */
.channel-panel-title {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 2px solid var(--blue);
  background: #fff;
}

.channel-panel-title h2 {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}

.channel-panel-title h2 img {
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  object-fit: contain;
}

.channel-panel-title > a {
  flex: 0 0 auto;
  margin-left: 15px;
  color: #222;
  font-size: 13px;
}

.channel-panel-title > a:hover {
  color: var(--blue);
}

/* 左侧新闻列表 */
.channel-news-list {
  margin: 0;
  padding: 10px 20px 14px;
  list-style: none;
}

.channel-news-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 39px;
}

.channel-news-list li a {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  padding-left: 13px;
  color: #151d26;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.channel-news-list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #2d455d;
}

.channel-news-list li a:hover {
  color: var(--blue);
}

.channel-news-list li time {
  color: #283746;
  font-size: 13px;
  white-space: nowrap;
}

.channel-empty {
  min-height: 200px;
}

/* =========================================================
   右侧栏目
========================================================= */

.channel-right {
  min-width: 0;
  padding: 0 0 14px;
  background: #eef1f7;
}

.right-channel-panel {
  min-height: 240px;
  overflow: hidden;
  border-bottom: 2px solid #2e62b5;
}

.right-channel-title {
  min-height: 45px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #2e62b5;
  background: #eef1f7;
}

.right-title-icon {
  width: 34px;
  height: 34px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 43px;
  color: #fff;
  background: #438be7;
  font-size: 22px;
  font-weight: 700;
}

.right-channel-title h2 {
  margin: 0;
  color: #0756a3;
  font-size: 18px;
  font-weight: 700;
}

.right-news-list {
  margin: 0;
  padding: 7px 20px 15px 30px;
  list-style: none;
}

.right-news-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  min-height: 37px;
}

.right-news-list li a {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding-left: 12px;
  color: #17202a;
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.right-news-list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #31465c;
}

.right-news-list li a:hover {
  color: var(--blue);
}

.right-news-list li time {
  font-size: 12px;
  color: #293a4b;
  white-space: nowrap;
}

/* =========================================================
   资信快捷入口
========================================================= */

.credit-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 14px 10px 64px;
}

.credit-shortcut {
  min-width: 0;
  min-height: 136px;
  padding: 18px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition:
          transform 0.2s ease,
          box-shadow 0.2s ease;
}

.credit-shortcut:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(22, 72, 126, 0.14);
}

.credit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #3267bd;
  background: #f1f6fc;
  font-size: 21px;
  font-weight: 700;
}

.credit-shortcut strong {
  color: #0b52a0;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

/* =========================================================
   评估技术交流
========================================================= */

.technology-panel {
  min-height: 350px;
  border-bottom: 0;
}

.technology-content {
  min-height: 300px;
}

/* =========================================================
   响应式
========================================================= */

@media screen and (max-width: 1150px) {
  .channel-layout {
    grid-template-columns: 1fr;
  }

  .channel-right {
    padding-bottom: 0;
  }

  .credit-shortcuts {
    padding-bottom: 20px;
  }

  .technology-panel {
    min-height: 260px;
  }

  .technology-content {
    min-height: 210px;
  }
}

@media screen and (max-width: 760px) {
  .channel-area {
    padding-bottom: 24px;
  }

  .channel-left-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .policy-panel,
  .small-channel-panel {
    min-height: auto;
  }

  .channel-panel-title {
    min-height: 46px;
    padding: 0 14px;
  }

  .channel-panel-title h2 {
    font-size: 17px;
  }

  .channel-news-list {
    padding: 8px 14px 12px;
  }

  .channel-news-list li {
    gap: 10px;
    min-height: 42px;
  }

  .channel-news-list li a {
    font-size: 13px;
  }

  .channel-news-list li time {
    font-size: 12px;
  }

  .credit-shortcuts {
    gap: 8px;
    padding: 12px 8px 20px;
  }

  .credit-shortcut {
    min-height: 116px;
    padding: 12px 5px;
  }

  .credit-shortcut strong {
    font-size: 12px;
  }

  .credit-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 520px) {
  .channel-news-list li,
  .right-news-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
    padding: 6px 0;
  }

  .channel-news-list li time,
  .right-news-list li time {
    padding-left: 13px;
    color: #7b8794;
  }

  .credit-shortcuts {
    grid-template-columns: 1fr;
  }

  .credit-shortcut {
    min-height: 100px;
  }
}
/* =========================================================
   会员视界轮播
========================================================= */

.member-vision-section {
  padding: 0 0 40px;
  background: #fff;
}

.member-vision-section .container {
  padding-top: 4px;
}

/* 标题 */
.member-vision-title {
  min-height: 46px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  border-bottom: 2px solid #2f64b6;
}

.member-vision-title img {
  display: block;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  object-fit: contain;
}

.member-vision-title h2 {
  margin: 0;
  color: #0756a3;
  font-size: 18px;
  font-weight: 700;
}

/* 轮播整体 */
.member-vision-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* 可视区域 */
.member-vision-window {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

/* 移动轨道 */
.member-vision-track {
  display: flex;
  gap: 14px;
  transform: translateX(0);
  transition: transform 0.45s ease;
  will-change: transform;
}

/* 单个图片 */
.member-vision-item {
  display: block;
  flex: 0 0 calc((100% - 56px) / 5);
  min-width: 0;
  height: 105px;
  overflow: hidden;
  border: 1px solid #d8e0ea;
  background: #f5f7fa;
  transition:
          transform 0.2s ease,
          box-shadow 0.2s ease,
          border-color 0.2s ease;
}

.member-vision-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-vision-item:hover {
  transform: translateY(-2px);
  border-color: #7fa7d4;
  box-shadow: 0 8px 18px rgba(19, 67, 116, 0.14);
}

/* 左右按钮 */
.member-vision-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 72px;
  margin: 0;
  padding: 0;
  border: 0;
  color: #9da5ad;
  background: #e4e6e8;
  font-size: 42px;
  font-family: Arial, sans-serif;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition:
          color 0.2s ease,
          background-color 0.2s ease;
}

.member-vision-arrow:hover {
  color: #fff;
  background: var(--blue);
}

.member-vision-arrow:disabled {
  cursor: default;
  opacity: 0.5;
}

/* 平板 */
@media screen and (max-width: 1100px) {
  .member-vision-item {
    flex-basis: calc((100% - 28px) / 3);
    height: 110px;
  }
}

/* 手机 */
@media screen and (max-width: 760px) {
  .member-vision-section {
    padding-bottom: 26px;
  }

  .member-vision-title {
    min-height: 44px;
    margin-bottom: 12px;
  }

  .member-vision-title img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }

  .member-vision-title h2 {
    font-size: 17px;
  }

  .member-vision-carousel {
    gap: 8px;
  }

  .member-vision-track {
    gap: 10px;
  }

  .member-vision-item {
    flex-basis: 100%;
    height: 120px;
  }

  .member-vision-arrow {
    flex-basis: 32px;
    width: 32px;
    height: 62px;
    font-size: 34px;
  }
}