/* Common palette and component styles */
:root {
    --body-bg: #8b1d36;
    --text-black: #555;
    --text-ccc: #A8A8A4;
    --text-yellow: #ffe8ce;
    --title-grad-start: #ffe8ce;
    --title-grad-end: #fbb8a0;
    --frame-border: #a73347;
    --frame-red-bg: #90263d;
    --white: #fff;
    --primary: #B22222;
    --dark: #8B0000;
    --accent: #FF7043;
    --blue: #3BA3FF;
    --card: rgba(255,255,255,.10);
    --shadow: 0 .75rem 1.875rem rgba(0,0,0,.25);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --transition-normal: 0.3s ease
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}

html, body {
    margin: 0;
    padding: 0
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%
}

body {
    min-height: 100vh;
    background: var(--body-bg);
    font-family: "Microsoft YaHei", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('/image/vs/topbg.png');
    background-repeat: no-repeat;
    background-position: top center;
}

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 3rem;
    position: relative;
    overflow: visible !important;
}

/* PC端布局优化 */
@media (min-width: 1024px) {
    .wrap {
        padding: 2.5rem 4rem;
    }

    .section {
        margin-bottom: 2rem;
    }

    .content-module {
        padding: 2rem 2.5rem;
    }

    .module-header h3 {
        font-size: 1.35rem;
    }

    .card {
        padding: 1.5rem 2rem;
    }

        .card .cn {
            font-size: 1.1rem;
        }

    .cta {
        gap: 1.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        padding: 1.25rem 2rem;
        font-size: 1.3rem;
    }
}

/* 手机端适配 */
@media (max-width: 768px) {
    .wrap {
        max-width: 100%;
        padding: 1.5rem 1rem;
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
}

.headtext {
    margin-bottom: 1rem;
    margin-top: 1rem;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.text-yellow {
    color: var(--text-yellow)
}

.frame-white {
    background: #fff;
    border-radius: 3.4375rem;
    border: .375rem solid var(--frame-border)
}

.frame-red {
    background: var(--frame-red-bg);
    border-radius: 3.4375rem;
    font-size: 0.875rem;
    color: var(--text-yellow);
    line-height: 1.85;
}
}

.decor {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), rgba(255,255,255,.06));
    filter: saturate(160%);
    z-index: 0
}

.d1 {
    width: 6.25rem;
    height: 6.25rem;
    left: -2.5rem;
    top: 5rem;
    animation: float 6s ease-in-out infinite
}

.d2 {
    width: 15rem;
    height: 15rem;
    right: -3.75rem;
    top: 17.5rem;
    animation: float 7s ease-in-out infinite 1s
}

.d3 {
    width: 7.5rem;
    height: 7.5rem;
    left: -1rem;
    bottom: 0rem;
    animation: float 8s ease-in-out infinite 2s
}

.d4 {
    width: 6.25rem;
    height: 6.25rem;
    right: -3rem;
    bottom: 17rem;
    animation: float 6s ease-in-out infinite
}

.fengedian {
    font-size: 2rem;
}

/* 浮动粒子 */
.floating-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleRise 20s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-1rem)
    }

    100% {
        transform: translateY(0)
    }
}

.section {
    position: relative;
    z-index: 1
}

.section {
    overflow: visible
}

.title {
    text-align: center;
    padding-top: .75rem
}

.brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
    margin-top: 3rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.78;
    height: 2rem;
}

    .brand img {
        height: 2rem;
        width: auto;
    }

.subtitle {
    position: absolute;
    top: 0.3rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    font-size: 1.2rem;
    font-weight: 700;
}

.slogan {
    font-size: 1rem;
    color: var(--text-yellow);
    opacity: 0.68;
    height: 2.875rem;
    display: flex;
    align-items: center;
}

.slogan2 {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    color: var(--text-yellow);
    opacity: .68;
    font-size: .88rem;
    letter-spacing: 1px;
    z-index: 1
}

    .slogan2 > hr {
        border: none;
        border-top: 1px double #ccc;
        margin: 1rem 0;
        width: 1.8rem;
        margin: 0 .5rem;
        opacity: .6
    }

.star-icon {
    height: 1rem
}

.zhengji-img {
    height: 6.8rem
}

.show-small {
    height: 1.5rem
}

.show-big {
    height: 2.875rem
}

.deadline-tip {
    font-size: 1.2rem;
    color: #545555
}

