@charset "UTF-8";
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,
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;
}

/* 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;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header {
  position: relative;
  border-top: 6px solid #84AD34;
  margin-bottom: 25px;
}
header .top {
  width: 95%;
  padding: 20px 30px;
  margin: 14px auto 30px;
  background: #fff;
  border-radius: 80px;
  -webkit-box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .top h1 a {
  width: 300px;
  height: 60px;
  display: block;
  background: url("../img/logo2.png") no-repeat center;
  background-size: contain;
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
}
header .top .desktopNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
}
header .top .desktopNav p {
  color: #45662E;
  font-size: 18px;
  font-weight: bold;
}
header .top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  gap: 5px;
  font-weight: bold;
}
header .top ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5px;
}
header .top ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #84AD34;
  padding: 12px 20px;
  border-radius: 40px;
}
header .top ul li a:hover {
  background: #84AD34;
  color: #fff;
}
header .top .mobile {
  display: none;
}
header .top .hamBtn {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
header .top .hamBtn div {
  display: block;
  width: 30px;
  height: 2px;
  background: #84AD34;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header .top .hamBtn.active div:first-child {
  -webkit-transform: rotate(-45deg) translateY(10px);
          transform: rotate(-45deg) translateY(10px);
}
header .top .hamBtn.active div:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
header .top .hamBtn.active div:last-child {
  -webkit-transform: rotate(45deg) translateY(-10px);
          transform: rotate(45deg) translateY(-10px);
}
header nav {
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header nav h2 {
  font-size: 24px;
  font-weight: bold;
  color: #999999;
}
header nav .main_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: bold;
}
header nav .main_menu li {
  position: relative;
}
header nav .main_menu li .sub_menu {
  width: 90%;
  padding-top: 5px;
  position: absolute;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 10;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
header nav .main_menu li .sub_menu li {
  border: 1px solid transparent;
  background: #ECECF1;
  border-radius: 40px;
  padding: 10px 15px;
  margin-bottom: 5px;
  font-size: 16px;
}
header nav .main_menu li .sub_menu li a {
  display: block;
  color: #595959;
}
header nav .main_menu li .sub_menu li:last-child {
  margin-bottom: 0;
}
header nav .main_menu li .sub_menu li:hover {
  border: 1px solid #84AD34;
  background: #FAF9F2;
}
header nav .main_menu li .sub_menu li:hover a {
  color: #45662E;
}
header nav .main_menu li .navLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 18px;
  padding: 12px 25px;
  position: relative;
  color: #45662E;
  border-radius: 40px;
}
header nav .main_menu li .navLink div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
header nav .main_menu li .navLink div iconify-icon {
  color: #84AD34;
}
header nav .main_menu li:hover .navLink {
  background: #84AD34;
  color: #fff;
}
header nav .main_menu li:hover .navLink div iconify-icon {
  color: #fff;
}
header nav .main_menu li:hover .sub_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1280px) {
  header .top .desktopNav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 10px 0;
  }
  header nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
@media (max-width: 992px) {
  header .top .desktopNav {
    display: none;
  }
  header .top .mobile {
    display: block;
  }
  header nav .main_menu {
    display: none;
  }
}
@media (max-width: 576px) {
  header .top h1 a {
    width: 220px;
  }
}
@media (max-width: 375px) {
  header nav h2 {
    font-size: 20px;
  }
}
@media (max-width: 320px) {
  header .top h1 a {
    width: 170px;
  }
}

body {
  line-height: 1.5;
  background: #FAFAFA;
  overflow-x: hidden;
  font-family: "微軟正黑體", sans-serif;
}
body a {
  text-decoration: none;
}

.wrap {
  position: relative;
}

.main {
  width: 95%;
  margin: 0 auto;
  border-radius: 80px;
  -webkit-box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.12);
  padding: 50px 120px;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 992px) {
  .main {
    padding: 50px;
  }
}
@media (max-width: 576px) {
  .main {
    padding: 20px 20px 40px;
  }
}
.main.active {
  -webkit-transform: translateX(310px);
          transform: translateX(310px);
}

.pageTitle {
  text-align: center;
  font-size: 24px;
  color: #595959;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: bold;
}
.pageTitle::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  background: #84ad34;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.paginationArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}
.pagination a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  color: #A5A5A5;
  background: #ececf1;
  border-radius: 10px;
}
.pagination a:hover, .pagination a.active {
  color: #fff;
  background: #84ad34;
}
.pagination li:first-child a, .pagination li:last-child a, .pagination li:nth-child(2) a, .pagination li:nth-last-child(2) a {
  gap: 5px;
  background: #C7E488;
}
.pagination li:first-child a:hover, .pagination li:last-child a:hover, .pagination li:nth-child(2) a:hover, .pagination li:nth-last-child(2) a:hover {
  background: #84AD34;
}
@media (max-width: 576px) {
  .pagination {
    gap: 5px;
  }
  .pagination a {
    width: 30px;
    height: 30px;
  }
  .pagination li:first-child a, .pagination li:last-child a, .pagination li:nth-child(2) a, .pagination li:nth-last-child(2) a {
    gap: 0px;
  }
}

.asideNav {
  display: none;
  position: absolute;
  width: 300px;
  height: 100%;
  padding: 50px 40px;
  border-radius: 80px;
  -webkit-box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.12);
  background: #fff;
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow-y: scroll;
}
.asideNav::-webkit-scrollbar {
  display: none;
}
.asideNav p {
  text-align: center;
  margin-bottom: 20px;
}
.asideNav.active {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.asideNav li .mainLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 20px;
  color: #45662E;
  border-radius: 40px;
}
.asideNav li .mainLink iconify-icon {
  color: #84AD34;
}
.asideNav li .mainLink div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.asideNav li .mainLink.active {
  background: #84AD34;
  color: #fff;
}
.asideNav li .mainLink.active iconify-icon {
  color: #fff;
}
.asideNav li .sub_menu {
  height: 0;
  overflow: hidden;
  width: 100%;
  margin: auto;
}
.asideNav li .sub_menu a {
  display: block;
  color: #595959;
  padding: 5px 10px;
  background: #ECECF1;
  border-radius: 40px;
  margin-bottom: 5px;
  border: 1px solid transparent;
}
.asideNav li .sub_menu a:hover {
  color: #45662E;
  background: #FAF9F2;
  border: 1px solid #84ad34;
}
.asideNav li .sub_menu.active {
  height: auto;
  padding: 10px 0;
}
@media (max-width: 992px) {
  .asideNav {
    display: block;
  }
}

.data {
  padding: 20px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 249, 242, 0)), to(#faf9f2));
  background: linear-gradient(to bottom, rgba(250, 249, 242, 0), #faf9f2);
  margin-bottom: 50px;
}
.data ul {
  background: #FAFAFA;
  border: 1px solid #C7E488;
  border-left: none;
  border-radius: 10px;
  margin-bottom: 20px;
}
.data ul.row > * {
  padding: 0;
}
.data li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1px;
}
.data li.ListTitle {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px;
  background: #84AD34;
  border-radius: 10px 10px 0 10px;
  color: #FAFAFA;
}
.data li:nth-child(odd) .title {
  background: #C5DB97;
}
.data li:nth-child(even) .title {
  background: #E0EEBF;
}
.data .halfArea .half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}
.data .title {
  width: 200px;
  padding: 12px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px 0 0 10px;
  font-weight: bold;
}
.data .content {
  width: calc(100% - 200px);
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.data .content input[type=text] {
  width: 100%;
  border: none;
  border-radius: 10px;
  outline: none;
  padding: 5px;
  -webkit-box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.12);
          box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.12);
}
.data .content input[type=number] {
  width: 100%;
  border: none;
  border-radius: 10px;
  outline: none;
  padding: 5px;
  -webkit-box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.12);
          box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.12);
}
.data .content input[type=password] {
  width: 100%;
  border: none;
  border-radius: 10px;
  outline: none;
  padding: 5px;
  -webkit-box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.12);
          box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.12);
}
.data .content input[type=date] {
  border: none;
  border-radius: 10px;
  outline: none;
  padding: 5px;
  -webkit-box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.12);
          box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.12);
}
.data .content input[type=date]::-webkit-calendar-picker-indicator {
  background-image: url(../img/date.png);
}
.data .content textarea {
  width: 100%;
  border: none;
  border-radius: 10px;
  outline: none;
  padding: 5px;
  -webkit-box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.12);
          box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.12);
  resize: none;
}
.data .content select {
  width: 50%;
  border: none;
  border-radius: 10px;
  outline: none;
  padding: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../img/select.png) no-repeat right 10px center;
  background-color: #fff;
  -webkit-box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.12);
          box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.12);
}
.data .content.function div {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.data .content.function div p {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.data .content.function div select {
  width: 100%;
}
.data .btnGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 20px;
}
.data .btnGroup button {
  background: #0E620A;
  color: #FAFAFA;
  padding: 8px 40px;
  border: none;
  border-radius: 40px;
}
@media (max-width: 1200px) {
  .data .content.function div {
    width: 30%;
  }
}
@media (max-width: 992px) {
  .data li:nth-child(odd) .title.odd {
    background: #C5DB97;
  }
  .data li:nth-child(odd) .title.even {
    background: #E0EEBF;
  }
  .data li:nth-child(even) .title.odd {
    background: #C5DB97;
  }
  .data li:nth-child(even) .title.even {
    background: #E0EEBF;
  }
  .data .title {
    width: 150px;
  }
  .data .content {
    width: calc(100% - 150px);
  }
  .data .content select {
    width: 100%;
  }
  .data .halfArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .data .halfArea .half {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .data .content.function {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .data .content.function div {
    width: 70%;
  }
}
@media (max-width: 576px) {
  .data li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .data .title {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
  .data .content {
    width: 100%;
  }
  .data .content.function div {
    width: 100%;
  }
  .data .halfArea .half {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 414px) {
  .data .btnGroup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0px;
  }
}

.tableArea {
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: scroll;
  margin-bottom: 20px;
  max-height: 1000px;
}
.tableArea::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: transparent;
}
.tableArea::-webkit-scrollbar-thumb {
  background: #84AD34;
  border-radius: 15px;
  border: 0px solid #FFFfff;
}
.tableArea table {
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.tableArea table .allCheckArea {
  position: relative;
}
.tableArea table .allCheckArea input[type=checkbox] {
  opacity: 0;
}
.tableArea table .allCheckArea label {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.tableArea table .allCheckArea label::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #84AD34;
  border-radius: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tableArea table .allCheckArea label::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  background: transparent;
  border-radius: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tableArea table .allCheckArea input[type=checkbox]:checked + label::after {
  background: #84AD34;
}
.tableArea table thead {
  display: table-header-group;
}
.tableArea table thead.sticky {
  position: sticky;
  z-index: 5;
  top: 0;
}
.tableArea table thead th {
  background: #C7E488;
  padding: 14px;
  text-align: center;
  border: 1px solid #E5E5E5;
}
.tableArea table thead th.stickyAll {
  position: sticky;
  left: 0;
  top: 0;
}
.tableArea table thead th > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.tableArea table tbody {
  display: table-row-group;
}
.tableArea table tbody tr:nth-child(even) {
  background: #FAFAFA;
}
.tableArea table tbody tr:hover {
  background: #FFFDE5;
}
.tableArea table tbody td {
  border: 1px solid #E5E5E5;
  padding: 14px;
  text-align: center;
  color: #676767;
  cursor: pointer;
}
.tableArea table tbody td.open {
  color: #0E620A;
  font-weight: bold;
}
.tableArea table tbody td.close {
  color: red;
  font-weight: bold;
}
.tableArea table tbody td .allCheckArea label {
  left: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.tableArea .table {
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.tableArea .table .allCheckArea {
  position: relative;
}
.tableArea .table .allCheckArea input[type=checkbox] {
  opacity: 0;
}
.tableArea .table .allCheckArea label {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tableArea .table .allCheckArea label::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #84AD34;
  border-radius: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tableArea .table .allCheckArea label::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  background: transparent;
  border-radius: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tableArea .table .allCheckArea input[type=checkbox]:checked + label::after {
  background: #84AD34;
}
.tableArea .table .thead {
  display: table-header-group;
}
.tableArea .table .thead .th {
  background: #C7E488;
  padding: 14px;
  text-align: center;
  border: 1px solid #E5E5E5;
}
.tableArea .table .thead .th > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.tableArea .table .tbody {
  display: table-row-group;
}
.tableArea .table .tbody .tr:nth-child(even) {
  background: #FAFAFA;
}
.tableArea .table .tbody .tr:hover {
  background: #FFFDE5;
}
.tableArea .table .tbody .td {
  border: 1px solid #E5E5E5;
  padding: 14px;
  text-align: center;
  color: #676767;
}
.tableArea .table .tbody .td.open {
  color: #0E620A;
  font-weight: bold;
}
.tableArea .table .tbody .td.close {
  color: red;
  font-weight: bold;
}
.tableArea .table .tbody .td .allCheckArea label {
  left: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.tableArea .table .tr {
  display: table-row;
}
.tableArea .table .th {
  display: table-cell;
}
.tableArea .table .td {
  display: table-cell;
}

footer {
  margin-top: 10px;
  font-size: 14px;
  color: #84AD34;
  text-align: center;
  padding: 20px;
}

.login {
  width: 100%;
  height: 100vh;
  background: url("../img/loginBG3.png") no-repeat right, url("../img/loginBG4.png") no-repeat bottom;
  background-size: cover;
  position: relative;
}
.login .disclaimer {
  display: none;
  max-width: 800px;
  max-height: 500px;
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
  overflow-y: scroll;
}
.login .disclaimer::-webkit-scrollbar {
  width: 10px;
  background: transparent;
}
.login .disclaimer::-webkit-scrollbar-thumb {
  background: #84AD34;
  border-radius: 5px;
  border: 1px solid #FFFfff;
}
.login .disclaimer.active {
  display: block;
}
.login .disclaimer .c-1 {
  color: #0E620A;
  font-weight: bold;
}
.login .disclaimer .c-2 {
  color: #84AD34;
}
.login .disclaimer p {
  margin-bottom: 5px;
}
.login .disclaimer .main_list {
  margin-left: 5px;
}
.login .disclaimer .main_list li {
  margin-bottom: 5px;
}
.login .disclaimer .sub_list {
  margin-left: 10px;
  list-style: disc;
  list-style-position: inside;
}
.login .disclaimer .checkboxArea {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.login .disclaimer .checkboxArea div {
  position: relative;
}
.login .disclaimer .checkboxArea div input[type=checkbox] {
  opacity: 0;
}
.login .disclaimer .checkboxArea div label {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.login .disclaimer .checkboxArea div label::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #84AD34;
  border-radius: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.login .disclaimer .checkboxArea div label::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  background: transparent;
  border-radius: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.login .disclaimer .checkboxArea div input[type=checkbox]:checked + label::after {
  background: #84AD34;
}
.login .disclaimer .checkboxArea p {
  margin-bottom: 0;
}
.login .content {
  position: absolute;
  top: 35%;
  right: 12%;
}
.login .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login .logo img {
  margin-bottom: 20px;
  width: 100px;
  height: 100px;
}
.login .logo h2 {
  font-weight: bold;
  color: #84AD34;
  font-size: 26px;
  margin-bottom: 10px;
  white-space: nowrap;
}
.login .logo p {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: bold;
}
.login form .inputArea {
  border-bottom: 2px solid #84AD34;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.login form .inputArea label iconify-icon {
  color: #84AD34;
}
.login form .inputArea input {
  border: none;
  outline: none;
  width: 100%;
  padding: 10px;
  background: transparent;
}
.login form .checkboxArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.login form .checkboxArea div {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  padding: 10px;
}
.login form .checkboxArea div a {
  color: #0E620A;
  text-decoration: underline;
  font-weight: bold;
}
.login form .btnGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.login form .btnGroup button {
  width: 250px;
  border-radius: 40px;
  background: #0E620A;
  color: #fff;
  padding: 14px;
  border: none;
}
.login form .btnGroup a {
  display: block;
  width: 250px;
  border-radius: 40px;
  background: #0E620A;
  color: #fff;
  padding: 14px;
  text-align: center;
}
@media (max-width: 992px) {
  .login .content {
    right: initial;
    top: 30%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.list .data .btnGroup {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.list .data .btnGroup div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}
.list .data .btnGroup div button {
  background: #45662E;
}
.list .data .btnGroup .search {
  background: #0E620A;
}
@media (max-width: 768px) {
  .list .data .btnGroup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 10px;
  }
}

.changePW .data {
  background: transparent;
}

.system .data {
  background: transparent;
}
.system.list .data {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 249, 242, 0)), to(#faf9f2));
  background: linear-gradient(to bottom, rgba(250, 249, 242, 0), #faf9f2);
}
.system.list .btnGroup {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.chemicalList .data {
  background: transparent;
}
.chemicalList .data ul.stroke .content {
  border-bottom: 1px solid #C7E488;
}
.chemicalList .data li:last-child .content {
  border-bottom: none;
}
.chemicalList .data .content input[type=text] {
  background: #eaeaea;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.chemicalList .data .btnGroup {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}/*# sourceMappingURL=tw_style.css.map */