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

:root {
    --z8k3m9p: #FF6B9D;
    --y2m7k5p: #C371F3;
    --x9k4m2p: #FFA07A;
    --w3m8k7p: #1a1a2e;
    --v5k9m4p: #16213e;
    --u7m3k8p: #0f3460;
    --t2k6m9p: #ffffff;
    --s8m4k3p: #f0f0f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    background-attachment: fixed;
}

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

.q4m8k7p2 {
    background: linear-gradient(135deg, var(--z8k3m9p) 0%, var(--y2m7k5p) 100%);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.p7k2m9r5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.o3m9k4p8 h1 a {
    font-size: 2rem;
    font-weight: 800;
    color: var(--t2k6m9p);
    text-decoration: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.o3m9k4p8 h1 a:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 20px rgba(255,255,255,0.5);
}

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

.n8k5m2p9 a {
    color: var(--t2k6m9p);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.n8k5m2p9 a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.m5k9p3r7 {
    padding: 3rem 0;
}

.l2m7k4p9 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--y2m7k5p);
    text-shadow: 2px 2px 4px rgba(195, 113, 243, 0.3);
    position: relative;
}

.l2m7k4p9::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--z8k3m9p), var(--y2m7k5p));
    border-radius: 2px;
}

.k9m3p7r5 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.j4m8k2p9 {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(195, 113, 243, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: i7k3m9p2 0.6s ease forwards;
    opacity: 0;
}

@keyframes i7k3m9p2 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.j4m8k2p9 {
    transform: translateY(30px);
}

.j4m8k2p9:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.h2m9k5p7 {
    position: relative;
    height: 380px;
    overflow: hidden;
}

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

.j4m8k2p9:hover .h2m9k5p7 img {
    transform: scale(1.15);
}

.g8k4m3p9 {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--z8k3m9p), var(--y2m7k5p));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(195, 113, 243, 0.4);
}

.f5m9k2p7 {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--z8k3m9p);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.e3m7k9p4 {
    padding: 1.5rem;
}

.d9k2m8p5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #333;
    line-height: 1.4;
}

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

.d9k2m8p5 a:hover {
    color: var(--z8k3m9p);
}

.c4m9k7p3 {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.b8k3m5p9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #999;
}

.a2m7k9p4 {
    background: linear-gradient(135deg, var(--w3m8k7p), var(--v5k9m4p));
    color: var(--t2k6m9p);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

.y5m9k3p7 h4 {
    color: var(--x9k4m2p);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.y5m9k3p7 ul {
    list-style: none;
}

.y5m9k3p7 ul li {
    margin-bottom: 0.6rem;
}

.y5m9k3p7 a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.y5m9k3p7 a:hover {
    color: var(--z8k3m9p);
    padding-left: 5px;
}

.x3k8m7p2 {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

.w7m2k9p5 {
    padding: 1rem 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.v4k9m3p8 {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

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

.v4k9m3p8 a:hover {
    color: var(--z8k3m9p);
}

.u8k5m2p9 {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--z8k3m9p), var(--y2m7k5p));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.u8k5m2p9:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 30px rgba(195, 113, 243, 0.5);
}

.u8k5m2p9.t5k9m3p7 {
    display: flex;
}

.s2m8k7p4 {
    padding: 2rem 0;
}

.s2m8k7p4 article {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(195, 113, 243, 0.15);
}

.s2m8k7p4 article h2 {
    color: var(--y2m7k5p);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
}

.s2m8k7p4 article img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.s2m8k7p4 article p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.r7k3m9p5 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.r7k3m9p5 span {
    background: linear-gradient(135deg, var(--z8k3m9p), var(--y2m7k5p));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .n8k5m2p9 {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .k9m3p7r5 {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    .l2m7k4p9 {
        font-size: 2rem;
    }
    
    .h2m9k5p7 {
        height: 280px;
    }
}

img[data-src] {
    opacity: 0;
    transition: opacity 0.4s ease;
}

img[data-src].q9k7m3p2 {
    opacity: 1;
}
