        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            overflow-x: hidden;
            background-color: #f8f9fa;
            color: #333;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* 导航栏样式 */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #3498db;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .logo span {
            color: #e74c3c;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #3498db;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            color: #333;
        }

        /* 轮播图样式 */
        .slider {
            margin-top: 70px;
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .slides {
            width: 300%;
            height: 100%;
            display: flex;
            transition: transform 0.8s ease;
        }

        .slide {
            width: 33.33%;
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
        }

        .slide-content {
            position: absolute;
            bottom: 80px;
            left: 80px;
            max-width: 500px;
            background-color: rgba(0, 0, 0, 0.6);
            padding: 30px;
            border-radius: 10px;
            color: #fff;
        }

        .slide-content h2 {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .slide-content p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.6;
        }

        .btn {
            display: inline-block;
            background-color: #3498db;
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #2980b9;
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }

        .slider-nav-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .slider-nav-btn.active {
            background-color: #fff;
        }

        /* 服务部分样式 */
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: #333;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: #3498db;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #3498db;
        }

        .service-content p {
            margin-bottom: 20px;
            color: #666;
            line-height: 1.6;
        }

        /* 页脚部分 */
        footer {
            background-color: #2c3e50;
            color: #fff;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: #3498db;
            bottom: 0;
            left: 0;
        }

        .footer-column p {
            line-height: 1.6;
            margin-bottom: 20px;
            color: #bdc3c7;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #3498db;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #34495e;
            border-radius: 50%;
            color: #fff;
            transition: background-color 0.3s;
        }

        .social-links a:hover {
            background-color: #3498db;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 14px;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: #fff;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .hamburger {
                display: block;
            }

            .slide-content {
                left: 40px;
                bottom: 40px;
                max-width: calc(100% - 80px);
            }
        }
		
		
		
		
		
		
		
		
		        /* 成功案例部分样式 */
        .cgal-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .cgal-section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .cgal-section-title h2 {
            font-size: 36px;
            color: #333;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .cgal-section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: #3498db;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .cgal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .cgal-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .cgal-card:hover {
            transform: translateY(-10px);
        }

        .cgal-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .cgal-content {
            padding: 25px;
        }

        .cgal-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #3498db;
        }

        .cgal-content p {
            margin-bottom: 20px;
            color: #666;
            line-height: 1.6;
        }

        .cgal-btn {
            display: inline-block;
            background-color: #3498db;
            color: #fff;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .cgal-btn:hover {
            background-color: #2980b9;
        }

        .cgal-stats {
            margin-top: 50px;
            background-color: #3498db;
            padding: 50px 0;
            color: #fff;
        }

        .cgal-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .cgal-stat-item h3 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .cgal-stat-item p {
            font-size: 18px;
        }

        @media (max-width: 768px) {
            .cgal-section {
                padding: 60px 0;
            }

            .cgal-section-title h2 {
                font-size: 30px;
            }

            .cgal-grid {
                gap: 20px;
            }
        }

        @media (max-width: 576px) {
            .cgal-section {
                padding: 40px 0;
            }

            .cgal-section-title h2 {
                font-size: 24px;
            }

            .cgal-content h3 {
                font-size: 20px;
            }

            .cgal-stats {
                padding: 40px 0;
            }
        }
		
		
		
		
		
		
		/* 联系我们部分样式 */
        .lxwm-section {
            padding: 80px 0;
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
        }

        .lxwm-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .lxwm-info {
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .lxwm-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #3498db;
        }

        .lxwm-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .lxwm-contact-icon {
            width: 50px;
            height: 50px;
            background-color: #3498db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #fff;
            font-size: 20px;
        }

        .lxwm-contact-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .lxwm-contact-text p {
            color: #777;
        }

        .lxwm-form {
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .lxwm-form h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #3498db;
        }

        .lxwm-form-group {
            margin-bottom: 20px;
        }

        .lxwm-form input,
        .lxwm-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .lxwm-form input:focus,
        .lxwm-form textarea:focus {
            border-color: #3498db;
            outline: none;
        }

        .lxwm-form textarea {
            height: 150px;
            resize: vertical;
        }

        .lxwm-form button {
            background-color: #3498db;
            color: #fff;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .lxwm-form button:hover {
            background-color: #2980b9;
        }

        .lxwm-map {
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .lxwm-container {
                grid-template-columns: 1fr;
            }
        }