* {
    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: #2d3748;
    background: #fafbfc;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(52, 211, 153, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 146, 60, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(244, 114, 182, 0.06) 0%, transparent 60%);
    z-index: 0;
    animation: k3m8n5p2x 25s ease-in-out infinite;
}

@keyframes k3m8n5p2x {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.r9m4k7n2p {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 25px rgba(52, 211, 153, 0.15);
    z-index: 1000;
    border-bottom: 2px solid rgba(52, 211, 153, 0.2);
    animation: t7k3n9m5x 0.5s ease-out;
}

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

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

.q5k9m3n7p h1 {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 3px;
    position: relative;
}

.q5k9m3n7p h1 a {
    background: linear-gradient(135deg, #34d399 0%, #fb923c 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    animation: e2k7n4m9x 4s linear infinite;
    background-size: 200% auto;
}

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

.q5k9m3n7p h1 a::before {
    content: '♥';
    position: absolute;
    left: -30px;
    top: 0;
    color: #34d399;
    animation: u4k8n2m6p 2s infinite;
}

.q5k9m3n7p h1 a::after {
    content: '✿';
    position: absolute;
    right: -30px;
    top: 0;
    color: #fb923c;
    animation: u4k8n2m6p 2s infinite 1s;
}

@keyframes u4k8n2m6p {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.25);
        opacity: 0.7;
    }
}

.q5k9m3n7p h1 a:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.i6k3m9n2x {
    display: flex;
    list-style: none;
    gap: 0.2rem;
}

.i6k3m9n2x li a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(52, 211, 153, 0.05);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.i6k3m9n2x li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.9) 0%, rgba(251, 146, 60, 0.9) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

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

.i6k3m9n2x li a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #34d399;
    box-shadow: 0 6px 20px rgba(52, 211, 153, 0.3);
}

.o7k2m5n8p {
    max-width: 1380px;
    margin: 85px auto 2rem;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
}

.a9k4m7n3x {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 4.5rem 4rem;
    border-radius: 30px;
    box-shadow: 0 12px 45px rgba(52, 211, 153, 0.2);
    margin-bottom: 4rem;
    text-align: center;
    animation: s8k3n6m2p 1s ease-out;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(52, 211, 153, 0.2);
}

.a9k4m7n3x::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(52, 211, 153, 0.03) 15px,
        rgba(52, 211, 153, 0.03) 30px
    );
    animation: d5k9n3m7p 25s linear infinite;
}

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

@keyframes s8k3n6m2p {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.a9k4m7n3x h2 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #34d399 0%, #10b981 25%, #fb923c 50%, #f59e0b 75%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    z-index: 1;
    animation: f6k2n8m4x 5s linear infinite;
    background-size: 200% auto;
}

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

.a9k4m7n3x p {
    font-size: 1.4rem;
    color: #4b5563;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.g3k8m5n9p {
    margin-bottom: 4rem;
}

.g3k8m5n9p h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #34d399;
    font-weight: 900;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.12) 0%, rgba(251, 146, 60, 0.12) 100%);
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(52, 211, 153, 0.15);
    position: relative;
    border: 2px solid rgba(52, 211, 153, 0.2);
}

.g3k8m5n9p h2::before {
    content: '●';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    color: #34d399;
    font-size: 1.8rem;
    animation: h9k4n7m2x 2.5s infinite;
}

.g3k8m5n9p h2::after {
    content: '●';
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    color: #fb923c;
    font-size: 1.8rem;
    animation: h9k4n7m2x 2.5s infinite 1.25s;
}

@keyframes h9k4n7m2x {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.35);
        opacity: 0.6;
    }
}

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

.l5k9m3n8p {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: c8n5k3m7p 0.6s ease-out backwards;
    border: 2px solid transparent;
    position: relative;
}

.l5k9m3n8p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

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

.l5k9m3n8p:nth-child(1) { animation-delay: 0.05s; }
.l5k9m3n8p:nth-child(2) { animation-delay: 0.1s; }
.l5k9m3n8p:nth-child(3) { animation-delay: 0.15s; }
.l5k9m3n8p:nth-child(4) { animation-delay: 0.2s; }
.l5k9m3n8p:nth-child(5) { animation-delay: 0.25s; }
.l5k9m3n8p:nth-child(6) { animation-delay: 0.3s; }

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

.l5k9m3n8p:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(52, 211, 153, 0.25);
    border-color: #34d399;
}

.v2k7n5m9x {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

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

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

.b4k8n6m3p {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #ffffff;
    padding: 0.45rem 1.1rem;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: 0 3px 12px rgba(52, 211, 153, 0.4);
    z-index: 2;
}

.n8k3m7p5x {
    padding: 1.8rem;
    position: relative;
    z-index: 2;
}

.n8k3m7p5x h3 {
    font-size: 1.6rem;
    margin-bottom: 0.9rem;
    color: #1f2937;
    font-weight: 800;
}

.n8k3m7p5x h3 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.n8k3m7p5x h3 a:hover {
    color: #34d399;
}

.z9k2n6m4p {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.z9k2n6m4p span {
    padding: 0.45rem 1.1rem;
    background: rgba(52, 211, 153, 0.15);
    border-radius: 15px;
    font-size: 0.88rem;
    color: #10b981;
    font-weight: 700;
    border: 1px solid rgba(52, 211, 153, 0.3);
    transition: all 0.3s ease;
}

.z9k2n6m4p span:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(52, 211, 153, 0.25);
    background: rgba(52, 211, 153, 0.25);
}

.n8k3m7p5x p {
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 1.3rem;
    font-size: 0.98rem;
}

.x6k9n2m5p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px dashed rgba(52, 211, 153, 0.2);
    font-size: 0.92rem;
    color: #6b7280;
}

