      :root {
        --home-bg: #f6f8ff;
        --home-card: #ffffff;
        --home-primary: #2a6df5;
        --home-primary-dark: #1f55c7;
        --home-text: #0f172a;
        --home-muted: #6b7280;
        --home-border: #dbe4f3;
        --home-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
      }

      body.home-page {
        margin: 0;
        font-family: "Manrope", "Microsoft YaHei", sans-serif;
        background: #ffffff;
        color: var(--home-text);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      a:hover {
        text-decoration: none;
      }

      a {
        -webkit-tap-highlight-color: transparent;
      }

      .home-shell {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        position: relative;
      }

      .home-shell::before {
        content: "";
        position: fixed;
        inset: 0;
        background: radial-gradient(circle at 50% 18%, rgba(42, 109, 245, 0.10) 0%, rgba(42, 109, 245, 0.035) 28%, rgba(255, 255, 255, 0) 62%);
        pointer-events: none;
        z-index: -2;
      }

      .home-hero {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 52px clamp(20px, 4vw, 48px) 12px;
        position: relative;
      }

      .home-hero {
        padding-top: 64px;
      }

      .home-hero::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 140px;
        width: min(720px, 86vw);
        height: 200px;
        transform: translateX(-50%);
        background: radial-gradient(circle at 50% 30%, rgba(42, 109, 245, 0.22) 0%, rgba(42, 109, 245, 0.08) 36%, rgba(255, 255, 255, 0) 70%);
        filter: blur(12px);
        pointer-events: none;
        z-index: 0;
      }

      .home-card {
        width: min(980px, 100%);
        background: transparent;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        border: none;
        position: relative;
        z-index: 1;
        text-align: center;
      }

      .home-hero-logo {
        width: 68px;
        height: 68px;
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(42, 109, 245, 0.25) 0%, rgba(42, 109, 245, 0.10) 100%);
        box-shadow: 0 18px 44px rgba(42, 109, 245, 0.18);
        display: grid;
        place-items: center;
        margin: 0 auto 14px;
      }

      .home-hero-logo img {
        width: 44px;
        height: 44px;
        object-fit: contain;
      }

      .home-hero-title {
        font-size: clamp(34px, 4.6vw, 48px);
        font-weight: 800;
        margin: 0;
        color: #1f4fd0;
        letter-spacing: 0.2px;
      }

      .home-hero-desc {
        margin: 10px auto 0;
        max-width: 620px;
        font-size: 14px;
        color: #7b8aa6;
        line-height: 1.6;
      }

      .home-card__title {
        font-size: clamp(26px, 4vw, 36px);
        font-weight: 700;
        margin: 0 0 10px;
      }

      .home-card__desc {
        margin: 0 0 26px;
        color: var(--home-muted);
        font-size: 15px;
      }

      .home-search-wrap {
        margin-top: 22px;
        display: flex;
        justify-content: center;
      }

      .home-search-wrap .search-form {
        position: relative;
        width: min(560px, 100%);
        height: 58px;
        border-radius: 999px;
        border: 1px solid rgba(30, 64, 175, 0.12);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 100%);
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
        padding: 8px 10px;
        transition: all .2s ease;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .home-search-wrap .search-form.-active {
        border-color: rgba(42, 109, 245, 0.35);
        box-shadow: 0 20px 56px rgba(42, 109, 245, 0.14);
      }

      .home-search-wrap .search-form:focus-within {
        border-color: rgba(42, 109, 245, 0.42);
        box-shadow: 0 20px 56px rgba(42, 109, 245, 0.16);
      }

      .home-search-wrap .search-form .word {
        width: calc(100% - 118px);
        height: 42px;
        margin-left: 16px;
        border: none;
        outline: none;
        background: transparent;
        font-size: 15px;
        color: #0f172a;
      }

      .home-search-wrap .search-form .word::placeholder {
        color: rgba(100, 116, 139, 0.85);
      }

      .home-search-wrap .search-form .btn-submit {
        position: absolute;
        top: 7px;
        right: 8px;
        height: 44px;
        width: 92px;
        border-radius: 999px;
        background: linear-gradient(135deg, #2f6ef6 0%, #1f56d1 100%);
        border: 1px solid rgba(31, 86, 209, 0.6);
        box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.35);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-weight: 700;
        letter-spacing: 0.4px;
        transition: transform 0.18s ease, filter 0.18s ease;
      }

      .home-search-wrap .search-form .btn-submit:hover {
        transform: translateY(-1px);
        filter: brightness(1.03);
        box-shadow: 0 14px 26px rgba(37, 99, 235, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.38);
      }

      .home-hot {
        margin: 22px auto 0;
        width: min(860px, 100%);
        text-align: left;
      }

      .home-hot {
        padding-top: 6px;
      }

      .home-hot__title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 0 12px;
        font-size: 12px;
        color: #8a97ad;
      }

      .home-hot__title-left {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 700;
        color: #5a6b86;
      }

      .home-hot__title-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: rgba(239, 68, 68, 0.9);
      }

      .home-hot__title-right {
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .home-hot__caret {
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid rgba(90, 107, 134, 0.7);
        transform: translateY(1px);
      }

      .home-hot__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px 18px;
        padding: 0;
        margin: 0;
        list-style: none;
      }

      .home-hot__link {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #3a4b67;
        font-size: 13px;
        line-height: 1.2;
        padding: 6px 0;
        transition: color 0.18s ease;
      }

      .home-hot__rank {
        width: 18px;
        height: 18px;
        border-radius: 6px;
        display: grid;
        place-items: center;
        font-size: 12px;
        font-weight: 800;
        color: #1f55c7;
        background: rgba(42, 109, 245, 0.10);
        transition: transform 0.18s ease;
      }

      .home-hot__grid li:nth-child(-n+3) .home-hot__rank {
        background: rgba(239, 68, 68, 0.12);
        color: rgba(239, 68, 68, 0.95);
      }

      .home-hot__grid li:nth-child(2) .home-hot__rank {
        background: rgba(249, 115, 22, 0.14);
        color: rgba(249, 115, 22, 0.95);
      }

      .home-hot__grid li:nth-child(3) .home-hot__rank {
        background: rgba(245, 158, 11, 0.14);
        color: rgba(245, 158, 11, 0.95);
      }

      .home-hot__text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .home-hot__link:hover {
        color: #1f55c7;
      }

      .home-hot__link:hover .home-hot__rank {
        transform: translateY(-1px);
      }

      .home-news {
        margin: 26px auto 0;
        width: min(860px, 100%);
      }

      .home-news__head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
      }

      .home-news__title {
        font-size: 12px;
        font-weight: 700;
        color: #5a6b86;
      }

      .home-news__more {
        font-size: 12px;
        color: #8a97ad;
      }

      .home-news__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
      }

      .home-news__card {
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: 14px;
        padding: 14px;
        border-radius: 14px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
        color: inherit;
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
      }

      .home-news__card:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
        border-color: rgba(42, 109, 245, 0.18);
      }

      .home-news__thumb {
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(42, 109, 245, 0.22) 0%, rgba(42, 109, 245, 0.06) 42%, rgba(255, 255, 255, 0) 100%);
        height: 88px;
      }

      .home-news__card-title {
        font-size: 14px;
        font-weight: 700;
        color: #24324a;
        margin: 0 0 8px;
        line-height: 1.25;
      }

      .home-news__card-meta {
        font-size: 12px;
        color: #8a97ad;
        line-height: 1.4;
      }

      .home-footer {
        padding: 20px clamp(20px, 4vw, 48px) 32px;
        color: var(--home-muted);
        font-size: 12px;
        text-align: center;
      }

      .home-links {
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px 16px;
        justify-content: center;
      }

      .home-links a {
        color: var(--home-primary);
        font-weight: 600;
      }

      @media (max-width: 640px) {
        .home-topbar {
          position: static;
        }

        .home-topbar__inner {
          grid-template-columns: 1fr;
          justify-items: center;
          gap: 10px;
        }

        .home-card {
          border-radius: 20px;
        }

        .home-search-wrap .search-form {
          height: auto;
          padding: 12px;
          border-radius: 20px;
          box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
          flex-direction: column;
          align-items: stretch;
        }

        .home-search-wrap .search-form .word {
          width: 100%;
          margin-left: 0;
          height: 46px;
          padding: 12px 14px;
          border-radius: 14px;
          background: rgba(244, 248, 255, 0.9);
        }

        .home-search-wrap .search-form .btn-submit {
          position: static;
          width: 100%;
          height: 48px;
          margin-top: 12px;
          border-radius: 14px;
        }

        .home-hot__grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .home-news__grid {
          grid-template-columns: 1fr;
        }

        .home-news__card {
          grid-template-columns: 1fr;
        }

        .home-news__thumb {
          height: 120px;
        }
      }