  
        .service-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .service-title {
            text-align: center;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 30px;
            color: #222;
        }
        
        .service-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            list-style: none;
        }
        
        .service-item {
            background: #ffffff;
            border-radius: 8px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            user-select: none;
            cursor: pointer;
        }
        
        .service-item:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
            border-color: transparent;
        }
        
        /* 线性图标样式 */
        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            color: #fff;
            font-size: 24px;
        }
        
        .service-name {
            font-size: 20px;
            font-weight: 500;
            color: #222;
            margin-bottom: 8px;
        }
        
        .service-desc {
            font-size: 14px;
            color: #666;
        }
        
        @media (max-width: 992px) {
            .service-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .service-list {
                grid-template-columns: 1fr;
            }
        }
		
		/* 服务门店模块样式 */
.service-store-section {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-store-left {
    flex: 1;
    text-align: center;
}

.service-store-title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.service-store-title::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #960000;
    border-radius: 50%;
}

.service-store-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}

.service-store-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.service-store-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333;
}

.service-store-feature-item svg {
    width: 24px;
    height: 24px;
    stroke: #333;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.service-store-btn {
    padding: 12px 32px;
    border: 1px solid #333;
    border-radius: 24px;
    background: #fff;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-store-btn:hover {
    background: #960000;
    color: #fff;
}

.service-store-right {
    flex: 1;
}

.service-store-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* 响应式适配 */
@media (max-width: 992px) {
    .service-store-section {
        flex-direction: column;
        gap: 30px;
    }
    .service-store-features {
        flex-wrap: wrap;
        gap: 20px;
    }
}