* {
  box-sizing: border-box;
}

body {
  padding-top: 80px;
  margin: 0;
  background: #f6f7fb;
  color: #1f2937;
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  --header-height: 61px;
}
@media (min-width: 992px) {
  body {
    --header-height: 75px;
  }
}

a {
  word-break: break-all;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #dfdfdf;
  padding: 10px;
  box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.15);
  z-index: 999;
  font-size: 15px;
  line-height: 2em;
}
@media (min-width: 992px) {
  header {
    padding: 14px 20px;
    font-size: 18px;
  }
}
header > .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: min(1180px, 100% - 32px);
  margin: 0 auto;
}
header .brand-logo img {
  display: block;
  height: 40px;
}
@media (min-width: 992px) {
  header .brand-logo img {
    height: 46px;
  }
}
header .acts {
  display: none;
}
@media (min-width: 1280px) {
  header .acts {
    display: block;
    flex: 1;
    padding-left: 30px;
  }
}
header .acts #main-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
}
header .acts #main-menu a {
  color: inherit;
  text-decoration: none;
  font-size: 15px;
}
header .acts #main-menu li {
  list-style: none;
}
header .acts #main-menu .menu-item-has-children .sub-menu {
  display: none;
}
header .ham {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
}
@media (min-width: 1280px) {
  header .ham {
    display: none;
  }
}
header .ham div {
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-bottom: 1px solid #000;
  transition: all 0.3s;
  transform-origin: center center;
}
header .ham div:first-child {
  top: calc(50% - 10px);
}
header .ham div:last-child {
  top: calc(50% + 10px);
}
header .ham.opened div:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
header .ham.opened div:last-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
header .ham.opened div:nth-child(2) {
  opacity: 0;
}

#nav-mob {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-height));
  background: #fff;
  padding: 30px 20px;
  z-index: 999;
}
@media (min-width: 1280px) {
  #nav-mob {
    display: none !important;
  }
}
#nav-mob #main-menu-mob {
  margin: 0;
  padding: 0;
  text-align: center;
}
#nav-mob #main-menu-mob li {
  list-style: none;
}
#nav-mob #main-menu-mob li a {
  display: block;
  padding: 10px 0;
  font-size: 20px;
  color: #000;
  text-decoration: none;
}

footer {
  background: #fff;
  padding: 40px 0;
  font-size: 15px;
  line-height: 2em;
}
@media (min-width: 992px) {
  footer {
    font-size: 18px;
  }
}
footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 800px) {
  footer .info {
    display: flex;
    justify-content: space-between;
  }
}
footer .logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 20px;
  margin-bottom: 15px;
}
@media (min-width: 425px) {
  footer .logo {
    justify-content: flex-start;
  }
}
@media (min-width: 800px) {
  footer .logo {
    margin-right: 50px;
  }
}
@media (min-width: 992px) {
  footer .logo {
    margin-right: 100px;
    align-items: center;
  }
}
footer .logo img {
  display: block;
  width: auto;
  height: 60px;
}
@media (min-width: 992px) {
  footer .logo img {
    height: 100px;
  }
}
footer .logo img:first-child {
  height: 50px;
}
@media (min-width: 992px) {
  footer .logo img:first-child {
    height: 80px;
  }
}
@media (min-width: 800px) {
  footer .content {
    flex: 1;
  }
}
footer a {
  color: #e5004d;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

#fixed-btn {
  position: fixed;
  bottom: 100px;
  right: 15px;
  z-index: 2;
  background: #e7004f;
  color: #fff;
  width: 60px;
  height: 60px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background 0.2s;
  font-size: 15px;
  font-weight: 700;
}
@media (min-width: 1100px) {
  #fixed-btn {
    width: 80px;
    height: 80px;
    right: calc(50% - 500px);
    transform: translate(50%, 0);
    font-size: 18px;
  }
}
#fixed-btn:hover {
  background: #000;
}/*# sourceMappingURL=style.css.map */