* {
    padding: 0;
    margin: 0;
}

html {
    font-size: 5.20833333vw;
}

@media (max-width: 1030rem) {
    html {
        font-size: 26.66666666vw;
    }
}


body {
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Standard syntax */
}

ul {
    list-style: none;
}

/* header */
.logo {
    width: .2rem;
    height: .1rem;
    font-size: .32rem;
    color: #000;
    position: fixed;
    top: .05rem;
    left: .05rem;
    font-weight: bold;
    background: url(/static/images/logo.png) no-repeat center;
    background-size: contain;
}

.menu {
    position: fixed;
    top: .05rem;
    right: .05rem;
    font-size: .06rem;
    cursor: pointer;
}

.container {
    width: 13rem;
}

.footer {
    color: #000;
    position: fixed;
    bottom: .05rem;
    left: .05rem;
    transform: translateY(-50%);
    font-size: .03rem;
    font-family: "微软雅黑";
}


.pagination {
    width: 100%;
    margin: .2rem auto;
}

.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 3rem;
    z-index: 999;
}


/* menu */
.menuBox {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
}

.menuBox.active {
    display: flex;
}

.menuBox span {
    position: fixed;
    top: .05rem;
    right: .05rem;
    z-index: 99;
    font-size: .1rem;
    cursor: pointer;
    color:#fff;
}

.menuBox ul {
    margin: 0;
    padding: 0;
}

.menuBox li {
    font-size: .06rem;
    cursor: pointer;
    line-height: .12rem;
    text-align: center;
    color:#fff;
}

.menuBox li:hover {
    color: #0023ea;
    font-weight: bold;
}


/* 触摸设备（如手机） */
@media (hover: none) and (pointer: coarse) {
    .logo {
        width: 1rem;
        height: .5rem;
        background-size: 90% auto;
        left:.15rem;
    }

    .menu {
        font-size: .3rem;
        right:.15rem;
    }

    .footer {
        top: initial;
        left: 0;
        bottom: 0;
        transform: rotate(0deg);
        font-size: .12rem;
        width: 100%;
        height: .42rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menuBox span {
        position: fixed;
        top: .15rem;
        right: .15rem;
        z-index: 99;
        font-size: .4rem;
        cursor: pointer;
    }

    .menuBox li {
        font-size: .2rem;
        cursor: pointer;
        line-height: .4rem;
        text-align: center;
    }
}


