@charset "UTF-8";
@import url(//fonts.googleapis.com/earlyaccess/notosanstc.css);

* {
  list-style: none;
  font-family: "Noto Sans TC","WenQuanYi Zen Hei","Heiti TC",Helvetica,"Microsoft YaHei","Microsoft JhengHei",Arial,sans-serif;
  text-decoration: none !important;
}

a:focus {
  outline: 0;
}

img,
object {
  width: 100%;
}

input,
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  padding: 0;
  margin: 0;
}

/* ---------
如內容超過改變卷軸樣式
--------------------- */
body {
  position: relative;
  padding: 0 0 120px;
}

body::-webkit-scrollbar {
  background: transparent;
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #fff;
}

body::-webkit-scrollbar-thumb {
  background: #f48500;
}

/* -----------------
RWD手機及桌機顯現判斷
----------------- */
@media screen and (min-width: 1279.98px) {
  .m_show {
    display: none !important;
  }
}

@media screen and (max-width: 1279.97px) and (min-width: 1023.98px) {
  .m_show {
    display: none !important;
  }
}

@media screen and (max-width: 1023.97px) {
  .m_none {
    display: none !important;
  }
}

/* ------------------
導覽列
------------------------- */
header {
  width: 100%;
  height: 80px;
  position: absolute;
  z-index: 99;
}

@media screen and (max-width: 1023.97px) {
  header {
    height: 50px;
  }
}

header .logoActive {
  display: none;
}

@media screen and (max-width: 1023.97px) {
  header .logoActive {
    display: inline-block;
  }
}

@media screen and (max-width: 1023.97px) {
  header .logoOriginal {
    display: none;
  }
}

header.active {
  position: fixed;
  -webkit-animation: nav 1s both;
          animation: nav 1s both;
  height: 65px;
  background: #333;
}

@media screen and (max-width: 1023.97px) {
  header.active {
    height: 50px;
  }
}

header.active .logoActive {
  display: inline-block;
}

header.active .logoOriginal {
  display: none;
}

nav {
  width: 80%;
  height: 100%;
  min-width: 1160px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  padding: 0 0 0 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1279.97px) and (min-width: 1023.98px) {
  nav {
    min-width: 920px;
  }
}

@media screen and (max-width: 1023.97px) {
  nav {
    width: 100%;
    min-width: 300px;
    padding: 0 0 0 100px;
    background: #333;
  }
}

.nav__logo {
  width: 200px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 0;
}

@media screen and (max-width: 1023.97px) {
  .nav__logo {
    width: 120px;
    left: 8px;
  }
}

.nav__logo::before {
  content: '';
  width: 0;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}

.nav__logo a {
  display: inline-block;
  vertical-align: middle;
}

.nav__menu {
  width: 100%;
  height: 100%;
  text-align: right;
  font-size: 0;
}

.nav__menu::before {
  content: '';
  width: 0;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}

.nav__menu a {
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  background: #3b3b3b;
  padding: 0 32px;
  border-radius: 42px;
  margin: 0 0 0 12px;
  -webkit-transition: .4s;
  transition: .4s;
}

@media screen and (max-width: 1023.97px) {
  .nav__menu a {
    padding: 0 4px;
    margin: 0 8px 0 0;
  }
}

.nav__menu a:hover {
  background: #f48500;
}

.nav__menu a.diff {
  background: #57bba2;
}

@media screen and (max-width: 1023.97px) {
  .nav__menu a.diff {
    background: transparent;
  }
}

.nav__menu a::before {
  content: '';
  width: 0;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}

.nav__menu p {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}

.nav__menu .keypo {
  width: 60px;
  display: inline-block;
  vertical-align: middle;
}

/* ------------------
footer
------------------------- */
footer {
  width: 100%;
  padding: 36px 0;
  text-align: center;
  background: #f48500 -webkit-gradient(linear, left top, right top, from(#eb9b00), to(#f48500));
  background: #f48500 linear-gradient(90deg, #eb9b00, #f48500);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}

footer .title {
  display: block;
  width: 185px;
  margin: 0 auto 8px;
  font-size: 20px;
}

footer p {
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
}

@media screen and (max-width: 1023.97px) {
  footer .lineBreak {
    display: block;
  }
}

@media screen and (max-width: 1023.97px) and (min-width: 768px) and (max-width: 1023.97px) {
  footer .lineBreak {
    display: inline;
  }
}

footer a {
  color: #fff;
}

/* ------------------
內容框架
------------------------- */
.container {
  width: 100%;
}

.layout {
  width: 80%;
  min-width: 1160px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1279.97px) and (min-width: 1023.98px) {
  .layout {
    min-width: 920px;
  }
}

@media screen and (max-width: 1023.97px) {
  .layout {
    width: 85%;
    min-width: 300px;
    max-width: 640px;
  }
}

/* ------------------
置頂
------------------------- */
.fixed_btn-top {
  width: 100%;
  height: 42px;
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: .4s;
  transition: .4s;
}

.fixed_btn-top.active {
  opacity: 1;
}

.fixed_btn-top a {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 0;
  left: 100%;
  background: #333 url(../Image/icon/btn-top.png) no-repeat 50%;
  background-size: contain;
  -webkit-transition: .4s;
  transition: .4s;
  pointer-events: auto;
  border-radius: 50%;
}

.fixed_btn-top a:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  background-color: #f48500;
}

