@charset "UTF-8";

@font-face {
    font-family: element-icons;
    src: url(./element-icons.woff) format("woff"), url(./element-icons.ttf) format("truetype");
    font-weight: 400;
    font-display: "auto";
    font-style: normal
}

* {
    font-family: "微软雅黑";
}

/* 浏览器滚轮 */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #dedfe0;
}

/* 公共命名css */
.flex {
    display: flex;
}

.text-hidden {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

.color-white {
    color: white;
}

.margin-left-60 {
    margin-left: 60px;
}

.padding-10 {
    padding: 10px;
}

.padding-15 {
    padding: 15px;
}

.border-right {
    border-right: 1px solid #e7e7e7;
}

.border-bottom {
    border-bottom: 1px solid #e7e7e7;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-20 {
    margin-top: 20px;
}

.left-0 {
    left: 0
}

.right-0 {
    right: 0
}


.border-radius-4 {
    border-radius: 4px;
}

.none {
    display: none;
}