@charset "UTF-8";
* {
  box-sizing: border-box;
}

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

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

a {
  text-decoration: none;
}

.w-1 {
  width: 8.3333333333%;
}

.w-2 {
  width: 16.6666666667%;
}

.w-3 {
  width: 25%;
}

.w-4 {
  width: 33.3333333333%;
}

.w-5 {
  width: 41.6666666667%;
}

.w-6 {
  width: 50%;
}

.w-7 {
  width: 58.3333333333%;
}

.w-8 {
  width: 66.6666666667%;
}

.w-9 {
  width: 75%;
}

.w-10 {
  width: 83.3333333333%;
}

.w-11 {
  width: 91.6666666667%;
}

.w-12 {
  width: 100%;
}

.w-auto {
  width: auto !important;
}

.maxw-140 {
  max-width: 140px;
}

.minw-60 {
  min-width: 600px;
}

.h-42 {
  height: 42px;
  line-height: 42px;
}

.h-auto {
  height: auto !important;
}

.e-btn {
  display: inline-block;
  vertical-align: middle;
  padding: 0 20px;
  width: 110px;
  height: 42px;
  line-height: 42px;
  border: none;
  font-size: 13px;
  background: #887744;
  outline: none;
  color: #F8F5E7;
  text-align: center;
  cursor: pointer;
}
.e-btn i {
  font-size: 15px;
}
.e-btn:hover {
  filter: brightness(120%);
}

.e-btn--big {
  width: 200px;
  height: 60px;
  line-height: 60px;
  background: #4D3D1F;
  font-size: 20px;
  font-weight: bold;
  box-shadow: rgba(77, 61, 31, 0.25) 0 0 10px;
}

.e-btn--sm {
  width: 60px;
  min-width: 60px;
  height: 34px;
  line-height: 34px;
  background: #B19660;
  padding: 0 10px;
  margin: 5px 0;
}

.e-btn--fill {
  width: 100%;
}

.e-btn--primary {
  background: #4D3D1F;
  color: #F8F5E7;
}

.e-btn--normal {
  background: #B19660;
  color: #F8F5E7;
}

.e-btn--any {
  background: transparent;
  border: 1px solid #B19660;
  color: #B19660;
}

.e-btn--icon {
  background: none;
  padding: 0 10px;
  color: #887744;
}
.e-btn--icon i {
  font-size: 28px;
}
.e-btn--icon:hover {
  filter: brightness(120%);
}

.e-table {
  width: 100%;
  position: relative;
  border: none;
  border-collapse: collapse;
  overflow-x: overlay;
}

.e-table_header {
  width: 100%;
  border-bottom: 1px solid #887744;
  color: #B19660;
}

.e-table_header td, .e-table_body td {
  padding: 12px 20px;
  border-collapse: collapse;
  line-height: 1.6;
  white-space: nowrap;
}
.e-table_header td:first-child, .e-table_body td:first-child {
  padding-left: 40px;
}
.e-table_header td:last-child, .e-table_body td:last-child {
  padding-right: 40px;
}

.e-table_body {
  border-bottom: 1px solid #D5D0C7;
}
.e-table_body:last-child {
  border-bottom: 1px solid #887744;
}

@media (max-width: 1060px) {
  .e-table_header td, .e-table_body td {
    padding: 6px 10px;
    border-collapse: collapse;
    line-height: 1.6;
  }
  .e-table_header td:first-child, .e-table_body td:first-child {
    padding-left: 20px;
  }
  .e-table_header td:last-child, .e-table_body td:last-child {
    padding-right: 20px;
  }
}
.e-tab {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.e-tab_item {
  display: block;
  width: 16.66666%;
  height: 64px;
  background: #fff;
  border-left: none;
}
.e-tab_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4D3D1F;
  font-weight: 300;
  line-height: 64px;
}
.e-tab_item a:hover {
  background: #EEE8CD;
  font-weight: bold;
}
.e-tab_item--act a {
  background: #EEE8CD;
  font-weight: bold;
}

