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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.6;
    color: #e8eaed;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(58, 134, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(155, 89, 182, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse9k7m 20s ease-in-out infinite;
}

@keyframes bgPulse9k7m {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.m7x4k9p2q3 {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.95), rgba(255, 107, 53, 0.95), rgba(255, 99, 72, 0.95));
    box-shadow: 0 5px 40px rgba(255, 71, 87, 0.6);
    z-index: 1000;
    border-bottom: 3px solid rgba(58, 134, 255, 0.5);
    animation: headerSlide7m3k 1s ease-out;
    backdrop-filter: blur(15px);
}

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

.n8k5x3m7p4 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.3rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.p5m9k3x7q8 h1 a {
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    display: inline-block;
    position: relative;
}

.p5m9k3x7q8 h1 a::before {
    content: '🎬';
    margin-right: 15px;
    font-size: 2.3rem;
    animation: cameraShake6k9m 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
}

@keyframes cameraShake6k9m {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    50% { transform: rotate(10deg) scale(1.15); }
    75% { transform: rotate(-10deg) scale(1.1); }
}

.p5m9k3x7q8 h1 a:hover {
    transform: scale(1.08);
    text-shadow: 0 5px 25px rgba(255, 255, 255, 0.7);
}

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

.q7k4m9x5p3 li a {
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.q7k4m9x5p3 li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(58, 134, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

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

.q7k4m9x5p3 li a:hover {
    background: rgba(58, 134, 255, 0.9);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.6);
}

.r9m3k7x5p8 {
    max-width: 1400px;
    margin: 80px auto 3rem;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.s5k9m7x3p8 {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.95), rgba(255, 107, 53, 0.95), rgba(255, 99, 72, 0.95));
    padding: 4rem 4.5rem;
    border-radius: 30px;
    box-shadow: 0 15px 60px rgba(255, 71, 87, 0.5);
    margin-bottom: 3.5rem;
    text-align: center;
    animation: bannerZoom8k5m 1.3s ease-out;
    backdrop-filter: blur(20px);
    border: 4px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.s5k9m7x3p8::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 50px,
                rgba(255, 255, 255, 0.08) 50px, rgba(255, 255, 255, 0.08) 100px);
    animation: stripeMove6k7m 25s linear infinite;
}

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

@keyframes bannerZoom8k5m {
    0% { opacity: 0; transform: scale(0.85); }
    70% { transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

.s5k9m7x3p8 h2 {
    font-size: 4rem;
    margin-bottom: 1.8rem;
    color: #fff;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    letter-spacing: 3px;
}

.s5k9m7x3p8 p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.t7m9k5x3p8 {
    margin-bottom: 3.5rem;
}

.t7m9k5x3p8 h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b35;
    font-weight: 900;
    padding: 1.8rem 3.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 71, 87, 0.2));
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    border: 3px solid rgba(255, 107, 53, 0.4);
    position: relative;
}

.t7m9k5x3p8 h2::before {
    content: '🎥';
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.3rem;
    animation: videoRoll5k8m 3s linear infinite;
}

@keyframes videoRoll5k8m {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-50%) rotate(180deg); }
}

.u9m3k7x5p8 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
}

.v5k9m3x7p8 {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.98), rgba(40, 40, 60, 0.98));
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    animation: cardFloat6k8m 1s ease-out backwards;
    border: 3px solid rgba(255, 107, 53, 0.3);
    position: relative;
}

.v5k9m3x7p8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(58, 134, 255, 0.15));
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

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

.v5k9m3x7p8:nth-child(1) { animation-delay: 0.15s; }
.v5k9m3x7p8:nth-child(2) { animation-delay: 0.3s; }
.v5k9m3x7p8:nth-child(3) { animation-delay: 0.45s; }
.v5k9m3x7p8:nth-child(4) { animation-delay: 0.6s; }
.v5k9m3x7p8:nth-child(5) { animation-delay: 0.75s; }
.v5k9m3x7p8:nth-child(6) { animation-delay: 0.9s; }

