* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body,
    body * {
        font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }
    body {
        background: linear-gradient(160deg, #fdf2f8 0%, #fff0f3 40%, #fce7f3 75%, #fb7185 100%);
        color: #2d2d3a;
        line-height: 1.7;
        min-height: 100vh;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .site-header {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 14px 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 24px rgba(251, 113, 133, 0.12);
        border-bottom: 1px solid rgba(251, 113, 133, 0.15);
    }
    .nav-links {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    .nav-links a {
        text-decoration: none;
        color: #2d2d3a;
        font-weight: 600;
        padding: 8px 20px;
        border-radius: 30px;
        transition: all .3s ease;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }
    .nav-links a:hover {
        background: #fb7185;
        color: #fff;
        box-shadow: 0 4px 20px rgba(251, 113, 133, 0.45);
        transform: translateY(-1px);
    }
    .hero-section {
        padding: 70px 20px 50px;
        text-align: center;
        position: relative;
    }
    .hero-section h1 {
        font-size: clamp(1.8rem, 4vw, 3rem);
        font-weight: 800;
        background: linear-gradient(135deg, #fb7185, #f43f5e, #fb7185);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 24px;
        letter-spacing: -0.5px;
    }
    .hero-desc {
        max-width: 860px;
        margin: 0 auto 32px;
        font-size: 1.05rem;
        color: #5a5a6e;
        text-align: left;
        line-height: 1.8;
        background: rgba(255, 255, 255, 0.7);
        padding: 22px 28px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(251, 113, 133, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.8);
    }
    .hero-img-wrap {
        max-width: 860px;
        margin: 0 auto;
    }
    .hero-img-wrap img {
        width: 100%;
        border-radius: 24px;
        box-shadow: 0 12px 40px rgba(251, 113, 133, 0.18);
        display: block;
        border: 3px solid rgba(255, 255, 255, 0.7);
    }
    .section-block {
        padding: 60px 20px;
    }
    .section-title {
        text-align: center;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 16px;
        color: #1e1e2e;
        position: relative;
    }
    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #fb7185, #fda4af);
        border-radius: 4px;
        margin: 10px auto 0;
    }
    .section-subtitle {
        text-align: center;
        color: #777;
        max-width: 700px;
        margin: 0 auto 40px;
        font-size: 0.95rem;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }
    .stat-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(8px);
        text-align: center;
        padding: 32px 20px;
        border-radius: 20px;
        box-shadow: 0 4px 24px rgba(251, 113, 133, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.7);
        transition: transform .3s;
    }
    .stat-card:hover {
        transform: translateY(-6px);
    }
    .stat-number {
        font-size: 2.6rem;
        font-weight: 800;
        color: #fb7185;
        line-height: 1.2;
    }
    .stat-label {
        color: #666;
        margin-top: 8px;
        font-size: 0.92rem;
        font-weight: 500;
    }
    .adv-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
    }
    .adv-card {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(8px);
        padding: 30px 24px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(251, 113, 133, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.6);
        transition: all .3s;
    }
    .adv-card:hover {
        box-shadow: 0 8px 30px rgba(251, 113, 133, 0.18);
        transform: translateY(-4px);
    }
    .adv-icon {
        font-size: 2.2rem;
        margin-bottom: 14px;
    }
    .adv-card h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
        color: #1e1e2e;
    }
    .adv-card p {
        color: #5a5a6e;
        font-size: 0.92rem;
        line-height: 1.6;
    }
    .story-wrap {
        display: flex;
        gap: 40px;
        align-items: center;
        flex-wrap: wrap;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(8px);
        border-radius: 24px;
        padding: 36px;
        box-shadow: 0 4px 20px rgba(251, 113, 133, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.6);
    }
    .story-wrap img {
        width: 100%;
        max-width: 440px;
        border-radius: 18px;
        box-shadow: 0 8px 24px rgba(251, 113, 133, 0.14);
    }
    .story-text {
        flex: 1;
        min-width: 280px;
    }
    .story-text h3 {
        font-size: 1.5rem;
        margin-bottom: 14px;
        color: #1e1e2e;
    }
    .story-text p {
        color: #5a5a6e;
        font-size: 0.96rem;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    .testimonial-card {
        background: rgba(255, 255, 255, 0.8);
        padding: 28px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(251, 113, 133, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.6);
    }
    .testimonial-card .quote {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    .testimonial-card .author {
        font-weight: 600;
        color: #fb7185;
        font-size: 0.9rem;
    }
    .testimonial-card .role {
        color: #999;
        font-size: 0.82rem;
    }
    .partners-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px;
        padding: 20px 0;
    }
    .partner-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 16px;
        padding: 16px 24px;
        box-shadow: 0 4px 16px rgba(251, 113, 133, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.6);
        transition: transform .3s;
    }
    .partner-logo:hover {
        transform: scale(1.05);
    }
    .partner-logo img {
        height: 40px;
        width: auto;
    }
    .news-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 960px;
        margin: 0 auto;
    }
    .news-item {
        background: rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(6px);
        border-radius: 18px;
        padding: 26px 28px;
        box-shadow: 0 4px 18px rgba(251, 113, 133, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.6);
        transition: all .3s;
    }
    .news-item:hover {
        box-shadow: 0 8px 28px rgba(251, 113, 133, 0.15);
        transform: translateY(-3px);
    }
    .news-date {
        font-size: 0.82rem;
        color: #fb7185;
        font-weight: 600;
        margin-bottom: 6px;
        display: inline-block;
        background: #fdf2f8;
        padding: 2px 12px;
        border-radius: 20px;
    }
    .news-item h3 {
        font-size: 1.18rem;
        margin: 8px 0 10px;
        color: #1e1e2e;
        line-height: 1.4;
    }
    .news-item p {
        color: #5a5a6e;
        font-size: 0.94rem;
        line-height: 1.65;
    }
    .faq-list {
        max-width: 860px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .faq-item {
        background: rgba(255, 255, 255, 0.8);
        border-radius: 18px;
        padding: 28px;
        box-shadow: 0 4px 18px rgba(251, 113, 133, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.6);
    }
    .faq-question {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1e1e2e;
        margin-bottom: 10px;
    }
    .faq-answer {
        color: #5a5a6e;
        font-size: 0.92rem;
        line-height: 1.7;
    }
    .cta-section {
        text-align: center;
        background: linear-gradient(135deg, rgba(251, 113, 133, 0.12), rgba(253, 242, 248, 0.9));
        border-radius: 30px;
        padding: 60px 40px;
        position: relative;
        overflow: hidden;
    }
    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 16px;
        color: #1e1e2e;
    }
    .cta-section p {
        color: #5a5a6e;
        max-width: 600px;
        margin: 0 auto 28px;
        font-size: 1rem;
    }
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    .cta-btn {
        display: inline-block;
        padding: 14px 36px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        transition: all .3s;
        border: none;
        cursor: pointer;
    }
    .cta-btn-primary {
        background: linear-gradient(135deg, #fb7185, #f43f5e);
        color: #fff;
        box-shadow: 0 6px 24px rgba(251, 113, 133, 0.4);
    }
    .cta-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(251, 113, 133, 0.5);
    }
    .cta-btn-outline {
        background: transparent;
        color: #fb7185;
        border: 2px solid #fb7185;
    }
    .cta-btn-outline:hover {
        background: rgba(251, 113, 133, 0.1);
    }
    .cta-img {
        max-width: 400px;
        margin: 30px auto 0;
        border-radius: 20px;
        box-shadow: 0 8px 28px rgba(251, 113, 133, 0.15);
    }
    .site-footer {
        background: #1e1e2e;
        color: #ccc;
        padding: 40px 20px 20px;
        margin-top: 40px;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
    }
    .footer-info p {
        margin-bottom: 8px;
        font-size: 0.88rem;
    }
    .footer-links a {
        color: #fb7185;
        text-decoration: none;
        margin: 0 8px;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        width: 100%;
        text-align: center;
        margin-top: 30px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.82rem;
        color: #999;
    }
    @media (max-width: 768px) {
        .story-wrap {
            flex-direction: column;
            padding: 24px;
        }
        .hero-section h1 {
            font-size: 1.7rem;
        }
        .cta-section {
            padding: 40px 20px;
        }
    }