@media (max-width: 1060px) {
  .e-tab {
    width: 80%;
  }
}
label {
  display: block;
  width: 100%;
  font-size: 14px;
  color: #4D3D1F;
}

label .error {
  color: #aa0000 !important;
  margin-top: 5px;
}

.e-formItem {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 80px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid #D5D0C7;
  border-radius: 0px;
  outline: none;
  color: #4D3D1F !important;
  font-size: 14px;
  background: transparent;
  position: relative;
  z-index: 5;
  -webkit-appearance: none;
}
.e-formItem::-webkit-clear-button {
  opacity: 0;
}
.e-formItem::-webkit-inner-spin-button {
  visibility: hidden;
}
.e-formItem::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 10%;
}
.e-formItem::-webkit-input-placeholder {
  color: #887744;
  font-weight: 300;
}

.e-formItem--hight {
  height: 100px;
  padding: 10px;
}

.e-formGroup {
  position: relative;
}

.e-form_code {
  width: 100%;
  display: flex;
  align-items: center;
}
.e-form_code img {
  height: 40px;
  margin-left: 20px;
  cursor: pointer;
  transition: all, 0.5s;
}

.e-form_code--spin:hover {
  transform: rotate(180deg);
}

.e-formGroup-icon {
  position: absolute;
  bottom: 13px;
  right: 15px;
  z-index: 4;
}

.e-form_txt {
  font-size: 16px;
  display: block;
  height: 42px;
  line-height: 42px;
  white-space: nowrap;
}

.e-form_btw {
  display: block;
  width: 10px;
  height: 1px;
  background: #4D3D1F;
  margin: 0 10px;
}

.e-radioBtn {
  position: relative;
  width: 16px;
  height: 16px;
  margin: 0 8px 0px 2px;
  vertical-align: bottom;
  cursor: pointer;
}
.e-radioBtn:after {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #D5D0C7;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: -1px;
  left: -2px;
  transition: all, 0.5s;
}
.e-radioBtn:hover:after {
  border: 1px solid #B19660;
}
.e-radioBtn:checked:after {
  border: 1px solid #B19660;
}
.e-radioBtn:checked:before {
  content: "";
  width: 12px;
  height: 12px;
  background: #B19660;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 2px;
  z-index: 2;
}

.e-checkBox {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  border: none;
  outline: none;
  cursor: pointer;
}
.e-checkBox:after {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #D5D0C7;
  background: #fff;
  position: absolute;
  top: -3px;
  left: 0px;
  transition: all, 0.5s;
}
.e-checkBox:checked:after {
  border: 1px solid #B19660;
}
.e-checkBox:checked:before {
  font-family: "FontAwesome";
  content: "\f00c";
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  position: absolute;
  color: #B19660;
  font-size: 15px;
  top: 0px;
  left: 3px;
  z-index: 2;
}

.e-formFile {
  display: inline-block;
  width: 100%;
}

.e-formFile_group {
  margin-bottom: 10px;
  border: 1px solid #D5D0C7;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.e-formFile_group img {
  width: 100%;
}
.e-formFile_group:hover .e-formGroup_file_txt {
  opacity: 1;
}

.e-formFile_group--hight {
  height: 330px;
}

.e-formFile_group_img {
  position: relative;
  z-index: 3;
}

.e-formFile_group_btn {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 4;
  cursor: pointer;
}
.e-formFile_group_btn:hover {
  filter: brightness(150%);
}

.e-formFile_group_icon {
  position: absolute;
  top: 130px;
  left: 50%;
  margin-left: -24px;
  font-size: 3rem;
  z-index: 1;
}

