     /* ===== 独享CSS部分 - 公司注册页面 ===== */
        /* 页面横幅 */
        .page-banner {
            height: 60vh;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            display: flex;
            align-items: center;
            margin-top: 80px;
        }

        .banner-content {
            max-width: 800px;
            padding: 40px;
            position: relative;
            z-index: 2;
        }

        .banner-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: slideInLeft 1.2s ease;
        }

        .banner-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
            animation: slideInLeft 1.2s ease 0.3s both;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* 服务类型展示 */
        .services-section {
            background: white;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title h2 {
            color: var(--primary-color);
            display: inline-block;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            z-index: 1;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .service-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .service-header::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-header::before {
            transform: rotate(45deg) translate(10px, 10px);
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .service-header h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .service-tag {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .service-content {
            padding: 30px;
        }

        .service-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .service-feature i {
            color: var(--secondary-color);
            margin-right: 15px;
            font-size: 1.2rem;
            width: 25px;
            text-align: center;
        }

        .service-details {
            margin-top: 25px;
            border-top: 1px solid #eee;
            padding-top: 25px;
        }

        .detail-item {
            margin-bottom: 15px;
        }

        .detail-title {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }

        .detail-title i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        .detail-content {
            padding-left: 25px;
            font-size: 0.95rem;
        }

        /* 免费注册区域 */
        .free-registration {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #ff8e8e 100%);
            color: white;
            text-align: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .free-registration h2 {
            color: white;
            margin-bottom: 30px;
        }

        .free-registration h2::before {
            background: white;
        }

        .free-registration p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 0;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                padding-top: 60px;
                transition: var(--transition);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 20px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            section {
                padding: 80px 0;
            }
            
            .page-banner {
                height: 50vh;
            }
            
            .banner-content h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-card {
                padding: 0;
            }
            
            .banner-content {
                padding: 20px;
            }
            
            .banner-content h1 {
                font-size: 2rem;
            }
        }