/* 核心服务页面特有样式 */

/* 页面标题 */
.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
}

.breadcrumb li {
    margin: 0 0.5rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb li:not(:last-child)::after {
    content: ">";
    margin-left: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* 业务分类导航 */
.services-nav {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.services-nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 1rem;
}

.services-nav-item a {
    padding: 1rem 2rem;
    background: #f8f9fa;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.services-nav-item a:hover,
.services-nav-item a.active {
    background: #0066cc;
    color: white;
}

/* 业务网格 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-image {
    height: 300px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 1.5rem;
}

.service-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.service-card-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* 业务详情页样式 */
.service-detail {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.service-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.service-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.service-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-content {
    padding: 3rem;
}

.service-section {
    margin-bottom: 3rem;
}

.service-section h2 {
    font-size: 1.8rem;
    color: #0066cc;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f7ff;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-feature {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.service-feature h4 {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.service-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.service-gallery img:hover {
    transform: scale(1.05);
}

.service-cta {
    background: #f0f7ff;
    padding: 3rem;
    text-align: center;
    border-radius: 10px;
    margin-top: 3rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .services-nav-list {
        flex-direction: column;
        align-items: center;
    }

    .services-nav-item {
        width: 100%;
        text-align: center;
    }

    .services-nav-item a {
        border-radius: 5px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-hero {
        height: 300px;
    }

    .service-hero-content h1 {
        font-size: 2rem;
    }

    .service-content {
        padding: 1.5rem;
    }
}