@font-face {
    font-family: 'iconfont'; 
    src: url('../font/iconfont.ttf') format('truetype');
}
#header{
    max-height: 60px;
    padding: 5px;
    width: 100vw;
    box-shadow: 0 0 6px #ccc;
    position: fixed;
    top: 0;
    left: 0;
    margin-bottom: -5px;
    z-index: 5;
    background-color: #fff;
}#header *{
    display: inline-block;
}:root,body{
    margin: 0;
    width: 100vw;
    height: 100vh;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    font-family: 'iconfont' !important;
}#header span{
    font-size: 12px;
    transform: translate(-75px,-8px);
    border: 1px solid #000;
    padding: 2px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 3px;
}#header div:nth-child(2){
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}button{
    background: linear-gradient(165deg,#1abc9c,#2ecc71);
    color: #fff;
    font-weight: bold;
    padding: 5px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 0 4px #ccc;
}button:hover{
    filter: brightness(1.1);
}button:active{
    filter: brightness(.95);
    transform: scale(.95);
}.img{
    box-shadow: 0 0 6px #ccc;
    border-radius: 5px;
    transition: all .25s;
}.img:hover{
    transform: scale(1.05);
    filter: brightness(1.1);
}#main{
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%,-50%) !important;
    text-align: center; 
}@keyframes rotate{
    0%{
        transform: rotate(0) scale(1);
    }50%{
        transform: rotate(180deg) scale(1.1);
        filter: brightness(1.1) drop-shadow(0 0 6px #1abc9c);
    }100%{
        transform: rotate(360deg) scale(1);
    }
}#main .aniimg{
    animation: rotate 2s infinite;
}::-webkit-scrollbar{
    display: none;
}ul {
    list-style: none;
}
li a {
    text-decoration: none;
    color: #333;
}*{
    padding: 0;margin: 0;
}
.contextmenu {
    text-align: left;
    width: 200px;
    border: 1px solid #aeaeae;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, .75);
    backdrop-filter: blur(7px);
    position: absolute;
    top: 10px;
    left: 10px;
    display: none;
    opacity: 0;
    transition: all .15s;
    transform: scale(.7);
    z-index:  2147483647;
}
.contextmenu li {
    height: 40px;
    line-height: 40px;
}
.contextmenu li a {
    display: block;
    padding: 0 20px;
    cursor: default !important;
}
.contextmenu li a:hover {
    background-color: rgba(165, 165, 165, 0.3);
    color: #000;
}