/*
   666UI visual refresh
   Direction: search-first resource library with a calm ink and jade palette.
   The rules are additive so existing WebForms templates, URLs, and data bindings
   remain intact.
*/

:root {
    --ui-ink: #142238;
    --ui-ink-2: #1d304b;
    --ui-ink-3: #2d4665;
    --ui-text: #1b2a3d;
    --ui-muted: #718096;
    --ui-bg: #f3f6fa;
    --ui-surface: #ffffff;
    --ui-surface-soft: #f8fafc;
    --ui-line: #e2e9f1;
    --ui-line-strong: #cfd9e5;
    --ui-accent: #18b889;
    --ui-accent-deep: #0d916b;
    --ui-accent-soft: #dff7ed;
    --ui-shadow-sm: 0 2px 12px rgba(19, 36, 59, .06);
    --ui-shadow: 0 14px 38px rgba(19, 36, 59, .10);
    --ui-radius: 14px;
    --ui-radius-lg: 20px;
    --ui-max: 1400px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-width: 0 !important;
    width: 100%;
    background: var(--ui-bg) !important;
    color: var(--ui-text);
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
}

body {
    overflow-x: hidden;
    text-align: left;
    line-height: 1.55;
}

body.ui-redesign a {
    color: inherit;
    text-decoration: none;
}

body.ui-redesign img {
    max-width: 100%;
}

body.ui-redesign :focus-visible {
    outline: 3px solid rgba(24, 184, 137, .42);
    outline-offset: 3px;
}

body.ui-redesign .all,
body.ui-redesign .center,
body.ui-redesign .center2,
body.ui-redesign .center3,
body.ui-redesign .center4 {
    min-width: 0 !important;
    width: min(var(--ui-max), calc(100% - 48px));
    max-width: var(--ui-max);
    margin-left: auto;
    margin-right: auto;
}

body.ui-redesign .all {
    width: 100%;
    max-width: none;
    background: var(--ui-bg);
}

body.ui-redesign .content {
    background: var(--ui-bg) !important;
}

/* Shared header on list, detail, article, and user pages. */
body.ui-redesign:not(.home-page) .header {
    position: sticky;
    top: 0;
    z-index: 900;
    width: 100%;
    padding: 14px 0 0;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--ui-line);
    box-shadow: 0 4px 18px rgba(19, 36, 59, .05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

body.ui-redesign:not(.home-page) .top {
    height: auto !important;
}

body.ui-redesign .header .container-fluid {
    width: min(var(--ui-max), calc(100% - 48px));
}

body.ui-redesign .header .top1 {
    align-items: center;
    gap: 24px;
}

body.ui-redesign .header .logo,
body.ui-redesign .sheader .logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 12px;
}

body.ui-redesign .header .logo > a:first-child img,
body.ui-redesign .sheader .logo > a:first-child img {
    display: block;
    width: auto;
    max-width: 154px;
    height: auto;
    max-height: 42px;
    object-fit: contain;
}

body.ui-redesign .logo .wzdh,
body.ui-redesign .sheader .wzdh {
    width: auto;
    max-width: 94px;
    max-height: 30px;
    padding-left: 0;
    object-fit: contain;
}

body.ui-redesign .header .top-c {
    min-width: 0;
    flex: 1 1 auto;
}

body.ui-redesign .header .top-r {
    left: 0;
    gap: 8px;
    flex: 0 0 auto;
}

body.ui-redesign .header .top-r1,
body.ui-redesign .header .top-r2 {
    padding: 0;
}

body.ui-redesign .header .top-ss {
    width: 100%;
    height: 44px;
    overflow: visible;
    border: 1px solid var(--ui-line-strong);
    border-radius: 12px;
    background: var(--ui-surface);
    box-shadow: var(--ui-shadow-sm);
}

body.ui-redesign .header .top-ss1 {
    min-width: 100px;
    padding: 0 14px;
    color: var(--ui-ink-3);
}

body.ui-redesign .header .top-ss1:after {
    background: var(--ui-line);
}

body.ui-redesign .header .top-ssline {
    color: var(--ui-ink-3);
    font-size: 14px;
}

body.ui-redesign .header .top-ss input {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    padding: 0 14px;
    color: var(--ui-text);
    background: transparent;
    font-size: 14px;
}

body.ui-redesign .header .top-ss input::placeholder {
    color: #9aa8b8;
}

body.ui-redesign .header .top-ss button {
    width: 86px;
    height: 36px;
    margin-right: 4px;
    border-radius: 9px;
    background: var(--ui-accent);
    color: #fff;
    font-size: 14px;
    transition: background .2s ease, transform .2s ease;
}

body.ui-redesign .header .top-ss button:hover {
    opacity: 1;
    background: var(--ui-accent-deep);
    transform: translateY(-1px);
}

body.ui-redesign .header .top2 {
    width: 100%;
    max-width: none;
    margin-top: 12px;
    padding: 0 0 2px;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
}

body.ui-redesign .header .top2::-webkit-scrollbar {
    display: none;
}

body.ui-redesign .header a.tnav-link {
    padding: 8px 0 11px;
    color: var(--ui-muted);
    font-size: 14px;
    white-space: nowrap;
}

body.ui-redesign .header a.tnav-link:hover,
body.ui-redesign .header a.tnav-link.active {
    color: var(--ui-ink);
}

body.ui-redesign .header a.tnav-link.active:after {
    width: 24px;
    height: 3px;
    bottom: 0;
    border-radius: 4px;
    background: var(--ui-accent);
}