.m4k7n9p3x {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.85rem 2.8rem;
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s ease;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 5px 18px rgba(52, 211, 153, 0.35);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.m4k7n9p3x:hover::before {
    width: 280px;
    height: 280px;
}

.m4k7n9p3x:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 35px rgba(52, 211, 153, 0.5);
    border-color: #ffffff;
}

.p9k3n7m5x {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 2.8rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(52, 211, 153, 0.15);
}

.r5k8n3m6p {
    list-style: none;
}

.r5k8n3m6p li {
    padding: 1.5rem;
    margin-bottom: 1.3rem;
    background: rgba(52, 211, 153, 0.06);
    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 3px 12px rgba(0, 0, 0, 0.05);
}

.r5k8n3m6p li:hover {
    background: rgba(52, 211, 153, 0.15);
    transform: translateX(12px);
    border-left-color: #34d399;
    box-shadow: 0 6px 25px rgba(52, 211, 153, 0.2);
}

.r5k8n3m6p li a {
    color: #2d3748;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    flex: 1;
    transition: color 0.3s ease;
}

.r5k8n3m6p li a:hover {
    color: #34d399;
}

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

.w5k9n2m8x {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 3.5rem 3rem 2.2rem;
    margin-top: 4rem;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -8px 35px rgba(0, 0, 0, 0.08);
    border-top: 3px solid rgba(52, 211, 153, 0.3);
    position: relative;
    z-index: 1;
}

.f8k3n5m7p {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.8rem;
    margin-bottom: 2.8rem;
}

.u2k7n9m5x h3 {
    margin-bottom: 1.6rem;
    color: #34d399;
    font-size: 1.5rem;
    font-weight: 800;
}

.u2k7n9m5x p {
    color: #4b5563;
    line-height: 1.85;
}

.u2k7n9m5x ul {
    list-style: none;
}

.u2k7n9m5x ul li {
    margin-bottom: 0.9rem;
}

.u2k7n9m5x ul li a {
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.u2k7n9m5x ul li a:hover {
    color: #34d399;
    padding-left: 12px;
}

.y3k6n8m4p {
    text-align: center;
    padding: 2.2rem;
    border-top: 2px dashed rgba(52, 211, 153, 0.2);
    color: #6b7280;
    font-weight: 600;
}

.s4k9n6m2p {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(52, 211, 153, 0.4);
    transition: all 0.4s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    font-weight: 900;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.s4k9n6m2p.q7k3n9m5x {
    opacity: 1;
    visibility: visible;
    animation: t5k8n4m2x 0.5s ease-out;
}

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

.s4k9n6m2p:hover {
    transform: translateY(-10px) scale(1.12) rotate(360deg);
    box-shadow: 0 12px 45px rgba(52, 211, 153, 0.6);
}

.d8k2n5m9p {
    padding: 1.3rem 0;
    margin-bottom: 2.2rem;
    font-size: 1.05rem;
    color: #4b5563;
    font-weight: 700;
}

.d8k2n5m9p a {
    color: #34d399;
    text-decoration: none;
    transition: color 0.3s ease;
}

.d8k2n5m9p a:hover {
    color: #10b981;
}

.d8k2n5m9p span {
    color: #6b7280;
}

.h9k3n2m7x {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
    margin-bottom: 4rem;
    animation: s8k3n6m2p 1s ease-out;
    backdrop-filter: blur(12px);
    border: 2px solid rgba(52, 211, 153, 0.15);
}

.h9k3n2m7x h2 {
    font-size: 3.2rem;
    color: #34d399;
    margin-bottom: 2.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 4px solid rgba(52, 211, 153, 0.2);
    font-weight: 900;
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.k6n9m3p5x {
    display: flex;
    gap: 1.8rem;
    margin-bottom: 2.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 2px dashed rgba(52, 211, 153, 0.2);
    font-size: 1.05rem;
    color: #6b7280;
    flex-wrap: wrap;
    font-weight: 600;
}

.h9k3n2m7x img {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 2.8rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 35px rgba(52, 211, 153, 0.2);
    border: 2px solid rgba(52, 211, 153, 0.15);
}

.h9k3n2m7x section h3 {
    font-size: 2.2rem;
    color: #34d399;
    margin: 3.2rem 0 1.8rem;
    font-weight: 800;
}

.h9k3n2m7x section p {
    margin-bottom: 1.8rem;
    line-height: 2;
    color: #4b5563;
    text-align: justify;
    font-size: 1.05rem;
}

.h9k3n2m7x section strong {
    color: #34d399;
    font-weight: 800;
}

.e3k9n7m2x {
    background: rgba(52, 211, 153, 0.1);
    padding: 2.2rem;
    border-radius: 18px;
    margin: 3.2rem 0;
    border-left: 6px solid #34d399;
    box-shadow: 0 5px 20px rgba(52, 211, 153, 0.15);
}

.c5k2n8m6p {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.8rem;
    margin-bottom: 4rem;
}

.i3k7n5m9p {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 2.8rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(52, 211, 153, 0.15);
}

.i3k7n5m9p h3 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
    color: #34d399;
    font-weight: 800;
    border-bottom: 3px solid rgba(52, 211, 153, 0.2);
    padding-bottom: 1rem;
}

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

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

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

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

    .h9k3n2m7x {
        padding: 2.2rem;
    }

    .h9k3n2m7x h2 {
        font-size: 2.4rem;
    }
}
