/* 服务详情页样式 */


/* Banner区域 - 灰色背景 */
.service-detail-banner {
    background: #C8C8C8;
    padding: 16rem 0;
    min-height: 400px;
}

/* 面包屑导航 */
.breadcrumb-section {
    background: #F3F3F3;
    padding: 1rem 0 0 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    padding-bottom: 1rem;
}

.breadcrumb-item {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: #E86F00;
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-current {
    color: #333;
}

.breadcrumb-divider {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
}

/* 主要内容区域 */
.service-detail-content {
    padding: 3rem 0;
    background: white;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

/* 左侧内容区 */
.content-main {
    background: white;
}

/* 标题样式 */
.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
line-height: 1.5;
    margin: 0 0 30px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #333;
    display: inline-block;
}

.content-main {
    text-align: center;
}

.content-main > p,
.content-main > img,
.content-main > div {
    text-align: left;
} 

/* 第一个p - 高亮标签（包含span） */
.content-main > p:nth-of-type(1) {
    margin-bottom: 25px;
}

.content-main > p:nth-of-type(1) span {
    display: inline-block;
    padding: 4px 12px;
    background: #FFA500;
    color: white;
    font-size: 14px;
    border-radius: 3px;
    margin-right: 10px;
}

/* 第二、三个p - 描述文本 */
.content-main > p:nth-of-type(2),
.content-main > p:nth-of-type(3) {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.content-main > p:nth-of-type(3) {
    margin-bottom: 20px;
}

/* 第四、五、六个p - 编号列表 */
.content-main > p:nth-of-type(4),
.content-main > p:nth-of-type(5),
.content-main > p:nth-of-type(6) {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.8;
}

.content-main > p:nth-of-type(6) {
    margin-bottom: 30px;
}

/* 第七个p - 流程描述 */
.content-main > p:nth-of-type(7) {
    color: #666;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 40px;
}

/* 图片 */
.content-main > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 50px;
}

/* h3标题 - 概述标题 */
.content-main > h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    background-color: #f5f5f5;
    padding: 30px 30px 10px;
    border-radius: 5px 5px 0 0;
}

/* h3后面的p标签 - 概述内容 */
.content-main > h3 ~ p {
    line-height: 1.8;
    color: #666;
    text-align: justify;
    margin-bottom: 15px;
    background-color: #f5f5f5;
    padding: 0 30px;
}

/* 最后一个p标签 */
.content-main > p:last-of-type {
    padding-bottom: 30px;
    border-radius: 0 0 5px 5px;
}

/* 概述部分样式 */
.overview-section h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    margin: 0 0 30px 0;
    padding: 0;
    background: none;
}

.overview-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: justify;
    margin-bottom: 15px;
}

/* 保留旧的类选择器以兼容其他可能的用法 */
.features-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.8;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E86F00;
    font-weight: 700;
}

/* 右侧联系卡片 */
.content-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.contact-card {
    background: #F5F5F5;
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.contact-card-desc {
    font-size: 0.8125rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.contact-phone {
    background: white;
    padding: 1.25rem 1rem;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 1rem;
}

.phone-label {
    font-size: 0.8125rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.phone-note {
    font-size: 0.75rem;
    color: #999;
}

.contact-button {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: white;
    font-size: 0.9375rem;
    font-weight: 500;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FF7F00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .service-detail-title {
        font-size: 1.5rem;
    }
    
    .service-highlight {
        flex-wrap: wrap;
    }
    
    .contact-phone {
        padding: 1rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
}