body.ui-redesign .top-r3 a {
    padding: 7px 12px;
    border-radius: 9px;
    color: var(--ui-muted);
    font-size: 14px;
}

body.ui-redesign .top-r3 a.active,
body.ui-redesign .top-r3 a:hover {
    background: var(--ui-accent-soft);
    color: var(--ui-accent-deep);
    opacity: 1;
}

body.ui-redesign .tr2-item {
    padding: 0 4px;
}

body.ui-redesign a.tr2-link {
    color: var(--ui-accent-deep);
    font-size: 13px;
}

/* Homepage hero and search surface. */
body.ui-redesign.home-page .stop {
    z-index: 1;
    margin-bottom: 0;
    padding: 24px 0 32px;
    background-color: var(--ui-ink);
    background-image:
        radial-gradient(circle at 12% 12%, rgba(72, 211, 167, .22), transparent 32%),
        radial-gradient(circle at 92% 8%, rgba(67, 112, 190, .32), transparent 36%),
        linear-gradient(130deg, #101b31 0%, #152d49 54%, #123d4e 100%);
}

body.ui-redesign.home-page .sheader {
    width: min(var(--ui-max), calc(100% - 48px));
    padding: 0;
}

body.ui-redesign.home-page .st1 {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 32px;
    padding: 10px 0 26px;
}

body.ui-redesign.home-page .sheader .logo > a:first-child img {
    max-width: 170px;
    max-height: 52px;
    filter: brightness(0) invert(1);
}

body.ui-redesign.home-page .sheader .logo .wzdh {
    max-width: 90px;
    filter: brightness(0) invert(1);
    opacity: .9;
}

body.ui-redesign.home-page .sousuo {
    width: 100%;
    min-width: 0;
}

body.ui-redesign.home-page .ssform {
    width: 100%;
}

body.ui-redesign.home-page .ssb {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 58px;
    padding: 4px;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 14px 36px rgba(5, 19, 38, .20);
}

body.ui-redesign.home-page .ssb > div {
    float: none;
    height: auto;
}

body.ui-redesign.home-page .ssb1 {
    display: flex;
    align-items: center;
    min-width: 112px;
    padding: 0 14px;
    color: var(--ui-ink-3);
}

body.ui-redesign.home-page .ssb1:after {
    background: var(--ui-line);
}

body.ui-redesign.home-page .ssb11 {
    width: 100%;
}

body.ui-redesign.home-page .ssb11-btn {
    justify-content: space-between;
    width: 100%;
    color: var(--ui-ink-3);
    font-size: 14px;
}

body.ui-redesign.home-page .ssb11-btn i {
    color: #91a0b2;
}

body.ui-redesign.home-page .ssb11-box {
    top: calc(100% + 10px);
    left: -8px;
    z-index: 50;
    min-width: 150px;
    max-height: 320px;
    overflow-y: auto;
    padding: 8px;
    border: 1px solid var(--ui-line);
    border-radius: 12px;
    box-shadow: var(--ui-shadow);
}

body.ui-redesign.home-page .ssb11-box a {
    padding: 8px 11px;
    border-radius: 8px;
    color: var(--ui-text);
    font-size: 14px;
}

body.ui-redesign.home-page .ssb11-box a:hover {
    background: var(--ui-accent-soft);
    color: var(--ui-accent-deep);
}

body.ui-redesign.home-page .ssb2 {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
}

body.ui-redesign.home-page .ssb2 input {
    width: 100%;
    min-width: 0;
    padding: 0 14px;
    color: var(--ui-text);
    font-size: 16px;
}

body.ui-redesign.home-page .ssb2 input::placeholder {
    color: #9aa8b8;
}

body.ui-redesign.home-page .ssb3 {
    display: flex;
    align-items: center;
}

body.ui-redesign.home-page .ssb3 button {
    width: 108px;
    min-height: 48px;
    border-radius: 12px;
    background: var(--ui-accent);
    font-size: 15px;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease;
}

body.ui-redesign.home-page .ssb3 button:hover {
    opacity: 1;
    background: var(--ui-accent-deep);
    transform: translateY(-1px);
}

body.ui-redesign.home-page .ssb3 button img {
    width: 16px;
    margin-right: 5px;
    filter: brightness(0) invert(1);
}

body.ui-redesign.home-page .skws {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 0;
}

body.ui-redesign.home-page .skws-item {
    float: none;
    padding: 0;
    line-height: 1;
}

body.ui-redesign.home-page .skws-item + div {
    border-left: 0;
}

body.ui-redesign.home-page a.skws-link {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 999px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .08);
    font-size: 12px;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

body.ui-redesign.home-page a.skws-link:hover {
    color: #fff;
    background: rgba(24, 184, 137, .22);
    border-color: rgba(88, 230, 187, .66);
    opacity: 1;
}

body.ui-redesign.home-page .st2 {
    position: relative;
    z-index: 10;
    margin: 0;
    padding: 10px 14px 14px;
    border: 1px solid rgba(214, 225, 236, .9);
    border-radius: var(--ui-radius-lg);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 40px rgba(5, 19, 38, .14);
}

body.ui-redesign.home-page .st2a {
    align-items: center;
    min-height: 48px;
    margin: 0;
    padding: 0 4px;
    border-bottom: 1px solid var(--ui-line);
    font-size: 14px;
}

body.ui-redesign.home-page .st-nav {
    min-width: 0;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

body.ui-redesign.home-page .st-nav::-webkit-scrollbar {
    display: none;
}

body.ui-redesign.home-page .stnav-item {
    padding: 9px 12px;
}

body.ui-redesign.home-page .stnav-link {
    color: var(--ui-muted) !important;
    font-size: 14px;
    white-space: nowrap;
}

body.ui-redesign.home-page .stnav-item:hover .stnav-link,
body.ui-redesign.home-page .stnav-item:first-child .stnav-link {
    color: var(--ui-ink) !important;
}

body.ui-redesign.home-page .st2 .stnav-link:before {
    bottom: -11px;
    height: 3px;
    border-radius: 4px;
    background: var(--ui-accent);
}

body.ui-redesign.home-page .stnav-item:hover .stnav-link:before {
    width: 70%;
}

body.ui-redesign.home-page .st21 {
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
}

body.ui-redesign.home-page .st21-item {
    padding: 0 4px;
}

body.ui-redesign.home-page .st211 {
    padding: 0;
}

body.ui-redesign.home-page .st211 a {
    padding: 5px 8px;
    border: 0;
    border-radius: 8px;
    color: var(--ui-muted);
}

body.ui-redesign.home-page .st211 a:hover {
    color: var(--ui-accent-deep);
    background: var(--ui-accent-soft);
}

body.ui-redesign.home-page .st211 img {
    width: 22px;
    margin: 0;
}

body.ui-redesign.home-page .st2b {
    padding-top: 14px;
}

body.ui-redesign.home-page .banner {
    border-radius: 16px;
    background: var(--ui-surface-soft);
}

body.ui-redesign.home-page .banpa {
    height: clamp(220px, 28vw, 400px);
    min-height: 220px;
}

body.ui-redesign.home-page .banner .carousel-indicators {
    bottom: 12px;
    margin-bottom: 0;
}

body.ui-redesign.home-page .banner .carousel-indicators li {
    width: 7px;
    height: 7px;
    margin: 0 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .75);
}

body.ui-redesign.home-page .banner .carousel-indicators li.active {
    width: 24px;
    background: var(--ui-accent);
}

body.ui-redesign.home-page a.banprev,
body.ui-redesign.home-page a.bannext {
    width: 48px;
    color: #fff;
}

body.ui-redesign.home-page a.banprev:hover,
body.ui-redesign.home-page a.bannext:hover {
    background: rgba(10, 24, 44, .18);
}

body.ui-redesign.home-page .st2c {
    padding: 12px 4px 0;
}

body.ui-redesign.home-page .st2c-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
}

