       /* ===== 独享CSS部分 ===== */
        /* 包括除导航栏和底部外的所有部分 */
        
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::before {
            content: '';
            position: absolute;
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline::before {
            background: var(--primary);
        }
        
        .btn-outline:hover {
            color: white;
        }
        
        /* ===== 英雄区域 ===== */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: var(--gray);
        }
        
        .hero-btns {
            display: flex;
            gap: 20px;
        }
        
        .hero-shape {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: white;
            clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
            z-index: 3;
        }
        
        /* 几何动画图形 */
        .geometric-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }
        
        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite linear;
        }
        
        .shape-1 {
            width: 150px;
            height: 150px;
            background: var(--primary);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 10%;
            right: 15%;
            animation-duration: 20s;
        }
        
        .shape-2 {
            width: 100px;
            height: 100px;
            background: var(--secondary);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            top: 60%;
            right: 25%;
            animation-duration: 25s;
        }
        
        .shape-3 {
            width: 120px;
            height: 120px;
            background: var(--accent);
            border-radius: 50%;
            top: 30%;
            right: 35%;
            animation-duration: 18s;
        }
        
        .shape-4 {
            width: 80px;
            height: 80px;
            background: var(--primary);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            transform: rotate(45deg);
            top: 70%;
            right: 40%;
            animation-duration: 22s;
        }
        
        .shape-5 {
            width: 90px;
            height: 90px;
            background: var(--secondary);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            top: 20%;
            right: 50%;
            animation-duration: 30s;
        }
        
        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(20px, 20px) rotate(90deg);
            }
            50% {
                transform: translate(0, 40px) rotate(180deg);
            }
            75% {
                transform: translate(-20px, 20px) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }
        
        /* ===== 服务板块 ===== */
        .services {
            background: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .service-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            animation: cardFloat 6s infinite ease-in-out;
            animation-delay: calc(var(--delay) * 0.2s);
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        @keyframes cardFloat {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            animation-play-state: paused;
        }
        
        .service-icon {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .service-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon::before {
            transform: rotate(45deg) translate(10px, 10px);
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .service-content p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 20px;
            animation: pricePulse 2s infinite;
        }
        
        @keyframes pricePulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .free-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 2;
            animation: badgePulse 3s infinite;
        }
        
        @keyframes badgePulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
            }
        }
        
        /* ===== 广告1板块 - 免费申请扶持政策 ===== */
        .ad-1 {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .ad-1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,128C672,107,768,117,864,138.7C960,160,1056,192,1152,192C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }
        
        .ad-1-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .ad-1-icon {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 25px;
            animation: iconBounce 3s infinite;
        }
        
        .ad-1-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .ad-1-text {
            font-size: 1.3rem;
            margin-bottom: 15px;
            max-width: 800px;
            opacity: 0.9;
        }
        
        .ad-1-features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 30px 0;
        }
        
        .ad-1-feature {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 50px;
            backdrop-filter: blur(5px);
        }
        
        .ad-1-feature i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* ===== 关于我们 ===== */
        .about {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0.1;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-text h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .highlight {
            color: var(--secondary);
            font-weight: 700;
        }
        
        .about-features {
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .feature-item i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 1.2rem;
            animation: iconRotate 5s infinite linear;
        }
        
        @keyframes iconRotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        .about-image {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateX(50px);
        }
        
        .about-image.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* ===== 优势板块 ===== */
        .advantages {
            background: white;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        
        .advantage-card {
            background: white;
            padding: 40px 30px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(50px);
            position: relative;
            overflow: hidden;
            animation: advantageFloat 8s infinite ease-in-out;
        }
        
        .advantage-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        @keyframes advantageFloat {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            transition: var(--transition);
        }
        
        .advantage-card:hover::before {
            width: 100%;
            opacity: 0.05;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            animation-play-state: paused;
        }
        
        .advantage-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
            animation: iconBounce 3s infinite;
        }
        
        @keyframes iconBounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .advantage-icon::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            background: var(--secondary);
            border-radius: 50%;
            top: -5px;
            right: -5px;
            opacity: 0.3;
            z-index: -1;
        }
        
        .advantage-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* ===== 服务流程 ===== */
        .process {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .process::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,128C672,107,768,117,864,138.7C960,160,1056,192,1152,192C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }
        
        .process .section-title h2 {
            color: white;
        }
        
        .process .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(255, 255, 255, 0.3);
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            flex: 1;
            animation: stepPulse 4s infinite;
        }
        
        .step.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        @keyframes stepPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        .step-icon {
            width: 120px;
            height: 120px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary);
            font-size: 2.5rem;
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
            animation: iconRotate 10s infinite linear;
        }
        
        .step:hover .step-icon {
            transform: scale(1.1);
            background: var(--secondary);
            color: white;
            animation-play-state: paused;
        }
        
        .step h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        .step p {
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        /* ===== 广告2板块 - 正规招商平台 ===== */
        .ad-2 {
            padding: 60px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            position: relative;
            overflow: hidden;
        }
        
        .ad-2::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0.1;
        }
        
        .ad-2-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .ad-2-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            animation: iconBounce 3s infinite;
        }
        
        .ad-2-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .ad-2-text {
            font-size: 1.3rem;
            margin-bottom: 15px;
            max-width: 800px;
            color: var(--gray);
        }
        
        .ad-2-features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 30px 0;
        }
        
        .ad-2-feature {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            background: white;
            padding: 10px 20px;
            border-radius: 50px;
            box-shadow: var(--shadow);
            color: var(--dark);
        }
        
        .ad-2-feature i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* ===== 知识库 ===== */
        .knowledge {
            background: white;
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .article-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(50px);
            animation: cardFloat 8s infinite ease-in-out;
        }
        
        .article-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .article-card:hover {
            transform: translateY(-10px);
            animation-play-state: paused;
        }
        
        .article-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .article-card:hover .article-image img {
            transform: scale(1.1);
        }
        
        .article-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            animation: tagPulse 3s infinite;
        }
        
        @keyframes tagPulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .article-content {
            padding: 25px;
        }
        
        .article-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .article-content h3 a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .article-content h3 a:hover {
            color: var(--secondary);
        }
        
        .article-meta {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
            color: var(--secondary);
        }
        
        .article-content p {
            color: var(--gray);
        }
        
        /* ===== 响应式设计 - 独享部分 ===== */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .ad-1-title, .ad-2-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
            
            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .step {
                margin-bottom: 40px;
                width: 100%;
                max-width: 400px;
            }
            
            .hero::before {
                width: 100%;
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
                opacity: 0.8;
            }
            
            .hero-content {
                max-width: 100%;
                text-align: center;
            }
            
            .geometric-shapes {
                display: none;
            }
            
            .ad-1-features, .ad-2-features {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .ad-1-title, .ad-2-title {
                font-size: 1.8rem;
            }
            
            .ad-1-text, .ad-2-text {
                font-size: 1.1rem;
            }
            
            .services-grid,
            .advantages-grid,
            .articles-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .ad-1-title, .ad-2-title {
                font-size: 1.6rem;
            }
            
            .ad-1, .ad-2 {
                padding: 50px 0;
            }
        }