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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    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 15% 20%, rgba(255, 193, 7, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(244, 67, 54, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(33, 33, 33, 0.5) 0%, transparent 60%);
    z-index: 0;
    animation: x7k9m3n5p 25s ease-in-out infinite;
}

@keyframes x7k9m3n5p {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.p8k4n2m9x {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(255, 193, 7, 0.2);
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
    animation: n5k8m2x7p 0.5s ease-out;
}

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

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

.k5n9m3x7p h1 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 3px;
    position: relative;
}

.k5n9m3x7p h1 a {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 50%, #f44336 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    animation: z3k7n9m5x 4s linear infinite;
    background-size: 200% auto;
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
}

@keyframes z3k7n9m5x {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.k5n9m3x7p h1 a::before {
    content: '▶';
    position: absolute;
    left: -30px;
    top: 0;
    font-size: 1.4rem;
    color: #ffc107;
    animation: q8k3n5m7x 1.5s infinite;
}

@keyframes q8k3n5m7x {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.k5n9m3x7p h1 a:hover {
    transform: scale(1.05);
    filter: brightness(1.3) drop-shadow(0 0 15px rgba(255, 193, 7, 0.8));
}

.x2k9n5m7p {
    display: flex;
    list-style: none;
    gap: 0.2rem;
}

.x2k9n5m7p li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.x2k9n5m7p li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.9) 0%, rgba(244, 67, 54, 0.9) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.x2k9n5m7p li a:hover::before {
    left: 0;
}

.x2k9n5m7p li a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #ffc107;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

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

.y9k2n6m5x {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(30, 30, 30, 0.92) 100%);
    padding: 4rem 3.5rem;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(255, 193, 7, 0.25);
    margin-bottom: 4rem;
    text-align: center;
    animation: w5k8n3m7x 1s ease-out;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 193, 7, 0.25);
}

.y9k2n6m5x::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(255, 193, 7, 0.03) 15px,
        rgba(255, 193, 7, 0.03) 30px
    );
    animation: t6k3n9m5x 20s linear infinite;
}

@keyframes t6k3n9m5x {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(60px, 60px) rotate(360deg); }
}

@keyframes w5k8n3m7x {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.y9k2n6m5x h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 25%, #f44336 50%, #ff5722 75%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    z-index: 1;
    animation: u4k7n2m9x 5s linear infinite;
    background-size: 200% auto;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

@keyframes u4k7n2m9x {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.y9k2n6m5x p {
    font-size: 1.3rem;
    color: #d0d0d0;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.a3k9n5m8x {
    margin-bottom: 4rem;
}

.a3k9n5m8x h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #ffc107;
    font-weight: 900;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(244, 67, 54, 0.15) 100%);
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.2);
    position: relative;
    border: 2px solid rgba(255, 193, 7, 0.25);
    text-shadow: 0 2px 10px rgba(255, 193, 7, 0.5);
}

.a3k9n5m8x h2::before {
    content: '◆';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffc107;
    font-size: 1.8rem;
    animation: e7k3n9m5x 2s infinite;
}

.a3k9n5m8x h2::after {
    content: '◆';
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    color: #f44336;
    font-size: 1.8rem;
    animation: e7k3n9m5x 2s infinite 1s;
}

@keyframes e7k3n9m5x {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.3);
        opacity: 0.6;
    }
}

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

.v2k9n7m4x {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(35, 35, 35, 0.92) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: d4k8n3m7x 0.6s ease-out backwards;
    border: 2px solid transparent;
    position: relative;
}

.v2k9n7m4x::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(244, 67, 54, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

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

.v2k9n7m4x:nth-child(1) { animation-delay: 0.05s; }
.v2k9n7m4x:nth-child(2) { animation-delay: 0.1s; }
.v2k9n7m4x:nth-child(3) { animation-delay: 0.15s; }
.v2k9n7m4x:nth-child(4) { animation-delay: 0.2s; }
.v2k9n7m4x:nth-child(5) { animation-delay: 0.25s; }
.v2k9n7m4x:nth-child(6) { animation-delay: 0.3s; }

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

.v2k9n7m4x:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(255, 193, 7, 0.35);
    border-color: #ffc107;
}

.g3k7n9m5x {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.v2k9n7m4x:hover .g3k7n9m5x img {
    transform: scale(1.12);
}

.h8k2n6m3p {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ffc107 0%, #f44336 100%);
    color: #ffffff;
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 3px 12px rgba(255, 193, 7, 0.4);
    z-index: 2;
}

.c6k3n9m8x {
    padding: 1.8rem;
    position: relative;
    z-index: 2;
}

.c6k3n9m8x h3 {
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
    color: #ffffff;
    font-weight: 800;
}

.c6k3n9m8x h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.c6k3n9m8x h3 a:hover {
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.8);
}

.j4k8n2m9p {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.j4k8n2m9p span {
    padding: 0.4rem 1rem;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 15px;
    font-size: 0.85rem;
    color: #ffc107;
    font-weight: 700;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.j4k8n2m9p span:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.3);
}

.c6k3n9m8x p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.i2k9n5m7p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px dashed rgba(255, 193, 7, 0.25);
    font-size: 0.9rem;
    color: #808080;
}