.deadline-date {
    color: var(--body-bg);
    font-weight: 700;
    font-size: 1.5rem
}

.intro-top {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    background: linear-gradient(to bottom, rgba(255,255,255,.1), rgba(255,255,255,0));
    padding: 1rem 0 2rem 1rem;
    font-size: 1.05rem
}

.intro-title {
    font-weight: 700;
    margin-top: -1.2rem
}

.intro-body {
    border-radius: 1.5rem;
    margin-top: -2rem;
    background-color: rgba(255,255,255,.03);
    padding: 1rem;
    border: .125rem solid var(--frame-border);
    opacity: 0.8;
}

.text-white {
    color: #fff
}

.card {
    border-radius: 1.25rem;
    padding: 1.25rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.2);
    margin: 0 0 1rem 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, rgba(144, 38, 61, 0.45) 0%, rgba(144, 38, 61, 0.25) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

    .card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 1.25rem 2.5rem rgba(0,0,0,.35), 0 0 25px rgba(255,112,67,0.15);
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
    }

        .card:hover::before {
            opacity: 1;
        }

    .card h3 {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: 800;
        margin: 0 0 .625rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

.badge {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9800 100%);
    color: #fff;
    margin-right: .75rem;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 0.5rem 1rem rgba(255,112,67,0.4);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.card:hover .badge {
    transform: scale(1.1);
    box-shadow: 0 0.625rem 1.25rem rgba(255,112,67,0.5);
}

.card .cn {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: .5rem;
    line-height: 1.5;
}

.card .desc {
    font-size: .9rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    display: none
}

.mission-card {
    background-image: linear-gradient(to bottom, rgba(255,255,255,.08), rgba(144, 38, 61, 0.32));
    border: 1px solid rgba(255,255,255,0.12);
}

    /* 禁用 mission-card 的悬停效果 */
    .mission-card:hover {
        transform: none;
        box-shadow: 0 1rem 2rem rgba(0,0,0,.25);
        background: linear-gradient(to bottom, rgba(255,255,255,.08), rgba(144, 38, 61, 0.32));
    }

        .mission-card:hover::before {
            opacity: 0;
        }

    /* 保留图片的悬停效果 */
    .mission-card .zhengji-img {
        transition: transform 0.3s ease;
    }

        .mission-card .zhengji-img:hover {
            transform: scale(1.05);
        }

.mission-body {
    font-size: .9rem;
    color: var(--text-yellow);
    opacity: .85;
    line-height: 1.85;
    overflow-wrap: anywhere;
    word-break: break-word;
}

    .mission-body p {
        margin: 0;
    }

        .mission-body p + p {
            margin-top: .75rem;
        }

.cn .carousel-arrow.next {
    margin-left: auto;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.22);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
}

    .carousel-arrow img {
        width: 28px;
        height: 28px;
        filter: drop-shadow(0 .25rem .5rem rgba(0,0,0,.22));
    }

.vs-modal-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 9998
}

    .vs-modal-overlay.active {
        opacity: 1;
        visibility: visible
    }

.vs-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: 80%;
    max-width: 500px;
    -webkit-backdrop-filter: blur(5px);
    color: #111;
    padding: 2.5rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
    z-index: 9999;
}

    .vs-modal.open {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1)
    }

    .vs-modal .modal-close {
        position: absolute;
        top: 3.3rem;
        right: 2rem;
        width: 2rem;
        height: 2rem;
        border-radius: 999px;
        border: 1px solid rgba(0,0,0,0.12);
        background: rgba(255,255,255,0.55);
        color: #111;
        font-size: 26px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 9999;
        transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
        font-family: Arial, sans-serif
    }

        .vs-modal .modal-close:hover {
            background: rgba(255,255,255,0.75);
            transform: scale(1.06);
            box-shadow: 0 .5rem 1rem rgba(0,0,0,.18)
        }

    .vs-modal .modal-content {
        font-size: .95rem;
        line-height: 1.8;
        padding-top: 20px;
        overflow-wrap: anywhere;
        word-break: break-word
    }

    .vs-modal .modal-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px
    }

    .vs-modal .modal-icon {
        display: inline-flex;
        width: 28px;
        height: 28px;
        align-items: center;
        justify-content: center;
        color: #111
    }

        .vs-modal .modal-icon svg {
            width: 24px;
            height: 24px;
            filter: drop-shadow(0 .25rem .5rem rgba(0,0,0,.25));
        }

    .vs-modal .modal-title {
        font-size: 1.05rem;
        font-weight: 800;
        letter-spacing: .5px
    }

    .vs-modal .modal-body {
        max-height: min(68vh, 520px);
        overflow: auto;
    }

