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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.h3n8q2w5r {
    background: linear-gradient(135deg, #2c7a3e 0%, #1d5a2c 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

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

.n4k7m9p2q {
    padding: 0;
}

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

.h2m5n8p9q {
    font-size: 1.8rem;
    font-weight: 700;
}

.h2m5n8p9q a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.h2m5n8p9q a:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.u5n8k3m7p {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.u5n8k3m7p li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.u5n8k3m7p li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.u5n8k3m7p li a:hover::after {
    width: 80%;
}

.u5n8k3m7p li a:hover {
    background: rgba(255,255,255,0.1);
}

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

.s9n4k7m2p {
    background: linear-gradient(135deg, #4a9960 0%, #2c7a3e 100%);
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.s9n4k7m2p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,80 600,40 T1200,20 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat-x bottom;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1200px;
    }
}

.d3k8m5n7q {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.d6n2k9m4p {
    animation: fadeInUp 1s ease-out;
}

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

.h8k3m7n5p {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.p5n8k2m9q {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.a2k9m5n7p {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #2c7a3e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.a2k9m5n7p:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f0f0f0;
}

.s4n7k2m9p {
    padding: 4rem 2rem;
    background: #fff;
}

.d8k3n5m7q {
    max-width: 1200px;
    margin: 0 auto;
}

.h5n2k8m4p {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c7a3e;
    position: relative;
    padding-bottom: 1rem;
}

.h5n2k8m4p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c7a3e, #4a9960);
    border-radius: 2px;
}

.d9k4n7m2p {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.a7n3k5m8p {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    animation: fadeIn 0.6s ease-out backwards;
}

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

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

.a7n3k5m8p:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.i4k8n2m5p {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.a7n3k5m8p:hover .i4k8n2m5p {
    transform: scale(1.1);
}

.h6n9k3m7p {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c7a3e;
}

.p8k2n5m9q {
    padding: 0 1.5rem;
    color: #666;
    line-height: 1.8;
}

.a3n7k5m2p {
    display: inline-block;
    margin: 1.5rem;
    padding: 0.7rem 1.5rem;
    background: #2c7a3e;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.a3n7k5m2p:hover {
    background: #1d5a2c;
    transform: translateX(5px);
}

.s2k7n4m9p {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.d6n9k3m7p {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.a4k2n8m5p {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.a4k2n8m5p:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    transform: translateX(5px);
}

.i9n3k7m2p {
    width: 150px;
    height: 150px;
    object-fit: cover;
    flex-shrink: 0;
}

.d7k4n2m8p {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.h3n8k5m9p {
    font-size: 1.3rem;
    color: #2c7a3e;
    margin-bottom: 0.5rem;
}

.p6k9n2m4p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.t2n5k8m3p {
    color: #999;
    font-size: 0.85rem;
}

.s8n4k2m7p {
    padding: 4rem 2rem;
    background: #fff;
}

.d5k9n3m7p {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.a2n7k4m9p {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.a2n7k4m9p:hover {
    background: #e9ecef;
    transform: translateY(-5px);
}

.d4k8n3m6p::before {
    content: '✓';
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #2c7a3e, #4a9960);
    color: #fff;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
}

.h7n2k5m8p {
    font-size: 1.4rem;
    color: #2c7a3e;
    margin-bottom: 0.8rem;
}

.p9k3n7m2p {
    color: #666;
    line-height: 1.8;
}

.a8k3n5m9p {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.h4n7k2m9p {
    font-size: 1.8rem;
    color: #2c7a3e;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #e9ecef;
}

.u7k2n9m5p {
    list-style: none;
}

.u7k2n9m5p li {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.u7k2n9m5p li:hover {
    padding-left: 1rem;
    background: #f8f9fa;
}

.u7k2n9m5p li a {
    color: #333;
    text-decoration: none;
    flex: 1;
    transition: color 0.3s ease;
}

.u7k2n9m5p li a:hover {
    color: #2c7a3e;
}

.u7k2n9m5p li time {
    color: #999;
    font-size: 0.9rem;
}

.f5n8k3m7p {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.d3n7k9m2p {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.d6k2n8m5p {
    animation: fadeIn 0.8s ease-out;
}

.h9n3k7m4p {
    color: #4a9960;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.p4k8n2m7p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.u2k7n5m9p {
    list-style: none;
}

.u2k7n5m9p li {
    margin-bottom: 0.5rem;
}

.u2k7n5m9p li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.u2k7n5m9p li a:hover {
    color: #4a9960;
    padding-left: 5px;
}

.d7n4k8m3p {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.p5k9n3m7p {
    color: #999;
}

.b8n4k7m2p {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c7a3e, #4a9960);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
}

.b8n4k7m2p.k3m9n5p7q {
    opacity: 1;
    visibility: visible;
}

.b8n4k7m2p:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.n9k4m7p2x {
    padding: 1rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    margin: 1rem 0;
    border-radius: 4px;
}

.c5m8n3k7p {
    padding: 2rem;
    margin: 2rem 0;
}

.c5m8n3k7p ol {
    padding-left: 2rem;
}

.c5m8n3k7p ol li {
    margin: 0.5rem 0;
    line-height: 1.8;
}

.c5m8n3k7p ol li a {
    color: #2c7a3e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.c5m8n3k7p ol li a:hover {
    color: #1d5a2c;
    text-decoration: underline;
}

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

    .u5n8k3m7p {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .h8k3m7n5p {
        font-size: 2rem;
    }

    .d9k4n7m2p,
    .d6n9k3m7p,
    .d5k9n3m7p,
    .d3n7k9m2p {
        grid-template-columns: 1fr;
    }

    .a4k2n8m5p {
        flex-direction: column;
    }

    .i9n3k7m2p {
        width: 100%;
        height: 200px;
    }
}