        :root {
            --primary-color: #0a2d46;
            --secondary-color: #c9a96e;
            --accent-color: #1a5f7a;
            --light-color: #f8f9fa;
            --dark-color: #333333;
            --gray-color: #6c757d;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--dark-color);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: #fefefe;
        }
        a {
            text-decoration: none;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 头部样式 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 45, 70, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: var(--transition);
            padding: 15px 0;
            border-bottom: 1px solid rgba(201, 169, 110, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-icon {
            font-size: 32px;
            color: var(--secondary-color);
            margin-right: 12px;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-text h1 {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin: 0;
            line-height: 1.2;
        }
        
        .logo-text span {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 1px;
            margin-top: 2px;
        }
        
        /* PC端导航菜单 */
        .pc-nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin-left: 40px;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            padding: 5px 0;
            transition: var(--transition);
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-color);
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .header-contact {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .header-phone {
            display: flex;
            align-items: center;
            color: white;
            font-weight: 600;
            font-size: 16px;
        }
        
        .header-phone i {
            color: var(--secondary-color);
            margin-right: 8px;
            font-size: 18px;
        }
        
        .contact-btn {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 12px 28px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        
        .contact-btn:hover {
            background-color: #d8b87a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(201, 169, 110, 0.3);
        }
        
        /* 移动端汉堡菜单按钮 - 默认隐藏 */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            transition: var(--transition);
        }
        
        .mobile-menu-btn:hover {
            color: var(--secondary-color);
        }
        
        /* 移动端导航菜单 */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .mobile-nav-overlay.active {
            display: block;
            opacity: 1;
        }
        
        .mobile-nav-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background-color: var(--primary-color);
            z-index: 1000;
            padding: 100px 30px 30px;
            overflow-y: auto;
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
        }
        
        .mobile-nav-menu.active {
            right: 0;
        }
        
        /* 移动端导航菜单专用样式 */
        .mobile-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mobile-nav-item {
            margin: 0;
            margin-bottom: 15px;
        }
        
        .mobile-nav-link {
            display: block;
            padding: 15px 0;
            font-size: 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .mobile-nav-link.active {
            color: var(--secondary-color);
        }
        
        .mobile-nav-link:hover {
            color: var(--secondary-color);
            padding-left: 10px;
        }
        
        .mobile-nav-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .mobile-nav-title {
            color: white;
            font-size: 18px;
            font-weight: 600;
        }
        
        .mobile-nav-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
            transition: var(--transition);
        }
        
        .mobile-nav-close:hover {
            color: var(--secondary-color);
            transform: rotate(90deg);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            /* 隐藏PC端导航菜单 */
            .pc-nav-menu {
                display: none;
            }
            
            /* 隐藏PC端的电话和免费设计按钮 */
            .header-contact {
                display: none;
            }
            
            /* 显示移动端汉堡按钮 */
            .mobile-menu-btn {
                display: block;
            }
        }
        
        @media (max-width: 576px) {
            .logo-text h1 {
                font-size: 20px;
            }
            
            .logo-text span {
                font-size: 10px;
            }
            
            .logo-icon {
                font-size: 26px;
                margin-right: 8px;
            }
        }
        
        /* 阻止滚动 */
        body.no-scroll {
            overflow: hidden;
        }
        /* 英雄区域 */
        .hero {
            height: 100vh;
            min-height: 900px;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            margin-top: 0;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(10, 45, 70, 0.85), rgba(10, 45, 70, 0.7)), url('../images/banner.webp');
            background-size: cover;
            background-position: center;
            z-index: -1;
        }
        
        .hero-bg:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to top, #fefefe, transparent);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 900px;
            padding-top: 100px;
        }
        
        .hero-subtitle {
            font-size: 18px;
            font-weight: 500;
            color: var(--secondary-color);
            letter-spacing: 3px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .hero-title {
            font-size: 72px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 30px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .hero-description {
            font-size: 22px;
            line-height: 1.8;
            margin-bottom: 50px;
            opacity: 0.9;
            max-width: 700px;
        }
        
        .hero-stats {
            display: flex;
            gap: 60px;
            margin-top: 60px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--secondary-color);
            line-height: 1;
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 16px;
            font-weight: 500;
            opacity: 0.9;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .hero-btn {
            padding: 18px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 4px;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-btn-primary {
            background-color: var(--secondary-color);
            color: var(--primary-color);
        }
        
        .hero-btn-primary:hover {
            background-color: #d8b87a;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
        }
        
        .hero-btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .hero-btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-3px);
        }
  .page-header {
             height: 50vh;
             min-height: 400px;
             position: relative;
             display: flex;
             align-items: center;
             overflow: hidden;
             margin-top: 0;
                         background-size: cover;
             background-position: center;
             color: white;
         }
         
         .page-header-content {
             position: relative;
             z-index: 2;
             width: 100%;
             padding-top: 100px;
         }
         
         .page-title {
             font-size: 64px;
             font-weight: 700;
             line-height: 1.1;
             margin-bottom: 20px;
             text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
         }
         
         .page-subtitle {
             font-size: 20px;
             line-height: 1.8;
             margin-bottom: 30px;
             opacity: 0.9;
             max-width: 700px;
         }     
@media (max-width: 768px) {
            .page-title {
                font-size: 40px;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }
        /* 产品展示区域 */
        .products-showcase {
            padding: 150px 0 100px;
        }
 .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
 .section-header  .section-subtitle {
            font-size: 18px;
            color: var(--secondary-color);
            font-weight: 500;
            letter-spacing: 3px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
 .section-header   .section-title {
            font-size: 48px;
            color: var(--primary-color);
            font-weight: 700;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }
 .section-header  .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px; margin-top: 45px
        }
        
        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }
        
        .product-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(10, 45, 70, 0.7));
            display: flex;
            align-items: flex-end;
            padding: 30px;
            color: white;
        }
        
        .product-overlay h3 {
            font-size: 24px;
            font-weight: 600;
        }
        
        .product-content {
            padding: 30px;
        }
        
        .product-content h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .product-features {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .product-features li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: var(--gray-color);
            font-size: 15px;
        }
        
        .product-features i {
            color: var(--secondary-color);
            margin-right: 10px;
            font-size: 12px;
        }
        
        .product-link {
            display: inline-flex;
            align-items: center;
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
            font-size: 15px;
            transition: var(--transition);
        }
        
        .product-link i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .product-link:hover i {
            transform: translateX(5px);
        }
        
        .products-cta {
            text-align: center;
            margin-top: 60px;
        }
        
        /* 核心优势 */
        .core-advantages {
            padding: 100px 0;
            background-color: #f9f9f9;
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }
        
        .advantage-card {
            background-color: white;
            padding: 50px 30px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }
        
        .advantage-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--secondary-color);
        }
        
        .advantage-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(201, 169, 110, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: var(--secondary-color);
            font-size: 32px;
            transition: var(--transition);
        }
        
        .advantage-card:hover .advantage-icon {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .advantage-card h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .advantage-card p {
            color: var(--gray-color);
            font-size: 15px;
            line-height: 1.7;
        }
        
        /* 案例预览 */
        .cases-preview {
            padding: 50px 0 30px;
        }
        
        .preview-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
        }
        
        .preview-title {
            font-size: 36px;
            color: var(--primary-color);
            font-weight: 600;
            max-width: 500px;
        }
        
        .preview-link {
            display: inline-flex;
            align-items: center;
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
            font-size: 16px;
            transition: var(--transition);
        }
        
        .preview-link i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .preview-link:hover i {
            transform: translateX(5px);
        }
        
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .case-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
        }
        
        .case-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }
        
        .case-image {
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        
        .case-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .case-card:hover .case-image img {
            transform: scale(1.1);
        }
        
        .case-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .case-content {
            padding: 30px;
        }
	.case-content h3{margin-bottom: 15px;}	
		.case-content h3 a{
		    font-size: 20px;
		    color: var(--primary-color);
		    font-weight: 600;
		    line-height: 1.3;
		}
        
        .case-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 14px;
            color: var(--gray-color);
        }
        
        .case-info-item {
            display: flex;
            align-items: center;
        }
        
        .case-info-item i {
            margin-right: 8px;
            color: var(--secondary-color);
        }
        
        /* 服务流程 */
        .service-process {
            padding: 100px 0 150px;
            background-color: #f9f9f9;
        }
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 80px;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 60px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #e0e0e0;
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            width: 20%;
        }
        
        .step-number {
            width: 120px;
            height: 120px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: var(--secondary-color);
            font-size: 36px;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid var(--secondary-color);
        }
        
        .step-content h3 {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .step-content p {
            color: var(--gray-color);
            font-size: 14px;
            line-height: 1.6;
        }
        
        /* 品牌合作 */
        .brand-partners {
            padding: 100px 0;
        }
        
        .partners-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 40px;
            margin-top: 60px;
            align-items: center;
        }
        
        .partner-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: var(--transition);
        }
        
        .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: translateY(-5px);
        }
        
        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
        }

