/* ==================== 版权区域 ==================== */
.banQuan {
    background: #f5f5f5;
    border-top: 2px solid #0771ba;
    margin-top: 35px;
}

.banQuan * {
    font-size: 16px;
}

/* ---------- 版权链接导航 ---------- */
.banQuanLink {
    margin: 35px 0px;
}

.banQuanLink ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 999;
    background: #f8f8f8;
}

.banQuanLink li {
    position: static;
}

.banQuanLink a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
    padding: 4px 8px;
    display: inline-block;
}

.banQuanLink a:hover {
    color: #0771ba;
}

/* 点击选中高亮样式 */
.banQuanLink a.active {
    background: #0771ba;
    color: #fff;
    border-radius: 4px;
}

/* ---------- 全屏向上弹出菜单 ---------- */
.banQuanLinkMengSon,
.banQuanLinkQiSon {
    display: none;
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    z-index: 9999;
    border: 1px solid #eee;
}

/* 4列布局 */
.banQuanLinkMengSon ul,
.banQuanLinkQiSon ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 20px;
}

.banQuanLinkMengSon ul li a,
.banQuanLinkQiSon ul li a {
    text-align: center;
    padding: 8px;
    background: #f5f5f5;
    border-radius: 4px;
}

.banQuanLinkMengSon ul li a:hover,
.banQuanLinkQiSon ul li a:hover {
    background: #0771ba;
    color: #fff;
}

.show {
    display: block !important;
}

/* ---------- 底部容器 ---------- */
.banQuanTxt {
    width: 100%;
    background: #f5f5f5;
    padding: 15px 0;
    font-size: 14px;
    color: #666;
}

/* 布局父容器 */
.banQuanTxt>ul {
    margin: 0 auto;
    display: flex;
    align-items: center;
}

/* 左侧：27.5% + 靠左 */
.banQuanTxtLeft {
    width: 30%;
    display: flex;
    justify-content: flex-start;
    padding: 0px;
}

.banQuanTxtLeft ul {
    display: flex;
    gap: 10px;
}

.banQuanTxtLeft img {
    height: 50px;
    display: block;
}

/* 中间：45% + 居中 + 竖线 */
.banQuanTxtCenter {
    width: 40%;
    text-align: center;
    padding: 0;
    position: relative;
}

.banQuanTxtCenter::before {
    content: "";
    width: 1px;
    height: 40px;
    background: #ccc;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.banQuanTxtCenter ul {
    line-height: 1.8;
}

.banQuanTxtCenter img {
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

/* 右侧：27.5% + 靠右 + 竖线 */
.banQuanTxtRight {
    width: 30%;
    text-align: right;
    padding: 0;
    position: relative;
    line-height: 1.8;
}

.banQuanTxtRight::before {
    content: "";
    width: 1px;
    height: 40px;
    background: #ccc;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.banQuanTxtRight ul:first-child {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.banQuanTxtRight a {
    color: #666;
    text-decoration: none;
}

.banQuanTxtRight a:hover {
    color: #0066cc;
}

/* ---------- 地图删除提示 ---------- */
.mapDel {
    width: 100%;
    background: #e8e8e8;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #333333;
    font-size: 16px;
}

.pc-mode-btn {
    display: none;
}
.sep {
        margin: 0px 10px;
    }

/* ==================== 响应式 ==================== */
@media (min-width: 320px) and (max-width: 767px) {
    .pc-mode-btn {
        color: #0771ba;
        font-size: 16px;
        text-align: center;
        width: 100%;
        display: inline-block;
    }

    /* 桌面端：显示为两个空格 */
    .banQuanTxt .sep {
        display: inline;
        white-space: pre;
    }

    .banQuanTxt .sep::after {
        content: "\00a0\00a0";
        /* 两个 &nbsp; */
    }

    /* 手机端：强制折行 */
    @media screen and (max-width: 767px) {
        .banQuanTxt .sep {
            display: block;
            height: 0;
        }

        .banQuanTxt .sep::after {
            content: none;
        }
    }

    .banQuanTxtCenter::before {
        width: 0px;
    }

    .banQuanTxt>ul {
        flex-wrap: wrap;
    }

    .banQuanLink {
        display: none;
    }

    .banQuanTxtLeft,
    .banQuanTxt,
    .banQuanTxtCenter {
        width: 100%;
        border: 0px;
    }

    .banQuanTxtLeft img {
        height: 30px;
    }

    .banQuanTxtLeft ul {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .banQuanTxtRight {
        display: none;
    }

    .banQuanTxtLeft::after,
    .banQuanTxtCenter::after {
        width: 0px;
    }

    .banQuanTxt li {
        text-align: center;
        margin-top: 10px;
    }

    .mapDel {
        height: 140px;
        line-height: 30px;
        padding-top: 15px;
    }

    .mapDel span {
        width: 92%;
        display: block;
        margin: 0 auto;
    }
    .piaoChuang{
        display: none;
    }
}

/* 飘窗开始 */

.piaoChuang {
    position: fixed;
    right: 20px;
    top: 50%;
    z-index: 9999;
}

.piaoChuang ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.piaoChuang li {
    width: 60px;
    height: 60px;
    background-color: #0771ba;
    margin-bottom: 8px;
    position: relative;
    cursor: pointer;
    overflow: visible;
    border-radius: 100%;
}

.piaoChuang li:first-child {
    width: 90px;
    height: 60px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    box-sizing: border-box;
    gap: 4px;
    margin-bottom: 43px;
}

.piaoChuang li:first-child span {
    position: static;
    width: auto;
    height: auto;
    text-align: center;
}

.piaoChuang li:not(:first-child) .icon-normal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.piaoChuang li:nth-child(2) .icon-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
}

.piaoChuang li:nth-child(2):hover .icon-hover {
    opacity: 1;
}

.piaoChuang li:nth-child(n+3) .icon-hover {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(-100% - 65px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    font-size: 14px;
    background: transparent;
    padding: 0;
}

.piaoChuang li:nth-child(n+3):hover .icon-hover {
    left: calc(-100% - 70px);
    opacity: 1;
}

.go-top {
    display: none;
}

.piaoChuang li img {
    max-width: 100%;
    max-height: 100%;
}

.top-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.go-top:hover .top-text {
    opacity: 1;
}

.aiBtn span:last-child {
    color: #333;
    font-size: 12px;
}

/* 飘窗结束 */