html {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, q, dl, dt, dd, ol, ul, li, input, fieldset, form, legend, caption, tbody, tfoot, thead, article, aside, dialog, figure, footer, header, hgroup, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 14px;
  font: inherit;
  vertical-align: baseline;
}
:root{
  --theme_color:#007943;
}
a:hover{
  text-decoration: none;
  cursor: pointer;
  color: var(--theme_color);
}
a:focus{
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

body {
  font-size: 14px;
  color: #333;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button{
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}

/*a{text-decoration: none;}*/

b, strong {
  font-weight: bold;
}
input:focus, textarea:focus, button:focus, select:focus {
  outline: none;
}
input::-ms-clear {
  display: none;
}
button[disabled], html input[disabled] {
  cursor: default;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

 th,td,tr{
   border: 1px solid #000;
 }

.pageRender {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.pageRender .page-item {
  display: inline-block;
  vertical-align: middle;
  padding: 0 15px;
  height: 28px;
  line-height: 28px;
  margin: 0 -1px 5px 0;
  background-color: #fff;
  color: #333;
  font-size: 16px;
  border: 1px solid #e2e2e2;
  box-sizing: content-box;
}
.pageRender .page-item::before{
  content: unset;
}

.pageRender .page-item:first-child {
  border-radius: 2px 0 0 2px;
  margin-left: 0 !important;
}

.pageRender .page-item:last-child {
  margin-right: 0 !important;
  border-radius: 0 2px 2px 0;
}

.pageRender .page-item.disabled {
  color: #d2d2d2;
}

.pageRender .page-item.active {
  background-color: #009688;
  color: #fff;
  border-radius: 2px;
  position: relative;
  border: 0;
  height: 30px;
  line-height: 30px;
  padding: 0 16px;
}
.pageRender .page-item.active>span{
  color: #fff;
}
.pageRender .page-item a{
  margin: 0;
}
.login{
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: #fff;
  transform: translate(-50%,-50%);
  width: 500px;
  height: 500px;
}
.login .info{
  display: flex;
  justify-content: center;
  align-items: center;
}
.login .info svg{
  width: 30px;
  height: 30px;
  margin-right: 10px;
}