/* 服务页统一样式 */

.service-page {
    padding: 0;
    background: #f5f5f5;
}

/* Banner区域 */
.service-banner {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.service-banner h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-banner .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-banner .contact-btn {
    display: inline-block;
    background: #ff6b6b;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.service-banner .contact-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* 面包屑导航 */
.service-breadcrumb {
    padding: 15px 0;
    background: #fff;
}

.service-breadcrumb ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-breadcrumb li {
    display: inline;
    color: #666;
}

.service-breadcrumb li a {
    color: #333;
    text-decoration: none;
}

.service-breadcrumb li a:hover {
    color: #ff6b6b;
}

/* 内容区域 */
.service-content {
    padding: 40px 0;
}

.service-section {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff6b6b;
    display: inline-block;
}

.service-section h3 {
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
}

.service-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* 问题表现列表 */
.problem-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.problem-list li {
    padding: 15px 20px;
    background: #f8f9fa;
    margin-bottom: 10px;
    border-radius: 5px;
    position: relative;
    padding-left: 40px;
}

.problem-list li:before {
    content: "•";
    color: #ff6b6b;
    font-size: 20px;
    position: absolute;
    left: 15px;
}

/* 服务流程 */
.service-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
}

.flow-item {
    width: 22%;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.flow-item .icon {
    width: 60px;
    height: 60px;
    background: #ff6b6b;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    line-height: 60px;
    font-size: 24px;
    margin-bottom: 15px;
}

.flow-item .step {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.flow-item .title {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* 专家推荐 */
.expert-section {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.expert-list {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
}

.expert-item {
    width: 25%;
    padding: 20px;
    text-align: center;
}

.expert-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.expert-item .name {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 5px;
}

.expert-item .title {
    font-size: 14px;
    color: #999;
}

.expert-item a {
    display: inline-block;
    margin-top: 10px;
    color: #ff6b6b;
    text-decoration: none;
}

/* FAQ部分 */
.faq-section {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.faq-list {
    margin: 20px 0;
}

.faq-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item .question {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
}

.faq-item .question:before {
    content: "Q: ";
    color: #ff6b6b;
    font-weight: 600;
}

.faq-item .answer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.faq-item .answer:before {
    content: "A: ";
    color: #4CAF50;
    font-weight: 600;
}

/* 预约区域 */
.booking-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    border-radius: 8px;
}

.booking-section h2 {
    color: #fff;
    border-bottom: none;
    margin-bottom: 30px;
}

.booking-section .phone {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.booking-section .phone a {
    color: #fff;
    text-decoration: none;
}

.booking-section .time {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.booking-section .btn-group {
    margin-top: 20px;
}

.booking-section .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s;
}

.booking-section .btn-primary {
    background: #fff;
    color: #667eea;
}

.booking-section .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* 相关服务链接 */
.related-services {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
}

.related-links a {
    display: inline-block;
    padding: 10px 20px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    transition: all 0.3s;
}

.related-links a:hover {
    background: #ff6b6b;
    color: #fff;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .service-banner {
        padding: 40px 20px;
    }

    .service-banner h1 {
        font-size: 28px;
    }

    .service-banner .subtitle {
        font-size: 14px;
    }

    .service-section {
        padding: 25px 15px;
    }

    .service-section h2 {
        font-size: 20px;
    }

    .flow-item {
        width: 48%;
    }

    .expert-item {
        width: 50%;
    }

    .booking-section {
        padding: 30px 20px;
    }

    .booking-section .phone {
        font-size: 22px;
    }
}