* {
    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, #ffeef8 0%, #fff0f8 25%, #f0f4ff 50%, #e8f5ff 75%, #fff0fa 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 105, 180, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(138, 43, 226, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(0, 191, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.k9m7x4t2w5 {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.96), rgba(255, 20, 147, 0.96), rgba(186, 85, 211, 0.96));
    box-shadow: 0 5px 35px rgba(255, 105, 180, 0.55);
    z-index: 1000;
    border-bottom: 4px solid rgba(255, 255, 255, 0.45);
    animation: headerSlideDown5k3x 1s ease-out;
}

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

.n5t8x3m9k4 {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p7m9x2t5k8 h1 {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.p7m9x2t5k8 h1 a {
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    display: inline-block;
    position: relative;
}

.p7m9x2t5k8 h1 a::before {
    content: '🎨';
    margin-right: 15px;
    font-size: 2.4rem;
    animation: artBounce3k7m 2.8s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
}

@keyframes artBounce3k7m {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-10px) rotate(-8deg) scale(1.08); }
    50% { transform: translateY(0) rotate(0deg) scale(1); }
    75% { transform: translateY(-6px) rotate(8deg) scale(1.05); }
}

.p7m9x2t5k8 h1 a:hover {
    transform: scale(1.06);
    text-shadow: 0 6px 28px rgba(255, 255, 255, 0.7);
}

.q3x7m5t9k8 {
    display: flex;
    list-style: none;
    gap: 0.8rem;
}

.q3x7m5t9k8 li a {
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 1.08rem;
    padding: 1rem 2.2rem;
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border: 2.5px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

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

.q3x7m5t9k8 li a:hover::before {
    width: 350px;
    height: 350px;
}

.q3x7m5t9k8 li a:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(186, 85, 211, 0.9));
    transform: translateY(-5px) scale(1.06);
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 35px rgba(186, 85, 211, 0.6);
}

.r4m8x3t7k5 {
    max-width: 1600px;
    margin: 80px auto 4rem;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.s8x5m3t9k7 {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.96), rgba(255, 20, 147, 0.94), rgba(186, 85, 211, 0.96));
    padding: 4.5rem 5.5rem;
    border-radius: 35px;
    box-shadow: 0 18px 65px rgba(255, 105, 180, 0.5);
    margin-bottom: 4rem;
    text-align: center;
    animation: bannerZoom7k3m 1.3s ease-out;
    backdrop-filter: blur(18px);
    border: 4px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.s8x5m3t9k7::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 50px,
                rgba(255, 255, 255, 0.08) 50px, rgba(255, 255, 255, 0.08) 100px);
    animation: stripeDrift5k8m 35s linear infinite;
}

@keyframes stripeDrift5k8m {
    to { transform: translate(70px, 70px); }
}

@keyframes bannerZoom7k3m {
    from { opacity: 0; transform: scale(0.92) translateY(60px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.s8x5m3t9k7 h2 {
    font-size: 4.6rem;
    margin-bottom: 2.2rem;
    color: #fff;
    font-weight: 900;
    position: relative;
    z-index: 1;
    animation: titleGlow5k3m 3.5s ease-in-out infinite;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.35);
    letter-spacing: 3px;
}

@keyframes titleGlow5k3m {
    0%, 100% { transform: scale(1); filter: brightness(1) drop-shadow(0 0 0 transparent); }
    50% { transform: scale(1.03); filter: brightness(1.12) drop-shadow(0 0 25px rgba(255,255,255,0.6)); }
}

.s8x5m3t9k7 p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.96);
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    letter-spacing: 1px;
}

.t3m9x5k7w8 {
    margin-bottom: 4rem;
}

.t3m9x5k7w8 h2 {
    font-size: 2.8rem;
    margin-bottom: 3.2rem;
    color: #ff1493;
    font-weight: 900;
    padding: 1.8rem 3.6rem;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.18), rgba(186, 85, 211, 0.18));
    border-radius: 28px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.3);
    border: 3px solid rgba(255, 105, 180, 0.35);
    position: relative;
}

.t3m9x5k7w8 h2::before {
    content: '✨';
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.3rem;
    animation: sparkle8k3m 2.5s ease-in-out infinite;
}

@keyframes sparkle8k3m {
    0%, 100% { transform: translateY(-50%) scale(1) rotate(0deg); opacity: 1; }
    50% { transform: translateY(-50%) scale(1.4) rotate(180deg); opacity: 0.6; }
}

.u7m3x5t8k9 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 3rem;
}

.v5x8m3t9k7 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 255, 0.96));
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(255, 105, 180, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: cardFadeIn3k7m 1s ease-out backwards;
    border: 3px solid rgba(255, 105, 180, 0.25);
    position: relative;
}

