/* 设置滚动条的样式 */
*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    &:hover {
        opacity: 1;
    }
}
/* 滚动槽 */
*::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    border-radius: 10px;
    width: 10px;
    background-color: #e2e2e2;
    display: none;
}
*::-webkit-scrollbar-track-piece {
    width: 1px;
}
/* 滚动条滑块 */
*::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: #e6e6e6;
    cursor: pointer;
    display: none;
}

*::-webkit-scrollbar-thumb:window-inactive {
    background: #eee;
}
*:hover {
    & > ::-webkit-scrollbar-thumb {
        display: block;
    }
}
/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
    font-family: 'iconfont';  /* Project id 5061626 */
    src: url('//at.alicdn.com/t/c/font_5061626_nag48e5gdj.woff2?t=1764557773503') format('woff2'),
    url('//at.alicdn.com/t/c/font_5061626_nag48e5gdj.woff?t=1764557773503') format('woff'),
    url('//at.alicdn.com/t/c/font_5061626_nag48e5gdj.ttf?t=1764557773503') format('truetype');
}
.iconfont {
    font-family: 'iconfont' !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}
*{
    margin: 0;
    padding: 0;
    font-size: 14px;
    box-sizing: border-box;
}
.page{
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 1200px;
}
.page-bg{
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    height: 576px;
    z-index: -1;
    object-fit: cover;
    min-width: 1200px;
}
.page-header{
    height: 56px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px #0000001A;
    display: flex;
    align-items: center;
    padding: 0 24px;
    justify-content: space-between;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    min-width: 1200px;
    z-index: 1;
}
.page-header img{
    width: 172px;
    height: 30px;
    cursor: pointer;
}
.page-header-r{
    display: flex;
    align-items: center;
    color: #036FE1;
}
.page-header .button{
    margin-left: 16px;
    line-height: 32px;
    border-radius: 4px;
    padding: 0 16px;
    color: #FFF;
    background: #036FE1;
    cursor: pointer;
}
.page-header .button.register{
    border: 1px solid #036FE1;
    background: #FFF;
    color: #036FE1;
}
/*改写elementplus样式*/
.el-dropdown .el-button{
    outline: none!important;
}