* {
    margin: 0;
    padding: 0;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
}


@media screen and (min-width: 1000px){
    #footer {
        padding: 16px 0;
        background: #000;
    }
    
    #footer p ,#footer a{
        text-align: center;
        color: #fff;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
        text-decoration: none;
    }
}

@media screen and (max-width: 1000px){
    .blockwin{
        position: fixed;
        top: 60px;
        left: 100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: rgba(0, 0, 0, .6);
        transition: left .3s;
        z-index: 10;
    }
    
    .blockwin .sidebar{
        display: flex;
        flex-direction: column;
        position: absolute;
        right: 0;
        width: 80%;
        height: 100%;
        background-color: #fff;
        z-index: 11;
    }
    
    .blockwin .sidebar .link{
        padding: 20px 14px;
        color: #333;
        font-size: 16px;
        border-bottom: 1px solid #e1e1e1;
        background-image: url(../img/arrow-right.png);
        background-repeat: no-repeat;
        background-position: 95% center;
        background-size: 20px 20px;
    }

    .blockwin .sidebar p{
        padding: 20px 14px;
        color: #333;
        font-size: 16px;
        background-size: 20px 20px;
    }
    
    .blockwin .sidebar img{
        margin: 0 auto 4px;
        width: 90%;
    }

    .blockwin .sidebar .apps{
        padding: 0px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .blockwin .sidebar .apps a{
        width: 140px;
        height: 40px;
        line-height: 40px;
        background: linear-gradient(to right ,#0db7f6 ,#239bfa);
        color: #fff;
        font-size: 16px;
        text-align: center;
        border-radius: 23px;
        box-shadow: 0 0 6px #15abf7;
        user-select: none;
    }

    #menu{
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        padding: 0 4%;
        width: 92%;
        height: 60px;
        z-index: 10;
        background: #f2f2f2;
    }

    #menu img{
        width: 46px;
        height: 46px;
    }

    #menu p{
        display: flex;
        flex-direction: column;
        width: 36px;
        height: 36px;
        box-shadow: 0 0 4px #dcdcdc;
        border-radius: 4px;
        align-items: center;
        justify-content: center;
    }

    #menu p:hover{
        background: #fff;
    }

    #menu p span{
        margin: 2px 0;
        width: 66%;
        height: 2px;
        background-color: #999;
    }

    #footer {
        padding: 16px 0;
        background: #000;
    }
    
    #footer p ,#footer a{
        text-align: center;
        color: #fff;
        height: 30px;
        line-height: 30px;
        font-size: 13px;
        text-decoration: none;
    }
}



::-webkit-scrollbar {
    width: 0px;
    height: 1px;
    color: rgba(22, 22, 32, 1);
}

::-webkit-scrollbar-track {
    background-color: #eaeaea;
    border-left: 1px solid #ccc;
}

::-webkit-scrollbar-thumb {
    background-color: #ccc;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

::-webkit-scrollbar-thumb:active {
    background-color: #333;
}

#wechat{
    display: none;
    position: fixed;
    top: 85px;
    right: 120px;
    width: 200px;
    height: 70px;
    z-index: 10;
    overflow: hidden;
}

#wechat img{
    width: 100%;
    height: 100%;
}

#download{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 85px;
    right: calc(3% - 10px);
    width: 130px;
    height: 290px;
    z-index: 10;
    background-color: #fff;
    border-radius: 8px;
    transition: all .4s;
}

#download p{
    margin: 8px 0;
    font-size: 14px;
}