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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #fef5e7 0%, #ffeef8 25%, #e8f4fd 50%, #fff5f7 75%, #f0fdf4 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(236, 72, 153, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(251, 146, 60, 0.06) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.q8m5x3k9t7 {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.98), rgba(219, 39, 119, 0.98), rgba(236, 72, 153, 0.98));
    box-shadow: 0 4px 30px rgba(236, 72, 153, 0.5);
    z-index: 1000;
    border-bottom: 3px solid rgba(251, 146, 60, 0.6);
    animation: headerBounce7k9m 1s ease-out;
    backdrop-filter: blur(12px);
}

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

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

.e9m5x7k3t8 h1 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.e9m5x7k3t8 h1 a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    display: inline-block;
    position: relative;
}

.e9m5x7k3t8 h1 a::before {
    content: '📚';
    margin-right: 12px;
    font-size: 2rem;
    animation: bookFlip5k8m 3s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
}

@keyframes bookFlip5k8m {
    0%, 100% { transform: rotateY(0deg) scale(1); }
    25% { transform: rotateY(180deg) scale(1.1); }
    50% { transform: rotateY(360deg) scale(1); }
    75% { transform: rotateY(180deg) scale(1.1); }
}

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

.r5x9m3k7t8 {
    display: flex;
    list-style: none;
    gap: 0.6rem;
}

.r5x9m3k7t8 li a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.r5x9m3k7t8 li a:hover::before {
    width: 300px;
    height: 300px;
}

.r5x9m3k7t8 li a:hover {
    background: rgba(251, 146, 60, 0.9);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(251, 146, 60, 0.5);
}

.t7m9x5k3w8 {
    max-width: 1400px;
    margin: 75px auto 3rem;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.y3k9m7x5t8 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.9), rgba(219, 39, 119, 0.9));
    padding: 3.5rem 4rem;
    border-radius: 25px;
    box-shadow: 0 12px 45px rgba(236, 72, 153, 0.4);
    margin-bottom: 3rem;
    text-align: center;
    animation: bannerPop8k5m 1.2s ease-out;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.y3k9m7x5t8::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px,
                rgba(255, 255, 255, 0.05) 40px, rgba(255, 255, 255, 0.05) 80px);
    animation: stripeSpin6k7m 30s linear infinite;
}

@keyframes stripeSpin6k7m {
    to { transform: translate(60px, 60px) rotate(5deg); }
}

@keyframes bannerPop8k5m {
    0% { opacity: 0; transform: scale(0.8); }
    60% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

.y3k9m7x5t8 h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.y3k9m7x5t8 p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.u5m9x3k7t8 {
    margin-bottom: 3rem;
}

.u5m9x3k7t8 h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #ec4899;
    font-weight: 900;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(219, 39, 119, 0.15));
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.2);
    border: 2px solid rgba(236, 72, 153, 0.3);
    position: relative;
}

.u5m9x3k7t8 h2::before {
    content: '💖';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: heartBeat4k9m 2s ease-in-out infinite;
}

@keyframes heartBeat4k9m {
    0%, 100% { transform: translateY(-50%) scale(1); }
    14% { transform: translateY(-50%) scale(1.3); }
    28% { transform: translateY(-50%) scale(1); }
    42% { transform: translateY(-50%) scale(1.3); }
    56% { transform: translateY(-50%) scale(1); }
}

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

.o9m3x5k7t8 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(254, 249, 251, 0.98));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    animation: cardBounce6k8m 0.8s ease-out backwards;
    border: 2px solid rgba(236, 72, 153, 0.2);
    position: relative;
}

.o9m3x5k7t8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(251, 146, 60, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

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

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

@keyframes cardBounce6k8m {
    0% { opacity: 0; transform: translateY(50px) scale(0.9); }
    60% { transform: translateY(-10px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.o9m3x5k7t8:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
    border-color: #ec4899;
}

.p3m7x9k5t8 {
    position: relative;
    overflow: hidden;
    height: 320px;
}

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

.o9m3x5k7t8:hover .p3m7x9k5t8 img {
    transform: scale(1.15) rotate(2deg);
}

.a5k9m3x7t8 {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #fb923c, #fbbf24);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(251, 146, 60, 0.6);
    animation: badgePulse5k7m 2.5s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

@keyframes badgePulse5k7m {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.s9x7m5k3t8 {
    padding: 1.5rem;
}

.s9x7m5k3t8 h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #ec4899;
    font-weight: 800;
    line-height: 1.4;
}

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

.s9x7m5k3t8 h3 a:hover {
    color: #fb923c;
}

.s9x7m5k3t8 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4b5563;
    font-size: 0.9rem;
    font-weight: 500;
}

.d7k9m3x5t8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px dashed rgba(236, 72, 153, 0.2);
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.f9m5x3k7t8 {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.f9m5x3k7t8::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(251, 146, 60, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

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

.f9m5x3k7t8:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.7);
}

.g3m9x7k5t8 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(254, 249, 251, 0.98));
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(236, 72, 153, 0.2);
    margin-bottom: 3rem;
}

.h7k9m5x3t8 {
    list-style: none;
}

.h7k9m5x3t8 li {
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(219, 39, 119, 0.08));
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.h7k9m5x3t8 li:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(219, 39, 119, 0.15));
    transform: translateX(12px);
    border-left-color: #fb923c;
    box-shadow: 0 8px 30px rgba(251, 146, 60, 0.3);
}

