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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #fef5f7 0%, #ffe8f0 50%, #fff0f8 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(255, 105, 180, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(147, 112, 219, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 182, 193, 0.1) 0%, transparent 50%);
    z-index: 0;
    animation: m8k3n7p2x 15s ease-in-out infinite;
}

@keyframes m8k3n7p2x {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.z9k5n3m8p {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(25px);
    box-shadow: 0 5px 35px rgba(255, 105, 180, 0.15);
    z-index: 1000;
    border-bottom: 3px solid rgba(255, 105, 180, 0.25);
    animation: q3k8n5m7x 0.7s ease-out;
}

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

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

.e7k3n8m4x h1 {
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.e7k3n8m4x h1 a {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 35%, #9370db 70%, #ff69b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.5s ease;
    display: inline-block;
    animation: r8k2n9m5x 6s linear infinite;
    background-size: 200% auto;
    filter: drop-shadow(0 3px 8px rgba(255, 105, 180, 0.5));
}

@keyframes r8k2n9m5x {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.e7k3n8m4x h1 a::before {
    content: '🎨';
    margin-right: 12px;
    font-size: 2.1rem;
    animation: t5k7n3m9x 2s infinite;
}

@keyframes t5k7n3m9x {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.25) rotate(12deg);
        opacity: 0.9;
    }
}

.e7k3n8m4x h1 a:hover {
    transform: scale(1.08);
    filter: brightness(1.3) drop-shadow(0 5px 15px rgba(255, 105, 180, 0.7));
}

.y6k8n4m2p {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.y6k8n4m2p li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 800;
    font-size: 0.98rem;
    padding: 0.8rem 1.7rem;
    border-radius: 28px;
    transition: all 0.4s ease;
    background: rgba(255, 105, 180, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.y6k8n4m2p li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff69b4 0%, #9370db 100%);
    transition: left 0.45s ease;
    z-index: -1;
}

.y6k8n4m2p li a:hover::before {
    left: 0;
}

.y6k8n4m2p li a:hover {
    color: #ffffff;
    transform: translateY(-4px);
    border-color: #ff69b4;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

.u8k3n5m9p {
    max-width: 1400px;
    margin: 90px auto 2rem;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
}

.i4k9n6m7x {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 240, 248, 0.97) 100%);
    padding: 5rem 4.5rem;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(255, 105, 180, 0.25);
    margin-bottom: 4rem;
    text-align: center;
    animation: o7k5n2m8x 1.2s ease-out;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 105, 180, 0.3);
}

.i4k9n6m7x::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(255, 105, 180, 0.04) 30px,
        rgba(255, 105, 180, 0.04) 60px
    );
    animation: p3k9n7m4x 35s linear infinite;
}

@keyframes p3k9n7m4x {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes o7k5n2m8x {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.i4k9n6m7x h2 {
    font-size: 3.8rem;
    margin-bottom: 1.8rem;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 25%, #9370db 50%, #ff69b4 75%, #ff1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    z-index: 1;
    animation: a9k5n3m8x 10s linear infinite;
    background-size: 200% auto;
}

@keyframes a9k5n3m8x {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.i4k9n6m7x p {
    font-size: 1.4rem;
    color: #7f8c8d;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.s2k8n6m3p {
    margin-bottom: 4rem;
}

.s2k8n6m3p h2 {
    font-size: 2.7rem;
    margin-bottom: 2.5rem;
    color: #ff69b4;
    font-weight: 900;
    padding: 1.6rem 3rem;
    background: rgba(255, 105, 180, 0.12);
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.25);
    position: relative;
    border: 3px solid rgba(255, 105, 180, 0.35);
}

.s2k8n6m3p h2::before {
    content: '✨';
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    animation: d6k3n9m5x 2.2s infinite;
}

@keyframes d6k3n9m5x {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.3);
        opacity: 0.85;
    }
}

.f8k4n2m7x {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.5rem;
}

.g5k9n3m6p {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
    transition: all 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: h7k3n5m9x 0.8s ease-out backwards;
    border: 3px solid rgba(255, 105, 180, 0.2);
    position: relative;
    overflow: hidden;
}

.g5k9n3m6p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(147, 112, 219, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
    z-index: 0;
}

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

.g5k9n3m6p:nth-child(1) { animation-delay: 0.06s; }
.g5k9n3m6p:nth-child(2) { animation-delay: 0.12s; }
.g5k9n3m6p:nth-child(3) { animation-delay: 0.18s; }
.g5k9n3m6p:nth-child(4) { animation-delay: 0.24s; }
.g5k9n3m6p:nth-child(5) { animation-delay: 0.3s; }
.g5k9n3m6p:nth-child(6) { animation-delay: 0.36s; }

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

.g5k9n3m6p:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 45px rgba(255, 105, 180, 0.3);
    border-color: #ff69b4;
}

.j9k2n5m8x {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

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

.g5k9n3m6p:hover .j9k2n5m8x img {
    transform: scale(1.1) rotate(2deg);
}

.k3k8n7m4p {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff69b4 0%, #9370db 100%);
    color: #ffffff;
    padding: 0.5rem 1.3rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.5);
    z-index: 1;
}

.l5k9n2m6x {
    padding: 2.2rem;
    position: relative;
    z-index: 1;
}

.l5k9n2m6x h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
    font-weight: 900;
}

.l5k9n2m6x h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.35s ease;
}

