/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, 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, input {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline;
    outline: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* custom */
a {
    /*color: #7e8c8d;*/
    text-decoration: none;
    -webkit-backface-visibility: hidden;
}

li {
    list-style: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:vertical {
    height: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:horizontal {
    width: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}

html, body {
    width: 100%;
    height: 100%;
    line-height: 1;
    font-weight: 200;
    font-family: 'PingFang SC', 'STHeitiSC-Light', 'Helvetica-Light', arial, sans-serif;
}

h2{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: .6em;
    font-weight: normal;
    vertical-align: baseline;
    outline: none;
}

body {
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.err-msg {
    margin-left: 15px;
    font-size: 12px;
    color: #EB4444;
    font-family: PingFangSC-Regular, PingFang SC;
}


/* 分页器 star */
.pagination-box {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.pagination-box > i{
    flex: 1;
}

.pagination-box > div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.pagination-box > div > span {
    margin-right: 10px;
}
/* 分页器end */

/deep/ .el-form__body {
  padding: 0px;
}
.demo-form-inline {
  margin: 20px;
  text-align: left;
}
.button-fetch {
  border: none;
  width: 80px;
  height: 40px;
  color: #fff;
  background-color: #ff7334;
  border-radius: 6px;
}
.button-reset {
  width: 80px;
  height: 40px;
  color: #ff7334;
  border: 2px solid #ff7334;
  background-color: #fff;
  border-radius: 6px;
}
.button-delete {
  width: 60px;
  height: 32px;
  color: #ff7334;
  border: 2px solid #ff7334;
  background-color: #fff;
  border-radius: 6px;
}
.button-edit {
  border: none;
  width: 60px;
  height: 32px;
  color: #fff;
  background: #ff7334;
  border-radius: 6px;
}

.selectArea{
  width: 610px;
  border: 2px solid #dcdfe6;
  margin-left: 40px;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 24px;
  box-sizing: border-box;
  gap:12px;
}
.selectAreaItem{
  font-size: 14px;
  padding:0 6px;
  height: 30px;
  line-height: 30px;
  box-sizing: border-box;
  color: #666;
  border: 1px solid #888;
  min-width: 60px;
  text-align: center;
}
.selectAreaItemActive{
  color: #ff7334;
  border: 1px solid #ff7334;
}
.disAlign{
  display: flex;
  align-items: center;
}
.selectLabel{
  font-size: 14px;
  color: #666;
  width: 60px;
}
.formTips{
  color: #999;
  font-size: 12px;
}
