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

:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #e94560;
    --color-text: #ffffff;
    --color-text-light: #b8b8b8;
    --color-bg: #0f0f1e;
    --color-card: #1e1e2f;
    --color-hover: #2a2a3f;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.lazyload {
    opacity: 0;
    transition: opacity 0.5s;
}

.lazyload.loaded {
    opacity: 1;
}

.x8k4m2p9q {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

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

.n7j3r5t8w {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.p9w2k5m7n {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.q4n7m3k9p {
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.3s ease;
    display: inline-block;
}

.q4n7m3k9p:hover {
    transform: scale(1.05);
}

.q4n7m3k9p h1 {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(233, 69, 96, 0.8);
    }
}

.r8t4k6m2p {
    display: flex;
    gap: 30px;
}

.r8t4k6m2p a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.r8t4k6m2p a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transition: transform 0.3s ease;
}

.r8t4k6m2p a:hover {
    background: var(--color-hover);
    transform: translateY(-2px);
}

.r8t4k6m2p a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.t5n8m4k7p {
    min-height: calc(100vh - 80px);
    padding: 40px 0;
}

.w9k3m7n5t {
    animation: fadeIn 0.8s ease-out;
}

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

.a3k7m9n4t,
.h8m5n9k4t,
.j5m8n4k9t,
.q7k4m9n5t {
    margin-bottom: 60px;
}

.b8n4m6k2p {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-text);
    position: relative;
    padding-left: 20px;
}

.b8n4m6k2p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(180deg, var(--color-accent), #ff6b9d);
    border-radius: 3px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scaleY(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scaleY(0.9);
    }
}

.c5m9n7k3t {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.d7k3m8n5p {
    background: var(--color-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    animation: slideUp 0.6s ease-out backwards;
}

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

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

.d7k3m8n5p:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.3);
}

.d7k3m8n5p a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.e9m4n7k6t {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.d7k3m8n5p:hover .e9m4n7k6t {
    transform: scale(1.1);
}

.f4n8m5k7p {
    padding: 20px;
}

.f4n8m5k7p h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.g6k9m3n5t {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 8px;
}

time {
    color: var(--color-accent);
    font-size: 13px;
}

.k9n3m7t5p {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.m4k8n6t3p {
    background: var(--color-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: slideUp 0.6s ease-out backwards;
}

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

.m4k8n6t3p:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(233, 69, 96, 0.25);
}

.m4k8n6t3p a {
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 20px;
}

.n6m9k4t7p {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.m4k8n6t3p:hover .n6m9k4t7p {
    transform: scale(1.05);
}

.p3k7m5n9t {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.p3k7m5n9t h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.p3k7m5n9t p {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.r5m8k3n7t {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s9k4m6n8t {
    background: var(--color-card);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out backwards;
    border-left: 3px solid transparent;
}

.s9k4m6n8t:nth-child(1) { animation-delay: 0.1s; }
.s9k4m6n8t:nth-child(2) { animation-delay: 0.2s; }
.s9k4m6n8t:nth-child(3) { animation-delay: 0.3s; }
.s9k4m6n8t:nth-child(4) { animation-delay: 0.4s; }

.s9k4m6n8t:hover {
    background: var(--color-hover);
    border-left-color: var(--color-accent);
    transform: translateX(5px);
}

.t3m7k5n9p {
    display: flex;
    gap: 15px;
}

.u6k9m4n7t {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent);
}

.v4m8k6n3t {
    flex: 1;
}

.w7k3m9n5t {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.w7k3m9n5t strong {
    color: var(--color-text);
    font-size: 15px;
}

.v4m8k6n3t p {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.6;
}

.x2k7m5n9t {
    background: var(--color-card);
    padding: 40px 0;
    margin-top: 40px;
}

.y5m9k4n7t h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
}

.z8k3m6n4t {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.z8k3m6n4t a {
    background: var(--color-primary);
    color: var(--color-text);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.z8k3m6n4t a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.a9m4k7n3t {
    background: var(--color-primary);
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
}

.b3k8m5n9t p {
    color: var(--color-text-light);
    font-size: 14px;
    margin: 5px 0;
}

.c7k4m9n6t {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent), #ff6b9d);
    color: var(--color-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    z-index: 999;
}

.c7k4m9n6t.show {
    opacity: 1;
    visibility: visible;
}

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

.c7k4m9n6t span {
    font-size: 24px;
    font-weight: bold;
}

.e4m9k7n5t {
    padding: 15px;
    background: var(--color-card);
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.e4m9k7n5t a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.e4m9k7n5t a:hover {
    color: #ff6b9d;
}

@media (max-width: 1024px) {
    .c5m9n7k3t {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

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

@media (max-width: 768px) {
    .p9w2k5m7n {
        flex-direction: column;
        gap: 20px;
    }

    .r8t4k6m2p {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .c5m9n7k3t {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .m4k8n6t3p a {
        flex-direction: column;
    }

    .n6m9k4t7p {
        width: 100%;
        height: 200px;
    }
}

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

    .q4n7m3k9p h1 {
        font-size: 24px;
    }

    .b8n4m6k2p {
        font-size: 22px;
    }
}
