/* 自定义变量（避免与现有变量冲突） */
        :root {
            --jw-primary: #165DFF;
            --jw-secondary: #0FC6C2;
            --jw-light: rgba(22, 93, 255, 0.1);
            --jw-text-dark: #1D2939;
            --jw-text-gray: #666;
            --jw-white: #fff;
            --jw-bg-light: #F9FAFB;
            --jw-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        /* 基础样式重置（限定在.jw-container内） */
        .jw-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .jw-container html {
            scroll-behavior: smooth;
        }
        
        .jw-container body {
            color: var(--jw-text-dark);
            background-color: var(--jw-bg-light);
            overflow-x: hidden;
        }
        
        .jw-container a {
            text-decoration: none;
            color: inherit;
        }
        
        .jw-container ul {
            list-style: none;
        }
        
        /* 容器样式（复用现有容器变量） */
        .jw-inner-container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 var(--space-sm);
        }
        
        /* 按钮样式（带前缀） */
        .jw-btn {
            display: inline-block;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 30px;
            transition: all 0.3s ease;
            text-align: center;
            cursor: pointer;
            border: none;
        }
        
        .jw-btn-primary {
            background-color: var(--jw-primary);
            color: var(--jw-white);
            box-shadow: 0 4px 12px rgba(22, 93, 255, 0.25);
        }
        
        .jw-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(22, 93, 255, 0.3);
            color: var(--jw-white); /* 确保 hover 不继承全局 a 标签样式 */
        }
        
        .jw-btn-secondary {
            background-color: var(--jw-light);
            color: var(--jw-primary);
        }
        
        .jw-btn-secondary:hover {
            background-color: rgba(22, 93, 255, 0.15);
            color: var(--jw-primary); /* 确保 hover 不继承全局 a 标签样式 */
        }
        
        /* 标题样式 */
        .jw-section-title {
            font-size: clamp(1.8rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 16px;
            text-align: center;
        }
        
        .jw-section-subtitle {
            font-size: 1.2rem;
            color: var(--jw-text-gray);
            text-align: center;
            max-width: 600px;
            margin: 0 auto 40px;
        }
        
        .jw-gradient-text {
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            background-image: linear-gradient(135deg, var(--jw-primary) 0%, var(--jw-secondary) 100%);
        }
        
        /* 导航栏样式 */
        #jw-navbar {
            position: fixed;
            width: 100%;
            z-index: 50;
            transition: all 0.3s ease;
            padding: 20px 0;
        }
        
        #jw-navbar.jw-bg-white {
            background-color: var(--jw-white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }
        
        .jw-navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .jw-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--jw-white);
            display: flex;
            align-items: center;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
        }
        
        #jw-navbar.jw-bg-white .jw-logo {
            color: var(--jw-text-dark);
            text-shadow: none;
        }
        
        .jw-logo i {
            margin-right: 8px;
        }
        
        .jw-nav-links {
            display: flex;
            gap: 30px;
        }
        
        .jw-nav-links a {
            color: var(--jw-white);
            transition: color 0.3s ease;
        }
        
        #jw-navbar.jw-bg-white .jw-nav-links a {
            color: var(--jw-text-dark);
        }
        
        .jw-nav-links a:hover {
            color: var(--jw-secondary);
        }
        
        #jw-navbar.jw-bg-white .jw-nav-links a:hover {
            color: var(--jw-primary);
        }
        
        .jw-menu-toggle {
            display: none;
            color: var(--jw-white);
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        #jw-navbar.jw-bg-white .jw-menu-toggle {
            color: var(--jw-text-dark);
        }
        
        .jw-mobile-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--jw-white);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }
        
        .jw-mobile-menu.jw-active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }
        
        .jw-mobile-links {
            padding: 20px;
        }
        
        .jw-mobile-links a {
            display: block;
            padding: 12px 0;
            color: var(--jw-text-dark);
            border-bottom: 1px solid #f1f1f1;
            transition: color 0.3s ease;
        }
        
        .jw-mobile-links a:last-child {
            border-bottom: none;
        }
        
        .jw-mobile-links a:hover {
            color: var(--jw-primary);
        }
        
        /* 英雄区域样式 */
        #jw-home {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .jw-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        .jw-hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .jw-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(22, 93, 255, 0.7), rgba(22, 93, 255, 0.4));
        }
        
        .jw-hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: var(--jw-white);
            padding: 0 20px;
        }
        
        .jw-hero-tagline {
            font-size: 1.2rem;
            margin-bottom: 20px;
            opacity: 0;
            animation: jw-fadeInUp 1s 0.3s forwards;
        }
        
        .jw-hero-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
            opacity: 0;
            animation: jw-fadeInUp 1s 0.6s forwards;
        }
        
        .jw-scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--jw-white);
            text-align: center;
            animation: jw-bounce 2s infinite;
        }
        
        .jw-scroll-indicator span {
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        
        /* 服务特色区域 */
        #jw-features {
            padding: 100px 0;
            background-color: var(--jw-white);
        }
        
        .jw-section-divider {
            width: 80px;
            height: 3px;
            background-color: var(--jw-primary);
            margin: 0 auto 60px;
            border-radius: 3px;
        }
        
        .jw-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .jw-feature-card {
            background-color: var(--jw-white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--jw-shadow);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .jw-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .jw-feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--jw-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .jw-feature-icon img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .jw-feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .jw-feature-desc {
            color: var(--jw-text-gray);
        }
        
        /* 热门推荐区域 */
        #jw-recommendations {
            padding: 100px 0;
            background: linear-gradient(to bottom, var(--jw-light), var(--jw-white));
        }
        
        .jw-recommendations-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .jw-recommendations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .jw-recommendation-card {
            background-color: var(--jw-white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--jw-shadow);
            transition: all 0.3s ease;
        }
        
        .jw-recommendation-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .jw-recommendation-img {
            height: 200px;
            overflow: hidden;
        }
        
        .jw-recommendation-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .jw-recommendation-card:hover .jw-recommendation-img img {
            transform: scale(1.1);
        }
        
        .jw-recommendation-info {
            padding: 25px;
        }
        
        .jw-recommendation-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .jw-recommendation-desc {
            color: var(--jw-text-gray);
            margin-bottom: 20px;
        }
        
        .jw-recommendation-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .jw-price-tag {
            font-weight: 700;
            color: var(--jw-primary);
            font-size: 1.1rem;
        }
        
        .jw-view-details {
            font-size: 0.9rem;
            color: var(--jw-primary);
            background-color: var(--jw-light);
            padding: 5px 12px;
            border-radius: 20px;
        }
        
        /* 定制流程区域 */
        #jw-process {
            padding: 100px 0;
            background-color: var(--jw-white);
        }
        
        .jw-process-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .jw-process-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .jw-process-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            height: 100%;
        }
        
        .jw-process-image-group {
            display: flex;
            flex-direction: column;
            gap: 20px;
            height: 100%;
        }
        
        .jw-process-img-card {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--jw-shadow);
            transition: all 0.5s ease;
            display: flex;
            flex-direction: column;
        }
        
        .jw-process-img-card:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .jw-process-img-container {
            flex: 1;
            overflow: hidden;
        }
        
        .jw-process-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .jw-process-img-label {
            padding: 15px;
            background-color: var(--jw-white);
            text-align: center;
            font-weight: 600;
        }
        
        .jw-process-steps {
            display: flex;
            flex-direction: column;
        }
        
        .jw-process-highlights {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .jw-process-highlight {
            background-color: var(--jw-light);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
        }
        
        .jw-highlight-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--jw-primary);
            color: var(--jw-white);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.2rem;
        }
        
        .jw-highlight-title {
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .jw-highlight-desc {
            font-size: 0.9rem;
            color: var(--jw-text-gray);
        }
        
        .jw-steps-list {
            margin-bottom: 40px;
            flex: 1;
        }
        
        .jw-step-item {
            display: flex;
            margin-bottom: 30px;
        }
        
        .jw-step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--jw-primary);
            color: var(--jw-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .jw-step-content h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .jw-step-content p {
            color: var(--jw-text-gray);
        }
        
        /* 服务对比区域 */
        .jw-service-comparison {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--jw-primary) 0%, var(--jw-secondary) 100%);
            color: var(--jw-white);
        }
        
        .jw-comparison-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .jw-comparison-header h2 {
            color: var(--jw-white);
            margin-bottom: 20px;
        }
        
        .jw-comparison-header p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
        }
        
        .jw-comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .jw-comparison-card {
            background-color: var(--jw-white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .jw-comparison-card:hover {
            transform: scale(1.05);
        }
        
        .jw-comparison-card-header {
            padding: 25px;
            text-align: center;
            color: var(--jw-white);
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .jw-header-primary {
            background-color: var(--jw-primary);
        }
        
        .jw-header-gray {
            background-color: var(--jw-text-gray);
        }
        
        .jw-comparison-features {
            padding: 30px;
        }
        
        .jw-comparison-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--jw-text-dark);
        }
        
        .jw-comparison-feature:last-child {
            margin-bottom: 0;
        }
        
        .jw-feature-check {
            color: #28a745;
            margin-right: 12px;
            font-size: 1.2rem;
        }
        
        .jw-feature-times {
            color: #dc3545;
            margin-right: 12px;
            font-size: 1.2rem;
        }
        
        /* 关于我们区域 */
        #jw-about {
            padding: 100px 0;
            background-color: var(--jw-white);
        }
        
        .jw-company-overview {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 60px;
        }
        
        .jw-overview-bg {
            height: 400px;
            position: relative;
        }
        
        .jw-overview-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .jw-overview-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(22, 93, 255, 0.8), rgba(22, 93, 255, 0.4));
        }
        
        .jw-overview-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 60px;
            max-width: 600px;
            color: var(--jw-white);
        }
        
        .jw-overview-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 25px;
        }
        
        .jw-overview-text {
            font-size: 1.1rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        /* 联系我们区域 */
        #jw-contact {
            background-color: var(--jw-light);
            padding: 60px;
            border-radius: 20px;
        }
        
        .jw-contact-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .jw-contact-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .jw-contact-header p {
            color: var(--jw-text-gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .jw-contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .jw-contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .jw-form-group {
            display: flex;
            flex-direction: column;
        }
        
        .jw-form-group label {
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        
        .jw-form-control {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        
        .jw-form-control:focus {
            outline: none;
            border-color: var(--jw-primary);
            box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.1);
        }
        
        textarea.jw-form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .jw-contact-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 30px;
        }
        
        .jw-info-item {
            display: flex;
            align-items: flex-start;
        }
        
        .jw-info-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--jw-light);
            color: var(--jw-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .jw-info-content h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .jw-info-content p {
            color: var(--jw-text-gray);
        }
        
        /* 页脚样式 */
        .jw-footer {
            background-color: var(--jw-text-dark);
            color: var(--jw-white);
            padding: 80px 0 40px;
        }
        
        .jw-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .jw-footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .jw-footer-logo i {
            margin-right: 8px;
        }
        
        .jw-footer-desc {
            color: #aaa;
            margin-bottom: 20px;
        }
        
        .jw-social-links {
            display: flex;
            gap: 15px;
        }
        
        .jw-social-links a {
            color: #aaa;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }
        
        .jw-social-links a:hover {
            color: var(--jw-white);
        }
        
        .jw-footer-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .jw-footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .jw-footer-links a {
            color: #aaa;
            transition: color 0.3s ease;
        }
        
        .jw-footer-links a:hover {
            color: var(--jw-white);
        }
        
        .jw-footer-contact li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #aaa;
        }
        
        .jw-footer-contact i {
            color: var(--jw-primary);
            margin-right: 10px;
        }
        
        .jw-footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        
        /* 动画定义 */
        @keyframes jw-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes jw-bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }
        
        .jw-animate-fadeInUp {
            animation: jw-fadeInUp 0.8s ease forwards;
        }
        
        /* 响应式设计（复用现有断点） */
        @media (max-width: 1024px) {
            .jw-process-content {
                grid-template-columns: 1fr;
            }
            
            .jw-contact-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .jw-nav-links {
                display: none;
            }
            
            .jw-menu-toggle {
                display: block;
            }
            
            .jw-process-highlights {
                grid-template-columns: 1fr;
            }
            
            .jw-overview-content {
                padding: 30px;
            }
            
            #jw-contact {
                padding: 30px;
            }
        }
        
        @media (max-width: 640px) {
            .jw-process-images {
                grid-template-columns: 1fr;
            }
            
            .jw-comparison-grid {
                grid-template-columns: 1fr;
            }
            
            .jw-hero-title {
                font-size: clamp(2rem, 6vw, 3.5rem);
            }
            
            .jw-section-title {
                font-size: clamp(1.5rem, 4vw, 2.5rem);
            }
        }