     /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            overflow-x: hidden;
        }

        /* 导航栏 */
        nav {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 3px solid #2c3e50;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            margin-right: 15px;
            position: relative;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text h1 {
            font-size: 1.5rem;
            color: #2c3e50;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
            font-weight: bold;
        }

        .logo-text p {
            font-size: 0.8rem;
            color: #7f8c8d;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #3498db;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: #3498db;
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: #2c3e50;
            margin: 5px;
            transition: all 0.3s ease;
        }

        /* 轮播图 */
        .slider-container {
            max-width: 100%;
            margin-top: 110px;
            position: relative;
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 600px;
        }

	.slide {
            flex: 0 0 100%;
            min-width: 100%;
            height: 600px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .slide-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 20px;
            z-index: 10;
        }

        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            line-height: 1.6;
        }

        .slide-btn {
            background-color: #3498db;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .slide-btn:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 100;
        }

        .slider-dot {
            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 ease;
        }

        .slider-dot.active {
            background-color: white;
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 100;
        }

        .arrow {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .arrow:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }

        /* 服务部分 */
        .services {
            padding: 80px 20px;
            background-color: #f9f9f9;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: #3498db;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: #7f8c8d;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .service-content p {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-btn {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .service-btn:hover {
            background-color: #2980b9;
        }

        /* 关于我们 */
        .about {
            padding: 80px 20px;
            background-color: white;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .about-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .about-box:hover {
            transform: translateY(-5px);
        }

        .about-box h3 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }

        .about-box h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: #3498db;
            bottom: 0;
            left: 0;
        }

        .about-box p {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .about-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: bold;
            color: #3498db;
            margin-bottom: 5px;
        }

        .stat-text {
            color: #7f8c8d;
        }

        /* 最新作品 */
        .portfolio {
            padding: 80px 20px;
            background-color: #f9f9f9;
        }

        .portfolio-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .portfolio-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }

        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }

        .portfolio-overlay h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .portfolio-overlay p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* 客户评价 */
        .testimonials {
            padding: 80px 20px;
            background-color: #2c3e50;
            color: white;
        }

        .testimonials .section-title h2 {
            color: white;
        }

        .testimonials .section-title p {
            color: #bdc3c7;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 3rem;
            opacity: 0.2;
        }

        .testimonial-content {
            margin-bottom: 20px;
            line-height: 1.6;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }

        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 3px;
        }

        .author-info p {
            color: #bdc3c7;
            font-size: 0.9rem;
        }

        /* 页脚 */
        footer {
            background-color: #1a252f;
            color: white;
            padding: 60px 20px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            border: 2px solid white;
        }

        .footer-logo h2 {
            font-size: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .footer-about p {
            color: #bdc3c7;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .social-links a:hover {
            background-color: #3498db;
        }

        .footer-links h3,
        .footer-contact h3,
        .footer-newsletter h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after,
        .footer-contact h3::after,
        .footer-newsletter h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: #3498db;
            bottom: 0;
            left: 0;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #3498db;
        }

        .footer-contact p {
            color: #bdc3c7;
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .footer-contact i {
            margin-right: 10px;
            color: #3498db;
        }

        .newsletter-form {
            display: flex;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
            outline: none;
        }

        .newsletter-form button {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 0 15px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .newsletter-form button:hover {
            background-color: #2980b9;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #bdc3c7;
            font-size: 0.9rem;
        }

        /* 响应式设计 */
        @media screen and (max-width: 992px) {
            .about-container {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 70px;
                background-color: rgba(255, 255, 255, 0.95);
                flex-direction: column;
                width: 100%;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
            }
            
            .nav-links.active {
                transform: translateX(0%);
            }
            
            .nav-links li {
                margin: 0;
                text-align: center;
                padding: 15px 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .hamburger {
                display: block;
            }
            
            .hamburger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .hamburger.active .line2 {
                opacity: 0;
            }
            
            .hamburger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .slide-content h2 {
                font-size: 2rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .slider-container {
                margin-top: 130px;
            }
        }

        @media screen and (max-width: 576px) {
            .logo {
                width: 60px;
                height: 60px;
            }
            
            .logo-text h1 {
                font-size: 1.2rem;
            }
            
            .logo-text p {
                display: none;
            }
            
            .slide-content h2 {
                font-size: 1.5rem;
            }
        }
		
		
		
		/* 服务部分 */
        .services {
            padding: 80px 20px;
            background-color: #f9f9f9;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: #3498db;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: #7f8c8d;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding: 30px;
            text-align: center;
            position: relative;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2ecc71);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-content {
            z-index: 1;
            position: relative;
        }

        .service-content h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .service-content h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: #3498db;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
        }

        .service-content p {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-btn {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s ease;
            font-size: 0.9rem;
        }

        .service-btn:hover {
            background-color: #2980b9;
        }

        .service-features {
            margin-top: 20px;
            text-align: left;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .feature-icon {
            color: #3498db;
            margin-right: 10px;
        }

        .service-card-dark {
            background-color: #2c3e50;
            color: white;
        }

        .service-card-dark::before {
            background: linear-gradient(to right, #e74c3c, #9b59b6);
        }

        .service-card-dark .service-icon,
        .service-card-dark .feature-icon {
            color: #3498db;
        }

        .service-card-dark .service-content h3::after {
            background-color: #3498db;
        }

        .service-card-dark .service-btn {
            background-color: #3498db;
        }

        .service-card-dark .service-btn:hover {
            background-color: #2980b9;
        }

        .service-card-dark p {
            color: #bdc3c7;
        }

        /* 响应式设计 */
        @media screen and (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
		
		
	/* 关于我们部分 */
        .gywm-about {
            padding: 80px 20px;
            background-color: white;
        }

        .gywm-section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .gywm-section-title h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .gywm-section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: #3498db;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .gywm-section-title p {
            color: #7f8c8d;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .gywm-about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .gywm-about-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .gywm-about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .gywm-about-icon {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 20px;
        }

        .gywm-about-card h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .gywm-about-card p {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .gywm-about-card.featured {
            background-color: #f8f9fa;
            border-left: 4px solid #3498db;
        }

        .gywm-about-card.featured .gywm-about-icon {
            color: #e74c3c;
        }

        .gywm-about-card.featured h3 {
            color: #2c3e50;
        }

        .gywm-about-card.featured p {
            color: #2c3e50;
        }

        .gywm-about-stats {
            background-color: #2c3e50;
            color: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
        }

        .gywm-about-stats h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .gywm-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
        }

        .gywm-stat-item {
            padding: 20px;
        }

        .gywm-stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #3498db;
            margin-bottom: 5px;
        }

        .gywm-stat-text {
            color: #bdc3c7;
            font-size: 0.9rem;
        }

        .gywm-about-team {
            margin-top: 40px;
        }

        .gywm-team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .gywm-team-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .gywm-team-member {
            text-align: center;
        }

        .gywm-member-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .gywm-team-member:hover .gywm-member-img {
            transform: scale(1.05);
        }

        .gywm-team-member h4 {
            font-size: 1.1rem;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .gywm-team-member p {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        /* 响应式设计 */
        @media screen and (max-width: 768px) {
            .gywm-about-container {
                grid-template-columns: 1fr;
            }
            
            .gywm-team-row {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
        }
		
		
		        /* 成功案例部分 */
        .cgal-cases {
            padding: 80px 20px;
            background-color: #f9f9f9;
        }

        .cgal-section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .cgal-section-title h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .cgal-section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: #3498db;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .cgal-section-title p {
            color: #7f8c8d;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .cgal-cases-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .cgal-cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .cgal-case-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cgal-case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .cgal-case-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .cgal-case-content {
            padding: 25px;
        }

        .cgal-case-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .cgal-case-industry {
            background-color: #e3f2fd;
            color: #3498db;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
        }

        .cgal-case-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .cgal-case-desc {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .cgal-case-results {
            margin-top: 20px;
        }

        .cgal-result-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }

        .cgal-result-icon {
            color: #2ecc71;
            margin-right: 10px;
        }

        .cgal-case-btn {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
            margin-top: 15px;
        }

        .cgal-case-btn:hover {
            background-color: #2980b9;
        }

        .cgal-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .cgal-tab-btn {
            background: none;
            border: none;
            padding: 10px 20px;
            margin: 0 5px 10px;
            cursor: pointer;
            font-size: 1rem;
            color: #7f8c8d;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .cgal-tab-btn.active {
            background-color: #3498db;
            color: white;
        }

        .cgal-tab-btn:hover:not(.active) {
            background-color: #f1f1f1;
        }

        /* 响应式设计 */
        @media screen and (max-width: 768px) {
            .cgal-cases-grid {
                grid-template-columns: 1fr;
            }
        }
