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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    min-height: 100vh;
}

.k7md9an2w {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff6b6b;
    animation: slideDown 0.5s ease-out;
}

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

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

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

.w9fy2cd5m {
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.q5ng8xr3j {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
    letter-spacing: 2px;
}

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

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

.l4pk7bs2e a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.l4pk7bs2e a:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.l4pk7bs2e a:hover::before {
    transform: translateX(0);
}

.m6rh9vt2x {
    min-height: calc(100vh - 200px);
}

.s8nw3jb5k {
    padding: 40px 0;
    overflow: hidden;
}

.b4mt7xr9n {
    display: flex;
    gap: 20px;
    animation: fadeIn 1s ease-out;
}

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

.c2dn9pk6h {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 400px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c2dn9pk6h:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.a7me5rt3v {
    position: relative;
}

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

.c2dn9pk6h:hover .i3qx8vn2w {
    transform: scale(1.1);
}

.t6yh9mr4b {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.h5np8wx3r {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.p9tk3bn7m {
    font-size: 16px;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.s5dn7km9t {
    padding: 60px 0;
    animation: fadeIn 1s ease-out 0.2s backwards;
}

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

.t3xk7pn5w {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-left: 20px;
}

.t3xk7pn5w::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 3px;
}

.m9hv6tr2k {
    color: #ff6b6b;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px;
    border: 2px solid #ff6b6b;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.m9hv6tr2k:hover {
    background: #ff6b6b;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

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

.v4nr9km7s {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: slideUp 0.6s ease-out backwards;
}

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

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

.v4nr9km7s:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.v4nr9km7s a {
    text-decoration: none;
    display: block;
}

.i8qx3vn7w {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.v4nr9km7s:hover .i8qx3vn7w {
    transform: scale(1.05);
}

.t5nk8pr9m {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.d9bt7mx4k {
    padding: 0 15px 15px;
    color: #feca57;
    font-size: 14px;
}

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

.a5tn8wk3m {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out backwards;
}

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

.a5tn8wk3m:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.a5tn8wk3m a {
    text-decoration: none;
    display: flex;
    gap: 20px;
}

.i6vx9nr2k {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

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

.t4rk7mn9x {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.p3nx8vm5r {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.t9bx4mp7k {
    color: #ff6b6b;
    font-size: 13px;
}

.c5mx8rp3n {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    animation: fadeIn 1s ease-out 0.4s backwards;
}

.c9xt4vn7m {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.c4px8km2r {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid #ff6b6b;
    transition: all 0.3s ease;
    animation: slideRight 0.6s ease-out backwards;
}

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

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

.c4px8km2r:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.2);
}

.u7bn9rt5k {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.u3mx7pn4k {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.n6rx8tm9v {
    color: #feca57;
    font-size: 16px;
}

.p8vn3kr7m {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 15px;
}

.a3bn7xm9k {
    padding: 60px 0;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.t8kr5mx3n {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.t8kr5mx3n::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 3px;
}

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

.t6mn9rp2x a {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 25px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.t6mn9rp2x a:hover {
    background: #ff6b6b;
    color: #fff;
    border-color: #ff6b6b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.f8rm3xn7k {
    background: rgba(10, 10, 10, 0.95);
    border-top: 2px solid #ff6b6b;
    padding: 50px 0 20px;
    margin-top: 80px;
}

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

.f7mx3rn5k h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.h9vx5rn2m {
    position: relative;
    padding-left: 15px;
}

.h9vx5rn2m::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 2px;
}

.p4nx8vm7r {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.n5rx8km3t {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.n5rx8km3t a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.n5rx8km3t a:hover {
    color: #ff6b6b;
    padding-left: 10px;
}

.c8bx4mn7k {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #808080;
    font-size: 14px;
}

.b6rx9mn4t {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.b6rx9mn4t:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.b6rx9mn4t.show {
    display: flex;
}

.b3kr7nm9x {
    padding: 20px 0;
    margin-bottom: 30px;
}

.b8vn4xr7m {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #b0b0b0;
}

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

.b8vn4xr7m a:hover {
    color: #ff6b6b;
}

.b8vn4xr7m span {
    color: #606060;
}

@media (max-width: 1024px) {
    .b4mt7xr9n {
        flex-direction: column;
    }

    .c2dn9pk6h {
        height: 300px;
    }

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

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

@media (max-width: 768px) {
    .l4pk7bs2e {
        gap: 15px;
    }

    .l4pk7bs2e a {
        font-size: 14px;
        padding: 6px 12px;
    }

    .q5ng8xr3j {
        font-size: 24px;
    }

    .g6wn8xp4r {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .i8qx3vn7w {
        height: 220px;
    }

    .f4tn8km9p {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .a5tn8wk3m a {
        flex-direction: column;
    }

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