@media screen and (max-width: 480px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .vs-modal {
        width: 95%
    }

        .vs-modal .modal-close {
            font-size: 26px
        }

        .vs-modal .modal-content {
        }
}

.quan_title {
    width: 100%;
    background-image: url('/image/vs/index/quan.png');
    background-repeat: no-repeat;
    background-position-x: 0.5rem;
    background-position-y: center;
    background-size: 5.5rem;
    height: 8rem;
    z-index: 11;
    margin-bottom: -2rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-yellow);
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-left: 3rem;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.quan_title_cn {
    width: 100%;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.quan_title_en {
    width: 100%;
    font-weight: normal !important;
    margin-top: 0.2rem;
    font-size: 0.7rem !important;
    opacity: 0.6;
}

.deadline {
    margin-top: .5rem;
    text-align: center;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.deadlinetime {
    width: 100%;
    background-image: url('/image/vs/index/deadlinebg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    height: auto;
    min-height: 9rem;
}

.selectiontime {
    width: 100%;
    background-image: url('/image/vs/index/schedulebg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    height: auto;
    min-height: 13rem;
}

@media (min-width:48rem) {
    .deadlinetime {
        min-height: 12rem;
    }

    .selectiontime {
        min-height: 18rem;
    }



    .show {
        font-size: 5rem
    }

    .badge {
        width: 2.5rem;
        height: 2.5rem
    }

    .zhengji-img {
        height: 8rem
    }

    .show-big {
        height: 3rem
    }
}

@media (min-width:64rem) {
    .deadlinetime {
        min-height: 14rem;
    }

    .selectiontime {
        min-height: 20rem;
    }



    .show {
        font-size: 5.75rem
    }

    .zhengji-img {
        height: 9rem
    }

    .show-big {
        height: 3.25rem
    }
}

.deadline .deadline-table {
    width: 93.5%;
    border-collapse: separate;
    border-spacing: 0 .5rem
}

    .deadline .deadline-table th {
        text-align: left;
        padding-left: 2.5rem;
        background-image: url(/image/vs/index/star.png);
        background-repeat: no-repeat;
        background-size: 1.2rem;
        background-position-x: 1rem;
        background-position-y: center;
    }

    .deadline .deadline-table td {
        text-align: left;
        padding-left: 1rem;
        height: 2rem;
    }

    .deadline .deadline-table tbody td:first-child {
        background-color: #EFEFEF;
        color: #545555;
    }

    .deadline .deadline-table tbody td:nth-child(2) {
        background-color: #ECE2E1;
        color: #545555;
        font-weight: bolder;
    }

.deadline-card {
    background: #fff;
    color: #8B0000;
    border-radius: 1.125rem;
    padding: 1.125rem;
    box-shadow: var(--shadow)
}

    .deadline-card .d1 {
        font-size: 1rem;
        color: #7a0c0c
    }

    .deadline-card .d2 {
        font-size: 1.375rem;
        font-weight: 800;
        color: #D32F2F;
        margin-top: .375rem
    }

.divider {
    width: 6rem;
    height: .25rem;
    background: var(--accent);
    border-radius: 999px;
    margin: .625rem auto 0
}

.schedule {
    margin-top: .5rem
}

.table {
    width: 100%;
    background: #fff;
    color: #7a0c0c;
    border-radius: 1.125rem;
    overflow: hidden;
    box-shadow: var(--shadow)
}

    .table th, .table td {
        padding: .875rem;
        font-size: .9375rem
    }

    .table thead th {
        background: linear-gradient(180deg,#f9efef 0%,#f2e3e3 100%);
        font-weight: 800
    }

    .table tr + tr {
        border-top: .0625rem solid #eee
    }

.contact {
    text-align: center;
    margin: 1rem 0;
    color: rgba(255,255,255,.7);
}

    .contact p {
        font-size: .9375rem;
        margin: .375rem 0
    }

.cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 3.5rem auto 1rem auto;
    max-width: 500px;
}

.btn {
    flex: 1;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.3);
    text-decoration: none;
    min-height: 3rem;
    min-width: 140px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn:hover::before {
        left: 100%;
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 0.75rem 2rem rgba(0,0,0,0.4);
    }

    .btn:active {
        transform: translateY(-1px);
    }

    .btn span {
        display: block;
        font-size: .65rem;
        font-weight: 400;
        opacity: .95;
        margin-top: 0.25rem;
    }

.btn-orange {
    background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0) 85%, rgba(255,255,255,0.35) 100%), linear-gradient(270deg, #FF7043 0%, #FE9845 100%);
    min-height: 2.25rem;
    padding: .75rem 1.25rem;
}

    .btn-orange:hover {
        box-shadow: 0 0.75rem 2rem rgba(255,112,67,0.4);
    }

.btn-blue {
    background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0) 85%, rgba(255,255,255,0.35) 100%), linear-gradient(90deg, #3BA3FF 0%, #5DCEE4 100%);
    min-height: 2.25rem;
    padding: .75rem 1.25rem;
}

    .btn-blue:hover {
        box-shadow: 0 0.75rem 2rem rgba(59,163,255,0.4);
    }

img, svg {
    max-width: 100%;
    height: auto
}

footer {
    text-align: center;
    color: rgba(255,255,255,.7);
    font-size: .75rem;
    padding: 1rem 0
}

    a {
        text-decoration: none;
        color: inherit;
        outline: none;
        background-color: transparent;
        cursor: inherit;
        font-family: inherit;
        font-size: inherit;
        font-weight: inherit;
        line-height: inherit;
        padding: 0;
        margin: 0;
        border: none;
    }

        a:link,
        a:visited,
        a:hover,
        a:active,
        a:focus {
            text-decoration: none;
            color: inherit;
            outline: none;
            background-color: transparent;
        }



.anim-pre {
    opacity: 0;
    transform: translateY(.75rem)
}

.anim-in {
    opacity: 1;
    transform: none;
    transition: all .8s cubic-bezier(.2,.7,.2,1);
    will-change: opacity,transform
}

.show {
    display: flex;
    justify-content: left;
    margin: 2.2rem 0;
}

@media (min-width:37.5rem) {
    .show {
        font-size: 4.25rem
    }
}

@media (min-width:48rem) {
    .wrap {
        max-width: 45rem;
        padding: 2.25rem 1.5rem
    }

    .show {
        font-size: 5rem
    }

    .badge {
        width: 2.5rem;
        height: 2.5rem
    }
}

@media (min-width:64rem) {
    .wrap {
        max-width: 53.75rem
    }

    .show {
        font-size: 5.75rem
    }

    .deadline-card .d2 {
        font-size: 1.75rem
    }

    .zhengji-img {
        height: 6.8rem
    }
}

@media (min-width:48rem) {
    .zhengji-img {
        height: 8rem
    }

    .show-big {
        height: 3rem
    }

    .deadline-tip {
        font-size: 1.25rem
    }

    .deadline-date {
        font-size: 1.75rem
    }
}

@media (min-width:64rem) {
    .zhengji-img {
        height: 9rem
    }

    .show-big {
        height: 3.25rem
    }
}

/* Inputs & modal */
.input {
    background: #e0e0e0;
    color: #222;
    font-weight: 700;
    font-size: 1rem;
    border-radius: .625rem;
    border: .0625rem solid rgba(0,0,0,.06);
    width: 100%;
    padding: .75rem .875rem
}

    .input::placeholder {
        color: #b6b6b6
    }

input[type=radio] {
    accent-color: #46b25f
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    display: none;
    z-index: 999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left)
}

    .modal.show {
        display: block
    }

    .modal .modal-body {
        max-width: 42.5rem;
        margin: 2.5rem auto
    }

.form-row {
    margin: .5rem 0
}

.error {
    margin-top: .375rem;
    color: #ffd1d1;
    font-size: .75rem
}

.form-actions {
    display: flex;
    gap: .75rem;
    margin-top: .75rem
}

/* Page specific: UpStream */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem
}

