﻿/* ==================== 底部导航样式 ==================== */

/* 底部主要容器 */
.bgbottom {
    background: #211f23;
    color: #ccc;
    font-size: 16px;
    min-width: 1280px;
    padding-top: 48px;
}

    /* 底部内容容器 */
    .bgbottom .content {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }

    /* 左侧联系信息 */
    .bgbottom .phone {
        color: #fff;
        font-size: 26px;
        font-weight: 700;
        margin: 36px 0 20px;
    }

        .bgbottom .phone .van-icon-phone-circle-o {
            font-size: 36px;
            margin-right: 10px;
        }

    .bgbottom .botname {
        color: #c6c1c1;
        font-weight: 400;
        margin-top: 15px;
        line-height: 1.6;
    }

    .bgbottom .el-icon-map-location {
        font-size: 22px;
        margin-right: 2px;
        vertical-align: middle;
    }

    /* 右侧站点地图 */
    .bgbottom .sitemap {
        border-left: 1px solid #333037;
        display: flex;
        gap: 80px;
        padding-left: 80px;
    }

        .bgbottom .sitemap .title {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 32px;
            margin-top: 28px;
        }

        .bgbottom .sitemap .item {
            margin-bottom: 12px;
            margin-top: 4px;
        }

    /* 二维码 */
    .bgbottom .qrcode {
        border-radius: 8px;
        margin-bottom: 20px;
        width: fit-content;
    }

        .bgbottom .qrcode img {
            border-radius: 8px;
            height: 100px;
            width: 100px;
        }

/* 底部版权信息 */
.bgbottomtitle {
    border-top: 1px solid #333037;
    color: #666;
    font-weight: 400;
    padding-bottom: 46px;
    padding-top: 46px;
    text-align: center;
    margin-top: 48px;
}

/* 链接样式 */
.bgbottom a {
    color: #c6c1c1;
    transition: all .3s;
    text-decoration: none;
}

    .bgbottom a.footer_right {
        color: #666;
    }

    .bgbottom a.botname {
        display: block;
    }

    /* 链接悬停效果 */
    .bgbottom a:hover {
        color: #fafafa;
        opacity: 1;
        text-decoration-line: underline;
    }

/* 响应式调整（可选） */
@media (max-width: 1366px) {
    .bgbottom {
        min-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

        .bgbottom .content {
            flex-direction: column;
        }

        .bgbottom .sitemap {
            border-left: none;
            padding-left: 0;
            margin-top: 40px;
            gap: 40px;
            flex-wrap: wrap;
        }
}
