/* 服务页面样式 */
.service-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/service/01.png');
    background-position: center;
    background-size: cover;
    opacity: 1;
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: none;
}

.services-main-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.services-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 80px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 80px;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-item:hover {
    box-shadow: 0 8px 30px rgba(230,0,18,0.15);
    transform: translateY(-5px);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item.reverse .service-item-image {
    order: 2;
}

.service-item.reverse .service-item-content {
    order: 1;
}

.service-item-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: transform 0.5s ease;
}

.service-item:hover .service-item-image img {
    transform: scale(1.1);
}

.service-item-content {
    flex: 1;
    padding: 50px 60px;
}

.service-item-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 25px 0;
}

.service-item-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.service-item-list li {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    line-height: 24px;
}

.service-item-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #e60012;
}

.service-item-btn {
    display: inline-block;
    padding: 10px 30px;
    background: #fff;
    color: #666;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 80px;
}

.service-item-btn:hover {
    background: #f8f8f8;
    border-color: #999;
    color: #333;
}

/* 响应式 */
@media (max-width: 1024px) {
    .service-item {
        gap: 0;
    }
    
    .service-item-content {
        padding: 40px;
    }
    
    .service-item-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: 150px;
    }
    
    .service-hero h1 {
        font-size: 36px;
    }
    
    .services-main-section {
        padding: 60px 0;
    }
    
    .services-section-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 50px;
        border-radius: 0;
    }
    
    .service-item.reverse .service-item-image {
        order: 0;
    }
    
    .service-item.reverse .service-item-content {
        order: 0;
    }
    
    .service-item-image {
        width: 100%;
        height: 250px;
        min-height: 250px;
    }
    
    .service-item-content {
        padding: 35px 25px;
    }
    
    .service-item-title {
        font-size: 22px;
    }
    
    .service-item-list li {
        font-size: 15px;
    }
}