@keyframes cardFloat6k8m {
    0% { opacity: 0; transform: translateY(60px) scale(0.9); }
    70% { transform: translateY(-12px) scale(1.03); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.v5k9m3x7p8:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 80px rgba(255, 107, 53, 0.5);
    border-color: #ff6b35;
}

.w3m7k9x5p8 {
    position: relative;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
}

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

.v5k9m3x7p8:hover .w3m7k9x5p8 img {
    transform: scale(1.2) rotate(3deg);
}

.w3m7k9x5p8::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 71, 87, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(255, 71, 87, 0.8);
}

.v5k9m3x7p8:hover .w3m7k9x5p8::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.x7k5m9x3p8 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #3a86ff, #00d2ff);
    color: #fff;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 8px 25px rgba(58, 134, 255, 0.7);
    animation: badgeFloat5k7m 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

@keyframes badgeFloat5k7m {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.y9m5k3x7p8 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.z5m9k7x3p8 {
    padding: 2rem;
}

.z5m9k7x3p8 h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff6b35;
    font-weight: 900;
    line-height: 1.5;
}

.z5m9k7x3p8 h3 a {
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s;
}

.z5m9k7x3p8 h3 a:hover {
    color: #3a86ff;
}

.z5m9k7x3p8 p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #b8bdc4;
    font-size: 1rem;
    font-weight: 500;
}

.a9k3m5x7p8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 2px dashed rgba(255, 107, 53, 0.3);
    font-size: 0.9rem;
    color: #8a8f98;
    font-weight: 700;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.b7m9k5x3p8 {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, #ff4757, #ff6b35);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s ease;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 10px 35px rgba(255, 71, 87, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

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

.b7m9k5x3p8:hover::before {
    width: 400px;
    height: 400px;
}

.b7m9k5x3p8:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 60px rgba(255, 71, 87, 0.8);
}

.c5m9k7x3p8 {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.98), rgba(40, 40, 60, 0.98));
    border-radius: 25px;
    padding: 3.5rem;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 3.5rem;
}

.d7k9m5x3p8 {
    list-style: none;
}

.d7k9m5x3p8 li {
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 71, 87, 0.12));
    border-radius: 20px;
    transition: all 0.4s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.d7k9m5x3p8 li:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 71, 87, 0.2));
    transform: translateX(15px);
    border-left-color: #3a86ff;
    box-shadow: 0 10px 40px rgba(58, 134, 255, 0.4);
}

.d7k9m5x3p8 li a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
    flex: 1;
    transition: color 0.3s;
}

.d7k9m5x3p8 li a:hover {
    color: #3a86ff;
}

.d7k9m5x3p8 li time {
    color: #8a8f98;
    font-size: 1rem;
    font-weight: 700;
}

.e9m3k5x7p8 {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.98), rgba(40, 40, 60, 0.98));
    border-radius: 25px;
    padding: 3.5rem;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 3.5rem;
}

.e9m3k5x7p8 h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b35;
    font-weight: 900;
    padding-bottom: 2rem;
    border-bottom: 4px solid rgba(255, 107, 53, 0.3);
}

.f5k9m7x3p8 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(520px, 1fr));
    gap: 2.5rem;
}

.g9k5m3x7p8 {
    background: linear-gradient(135deg, rgba(40, 40, 60, 0.98), rgba(30, 30, 50, 0.98));
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
    animation: commentSlide7k3m 0.7s ease-out backwards;
}

.g9k5m3x7p8:nth-child(1) { animation-delay: 0.15s; }
.g9k5m3x7p8:nth-child(2) { animation-delay: 0.3s; }
.g9k5m3x7p8:nth-child(3) { animation-delay: 0.45s; }
.g9k5m3x7p8:nth-child(4) { animation-delay: 0.6s; }

@keyframes commentSlide7k3m {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

.g9k5m3x7p8:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
}

.h3m9k5x7p8 {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 2px dashed rgba(255, 107, 53, 0.3);
}

.h3m9k5x7p8 img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 107, 53, 0.4);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.4s ease;
}

