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

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffeef8 0%, #e6f3ff 100%);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.q8w3n5m {
    background: linear-gradient(135deg, #ff6ec7 0%, #7b68ee 100%);
    box-shadow: 0 4px 15px rgba(255,110,199,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDownBounce 0.6s ease;
}

@keyframes slideDownBounce {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    60% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.r7k2m9p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.y9k3m7n {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

.y9k3m7n a {
    color: #fff;
    display: inline-block;
    transition: all 0.3s ease;
}

.y9k3m7n a:hover {
    transform: scale(1.1) rotate(-2deg);
    text-shadow: 4px 4px 8px rgba(0,0,0,0.3);
}

.u6m2k9p {
    display: flex;
    gap: 25px;
}

.u6m2k9p a {
    color: #fff;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.u6m2k9p a:hover::before {
    width: 200px;
    height: 200px;
}

.u6m2k9p a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.i5k9m3n {
    min-height: calc(100vh - 80px);
}

.o2m7k4p {
    padding: 50px 0;
    margin-bottom: 40px;
    animation: fadeInScale 0.8s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.w9k3m5j {
    position: relative;
}

.e4m8k7n {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(255,110,199,0.4);
    height: 450px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}

.h6k2m9p {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.5s ease;
}

.e4m8k7n:hover .h6k2m9p {
    transform: scale(1.05);
}

.m3j8k5n {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    animation: slideInRight 1s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(-100px) translateY(-50%);
        opacity: 0;
    }
    to {
        transform: translateX(0) translateY(-50%);
        opacity: 1;
    }
}

.m3j8k5n h2 {
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.4);
    font-weight: 800;
}

.m3j8k5n p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.n8k5m2p {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(245,87,108,0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.n8k5m2p::after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: right 0.3s ease;
}

.n8k5m2p:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(245,87,108,0.6);
    padding-right: 50px;
}

.n8k5m2p:hover::after {
    right: 15px;
}

.f7j9n3k {
    padding: 50px 0;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

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

.x5n7k4m {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255,110,199,0.2);
}

.q9m3j5p {
    font-size: 36px;
    margin-bottom: 35px;
    color: #ff6ec7;
    position: relative;
    padding-bottom: 18px;
    font-weight: 700;
}

.q9m3j5p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #ff6ec7, #7b68ee);
    border-radius: 3px;
    animation: widthExpand 1s ease;
}

@keyframes widthExpand {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

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

.d7m9j6n {
    background: linear-gradient(135deg, #fff5f7 0%, #f0f8ff 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
}

.d7m9j6n:hover {
    transform: translateY(-12px) rotate(-1deg);
    box-shadow: 0 15px 40px rgba(255,110,199,0.3);
    border-color: #ff6ec7;
}

.d7m9j6n img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.l6k7m2p {
    padding: 20px;
}

.l6k7m2p h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.l6k7m2p h3 a {
    background: linear-gradient(90deg, #ff6ec7, #7b68ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.l6k7m2p h3 a:hover {
    text-shadow: 0 0 20px rgba(255,110,199,0.5);
}

.l6k7m2p p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.l6k7m2p time {
    font-size: 12px;
    color: #999;
}

.y3k6n8m {
    padding: 50px 0;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.a4m2k7j {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 35px;
}

.u9k4m3n {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255,110,199,0.2);
}

.e2k7n5m {
    display: grid;
    gap: 30px;
}

.g8m3k6p {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f8ff 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.g8m3k6p:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(255,110,199,0.2);
    transform: translateX(8px);
    border-left-color: #ff6ec7;
}

.g8m3k6p img {
    width: 220px;
    height: 145px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.j4k9m2n {
    flex: 1;
}

.j4k9m2n h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 700;
}

.j4k9m2n h3 a {
    background: linear-gradient(90deg, #ff6ec7, #7b68ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.j4k9m2n p {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.8;
}

.j4k9m2n time {
    font-size: 13px;
    color: #999;
}

.i3k8m7n {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.o7k2n9m {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255,110,199,0.15);
}

.o7k2n9m h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #ff6ec7;
    font-weight: 700;
}

.o7k2n9m ul {
    list-style: none;
}

.o7k2n9m ul li {
    margin-bottom: 12px;
}

.o7k2n9m ul li a {
    color: #666;
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
}

.o7k2n9m ul li a::before {
    content: '▸';
    position: absolute;
    left: 8px;
    color: #ff6ec7;
    transition: left 0.3s ease;
}

.o7k2n9m ul li a:hover {
    background: linear-gradient(135deg, #fff5f7 0%, #f0f8ff 100%);
    color: #ff6ec7;
    padding-left: 30px;
}

.o7k2n9m ul li a:hover::before {
    left: 12px;
}

.t9k7m5n {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.t9k7m5n a {
    padding: 8px 20px;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f8ff 100%);
    color: #666;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.t9k7m5n a:hover {
    background: linear-gradient(135deg, #ff6ec7, #7b68ee);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,110,199,0.4);
}

.c5k9m2n {
    padding: 50px 0;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.v8k4m3j {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255,110,199,0.2);
    display: grid;
    gap: 25px;
}

.n2k7m9p {
    padding: 25px;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f8ff 100%);
    border-radius: 15px;
    border-left: 5px solid #ff6ec7;
    transition: all 0.3s ease;
}

.n2k7m9p:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(255,110,199,0.2);
    transform: translateX(8px);
}

.h9k3m5j {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.h9k3m5j img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6ec7;
    box-shadow: 0 3px 10px rgba(255,110,199,0.3);
}

.p8k5m3n strong {
    display: block;
    font-size: 17px;
    color: #333;
    margin-bottom: 4px;
    font-weight: 700;
}

.p8k5m3n time {
    font-size: 13px;
    color: #999;
}

.n2k7m9p p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
}

.w5k8m2j {
    background: linear-gradient(135deg, #2c2c54 0%, #1a1a2e 100%);
    color: #fff;
    padding: 50px 0 25px;
    margin-top: 70px;
}

.f9k2m4n {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}

.s4k9m6p h4 {
    font-size: 20px;
    margin-bottom: 18px;
    color: #ff6ec7;
    font-weight: 700;
}

.s4k9m6p p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
}

.s4k9m6p ul {
    list-style: none;
}

.s4k9m6p ul li {
    margin-bottom: 10px;
}

.s4k9m6p ul li a {
    color: #bdc3c7;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.s4k9m6p ul li a:hover {
    color: #ff6ec7;
    padding-left: 8px;
}

.k2m5j9n {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.k2m5j9n p {
    font-size: 14px;
    color: #bdc3c7;
}

.b3k8m4j {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ff6ec7, #7b68ee);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255,110,199,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.b3k8m4j.m6k3n7p {
    opacity: 1;
    visibility: visible;
}

.b3k8m4j:hover {
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 12px 30px rgba(255,110,199,0.6);
}

.r9k5m8n {
    padding: 18px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.r9k5m8n nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
}

.r9k5m8n a {
    color: #ff6ec7;
    transition: color 0.3s ease;
    font-weight: 500;
}

.r9k5m8n a:hover {
    color: #7b68ee;
}

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

    .u6m2k9p {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .m3j8k5n {
        left: 25px;
    }

    .m3j8k5n h2 {
        font-size: 36px;
    }

    .m3j8k5n p {
        font-size: 18px;
    }

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

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

    .g8m3k6p {
        flex-direction: column;
    }

    .g8m3k6p img {
        width: 100%;
        height: 220px;
    }

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

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

    .e4m8k7n {
        height: 330px;
    }

    .m3j8k5n h2 {
        font-size: 28px;
    }
}