body,
ul,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
img,
br,
hr,
table,
tr,
td,
dl,
dt,
dd,
form {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, "微软雅黑";
    font-size: 14px;
    color: #434343;
    /* min-width: 1200px; */
    /* max-width: 1440px; */
}

.clear {
    clear: both;
    font-size: 0px;
}

ul,
li {
    list-style: none;
}

img {
    border: none;
}

/*一般链接*/
a {
    text-decoration: none;
    color: #434343;
}

a:hover {
    color: #434343;
}

.line_feed {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.hand {
    cursor: pointer;
}

.center {
    display: flex;
    justify-content: center;
}

.centerAll {
    display: flex;
    justify-content: center;
    align-items: center;
}

html::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 6px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 6px;
}

html::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    background-color: #d3d2d2 !important;
    opacity: 1;
}


/*  *滚动条 */

::-webkit-scrollbar {
    width: 6px;
    margin-right: 14px;

}

/* 滚动条的滑块 */
::-webkit-scrollbar-thumb {
    background-color: #EBEBEB;
    border-radius: 4px;
}

/*  修改表格(el-table)的滚动条 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/*  滚动条的滑块 */
::-webkit-scrollbar-thumb {
    background-color: #EBEBEB;
    border-radius: 3px;
}