﻿:root {
      --primary: #0f4ba8;
      --primary-deep: #08357e;
      --primary-soft: #edf5ff;
      --accent: #f5c94c;
      --text: #17304f;
      --muted: #74859b;
      --line: #dbe6f3;
      --panel: #ffffff;
      --shadow: 0 14px 34px rgba(15, 75, 168, 0.1);
      --radius: 14px;
      --wrap: 1500px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    @keyframes sectionFadeUp {
      from {
        opacity: 0;
        transform: translateY(34px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes sectionFadeLeft {
      from {
        opacity: 0;
        transform: translateX(-34px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes sectionFadeRight {
      from {
        opacity: 0;
        transform: translateX(34px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes softZoomIn {
      from {
        opacity: 0;
        transform: scale(0.96);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes lineGrow {
      from {
        transform: scaleX(0);
      }

      to {
        transform: scaleX(1);
      }
    }

    @keyframes glowPulse {
      0%,
      100% {
        box-shadow: 0 0 0 rgba(245, 201, 76, 0);
      }

      50% {
        box-shadow: 0 0 22px rgba(245, 201, 76, 0.34);
      }
    }

    .reveal {
      opacity: 0;
      transform: translate3d(0, 32px, 0);
      transition:
        opacity 0.78s ease,
        transform 0.86s cubic-bezier(0.16, 1, 0.3, 1);
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    .reveal-left {
      transform: translate3d(-58px, 0, 0);
    }

    .reveal-right {
      transform: translate3d(58px, 0, 0);
    }

    .reveal-zoom {
      transform: translate3d(0, 18px, 0) scale(0.96);
    }

    .reveal-left.is-visible,
    .reveal-right.is-visible,
    .reveal-zoom.is-visible {
      transform: translate3d(0, 0, 0) scale(1);
    }

    body {
      margin: 0;
      font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(15, 75, 168, 0.08), transparent 26%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 22%, #f8fbff 100%);
    }

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

    .wrap {
      width: min(var(--wrap), calc(100% - 64px));
      margin: 0 auto;
    }

    .topbar {
      background: linear-gradient(90deg, #0a377d, #0f4ba8);
      color: rgba(255, 255, 255, 0.92);
      font-size: 13px;
    }

    .topbar-inner {
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .topbar-group,
    .topbar-search {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .topbar-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .icon {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 1.9;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex: 0 0 auto;
    }

    .svg-symbols {
      position: absolute;
    }

    .search-icon {
      color: #0f4ba8;
    }

    .search-pill {
      width: 260px;
      height: 34px;
      border-radius: 999px;
      padding: 0 12px 0 16px;
      background: rgba(255, 255, 255, 0.95);
      color: #7f8da3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .header {
      background: linear-gradient(90deg, #0a377d, #0f4ba8);
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(10px);
    }

    .header-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 18px;
      min-width: 0;
    }

    .brand-logo {
      width: clamp(166px, 13.5vw, 232px);
      height: auto;
      display: block;
      flex: 0 0 auto;
    }

    .brand-title {
      font-size: clamp(20px, 1.55vw, 28px);
      line-height: 1.2;
      font-weight: 800;
      color: #fff;
      white-space: nowrap;
    }

    .nav {
      display: flex;
      align-items: stretch;
      gap: 24px;
      font-size: 17px;
      color: rgba(255, 255, 255, 0.88);
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .nav a {
      height: 82px;
      display: inline-flex;
      align-items: center;
      position: relative;
      transition: color 0.2s ease;
    }

    .nav a.active,
    .nav a:hover {
      color: #fff;
      font-weight: 700;
    }

    .nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 4px;
      border-radius: 999px;
      background: #f5c94c;
    }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: clamp(420px, 62vw, 690px);
      background: #0b397a;
    }

    .hero-slides {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.45s ease;
    }

    .hero-slide.is-active {
      opacity: 1;
    }

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

    .hero-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(7, 43, 94, 0.72) 0%, rgba(11, 62, 133, 0.5) 46%, rgba(8, 48, 105, 0.24) 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.72), transparent 10%),
        radial-gradient(circle at 70% 26%, rgba(255, 255, 255, 0.4), transparent 12%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 20%);
      pointer-events: none;
    }

    .hero::after {
      content: none;
    }

    .hero-inner {
      min-height: clamp(420px, 62vw, 690px);
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-copy {
      color: #fff;
      padding: 90px 0 130px;
      max-width: 720px;
      animation: sectionFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both 0.1s;
    }

    .hero-copy h1 {
      margin: 0;
      font-size: clamp(34px, 3vw, 50px);
      line-height: 1.18;
      letter-spacing: 1px;
    }

    .hero-copy p {
      margin: 22px 0 0;
      font-size: 22px;
      line-height: 1.6;
      font-weight: 600;
    }

    .hero-line {
      width: 96px;
      height: 4px;
      margin-top: 28px;
      border-radius: 999px;
      background: var(--accent);
      transform-origin: left center;
      animation: lineGrow 0.72s ease both 0.62s;
    }

    .hero-actions {
      display: flex;
      gap: 18px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    .hero-arrow {
      position: absolute;
      top: 50%;
      z-index: 3;
      width: 54px;
      height: 54px;
      border: 1px solid rgba(255, 255, 255, 0.68);
      border-radius: 50%;
      background: rgba(7, 43, 94, 0.34);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transform: translateY(-50%);
      backdrop-filter: blur(6px);
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .hero .btn:first-child {
      animation: glowPulse 2.8s ease-in-out 1.3s infinite;
    }

    .hero-arrow:hover {
      background: rgba(7, 43, 94, 0.54);
      transform: translateY(-50%) scale(1.04);
    }

    .hero-arrow svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      stroke-width: 2.2;
      fill: none;
    }

    .hero-arrow.prev {
      left: clamp(12px, 2vw, 28px);
    }

    .hero-arrow.prev svg {
      transform: rotate(180deg);
    }

    .hero-arrow.next {
      right: clamp(12px, 2vw, 28px);
    }

    .btn {
      min-width: 188px;
      height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 0 24px;
      border: 1px solid rgba(255, 255, 255, 0.72);
      color: #fff;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.06);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
      font-size: 15px;
      font-weight: 700;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.14);
    }

    .btn svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
    }

    .quicklinks {
      margin-top: -74px;
      position: relative;
      z-index: 2;
    }

    .quick-grid {
      background: rgba(255, 255, 255, 0.98);
      border-radius: 16px;
      box-shadow: 0 18px 40px rgba(19, 72, 151, 0.14);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: hidden;
    }

    .quick-item {
      min-height: 110px;
      padding: 20px 10px 16px;
      text-align: center;
      border-right: 1px solid #edf2f8;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .quick-item:last-child {
      border-right: 0;
    }

    .quick-item:hover {
      background: #f7fbff;
      transform: translateY(-4px);
      box-shadow: 0 14px 26px rgba(15, 75, 168, 0.09);
    }

    .quick-item svg,
    .feature-icon,
    .notice-box,
    .link-item svg,
    .footer-info-item .icon {
      transition: transform 0.32s ease, color 0.32s ease, background 0.32s ease;
    }

    .quick-item:hover svg {
      transform: translateY(-5px) scale(1.1);
    }

    .quick-item svg {
      width: 36px;
      height: 36px;
      stroke: var(--primary);
      stroke-width: 1.8;
      fill: none;
    }

    .quick-item span {
      font-size: 15px;
      font-weight: 600;
      color: #36506f;
    }

    .page-section {
      padding: 34px 0 34px 0;
    }

    .feature-band-inner,
    .footer-feature-grid {
      background: linear-gradient(90deg, #0f4ea9 0%, #0a4aab 52%, #0a459c 100%);
      color: #fff;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0;
      overflow: hidden;
    }

    .feature-item {
      min-height: 128px;
      padding: 24px 28px;
      display: grid;
      grid-template-columns: 62px minmax(0, 1fr);
      align-items: start;
      gap: 16px;
      position: relative;
    }

    .feature-item+.feature-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 20px;
      bottom: 20px;
      width: 1px;
      background: rgba(255, 255, 255, 0.18);
    }

    .feature-icon {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }

    .feature-icon svg {
      width: 30px;
      height: 30px;
      stroke: #fff;
      stroke-width: 1.9;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .feature-content {
      min-width: 0;
      padding-top: 2px;
    }

    .feature-title {
      margin: 0 0 10px;
      font-size: 20px;
      line-height: 1.2;
      font-weight: 800;
      color: #fff;
    }

    .feature-text {
      margin: 0;
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.92);
    }

    #notice {
      background: #d6f1f2;
      position: relative;
      overflow: hidden;
    }

    #notice::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      width: 360px;
      height: 240px;
      background: url("../image/luda_gonggao_lg.png") right bottom / contain no-repeat;
      pointer-events: none;
      opacity: 0.95;
    }

    #notice>.wrap {
      position: relative;
      z-index: 1;
    }

    .section-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .notice-head {
      padding: 18px 18px 0;
    }

    .section-title {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #1454df;
      font-size: 28px;
      line-height: 1;
      font-weight: 800;
    }

    .section-title::before {
      content: "";
      width: 5px;
      height: 24px;
      border-radius: 999px;
      background: #1454df;
    }

    .more {
      color: #5d83be;
      font-weight: 600;
      font-size: 14px;
      white-space: nowrap;
    }

    .news-showcase {
      margin-top: 0;
      padding: 28px 0;

      overflow: hidden;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.08fr 0.95fr;
      gap: 30px;
      align-items: center;
    }

    .news-photo {
      aspect-ratio: 782 / 464;
      height: auto;
      min-height: 0;
      position: relative;
      overflow: hidden;
      background: #d8e3ef;
      box-shadow: 0 18px 38px rgba(5, 24, 64, 0.18);
    }

    .news-photo-link {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      color: #fff;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }

    .news-photo-link.is-active {
      opacity: 1;
      pointer-events: auto;
    }

    .news-photo-slides {
      position: absolute;
      inset: 0;
    }

    .news-photo-media {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .news-photo-link:hover .news-photo-media img {
      transform: scale(1.07);
    }

    .news-photo-media img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.75s ease;
      transform: scale(1);
    }

    .news-photo-caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 18px 22px 20px;
      background: linear-gradient(180deg, transparent 0%, rgba(6, 25, 62, 0.2) 28%, rgba(6, 25, 62, 0.78) 100%);
      color: #fff;
      z-index: 1;
    }

    .news-photo-title {
      margin: 0;
      font-size: 18px;
      line-height: 1.45;
      font-weight: 700;
      flex: 1;
      min-width: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .news-photo-arrow {
      position: absolute;
      top: 50%;
      z-index: 2;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.55);
      border-radius: 50%;
      background: rgba(10, 35, 80, 0.3);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transform: translateY(-50%);
      cursor: pointer;
      backdrop-filter: blur(4px);
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .news-photo-arrow:hover {
      background: rgba(10, 35, 80, 0.52);
      transform: translateY(-50%) scale(1.04);
    }

    .news-photo-arrow svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      stroke-width: 2.3;
      fill: none;
    }

    .news-photo-arrow.prev {
      left: 14px;
    }

    .news-photo-arrow.prev svg {
      transform: rotate(180deg);
    }

    .news-photo-arrow.next {
      right: 14px;
    }

    .news-card {
      min-height: 450px;
      background: rgba(255, 255, 255, 0.98);
      padding: 24px 30px 26px;
      box-shadow: 0 20px 42px rgba(5, 24, 64, 0.14);
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.32s ease, transform 0.32s ease;
    }

    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 26px 54px rgba(5, 24, 64, 0.18);
    }

    .news-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding-bottom: 22px;
      border-bottom: 3px solid #1e5fe8;
    }

    .news-card-title {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #1454df;
      font-size: 28px;
      line-height: 1;
      font-weight: 800;
    }

    .news-card-title::before {
      content: "";
      width: 5px;
      height: 24px;
      border-radius: 999px;
      background: #1454df;
    }

    .news-more {
      height: 32px;
      padding: 0 14px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #f2f6ff;
      color: #1454df;
      font-size: 13px;
      font-weight: 700;
      transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
    }

    .news-more:hover {
      background: #1454df;
      color: #fff;
      transform: translateX(3px);
    }

    .news-more svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      stroke-width: 2.4;
      fill: none;
    }

    .news-tags {
      display: flex;
      gap: 10px;
      padding: 28px 0 16px;
      border-bottom: 1px dashed #d9e2ef;
    }

    .news-tag {
      height: 22px;
      padding: 0 10px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      background: #eef4ff;
      color: #1454df;
      font-size: 12px;
    }

    .news-tag.hot {
      background: #f06048;
      color: #fff;
    }

    .news-lead {
      display: grid;
      grid-template-columns: 92px 1fr;
      gap: 16px;
      padding: 20px 0 14px;
      border-bottom: 1px solid #e7edf5;
      flex: 1;
    }

    .news-leads {
      flex: 1;
      border-bottom: 1px solid #e7edf5;
    }

    .news-leads .news-lead {
      display: none;
      border-bottom: 0;
      flex: initial;
      height: 100%;
    }

    .news-leads .news-lead.is-active {
      display: grid;
    }

    .news-date-large {
      color: #1454df;
      line-height: 1;
      width: 92px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      align-self: center;
      justify-content: center;
    }

    .news-date-top {
      display: inline-flex;
      align-items: baseline;
      gap: 2px;
      font-weight: 800;
      color: #1454df;
    }

    .news-day {
      font-size: 43px;
      line-height: 0.9;
    }

    .news-month {
      font-size: 18px;
      font-weight: 800;
      line-height: 1;
    }

    .news-year {
      display: block;
      margin-top: 8px;
      margin-left: 10px;
      font-size: 28px;
      font-weight: 800;
    }

    .news-title-line {
      display: flex;
      align-items: baseline;
      gap: 16px;
      margin-bottom: 10px;
      flex-wrap: nowrap;
    }

    .news-lead h3 {
      margin: 0;
      color: #202a3a;
      font-size: 21px;
      line-height: 1.45;
      flex: 1;
      min-width: 0;
    }

    .news-lead time {
      color: #1454df;
      font-size: 15px;
      font-weight: 700;
      white-space: nowrap;
    }

    .news-lead p {
      margin: 0;
      color: #405064;
      font-size: 15px;
      line-height: 1.85;
      display: -webkit-box;
      height: calc(1.85em * 5);
      -webkit-line-clamp: 5;
      line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .news-pager {
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 16px;
      align-items: center;
      margin-top: auto;
      padding-top: 20px;
    }

    .news-emblem {
      width: 58px;
      height: 58px;
      border: 2px solid #1454df;
      border-radius: 50%;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .news-emblem img {
      width: 34px;
      height: 34px;
      display: block;
      object-fit: contain;
    }

    .news-pages {
      display: grid;
      grid-template-columns: 1fr repeat(5, auto);
      align-items: center;
      gap: 22px;
      color: #8e9299;
      font-size: 18px;
      font-weight: 700;
    }

    .news-pages button {
      border: 0;
      padding: 0;
      background: transparent;
      color: inherit;
      font: inherit;
      cursor: pointer;
    }

    .news-pages::before {
      content: "";
      height: 1px;
      background: #d8dde6;
    }

    .news-pages button.active {
      color: #1454df;
    }

    .notice-title {
      margin: 0;
      font-size: 20px;
      line-height: 1.5;
      font-weight: 700;
      color: #304964;
    }

    .link-date {
      display: inline-block;
      margin-top: 10px;
      color: #8b9ab0;
      font-size: 14px;
    }

    .card {
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid #dce8f6;
      border-radius: 14px;
      box-shadow: 0 16px 35px rgba(18, 65, 136, 0.08);
      overflow: hidden;
      position: relative;
      backdrop-filter: blur(6px);
    }

    .notice-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      padding: 4px 18px 18px;
      position: relative;
      z-index: 1;
    }

    .notice-row {
      display: grid;
      grid-template-columns: 78px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 14px 16px;
      border: 1px solid #dfebf7;
      border-radius: 12px;
      background: #fff;
      transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
    }

    .notice-row:hover {
      border-color: #b8d3f5;
      box-shadow: 0 14px 26px rgba(15, 75, 168, 0.1);
      transform: translateY(-4px);
    }

    .notice-row:hover .notice-box {
      transform: translateY(-2px);
    }

    .notice-row:hover .notice-arrow {
      transform: translateX(4px);
    }

    .notice-box {
      border: 1px solid #cfe0f4;
      border-radius: 12px;
      width: 70px;
      text-align: center;
      color: var(--primary);
      overflow: hidden;
    }

    .notice-box strong {
      display: block;
      padding-top: 10px;
      font-size: 28px;
      line-height: 1;
    }

    .notice-box span {
      display: block;
      padding: 8px 0 10px;
      background: #f3f8fe;
      font-size: 12px;
      font-weight: 700;
    }

    .notice-title {
      font-size: 15px;
    }

    .notice-arrow {
      color: #9bb1cc;
      font-size: 24px;
      line-height: 1;
      transition: transform 0.24s ease, color 0.24s ease;
    }

    .double-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      margin-top: 22px;
    }

    .panel {
      background: #fff;
      border-radius: 14px;
      border: 1px solid #e0ebf7;
      box-shadow: 0 16px 36px rgba(18, 65, 136, 0.08);
      padding: 0 20px 12px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
    }

    .panel:hover {
      border-color: #bdd6f5;
      box-shadow: 0 22px 44px rgba(18, 65, 136, 0.12);
      transform: translateY(-4px);
    }

    .panel::after {
      content: "";
      position: absolute;
      right: -40px;
      bottom: -58px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(15, 75, 168, 0.06), transparent 66%);
      pointer-events: none;
    }

    .panel-head {
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .panel-title {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #1454df;
      font-size: 28px;
      line-height: 1;
      font-weight: 800;
      padding-bottom: 0;
    }

    .panel-title::before {
      content: "";
      width: 5px;
      height: 24px;
      background: #1454df;
      border-radius: 999px;
    }

    .mini-more {
      color: #5d83be;
      font-size: 15px;
      font-weight: 700;
    }

    .link-list {
      display: grid;
      gap: 4px;
      padding-bottom: 8px;
    }

    .link-item {
      min-height: 62px;
      display: grid;
      grid-template-columns: 24px 1fr auto;
      align-items: center;
      gap: 12px;
      border-bottom: 1px dashed #e0ebf7;
    }

    .link-item:last-child {
      border-bottom: 0;
    }

    .link-item svg {
      width: 20px;
      height: 20px;
      stroke: var(--primary);
      stroke-width: 2;
      fill: none;
    }

    .link-item a {
      font-size: 16px;
      color: #36506f;
      font-weight: 600;
    }

    .link-item:hover svg {
      transform: translateX(3px) scale(1.08);
    }

    .link-item:hover a {
      color: var(--primary);
    }

    .footer {
      background: linear-gradient(180deg, #0a4ba9 0%, #08367f 100%);
      color: rgba(255, 255, 255, 0.9);
      margin-top: 0;
      overflow-x: clip;
      padding-bottom: 0;
    }

    .footer-contact {
      width: min(var(--wrap), calc(100% - 64px));
      margin: 0 auto;
      background: transparent;
      color: rgba(255, 255, 255, 0.92);
      overflow: visible;
    }

    .footer-feature-grid {
      background: transparent;
    }

    .footer-info-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      padding: 16px 24px;
      font-size: 14px;
      position: relative;
    }

    .footer-info-grid::before,
    .footer-info-grid::after {
      content: "";
      position: absolute;
      left: 50%;
      width: 100vw;
      height: 1px;
      background: rgba(255, 255, 255, 0.16);
      transform: translateX(-50%);
      pointer-events: none;
    }

    .footer-info-grid::before {
      top: 0;
    }

    .footer-info-grid::after {
      bottom: 0;
    }

    .footer-info-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 0;
      text-align: center;
      line-height: 1.6;
    }

    .footer-info-item span {
      min-width: 0;
    }

    .footer-info-item .icon {
      color: #fff;
      flex: 0 0 auto;
    }

    .feature-item:hover .feature-icon,
    .footer-info-item:hover .icon {
      transform: translateY(-4px) scale(1.08);
    }

    .footer-bottom {
      min-height: 96px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      padding: 0;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-size: 24px;
      line-height: 1;
      min-height: 96px;
    }

    .footer-brand.reveal {
      opacity: 1;
      transform: none;
    }

    .footer-brand-logo {
      width: 180px;
      height: auto;
      display: block;
      flex: 0 0 auto;
    }

    .footer-record {
      padding: 8px 0 10px;
      text-align: center;
      color: rgba(255, 255, 255, 0.95);
      font-size: 14px;
      line-height: 1.45;
      background: #08367f;
    }

    @media (max-width: 1200px) {

      .hero,
      .hero-inner,
      .news-layout {
        grid-template-columns: 1fr;
      }

      .news-card {
        min-height: 360px;
      }

      .quick-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 960px) {

      .topbar-inner,
      .header-inner,
      .footer-bottom,
      .footer-contact,
      .double-grid {
        grid-template-columns: 1fr;
      }

      .topbar-inner,
      .header-inner {
        display: block;
      }

      .topbar-group,
      .topbar-search {
        justify-content: center;
        padding: 8px 0;
        flex-wrap: wrap;
      }

      .header-inner {
        padding: 14px 0 0;
      }

      .brand {
        flex-wrap: nowrap;
        gap: 12px;
        min-width: 0;
      }

      .brand-logo {
        width: clamp(124px, 36vw, 168px);
      }

      .brand-title {
        min-width: 0;
        font-size: clamp(16px, 3.8vw, 22px);
        white-space: nowrap;
      }

      .nav {
        justify-content: flex-start;
        gap: 18px;
        padding-top: 12px;
        overflow-x: auto;
        flex-wrap: nowrap;
        font-size: 16px;
      }

      .nav a {
        height: 62px;
        flex: 0 0 auto;
      }

      .quick-grid,
      .footer-contact {
        grid-template-columns: repeat(2, 1fr);
      }

      .quick-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .feature-band-inner,
      .footer-feature-grid {
        grid-template-columns: 1fr;
      }

      .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px 18px 18px;
      }

      .feature-item {
        min-height: 116px;
      }

      .feature-item+.feature-item::before {
        top: 0;
        right: 28px;
        bottom: auto;
        width: auto;
        height: 1px;
      }

      .hero-arrow {
        width: 44px;
        height: 44px;
      }

      .notice-row {
        grid-template-columns: 78px 1fr auto;
      }

      .news-showcase {
        padding: 22px 0;
      }

      .news-card {
        min-height: auto;
      }

      .news-pages {
        gap: 14px;
        font-size: 15px;
        grid-template-columns: 1fr repeat(5, auto);
        white-space: nowrap;
      }
    }

    @media (max-width: 720px) {
      .wrap {
        width: min(calc(100% - 24px), var(--wrap));
      }

      .search-pill {
        width: 100%;
      }

      .brand-logo {
        width: 118px;
      }

      .brand-title {
        font-size: 16px;
        white-space: nowrap;
      }

      .hero-inner {
        min-height: auto;
      }

      .hero {
        min-height: 340px;
      }

      .hero-copy {
        padding: 28px 0 88px;
        max-width: 100%;
      }

      .hero-copy h1 {
        font-size: 24px;
        line-height: 1.25;
      }

      .hero-copy p {
        margin-top: 14px;
        font-size: 15px;
      }

      .hero-actions {
        margin-top: 22px;
        gap: 12px;
      }

      .hero-arrow {
        top: auto;
        bottom: 16px;
        transform: none;
        width: 40px;
        height: 40px;
      }

      .hero-arrow:hover {
        transform: scale(1.04);
      }

      .btn {
        width: 100%;
        min-width: 0;
        height: 46px;
      }

      .notice-row {
        padding-left: 16px;
        padding-right: 16px;
      }

      .notice-list {
        grid-template-columns: 1fr;
      }

      .news-card {
        padding: 20px 18px 22px;
      }

      .news-card-title {
        font-size: 22px;
      }

      .feature-item {
        grid-template-columns: 54px minmax(0, 1fr);
        padding: 22px 18px;
        gap: 14px;
      }

      .feature-icon {
        width: 54px;
        height: 54px;
      }

      .feature-icon svg {
        width: 27px;
        height: 27px;
      }

      .feature-title {
        font-size: 18px;
      }

      .section-title,
      .panel-title {
        font-size: 22px;
      }

      .news-lead {
        grid-template-columns: 1fr;
      }

      .news-date-large {
        align-self: flex-start;
      }

      .news-title-line {
        flex-wrap: wrap;
      }

      .news-date-large strong {
        font-size: 38px;
      }

      .news-lead h3 {
        font-size: 18px;
      }

      .news-pager {
        grid-template-columns: 42px 1fr;
        gap: 10px;
        align-items: center;
      }

      .news-emblem {
        width: 42px;
        height: 42px;
      }

      .news-emblem img {
        width: 26px;
        height: 26px;
      }

      .news-pages {
        grid-template-columns: 1fr repeat(5, auto);
        gap: 10px;
        justify-content: stretch;
        font-size: 16px;
      }

      .news-pages::before {
        display: block;
      }

      .news-emblem {
        width: 42px;
        height: 42px;
      }

      .news-emblem img {
        width: 26px;
        height: 26px;
      }

      .panel {
        padding-left: 14px;
        padding-right: 14px;
      }

      .news-layout,
      .footer-contact,
      .quick-grid {
        grid-template-columns: 1fr;
      }

      .news-photo {
        aspect-ratio: 16 / 9;
      }

      .news-card,
      .panel {
        padding-left: 14px;
        padding-right: 14px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