.v5x8m3t9k7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(186, 85, 211, 0.15));
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

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

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

@keyframes cardFadeIn3k7m {
    from { opacity: 0; transform: translateY(60px) scale(0.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.v5x8m3t9k7:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 28px 75px rgba(255, 105, 180, 0.5);
    border-color: #ff69b4;
}

.w9k3m5x8t7 {
    position: relative;
    overflow: hidden;
    height: 260px;
}

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

.v5x8m3t9k7:hover .w9k3m5x8t7 img {
    transform: scale(1.18) rotate(-2deg);
}

.x7m5k3t9w8 {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, #ff1493, #ba55d3);
    color: #fff;
    padding: 0.8rem 1.9rem;
    border-radius: 28px;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 6px 28px rgba(255, 20, 147, 0.7);
    animation: badgePulse3k8t 2.8s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

@keyframes badgePulse3k8t {
    0%, 100% { transform: scale(1); box-shadow: 0 6px 28px rgba(255, 20, 147, 0.7); }
    50% { transform: scale(1.1); box-shadow: 0 10px 40px rgba(255, 20, 147, 0.9); }
}

.y3m8x5k7t9 {
    padding: 2.8rem;
}

.y3m8x5k7t9 h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ff1493;
    font-weight: 900;
    line-height: 1.5;
}

.y3m8x5k7t9 h3 a {
    color: #ff1493;
    text-decoration: none;
    transition: all 0.3s;
}

.y3m8x5k7t9 h3 a:hover {
    color: #ba55d3;
    transform: scale(1.03);
}

.y3m8x5k7t9 p {
    margin-bottom: 1.8rem;
    line-height: 2;
    color: #5a6c7d;
    font-size: 1.05rem;
    font-weight: 600;
}

.z5m3x8k9t7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 3px dashed rgba(255, 105, 180, 0.3);
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 700;
    flex-wrap: wrap;
    gap: 1rem;
}

.a8k3m5x7t9 {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1.1rem 3rem;
    background: linear-gradient(135deg, #ff1493, #ba55d3);
    color: #fff;
    text-decoration: none;
    border-radius: 32px;
    transition: all 0.4s ease;
    font-weight: 900;
    font-size: 1.08rem;
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.6);
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

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

.a8k3m5x7t9:hover::before {
    width: 380px;
    height: 380px;
}

.a8k3m5x7t9:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 60px rgba(255, 20, 147, 0.8);
}

.b3m8x5t9k7 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 255, 0.96));
    border-radius: 28px;
    padding: 3.8rem;
    box-shadow: 0 18px 60px rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(18px);
    border: 3px solid rgba(255, 105, 180, 0.25);
    margin-bottom: 4rem;
}

.c8x5m3t9k7 {
    list-style: none;
}

.c8x5m3t9k7 li {
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(186, 85, 211, 0.08));
    border-radius: 18px;
    transition: all 0.4s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 6px solid transparent;
    box-shadow: 0 5px 22px rgba(255, 105, 180, 0.15);
}

.c8x5m3t9k7 li:hover {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.18), rgba(186, 85, 211, 0.15));
    transform: translateX(15px);
    border-left-color: #ff69b4;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.4);
}

.c8x5m3t9k7 li a {
    color: #ff1493;
    text-decoration: none;
    font-size: 1.18rem;
    font-weight: 900;
    flex: 1;
    transition: color 0.3s;
}

.c8x5m3t9k7 li a:hover {
    color: #ba55d3;
}

.c8x5m3t9k7 li time {
    color: #7f8c8d;
    font-size: 1rem;
    font-weight: 700;
}

.d5m9x3t8k7 {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.96), rgba(255, 20, 147, 0.94), rgba(186, 85, 211, 0.96));
    padding: 5rem 4rem 4rem;
    margin-top: 6rem;
    border-radius: 35px 35px 0 0;
    box-shadow: 0 -12px 55px rgba(255, 105, 180, 0.4);
    border-top: 4px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(18px);
}

.e8m3x5t9k7 {
    max-width: 1600px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
}

.f3x8m5t9k7 h3 {
    margin-bottom: 1.9rem;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
}

.f3x8m5t9k7 p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 2;
    font-weight: 700;
}

.f3x8m5t9k7 ul {
    list-style: none;
}

.f3x8m5t9k7 ul li {
    margin-bottom: 1.2rem;
}

.f3x8m5t9k7 ul li a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 700;
}

.f3x8m5t9k7 ul li a:hover {
    color: #fff;
    padding-left: 15px;
}