@media(min-width:48rem) {
    .grid {
        grid-template-columns: 1fr 1fr
    }
}

/* Page specific: Ranking */
.list {
    list-style: none;
    margin: 0;
    padding: 0
}

.rank .item {
    border-radius: 1rem
}

.rank .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem;
    border-bottom: .0625rem solid rgba(255,255,255,.15)
}

    .rank .item .no {
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 50%
    }

    .rank .item:nth-child(1) {
        background: #faf3d4
    }

    .rank .item:nth-child(2) {
        background: #ebefef
    }

    .rank .item:nth-child(3) {
        background: #faefe2
    }

    .rank .item:nth-child(n+4) .no {
        background: #ebeae5
    }

    .rank .item:nth-child(1) .no {
        color: #ffc400
    }

    .rank .item:nth-child(2) .no {
        color: #9da9c9
    }

    .rank .item:nth-child(3) .no {
        color: #f9a279
    }

    .rank .item .name {
        flex: 1;
        margin: 0 .625rem
    }

    .rank .item .score {
        background: #fff;
        color: #333;
        border-radius: .75rem;
        padding: .375rem .625rem;
        font-weight: 800
    }

/* Home page background image for wrap */
.index-wrap {
    background-image: url('/image/vs/index/dengpao.png');
    background-repeat: no-repeat;
    background-position-y: 30rem;
    background-position-x: right;
    background-size: 50%;
}

