/* 服务页样式 */

.service-card {
    border: none;
    background: #fff;
    transition: all 0.3s;
    margin-bottom: 30px;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 30px;
}

.service-card .card-title {
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--theme-color);
    margin-bottom: 20px;
    background: #333;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
}

/* 服务详情页 */
.service-detail-hero {
    background-color: var(--dark-bg);
    padding: 100px 0;
    color: white;
    text-align: center;
}

.service-content-area {
    padding: 60px 0;
}

.sidebar-box {
    background: #f8f9fa;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.sidebar-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--theme-color);
    padding-bottom: 10px;
    display: inline-block;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
}

.sidebar-nav ul li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-weight: 500;
}

.sidebar-nav ul li a:hover {
    color: var(--theme-color);
    padding-left: 5px;
}