.l7k4n9m3x {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2.8rem;
    background: linear-gradient(135deg, #ffc107 0%, #f44336 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s ease;
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: 0 5px 18px rgba(255, 193, 7, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.l7k4n9m3x::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.l7k4n9m3x:hover::before {
    width: 250px;
    height: 250px;
}

.l7k4n9m3x:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 35px rgba(255, 193, 7, 0.55);
    border-color: #ffffff;
}

.o4k9n3m7x {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(35, 35, 35, 0.92) 100%);
    border-radius: 20px;
    padding: 2.8rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 193, 7, 0.2);
}

.n8k5m3p6x {
    list-style: none;
}

.n8k5m3p6x li {
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    background: rgba(255, 193, 7, 0.08);
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid transparent;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.n8k5m3p6x li:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateX(12px);
    border-left-color: #ffc107;
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.3);
}

.n8k5m3p6x li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    flex: 1;
    transition: color 0.3s ease;
}

.n8k5m3p6x li a:hover {
    color: #ffc107;
}

.n8k5m3p6x li time {
    color: #808080;
    font-size: 0.9rem;
    font-weight: 600;
}

.f5k9n2m8x {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(30, 30, 30, 0.92) 100%);
    padding: 3.5rem 3rem 2rem;
    margin-top: 4.5rem;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.5);
    border-top: 3px solid rgba(255, 193, 7, 0.3);
    position: relative;
    z-index: 1;
}

.b8k3n5m7p {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.8rem;
    margin-bottom: 2.8rem;
}

.z2k7n9m5x h3 {
    margin-bottom: 1.5rem;
    color: #ffc107;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(255, 193, 7, 0.4);
}

.z2k7n9m5x p {
    color: #b0b0b0;
    line-height: 1.8;
}

.z2k7n9m5x ul {
    list-style: none;
}

.z2k7n9m5x ul li {
    margin-bottom: 0.9rem;
}

.z2k7n9m5x ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.z2k7n9m5x ul li a:hover {
    color: #ffc107;
    padding-left: 12px;
}

.q3k6n8m4p {
    text-align: center;
    padding: 2rem;
    border-top: 2px dashed rgba(255, 193, 7, 0.25);
    color: #808080;
    font-weight: 600;
}

.t2k4n9m6p {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107 0%, #f44336 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.45);
    transition: all 0.4s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    font-weight: 900;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.t2k4n9m6p.k7k3n9m5x {
    opacity: 1;
    visibility: visible;
    animation: p5k8n4m2x 0.5s ease-out;
}

@keyframes p5k8n4m2x {
    from {
        transform: scale(0) rotate(-360deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.t2k4n9m6p:hover {
    transform: translateY(-10px) scale(1.12) rotate(360deg);
    box-shadow: 0 12px 45px rgba(255, 193, 7, 0.65);
}

.w3k8n2m5p {
    padding: 1.2rem 0;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 700;
}

.w3k8n2m5p a {
    color: #ffc107;
    text-decoration: none;
    transition: color 0.3s ease;
}

.w3k8n2m5p a:hover {
    color: #ff9800;
}

.w3k8n2m5p span {
    color: #808080;
}

.m9k3n2m7x {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(35, 35, 35, 0.92) 100%);
    padding: 3.8rem;
    border-radius: 25px;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.5);
    margin-bottom: 4rem;
    animation: w5k8n3m7x 1s ease-out;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 193, 7, 0.2);
}

.m9k3n2m7x h2 {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 2.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 4px solid rgba(255, 193, 7, 0.25);
    font-weight: 900;
    background: linear-gradient(135deg, #ffc107 0%, #f44336 50%, #ff5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 18px rgba(255, 193, 7, 0.5);
}

.r6k9m3p5x {
    display: flex;
    gap: 1.8rem;
    margin-bottom: 2.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 2px dashed rgba(255, 193, 7, 0.25);
    font-size: 1rem;
    color: #808080;
    flex-wrap: wrap;
    font-weight: 600;
}

.m9k3n2m7x img {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 2.8rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 35px rgba(255, 193, 7, 0.25);
    border: 2px solid rgba(255, 193, 7, 0.2);
}

.m9k3n2m7x section h3 {
    font-size: 2.1rem;
    color: #ffc107;
    margin: 3rem 0 1.8rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(255, 193, 7, 0.35);
}

.m9k3n2m7x section p {
    margin-bottom: 1.8rem;
    line-height: 2;
    color: #b0b0b0;
    text-align: justify;
    font-size: 1.05rem;
}

.m9k3n2m7x section strong {
    color: #ffc107;
    font-weight: 800;
}

.u3k9n7m2x {
    background: rgba(255, 193, 7, 0.12);
    padding: 2.2rem;
    border-radius: 18px;
    margin: 3rem 0;
    border-left: 6px solid #ffc107;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
}

.d5k2n8m6p {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.8rem;
    margin-bottom: 4rem;
}

.y3k7n5m9p {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(35, 35, 35, 0.92) 100%);
    border-radius: 20px;
    padding: 2.8rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 193, 7, 0.2);
}

.y3k7n5m9p h3 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
    color: #ffc107;
    font-weight: 800;
    border-bottom: 3px solid rgba(255, 193, 7, 0.25);
    padding-bottom: 1rem;
}

@media (max-width: 992px) {
    .d5k2n8m6p {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .x2k9n5m7p {
        flex-direction: column;
        gap: 0.6rem;
    }

    .y9k2n6m5x h2 {
        font-size: 2.5rem;
    }

    .s8k4n6m9x {
        grid-template-columns: 1fr;
    }

    .m9k3n2m7x {
        padding: 2.2rem;
    }

    .m9k3n2m7x h2 {
        font-size: 2.3rem;
    }
}
