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

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, sans-serif;
            background-color: #ffffff;
            color: #111111;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* header 与首页一致 */
        .header {
            background-color: #ffffff;
            border-bottom: 1px solid #e5e7eb;
            position: sticky;
            top: 0;
            z-index: 50;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 18px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #25D366, #128C7E);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #1f2937;
            transition: color 0.2s;
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: #25D366;
        }

        .nav-links .active {
            color: #128C7E;
            font-weight: 600;
        }

        .btn-outline {
            border: 1px solid #25D366;
            background: transparent;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 600;
            color: #128C7E;
            transition: all 0.2s;
            text-decoration: none;
            cursor: pointer;
        }

        .btn-outline:hover {
            background: #25D36610;
            border-color: #128C7E;
        }

        .btn-primary {
            display: inline-block;
            background-color: #25D366;
            color: white;
            font-weight: 600;
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            transition: background 0.2s, transform 0.1s;
            border: none;
            font-size: 1rem;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: #128C7E;
        }

        /* 页面标题区 */
        .page-hero {
            background: linear-gradient(145deg, #f9fafb 0%, #ffffff 100%);
            padding: 64px 0 48px;
            text-align: center;
            border-bottom: 1px solid #eef2f6;
        }

        .page-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #1f2b3c, #075e54);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 16px;
        }

        .page-hero .subtitle {
            font-size: 1.2rem;
            color: #4b5563;
            max-width: 700px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .section-desc {
            color: #4b5563;
            max-width: 680px;
            margin: 0 auto 48px;
            font-size: 1.05rem;
            text-align: center;
        }

        /* 步骤卡片 */
        .steps-detailed {
            padding: 80px 0;
        }

        .step-row {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
            margin-bottom: 56px;
        }

        .step-row.reverse {
            flex-direction: row-reverse;
        }

        .step-text {
            flex: 1;
        }

        .step-number {
            display: inline-block;
            background: #25D366;
            color: #fff;
            font-weight: 700;
            font-size: 0.9rem;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            text-align: center;
            line-height: 32px;
            margin-bottom: 12px;
        }

        .step-text h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .step-text p {
            color: #374151;
            margin-bottom: 16px;
            font-size: 1.05rem;
        }

        .step-visual {
            flex: 1;
            background: #f4fcf7;
            border-radius: 32px;
            padding: 32px;
            text-align: center;
            border: 1px solid #d1f5e2;
            min-height: 240px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-visual svg {
            max-width: 100%;
            height: auto;
        }

        .tip-box {
            background: #fef9e7;
            border-left: 4px solid #f59e0b;
            padding: 14px 20px;
            border-radius: 12px;
            margin-top: 16px;
            font-size: 0.95rem;
            color: #92400e;
        }

        /* 技巧网格 */
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
            margin-top: 40px;
        }

        .tip-card {
            background: #f9fafb;
            border-radius: 24px;
            padding: 28px 24px;
            border: 1px solid #eef2f6;
            transition: 0.2s;
        }

        .tip-card:hover {
            border-color: #cbf0da;
            box-shadow: 0 12px 24px -10px rgba(0,0,0,0.06);
        }

        .tip-icon {
            font-size: 2rem;
            margin-bottom: 14px;
        }

        .tip-card h4 {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        /* 问题解决区 */
        .troubleshoot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .trouble-item {
            background: #fff;
            border: 1px solid #edf2f7;
            border-radius: 20px;
            padding: 28px 24px;
            transition: 0.2s;
        }

        .trouble-item:hover {
            border-color: #25D366;
            background: #fafffe;
        }

        .trouble-item h4 {
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* 创意下载模块 */
        .creative-downloads {
            background: #f9fafb;
            border-radius: 32px;
            padding: 48px 40px;
            margin: 80px 0;
            border: 1px solid #eef2f6;
        }

        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 28px;
            margin-top: 32px;
        }

        .download-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 22px;
            text-align: center;
            border: 1px solid #edf2f7;
            transition: all 0.2s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .download-card:hover {
            border-color: #25D366;
            box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.2);
            transform: translateY(-3px);
        }

        .download-icon {
            font-size: 2.4rem;
            margin-bottom: 12px;
        }

        .download-card h4 {
            font-weight: 700;
            margin-bottom: 6px;
        }

        .download-card p {
            font-size: 0.9rem;
            color: #6b7280;
        }

        /* 内链卡片 */
        .inner-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin: 48px 0 24px;
        }

        .inner-link-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 16px 28px;
            text-decoration: none;
            font-weight: 600;
            color: #1f2937;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
        }

        .inner-link-card:hover {
            border-color: #25D366;
            background: #f0fdf4;
        }

        /* footer 与首页一致 */
        .footer {
            border-top: 1px solid #eaeef3;
            padding: 48px 0 32px;
            background: #fafcff;
        }

        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
            margin-bottom: 40px;
        }

        .footer-col {
            min-width: 140px;
        }

        .footer-col h4 {
            font-weight: 600;
            margin-bottom: 18px;
            color: #111827;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 12px;
        }

        .footer-col a {
            text-decoration: none;
            color: #4b5563;
            font-size: 0.9rem;
        }

        .footer-col a:hover {
            color: #128C7E;
        }

        .copyright {
            text-align: center;
            padding-top: 28px;
            border-top: 1px solid #e5e7eb;
            font-size: 0.8rem;
            color: #6c757d;
        }

        @media (max-width: 768px) {
            .nav {
                flex-direction: column;
                gap: 16px;
            }
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }
            .page-hero h1 {
                font-size: 2rem;
            }
            .step-row, .step-row.reverse {
                flex-direction: column;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .creative-downloads {
                padding: 32px 20px;
            }
        }