/* 适配苹果OSX系统滚动条不显示问题 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #fff;
}

::-webkit-scrollbar:hover {
    background-color: #eee;
}

::-webkit-scrollbar-thumb {
    min-height: 5px;
    min-width: 5px;
    -webkit-border-radius: 20px;
    border: 1px solid #606060;:: -webkit-border-radius: 1 px;
    background-color: #606060;
}

::-webkit-scrollbar-thumb:hover {
    min-height: 5px;
    min-width: 5px;
    -webkit-border-radius: 20px;
    border: 1px solid #535353;
    background-color: #535353;
}

::-webkit-scrollbar-thumb:active {
    -webkit-border-radius: 20px;
    border: 1px solid #535353;
    background-color: #535353;
}