@media screen and (max-width: 1023.97px) {
  .fixed_btn-top a {
    left: auto;
    right: 0;
  }
}

.light-box {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  text-align: center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transition: .6s;
  transition: .6s;
  font-size: 0;
}

.light-box.active {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  background: rgba(51, 51, 51, 0.8);
  -webkit-transition: -webkit-transform .6s;
  transition: -webkit-transform .6s;
  transition: transform .6s;
  transition: transform .6s, -webkit-transform .6s;
}

.light-box.active .content {
  display: inline-block;
  vertical-align: middle;
}

.light-box::before {
  content: '';
  width: 0;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}

.light-box .content {
  width: 60%;
  max-width: 960px;
  position: relative;
  display: none;
}

@media screen and (max-width: 1023.97px) {
  .light-box .content {
    width: 100%;
  }
}

.light-box .btn-close {
  width: 64px;
  height: 64px;
  top: 0;
  left: 100%;
  position: absolute;
  cursor: pointer;
  -webkit-transition: .6s;
  transition: .6s;
}

@media screen and (max-width: 1023.97px) {
  .light-box .btn-close {
    top: auto;
    left: auto;
    bottom: 100%;
    right: 0;
  }
}

.light-box .btn-close::before, .light-box .btn-close::after {
  content: '';
  width: 60%;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #fff;
}

.light-box .btn-close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.light-box .btn-close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.send-box {
  width: 90%;
  max-width: 450px;
  margin: auto;
  background: #f48500;
  padding: 48px 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-box-shadow: 6px 6px 0 0 #fff;
          box-shadow: 6px 6px 0 0 #fff;
}

.send-box .logo {
  width: 60%;
  margin: 24px auto;
}

.send-box h2 {
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #fff;
}

.send-box h3 {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #fff;
}

@-webkit-keyframes nav {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes nav {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes aims {
  0% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
  33% {
    -webkit-transform: scale(0.8) rotate(80deg);
            transform: scale(0.8) rotate(80deg);
  }
  66% {
    -webkit-transform: scale(0.7) rotate(-40deg);
            transform: scale(0.7) rotate(-40deg);
  }
  100% {
    -webkit-transform: scale(0.6) rotate(120deg);
            transform: scale(0.6) rotate(120deg);
  }
}

@keyframes aims {
  0% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
  33% {
    -webkit-transform: scale(0.8) rotate(80deg);
            transform: scale(0.8) rotate(80deg);
  }
  66% {
    -webkit-transform: scale(0.7) rotate(-40deg);
            transform: scale(0.7) rotate(-40deg);
  }
  100% {
    -webkit-transform: scale(0.6) rotate(120deg);
            transform: scale(0.6) rotate(120deg);
  }
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateX(-5%) translateY(0);
            transform: translateX(-5%) translateY(0);
  }
  25% {
    -webkit-transform: translateX(20%) translateY(10%);
            transform: translateX(20%) translateY(10%);
  }
  50% {
    -webkit-transform: translateX(25%) translateY(-5%);
            transform: translateX(25%) translateY(-5%);
  }
  75% {
    -webkit-transform: translateX(15%) translateY(-10%);
            transform: translateX(15%) translateY(-10%);
  }
  100% {
    -webkit-transform: translateX(-5%) translateY(0);
            transform: translateX(-5%) translateY(0);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateX(-5%) translateY(0);
            transform: translateX(-5%) translateY(0);
  }
  25% {
    -webkit-transform: translateX(20%) translateY(10%);
            transform: translateX(20%) translateY(10%);
  }
  50% {
    -webkit-transform: translateX(25%) translateY(-5%);
            transform: translateX(25%) translateY(-5%);
  }
  75% {
    -webkit-transform: translateX(15%) translateY(-10%);
            transform: translateX(15%) translateY(-10%);
  }
  100% {
    -webkit-transform: translateX(-5%) translateY(0);
            transform: translateX(-5%) translateY(0);
  }
}

@-webkit-keyframes showview {
  0% {
    opacity: 0;
  }
  25% {
    opacity: .4;
  }
  50% {
    opacity: .8;
  }
  100% {
    opacity: 1;
  }
}

@keyframes showview {
  0% {
    opacity: 0;
  }
  25% {
    opacity: .4;
  }
  50% {
    opacity: .8;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes popup {
  0% {
    -webkit-transform: translateY(0) scale(0.95);
            transform: translateY(0) scale(0.95);
  }
  100% {
    -webkit-transform: translateY(-6px) scale(1);
            transform: translateY(-6px) scale(1);
  }
}

@keyframes popup {
  0% {
    -webkit-transform: translateY(0) scale(0.95);
            transform: translateY(0) scale(0.95);
  }
  100% {
    -webkit-transform: translateY(-6px) scale(1);
            transform: translateY(-6px) scale(1);
  }
}
/*# sourceMappingURL=module.css.map */