*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
/* 鼠标特效 */
/**{*/
/*    cursor: url(../img/pointer.png) 8 3, auto !important;*/
/*}*/
html{
    font-size: 12px;
}
body,#app{
    font-size: 14px;
    color: #ffffff;
    position: relative;
    width: 100%;
    height: 100%;
    font-family: 微软雅黑, MicrosoftYahei, PingFangSC, sans-serif;
}
body {
    /* background: url("../img/bj.png") no-repeat;
    background-size: cover; */
    background: #000615;
}
::-webkit-scrollbar{
    display: none;
    /*background-color: #00142f;  !* 滚动条的背景颜色 *!*/
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb{
    display: none;
    /*background-color: rgba(0,116,224,0.5);  !* 滚动条的颜色 *!*/
    /*border-radius: 5px;  !* 滚动条圆角 *!*/
}

ul, ol {
    list-style: none;
}
.flex {
    display: flex;
}
.flex-column {
    flex-direction: column;
}
.flex-1 {
    flex: 1;
}
.flex-h-center {
    justify-content: center;
}
.flex-v-center {
    align-items: center;
}
.flex-center{
    justify-content: center;
    align-items: center;
}
.flex-between {
    justify-content: space-between;
}
.flex-around {
    justify-content: space-around;
}
.flex-end{
    justify-content: flex-end;
}
.flex-wrap{
    flex-wrap: wrap;
}
.w-full{
    width: 100%;
}
