html,
body {
    height: 100%;
    width: 100%;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
textarea,
input {
    margin: 0;
    padding: 0;
    border: 0 none;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
ol,
ul,
li {
    list-style: none;
}
em,
i,
s {
    font-style: normal;
    text-decoration: none;
}
a {
    text-decoration: none;
    cursor: pointer;
    color:#333;
}
a:focus {
    outline: none;
}
input:focus {
    outline: none;
    outline-color: inherit;
}
img {
    border: 0;
    vertical-align: middle;
}
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: inherit;
}
table td {
    text-align: center;
}
textarea {
    resize: none;
    padding: 5px;
}
p {
    word-wrap: break-word;
    word-break: normal;
}
.fixed {
    position: fixed;
}
.textOverflow {
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.flex {
    display: flex;
}

.flex-center {
    justify-content: center;
    align-items: center;
}
.flex-between {
    justify-content: space-between;
}
.flex-around {
    justify-content: space-around;
}

.flex-JContent {
    justify-content: center;
}
.flex-AItems {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}
.flex-start {
    align-items: flex-start;
}
.overflow {
    overflow: auto;
}
.paging {
    margin: 20px 40px;
    position: absolute;
    right: 40px;
}
::-webkit-scrollbar {
   width: 3px;
   height: 1px;
}
::-webkit-scrollbar-thumb {
//滑块部分
border-radius: 5px;
    background-color: #409eff;
}
::-webkit-scrollbar-track {
//轨道部分
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #ededed;
    border-radius: 5px;
}
.el-table__header,
.el-table__row {
    height: 64px;
    font-size: 18px;
}

.flex {
    display: flex;
}

.flex-sub {
    flex: 1;
}

/* flex 上下居中 */
.flex-c, .flex-center {
    display: flex;
    align-items: center;
}

/* flex 上下居中 左右居中 */
.flex-c-c, .flex-middle-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* flex 上下居中 左右两端对齐 */
.flex-c-b, .flex-center-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* flex 左右两端对齐 */
.flex-b, .flex-between {
    display: flex;
    justify-content: space-between;
}

/* flex 可换行 */
.flex-w, .flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

/* flex 向右对齐 */
.flex-d, .flex-right {
    display: flex;
    justify-content: flex-end;
}


