*{
    padding:0;
    margin:0;
}
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:119px;
    height:28px;
    font-size:32px;
    color:#000;
    position: fixed;
    top:50px;
    left:50px;
    font-weight:bold;
    background:url(/static/images/logo.png) no-repeat center;
}
.menu{
    position: fixed;
    top:50px;
    right:50px;
    font-size:40px;
    cursor: pointer;
}
.container{
    width:1200px;
}
.footer{
    color:#000;
    position: fixed;
    top:50%;
    left:-100px;
    transform: rotate(90deg);
    font-size:14px;
    font-family: "微软雅黑";
}


.pagination{
    width:100%;
    margin:20px auto;
}

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


/* menu */
.menuBox{
    width:100%;
    height:100%;
    position: fixed;
    top:0;
    left:0;
    z-index: 99;
    background:rgba(255,255,255,0.9);
    display:none;
    align-items: center;
    justify-content: center;
}
.menuBox.active{
    display:flex;
}
.menuBox span{
    position: fixed;
    top:60px;
    right:50px;
    z-index: 99;
    font-size:40px;
    cursor: pointer;
}
.menuBox li{
    font-size:24px;
    cursor: pointer;
    line-height:50px;
    text-align: center;
}
.menuBox li:hover{
    color:#0023ea;
    font-weight:bold;
}



/* 触摸设备（如手机） */
@media (hover: none) and (pointer: coarse) {
    .logo{
        width:200px;
        height:100px;
        background-size:90% auto;
    }
    .menu{
       font-size:60px;
    }
    .footer{
        top:initial;
        left:0;
        bottom:0;
        transform: rotate(0deg);
        font-size:30px;
        width:100%;
        height:100px;
        display:flex;
        align-items: center;
        justify-content: center;
    }
    .menuBox span{
        position: fixed;
        top:60px;
        right:50px;
        z-index: 99;
        font-size:60px;
        cursor: pointer;
    }
    .menuBox li{
        font-size:60px;
        cursor: pointer;
        line-height:150px;
        text-align: center;
    }
}