/* utilities for px→rem replacement */
.fs-22 {
    font-size: 1.375rem
}

.fs-13 {
    font-size: .8125rem
}

.fw-800 {
    font-weight: 800
}

.op-85 {
    opacity: .85
}

.text-center {
    text-align: center
}

.mt-sm {
    margin-top: .75rem
}

.dot {
    font-size: 1.2rem;
    margin: 0 0.24rem;
    display: inline-block;
    line-height: 1
}

.mr-sm {
    margin-right: .375rem
}

.show-big {
    height: 2.875rem
}

.show-small {
    height: .8rem;
    margin-left: 0.3rem;
}

.intro {
    margin-top: 2rem;
    color: var(--text-yellow);
    font-size: 0.86rem;
    letter-spacing: 1px;
    opacity: 0.75;
}

.no-inner-scroll, header, .wrap, .section, .deadline, .intro, .contact, .cta, .show, .headtext, .deadline-table {
    overflow: visible !important
}

/* ========================================
   新增模块样式 - 专家评审、精彩瞬间等
======================================== */

/* 模块通用标题样式 */
.module-title {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    position: relative;
}

    .module-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        border-radius: 2px;
    }

    .module-title h2 {
        font-size: 1.35rem;
        color: #fff;
        font-weight: 800;
        margin: 0 0 0.5rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-shadow: 0 2px 10px rgba(0,0,0,0.4);
        flex-wrap: wrap;
        line-height: 1.4;
    }

        .module-title h2 i,
        .module-title h2 .title-icon {
            font-size: 1.1rem;
            color: #8b0000;
            background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
            width: 2.25rem;
            height: 2.25rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.625rem;
            box-shadow: 0 3px 10px rgba(255,215,0,0.4);
            font-style: normal;
        }

        .module-title h2 .highlight {
            color: #fff;
        }

    .module-title .subtitle {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.75);
        margin-top: 0.5rem;
    }

/* 专家评审团模块 */
.expert-panel {
    margin: 1.75rem 0;
    padding: 1.25rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.06);
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.875rem;
}

.expert-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 1rem;
    padding: 1rem 0.75rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .expert-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .expert-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.25), 0 0 20px rgba(255,112,67,0.15);
        background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 100%);
    }

        .expert-card:hover::before {
            opacity: 1;
        }

    .expert-card .avatar {
        width: 6rem;
        height: 6rem;
        border-radius: 50%;
        margin: 0 auto 0.625rem;
        overflow: hidden;
        border: 3px solid #fff;
        transition: all 0.3s ease;
    }

    .expert-card:hover .avatar {
        transform: scale(1.05);
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.35), 0 0 0 5px rgba(255,255,255,0.25);
    }

    .expert-card .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .expert-card .name {
        font-size: 0.95rem;
        color: #fff;
        font-weight: 700;
        margin-bottom: 0.375rem;
        text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    .expert-card .position {
        font-size: 0.72rem;
        color: var(--text-yellow);
        line-height: 1.45;
    }

/* 精彩瞬间模块 */
.moments-section {
    margin: 1.75rem 0;
    padding: 1.25rem;
    background: rgba(255,255,255,0.06);
    border-radius: 1rem;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
}

.moment-item {
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

    .moment-item::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .moment-item:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }

        .moment-item:hover::after {
            opacity: 1;
        }

    .moment-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .moment-item:hover img {
        transform: scale(1.08);
    }

/* 7张图片布局 - PC: 第一张大图占2x2，其他5张在右侧和下方 */
.moments-grid-7 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
}

    .moments-grid-7 .moment-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }

