/* 服务列表样式 */
.hot-services {
    padding: 15px 15px;
    background: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
}

.hot-services h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
}

.hot-services .service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hot-services .service-item {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.hot-services .service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hot-services .service-image {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.hot-services .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-services .service-category {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 1;
}

.hot-services .service-content {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hot-services .service-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.hot-services .service-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hot-services .service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hot-services .service-tags {
    display: flex;
    gap: 8px;
}

.hot-services .service-tag {
    background: #f5f5f5;
    color: #666;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.hot-services .service-price {
    color: #ff4d4f;
    font-size: 16px;
    font-weight: bold;
}

.hot-services .service-price small {
    color: #999;
    font-size: 12px;
    font-weight: normal;
}

.hot-services .btn-more {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background: #f5f5f5;
    color: #666;
    border-radius: 4px;
    font-size: 14px;
}

.hot-services .no-services {
    text-align: center;
    padding: 30px 0;
    color: #999;
}

/* 确保其他版块不受影响 */
.service-category {
    
    background: #fff;
}

.swiper-container {
    margin-top: 0;
} 