
        :root {
            /* 主色调 - 调整为更适合PCB制造的专业蓝色 */
            --primary: #0F52BA;
            --primary-light: #1A68D1;
            --primary-dark: #0A408E;
            /* 交钥匙服务专属色 */
            --turnkey: #20c997;
            --turnkey-light: #38d9a9;
            --turnkey-dark: #12b886;
            /* 辅助色 */
            --secondary: #fd7e14;
            --secondary-light: #ff922b;
            --secondary-dark: #e86a00;
            /* 中性色 */
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --light: #f8f9fa;
            --white: #ffffff;
            /* 边框和阴影 */
            --border: #dee2e6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            /* 过渡效果 */
            --transition: all 0.3s ease-in-out;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.8;
            background-color: var(--white);
        }

        /* 通用容器 - 适配UEESHOP布局 */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* 通用间距 */
        .py-section {
            padding: 80px 0;
        }
        
        .py-sm {
            padding: 40px 0;
        }

        /* 标题样式 */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            line-height: 1.3;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .section-title.turnkey {
            color: var(--turnkey);
        }

        .section-title.turnkey::after {
            background-color: var(--turnkey);
        }

        .section-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }

        .section-subtitle.turnkey {
            color: var(--turnkey);
        }

        .section-subtitle i {
            margin-right: 12px;
            font-size: 1.2em;
            color: inherit;
        }

        /* 按钮样式 - UEESHOP适配 */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-align: center;
            /* UEESHOP按钮兼容性 */
            display: inline-block !important;
            line-height: 1.5 !important;
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn.turnkey {
            background-color: var(--turnkey);
        }

        .btn.turnkey:hover {
            background-color: var(--turnkey-dark);
        }

        .btn.secondary {
            background-color: var(--secondary);
        }

        .btn.secondary:hover {
            background-color: var(--secondary-dark);
        }

        .btn-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            margin: 20px 0;
        }

        /* 卡片样式 - UEESHOP适配 */
        .card {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 30px;
            transition: var(--transition);
            height: 100%;
            /* UEESHOP卡片兼容性 */
            box-sizing: border-box !important;
        }

        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }

        .card.turnkey {
            border-top: 4px solid var(--turnkey);
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .card-title.turnkey {
            color: var(--turnkey);
        }

        /* 网格布局 - 适配UEESHOP响应式 */
        .grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 30px;
            /* UEESHOP兼容性 */
            width: 100% !important;
            box-sizing: border-box !important;
        }

        .col-12 {
            grid-column: span 12;
        }

        .col-6 {
            grid-column: span 6;
        }

        .col-4 {
            grid-column: span 4;
        }

        .col-8 {
            grid-column: span 8;
        }

        /* 列表样式 */
        .custom-list {
            list-style: none;
            padding-left: 0;
            margin: 20px 0;
        }

        .custom-list li {
            padding-left: 30px;
            position: relative;
            margin-bottom: 10px;
        }

        .custom-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-size: 1.1em;
        }

        .custom-list.turnkey li::before {
            color: var(--turnkey);
        }

        /* 表格样式 - UEESHOP适配 */
        .table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            /* UEESHOP表格兼容性 */
            display: table !important;
        }

        .table th, .table td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .table th {
            background-color: var(--primary-light);
            color: var(--white);
            font-weight: 600;
        }

        .table.turnkey th {
            background-color: var(--turnkey-light);
        }

        .table tr:last-child td {
            border-bottom: none;
        }

        .table tr:hover td {
            background-color: var(--light-gray);
        }

        /* 图标盒子 */
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(15, 82, 186, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .icon-box.turnkey {
            background-color: rgba(32, 201, 151, 0.1);
        }

        .icon-box i {
            font-size: 2rem;
            color: var(--primary);
        }

        .icon-box.turnkey i {
            color: var(--turnkey);
        }

        /* 标签样式 */
        .badge {
            display: inline-block;
            padding: 5px 15px;
            background-color: rgba(15, 82, 186, 0.1);
            color: var(--primary);
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin: 0 8px 10px 0;
        }

        .badge.turnkey {
            background-color: rgba(32, 201, 151, 0.1);
            color: var(--turnkey);
        }

        /* 提示框 */
        .alert {
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid var(--primary);
            background-color: rgba(15, 82, 186, 0.05);
        }

        .alert.turnkey {
            border-left-color: var(--turnkey);
            background-color: rgba(32, 201, 151, 0.05);
        }

        .alert i {
            margin-right: 10px;
            color: var(--primary);
        }

        .alert.turnkey i {
            color: var(--turnkey);
        }

        /* FAQ样式 */
        .faq-item {
            background-color: var(--white);
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 30px;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question.turnkey {
            color: var(--turnkey);
        }

        .faq-question:hover {
            background-color: var(--light-gray);
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            border-top: 1px solid transparent;
        }

        .faq-answer.show {
            padding: 0 30px 30px;
            max-height: 1000px;
            border-top: 1px solid var(--border);
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        /* 回到顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
        }

        /* 头部样式 - UEESHOP简化版 (移除了sticky定位) */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            padding: 20px 0;
            z-index: 999;
            text-align: center;
        }

        .header-content {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .logo span {
            color: var(--turnkey);
        }

        /* 英雄区域 - 统一样式配置 */
        .hero {
            padding: 100px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--primary);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        /* 服务特点样式 */
        .service-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .service-feature i {
            color: var(--turnkey);
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 5px;
        }

        .service-feature-content h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        /* 交钥匙流程样式 */
        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 35px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--turnkey);
            display: none;
        }

        .process-step:last-child::after {
            display: none;
        }

        @media (min-width: 768px) {
            .process-step::after {
                display: block;
            }
        }

        .process-number {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--turnkey);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        /* 联系信息样式 */
        .contact-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .contact-info i {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: rgba(32, 201, 151, 0.1);
            color: var(--turnkey);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* UEESHOP响应式调整 - 关键优化 */
        @media (max-width: 992px) {
            .col-6 {
                grid-column: span 12;
            }
            
            .col-4 {
                grid-column: span 6;
            }
            
            .col-8 {
                grid-column: span 12;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .col-4 {
                grid-column: span 12;
            }
            
            .py-section {
                padding: 50px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 40px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .btn-group {
                flex-direction: column;
            }
            
            .table {
                font-size: 0.9rem;
                /* UEESHOP移动端表格滚动 */
                display: block !important;
                overflow-x: auto !important;
            }
            
            .table th, .table td {
                padding: 10px 15px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .card {
                padding: 20px;
            }
            
            .faq-question {
                padding: 15px 20px;
            }
            
            .faq-answer.show {
                padding: 0 20px 20px;
            }
            
            /* UEESHOP移动端按钮全屏 */
            .btn {
                width: 100% !important;
            }
        }

        /* UEESHOP兼容性修复 */
        img {
            max-width: 100%;
            height: auto;
        }
        
        a {
            text-decoration: none !important;
            color: inherit !important;
        }
        
        form input, form textarea, form select {
            width: 100% !important;
            box-sizing: border-box !important;
        }
        
        /* 清除UEESHOP默认样式冲突 */
        .py-section {
            clear: both !important;
        }
    