* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'Arial', sans-serif;
    line-height: 1.7;
    color: #e0e0e0;
    background: #0a0a0f;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(220, 20, 60, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(15, 10, 20, 0.98) 100%);
    pointer-events: none;
    z-index: 0;
}

.k8m3t9x2w5 {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98), rgba(20, 15, 25, 0.98));
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(218, 165, 32, 0.3);
    z-index: 1000;
    border-bottom: 2px solid rgba(218, 165, 32, 0.4);
    animation: headerFade8m3k 1s ease-out;
}

@keyframes headerFade8m3k {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.n5x8m3t9w2 {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p9t3m8x5k2 h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.p9t3m8x5k2 h1 a {
    background: linear-gradient(135deg, #daa520 0%, #ffd700 50%, #daa520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: all 0.4s ease;
    text-shadow: 0 3px 18px rgba(218, 165, 32, 0.6);
    display: inline-block;
    position: relative;
}

.p9t3m8x5k2 h1 a::before {
    content: '🎬';
    margin-right: 12px;
    font-size: 2.3rem;
    animation: filmRoll5t8k 4s linear infinite;
    filter: drop-shadow(0 0 15px rgba(218, 165, 32, 0.9));
}

@keyframes filmRoll5t8k {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.p9t3m8x5k2 h1 a:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(218, 165, 32, 0.9));
}

.q7m3x9t5k8 {
    display: flex;
    list-style: none;
    gap: 0.8rem;
}

.q7m3x9t5k8 li a {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 800;
    font-size: 1.08rem;
    padding: 0.95rem 2rem;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15), rgba(220, 20, 60, 0.12));
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.q7m3x9t5k8 li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.3), rgba(220, 20, 60, 0.2));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.q7m3x9t5k8 li a:hover::before {
    width: 350px;
    height: 350px;
}

.q7m3x9t5k8 li a:hover {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.25), rgba(220, 20, 60, 0.2));
    transform: translateY(-4px) scale(1.04);
    border-color: rgba(218, 165, 32, 0.7);
    box-shadow: 0 10px 35px rgba(218, 165, 32, 0.5);
    color: #daa520;
}

.r3k8m9x5t7 {
    max-width: 1600px;
    margin: 70px auto 4rem;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.s9x5m3t8k7 {
    background: linear-gradient(135deg, rgba(20, 15, 25, 0.95), rgba(30, 20, 35, 0.95));
    padding: 4.5rem 5rem;
    border-radius: 35px;
    box-shadow: 0 18px 65px rgba(218, 165, 32, 0.35);
    margin-bottom: 4rem;
    text-align: center;
    animation: bannerShow7k3m 1.3s ease-out;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(218, 165, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.s9x5m3t8k7::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 50px,
                rgba(218, 165, 32, 0.04) 50px, rgba(218, 165, 32, 0.04) 100px);
    animation: stripeSlide9k5t 35s linear infinite;
}

@keyframes stripeSlide9k5t {
    to { transform: translate(70px, 70px); }
}

@keyframes bannerShow7k3m {
    from { opacity: 0; transform: translateY(60px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.s9x5m3t8k7 h2 {
    font-size: 4.5rem;
    margin-bottom: 2.3rem;
    background: linear-gradient(135deg, #daa520, #ffd700 35%, #dc143c 65%, #ffd700 85%, #daa520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    position: relative;
    z-index: 1;
    animation: titleGlow3k8m 3.5s ease-in-out infinite;
    text-shadow: 0 4px 28px rgba(218, 165, 32, 0.7);
    letter-spacing: 2.5px;
}

@keyframes titleGlow3k8m {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.02); filter: brightness(1.15); }
}

.s9x5m3t8k7 p {
    font-size: 1.55rem;
    color: #c0c0c0;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.t5m8x3k9w7 {
    margin-bottom: 4rem;
}

.t5m8x3k9w7 h2 {
    font-size: 2.8rem;
    margin-bottom: 3.3rem;
    background: linear-gradient(135deg, #daa520, #ffd700 50%, #dc143c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    padding: 1.8rem 3.5rem;
    background-color: rgba(20, 15, 25, 0.9);
    border-radius: 28px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.3);
    border: 2.5px solid rgba(218, 165, 32, 0.35);
    position: relative;
}

.t5m8x3k9w7 h2::before {
    content: '⭐';
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.3rem;
    animation: starPulse5k8t 2.5s ease-in-out infinite;
}

@keyframes starPulse5k8t {
    0%, 100% { transform: translateY(-50%) scale(1) rotate(0deg); opacity: 1; }
    50% { transform: translateY(-50%) scale(1.35) rotate(180deg); opacity: 0.65; }
}

.u9m3x8t5k7 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 3.2rem;
}

.v3x8m5t9k7 {
    background: linear-gradient(135deg, rgba(20, 15, 25, 0.96), rgba(30, 20, 35, 0.96));
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(218, 165, 32, 0.28);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: cardShow9k3t 1.2s ease-out backwards;
    border: 2.5px solid rgba(218, 165, 32, 0.25);
    position: relative;
}

.v3x8m5t9k7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(218, 165, 32, 0.18), transparent 65%);
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
}

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