.h7k9m5x3t8 li a {
    color: #ec4899;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 800;
    flex: 1;
    transition: color 0.3s;
}

.h7k9m5x3t8 li a:hover {
    color: #fb923c;
}

.h7k9m5x3t8 li time {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
}

.j9m3x5k7t8 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(254, 249, 251, 0.98));
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(236, 72, 153, 0.2);
    margin-bottom: 3rem;
}

.j9m3x5k7t8 h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #ec4899;
    font-weight: 900;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid rgba(236, 72, 153, 0.2);
}

.k5m7x9k3t8 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 2rem;
}

.l9k5m3x7t8 {
    background: linear-gradient(135deg, rgba(254, 249, 251, 0.98), rgba(255, 255, 255, 0.98));
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(236, 72, 153, 0.15);
    animation: commentSlide7k3m 0.6s ease-out backwards;
}

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

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

.l9k5m3x7t8:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.25);
    border-color: #ec4899;
}

.m3x9k5t7w8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed rgba(236, 72, 153, 0.2);
}

.m3x9k5t7w8 img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(236, 72, 153, 0.3);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
}

.l9k5m3x7t8:hover .m3x9k5t7w8 img {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
}

.n7m5x9k3t8 {
    flex: 1;
}

.o5k9m3x7t8 {
    display: block;
    font-size: 1.08rem;
    color: #ec4899;
    margin-bottom: 0.3rem;
    font-weight: 800;
}

.p9m3x5k7t8 {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
}

.q7k5m9x3t8 {
    line-height: 1.7;
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
}

.r9m5x3k7t8 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.98), rgba(219, 39, 119, 0.98));
    padding: 4rem 3rem 3rem;
    margin-top: 5rem;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -10px 50px rgba(236, 72, 153, 0.3);
    border-top: 3px solid rgba(251, 146, 60, 0.6);
    backdrop-filter: blur(15px);
}

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

.t9k3m5x7t8 h3 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
}

.t9k3m5x7t8 p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 600;
}

.t9k3m5x7t8 ul {
    list-style: none;
}

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

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

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

.u9m5x7k3t8 {
    text-align: center;
    padding: 3rem;
    border-top: 2px dashed rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.v7x9m3k5t8 {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fb923c, #fbbf24);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 10px 35px rgba(251, 146, 60, 0.6);
    transition: all 0.3s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    font-weight: 800;
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.v7x9m3k5t8.w5m9x3k7t8 {
    opacity: 1;
    visibility: visible;
    animation: btnPop6k3m 0.8s ease-out;
}

@keyframes btnPop6k3m {
    0% { transform: scale(0) rotate(-360deg); }
    70% { transform: scale(1.1) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.v7x9m3k5t8:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 18px 55px rgba(251, 146, 60, 0.8);
}

.x9k3m5t7w8 {
    padding: 1.5rem 0;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    color: #2d3748;
    font-weight: 800;
}

.x9k3m5t7w8 a {
    color: #ec4899;
    text-decoration: none;
    transition: color 0.3s;
}

.x9k3m5t7w8 a:hover {
    color: #fb923c;
}

.y7m5x9k3t8 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(254, 249, 251, 0.98));
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 15px 55px rgba(0, 0, 0, 0.12);
    margin-bottom: 3rem;
    animation: bannerPop8k5m 1.2s ease-out;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(236, 72, 153, 0.2);
}

.y7m5x9k3t8 h2 {
    font-size: 3rem;
    color: #ec4899;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 3px solid rgba(236, 72, 153, 0.2);
    font-weight: 900;
}

.z5m9x3k7t8 {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px dashed rgba(236, 72, 153, 0.2);
    font-size: 0.95rem;
    color: #6b7280;
    flex-wrap: wrap;
    font-weight: 600;
}

.y7m5x9k3t8 img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 3rem 0;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(236, 72, 153, 0.2);
}

.y7m5x9k3t8 section h3 {
    font-size: 2.2rem;
    color: #ec4899;
    margin: 4rem 0 2.5rem;
    font-weight: 800;
}

.y7m5x9k3t8 section p {
    margin-bottom: 2rem;
    line-height: 1.9;
    color: #4b5563;
    text-align: justify;
    font-size: 1rem;
    font-weight: 500;
}

.y7m5x9k3t8 section strong {
    color: #ec4899;
    font-weight: 800;
}

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

@media (max-width: 768px) {
    .r5x9m3k7t8 {
        flex-direction: column;
        gap: 0.8rem;
    }
    .y3k9m7x5t8 h2 {
        font-size: 3rem;
    }
    .i7x9m5k3t8 {
        grid-template-columns: 1fr;
    }
    .y7m5x9k3t8 {
        padding: 3rem;
    }
    .y7m5x9k3t8 h2 {
        font-size: 2.5rem;
    }
}