body.ui-redesign.home-page .st2c-item {
    min-width: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.3;
}

body.ui-redesign.home-page .st2c-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid var(--ui-line);
    border-radius: 12px;
    color: var(--ui-ink-3);
    background: var(--ui-surface-soft);
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

body.ui-redesign.home-page .st2c-item a:hover {
    color: var(--ui-accent-deep);
    border-color: rgba(24, 184, 137, .45);
    background: var(--ui-accent-soft);
    transform: translateY(-2px);
    opacity: 1;
}

body.ui-redesign.home-page .st2c-item img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

body.ui-redesign.home-page .st2c-item i {
    display: inline-flex;
    margin: 0;
    color: var(--ui-accent);
    font-size: 23px;
}

/* Home content sections. */
body.ui-redesign.home-page .sbot {
    width: min(var(--ui-max), calc(100% - 48px));
    padding: 18px 0 10px;
}

body.ui-redesign.home-page .box {
    margin: 0;
    padding: 34px 0 4px;
}

body.ui-redesign.home-page .btop {
    align-items: baseline;
    padding: 12px 0 18px;
}

body.ui-redesign.home-page .btop-tit {
    color: var(--ui-ink);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
}

body.ui-redesign.home-page .btop-btn a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 0;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--ui-accent-deep);
    font-size: 13px;
}

body.ui-redesign.home-page .btop-btn a:hover {
    background: var(--ui-accent-soft);
    opacity: 1;
}

body.ui-redesign.home-page .sblist {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
}

body.ui-redesign.home-page .sbitem {
    width: auto;
    max-width: none;
    flex: none;
    padding: 0;
}

body.ui-redesign.home-page .sbb {
    position: relative;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--ui-line);
    border-radius: var(--ui-radius);
    background: var(--ui-surface);
    box-shadow: var(--ui-shadow-sm);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

body.ui-redesign.home-page .sbb:hover {
    border-color: rgba(24, 184, 137, .42);
    box-shadow: var(--ui-shadow);
    transform: translateY(-4px);
}

body.ui-redesign.home-page .sbb1,
body.ui-redesign.home-page .sbbimg {
    width: 100%;
    height: 100%;
}

body.ui-redesign.home-page .sbbimg {
    background: #e9eff5;
}

body.ui-redesign.home-page .sbbimg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

body.ui-redesign.home-page .sbb:hover .sbbimg img {
    transform: scale(1.045);
}

body.ui-redesign.home-page .sbb2 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 2;
    padding: 16px;
    color: #fff;
    background: rgba(10, 27, 47, .60);
    font-size: 14px;
    line-height: 1.5;
    opacity: 0;
    transition: opacity .2s ease;
}

body.ui-redesign.home-page .sbb:hover .sbb2,
body.ui-redesign.home-page .sbb:focus-within .sbb2 {
    opacity: 1;
}

body.ui-redesign.home-page .sbb3 {
    z-index: 3;
    height: auto;
    min-height: 56px;
    padding: 28px 14px 12px;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(8, 22, 39, .84));
    font-size: 14px;
}

body.ui-redesign.home-page .sbb3 .ellipsis {
    top: 0;
    line-height: 1.35;
}

