/* source: wanpishi-news-base */
        * {
            box-sizing: border-box
        }

        html, body {
            margin: 0;
            background: #fff;
            color: #191919;
            font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif
        }

        .wp-nav {
            position: fixed;
            inset: 0 0 auto;
            z-index: 10;
            height: 60px;
            color: #fff;
            background: linear-gradient(105deg, #1f3fb9, #2d5ac3 58%, #8fcfe4)
        }

        .wp-nav__row {
            height: 60px;
            padding: 0 24px;
            display: grid;
            grid-template-columns:1fr auto 1fr;
            align-items: center
        }

        .wp-nav__logo {
            display: flex;
            align-items: center
        }

        .wp-nav__logo img {
            width: 150px;
            height: auto
        }

        .wp-nav__links {
            display: flex;
            justify-content: center;
            gap: 3px
        }

        .wp-nav__links a {
            height: 36px;
            padding: 0 12px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            color: rgba(255, 255, 255, .84);
            font: 500 14px/1 system-ui, sans-serif;
            text-decoration: none;
            white-space: nowrap
        }

        .wp-nav__links a:hover, .wp-nav__links a[aria-current=page] {
            color: #fff;
            background: rgba(255, 255, 255, .12)
        }

        .wp-nav__actions {
            display: flex;
            justify-content: flex-end;
            gap: 8px
        }

        .wp-nav button {
            height: 32px;
            padding: 0 17px;
            border: 0;
            border-radius: 999px;
            background: #fff;
            color: #171717;
            font: 500 13px/1 system-ui, sans-serif
        }

        .wp-menu {
            display: none !important
        }

        main {
            width: min(800px, calc(100% - 48px));
            margin: 0 auto;
            padding: 120px 24px 56px
        }

        h1 {
            margin: 0 0 54px;
            font-size: 32px;
            line-height: 1.25;
            letter-spacing: -.035em
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 36px
        }

        .news-card {
            min-height: 108px;
            display: flex;
            flex-direction: row-reverse;
            gap: 24px;
            align-items: center;
            color: inherit;
            text-decoration: none;
            transition: opacity .2s
        }

        .news-card:hover {
            opacity: .78
        }

        .news-cover {
            width: 192px;
            height: 108px;
            flex: none;
            overflow: hidden;
            border-radius: 8px;
            background: #f3f3f3
        }

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

        .news-copy {
            min-width: 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 12px
        }

        /* 标题和标签这一行 */
        .news-title-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        /* h2：占剩余空间，允许换行 */
        .news-title-row h2 {
            margin: 0;
            font-size: 20px;
            font-weight: 600;
            line-height: 1.4;
            letter-spacing: -.02em;
            flex: 1;
            min-width: 0;
            word-break: break-all;
            white-space: normal;
        }

        /* 原来的 .news-copy h2 可以删掉或留着，上面的会覆盖 */

        /* tag：保持靠右不换行 */
        .news-title-row .news-card__tag {
            flex-shrink: 0;        /* 不让它被挤窄 */
            white-space: nowrap;   /* 不让它换行 */
            margin-left: auto;
        }

        .news-copy time {
            color: #7c7c7c;
            font-size: 12px
        }

        .pagination {
            margin-top: 62px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            color: #777;
            font-size: 14px
        }

        .pagination a, .pagination span {
            min-width: 34px;
            height: 34px;
            display: grid;
            place-items: center;
            padding: 0 8px;
            border-radius: 8px;
            text-decoration: none;
            color: inherit
        }

        .pagination a[aria-current=page] {
            color: #fff;
            background: #3159c7
        }

        .pagination .summary {
            margin-left: 12px;
            color: #909090;
            font-size: 12px;
            width: auto
        }

        @media (max-width: 760px) {
            .wp-nav__row {
                padding: 0 14px;
                grid-template-columns:1fr auto
            }

            .wp-nav__logo img {
                width: 120px
            }

            .wp-nav__links {
                position: absolute;
                top: 62px;
                left: 10px;
                right: 10px;
                display: none;
                flex-direction: column;
                padding: 8px;
                border-radius: 14px;
                background: rgba(27, 54, 142, .98)
            }

            .wp-nav[data-open=true] .wp-nav__links {
                display: flex
            }

            .wp-nav__links a {
                justify-content: flex-start
            }

            .wp-nav__actions button:first-child {
                display: none
            }

            .wp-menu {
                display: block !important;
                width: 36px !important;
                padding: 0 !important;
                color: #fff !important;
                background: transparent !important;
                font-size: 20px !important
            }

            main {
                width: calc(100% - 32px);
                padding: 104px 0 42px
            }

            h1 {
                margin-bottom: 36px;
                font-size: 28px
            }

            .news-list {
                gap: 24px
            }

            .news-card {
                flex-direction: column;
                align-items: stretch;
                gap: 12px
            }

            .news-cover {
                width: 100%;
                height: 180px
            }

            .news-copy {
                gap: 8px
            }

            .news-copy h2 {
                font-size: 18px
            }

            .pagination {
                flex-wrap: wrap;
                margin-top: 42px
            }

            .pagination .summary {
                width: 100%;
                margin: 5px 0 0
            }
        }
    

/* source: wanpishi-news-category-filter */
        .news-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            width: fit-content;
            max-width: 100%;
            margin: -24px auto 48px;
            padding: 4px;
            border-radius: 12px;
            background: #eef2f7;
            box-shadow: 0 0 0 1px rgba(15, 23, 42, .06)
        }

        .news-category {
            position: relative;
            flex: 1 1 auto;
            min-width: 104px;
            cursor: pointer
        }

        .news-category input {
            position: absolute;
            opacity: 0;
            pointer-events: none
        }

        .news-category .name {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 0 16px;
            border-radius: 9px;
            color: #475569;
            font: 500 14px/1 "PingFang SC", "Microsoft YaHei", sans-serif;
            white-space: nowrap;
            transition: background-color .15s ease, color .15s ease, box-shadow .15s ease, transform .15s ease
        }

        .news-category:hover .name {
            color: #2563eb
        }

        .news-category input:focus-visible + .name {
            outline: 2px solid #60a5fa;
            outline-offset: 2px
        }

        .news-category input:checked + .name {
            background: #fff;
            color: #2563eb;
            font-weight: 600;
            box-shadow: 0 1px 2px rgba(15, 23, 42, .12), 0 0 0 1px rgba(15, 23, 42, .04)
        }

        .news-category input:active + .name {
            transform: scale(.98)
        }

        .news-card[hidden] {
            display: none !important
        }

        .news-filter-empty{margin:22px 0;color:#7c7c7c;font-size:15px;line-height:1.7;text-align:center}

        .pagination {
            margin-top: 72px;
            gap: 16px
        }

        .pagination a, .pagination span {
            min-width: 80px;
            height: 80px;
            padding: 0 20px;
            border: 2px solid #d4dae4;
            border-radius: 16px;
            color: #303a4b;
            font-size: 28px;
            font-weight: 500
        }

        .pagination a[aria-current=page] {
            border-color: #2f68eb;
            background: #2f68eb;
            color: #fff
        }

        .pagination .pagination-gap {
            min-width: 48px;
            border: 0;
            background: transparent;
            color: #929bad
        }

        .pagination .pagination-control {
            min-width: 152px
        }

        .pagination .is-disabled {
            color: #a4adbb;
            background: #fff;
            border-color: #e1e5eb
        }

        @media (max-width: 760px) {
            .news-categories {
                width: 100%;
                margin: -12px 0 32px
            }

            .news-category {
                min-width: calc(50% - 2px)
            }

            .news-category .name {
                min-height: 38px;
                padding: 0 10px;
                font-size: 13px
            }

            .news-filter-empty {
                margin: 14px 0
            }

            .pagination {
                gap: 8px;
                margin-top: 44px
            }

            .pagination a, .pagination span {
                min-width: 42px;
                height: 42px;
                padding: 0 10px;
                border-radius: 10px;
                font-size: 16px
            }

            .pagination .pagination-control {
                min-width: 82px
            }

            .pagination .pagination-gap {
                min-width: 20px
            }
        }
    

/* source: wanpishi-news-video-hero */
        .news-video-hero {
            position: relative;
            isolation: isolate;
            width: 100%;
            height: 500px;
            margin: 0;
            overflow: hidden;
            background: #e6f4ff
        }

        .news-video-hero__video {
            position: absolute;
            z-index: -2;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: translate(-50%, -50%)
        }

        .news-video-hero::after {
            content: "";
            position: absolute;
            z-index: -1;
            inset: 0;
            background: linear-gradient(90deg, rgba(247, 252, 255, .88) 0%, rgba(248, 252, 255, .65) 34%, rgba(248, 252, 255, .04) 66%), linear-gradient(180deg, transparent 63%, rgba(255, 255, 255, .3) 77%, #fff 100%);
            pointer-events: none
        }

        .news-video-hero__content {
            position: absolute;
            top: 50%;
            left: max(24px, calc((100% - 1152px) / 2));
            transform: translateY(-50%);
            color: #050505
        }

        .news-video-hero__eyebrow {
            margin: 0 0 14px;
            color: #2563eb;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: .12em
        }

        .news-video-hero__title {
            margin: 0;
            font-size: clamp(42px, 5vw, 64px);
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -.05em
        }

        .news-video-hero__subtitle {
            margin: 15px 0 0;
            color: #1f2937;
            font-size: 16px;
            font-weight: 500
        }

        main {
            padding-top: 58px
        }

        @media (max-width: 760px) {
            .news-video-hero {
                height: 330px
            }

            .news-video-hero__content {
                top: 45%;
                left: 24px
            }

            .news-video-hero__title {
                font-size: 40px
            }

            .news-video-hero__subtitle {
                font-size: 13px
            }

            .news-video-hero::after {
                background: linear-gradient(90deg, rgba(247, 252, 255, .88), rgba(248, 252, 255, .12)), linear-gradient(180deg, transparent 64%, #fff 100%)
            }

            main {
                padding-top: 42px
            }
        }
    

/* source: wanpishi-news-fix-clone */
        .news-fix-clone {
            position: relative;
            overflow: hidden;
            padding: 60px 0 0;
            background: #e3f0ff url("news/baidu-fix/banner-bg-optimized.webp") center top/1920px 560px no-repeat;
            color: #121c2d
        }

        .news-fix-hero {
            width: min(1090px, calc(100% - 48px));
            height: 571px;
            margin: 0 auto;
            position: relative
        }

        .news-fix-copy {
            position: absolute;
            top: 56px;
            left: 0;
            z-index: 1;
            animation: news-fix-rise .65s cubic-bezier(.22, 1, .36, 1) both
        }

        .news-fix-kicker {
            margin: 0 0 8px;
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -.03em
        }

        .news-fix-copy h1 {
            margin: 0;
            font-size: 46px;
            line-height: 1.15;
            letter-spacing: -.05em
        }

        .news-fix-copy h1 em {
            font-style: normal;
            color: #2450ff
        }

        .news-fix-meta {
            display: flex;
            gap: 22px;
            margin: 18px 0 0;
            color: #4d5b70;
            font-size: 14px
        }

        .news-fix-meta span {
            display: inline-flex;
            align-items: center;
            gap: 7px
        }

        .news-fix-meta span::before {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #2587ff;
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            line-height: 16px;
            text-align: center;
            content: "●"
        }

        .news-fix-meta span + span::before {
            content: "●"
        }

        .news-fix-toggle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 29px;
            padding: 0;
            border: 0;
            background: transparent;
            color: #253349;
            font: 600 14px/1 "PingFang SC", "Microsoft YaHei", sans-serif;
            cursor: pointer
        }

        .news-fix-toggle::after {
            width: 7px;
            height: 7px;
            border-right: 1.5px solid currentColor;
            border-bottom: 1.5px solid currentColor;
            content: "";
            transform: rotate(45deg) translateY(-2px);
            transition: transform .22s ease
        }

        .news-fix-clone.is-folded .news-fix-toggle::after {
            transform: rotate(-135deg) translate(-2px, -1px)
        }

        .news-fix-products {
            position: absolute;
            right: 0;
            bottom: 55px;
            left: 0;
            display: flex;
            flex-wrap: wrap;
            align-content: flex-start;
            gap: 0;
            padding: 21px 24px 10px;
            border-radius: 24px;
            background: rgba(255, 255, 255, .72);
            box-shadow: inset 0 0 0 1px #fff;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
            animation: news-fix-rise .7s .12s cubic-bezier(.22, 1, .36, 1) both
        }

        .news-fix-clone.is-folded .news-fix-products {
            max-height: 0;
            padding-top: 0;
            padding-bottom: 0;
            overflow: hidden;
            opacity: 0
        }

        .news-fix-products button {
            padding: 0 15px 13px 0;
            border: 0;
            background: transparent;
            color: #273448;
            font: 500 13px/22px "PingFang SC", "Microsoft YaHei", sans-serif;
            cursor: pointer;
            white-space: nowrap;
            transition: color .2s ease, transform .2s ease
        }

        .news-fix-products button:hover {
            color: #2450ff;
            transform: translateY(-2px)
        }

        .news-fix-awards {
            width: min(1090px, calc(100% - 48px));
            min-height: 412px;
            margin: 0 auto 62px;
            padding: 66px 36px 38px;
            border-radius: 26px 26px 0 0;
            background: #256eff url("news/baidu-fix/award-bg-optimized.webp") center/cover no-repeat;
            color: #fff
        }

        .news-fix-heading {
            position: relative;
            margin: 0 0 31px;
            text-align: center;
            font-size: 28px;
            font-weight: 700;
            letter-spacing: .02em
        }

        .news-fix-heading::before, .news-fix-heading::after {
            display: inline-block;
            width: 80px;
            height: 1px;
            margin: 0 18px 8px;
            background: rgba(255, 255, 255, .8);
            content: ""
        }

        .news-fix-heading small {
            position: absolute;
            top: -28px;
            left: 0;
            right: 0;
            color: rgba(255, 255, 255, .12);
            font-size: 42px;
            font-weight: 700;
            letter-spacing: .05em
        }

        .news-fix-award-grid {
            display: grid;
            grid-template-columns:repeat(3, minmax(0, 1fr));
            gap: 18px
        }

        .news-fix-award {
            min-height: 184px;
            padding: 26px;
            border: 0;
            border-radius: 22px;
            background: linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(239, 248, 255, .9));
            box-shadow: inset 0 1px rgba(255, 255, 255, .9);
            color: #101b31;
            text-align: left;
            cursor: pointer;
            transition: transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s ease
        }

        .news-fix-award:hover {
            transform: translateY(-7px);
            box-shadow: 0 18px 32px rgba(10, 60, 180, .26)
        }

        .news-fix-award__top {
            display: flex;
            justify-content: space-between;
            color: #2468ff;
            font-size: 17px;
            font-weight: 700
        }

        .news-fix-award strong {
            display: block;
            margin-top: 22px;
            font-size: 32px;
            line-height: 1;
            font-weight: 700
        }

        .news-fix-award strong small {
            margin-left: 6px;
            font-size: 13px;
            font-weight: 500
        }

        .news-fix-award p {
            margin: 19px 0 0;
            padding-top: 13px;
            border-top: 1px solid rgba(70, 113, 164, .15);
            color: #66758c;
            font-size: 12px;
            line-height: 1.55
        }

        .news-fix-process {
            margin: -42px 0 0;
            color: #131c2e;
            text-align: center;
            font-size: 26px;
            font-weight: 700
        }

        .news-fix-process::before, .news-fix-process::after {
            display: inline-block;
            width: 100px;
            height: 1px;
            margin: 0 20px 8px;
            background: #2f74ff;
            content: ""
        }

        .news-fix-process small {
            display: block;
            margin-bottom: -10px;
            color: rgba(36, 80, 255, .08);
            font-size: 40px;
            letter-spacing: .08em
        }

        @keyframes news-fix-rise {
            from {
                opacity: 0;
                transform: translateY(18px)
            }
            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @media (max-width: 760px) {
            .news-fix-clone {
                padding-top: 60px;
                background-size: auto 390px
            }

            .news-fix-hero {
                width: calc(100% - 32px);
                height: 538px
            }

            .news-fix-copy {
                top: 28px
            }

            .news-fix-kicker {
                font-size: 17px
            }

            .news-fix-copy h1 {
                font-size: 34px
            }

            .news-fix-meta {
                gap: 10px;
                margin-top: 13px;
                font-size: 12px;
                flex-wrap: wrap
            }

            .news-fix-products {
                bottom: 22px;
                padding: 17px 17px 7px;
                border-radius: 17px
            }

            .news-fix-products button {
                padding: 0 10px 10px 0;
                font-size: 12px
            }

            .news-fix-awards {
                width: calc(100% - 32px);
                margin-bottom: 40px;
                padding: 54px 16px 22px;
                border-radius: 20px 20px 0 0
            }

            .news-fix-heading {
                margin-bottom: 20px;
                font-size: 23px
            }

            .news-fix-heading::before, .news-fix-heading::after {
                width: 38px;
                margin: 0 10px 6px
            }

            .news-fix-heading small {
                top: -24px;
                font-size: 29px
            }

            .news-fix-award-grid {
                grid-template-columns:1fr;
                gap: 12px
            }

            .news-fix-award {
                min-height: 142px;
                padding: 20px
            }

            .news-fix-award strong {
                margin-top: 15px;
                font-size: 28px
            }

            .news-fix-award p {
                margin-top: 12px;
                padding-top: 9px
            }

            .news-fix-process {
                display: none
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .news-fix-copy, .news-fix-products {
                animation: none
            }

            .news-fix-award {
                transition: none
            }
        }
    

/* source: wanpishi-justai-pagination-clone */
        .news-card__tag {
            display: inline-flex;
            align-items: center;
            margin-left: 8px;
            padding: 2px 7px;
            border-radius: 4px;
            background: #edf4ff;
            color: #2f68eb;
            font-size: 12px;
            font-weight: 500;
            line-height: 18px;
            vertical-align: 2px;
            letter-spacing: 0;
            white-space: nowrap
        }

        .pagination {
            margin-top: 62px;
            gap: 8px;
            color: #374151;
            font-size: 14px
        }

        .pagination a, .pagination span {
            min-width: 40px;
            height: 40px;
            padding: 0;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            color: #374151;
            font-size: 14px;
            font-weight: 400;
            transition: color .15s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1)
        }

        .pagination a:hover {
            background: #f9fafb
        }

        .pagination a[aria-current=page] {
            border-color: #2563eb;
            background: #2563eb;
            color: #fff
        }

        .pagination .pagination-gap {
            min-width: 40px;
            border: 0;
            background: transparent;
            color: #6b7280
        }

        .pagination .pagination-control {
            min-width: 76px;
            padding: 0 16px
        }

        .pagination .is-disabled {
            border-color: #e5e7eb;
            color: #9ca3af;
            cursor: not-allowed
        }

        @media (max-width: 760px) {
            .news-card__tag {
                margin-left: 6px;
                font-size: 11px;
                line-height: 17px
            }

            .pagination {
                gap: 6px;
                margin-top: 42px;
                flex-wrap: nowrap
            }

            .pagination a, .pagination span {
                min-width: 34px;
                height: 36px;
                border-radius: 8px;
                font-size: 13px
            }

            .pagination .pagination-control {
                min-width: 58px;
                padding: 0 8px
            }

            .pagination .pagination-gap {
                min-width: 22px
            }
        }
    

/* source: wanpishi-news-fix-pixel-tuning */
        .news-fix-clone {
            padding-top: 60px;
            background-color: #e3f0ff;
            background-image: url("news/baidu-fix/banner-bg-optimized.webp");
            background-repeat: no-repeat;
            background-position: 50% 0;
            background-size: auto 408px;
            color: rgba(0, 0, 0, .85);
            font-family: -apple-system, system-ui, "SF Pro SC", "SF Pro Text", "Helvetica Neue", Helvetica, "PingFang SC", "Segoe UI", Roboto, "Hiragino Sans GB", Arial, "Microsoft YaHei", SimSun, sans-serif;
        }

        .news-fix-hero {
            width: 100%;
            height: 571px;
            margin: 0;
        }

        .news-fix-copy {
            top: 68px;
            left: max(55px, calc((100vw - 1090px) / 2));
            animation: none;
        }

        .news-fix-kicker {
            margin: 0;
            color: #091221;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            font-size: 32px;
            font-weight: 600;
            line-height: 40px;
            letter-spacing: 0;
        }

        .news-fix-copy h1 {
            margin: 0;
            color: rgba(0, 0, 0, .85);
            font-size: 55px;
            font-weight: 600;
            line-height: 80px;
            letter-spacing: 0;
        }

        .news-fix-copy h1 em {
            color: transparent;
            font-style: normal;
            background-image: linear-gradient(90deg, #2f40ff, #266eff, #198cff, #19a3ff);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .news-fix-awards {
            width: 100%;
            min-height: 412px;
            margin-top: calc(-1 * (clamp(84px, 10.5vw, 126px) + 112px));
            margin-right: 0;
            margin-bottom: 0;
            margin-left: 0;
            padding: 75px 0 0;
            position: relative;
            z-index: 2;
            overflow: hidden;
            border-radius: 0;
            background-color: transparent;
            background-image: url("news/baidu-fix/award-bg-optimized.webp");
            background-repeat: no-repeat;
            background-position: 50% 50%;
            background-size: 100% 100%;
        }

        .news-fix-awards::after {
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 0;
            height: 120px;
            background: linear-gradient(180deg, rgba(227, 240, 255, 0), rgba(227, 240, 255, .22) 45%, rgba(255, 255, 255, .92) 100%);
            content: "";
            pointer-events: none;
        }

        .news-fix-heading {
            display: flex;
            position: relative;
            z-index: 1;
            align-items: center;
            justify-content: center;
            height: 50px;
            margin: 0;
            color: #fff;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            font-size: 35px;
            font-weight: 600;
            line-height: 50px;
            letter-spacing: 0;
        }

        .news-fix-heading::before, .news-fix-heading::after {
            display: block;
            width: 60px;
            height: 1px;
            margin: 0 24px;
            background: rgba(255, 255, 255, .88);
            content: "";
        }

        .news-fix-heading small {
            position: absolute;
            top: -20px;
            right: auto;
            left: 50%;
            width: max-content;
            color: transparent;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            font-size: 50px;
            font-weight: 600;
            line-height: 50px;
            letter-spacing: 0;
            background-image: linear-gradient(rgba(255, 255, 255, .2), rgba(255, 255, 255, 0));
            background-clip: text;
            transform: translateX(-50%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .news-fix-heading__label {
            position: relative;
            z-index: 1;
        }

        .news-fix-heading__spark {
            position: absolute;
            z-index: 2;
            top: -7px;
            left: calc(50% + 72px);
            color: #fff;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 1;
        }

        .news-fix-clone + main {
            position: relative;
            z-index: 3;
            margin-top: -238px;
            padding-top: 0;
        }

        .news-fix-clone + main > h1 {
            display: none;
        }

        @media (max-width: 760px) {
            .news-fix-clone {
                padding-top: 60px;
                background-size: auto 280px;
            }

            .news-fix-hero {
                width: 100%;
                height: 430px;
            }

            .news-fix-copy {
                top: 38px;
                left: 24px;
                right: 24px;
            }

            .news-fix-kicker {
                font-size: 22px;
                line-height: 30px;
            }

            .news-fix-copy h1 {
                font-size: 38px;
                line-height: 56px;
            }

            .news-fix-awards {
                width: 100%;
                min-height: 320px;
                margin-top: -196px;
                margin-right: 0;
                margin-bottom: 0;
                margin-left: 0;
                padding: 58px 0 0;
                border-radius: 0;
            }

            .news-fix-awards::after {
                height: 88px;
            }

            .news-fix-clone + main {
                margin-top: -182px;
            }

            .news-fix-heading {
                height: 44px;
                font-size: 28px;
                line-height: 44px;
            }

            .news-fix-heading::before, .news-fix-heading::after {
                width: 36px;
                margin: 0 14px;
            }

            .news-fix-heading small {
                top: -16px;
                font-size: 38px;
                line-height: 44px;
            }

            .news-fix-heading__spark {
                top: -5px;
                left: calc(50% + 59px);
                font-size: 15px;
            }
        }
    

/* source: wanpishi-news-fix-right-edge-gradient */
        /* 让首屏背景图右侧柔和融入页面底色，避免出现生硬的垂直边界。 */
        .news-fix-clone {
            background-image: linear-gradient(90deg, #e3f0ff 0%, rgba(227, 240, 255, .92) 6%, rgba(227, 240, 255, .48) 13%, transparent 23%, transparent 68%, rgba(227, 240, 255, .3) 79%, rgba(227, 240, 255, .68) 89%, rgba(227, 240, 255, .93) 96%, #e3f0ff 100%),
            url("news/baidu-fix/banner-bg-optimized.webp");
        }

        @media (max-width: 760px) {
            .news-fix-clone {
                background-image: linear-gradient(90deg, #e3f0ff 0%, rgba(227, 240, 255, .9) 8%, rgba(227, 240, 255, .42) 18%, transparent 30%, transparent 64%, rgba(227, 240, 255, .28) 75%, rgba(227, 240, 255, .66) 86%, rgba(227, 240, 255, .92) 95%, #e3f0ff 100%),
                url("news/baidu-fix/banner-bg-optimized.webp");
            }
        }
    

/* source: wanpishi-news-mobile-award-spacing-fix */
        @media (max-width: 760px) {
            .news-fix-awards {
                width: calc(100% - 32px);
                margin-top: -252px;
                margin-right: auto;
                margin-left: auto;
                border-radius: 20px 20px 0 0;
                background-color: #2782f8;
                background-position: 50% -3px;
                background-size: 104% calc(100% + 6px);
                overflow: hidden;
            }
        }
    

/* source: wanpishi-news-mobile-content-polish */
        @media (max-width: 760px) {
            /* 首屏底色在底部逐步淡入白色，消除内容区交界处的横向分界。 */
            .news-fix-clone {
                background-image: linear-gradient(180deg, transparent 48%, rgba(227, 240, 255, .82) 68%, rgba(244, 249, 255, .72) 84%, #fff 100%),
                linear-gradient(90deg, #e3f0ff 0%, rgba(227, 240, 255, .9) 8%, rgba(227, 240, 255, .42) 18%, transparent 30%, transparent 64%, rgba(227, 240, 255, .28) 75%, rgba(227, 240, 255, .66) 86%, rgba(227, 240, 255, .92) 95%, #e3f0ff 100%),
                url("news/baidu-fix/banner-bg-optimized.webp");
            }

            .news-card {
                gap: 0;
            }

            .news-card .news-copy {
                padding-top: 24px;
            }

            .news-cover img {
                object-fit: cover;
            }
        }
    

/* source: wanpishi-news-nav-parity */
        .wp-nav {
            z-index: 1000;
            transition: background-color .26s ease, color .26s ease, box-shadow .26s ease, backdrop-filter .26s ease
        }

        .wp-nav:not(.is-scrolled) {
            color: #101828;
            background: transparent !important
        }

        .wp-nav:not(.is-scrolled) .wp-nav__links a {
            color: rgba(16, 24, 40, .8)
        }

        .wp-nav:not(.is-scrolled) .wp-nav__links a:hover, .wp-nav:not(.is-scrolled) .wp-nav__links a[aria-current=page] {
            color: #101828;
            background: rgba(16, 24, 40, .055)
        }

        .wp-nav:not(.is-scrolled) .wp-menu {
            color: #101828 !important
        }

        .wp-nav.is-scrolled {
            color: #101828;
            background: rgba(255, 255, 255, .74);
            box-shadow: 0 8px 26px rgba(15, 23, 42, .08);
            backdrop-filter: blur(20px) saturate(145%);
            -webkit-backdrop-filter: blur(20px) saturate(145%)
        }

        .wp-nav.is-scrolled .wp-nav__links a {
            color: rgba(16, 24, 40, .8)
        }

        .wp-nav.is-scrolled .wp-nav__links a:hover, .wp-nav.is-scrolled .wp-nav__links a[aria-current=page] {
            color: #101828;
            background: rgba(16, 24, 40, .055)
        }

        .wp-nav.is-scrolled .wp-menu {
            color: #101828 !important
        }

        @media (max-width: 760px) {
            .wp-nav[data-open=true] .wp-nav__links {
                background: rgba(19, 28, 70, .96)
            }

            .wp-nav[data-open=true] .wp-nav__links a, .wp-nav.is-scrolled[data-open=true] .wp-nav__links a {
                color: #fff
            }

            .wp-nav .wp-menu {
                display: grid !important;
                place-items: center
            }

            .wp-nav.is-scrolled .wp-nav__actions button:first-child {
                display: grid
            }
        }
    

/* source: wanpishi-news-nav-size-consistency */.wp-nav, .wp-nav__row {
        height: 60px
    }

    .wp-nav__row {
        padding: 0 24px
    }

    .wp-nav__logo img {
        width: 150px
    }

    .wp-nav__links {
        gap: 3px
    }

    .wp-nav__links a {
        height: 36px;
        padding: 0 12px;
        font: 500 14px/1 system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif
    }

    @media (max-width: 760px) {
        .wp-nav__row {
            padding: 0 14px
        }

        .wp-nav__logo img {
            width: 120px
        }

        .wp-nav__links {
            top: 62px
        }

        .wp-menu {
            width: 36px !important;
            height: 36px !important
        }
    }

/* source: wanpishi-news-empty-footer-layout */body {
        min-height: 100vh;
        display: flex;
        flex-direction: column
    }

    main {
        flex: 1 0 auto
    }