.l5k9n2m6x h3 a:hover {
    color: #ff69b4;
}

.l5k9n2m6x p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: #7f8c8d;
    font-size: 1rem;
}

.m8k3n5m9p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 2px dashed rgba(255, 105, 180, 0.25);
    font-size: 0.92rem;
    color: #95a5a6;
    font-weight: 700;
}

.n2k9n6m4x {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 1rem 2.8rem;
    background: linear-gradient(135deg, #ff69b4 0%, #9370db 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 28px;
    transition: all 0.45s ease;
    font-weight: 900;
    font-size: 0.98rem;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.n2k9n6m4x:hover::before {
    width: 350px;
    height: 350px;
}

.n2k9n6m4x:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.7);
}

.o5k8n3m7p {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 2.8rem;
    box-shadow: 0 10px 35px rgba(255, 105, 180, 0.15);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 105, 180, 0.2);
}

.p9k2n5m8x {
    list-style: none;
}

.p9k2n5m8x li {
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid transparent;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.08);
}

.p9k2n5m8x li:hover {
    background: rgba(255, 105, 180, 0.18);
    transform: translateX(12px);
    border-left-color: #ff69b4;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.35);
}

.p9k2n5m8x li a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    flex: 1;
    transition: color 0.35s ease;
}

.p9k2n5m8x li a:hover {
    color: #ff69b4;
}

.p9k2n5m8x li time {
    color: #95a5a6;
    font-size: 0.92rem;
    font-weight: 700;
}

.q3k8n6m2x {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 240, 248, 0.98) 100%);
    padding: 4rem 3.5rem 2.5rem;
    margin-top: 5rem;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -12px 35px rgba(255, 105, 180, 0.2);
    border-top: 4px solid rgba(255, 105, 180, 0.3);
    position: relative;
    z-index: 1;
}

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

.s5k9n3m6x h3 {
    margin-bottom: 1.6rem;
    color: #ff69b4;
    font-size: 1.6rem;
    font-weight: 900;
}

.s5k9n3m6x p {
    color: #7f8c8d;
    line-height: 1.85;
    font-weight: 700;
}

.s5k9n3m6x ul {
    list-style: none;
}

.s5k9n3m6x ul li {
    margin-bottom: 1rem;
}

.s5k9n3m6x ul li a {
    color: #7f8c8d;
    text-decoration: none;
    transition: all 0.35s ease;
    font-weight: 700;
}

.s5k9n3m6x ul li a:hover {
    color: #ff69b4;
    padding-left: 12px;
}

.t9k3n8m2p {
    text-align: center;
    padding: 2.5rem;
    border-top: 3px dashed rgba(255, 105, 180, 0.25);
    color: #95a5a6;
    font-weight: 700;
}

.v5k8n2m9p {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff69b4 0%, #9370db 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.6);
    transition: all 0.45s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    font-weight: 900;
    border: 4px solid rgba(255, 255, 255, 0.4);
}

.v5k8n2m9p.w8k3n7m5x {
    opacity: 1;
    visibility: visible;
    animation: x4k9n2m6x 0.7s ease-out;
}

@keyframes x4k9n2m6x {
    from {
        transform: scale(0) rotate(-360deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.v5k8n2m9p:hover {
    transform: translateY(-10px) scale(1.15);
    box-shadow: 0 15px 45px rgba(255, 105, 180, 0.8);
}

.y5k8n3m9x {
    padding: 1.3rem 0;
    margin-bottom: 2.2rem;
    font-size: 1.05rem;
    color: #7f8c8d;
    font-weight: 800;
}

.y5k8n3m9x a {
    color: #ff69b4;
    text-decoration: none;
    transition: color 0.35s ease;
}

.y5k8n3m9x a:hover {
    color: #ff1493;
}

.y5k8n3m9x span {
    color: #95a5a6;
}

.z2k9n5m7x {
    background: rgba(255, 255, 255, 0.98);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(255, 105, 180, 0.15);
    margin-bottom: 4rem;
    animation: o7k5n2m8x 1.2s ease-out;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 105, 180, 0.2);
}

.z2k9n5m7x h2 {
    font-size: 3.2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 4px solid rgba(255, 105, 180, 0.3);
    font-weight: 900;
    background: linear-gradient(135deg, #ff69b4 0%, #9370db 50%, #ff1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.a6k3n9m2p {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px dashed rgba(255, 105, 180, 0.25);
    font-size: 1.05rem;
    color: #95a5a6;
    flex-wrap: wrap;
    font-weight: 700;
}

.z2k9n5m7x img {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 3rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(255, 105, 180, 0.2);
    border: 3px solid rgba(255, 105, 180, 0.2);
}

.z2k9n5m7x section h3 {
    font-size: 2.3rem;
    color: #ff69b4;
    margin: 3.5rem 0 2rem;
    font-weight: 900;
}

.z2k9n5m7x section p {
    margin-bottom: 2rem;
    line-height: 2;
    color: #7f8c8d;
    text-align: justify;
    font-size: 1.08rem;
}

.z2k9n5m7x section strong {
    color: #ff69b4;
    font-weight: 900;
}

@media (max-width: 992px) {
    .f8k4n2m7x {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

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

    .i4k9n6m7x h2 {
        font-size: 3rem;
    }

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

    .z2k9n5m7x {
        padding: 2.5rem;
    }

    .z2k9n5m7x h2 {
        font-size: 2.5rem;
    }
}
