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

body {
    font-family: 'Arial', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
}

.a7k3m9p5 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: b5n8m2k9 0.6s ease-out;
}

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

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

.d3k8m5n7 h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

.d3k8m5n7 h1 a {
    background: linear-gradient(45deg, #e94560, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
}

.d3k8m5n7 h1 a:hover {
    transform: scale(1.05);
    display: inline-block;
}

.e6n2k9m4 {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.e6n2k9m4 li a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.e6n2k9m4 li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e94560, #f39c12);
    transition: width 0.3s ease;
}

.e6n2k9m4 li a:hover {
    color: #f39c12;
}

.e6n2k9m4 li a:hover::after {
    width: 100%;
}

.f8k5m3n6 {
    max-width: 1400px;
    margin: 120px auto 2rem;
    padding: 0 2rem;
}

.g2n7k4m8 {
    position: relative;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2) 0%, rgba(243, 156, 18, 0.2) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    overflow: hidden;
    animation: h9m3k5n2 1s ease-out;
}

.g2n7k4m8::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    animation: i4n8k2m7 20s linear infinite;
}

@keyframes i4n8k2m7 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes h9m3k5n2 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.g2n7k4m8 h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.g2n7k4m8 p {
    font-size: 1.2rem;
    text-align: center;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.j5k9m2n7 h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #f39c12;
    position: relative;
    padding-left: 1rem;
}

.j5k9m2n7 h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #e94560, #f39c12);
}

.k3m7n5p9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.l8n4k2m6 {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: m2k5n8p4 0.6s ease-out backwards;
    position: relative;
}

.l8n4k2m6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

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

.l8n4k2m6:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
}

.l8n4k2m6 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.l8n4k2m6:hover img {
    transform: scale(1.1);
}

.n7k3m9p2 {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.n7k3m9p2 h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.n7k3m9p2 p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.o5m8k3n7 {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, #e94560, #f39c12);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.o5m8k3n7:hover {
    background: linear-gradient(45deg, #f39c12, #e94560);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.p9n2k6m4 {
    background: #0f0f1e;
    color: #e0e0e0;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

.r6n4k8m2 h3 {
    margin-bottom: 1rem;
    color: #f39c12;
}

.r6n4k8m2 ul {
    list-style: none;
}

.r6n4k8m2 ul li {
    margin-bottom: 0.5rem;
}

.r6n4k8m2 ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.r6n4k8m2 ul li a:hover {
    color: #f39c12;
}

.s8k2m5n9 {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #2a2a3e;
    color: #808080;
}

.t4n9k3m7 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #e94560, #f39c12);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.t4n9k3m7.u7k5m2n8 {
    opacity: 1;
    visibility: visible;
}

.t4n9k3m7:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.6);
}

.v2n8k6m3 {
    padding: 1rem 0;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #b0b0b0;
}

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

.v2n8k6m3 a:hover {
    color: #e94560;
}

.v2n8k6m3 span {
    color: #e0e0e0;
}

.w5k9m3n7 {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    animation: m2k5n8p4 0.6s ease-out;
}

.w5k9m3n7 h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    border-bottom: 3px solid #e94560;
    padding-bottom: 1rem;
}

.x3n7m5p8 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #b0b0b0;
}

.w5k9m3n7 img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.w5k9m3n7 section h3 {
    font-size: 1.8rem;
    color: #fff;
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 4px solid #e94560;
}

.w5k9m3n7 section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.w5k9m3n7 section strong {
    color: #f39c12;
    font-weight: 600;
}

.y9k4m2n6 {
    margin-bottom: 3rem;
}

.y9k4m2n6 ul {
    list-style: none;
}

.y9k4m2n6 ul li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.y9k4m2n6 ul li:hover {
    background: rgba(233, 69, 96, 0.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transform: translateX(10px);
}

.y9k4m2n6 ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    flex: 1;
}

.y9k4m2n6 ul li a:hover {
    color: #f39c12;
}

.y9k4m2n6 ul li time {
    color: #b0b0b0;
    font-size: 0.9rem;
}

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

    .g2n7k4m8 h2 {
        font-size: 2rem;
    }

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

    .w5k9m3n7 {
        padding: 1.5rem;
    }

    .w5k9m3n7 h2 {
        font-size: 1.8rem;
    }
}