body.ui-redesign.home-page .s1 .sblist {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

body.ui-redesign.home-page .s1 .sbitem {
    grid-column: span 3;
}

body.ui-redesign.home-page .s1 .sbitem:first-child {
    grid-column: span 6;
}

body.ui-redesign.home-page .s1 .sbitem:first-child .sbb {
    aspect-ratio: 16 / 9;
}

body.ui-redesign.home-page .s1 .sbitem:nth-child(2),
body.ui-redesign.home-page .s1 .sbitem:nth-child(3) {
    grid-column: span 3;
}

body.ui-redesign.home-page .s1 .sbitem:nth-child(n + 5) {
    grid-column: span 3;
}

/* Partner strip and footer. */
body.ui-redesign.home-page .hzhb {
    width: 100%;
    margin-top: 42px;
    padding: 30px 0 34px;
    border-top: 1px solid var(--ui-line);
    border-bottom: 1px solid var(--ui-line);
    background: var(--ui-surface);
}

body.ui-redesign.home-page .hzhb .container-fluid {
    width: min(var(--ui-max), calc(100% - 48px));
}

body.ui-redesign.home-page .hb-tit {
    padding: 0 0 18px;
    color: var(--ui-ink);
    font-size: 20px;
    font-weight: 700;
}

body.ui-redesign.home-page .hbitem {
    flex: 0 0 240px;
    width: 240px;
    height: 116px;
    padding: 0 8px;
}

body.ui-redesign.home-page .hbb {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 0 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--ui-line-strong) transparent;
}

body.ui-redesign.home-page .hblist.ui-partner-track {
    display: flex;
    width: max-content;
    margin-left: -8px !important;
    float: none;
}

body.ui-redesign.home-page .hblist.ui-partner-track .hbitem {
    float: none;
}

body.ui-redesign.home-page a.hblink {
    border: 1px solid var(--ui-line);
    border-radius: 12px;
    background: var(--ui-surface-soft);
}

body.ui-redesign.home-page .hbimg {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

body.ui-redesign.home-page .hbimg img {
    width: 100%;
    height: 88px;
    object-fit: contain;
}

body.ui-redesign.home-page .hbms {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 34, 56, .88);
    font-size: 13px;
}

body.ui-redesign.home-page .sbf {
    width: 100%;
    color: rgba(255, 255, 255, .76);
    background: var(--ui-ink);
}

body.ui-redesign.home-page .sbf .container-fluid {
    width: min(var(--ui-max), calc(100% - 48px));
}

