  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .gallery-container {
            width: 100%;
            background-color: white;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e6ed;
            margin: 20px auto;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .header {
            text-align: center;
            padding: 30px 0;
            margin-bottom: 10px;
        }
        
        .header h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .header p {
            color: #7f8c8d;
            font-size: 1.1rem;
        }
        
       .gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px;
    }
    
    /* 设置每个项目宽度为20%（100%/5） */
    .gallery-item {
        width: calc(20% - 15px); /* 减去间隙宽度 */
        box-sizing: border-box;
        margin-bottom: 20px;
    }
    
    /* 调整图片容器高度 */
    .image-container {
        width: 100%;
        height: 160px; /* 从220px减小到160px */
        overflow: hidden;
        position: relative;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 6px;
        transition: transform 0.3s ease;
    }
    
    /* 添加悬停放大效果 */
    .image-container:hover {
        transform: scale(1.03);
    }
    
    .image-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.1);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }
    
    .gallery-item:hover .image-container::before {
        opacity: 1;
    }
    
    .image-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .image-placeholder-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    /* 标题样式 */
    .caption {
        margin-top: 10px;
        font-size: 14px;
        text-align: center;
        color: #333;
        padding: 0 5px;
        line-height: 1.4;
        height: 40px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

        
        .gallery-item:hover .caption {
            background-color: #f8f9fa;
        }
        
        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #e0e6ed, transparent);
            margin: 30px 15px;
        }
        
        .repair-header {
            background: linear-gradient(135deg, #1a6dcc, #0d4a9e);
            color: white;
            padding: 25px 30px;
            text-align: center;
        }
        
        .repair-header h1 {
            font-size: 28px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .repair-header p {
            opacity: 0.85;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .repair-content {
            width: 100%;
            display: flex;
            padding: 30px;
            gap: 30px;
        }
        
        /* 左侧内容样式 */
        .repair-main-content {
            width: 70%;
        }
        
        .repair-project-header {
            display: flex;
            margin-bottom: 30px;
            background: #fff;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .repair-project-image {
            width: 234px;
            height: 220px;
            flex-shrink: 0;
            background: linear-gradient(45deg, #C8A21D, #2c3e50);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .repair-project-intro {
            padding: 20px;
            flex: 1;
            max-height: 220px;
            overflow-y: auto;
        }
        
        .repair-project-intro h2 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 22px;
            border-bottom: 2px solid #C8A21D;
            padding-bottom: 8px;
        }
        
        .repair-project-intro p {
            color: #555;
            font-size: 15px;
            line-height: 1.7;
        }
        
        .repair-project-detail {
            background: white;
            padding: 25px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            border-radius: 8px;
        }
        
        .repair-project-detail h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e6ed;
            font-size: 20px;
        }
        
        .repair-project-detail p {
            margin-bottom: 15px;
            color: #444;
            line-height: 1.8;
        }
        
        .repair-detail-list {
            margin: 20px 0;
            padding-left: 20px;
        }
        
        .repair-detail-list li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
        }
        
        .repair-detail-list li:before {
            content: "•";
            color: #C8A21D;
            font-size: 20px;
            position: absolute;
            left: 0;
            top: -2px;
        }
        
          
        /* 右侧侧边栏样式 */
        .repair-sidebar {
            width: 30%;
            flex-shrink: 0;
        }
        
        .repair-card {
            background: white;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .repair-appointment {
            padding: 20px;
        }
        
        .repair-appointment h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
        }
        
        .repair-appointment h3 i {
            color: #C8A21D;
            font-size: 20px;
        }
        
        .repair-contact-box {
            background: #f0f7ff;
            border: 1px solid #cce5ff;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-radius: 6px;
        }
        
        .repair-phone-icon {
            background: #C8A21D;
            color: white;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            border-radius: 50%;
        }
        
        .repair-phone-info h4 {
            color: #2c3e50;
            margin-bottom: 5px;
            font-size: 16px;
        }
        
        .repair-phone-number {
            font-size: 22px;
            color: #C8A21D;
            font-weight: 700;
        }
        
        .repair-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #e0e6ed, transparent);
            margin: 20px 0;
        }
        
        .repair-section-title {
            padding: 20px 20px 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #2c3e50;
            font-size: 18px;
        }
        
        .repair-section-title i {
            color: #C8A21D;
        }
        
        /* 修改后的服务项样式 - 垂直布局 */
        .repair-service-item {
            display: flex;
            flex-direction: column;
            padding: 0 0 20px;
            align-items: center;
            transition: all 0.3s;
            max-height: 380px;
            overflow: hidden;
            margin: 0 15px 15px;
            border: 1px solid #eee;
            border-radius: 8px;
            background: white;
        }
        
        .repair-service-img {
            width: 100%;
            height: 200px;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .repair-service-title {
            color: #2c3e50;
            font-size: 18px;
            margin: 15px 0;
            text-align: center;
            padding: 0 15px;
            font-weight: 600;
        }
        
        .repair-action-btn {
            background: #C8A21D;
            color: white;
            border: none;
            padding: 10px 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }
        
        .repair-action-btn:hover {
            background: #b08e1a;
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(52, 152, 219, 0.3);
        }
        
        .repair-consult-section, 
        .repair-outlet-section {
            padding: 0 15px 15px;
        }
        
        .repair-service-grid {
            display: grid;
            gap: 20px;
            margin-top: 10px;
        }

        .react-content {
            width: 100%;
            display: flex;
            padding: 30px;
            gap: 30px;
        }
        
        /* 左侧内容样式 */
        .react-main-content {
            width: 70%;
        }
        
        .react-section-title {
            padding: 0 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #2c3e50;
            font-size: 20px;
            border-bottom: 2px solid #006039;
            margin-bottom: 20px;
        }
        
        .react-section-title i {
            color: #006039;
        }
        
        .react-news-container {
            margin-bottom: 30px;
        }
        
        .react-news-item {
            display: flex;
            padding: 20px;
            margin-bottom: 20px;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
            position: relative;
            min-height: 137px;
            border-radius: 8px;
        }
        
        .react-news-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        
        .react-news-image {
            width: 124px;
            height: 126px;
            flex-shrink: 0;
            /*background: linear-gradient(45deg, #006039, #2c3e50);*/
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-right: 20px;
            border-radius: 6px;
        }
        
        .react-news-image img {
            width: 124px;
            height: 126px;
        }
        
        .react-news-content {
            flex: 1;
            padding-right: 20px;
        }
        
        .react-news-title {
            color: #2c3e50;
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .react-news-title:hover {
            color: #1a6dcc;
            cursor: pointer;
        }
        
        .react-news-desc {
            color: #555;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .react-news-date {
            position: absolute;
            right: 20px;
            bottom: 15px;
            color: #7f8c8d;
            font-size: 13px;
            font-style: italic;
        }
        
        .react-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
            padding: 15px 0;
            border-top: 1px solid #eee;
        }
        
        .react-pagination button {
            background: #006039;
            color: white;
            border: none;
            padding: 8px 15px;
            margin: 0 5px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
            border-radius: 4px;
        }
        
        .react-pagination button:hover:not(:disabled) {
            background: #2980b9;
        }
        
        .react-pagination button:disabled {
            background: #bdc3c7;
            cursor: not-allowed;
        }
        
        .react-page-numbers {
            display: flex;
            margin: 0 10px;
        }
        
        .react-page-number {
            padding: 8px 15px;
            margin: 0 3px;
            background: #f1f1f1;
            cursor: pointer;
            transition: all 0.2s;
            border-radius: 4px;
        }
        
        .react-page-number:hover,
        .react-page-number.active {
            background: #006039;
            color: white;
        }
        
        
        
        .brand-intro-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .brand-intro-subtitle {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            text-align: center;
        }
        
        .brand-intro-card {
            width: 100%;
            height: auto;
            background: #fff;
            margin-bottom: 30px;
            display: flex;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            overflow: hidden;
            position: relative;
            border-radius: 8px;
        }
        
        .brand-intro-image {
            width: 40%;
            height: 362px;
            position: relative;
            align-self: center;
            margin: 30px;
            /*background: #f0f0f0;*/
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .brand-image-placeholder {
            font-size: 16px;
            color: #999;
            text-align: center;
            padding: 20px;
        }
        
        .brand-intro-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 30px;
        }
        
        .brand-intro-content h2 {
            font-size: 32px;
            font-weight: 400;
            margin-bottom: 25px;
            letter-spacing: 1px;
            color: #2c3e50;
        }
        
        .brand-intro-content p {
            font-size: 18px;
            line-height: 1.8;
            color: #444;
            max-width: 550px;
        }
        
        .brand-intro-card.reverse .brand-intro-image {
            order: 2;
        }
        
        .brand-intro-card.reverse .brand-intro-content {
            order: 1;
        }
        
        .brand-intro-divider {
            width: 100%;
            height: 1px;
            background: #eee;
            margin: 40px 0;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .gallery-container {
                width: 100%;
                max-width: 100%;
            }
            
            .gallery {
                gap: 15px;
            }
            
            .gallery-item {
                width: calc(33.333% - 15px);
            }
            
            .brand-intro-image {
                margin: 20px;
            }
            
            .brand-intro-content {
                padding: 0 20px;
            }
        }
        
        @media (max-width: 992px) {
            .gallery-item {
                width: calc(50% - 15px);
            }
            
            .repair-content,
            .react-content {
                flex-direction: column;
            }
            
            .repair-sidebar,
            .react-sidebar {
                width: 100%;
            }
            
            .repair-project-header {
                flex-direction: column;
            }
            
            .repair-project-image {
                width: 100%;
                height: 300px;
            }
            
            .brand-intro-card {
                flex-direction: column;
            }
            
            .brand-intro-image {
                width: 90%;
                height: 300px;
                margin: 20px auto;
            }
            
            .brand-intro-content {
                padding: 30px;
            }
            
            .reverse .brand-intro-image {
                order: 1;
            }
            
            .reverse .brand-intro-content {
                order: 2;
            }
        }
        
        @media (max-width: 768px) {
            .gallery-item {
                width: 100%;
                max-width: 400px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .header p {
                font-size: 1rem;
            }
            
            .repair-header h1 {
                font-size: 24px;
            }
            
            .brand-intro-content h2 {
                font-size: 26px;
            }
            
            .brand-intro-content p {
                font-size: 16px;
            }
            
            .react-news-item {
                flex-direction: column;
            }
            
            .react-news-image {
                width: 100%;
                height: 200px;
                margin-right: 0;
                margin-bottom: 15px;
            }
            .repair-main-content, .react-main-content {
                width: 100%;
            }
            
        }
        
        @media (max-width: 480px) {
            .header {
                padding: 20px 0;
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
            
            .gallery {
                padding: 10px;
            }
            
            .repair-content,
            .react-content {
                padding: 15px;
            }
            
            .repair-project-intro h2 {
                font-size: 20px;
            }
            
            .brand-intro-content h2 {
                font-size: 22px;
                margin-bottom: 15px;
            }
            
            .brand-intro-content p {
                font-size: 15px;
            }
            
            .react-phone-number {
                font-size: 18px;
            }
        }