/* 彩色渐变滚动条样式 */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: pink;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
    background-color: pink;
}

::-webkit-scrollbar-thumb:hover {
    transform: scale(1.05);
}

/* ------------------------------公共样式------------------------------ */
*{
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: pink;
}
body{
    background-color: #f5f5f5;
    overflow-x: hidden;
    background-image: url('https://t.alcy.cc/fj');
    background-size: 100vw;
}
/* ------------------------------其他页面样式------------------------------ */
/* 登录模态框 */
/* .login_modal{
    margin-top: 150px !important;
} */
/* 顶开导航栏 */
.navctr-box{
    margin-top: 55px;
}