body.ui-redesign.home-page .sbf1 {
    padding: 42px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

body.ui-redesign.home-page .sbf table {
    width: 100%;
}

body.ui-redesign.home-page .sbf td {
    padding: 5px 12px 5px 26px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

body.ui-redesign.home-page .sbf td.sbf-logo {
    width: 190px;
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

body.ui-redesign.home-page .sbf td.sbf-logo img {
    width: 150px;
    filter: brightness(0) invert(1);
    opacity: .92;
}

body.ui-redesign.home-page .sbf td a:hover {
    color: #fff;
    opacity: 1;
}

body.ui-redesign.home-page .bot1,
body.ui-redesign.home-page .bot2 {
    background: var(--ui-ink);
}

body.ui-redesign.home-page .bot1b {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

body.ui-redesign.home-page .bot2b {
    padding: 18px 0 26px;
}

body.ui-redesign.home-page .bq,
body.ui-redesign.home-page .bq a {
    color: rgba(255, 255, 255, .60);
    font-size: 12px;
}

body.ui-redesign.home-page .bot11 a {
    border-color: rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .76);
}

body.ui-redesign.home-page .bot11 a:hover {
    color: #fff;
    border-color: rgba(24, 184, 137, .60);
    background: rgba(24, 184, 137, .12);
}

/* Floating rail. */
body.ui-redesign .aside {
    right: 24px;
    bottom: 32px;
    overflow: hidden;
    border: 1px solid var(--ui-line);
    border-radius: 14px;
    box-shadow: var(--ui-shadow);
    background: var(--ui-surface);
}

body.ui-redesign a.aside-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-top-color: var(--ui-line);
    color: var(--ui-muted);
    font-size: 11px;
    transition: color .2s ease, background .2s ease;
}

body.ui-redesign a.aside-link:hover {
    color: var(--ui-accent-deep);
    background: var(--ui-accent-soft);
    opacity: 1;
}

/* List pages. */
body.ui-redesign .mctop {
    width: min(var(--ui-max), calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 0;
}

body.ui-redesign .mc-btns {
    color: var(--ui-muted);
    font-size: 13px;
}

body.ui-redesign .mc-btns a {
    color: var(--ui-ink-3);
}

body.ui-redesign .mc-btns a:hover {
    color: var(--ui-accent-deep);
}

body.ui-redesign .mcbox,
body.ui-redesign .mcb {
    width: 100%;
}

body.ui-redesign .cpm {
    overflow: hidden;
    border: 1px solid var(--ui-line);
    border-radius: var(--ui-radius-lg);
    background: var(--ui-surface);
    box-shadow: var(--ui-shadow-sm);
}

body.ui-redesign .cpmt {
    height: 142px;
    background-color: var(--ui-ink);
}

body.ui-redesign .cpmt1 {
    display: flex;
    align-items: flex-end;
    padding: 22px 28px;
    color: #fff;
    background: linear-gradient(90deg, rgba(10, 26, 46, .82), rgba(10, 26, 46, .20));
    font-size: 26px;
    font-weight: 700;
    text-align: left;
}

body.ui-redesign .cpmb {
    padding: 22px 26px;
    background: var(--ui-surface);
}

body.ui-redesign .list-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
}

body.ui-redesign .list-line + .list-line {
    border-top: 1px solid var(--ui-line);
}

body.ui-redesign .list-t {
    flex: 0 0 58px;
    width: 58px;
    color: var(--ui-ink-3);
    font-size: 14px;
    font-weight: 600;
}

body.ui-redesign .listc-b {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    min-width: 0;
}

body.ui-redesign .cpm-item {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin: 0;
    padding: 4px 10px;
    border-radius: 8px;
    color: var(--ui-muted);
    background: transparent;
    font-size: 13px;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

body.ui-redesign .cpm-item:hover,
body.ui-redesign .cpm-item.active {
    color: var(--ui-accent-deep);
    background: var(--ui-accent-soft);
    opacity: 1;
}

body.ui-redesign .list-tit {
    padding: 22px 0 14px;
}

body.ui-redesign .list-tit1 {
    color: var(--ui-ink);
    font-size: 18px;
    font-weight: 700;
}

body.ui-redesign a.list-btn {
    padding: 6px 12px;
    border: 1px solid var(--ui-line-strong);
    border-radius: 8px;
    color: var(--ui-muted);
    font-size: 13px;
}

body.ui-redesign a.list-btn:hover {
    color: var(--ui-accent-deep);
    border-color: rgba(24, 184, 137, .45);
    background: var(--ui-accent-soft);
    opacity: 1;
}

body.ui-redesign .listb {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    margin: 0;
    padding: 0;
    border-collapse: separate;
}

body.ui-redesign .listb tbody,
body.ui-redesign .listb tr,
body.ui-redesign .listb td,
body.ui-redesign .listb .lie {
    display: contents !important;
}

body.ui-redesign .listb a.cplink {
    display: block;
    min-width: 0;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid var(--ui-line);
    border-radius: var(--ui-radius);
    background: var(--ui-surface);
    box-shadow: var(--ui-shadow-sm);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

body.ui-redesign .listb a.cplink:hover {
    border-color: rgba(24, 184, 137, .42);
    box-shadow: var(--ui-shadow);
    transform: translateY(-4px);
    opacity: 1;
}

body.ui-redesign .listb .cpb {
    overflow: hidden;
}

body.ui-redesign .listb .cpimg {
    height: auto;
    aspect-ratio: 4 / 3;
    background-color: var(--ui-surface-soft);
}

body.ui-redesign .listb .cpimg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

body.ui-redesign .listb a.cplink:hover .cpimg img {
    transform: scale(1.045);
}

body.ui-redesign .listb .cpwz {
    position: relative;
    bottom: auto;
    width: 100%;
    min-height: 62px;
    padding: 10px 12px 12px;
    color: var(--ui-text);
    background: var(--ui-surface);
    opacity: 1;
}

body.ui-redesign .listb .cpbtn {
    display: none;
}

body.ui-redesign .listb .cpbt {
    position: static;
    color: var(--ui-text);
    font-size: 13px;
    line-height: 1.45;
}

body.ui-redesign .listbot {
    padding: 34px 0 58px;
}

body.ui-redesign .page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
}

body.ui-redesign .page a,
body.ui-redesign .page span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 36px;
    margin: 0;
    padding: 5px 11px;
    border: 1px solid var(--ui-line);
    border-radius: 9px;
    color: var(--ui-muted);
    background: var(--ui-surface);
    font-size: 13px;
}

body.ui-redesign .page a:hover,
body.ui-redesign .page span {
    color: #fff;
    border-color: var(--ui-accent);
    background: var(--ui-accent);
    opacity: 1;
}

/* Detail page. */
body.ui-redesign .news {
    width: min(var(--ui-max), calc(100% - 48px));
    margin: 0 auto;
}

body.ui-redesign .newsb {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(290px, .78fr);
    gap: 24px;
    margin: 0;
}

body.ui-redesign .newsl,
body.ui-redesign .newsr {
    width: auto;
    max-width: none;
    flex: none;
    padding: 0;
}

body.ui-redesign .newsr {
    position: sticky;
    top: 100px;
    align-self: start;
}

body.ui-redesign .news-wz,
body.ui-redesign .xiazai,
body.ui-redesign .xinxi {
    border: 1px solid var(--ui-line);
    border-radius: var(--ui-radius-lg);
    background: var(--ui-surface);
    box-shadow: var(--ui-shadow-sm);
}

body.ui-redesign .news-wz {
    padding: 24px;
}

body.ui-redesign .news-tit {
    margin-bottom: 18px;
    color: var(--ui-ink);
    font-size: 25px;
    line-height: 1.35;
}

body.ui-redesign .news-cont {
    padding: 0;
}

body.ui-redesign .news-cont img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: zoom-in;
}

body.ui-redesign .xiazai {
    margin-bottom: 14px;
    padding: 20px;
    color: var(--ui-muted);
    font-size: 14px;
}

body.ui-redesign .xiazai strong {
    color: var(--ui-ink);
}

body.ui-redesign .xiazai img {
    width: 18px;
    margin-right: 4px;
}

body.ui-redesign a.xzbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: 16px;
    padding: 10px 18px;
    border-radius: 10px;
    color: #fff;
    background: var(--ui-accent);
    font-size: 15px;
    font-weight: 700;
    transition: background .2s ease, transform .2s ease;
}

body.ui-redesign a.xzbtn:hover {
    color: #fff;
    background: var(--ui-accent-deep);
    transform: translateY(-1px);
    opacity: 1;
}

body.ui-redesign .xinxi {
    margin-bottom: 14px;
    padding: 20px;
    color: var(--ui-muted);
    font-size: 13px;
    line-height: 1.8;
}

