/*
 * *Created by PoLeung
 * *Email 30930572@qq.com
 * *Create date 2026-08-01
 * *Copyright LockDataV
 * *Desc data visualization project based on Echarts5.0.
 */
@charset "utf-8";
body {
    background: #ffffff;
    margin: 0;
    height: 100vh;
}

#map {
    height: 100%;
}

/* 右下角悬浮按钮组 */
.float-btn-group {
    position: fixed;
    right: 12px;
    bottom: 48px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-circle-btn {
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    user-select: none;
    font-size: 18px;
}

.btn-upload {
    background-color: #1E9FFF;
}

.btn-upload:hover {
    background-color: #1685d9;
}

.btn-label {
    background-color: #009688;
}

.btn-label.active {
    background-color: #ff5722;
}

.btn-bg {
    background-color: #666666;
}

.btn-bg:hover {
    background-color: #444444;
}

/*底部版权栏样式*/
.footer-copyright {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 36px;
    line-height: 36px;
    background-color: rgba(255, 255, 255, 0.85);
    text-align: center;
    font-size: 13px;
    color: #666;
    z-index: 998;
    border-top: 1px solid #eee;
}

.footer-copyright a {
    color: #0181ff;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.wechat-icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
}

.wechat-icon img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.wechat-qrcode {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.wechat-qrcode img {
    width: 150px;
    height: 150px;
    display: block;
}

.wechat-icon:hover .wechat-qrcode {
    display: block;
}