/* 分页控件 */
.pagination {
    padding: 20px 0 30px;
    width: 100%;
    text-align: center;
    clear: both;
}
.pagination a {
    color: #666;
    padding: 0 15px;
    margin: 0 3px;
    background: #fff;
    border: 1px solid #ddd;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}
.pagination * {
    display: inline-block;
    vertical-align: middle;
    line-height: 34px;
    padding-bottom: 5px;
}
.pagination a:hover, .pagination .active a{
    display: inline-block;
    color: #fff;
    background:  var(--secondary-color);
    border-color: var(--secondary-color);
}

        
        /* CTA区域 */
        .home-cta {
            padding: 120px 0;
            background: linear-gradient(rgba(10, 45, 70, 0.9), rgba(10, 45, 70, 0.9)), url('../images/banner.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
        }
        
        .cta-text {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 50px;
            opacity: 0.9;
            line-height: 1.7;
        }
        
        .cta-form {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr auto;
            gap: 15px;
        }
        
        .form-input {
            padding: 16px 20px;
            border-radius: 4px;
            border: none;
            font-size: 16px;
            font-family: inherit;
        }
        
        .form-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.3);
        }
        
        .form-submit {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 16px 30px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }
        
        .form-submit:hover {
            background-color: #d8b87a;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
        }
		
		/* CTA区域 */
		.about-cta {
		    padding: 120px 0;
		    background: linear-gradient(rgba(10, 45, 70, 0.9), rgba(10, 45, 70, 0.9)), url('');
		    background-size: cover;
		    background-position: center;
		    background-attachment: fixed;
		    color: white;
		    text-align: center;
		}
		
		.cta-title {
		    font-size: 48px;
		    font-weight: 700;
		    margin-bottom: 30px;
		    line-height: 1.2;
		}
		
		.cta-text {
		    font-size: 20px;
		    max-width: 800px;
		    margin: 0 auto 50px;
		    opacity: 0.9;
		    line-height: 1.7;
		}
		
		.cta-buttons {
		    display: flex;
		    justify-content: center;
		    gap: 20px;
		    flex-wrap: wrap;
		}
		
		.cta-btn {
		    padding: 18px 40px;
		    font-size: 16px;
		    font-weight: 600;
		    border-radius: 4px;
		    text-decoration: none;
		    transition: var(--transition);
		}
		
		.cta-btn-primary {
		    background-color: var(--secondary-color);
		    color: var(--primary-color);
		}
		
		.cta-btn-primary:hover {
		    background-color: #d8b87a;
		    transform: translateY(-3px);
		    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
		}
		
		.cta-btn-secondary {
		    background-color: transparent;
		    color: white;
		    border: 2px solid rgba(255, 255, 255, 0.3);
		}
		
		.cta-btn-secondary:hover {
		    background-color: rgba(255, 255, 255, 0.1);
		    border-color: white;
		    transform: translateY(-3px);
		}
        
        /* 页脚 */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        .footer-col p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
		.footer-col p img{max-height: 100px;		}
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }
        
        .footer-links i {
            margin-right: 10px;
            font-size: 12px;
        }
        
        .footer-contact {
            list-style: none;
        }
        
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(201, 169, 110, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            color: var(--secondary-color);
        }
        
        .contact-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.6;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
		.footer-bottom a{color: rgba(255, 255, 255, 0.5);font-size: 14px;color: rgba(255, 255, 255, 0.5);
		}
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 56px;
            }
            
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .products-grid, .cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .partners-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 992px) {
			.products-showcase{
    padding: 80px 0 60px;
}
            .hero-title {
                font-size: 48px;
            }
            
            .hero-description {
                font-size: 18px;
            }
            
            .cta-form {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
                gap: 40px;
            }
            
            .process-step {
                width: 45%;
            }
            
            .process-steps:before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
			.section-header .section-title {font-size: 30px;}
            .hero-title {
                font-size: 40px;
            }
            .hero-stats {
                    flex-wrap: wrap;
                    gap: 30px;
                    justify-content: center; /* 居中显示 */
                }
                
                .stat-item {
                    flex: 0 0 40%; /* 或者固定宽度，如150px */
                    min-width: 150px; /* 最小宽度防止太窄 */
                    text-align: center;
                }
            .section-title {
                font-size: 36px;
            }
            
            .advantages-grid, .products-grid, .cases-grid {
                grid-template-columns: 1fr;
            }
            
            .preview-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .process-step {
                width: 100%;
            }
            
            .cta-title {
                font-size: 36px;
            }
            
            .cta-text {
                font-size: 18px;
            }
            
 .hero-buttons {
        flex-wrap: nowrap; /* 强制不换行 */
        gap: 15px; /* 适当减小间距 */
        margin-top: 40px;
    }
    
    .hero-btn {
        flex: 1; /* 让两个按钮平分可用宽度 */
        min-width: 0; /* 允许按钮缩小 */
        text-align: center;
        white-space: nowrap; /* 防止文字换行 */
        padding: 12px 10px; /* 适当调整内边距 */
        font-size: 14px; /* 适当减小字体大小 */
    }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 32px;
            }
            
            .hero-description {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .header-contact {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .header-phone {
                font-size: 14px;
            }
        }
