﻿.section_container {
    padding: 40px 0 80px !important;
    margin-top: 80px;
}
/* 3. 面包屑导航（与公司简介页面样式统一） */
.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #F5F7FA;
}

    .breadcrumb a {
        color: #666;
    }

        .breadcrumb a:hover {
            color: #1E88E5;
        }

    .breadcrumb span {
        color: #999;
        margin: 0 8px;
    }

/* 4. 核心内容区（分块布局，与公司简介风格统一） */
.contact-main {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    padding: 10px;
}
/* 标题样式（统一字体/颜色/间距） */
.contact-title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F0F7FF;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 40px 0 25px;
    padding-left: 10px;
    border-left: 4px solid #1E88E5;
}

.section-subtitle {
    font-size: 14px;
    color: #666;
    margin: -20px 0 25px;
    line-height: 1.6;
}

/* 总部信息模块（图文分块） */
.headquarters {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.headquarters-img {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    background: #F9FAFB;
}

    .headquarters-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.headquarters-info {
    flex: 1;
    min-width: 300px;
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

    .company-name::before {
        content: "|";
        color: #1E88E5;
        font-size: 24px;
        margin-right: 10px;
    }

.branch-title {
    font-size: 16px;
    color: #1E88E5;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-list {
    list-style: none;
    margin-bottom: 20px;
}

    .contact-list li {
        font-size: 15px;
        color: #666;
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
    }

        .contact-list li::before {
            content: "•";
            color: #1E88E5;
            margin-right: 10px;
            margin-top: 6px;
        }

.hotline {
    font-size: 36px;
    color: #1E88E5;
    font-weight: bold;
    margin-top: 10px;
}

/* 服务咨询模块（横向分块） */
.service-contact {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.service-item {
    flex: 1;
    min-width: 250px;
    background: #F8FBFF;
    border: 1px solid #E6EFFE;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

    .service-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(30, 136, 229, 0.1);
        border-color: #B3D4FF;
    }

.service-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.service-phone {
    font-size: 28px;
    color: #1E88E5;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.service-desc {
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.sales-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.sales-item {
    min-width: 180px;
}

.sales-name {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}

.sales-phone {
    font-size: 14px;
    color: #666;
}

/* 合作伙伴模块（二维码分块） */
.partner-qrcode {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: #F9FAFB;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .qrcode-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.qrcode-desc {
    font-size: 14px;
    color: #666;
}
/* 移动端适配（与公司简介页面逻辑统一） */
@media (max-width: 992px) {
    .container {
        width: 100%;
    }

    .contact-main {
        padding: 25px;
    }

    .headquarters {
        flex-direction: column;
    }

    .service-contact {
        flex-direction: column;
    }

    .footer-content {
        width: 100%;
        flex-direction: column;
    }

    .footer-nav {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 18px;
    }

    .hotline {
        font-size: 28px;
    }

    .service-phone {
        font-size: 24px;
    }

    .partner-qrcode {
        gap: 20px;
    }

    .qrcode-img {
        width: 100px;
        height: 100px;
    }
}