@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "微軟正黑體", "Microsoft JhengHei"," Noto Sans CJK","Xingothic TC","Droid Sans Fallback","PingFang TC","Heiti TC","LiHei Pro","Arial","Helvetica","sans-serif","PMingLiU" !important;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.top-bottom {
  margin: 60px 15px;
}

a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
}

ol {
  list-style: decimal;
  padding-left: 18px;
}

hr {
  border-top: 2px solid rgba(0, 0, 0, 0.15);
}

img {
  width: 100%;
}

/*------------------  NAV -----------------------*/
header {
  padding: 0 10% !important;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  background: #ffffff00 !important;
}

header.navShadow {
  background: #fff !important;
}

nav {
  padding: 15px 0 !important;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.logo {
  width: 30%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo img {
  width: 160px;
}

.nav-wrapper {
  width: 80%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.nav-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  padding: 0;
  position: relative;
  margin: 0;
}

nav ul li:not(:first-child) {
  margin-left: 15px;
}

nav ul li:last-child {
  margin-right: 24px;
}

nav ul li a {
  display: inline-block;
  outline: none;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.2px;
  font-weight: 600;
}

#nav:checked + .nav-btn {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

#nav:checked + .nav-btn i {
  background: #000;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

#nav:checked + .nav-btn i:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(180deg);
      -ms-transform: translateY(6px) rotate(180deg);
          transform: translateY(6px) rotate(180deg);
}

#nav:checked + .nav-btn i:nth-child(2) {
  opacity: 0;
}

#nav:checked + .nav-btn i:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(90deg);
      -ms-transform: translateY(-6px) rotate(90deg);
          transform: translateY(-6px) rotate(90deg);
}

#nav:checked ~ .nav-wrapper {
  z-index: 9990;
  opacity: 1;
  display: block;
}

#nav:checked ~ .nav-wrapper ul li a {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.hidden {
  display: none;
}

/* hover éŽåº¦æ•ˆæžœ */
.nav-wrapper a {
  display: block;
  font-size: 16px;
  color: #0f4c81;
  text-decoration: none;
  padding: 5px 15px;
}

.target {
  position: absolute;
  border-bottom: 4px solid transparent;
  z-index: -1;
  -webkit-transform: translateX(-60px);
  -ms-transform: translateX(-60px);
      transform: translateX(-60px);
}

.nav-wrapper a, .target {
  -webkit-transition: all .35s ease-in-out;
  -o-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}

/*------------------  NAV -----------------------*/
/*------------------  footer -----------------------*/
.footer-text {
  background: #221e1f;
  width: 100%;
}

.footer-text h4 {
  color: #fff;
}

.footer-text p {
  margin-bottom: 0px;
  color: #0f4c81;
  font-size: 12px;
}

.footer-Copyright {
  text-align: center;
  padding: 5px;
}

.footer-box img {
  width: 150px;
}

footer {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1a75a2), to(#0f4c81)) !important;
  background-image: -webkit-linear-gradient(top, #1a75a2 0%, #0f4c81 100%) !important;
  background-image: -o-linear-gradient(top, #1a75a2 0%, #0f4c81 100%) !important;
  background-image: linear-gradient(180deg, #1a75a2 0%, #0f4c81 100%) !important;
}

footer .copyright {
  background: transparent !important;
}

.footer-box-img img {
  width: 200px;
  margin: 10px 0;
}

.footer-box-ul {
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

.footer-box-ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 3px 0px 0px 0;
  color: #fff !important;
}

.footer-box-ul li p {
  margin: 0;
  color: #fff !important;
}

.footer-box-ul li i {
  padding-right: 10px;
}

/*------------------  footer  -----------------------*/
@media screen and (max-width: 1440px) {
  header {
    padding: 0 0 0 5% !important;
  }
}

@media screen and (max-width: 1024px) {
  /*------------------  NAV -----------------------*/
  header {
    padding: 0px 5% !important;
  }
  nav ul li:last-child {
    margin-right: 0;
  }
  .nav-wrapper a {
    font-size: 17px;
    padding: 7px 0px;
  }
  /*------------------  NAV -----------------------*/
}

@media screen and (max-width: 864px) {
  /*------------------  NAV -----------------------*/
  header {
    position: fixed;
    cursor: pointer;
    background: #fff;
    width: 100%;
    z-index: 3;
  }
  .logo {
    padding: 0;
    width: 35%;
  }
  .nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #fff;
    opacity: 0;
    display: none;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .nav-wrapper ul {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
  }
  .nav-wrapper ul li {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .logo02 {
    display: none;
  }
  .nav-wrapper ul li:nth-child(1) a {
    -webkit-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .nav-wrapper ul li:nth-child(2) a {
    -webkit-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .nav-wrapper ul li:nth-child(3) a {
    -webkit-transition-delay: 0.4s;
         -o-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .nav-wrapper ul li:nth-child(4) a {
    -webkit-transition-delay: 0.5s;
         -o-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .nav-wrapper ul li:not(:first-child) {
    margin-left: 0;
  }
  .nav-wrapper ul li a {
    padding: 10px 24px;
    opacity: 0;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
    -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
            transform: translateX(-20px);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    font-size: 20px;
  }
  .nav-btn {
    position: fixed;
    right: 10px;
    top: 6px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50%;
  }
  .nav-btn i {
    display: block;
    width: 20px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    margin-left: 14px;
  }
  .nav-btn i:nth-child(1) {
    margin-top: 16px;
  }
  .nav-btn i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }
  .nav-btn i:nth-child(3) {
    margin-top: 4px;
  }
  /*------------------  NAV -----------------------*/
  footer .footer-info dl.foomenu dd {
    font-size: 1.2rem !important;
    border-bottom: solid 1px #fff;
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
  }
  footer .footer-info dl.foomenu dd::after {
    content: "" !important;
    margin: 0;
  }
  .footer-box img {
    width: 160px;
    padding-top: 0px;
  }
  .footer-box-ul {
    display: block;
    padding: 0;
  }
  .footer-box-ul li {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  /*------------------  NAV -----------------------*/
  .target {
    position: initial;
    display: none;
  }
  /*------------------  NAV -----------------------*/
  /*------------------  footer  -----------------------*/
  .footer-text-ul li {
    font-size: 16px;
  }
  .footer-text-ul li:before {
    padding: 0;
  }
  .footer-text-ul li a {
    padding: 0 15px;
    font-weight: 300;
    font-size: 15px;
    color: #fff !important;
  }
  .footer-text-contact li {
    padding: 0 15px;
    font-weight: 300;
    font-size: 15px;
    color: #fff !important;
  }
  nav {
    padding: 7px 0 !important;
  }
  /*------------------  footer  -----------------------*/
}

@media screen and (max-width: 450px) {
  /*------------------  NAV -----------------------*/
  .logo img {
    width: 200px;
  }
  .nav-wrapper ul li {
    text-align: center;
  }
  /*------------------  NAV -----------------------*/
  /*------------------  footer  -----------------------*/
  .footer-text-ul li a, .footer-text-contact li {
    padding: 0px 7px;
  }
  .footer-text img {
    width: 280px;
    margin-bottom: 15px;
  }
  /*------------------  footer  -----------------------*/
}
/*# sourceMappingURL=menu.css.map */