.moment-item {
    cursor: pointer;
}

/* 弹出层样式 */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

    .lightbox.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s;
}

    .lightbox-close:hover {
        opacity: 1;
    }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem 1.25rem;
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s;
}

    .lightbox-prev:hover,
    .lightbox-next:hover {
        opacity: 1;
        background: rgba(255,255,255,0.25);
    }

.lightbox-prev {
    left: -5rem;
}

.lightbox-next {
    right: -5rem;
}

/* 响应式专家网格 - 已移至底部统一响应式模块 */

/* 文字内容模块 */
.content-module {
    background: linear-gradient(145deg, rgba(144, 38, 61, 0.45) 0%, rgba(144, 38, 61, 0.25) 100%);
    border-radius: 1.25rem;
    padding: 1.5rem 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .content-module .module-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

        .content-module .module-header .icon {
            width: 2.25rem;
            height: 2.25rem;
            min-width: 2.25rem;
            background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
            border-radius: 0.625rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #8b0000;
            flex-shrink: 0;
            box-shadow: 0 3px 10px rgba(255,215,0,0.4);
            font-weight: bold;
        }

/* 金色ICON样式 - 通用 */
.gold-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%) !important;
    color: #8b0000 !important;
    font-style: normal;
}

.content-module .module-header h3 {
    font-size: 1.15rem;
    color: #fff;
    margin: 0;
    font-weight: 800;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
    line-height: 1.4;
}

    .content-module .module-header h3 .highlight {
        color: #fff;
    }

.content-module .module-body {
    font-size: 0.875rem;
    color: var(--text-yellow);
    line-height: 1.85;
}

    .content-module .module-body p {
        margin: 0 0 0.875rem;
        text-align: justify;
    }

/* 无头部样式 - 隐藏module-header */
.content-module.no-header .module-header {
    display: none;
}

.content-module.no-header {
    padding-top: 1rem;
}

.content-module .module-body p:last-child {
    margin-bottom: 0;
}

/* 征集范围模块 */
.scope-module {
    background: linear-gradient(145deg, rgba(144, 38, 61, 0.45) 0%, rgba(144, 38, 61, 0.25) 100%);
}

.scope-item {
    margin-bottom: 1rem;
    padding: 0.875rem 0 0.875rem 1rem;
    background: rgba(255,255,255,0.08) !important;
    border-radius: 0.625rem;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

    .scope-item:hover {
        background: rgba(255,255,255,0.12);
        transform: translateX(3px);
    }

    .scope-item:last-child {
        margin-bottom: 0;
    }

    .scope-item .label {
        font-size: 0.95rem;
        color: #fff;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 4px;
    }

        .scope-item .label::before {
            content: "@";
            font-size: 1rem;
            font-weight: 800;
            color: var(--accent);
            background: rgba(255,112,67,0.2);
            width: 1.5rem;
            height: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

    .scope-item .text {
        font-size: 0.825rem;
        color: var(--text-yellow);
        line-height: 1.75;
    }

/* 评审维度模块 */
.dimension-module {
    background: linear-gradient(145deg, rgba(144, 38, 61, 0.45) 0%, rgba(144,38,61,0.2) 100%);
    border: 1px solid rgba(255,255,255,0.15);
}

.dimension-group {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 0.75rem;
}

    .dimension-group:last-child {
        margin-bottom: 0;
    }

    .dimension-group .group-title {
        font-size: 1rem;
        color: #fff;
        font-weight: 700;
        margin-bottom: 1rem;
        padding: 0.625rem 1rem;
        background: linear-gradient(90deg, var(--accent) 0%, rgba(255,112,67,0.6) 100%);
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .dimension-group .group-title::before {
            content: "";
            width: 4px;
            height: 1rem;
            background: #fff;
            border-radius: 2px;
        }

.dimension-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
    padding: 0.875rem;
    border-radius: 0.625rem;
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08) !important;
}

    .dimension-item:hover {
        background: rgba(255,255,255,0.12);
        transform: translateX(3px);
    }

    .dimension-item:last-child {
        margin-bottom: 0;
    }

    .dimension-item .dim-name {
        font-size: 0.9rem;
        color: #fff;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.5rem;
    }

        .dimension-item .dim-name .score {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
            color: #8b0000;
            font-size: 0.75rem;
            font-weight: 800;
            padding: 0.25rem 0.625rem;
            border-radius: 1rem;
            min-width: 3rem;
            box-shadow: 0 2px 8px rgba(255,215,0,0.3);
        }

    .dimension-item .dim-desc {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.9);
        line-height: 1.65;
    }

