/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, applet, object, iframe,
h1, h2, h3, h4, h5, h6, 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, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  /*font-size: 100%;*/
  /*font: inherit;*/
  vertical-align: baseline;
  text-decoration: none;
  outline: none;
}

div, p, span {
  outline: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*分页器*/
.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.el-pagination {
  display: flex;
  justify-content: flex-end;
}

/*主体内容*/
.pageOut {
  background: white;
  border-radius: 4px;
  min-height: calc(100% - 2px);
  border: 1px solid rgba(234, 237, 243, 1);
}

.pageIn {
  padding: 20px;
  box-sizing: border-box;
}

/*滚动条*/
::-webkit-scrollbar-track-piece {
  /*!/滚动条凹槽的颜色，还可以设置边框属性*/
  background-color: #f8f8f8;
}

::-webkit-scrollbar {
  /*!/滚动条的宽度*/
  width: 6px;
  height: 6px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  /*!/滚动条的设置*/
  background-color: #dddddd;
  background-clip: padding-box;
  min-height: 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #bbb;
}

/*加载条颜色*/
#nprogress .bar {
  background: #409eff !important;
}

/*Drawer 抽屉自定义头部*/
.el-drawer__header {
  margin-bottom: 20px !important;
}

/*Drawer 抽屉自定义主体*/
.form-drawer__main {
  padding: 0 20px 60px 20px !important;
  box-sizing: border-box !important;
}

/*Drawer 抽屉尾部确认*/
.form-drawer__footer {
  position: fixed;
  right: 0;
  bottom: 0;
  border-top: 1px solid #e9e9e9;
  padding: 10px 15px;
  box-sizing: border-box;
  background: #fff;
  text-align: right;
}

/*Drawer 抽屉自定义类名样式*/
.custom_drawer {
  overflow: auto !important;
}

/*气泡确认框样式修改*/
.el-popconfirm__main {
  margin-bottom: 20px !important;
}

.xiaoxiao {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

/*弹出框表单*/
.el-drawer-ruleForm {
  padding: 0 20px;
}

/*表单内按钮*/
.auto-button {
  margin: 0 5px !important;
}

/*自定义按钮*/
.custom-button {
  height: 32px;
  width: min-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-button-button-span {
  display: flex;
  align-items: center;
}

/*按钮中图片*/
.custom-button-image {
  width: 16px;
  height: 16px;
  display: block;
  margin-right: 10px;
}

/*去掉高德地图水印*/
#amapMap .amap-logo, #amapMap .amap-copyright {
  display: none !important;
  opacity: 0 !important;
}
/*帮助*/
.help{
  font-size: 24px;
  position: relative;
  left: 10px;
  top: 4px;
}