body.ui-redesign .htj-tit {
    padding: 16px 0 12px;
    color: var(--ui-ink);
    font-size: 17px;
    font-weight: 700;
}

body.ui-redesign .htj-tit a.more {
    color: var(--ui-accent-deep);
    font-size: 12px;
    font-weight: 400;
}

body.ui-redesign .htj-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
}

body.ui-redesign .htj-item {
    width: auto;
    max-width: none;
    padding: 0;
}

body.ui-redesign .htj-item a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--ui-line);
}

body.ui-redesign .htj-item .bg {
    aspect-ratio: 1 / 1;
}

body.ui-redesign .newsb2 {
    margin-top: 24px;
    padding: 24px 0 58px;
    border-top: 1px solid var(--ui-line);
}

body.ui-redesign .newsb2 .ntj-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
}

body.ui-redesign .newsb2 .ntj-item {
    width: auto;
    padding: 0;
}

body.ui-redesign .newsb2 a.cplink {
    display: block;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--ui-line);
    border-radius: var(--ui-radius);
    background: var(--ui-surface);
}

body.ui-redesign .newsb2 .cpimg {
    aspect-ratio: 4 / 3;
}

body.ui-redesign .newsb2 .cpwz {
    position: relative;
    bottom: auto;
    min-height: 58px;
    padding: 10px;
    opacity: 1;
    background: var(--ui-surface);
}

body.ui-redesign .newsb2 .cpbtn {
    display: none;
}

body.ui-redesign .newsb2 .cpbt {
    position: static;
    color: var(--ui-text);
    font-size: 13px;
}

/* Login, download and lightbox surfaces. */
body.ui-redesign .modal-content {
    overflow: hidden;
    border: 1px solid var(--ui-line);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(5, 19, 38, .24);
}

body.ui-redesign #usercz .modal-body {
    background-color: var(--ui-surface);
}

body.ui-redesign #usercz .btn5,
body.ui-redesign #downcz .down-czbtn {
    border-radius: 9px;
    background: var(--ui-accent);
}

body.ui-redesign #usercz .btn5:hover,
body.ui-redesign #downcz .down-czbtn:hover {
    background: var(--ui-accent-deep);
}

body.ui-redesign .ui-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: min(420px, calc(100vw - 32px));
    padding: 11px 16px;
    border: 1px solid rgba(24, 184, 137, .30);
    border-radius: 10px;
    color: #fff;
    background: rgba(20, 34, 56, .96);
    box-shadow: var(--ui-shadow);
    font-size: 14px;
    transform: translate(-50%, 18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
}

body.ui-redesign .ui-toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

body.ui-redesign .ui-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(9, 20, 35, .88);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

body.ui-redesign .ui-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

body.ui-redesign .ui-lightbox img {
    display: block;
    max-width: min(1200px, 94vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .36);
}

body.ui-redesign .ui-lightbox-close {
    position: absolute;
    top: 20px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: #fff;
    background: rgba(20, 34, 56, .66);
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

/* Injected mobile menu control. */
body.ui-redesign .ui-menu-toggle {
    display: none;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 11px;
    border: 1px solid var(--ui-line);
    border-radius: 9px;
    color: var(--ui-ink-3);
    background: var(--ui-surface);
    font-size: 13px;
    cursor: pointer;
}

body.ui-redesign .ui-menu-toggle i {
    margin-right: 5px;
    color: var(--ui-accent-deep);
}

body.ui-redesign .ui-search-holder {
    position: relative;
    min-width: 0;
}

body.ui-redesign .ui-search-clear {
    position: absolute;
    top: 50%;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--ui-muted);
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%);
    cursor: pointer;
}

body.ui-redesign .ui-search-clear.is-visible {
    opacity: 1;
    pointer-events: auto;
}

body.ui-redesign .ui-search-clear:hover {
    color: var(--ui-ink);
    background: var(--ui-bg);
}

body.ui-redesign .ui-card-host {
    position: relative;
}

body.ui-redesign .ui-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    color: #fff;
    background: rgba(20, 34, 56, .54);
    box-shadow: 0 4px 12px rgba(5, 19, 38, .16);
    cursor: pointer;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

body.ui-redesign .ui-favorite:hover {
    color: var(--ui-accent);
    background: #fff;
    transform: scale(1.05);
}

body.ui-redesign .ui-favorite.is-favorite {
    color: #fff;
    border-color: var(--ui-accent);
    background: var(--ui-accent);
}

body.ui-redesign.ui-nav-open .header .top2 {
    display: flex !important;
    flex-wrap: wrap;
    padding: 8px 0 10px;
}

body.ui-redesign.home-page.ui-nav-open .stnav-box {
    position: static;
    display: none !important;
}

body.ui-redesign.home-page.ui-nav-open .stnav-item:hover .stnav-box {
    display: none !important;
}

body.ui-redesign .ui-nav-backdrop {
    display: none;
}

/* Navigation page has its own stylesheet, but shares the same tokens. */
body.ui-redesign.body-website {
    min-width: 0 !important;
    background: var(--ui-bg) !important;
}