.g8k5m3x9t7 {
    text-align: center;
    padding: 3.5rem;
    border-top: 3px dashed rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.h5m3x9t8k7 {
    position: fixed;
    bottom: 45px;
    right: 45px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ff1493, #ba55d3);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 2.4rem;
    cursor: pointer;
    box-shadow: 0 12px 45px rgba(255, 20, 147, 0.7);
    transition: all 0.4s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    font-weight: 900;
    border: 4px solid rgba(255, 255, 255, 0.4);
}

.h5m3x9t8k7.i8k3m5x7t9 {
    opacity: 1;
    visibility: visible;
    animation: btnPop3k8m 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes btnPop3k8m {
    from { transform: scale(0) rotate(-600deg); }
    to { transform: scale(1) rotate(0deg); }
}

.h5m3x9t8k7:hover {
    transform: translateY(-10px) scale(1.15);
    box-shadow: 0 22px 70px rgba(255, 20, 147, 0.9);
}

.j8m3x5t9k7 {
    padding: 1.8rem 0;
    margin-bottom: 3.2rem;
    font-size: 1.12rem;
    color: #2c3e50;
    font-weight: 900;
}

.j8m3x5t9k7 a {
    color: #ff1493;
    text-decoration: none;
    transition: color 0.3s;
}

.j8m3x5t9k7 a:hover {
    color: #ba55d3;
}

.k7m3x9t5a8 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 255, 0.96));
    padding: 5rem;
    border-radius: 32px;
    box-shadow: 0 18px 70px rgba(255, 105, 180, 0.35);
    margin-bottom: 4rem;
    animation: bannerZoom7k3m 1.3s ease-out;
    backdrop-filter: blur(18px);
    border: 3px solid rgba(255, 105, 180, 0.25);
}

.k7m3x9t5a8 h2 {
    font-size: 3.6rem;
    color: #ff1493;
    margin-bottom: 3.8rem;
    padding-bottom: 3.2rem;
    border-bottom: 4px solid rgba(255, 105, 180, 0.35);
    font-weight: 900;
}

.l5x9m3t8k7 {
    display: flex;
    gap: 2.8rem;
    margin-bottom: 3.8rem;
    padding-bottom: 3.2rem;
    border-bottom: 3px dashed rgba(255, 105, 180, 0.25);
    font-size: 1.08rem;
    color: #7f8c8d;
    flex-wrap: wrap;
    font-weight: 700;
}

.k7m3x9t5a8 img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    margin: 3.8rem 0;
    border-radius: 28px;
    box-shadow: 0 18px 60px rgba(255, 105, 180, 0.4);
    border: 4px solid rgba(255, 105, 180, 0.35);
}

.k7m3x9t5a8 section h3 {
    font-size: 2.6rem;
    color: #ff1493;
    margin: 4.5rem 0 3.2rem;
    font-weight: 900;
}

.k7m3x9t5a8 section p {
    margin-bottom: 2.3rem;
    line-height: 2.1;
    color: #5a6c7d;
    text-align: justify;
    font-size: 1.12rem;
    font-weight: 600;
}

.k7m3x9t5a8 section strong {
    color: #ff1493;
    font-weight: 900;
}

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

@media (max-width: 768px) {
    .q3x7m5t9k8 {
        flex-direction: column;
        gap: 0.9rem;
    }
    .s8x5m3t9k7 h2 {
        font-size: 3.8rem;
    }
    .u7m3x5t8k9 {
        grid-template-columns: 1fr;
    }
    .k7m3x9t5a8 {
        padding: 4rem;
    }
    .k7m3x9t5a8 h2 {
        font-size: 3rem;
    }
}

.m9x5t3k7w8 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
    gap: 3rem;
}

.n8k5x9m3t7 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 255, 0.96));
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 12px 45px rgba(255, 105, 180, 0.3);
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 105, 180, 0.25);
    animation: commentFadeIn5k7m 0.8s ease-out backwards;
}

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

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

.n8k5x9m3t7:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(255, 105, 180, 0.45);
    border-color: #ff69b4;
}

.o5m3x7t9k8 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px dashed rgba(255, 105, 180, 0.25);
}

.o5m3x7t9k8 img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 105, 180, 0.4);
    box-shadow: 0 6px 25px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
}

.n8k5x9m3t7:hover .o5m3x7t9k8 img {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 10px 35px rgba(255, 105, 180, 0.6);
}

.p3m8x5k9t7 {
    flex: 1;
}

.q7x5m9k3t8 {
    display: block;
    font-size: 1.25rem;
    color: #ff1493;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.r5k9m3x8t7 {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 700;
}

.s9m3x5k7t8 {
    line-height: 2;
    color: #5a6c7d;
    font-size: 1.08rem;
    font-weight: 600;
    text-align: justify;
}

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