/* 公共样式 */
html,
body {
    color: #333;
    height: 100%;
    width: 100%;
    font-size: 14px;
    user-select: none;
}

body,
div,
header,
main,
footer,
ul,
ol,
dl,
dt,
dd,
li,
dl,
h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
    font-style: normal;
    box-sizing: border-box;
}

ol,
ul,
li {
    list-style: none;
}

img {
    border: 0;
    vertical-align: middle;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
    height: 1px;
    width: 100%;
    overflow: hidden;
    margin-top: -1px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 细滚动条样式 */
.custom-scroll::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, .1);
}

.custom-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
}

/* 文字溢出 */
.text-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