/* ========================================
   新增样式 - 页面头部优化
======================================== */

/* 口号双行样式 */
.slogan-lines {
    text-align: center;
    margin-bottom: 0.75rem;
}

.slogan-line {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    line-height: 1.6;
    color: var(--text-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 英文装饰副标题 */
.subtitle-en {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.25rem;
    font-weight: 400;
    text-align: center;
    font-style: italic;
}

/* 模块标题icon样式 */
.module-title h2 i,
.module-header h3 i,
.module-header .icon i {
    color: var(--accent);
}

/* 评审维度选项卡容器 */
.dimension-card {
    background: rgba(255,255,255,0.06);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
}

/* 评审维度选项卡 - 融合一体化设计 */
.dimension-tabs {
    display: flex;
    gap: 0;
    margin: 0;
    background: transparent;
}

.dimension-tab {
    flex: 1;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    border: none;
    background: rgba(0,0,0,0.2);
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column !important;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: left;
    gap: 0.5rem;
    position: relative;
}

    .dimension-tab:first-child {
        border-radius: 1rem 0 0 0;
    }

    .dimension-tab:last-child {
        border-radius: 0 1rem 0 0;
    }

    .dimension-tab .tab-main {
        display: flex;
        align-items: center;
        gap: 0.625rem;
    }

    .dimension-tab .tab-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

        .dimension-tab .tab-icon svg {
            width: 1.5rem;
            height: 1.5rem;
            fill: currentColor;
        }

    .dimension-tab.active .tab-icon {
        background: rgba(139,0,0,0.15);
        box-shadow: 0 0 12px rgba(255,215,0,0.4);
    }

    .dimension-tab .tab-label {
        font-size: 1rem;
        font-weight: 700;
    }

    .dimension-tab .tab-desc {
        font-size: 0.72rem;
        font-weight: 400;
        opacity: 0.6;
        color: rgba(255,255,255,0.8);
        text-align: center;
        line-height: 1.3;
    }

    .dimension-tab:hover {
        background: rgba(0,0,0,0.2);
        color: rgba(255,255,255,0.95);
    }

    .dimension-tab.active {
        background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
        color: #8b0000;
    }

        .dimension-tab.active .tab-icon {
            transform: scale(1.1);
        }

        .dimension-tab.active .tab-desc {
            opacity: 1;
            color: #8b0000;
        }

/* PC端选项卡水平布局 */
@media (min-width: 769px) {
    .dimension-tab {
        -webkit-flex-direction: row !important;
        flex-direction: row !important;
        gap: 1rem;
        padding: 1.25rem;
    }

        .dimension-tab .tab-main {
            gap: 0.75rem;
        }

        .dimension-tab .tab-icon {
            width: 3rem;
            height: 3rem;
        }

            .dimension-tab .tab-icon svg {
                width: 2rem;
                height: 2rem;
            }

        .dimension-tab .tab-label {
            font-size: 1.1rem;
        }

        .dimension-tab .tab-desc {
            font-size: 0.8rem;
            text-align: left;
        }
}

/* 手机端选项卡样式 */
@media (max-width: 768px) {
    .dimension-tab {
        -webkit-flex-direction: column !important;
        flex-direction: column !important;
        padding: 0.875rem 0.75rem;
        gap: 0.375rem;
    }

        .dimension-tab .tab-main {
            gap: 0.5rem;
        }

        .dimension-tab .tab-icon {
            font-size: 1.1rem;
        }

        .dimension-tab .tab-label {
            font-size: 0.95rem;
        }

        .dimension-tab .tab-desc {
            font-size: 0.65rem;
        }
}

/* 评审维度面板 */
.dimension-panel {
    display: none;
    padding: 1.5rem 0;
    background: transparent;
}

    .dimension-panel.active {
        display: block;
        animation: slideIn 0.35s ease;
    }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* ========================================
   响应式设计 - PC和手机兼容
======================================== */

/* PC端样式优化（1200px宽度） */
@media (min-width: 769px) {
    .section {
        margin-bottom: 2rem;
    }

    .expert-panel {
        padding: 2rem;
    }

    .expert-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .expert-card {
        padding: 1.5rem 1rem;
    }

        .expert-card .avatar {
            width: 6rem;
            height: 6rem;
        }

        .expert-card .name {
            font-size: 1.1rem;
        }

        .expert-card .position {
            font-size: 0.85rem;
        }

    .moments-section {
        padding: 2rem;
    }

    .moments-grid {
        gap: 1rem;
    }

    .content-module {
        padding: 2rem;
    }

    .module-title h2 {
        font-size: 1.75rem;
    }

        .module-title h2 i {
            width: 2.75rem;
            height: 2.75rem;
            font-size: 1.3rem;
        }

    .content-module .module-header h3 {
        font-size: 1.4rem;
    }

    .content-module .module-header .icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.3rem;
    }

    .card {
        padding: 1.5rem;
    }

        .card .cn {
            font-size: 1.1rem;
        }

    .badge {
        width: 3rem;
        height: 3rem;
        font-size: 1.3rem;
    }

    .dimension-tab {
        padding: 1rem;
        font-size: 1rem;
    }

        .dimension-tab .tab-icon {
            width: 2.5rem;
            height: 2.5rem;
            font-size: 1rem;
        }

    .dimension-item {
        padding: 1.25rem;
    }

        .dimension-item .dim-name {
            font-size: 1.05rem;
        }

        .dimension-item .dim-desc {
            font-size: 0.95rem;
        }

    .cta {
        gap: 1.5rem;
    }

    .btn {
        padding: 1rem;
        font-size: 1.3rem;
    }
}

/* 默认PC样式 - 专家每行4个 */
.expert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.875rem;
}

