
html, body {
    width: 100%;
    height: 100%;
}

body {
    display: -webkit-flex;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
}

.footer {
    width: 100%;
}

    .footer button {
        width: 50%;
        height: 40px;
        float: left;
        color: white;
        background: #dddddd;
        border: none;
        font-size: 18px;
        font-weight: 900;
    }

    .footer .on {
        background: #169BD5;
    }


.head {
    border-bottom: 1px solid #4a80fc;
    /*background-color: rgba(80, 123, 251, 0.25);*/
    background-image: radial-gradient(circle at left top,#3596ff,rgb(148, 54, 242));
    padding: 1px 1px;
    text-align: center;
    height: 26px;
    font-size: 1.2em;
    color: #fff;
}

    .head a, .head a:visited {
        color: #fff;
        text-decoration: none;
    }

.headPage {
    border-bottom: 1px solid #4a80fc;
    background-color: #31708f;
    padding: 1px 1px;
    text-align: center;
    height: 26px;
    font-size: 1.2em;
    color: #fff;
}

.navPop {
    background: #fdfdfd;
    -moz-box-shadow: 0px 2px 5px #ccc;
    -webkit-box-shadow: 0px 2px 5px #ccc;
    box-shadow: 0px 2px 5px #ccc;
    border-bottom: 1px solid #ddd;
    -webkit-box-sizing: border-box;
    position: absolute;
    top: 37px;
    width: 100%;
    z-index: 99;
    padding-top: 8px;
    display: none;
}

.navBox {
    padding: 0 8px;
    margin-bottom: 12px;
}

.navPop div h2 {
    display: -webkit-box;
    -webkit-box-pack: justify;
    font-size: 20px;
    color: #000;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}

.navPop {
    width: 100px;
    right: 0;
    padding: 0;
}

    .navPop:before {
        content: "";
        display: inline-block;
        position: absolute;
        z-index: 240;
        top: -15px;
        right: 13px;
        width: 0;
        height: 0;
        border: 1px solid red;
        border-color: transparent transparent #fefefe transparent;
    }

    .navPop ul {
        list-style-type: none;
        text-align: center;
        padding: 0;
        width: auto;
    }

        .navPop ul li a {
            display: inline-block;
            height: 30px;
            line-height: 30px;
            width: 100%;
            border-top: solid 1px #eee;
            font-size: 1em;
        }

        .navPop ul li:first-child a {
            border-style: none;
        }

a.togglemore {
    overflow: hidden;
    display: inline-block;
    margin-top: 5px;
    margin-right: 5px;
    height: 10px;
    width: 20px;
    padding: 2px 0px;
    border-top: 2px solid #eaeaea;
    border-bottom: 2px solid #eaeaea;
    background-color: #eaeaea;
    background-clip: content-box;
    text-indent: 100%;
    white-space: nowrap;
}

.infoTb {
    font-size: 14px;
    border-style: none;
    white-space: nowrap;
}

    .infoTb th {
        font-weight: 600;
        text-align: right;
    }

    .infoTb td {
        white-space: nowrap;
    }

#content {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
}


#allmap label {
    max-width: none;
}

.link-container {
    display: grid;
    background-color: lightseagreen;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    width: 100%;
    bottom: 10px;
    font-size: 20px;
    color: white;
    /* 固定在屏幕底部 */
    position: fixed;
    bottom: 0px;
    left: 50%;
    /* 将元素向左移动自身宽度的一半，实现水平居中 */
    transform: translateX(-50%);
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

    .link-container a {
        text-decoration: none;
        text-align: center;
        color: white;
    }
/* 圆角按钮样式 */
.rounded-button {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    transition: background-color 0.3s;
}

    .rounded-button:hover {
        background-color: #0056b3;
    }