.g9k5m3x7p8:hover .h3m9k5x7p8 img {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.i7m5k9x3p8 {
    flex: 1;
}

.j5k9m3x7p8 {
    display: block;
    font-size: 1.2rem;
    color: #ff6b35;
    margin-bottom: 0.4rem;
    font-weight: 900;
}

.k9m3x5k7p8 {
    font-size: 0.9rem;
    color: #8a8f98;
    font-weight: 700;
}

.l7k5m9x3p8 {
    line-height: 1.8;
    color: #b8bdc4;
    font-size: 1.05rem;
    font-weight: 500;
}

.m9m5k3x7p8 {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.95), rgba(255, 107, 53, 0.95));
    padding: 4.5rem 3.5rem 3.5rem;
    margin-top: 5rem;
    border-radius: 35px 35px 0 0;
    box-shadow: 0 -15px 70px rgba(255, 71, 87, 0.5);
    border-top: 4px solid rgba(58, 134, 255, 0.6);
    backdrop-filter: blur(20px);
}

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

.o9k3m5x7p8 h3 {
    margin-bottom: 1.8rem;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 900;
}

.o9k3m5x7p8 p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 2;
    font-weight: 700;
}

.o9k3m5x7p8 ul {
    list-style: none;
}

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

.o9k3m5x7p8 ul li a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 700;
}

.o9k3m5x7p8 ul li a:hover {
    color: #fff;
    padding-left: 15px;
}

.p9m5k7x3p8 {
    text-align: center;
    padding: 3.5rem;
    border-top: 3px dashed rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.q7x9m3k5p8 {
    position: fixed;
    bottom: 45px;
    right: 45px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3a86ff, #00d2ff);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 2.3rem;
    cursor: pointer;
    box-shadow: 0 12px 45px rgba(58, 134, 255, 0.7);
    transition: all 0.4s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    font-weight: 900;
    border: 4px solid rgba(255, 255, 255, 0.5);
}

.q7x9m3k5p8.r5m9k3x7p8 {
    opacity: 1;
    visibility: visible;
    animation: btnBounce6k3m 1s ease-out;
}

@keyframes btnBounce6k3m {
    0% { transform: scale(0) rotate(-360deg); }
    70% { transform: scale(1.15) rotate(15deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.q7x9m3k5p8:hover {
    transform: translateY(-10px) scale(1.15);
    box-shadow: 0 20px 70px rgba(58, 134, 255, 0.9);
}

.s9k3m5x7p8 {
    padding: 1.8rem 0;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #e8eaed;
    font-weight: 900;
}

.s9k3m5x7p8 a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s;
}

.s9k3m5x7p8 a:hover {
    color: #3a86ff;
}

.t9m5k7x3p8 {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.98), rgba(40, 40, 60, 0.98));
    padding: 4.5rem;
    border-radius: 30px;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.6);
    margin-bottom: 3.5rem;
    animation: bannerZoom8k5m 1.3s ease-out;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 107, 53, 0.3);
}

.t9m5k7x3p8 h2 {
    font-size: 3.5rem;
    color: #ff6b35;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 4px solid rgba(255, 107, 53, 0.3);
    font-weight: 900;
}

.u5m9k3x7p8 {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 2px dashed rgba(255, 107, 53, 0.3);
    font-size: 1.05rem;
    color: #8a8f98;
    flex-wrap: wrap;
    font-weight: 700;
}

.t9m5k7x3p8 img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    margin: 3.5rem 0;
    border-radius: 25px;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255, 107, 53, 0.3);
}

.t9m5k7x3p8 section h3 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin: 4.5rem 0 3rem;
    font-weight: 900;
}

.t9m5k7x3p8 section p {
    margin-bottom: 2.5rem;
    line-height: 2;
    color: #b8bdc4;
    text-align: justify;
    font-size: 1.1rem;
    font-weight: 500;
}

.t9m5k7x3p8 section strong {
    color: #ff6b35;
    font-weight: 900;
}

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

@media (max-width: 768px) {
    .q7k4m9x5p3 {
        flex-direction: column;
        gap: 1rem;
    }
    .s5k9m7x3p8 h2 {
        font-size: 3.5rem;
    }
    .u9m3k7x5p8 {
        grid-template-columns: 1fr;
    }
    .t9m5k7x3p8 {
        padding: 3.5rem;
    }
    .t9m5k7x3p8 h2 {
        font-size: 3rem;
    }
}
