.flexd{
   display: flex;
   align-items: center; 
}
.wrap{
    flex-wrap: wrap;
}
.w100{
    width: 100%;
}
.w50{
    width: 50%;
}
.flex1{
    flex:1
}
.right{
    text-align: right;
    justify-content: flex-end;
}
.h5 img{
    max-width: 100%;
}
.mb12{
    margin-bottom: 12px;
}
.center{
    text-align: center;
    justify-content: center;
}
.bold{
    font-weight: bold;
}
.black{
    color:#333
}
.normal{
    color:#666
}
.grey{
    color:#999
}
*{
    box-sizing: border-box;
}
::-webkit-scrollbar {/*滚动条整体样式*/

    width: 5px;     /*高宽分别对应横竖滚动条的尺寸*/

    height: 1px;

}

::-webkit-scrollbar-thumb {/*滚动条里面小方块*/

    border-radius: 10px;

     -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);

    background: #26a07f;

}

::-webkit-scrollbar-track {/*滚动条里面轨道*/

    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);

    border-radius: 10px;

    background: #EDEDED;

}
.el-drawer__container *{
    outline: 0!important;
}