﻿* {
    padding: 0;
    margin: 0;
    list-style: none;
}
/** 图标字体 **/
@font-face {
    font-family: 'AlibabaPuHuiTi';
    src: url('../fonts/alibabapuhuiti-2-85-bold.ttf') format('truetype');
    /*src: url('../fonts/alibabapuhuiti-2-55-regular.ttf') format('truetype');*/
}

html,
body {
    /*width: 100%;
    height: 100%;*/
    font-family: AlibabaPuHuiTi;
}



.container {
    width: 100%;
    height: 100%;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    width: 6px;
    background: rgba(#101f1c, 0.1);
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(144, 147, 153, 0.5);
    background-clip: padding-box;
    min-height: 28px;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
    transition: background-color 0.3s;
    cursor: pointer;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: rgba(144, 147, 153, 0.3);
    }