.v3x8m5t9k7:nth-child(1) { animation-delay: 0.1s; }
.v3x8m5t9k7:nth-child(2) { animation-delay: 0.2s; }
.v3x8m5t9k7:nth-child(3) { animation-delay: 0.3s; }
.v3x8m5t9k7:nth-child(4) { animation-delay: 0.4s; }
.v3x8m5t9k7:nth-child(5) { animation-delay: 0.5s; }
.v3x8m5t9k7:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardShow9k3t {
    from { opacity: 0; transform: translateY(55px) scale(0.93); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.v3x8m5t9k7:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 30px 75px rgba(218, 165, 32, 0.55);
    border-color: #daa520;
}

.w7k3m9x5t8 {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.w7k3m9x5t8 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.v3x8m5t9k7:hover .w7k3m9x5t8 img {
    transform: scale(1.18) rotate(-1.5deg);
}

.x9k5m3t8w7 {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, #daa520, #dc143c);
    color: #fff;
    padding: 0.75rem 1.85rem;
    border-radius: 28px;
    font-size: 0.98rem;
    font-weight: 900;
    box-shadow: 0 6px 28px rgba(218, 165, 32, 0.75);
    animation: badgeShine5k8t 3s ease-in-out infinite;
    border: 2.5px solid rgba(255, 255, 255, 0.45);
}

@keyframes badgeShine5k8t {
    0%, 100% { transform: scale(1); box-shadow: 0 6px 28px rgba(218, 165, 32, 0.75); }
    50% { transform: scale(1.1); box-shadow: 0 9px 40px rgba(218, 165, 32, 0.95); }
}

.y5m8x3k9t7 {
    padding: 2.8rem;
}

.y5m8x3k9t7 h3 {
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
    background: linear-gradient(135deg, #daa520, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    line-height: 1.6;
}

.y5m8x3k9t7 h3 a {
    background: linear-gradient(135deg, #daa520, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: all 0.3s;
}

.y5m8x3k9t7 h3 a:hover {
    opacity: 0.75;
    transform: scale(1.02);
}

.y5m8x3k9t7 p {
    margin-bottom: 1.7rem;
    line-height: 2;
    color: #b0b0b0;
    font-size: 1.06rem;
    font-weight: 600;
}

.z3m9x5t8k7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.4rem;
    border-top: 2.5px dashed rgba(218, 165, 32, 0.3);
    font-size: 0.98rem;
    color: #909090;
    font-weight: 700;
    flex-wrap: wrap;
    gap: 1.1rem;
}

.a8k5m3x9t7 {
    display: inline-block;
    margin-top: 1.4rem;
    padding: 1.05rem 3rem;
    background: linear-gradient(135deg, #daa520, #ffd700 50%, #dc143c);
    color: #fff;
    text-decoration: none;
    border-radius: 32px;
    transition: all 0.45s ease;
    font-weight: 900;
    font-size: 1.08rem;
    box-shadow: 0 10px 38px rgba(218, 165, 32, 0.65);
    border: 2.5px solid rgba(255, 255, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.a8k5m3x9t7::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s, height 0.7s;
    z-index: -1;
}

.a8k5m3x9t7:hover::before {
    width: 380px;
    height: 380px;
}

.a8k5m3x9t7:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 60px rgba(218, 165, 32, 0.9);
}

.b9m5x3t8k7 {
    background: linear-gradient(135deg, rgba(20, 15, 25, 0.96), rgba(30, 20, 35, 0.96));
    border-radius: 28px;
    padding: 3.8rem;
    box-shadow: 0 18px 65px rgba(218, 165, 32, 0.3);
    backdrop-filter: blur(20px);
    border: 2.5px solid rgba(218, 165, 32, 0.25);
    margin-bottom: 4rem;
}

.c3x9m5t8k7 {
    list-style: none;
}

.c3x9m5t8k7 li {
    padding: 1.7rem;
    margin-bottom: 1.4rem;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(220, 20, 60, 0.08));
    border-radius: 18px;
    transition: all 0.45s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid transparent;
    box-shadow: 0 5px 22px rgba(218, 165, 32, 0.15);
}

.c3x9m5t8k7 li:hover {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(220, 20, 60, 0.16));
    transform: translateX(13px);
    border-left-color: #daa520;
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.45);
}

.c3x9m5t8k7 li a {
    color: #daa520;
    text-decoration: none;
    font-size: 1.18rem;
    font-weight: 900;
    flex: 1;
    transition: color 0.3s;
}

.c3x9m5t8k7 li a:hover {
    color: #ffd700;
}

.c3x9m5t8k7 li time {
    color: #909090;
    font-size: 0.98rem;
    font-weight: 700;
}

.d5t9m3x8k7 {
    background: linear-gradient(135deg, rgba(20, 15, 25, 0.96), rgba(30, 20, 35, 0.96));
    padding: 4.8rem 4.3rem 3.8rem;
    margin-top: 6rem;
    border-radius: 35px 35px 0 0;
    box-shadow: 0 -12px 60px rgba(218, 165, 32, 0.3);
    border-top: 3.5px solid rgba(218, 165, 32, 0.55);
    backdrop-filter: blur(20px);
}

.e9m3x5t8k7 {
    max-width: 1600px;
    margin: 0 auto 3.8rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.8rem;
}

.f3x8m5t9k7 h3 {
    margin-bottom: 1.9rem;
    background: linear-gradient(135deg, #daa520, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-weight: 900;
}

.f3x8m5t9k7 p {
    color: #b0b0b0;
    line-height: 2;
    font-weight: 700;
}

.f3x8m5t9k7 ul {
    list-style: none;
}

.f3x8m5t9k7 ul li {
    margin-bottom: 1.2rem;
}

.f3x8m5t9k7 ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.35s;
    font-weight: 700;
}

.f3x8m5t9k7 ul li a:hover {
    color: #daa520;
    padding-left: 13px;
}

.g7k9m3x5t8 {
    text-align: center;
    padding: 3.3rem;
    border-top: 2.5px dashed rgba(218, 165, 32, 0.3);
    color: #909090;
    font-weight: 700;
}

.h5m9x3t8k7 {
    position: fixed;
    bottom: 45px;
    right: 45px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #daa520, #dc143c);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 2.3rem;
    cursor: pointer;
    box-shadow: 0 12px 45px rgba(218, 165, 32, 0.75);
    transition: all 0.45s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    font-weight: 900;
    border: 3.5px solid rgba(255, 255, 255, 0.4);
}

.h5m9x3t8k7.i9k3m5x7t8 {
    opacity: 1;
    visibility: visible;
    animation: btnPop7k3m 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes btnPop7k3m {
    from { transform: scale(0) rotate(-680deg); }
    to { transform: scale(1) rotate(0deg); }
}

.h5m9x3t8k7:hover {
    transform: translateY(-10px) scale(1.15);
    box-shadow: 0 22px 70px rgba(218, 165, 32, 0.95);
}

.j3m8x5t9k7 {
    padding: 1.7rem 0;
    margin-bottom: 3.3rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #daa520, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.j3m8x5t9k7 a {
    color: #daa520;
    text-decoration: none;
    transition: color 0.3s;
}

.j3m8x5t9k7 a:hover {
    color: #ffd700;
}

.k9m3x5t7a8 {
    background: linear-gradient(135deg, rgba(20, 15, 25, 0.96), rgba(30, 20, 35, 0.96));
    padding: 4.8rem;
    border-radius: 32px;
    box-shadow: 0 18px 75px rgba(218, 165, 32, 0.3);
    margin-bottom: 4rem;
    animation: bannerShow7k3m 1.3s ease-out;
    backdrop-filter: blur(20px);
    border: 2.5px solid rgba(218, 165, 32, 0.25);
}

.k9m3x5t7a8 h2 {
    font-size: 3.6rem;
    background: linear-gradient(135deg, #daa520, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3.8rem;
    padding-bottom: 3.3rem;
    border-bottom: 3.5px solid rgba(218, 165, 32, 0.35);
    font-weight: 900;
}

.l5x9m3t8k7 {
    display: flex;
    gap: 2.8rem;
    margin-bottom: 3.8rem;
    padding-bottom: 3.3rem;
    border-bottom: 2.5px dashed rgba(218, 165, 32, 0.25);
    font-size: 1.08rem;
    color: #909090;
    flex-wrap: wrap;
    font-weight: 700;
}

.k9m3x5t7a8 img {
    width: 100%;
    max-width: 1050px;
    height: auto;
    margin: 3.8rem 0;
    border-radius: 28px;
    box-shadow: 0 18px 65px rgba(218, 165, 32, 0.4);
    border: 3.5px solid rgba(218, 165, 32, 0.35);
}

.k9m3x5t7a8 section h3 {
    font-size: 2.6rem;
    background: linear-gradient(135deg, #daa520, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 4.3rem 0 3.3rem;
    font-weight: 900;
}

.k9m3x5t7a8 section p {
    margin-bottom: 2.3rem;
    line-height: 2.1;
    color: #b0b0b0;
    text-align: justify;
    font-size: 1.13rem;
    font-weight: 600;
}

.k9m3x5t7a8 section strong {
    color: #daa520;
    font-weight: 900;
}

@media (max-width: 992px) {
    .u9m3x8t5k7 {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    }
}

@media (max-width: 768px) {
    .q7m3x9t5k8 {
        flex-direction: column;
        gap: 0.9rem;
    }
    .s9x5m3t8k7 h2 {
        font-size: 3.8rem;
    }
    .u9m3x8t5k7 {
        grid-template-columns: 1fr;
    }
    .k9m3x5t7a8 {
        padding: 3.8rem;
    }
    .k9m3x5t7a8 h2 {
        font-size: 3rem;
    }
}