/* 手机适配 - 专家每行2个 */
@media (max-width: 768px) {
    .wrap {
        padding: 0 0.75rem;
    }

    .slogan-line {
        font-size: 0.95rem;
    }

    .expert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }

    .expert-card {
        padding: 0.875rem 0.5rem;
    }

        .expert-card .avatar {
            width: 6rem;
            height: 6rem;
        }

        .expert-card .name {
            font-size: 0.85rem;
        }

        .expert-card .position {
            font-size: 0.65rem;
        }

    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

        .moments-grid .moment-item:first-child {
            grid-column: span 2;
            grid-row: span 1;
        }

    .moments-grid-7 {
        grid-template-columns: repeat(2, 1fr);
    }

        .moments-grid-7 .moment-item:first-child {
            grid-column: span 2;
            grid-row: span 1;
        }

    /* 移动端弹出层调整 */
    .lightbox-prev {
        left: 0.5rem;
        padding: 0.75rem 1rem;
        font-size: 1.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
        padding: 0.75rem 1rem;
        font-size: 1.5rem;
    }

    .lightbox-close {
        top: -2.5rem;
        font-size: 2rem;
    }

    .content-module {
        padding: 1rem;
    }

    .module-header h3 {
        font-size: 0.9rem;
    }

    .module-title h2 {
        font-size: 1.1rem;
    }

    .dimension-tabs {
        flex-direction: row;
        gap: 0;
    }

    .dimension-tab {
        -webkit-flex-direction: column !important;
        flex-direction: column !important;
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
        gap: 0.375rem;
    }

        .dimension-tab .tab-icon {
            width: 2rem;
            height: 2rem;
            font-size: 0.85rem;
            border-radius: 50%;
        }

        .dimension-tab .tab-label {
            font-size: 0.9rem;
        }

        .dimension-tab .tab-desc {
            font-size: 0.6rem;
            line-height: 1.2;
        }

    .card {
        padding: 1rem;
    }

    .badge {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }

    .card .cn {
        font-size: 0.85rem;
    }

    .cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .slogan-line {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .expert-card .avatar {
        width: 6rem;
        height: 6rem;
    }

    .module-title h2 {
        font-size: 1rem;
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .dimension-tabs {
        gap: 0;
    }

    .dimension-tab {
        -webkit-flex-direction: column !important;
        flex-direction: column !important;
        padding: 0.5rem 0.375rem;
        font-size: 0.85rem;
        gap: 0.25rem;
    }

        .dimension-tab .tab-icon {
            width: 1.75rem;
            height: 1.75rem;
            font-size: 0.75rem;
            border-radius: 50%;
        }

        .dimension-tab .tab-label {
            font-size: 0.8rem;
        }

        .dimension-tab .tab-desc {
            font-size: 0.55rem;
        }
}