.e-formFile_group_txt {
  opacity: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  background: #000;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}

.e-field {
  width: 100%;
  padding: 12px;
  background: #F8F5E7;
}

.e-field--h {
  height: 100%;
  min-height: 400px;
}

.e-field_cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.e-field_title {
  display: block;
  padding: 5px;
  font-size: 16px;
  background: #fff;
  position: absolute;
  top: -12px;
  left: 10px;
}

.e-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
}
.e-title h2 {
  width: 100%;
  display: block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.e-title span {
  display: block;
  font-size: 42px;
  font-family: "Cinzel", serif;
  font-weight: 300;
  letter-spacing: 2px;
  color: #F8F5E7;
  text-align: center;
}

.e-titleGroup {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #F8F5E7;
}

.e-subTitle {
  font-size: 18px;
  color: #887744;
}

.e-box {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.e-box_item {
  display: block;
  width: 22%;
  margin: 10px;
  background: #fff;
  box-shadow: rgba(77, 61, 31, 0.25) 0 0 10px;
  padding: 40px 30px;
}
.e-box_item_cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.e-box_item_cont--title {
  width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.e-box_item_cont--title h2 {
  width: 100%;
  display: block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.e-box_item_cont--title span {
  display: block;
  font-size: 42px;
  font-family: "Cinzel", serif;
  font-weight: 300;
  letter-spacing: 2px;
  color: #D5D0C7;
  text-align: center;
}
.e-box_item_cont--deco {
  display: block;
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: #CBBA84;
  margin: 32px 40px;
}
.e-box_item_cont--btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 1060px) {
  .e-box {
    max-width: 780px;
  }
  .e-box_item {
    width: 46%;
    max-width: 330px;
    margin: 10px;
  }
}
.e-page {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.e-page_group {
  display: flex;
  align-items: center;
}
.e-page_group_item {
  width: 32px;
  height: 32px;
  display: block;
  background: #F8F5E7;
  margin: 0 5px;
}
.e-page_group_item a {
  font-size: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4D3D1F;
  transition: all, 0.5;
}
.e-page_group_item a svg {
  fill: #4D3D1F;
}
.e-page_group_item a:hover {
  background: #B19660;
  color: #F8F5E7;
}
.e-page_group_item a:hover svg {
  fill: #F8F5E7;
}
.e-page_group_item--act {
  background: #B19660;
}
.e-page_group_item--act a {
  color: #F8F5E7;
}

.l-header {
  width: 100%;
  height: 100px;
  background: #F8F5E7;
  display: flex;
  justify-content: space-between;
  box-shadow: rgba(77, 61, 31, 0.25) 0 0 10px;
}
.l-header_logo a {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}
.l-header_logo {
  background: url("/img/logo_b.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 120px;
  margin: 20px 40px;
}
.l-header_nav {
  display: none;
}

.burgar-show {
  overflow: hidden;
}

.burgar-show .l-header .l-header_nav {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100vh;
  display: block !important;
  z-index: 100;
  background: #F8F5E7;
  box-shadow: inset rgba(77, 61, 31, 0.25) 0 0 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: scroll;
  padding: 20px 30% 220px;
  margin-bottom: 40px;
}
.burgar-show .l-header .l-header_nav_item {
  width: 100%;
  text-align: center;
  padding: 0;
  margin: 40px 0;
  position: relative;
  overflow: unset;
}
.burgar-show .l-header .l-header_nav_item--title {
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  margin: 10px 0;
}
.burgar-show .l-header .l-header_nav_item--link {
  width: 100%;
  display: block;
  font-size: 16px;
  padding: 5px 20px;
  margin: 10px 0;
  cursor: pointer;
}
.burgar-show .l-header .l-header_nav_item a:hover {
  color: #B19660;
}

.l-header_nav_item--act {
  color: #B19660 !important;
}

.l-header_nav--m {
  display: flex;
  align-items: center;
  margin-top: 0;
}

.l-header_nav--logout p {
  color: #4D3D1F;
  margin-right: 40px;
}
.l-header_nav--logout a {
  font-size: 14px;
  color: #887744;
  margin-left: 20px;
}
.l-header_nav--logout a:hover {
  color: #B19660;
}

.o-grid__item {
  z-index: 102;
  width: 100px;
  height: 100px;
  background: #4D3D1F;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.l-hamburger:focus {
  outline: none;
}

.l-hamburger span {
  display: block;
  position: absolute;
  top: 19px;
  left: 8px;
  right: 8px;
  height: 2px;
  border-radius: 10px;
  background: #F8F5E7;
}

.l-hamburger span::before, .l-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  content: "";
  background: #F8F5E7;
}

.l-hamburger span::before {
  top: -7px;
}

.l-hamburger span::after {
  bottom: -7px;
}

.l-hamburger--htx {
  background-color: transparent;
}

.l-hamburger--htx span {
  transition: background 0s 0.3s;
}

.l-hamburger--htx span::before,
.l-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.l-hamburger--htx span::before {
  transition-property: top, transform;
}

.l-hamburger--htx span::after {
  transition-property: bottom, transform;
}

/* active  menu open */
.burgar-show .l-header {
  padding: 0 0;
  background-color: #F8F5E7;
}

.burgar-show .l-header_logo {
  background: url("/img/logo_b.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.burgar-show .l-header_nav_item a {
  color: #4D3D1F;
  text-shadow: none;
}

.l-hamburger--htx.is-active span {
  background: none;
}

.l-hamburger--htx.is-active span::before {
  top: 0;
  background-color: #F8F5E7;
  transform: rotate(35deg);
}

.l-hamburger--htx.is-active span::after {
  bottom: 0;
  background-color: #F8F5E7;
  transform: rotate(-35deg);
}

.l-hamburger--htx.is-active span::before,
.l-hamburger--htx.is-active span::after {
  transition-delay: 0s, 0.3s;
}

.l-page {
  margin-top: 20px;
}

.l-page_group {
  display: inline-flex;
  align-items: center;
  margin-right: 5px;
}

.l-page_group_item {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 5px;
  color: #CBBA84;
  font-size: 14px;
  border: 1px solid #F8F5E7;
}
.l-page_group_item:hover {
  border: 1px solid #4D3D1F;
  background: #4D3D1F;
  color: #fff;
}
.l-page_group_item:first-child {
  margin-left: 0;
}

.l-page_group_item--active {
  background: #4D3D1F;
  color: #fff;
  border: 1px solid #4D3D1F;
}

.l-page_group_txt {
  border: 1px solid #CBBA84;
  width: 50px;
  height: 28px;
  padding: 0 10px;
  margin: 0 5px;
  outline: none;
}

.l-mask {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 66;
  background: rgba(0, 0, 0, 0.7);
}

.l-mask--zindex99 {
  z-index: 99;
}

.l-mask_content {
  min-width: 300px;
  max-height: 80%;
  overflow-y: overlay;
  padding: 60px 20px 40px;
  background: #fff;
  text-align: center;
}
.l-mask_content img {
  width: 50%;
}

.l-mask_content_w500 {
  width: 500px;
}
.l-mask_content_title{
  font-weight: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}

.l-index {
  width: 100%;
}
.l-index_logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 80px 0 60px;
}
.l-index_logo img {
  width: 200px;
}
.l-index_btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.l-index_list {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin-bottom: 120px;
}

.l-board {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 120px;
}
.l-board_list {
  width: 100%;
  max-width: 1000px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: rgba(77, 61, 31, 0.25) 0 0 10px;
  padding: 20px;
  margin-bottom: 40px;
}
.l-board_list--title {
  width: 100%;
  display: flex;
  justify-content: start;
  font-size: 20px;
  font-weight: bold;
  color: #4D3D1F;
  margin-bottom: 20px;
}

.l-board_list--lg {
  max-width: 1200px;
}

@media (max-width: 1220px) {
  .l-board_list--lg {
    max-width: 96%;
  }
}
@media (max-width: 1060px) {
  .l-board {
    margin-bottom: 80px;
  }
  .l-board_list {
    max-width: 680px;
    padding: 20px;
    margin-bottom: 20px;
  }
  .l-board_list--lg {
    max-width: 92%;
  }
}
.l-privacy {
  width: 100%;
  display: flex;
  justify-content: center;
}
.l-privacy_content {
  width: 100%;
  padding: 40px;
}
.l-privacy_title {
  width: 100%;
  display: flex;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 10px;
}
.l-privacy_title--no {
  width: 40px;
}
.l-privacy_txt {
  margin-left: 40px;
  line-height: 1.6;
  margin-bottom: 30px;
}

@media (max-width: 780px) {
  .l-privacy {
    margin: 60px 0 100px;
  }
}
.h-flex {
  display: flex;
}

.h-flex--row {
  flex-direction: row;
}

.h-flex--column {
  flex-direction: column;
}

.h-items--start {
  align-items: start;
}

.h-items--center {
  align-items: center;
}

.h-items--end {
  align-items: flex-end;
}

.h-justify--start {
  justify-content: start;
}

.h-justify--center {
  justify-content: center;
}

.h-justify--btw {
  justify-content: space-between;
}

.h-justify--end {
  justify-content: end;
}

.h-flex--wrap {
  flex-wrap: wrap;
}

.h-relative {
  position: relative;
}

.h-absolute {
  position: absolute;
}

.h-top10 {
  top: 13px;
}

.h-right-20 {
  right: -20px;
}

.h-right10 {
  right: 10px;
}

.h-txt--left {
  text-align: left;
}

.h-txt--right {
  text-align: right;
}

.h-txt--center {
  text-align: center;
}

.h-txt-keep {
  word-break: keep-all;
}

.h-txt--wrap {
  white-space: break-spaces;
  line-height: 1.1;
  display: flex;
  align-items: center;
}

.h-txt--khaki {
  color: #CBBA84;
}

.h-txt--brown {
  color: #887744;
}

.h-txt--red {
  color: #aa0000;
}

.h-txt--gold {
  color: #B19660;
}

.h-txt--bold {
  font-weight: bold;
}

.h-lh16 {
  line-height: 1.6;
}

.h-mt5 {
  margin-top: 5px;
}

.h-mt10 {
  margin-top: 10px;
}

.h-mt15 {
  margin-top: 15px;
}

.h-mt20 {
  margin-top: 20px;
}

.h-mt30 {
  margin-top: 30px;
}

.h-mt40 {
  margin-top: 40px;
}

.h-mt60 {
  margin-top: 60px;
}

.h-mb5 {
  margin-bottom: 5px;
}

.h-mb10 {
  margin-bottom: 10px;
}

.h-mb20 {
  margin-bottom: 20px;
}

.h-mb40 {
  margin-bottom: 40px;
}

.h-mr5 {
  margin-right: 5px;
}

.h-mr10 {
  margin-right: 10px;
}

.h-mr20 {
  margin-right: 20px;
}

.h-mr60 {
  margin-right: 60px;
}

.h-mr80 {
  margin-right: 80px;
}

.h-ml10 {
  margin-left: 10px;
}

.h-ml20 {
  margin-left: 20px;
}

.h-ml30 {
  margin-left: 30px;
}

.h-ml40 {
  margin-left: 40px;
}

.h-pb20 {
  padding-bottom: 20px;
}

.h-pr20 {
  padding-right: 20px;
}

.h-scroll--none {
  overflow: hidden;
}

.h-none--rd {
  display: none;
}

.h-bord--none {
  border-bottom: none;
}

.h-bord--gold {
  border-bottom: 1px solid #F8F5E7;
}

.h-bord--dark {
  border-bottom: 1px solid #887744;
}

.h-bord--brown {
  border-bottom: 1px solid #D5D0C7;
}

.h-w120{ width: 120px; }
.h-w140{ width: 140px; }

.h-w80 {
  min-width: auto;
  width: 60px;
  padding: 0 10px;
}

@media (max-width: 1060px) {
  .h-mr80 {
    margin-right: 40px;
  }
  .h-mr60 {
    margin-right: 20px;
  }

  .h-w80 {
    width: 60px;
    padding: 0 10px;
  }
}


html, body {
  font-family: Helvetica, "Microsoft JhengHei", "微軟正黑體", sans-serif;
  font-size: 16px;
  position: relative;
  background: #DED2A9;
  color: #4D3D1F;
  box-sizing: border-box;
  letter-spacing: 1px;
  scroll-behavior: smooth;
  z-index: -1;
}

a, button, input, select {
  transition: all, 0.5s;
}

form {
  width: 100%;
}

i {
  color: #4D3D1F;
}

.loginAuto {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loginBg {
  width: 100%;
  max-width: 600px;
  padding: 60px 60px 80px;
  background: #fff;
  box-shadow: rgba(77, 61, 31, 0.25) 0 0 10px;
}

.login-img {
  display: block;
  width: 50%;
  margin: 0 auto 20px;
}

.login-title {
  font-size: 20px;
  font-weight: bold;
  color: #887744;
  text-align: center;
  margin-bottom: 40px;
}

.codeImg {
  width: 120px;
  height: 42px;
}

.error {
  color: #aa0000;
  font-weight: normal;
  margin-top: 5px;
}

.tips {
  font-size: 14px;
  color: #aa0000;
  margin-top: 5px;
}

.container {
  width: 100%;
  min-height: 100vh;
  overflow: auto;
  position: relative;
}

.container::before {
  content: url("/img/deco_clock.png");
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
  z-index: -1;
}

.loading {
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
}

.loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  background: #B19660;
  width: 3px;
  height: 24px;
  transform: translateX(-50%);
}

@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}




/* datepicker */
.ui-datepicker{
  border: 1ps solid #B19660 !important;
  color: #4D3D1F !important;
}
.ui-datepicker-header{
  height: 50px;
  line-height: 50px;
  color: #4D3D1F !important;
  background: #e9e5e3 !important;
  margin-bottom: 10px;
  border: none  !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ui-datepicker-year{
  width: 86px !important;
  margin: 0 12px;
  padding-right: 8px;
  text-align: center;
  font-size: 18px !important;
  color: #4D3D1F;
  border: none;
  background-color: #e9e5e3;
  outline: none;
}

.ui-datepicker-prev, .ui-datepicker-next {
  width: 20px;
  height: 20px;
  text-indent: 9999px;
  border: none !important;
  border-radius: 100% !important;
  cursor: pointer;
  overflow: hidden;
  margin-top: 12px;
}

.ui-datepicker-prev{
  float: left;
  margin-left: 12px;
}
.ui-datepicker-prev::after{
    margin: -43px 0px 0px 8px;
}
.ui-datepicker-next{
  float: right;
  margin-right: 12px;
}
.ui-datepicker-next::after{
    margin: -43px 0px 0px 6px;
}
.ui-datepicker-prev::after, .ui-datepicker-next::after{
  content: '';
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-left: none !important;
  border-bottom: none !important;
}
.ui-datepicker-prev:hover, .ui-datepicker-next:hover, .ui-datepicker-prev:hover::after, .ui-datepicker-next:hover::after{
  border: none !important;
  background: #e9e5e3 !important;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next{
  top: 0px !important;
}

.ui-prev_icon{
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  z-index: 5;
  background: #e9e5e3 !important;
}
.ui-next_icon{
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  z-index: 5;
  background: #e9e5e3 !important;
}

.ui-datepicker-title{
  text-align: center;
}

.ui-datepicker-calendar{
  width: 100%;
  text-align: center;
}

.ui-datepicker-calendar thead tr th span{
    display: block;
    width: 30px !important;
    color: #B19660 !important;
    margin-bottom: 5px;
    font-size: 13px;
}

.ui-state-default{
  display: block !important;
  text-decoration: none !important;
  color: #4D3D1F !important;
  line-height: 30px;
  font-size: 12px;
  background: transparent !important;
  border: none !important;
  text-align: center !important;
}
.ui-state-default:hover{
  background: #F8F5E7 !important;
  border: none !important;
}
.ui-state-highlight{
  color: #B19660 !important;
  background: transparent !important;
  border: none !important;
  font-weight: bold !important;
}
.ui-state-active{
  font-weight: bold !important;
  color: #B19660 !important;
  background: transparent !important;
}
.ui-datepicker-unselectable .ui-state-default{
    color: #eee;
    border: 2px solid transparent;
}
  
    



/*# sourceMappingURL=frontend.css.map */