body.ui-redesign.body-website .header {
    position: relative;
    min-height: 330px;
    padding: 34px 0 46px;
    background-color: var(--ui-ink) !important;
    background-image: linear-gradient(140deg, #102039, #173453 62%, #145646) !important;
}

body.ui-redesign.body-website .header .container {
    width: min(1200px, calc(100% - 36px));
    max-width: 1200px;
}

body.ui-redesign.body-website .primary-menus {
    max-width: 860px;
    margin: 34px auto 0;
}

body.ui-redesign.body-website .primary-menus .selects {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

body.ui-redesign.body-website .primary-menus .selects li {
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: rgba(255, 255, 255, .76);
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
}

body.ui-redesign.body-website .primary-menus .selects li.current,
body.ui-redesign.body-website .primary-menus .selects li:hover {
    color: #fff;
    border-color: rgba(93, 235, 193, .66);
    background: rgba(24, 184, 137, .22);
}

body.ui-redesign.body-website .primary-menus .cont {
    position: relative;
    margin-top: 12px;
    padding: 5px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(5, 19, 38, .20);
}

body.ui-redesign.body-website .primary-menus .search {
    display: flex;
    gap: 6px;
}

body.ui-redesign.body-website .primary-menus .search .s {
    min-width: 0;
    flex: 1 1 auto;
    height: 48px;
    padding: 0 15px;
    border: 0;
    outline: 0;
    color: var(--ui-text);
    font-size: 15px;
}

body.ui-redesign.body-website .primary-menus .search .btn {
    width: 90px;
    height: 48px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: var(--ui-accent);
}

body.ui-redesign.body-website .header-bar {
    background: var(--ui-surface);
    border-bottom: 1px solid var(--ui-line);
}

body.ui-redesign.body-website .content {
    background: var(--ui-bg) !important;
}

body.ui-redesign.body-website .content .container {
    width: min(1200px, calc(100% - 36px));
    max-width: 1200px;
}

body.ui-redesign.body-website .part {
    margin: 24px 0;
    padding: 20px;
    border: 1px solid var(--ui-line);
    border-radius: var(--ui-radius-lg);
    background: var(--ui-surface);
    box-shadow: var(--ui-shadow-sm);
}

body.ui-redesign.body-website .part h2 {
    margin: 0 0 14px;
    color: var(--ui-ink);
    font-size: 20px;
}

body.ui-redesign.body-website .part .item {
    min-height: 146px;
    padding: 14px 10px;
    border: 1px solid var(--ui-line);
    border-radius: 12px;
    background: var(--ui-surface-soft);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

body.ui-redesign.body-website .part .item:hover {
    border-color: rgba(24, 184, 137, .42);
    box-shadow: var(--ui-shadow-sm);
    transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
    body.ui-redesign *,
    body.ui-redesign *:before,
    body.ui-redesign *:after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (max-width: 1199px) {
    body.ui-redesign .listb {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    body.ui-redesign.home-page .sblist {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.ui-redesign.home-page .s1 .sblist {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    body.ui-redesign.home-page .s1 .sbitem,
    body.ui-redesign.home-page .s1 .sbitem:first-child,
    body.ui-redesign.home-page .s1 .sbitem:nth-child(2),
    body.ui-redesign.home-page .s1 .sbitem:nth-child(3),
    body.ui-redesign.home-page .s1 .sbitem:nth-child(n + 5) {
        grid-column: span 2;
    }

    body.ui-redesign.home-page .s1 .sbitem:first-child {
        grid-column: span 4;
    }
}

@media (max-width: 991px) {
    body.ui-redesign .all,
    body.ui-redesign .center,
    body.ui-redesign .center2,
    body.ui-redesign .center3,
    body.ui-redesign .center4,
    body.ui-redesign .header .container-fluid,
    body.ui-redesign.home-page .sheader,
    body.ui-redesign.home-page .sbot,
    body.ui-redesign.home-page .hzhb .container-fluid,
    body.ui-redesign.home-page .sbf .container-fluid,
    body.ui-redesign .mctop,
    body.ui-redesign .news {
        width: min(100% - 32px, var(--ui-max));
    }

    body.ui-redesign .header .top1 {
        gap: 12px;
    }

    body.ui-redesign .header .top-r2 {
        display: none;
    }

    body.ui-redesign .newsb {
        grid-template-columns: minmax(0, 1fr) minmax(270px, .62fr);
    }

    body.ui-redesign .newsb2 .ntj-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    body.ui-redesign .all,
    body.ui-redesign .center,
    body.ui-redesign .center2,
    body.ui-redesign .center3,
    body.ui-redesign .center4,
    body.ui-redesign .header .container-fluid,
    body.ui-redesign.home-page .sheader,
    body.ui-redesign.home-page .sbot,
    body.ui-redesign.home-page .hzhb .container-fluid,
    body.ui-redesign.home-page .sbf .container-fluid,
    body.ui-redesign .mctop,
    body.ui-redesign .news {
        width: calc(100% - 32px);
    }

    body.ui-redesign:not(.home-page) .header {
        padding-top: 10px;
    }

    body.ui-redesign .header .top1 {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
    }

    body.ui-redesign .header .logo .logo-fl,
    body.ui-redesign .header .logo .wzdh {
        display: none;
    }

    body.ui-redesign .header .logo > a:first-child img {
        max-width: 122px;
        max-height: 34px;
    }

    body.ui-redesign .header .top-r {
        display: block;
    }

    body.ui-redesign .header .top-r3 a {
        padding: 6px 8px;
        font-size: 12px;
    }

    body.ui-redesign .header .top-ss {
        height: 40px;
    }

    body.ui-redesign .header .top-ss1 {
        min-width: 72px;
        padding: 0 8px;
    }

    body.ui-redesign .header .top-ss button {
        width: 58px;
        height: 32px;
        font-size: 0;
    }

    body.ui-redesign .header .top-ss button img {
        margin: 0;
    }

    body.ui-redesign .header .top2 {
        display: none;
    }

    body.ui-redesign .ui-menu-toggle {
        display: inline-flex;
    }

    body.ui-redesign.home-page .stop {
        padding-top: 16px;
    }

    body.ui-redesign.home-page .st1 {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-bottom: 18px;
    }

    body.ui-redesign.home-page .sheader .logo {
        justify-content: space-between;
    }

    body.ui-redesign.home-page .sheader .logo > a:first-child img {
        max-width: 138px;
        max-height: 42px;
    }

    body.ui-redesign.home-page .ssb {
        min-height: 52px;
    }

    body.ui-redesign.home-page .ssb1 {
        min-width: 86px;
        padding: 0 9px;
    }

    body.ui-redesign.home-page .ssb3 button {
        width: 74px;
        min-height: 44px;
        font-size: 0;
    }

    body.ui-redesign.home-page .ssb3 button img {
        margin: 0;
    }

    body.ui-redesign.home-page .st2 {
        padding: 8px;
        border-radius: 16px;
    }

    body.ui-redesign.home-page .st2a {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding-bottom: 8px;
    }

    body.ui-redesign.home-page .st-nav {
        display: none;
        width: 100%;
        flex-wrap: wrap;
        overflow: visible;
        padding: 4px;
        border: 1px solid var(--ui-line);
        border-radius: 12px;
        background: var(--ui-surface-soft);
    }

    body.ui-redesign.home-page.ui-nav-open .st-nav {
        display: flex;
    }

    body.ui-redesign.home-page .stnav-item {
        padding: 7px 9px;
    }

    body.ui-redesign.home-page .st21 {
        margin-left: auto;
    }

    body.ui-redesign.home-page .st2b {
        padding-top: 10px;
    }

    body.ui-redesign.home-page .banpa {
        height: 49vw;
        min-height: 178px;
    }

    body.ui-redesign.home-page .st2c-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.ui-redesign.home-page .st2c-item a {
        min-height: 52px;
        padding: 7px 5px;
        font-size: 12px;
    }

    body.ui-redesign.home-page .st2c-item i {
        font-size: 19px;
    }

    body.ui-redesign.home-page .sbot {
        padding-top: 10px;
    }

    body.ui-redesign.home-page .box {
        padding-top: 26px;
    }

    body.ui-redesign.home-page .btop-tit {
        font-size: 21px;
    }

    body.ui-redesign.home-page .sblist,
    body.ui-redesign.home-page .s1 .sblist {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    body.ui-redesign.home-page .s1 .sbitem,
    body.ui-redesign.home-page .s1 .sbitem:first-child,
    body.ui-redesign.home-page .s1 .sbitem:nth-child(2),
    body.ui-redesign.home-page .s1 .sbitem:nth-child(3),
    body.ui-redesign.home-page .s1 .sbitem:nth-child(n + 5) {
        grid-column: span 1;
    }

    body.ui-redesign.home-page .s1 .sbitem:first-child {
        grid-column: span 2;
    }

    body.ui-redesign.home-page .sbb3 {
        min-height: 45px;
        padding: 20px 9px 8px;
        font-size: 12px;
    }

    body.ui-redesign.home-page .sbb2 {
        display: none;
    }

    body.ui-redesign.home-page .hbitem {
        width: 190px;
        height: 100px;
    }

    body.ui-redesign.home-page .sbf1 {
        overflow-x: auto;
    }

    body.ui-redesign.home-page .sbf table {
        min-width: 720px;
    }

    body.ui-redesign .mctop {
        padding-top: 12px;
    }

    body.ui-redesign .cpmt {
        height: 112px;
    }

    body.ui-redesign .cpmt1 {
        padding: 16px;
        font-size: 21px;
    }

    body.ui-redesign .cpmb {
        padding: 15px;
    }

    body.ui-redesign .list-line {
        display: block;
    }

    body.ui-redesign .list-t {
        width: auto;
        margin-bottom: 6px;
    }

    body.ui-redesign .listb {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    body.ui-redesign .listb .cpbt,
    body.ui-redesign .newsb2 .cpbt {
        font-size: 12px;
    }

    body.ui-redesign .newsb {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    body.ui-redesign .newsr {
        position: static;
    }

    body.ui-redesign .news-wz {
        padding: 15px;
        border-radius: 14px;
    }

    body.ui-redesign .news-tit {
        font-size: 20px;
    }

    body.ui-redesign .xinxi,
    body.ui-redesign .xiazai {
        padding: 15px;
    }

    body.ui-redesign .htj-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    body.ui-redesign .newsb2 .ntj-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    body.ui-redesign.body-website .header {
        min-height: 300px;
        padding-top: 24px;
    }

    body.ui-redesign.body-website .primary-menus {
        margin-top: 24px;
    }

    body.ui-redesign.body-website .part {
        padding: 14px;
    }

    body.ui-redesign.body-website .part .item {
        min-height: 126px;
        padding: 10px 6px;
    }

    body.ui-redesign .aside {
        right: 12px;
        bottom: 16px;
    }

    body.ui-redesign a.aside-link {
        width: 50px;
        height: 50px;
    }

    body.ui-redesign .ui-nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 880;
        display: block;
        background: rgba(9, 20, 35, .42);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }

    body.ui-redesign.ui-nav-open .ui-nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 479px) {
    body.ui-redesign.home-page .sblist,
    body.ui-redesign.home-page .s1 .sblist,
    body.ui-redesign .listb {
        grid-template-columns: 1fr;
    }

    body.ui-redesign.home-page .s1 .sbitem:first-child {
        grid-column: span 1;
    }

    body.ui-redesign.home-page .st2c-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.ui-redesign .htj-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
