@charset "UTF-8";
/* CSS Document */
@import url(reset.css);
@import url(font-awesome.min.css);
@import url(rwdgrid.css);
@import url(textEditor.css);
@import url(contentbuilder.css);
body {
  background-color: #fff;
  background: url('../images/bg_w.png');
  font-family: 'Noto Sans TC', "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
  font-size: 13px;
}

.pc {display: block;}
.mo {display: none;}

@media (max-width: 960px) {
  .pc {display: none;}
  .mo {display: block;}
}

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

*:focus {
  outline: none;
}

address {
  font-style: normal;
}

/*css3*/
a {
  color: #000;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a:hover {
  color: #282322;
}

[class*='col-'] {
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.b-box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

div.titan {
  /*--隱藏開影音、開相簿--*/
  display: none;
}

.col-1 {
  width: 100%;
}

.col-2 {
  width: 50%;
}

.col-3 {
  width: 33.33%;
}

.col-4 {
  width: 25%;
}

.col-5 {
  width: 20%;
}

a.btn_color1 {
  /*按鈕主色1*/
  color: #fff;
  background-color: #516190;
}

a.btn_color1:hover {
  background-color: #C85A56;
}

a.btn_color2 {
  /*按鈕主色2*/
  color: #fff;
  background-color: #A0A0A0;
}

a.btn_color2:hover {
  background-color: #999;
}

input[type="text"] {
  -webkit-appearance: none;
}

textarea {
  -webkit-appearance: none;
}
/*
.bgLine::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -700px;
  z-index: -1;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background: -webkit-repeating-linear-gradient(left, #f3f3f3 0, #f3f3f3 1px, transparent 1px, transparent 349px, #f3f3f3 349px);
  background: -o-repeating-linear-gradient(left, #f3f3f3 0, #f3f3f3 1px, transparent 1px, transparent 349px, #f3f3f3 349px);
  background: repeating-linear-gradient(90deg, #f3f3f3 0, #f3f3f3 1px, transparent 1px, transparent 349px, #f3f3f3 349px);
}
*/
@media (max-width: 1280px) {
  .bgLine::after {
    display: none;
  }
}

.outerWrap {
  position: relative;
  padding-top: 90px;
  overflow-x: hidden;
}

.wrap {
  width: 100%;
  max-width: 1420px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.wrap.full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.label {
  padding: 5px 7px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
}

/*-moduleBox--*/
.moduleBox {
  position: fixed;
  left: 50%;
  top: 48%;
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition-property: top, opacity, visibility;
  -o-transition-property: top, opacity, visibility;
  transition-property: top, opacity, visibility;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.moduleBox.show {
  top: 50%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.moduleMask {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1003;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.moduleMask.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*****網頁頭*****/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 800;
  background-color: #f6f7f7;
  background: url('../images/bg_w.png');
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

header .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
}

header .logo {
  width: 322px;
}

header .logo a {
  display: block;
  width: 100%;
  height: 75px;
  background: url("../images/logo.png") no-repeat;
  background-size: contain;
  text-indent: -9999px;
}

/*menu*/
.menuBox {
  margin-left: auto;
}

.menu > li {
  position: relative;
  display: inline-block;
}

.menu > li > a {
  position: relative;
  display: block;
  padding: 33px 25px;
  font-size: 16px;
  letter-spacing: .025em;
  color: #111;
}

@media (max-width: 1366px) {
  .menu > li > a {
    padding-left: 14px;
    padding-right: 14px;
  }
}

.menu > li > a.current, .menu > li > a:hover {
  color: #2a3c4f;
}

.menu > li:hover > a::after {
  width: 100%;
}

.menu > li:hover .submenu {
  top: 100%;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  height: 300px;
  overflow-y: auto;
}

.menu .submenu {
  position: absolute;
  left: 50%;
  top: 110%;
  z-index: 99;
  margin-left: -65px;
  width: 130px;
  text-align: center;
  border-top: 3px solid #282322;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-box-shadow: 0px 5px 14.85px 0.15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 14.85px 0.15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.menu .submenu a {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
  color: #666;
  background-color: #fff;
}

.menu .submenu a:hover {
  color: #fff;
  background-color: #282322;
}

/*手機menu*/
.m_menu {
  display: none;
}

.contentBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1180px) {
  .contentBox {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.contentBox .leftBox {
  width: 350px;
  margin-right: 40px;
  padding-right: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-right: 1px solid #f3f3f3;
}

@media (max-width: 1180px) {
  .contentBox .leftBox {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
  }
}

.contentBox .rightBox {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

/*****banner******/
.bannerArea {
  clear: both;
  position: relative;
}

.goTopStyle {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 100%;
  font-size: 13px;
  letter-spacing: .1em;
  color: #fff;
  font-family: "Poppins", "Noto Sans TC", sans-serif;
  text-transform: uppercase;
}

.goTopStyle::before {
  content: '';
  display: block;
  width: 1px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 5px;
  background-color: #7c7c7c;
}

/*頁尾資訊*/
footer {
  padding-top: 40px;
  padding-bottom: 80px;
  background-color: #101010;
  background: url('../images/bg_b.png');
  border-top: 3px solid #2a3c4f;
  color: #fff;
}

@media (max-width: 960px) {
  footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

footer .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 25px;
}

@media (max-width: 960px) {
  footer .wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 0;
  }
}

footer .leftBox,
footer .rightBox {
  width: calc(50% - 60px);
}

@media (max-width: 960px) {
  footer .leftBox,
  footer .rightBox {
    width: 100%;
  }
}

footer .rightBox {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (max-width: 960px) {
  footer .rightBox {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 10px;
    margin-top: 20px;
    border-top: 1px solid #282828;
  }
}

@media (max-width: 960px) {
  footer .goTopStyle {
    display: none;
  }
}

.downLogo {
  width: 272px;
  margin-bottom: 20px;
}

@media (max-width: 960px) {
  .downLogo {
    display: none;
  }
}

@media (max-width: 320px) {
  .downLogo {
    width: 100%;
  }
}

.downLogo img {
  display: block;
  width: 100%;
}

.downMenu {
  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;
  max-width: 340px;
}

@media (max-width: 960px) {
  .downMenu {
    max-width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.downMenu li {
  padding-top: 12px;
}

@media (min-width: 961px) {
  .downMenu li {
    padding-left: 50px;
    text-align: right;
  }
}

@media (max-width: 960px) {
  .downMenu li {
    padding-right: 20px;
  }
}

.downMenu a {
  font-size: 15px;
  letter-spacing: .025em;
  color: #eee;
}

.downMenu a:hover {
  color: #fff;
}

.copyright {
  margin-top: 20px;
  font-size: 14px;
  color: #eee;
}

.footerCompanyName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-size: 18px;
  letter-spacing: .025em;
  margin-bottom: 25px;
}

@media (max-width: 480px) {
  .footerCompanyName {
    -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;
    margin-bottom: 12px;
  }
}

.footerCompanyName .en {
  font-size: 14px;
  letter-spacing: .05em;
  padding-left: 8px;
}

@media (max-width: 480px) {
  .footerCompanyName .en {
    padding-left: 0;
    padding-top: 2px;
  }
}

.contactBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 480px) {
  .contactBox {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.contactBox .title {
  margin-right: 20px;
  font-size: 15px;
  font-family: "Poppins", "Noto Sans TC", sans-serif;
  font-weight: 200;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contactBox a {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  color: #767676;
  overflow: hidden;
}

.contactBox a:hover img {
  opacity: 0.7;
}

.contactBox img {
  display: block;
  width: 100%;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.contactBox .icon-map {
  width: 11px;
  height: 15px;
}

.contactBox .icon-tel {
  width: 12px;
  height: 14px;
}

.contactBox .icon-mail {
  width: 17px;
  height: 12px;
}

.contactBox.header a {
  width: 42px;
  height: 42px;
  margin-right: 0;
  margin-left: 12px;
  color: #050505;
}

.contactBox.header a::after {
  background-color: #282322;
}

.contactBox.header a:hover {
  color: #fff;
}

.contactBox.header .icon-map {
  width: 16px;
  height: 21px;
}

.contactBox.header .icon-tel {
  width: 16px;
  height: 21px;
}

.contactBox.header .icon-mail {
  width: 19px;
  height: 16px;
}

.contactBox.footer {
  margin-bottom: 40px;
}

@media (max-width: 480px) {
  .contactBox.footer {
    margin-bottom: 12px;
  }
}

.footerInfo {
  color: #eee;
}

.footerInfo a {
  color: #eee;
}

.footerInfo a:hover {
  color: #fff;
}

.footerInfo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footerInfo li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 15px;
  padding-top: 12px;
}

.footerInfo .icon {
  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: 20px;
  height: 15px;
  margin-right: 5px;
}

.footerInfo .icon i {
  font-size: 18px;
}

.footerInfo .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footerInfo .full {
  width: 100%;
}

.footerInfo .icon {
  color: #eee;
}

.footerInfo .icon-map {
  width: 11px;
  height: 15px;
}

.footerInfo .icon-mail {
  width: 15px;
  height: 10px;
}

.footerInfo .icon-tel {
  width: 12px;
  height: 14px;
}

.footerInfo .icon-fax {
  width: 13px;
  height: 15px;
}

.footContactArea {
  position: relative;
  z-index: 0;
}

.footContactArea::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../images/contactBg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1180px) {
  .footContactArea::after {
    opacity: 0.3;
  }
}

.footContactArea .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 450px;
}

@media (max-width: 1180px) {
  .footContactArea .wrap {
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}

.footContactArea .text {
  width: 100%;
  max-width: 520px;
  margin-bottom: 40px;
  font-size: 15px;
  letter-spacing: .05em;
  color: #111;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .footContactArea .text {
    margin-bottom: 20px;
  }
}

.m_footerInfo {
  padding-top: 15px;
  padding-bottom: 25px;
  border-top: 1px solid #282322;
}

.m_footerInfo .footerInfo {
  color: #808080;
  font-size: 14px;
  letter-spacing: .05em;
  font-weight: 400;
}

.m_footerInfo .footerInfo a {
  color: #808080;
}

.m_copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #a0a0a0;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: .05em;
}

.m_copyright .design {
  color: #a0a0a0;
}

/*********內頁**********/
/**********************/
.bannerArea {
  position: relative;
}

.bannerArea .bannerBox img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bannerArea.ins .bannerBox img {
  min-height: 220px;
  -o-object-fit: cover;
  object-fit: cover;
}

.bannerArea .insBox {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -690px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 1380px;
  height: 100%;
}

@media (max-width: 1420px) {
  .bannerArea .insBox {
    left: 0;
    margin-left: 0;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 960px) {
  .bannerArea .insBox {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.bannerArea .textBox {
  color: #fff;
  text-shadow: 0px 0px 2px #222;
}

@media (max-width: 960px) {
  .bannerArea .textBox {
    text-align: center;
  }
}

.bannerArea .textBox .title {
  /*margin-bottom: 12px;*/
  font-weight: 500;
  font-size: 40px;
  letter-spacing: .025em;
  font-weight: 500;
}

@media (max-width: 960px) {
  .bannerArea .textBox .title {
    font-size: 30px;
  }
}

.bannerArea .textBox .text {
  font-size: 21px;
  letter-spacing: .075em;
}

@media (max-width: 960px) {
  .bannerArea .textBox .text {
    font-size: 15px;
  }
}

.mainArea {
  padding: 30px 0;
}

.mainArea.noPt {
  padding-top: 0;
}

.titleBox {
  margin-bottom: 30px;
}

.titleBox.center {
  text-align: center;
}

.titleBox .title {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: .025em;
  color: #282322;
}

@media (max-width: 480px) {
  .titleBox .title {
    font-size: 30px;
  }
}

.titleBox .en {
  font-size: 15px;
  letter-spacing: .035em;
  color: #afafaf;
  font-family: "Poppins", "Noto Sans TC", sans-serif;
}

.bread {
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 13px;
  letter-spacing: .025em;
  color: #fff;
}

@media (max-width: 1420px) {
  .bread {
    right: 20px;
  }
}

@media (max-width: 1180px) {
  .bread {
    display: none;
  }
}

.bread a {
  color: #fff;
}

.bread a::after {
  content: '>';
  padding-left: 5px;
  padding-right: 5px;
}

.bread a:not(:last-child)::after {
  content: '>';
}

.articleTitle {
  padding-bottom: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  font-size: 24px;
  color: #111;
  border-bottom: 1px solid #111;
}

table.breakpoint > tbody > tr > td.expand {
  cursor: pointer;
  background: url("../images/plus.png") no-repeat 5px center;
  padding-left: 40px;
}

/*類別*/
.classBox {
  padding: 20px 0;
}

.classLinkStyle1 {
  text-align: center;
}

.classLinkStyle1 li {
  display: inline-block;
}

.classLinkStyle1 a {
  position: relative;
  display: block;
  margin: 0 3px;
  padding: 5px 10px;
  border: 1px solid #282322;
  font-size: 13px;
  color: #282322;
}

.classLinkStyle1 a:hover {
  color: #fff;
  background-color: #282322;
}

.classLinkStyle1 a.current {
  color: #fff;
  background-color: #282322;
}

.classLinkStyle1 a.current:after {
  content: " ";
  position: absolute;
  bottom: -5px;
  left: 50%;
  margin-left: -7.5px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 7.5px 0 7.5px;
  border-color: #282322 transparent transparent transparent;
}

/*標籤*/
/*側邊標題字*/
.sectionTitle {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 400;
  font-size: 21px;
  letter-spacing: .05em;
  color: #111;
}

/******頁籤*******/
.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.tab a {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #666;
  letter-spacing: .1em;
  border-bottom: 2px solid #ececec;
}

@media (max-width: 480px) {
  .tab a {
    font-size: 14px;
    padding: 10px;
  }
}

.tab a.current {
  color: #fff;
  background-color: #282322;
}

.tabContent {
  padding: 20px 5px;
}

.tabContent > li {
  display: none;
}

.tabContent .textEditor {
  margin: 0;
}

.tabContent .sectionTitle {
  display: none;
}

.sideMenuArea {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .sideMenuArea .sectionTitle {
    display: none;
  }
}

.sideLink a {
  display: block;
  margin-bottom: 12px;
  color: #454545;
  font-size: 17px;
  letter-spacing: .05em;
}

.sideLink a.current, .sideLink a:hover {
  color: #282322;
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .sideLink.tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (max-width: 1180px) {
  .sideLink.tag li {
    margin-right: 15px;
  }
}

.sideLink.tag .current .box::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.sideLink.tag a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sideLink.tag .box {
  position: relative;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 1px solid #454545;
}

.sideLink.tag .box::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background-color: #282322;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.sideLink dl {
  padding-left: 20px;
}

.sideLink dl a {
  position: relative;
  display: inline-block;
  color: #959595;
  padding-left: 18px;
}

.sideLink dl a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 1px;
  background-color: #959595;
}

@media (max-width: 767px) {
  ul.classLink {
    display: none !important;
  }
}

.m_classLink {
  display: none;
  position: relative;
}

@media (max-width: 767px) {
  .m_classLink {
    display: block;
  }
}

.m_classLink.open .mClassLinkBox {
  top: 100%;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.m_classLink .mClassLinkBox {
  position: absolute;
  left: 0;
  top: 120%;
  z-index: 2;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.m_classLink a.main {
  display: block;
  font-size: 15px;
  color: #fff;
  position: relative;
  padding: 10px;
  font-weight: 400;
  background-color: #282322;
  /* IE6-9 */
}

.m_classLink a.main b {
  font-weight: 400;
  letter-spacing: .05em;
}

.m_classLink a.main i {
  display: block;
  font-size: 15px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -6px;
}

.m_classLink ul {
  padding: 0;
  list-style: none;
  width: 100%;
  background-color: #fff;
  border: 1px solid #d1d1d1;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 300px;
  overflow-y: auto;
}

.m_classLink ul > li {
  padding: 0;
}

.m_classLink ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 10px;
  border-top: 1px solid #d1d1d1;
}

.m_classLink ul > li:first-child a {
  border: none;
}

.m_classLink dl {
  padding-left: 20px;
}

.m_classLink dl a {
  position: relative;
  display: inline-block;
  color: #959595;
  padding-left: 18px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.m_classLink dl a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 1px;
  background-color: #959595;
}

.m_classLink .current .box::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.m_classLink .box {
  position: relative;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 1px solid #454545;
}

.m_classLink .box::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background-color: #282322;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

/*側邊_menu*/
.side_menu {
  margin-bottom: 50px;
}

.side_menu li {
  position: relative;
  border-bottom: 1px solid #e1e1e1;
}

.side_menu li > a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
}

.side_menu li > a.current {
  color: #fff;
  background-color: #8c8c8c;
}

.side_menu li > a b {
  margin-left: 10px;
  font-weight: 400;
  font-size: 13px;
  color: #808080;
}

.side_menu dl {
  padding-left: 25px;
}

.side_menu dl a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
}

.side_menu dl a.current {
  color: #000;
  text-decoration: underline;
}

/*側邊_相簿*/
.side_album {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-left: -1px;
  margin-right: -1px;
}

.side_album li {
  width: 33.33%;
  padding-top: 5px;
  padding-left: 1px;
  padding-right: 1px;
}

.side_album a {
  display: block;
  border: 1px solid #e0e0e0;
}

.side_album a img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*側邊_聯絡資訊*/
.side_contactInfo li {
  margin-bottom: 20px;
}

.side_contactInfo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
}

.side_contactInfo b {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
}

.side_contactInfo i {
  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: 42px;
  height: 42px;
  margin-right: 12px;
  background-color: #f1f1f1;
  color: #050505;
  border-radius: 50%;
}

.side_contactInfo i::after {
  background-color: #282322;
}

.side_contactInfo i:hover {
  color: #fff;
}

.side_contactInfo .icon-map {
  width: 16px;
  height: 21px;
}

.side_contactInfo .icon-tel {
  width: 16px;
  height: 21px;
}

.side_contactInfo .icon-mail {
  width: 19px;
  height: 16px;
}

/*側邊_分享*/
.side_share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
}

.side_share b {
  margin-right: 10px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-family: "Poppins", "Noto Sans TC", sans-serif;
}

.side_share 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;
  font-size: 18px;
  border-radius: 50%;
  background-color: #282322;
  color: #fff;
  margin-right: 10px;
}

.side_share .icon-line {
  width: 20px;
  height: 20px;
}

/*側邊_其他相關訊息*/
.side_news {
  margin: 30px 0;
}

.side_news ul {
  margin-top: 20px;
}

.side_news li {
  margin-bottom: 25px;
}

.side_news .Img {
  float: left;
  width: 60px;
  margin-right: 12px;
  overflow: hidden;
}

.side_news .Img img {
  display: block;
  height: 60px;
}

.side_news .Txt {
  overflow: hidden;
}

.side_news .Txt a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
}

.side_news .Txt a:hover {
  text-decoration: underline;
}

.side_news .Txt b {
  display: block;
  margin-top: 5px;
  font-weight: 400;
  font-size: 12px;
  color: #999;
}

/*--滑動解鎖--*/
.captchaArea {
  position: relative;
  width: 200px;
  height: 50px;
  background-color: #ddd;
}

.captchaArea.unlocking .sliderBtn {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.captchaArea .note {
  position: absolute;
  top: 17px;
  right: 30px;
  z-index: 1;
  font-size: 15px;
  text-align: center;
  font-family: '微軟正黑體';
  color: #777;
  letter-spacing: 1px;
  pointer-events: none;
}

.sliderBtn {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  background-color: RoyalBlue;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.sliderBtn::before {
  content: '\f105';
  position: absolute;
  top: 13px;
  left: 23px;
  color: #fff;
  font-size: 24px;
  font-family: FontAwesome;
  pointer-events: none;
}

/*--arrow--*/
.arrowStyle1 {
  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: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #b5b5b5;
  color: #b5b5b5;
}

.arrowStyle1.prevArrow .icon-arrow {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.arrowStyle1 .icon-arrow {
  width: 7px;
  height: 11px;
}

.arrowStyle1:hover {
  border-color: #1b1b1b;
  color: #1b1b1b;
}

/*--button--*/
.btn1.center {
  text-align: center;
}

.btn1 a {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 12px 50px 12px 50px;
  font-size: 14px;
  letter-spacing: .05em;
  border: 1px solid #bfbfbf;
  border-radius: 50px;
}

.btn1 a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #282322;
  opacity: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  display: none;
}

.btn1 a i {
  position: absolute;
  right: -25px;
  top: 50%;
  margin-top: -0.5px;
  width: 50px;
  height: 1px;
  background-color: #282322;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.btn1 a i::after {
  content: '';
  position: absolute;
  right: -2.5px;
  top: 50%;
  margin-top: -2.5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #282322;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.btn1 a:hover {
  color: #fff;
  background-color: #282322;
  -webkit-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
}

.btn1 a:hover::after {
  opacity: 1;
}

.btn1 a:hover i::after {
  right: 100%;
}

.btn1.white a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn1.white a i {
  background-color: #fff;
}

.btn1.white a i::after {
  background-color: #fff;
}

.btn2.center {
  text-align: center;
}

.btn2 a {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 12px 50px 12px 50px;
  font-size: 14px;
  letter-spacing: .05em;
  border: 1px solid #bfbfbf;
  border-radius: 50px;
}

.btn2 a:hover {
  border-color: #282322;
  background-color: #282322;
  color: #fff;
}

.btn2.small a {
  font-size: 13px;
  padding: 10px 30px;
}

.dotsBox {
  width: 100%;
  text-align: center;
}

.dotsBox .dots li {
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}

.dotsBox .dots li.slick-active button {
  background: #282322;
  border-color: #282322;
}

.dotsBox .dots li button {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #999;
  background: none;
  font-size: 0;
  line-height: 0;
  padding: 0;
  text-indent: -9999px;
  cursor: pointer;
}

.dotsBox .dots li button:focus {
  outline: none;
}

/*手機menu*/
.m_menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  -webkit-box-shadow: 0 2px 5px rgba(126, 126, 126, 0.68);
  box-shadow: 0 2px 5px rgba(126, 126, 126, 0.68);
  display: none;
}

@media (max-width: 1180px) {
  .m_menu {
    display: block;
  }
}

.m_menu .mask {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
}

.m_menu .m_logo {
  margin-right: auto;
}

.m_menu .m_logo img {
  display: block;
  width: 200px;
}

.m_menu .controlBox {
  position: relative;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
  height: 60px;
  background-color: #f6f7f7;
}

.m_menu .controlBox a.main {
  position: relative;
  width: 60px;
  height: 60px;
}

.m_menu .controlBox a.main span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: -0.5px;
  width: 26px;
  height: 1px;
  background-color: #111;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.m_menu .controlBox a.main span:before, .m_menu .controlBox a.main span:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #111;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.m_menu .controlBox a.main span:before {
  top: -7px;
}

.m_menu .controlBox a.main span:after {
  bottom: -7px;
}

.m_menu .controlBox a.main.show span {
  background-color: transparent;
}

.m_menu .controlBox a.main.show span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m_menu .controlBox a.main.show span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 480px) {
  .m_menu .contactBox {
    display: none;
  }
}

.hideBox {
  /*手機menu內容*/
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 11;
  display: none;
  width: 100%;
  padding: 60px 20px 150px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #f6f7f7;
  background-image: url("../images/mbg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
}

.hideBox .sp {
  display: none;
  padding: 10px;
  font-size: 13px;
  color: #fff;
  background-color: #c80303;
}

.hideBox .contactBox {
  display: none;
  padding-bottom: 20px;
}

.hideBox .contactBox a {
  margin-left: 0;
  margin-right: 12px;
}

@media (max-width: 480px) {
  .hideBox .contactBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nav {
  padding-bottom: 45px;
}

.nav li {
  padding-left: 30px;
  padding-right: 30px;
}

.nav li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.nav a {
  position: relative;
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 16px;
  color: #050505;
}

.nav a.show {
  color: #282322;
}

.nav a.show i {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.nav a i {
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  margin-top: -7px;
  color: #050505;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.nav .submenu {
  display: none;
}

.nav .submenu a {
  padding: 10px 15px;
  font-size: 15px;
  letter-spacing: .05em;
  color: #454545;
}

/**********適應性**********/
/************************/
@media (max-width: 1180px) {
  /*1160+20(卷軸寬度)*/
  .outerWrap {
    padding-top: 60px;
  }
  header {
    display: none;
  }
}

@media (max-width: 767px) {
  /*bread*/
  .mainArea .titleBox .bread {
    display: none;
  }
  /*main*/
  .mainArea .cotentBox {
    padding: 20px 0;
  }
  .mainArea .titleBox h2 em {
    display: block;
    margin: 0;
  }
}

/*480*/
@media (max-width: 480px) {
  .col-2 {
    float: none;
    width: 100%;
  }
  .col-3 {
    float: none;
    width: 100%;
  }
  .col-4 {
    float: none;
    width: 100%;
  }
  .col-5 {
    float: none;
    width: 100%;
  }
}

/***Hover效果1: 放大淡出***/
.imh_opacity {
  background-color: #000;
  overflow: hidden;
}

.imh_opacity img {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.imh_opacity:hover img {
  opacity: 0.8;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

/***Hover效果1: 放大淡出Detail***/
.imh_detail {
  background-color: #000;
  overflow: hidden;
}

.imh_detail img {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.imh_detail a:before {
  content: "Details+";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99;
  margin-left: -45px;
  margin-top: -80px;
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #fff;
  border: 2px solid #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.imh_detail:hover a:before {
  opacity: 1;
  margin-top: -20px;
}

.imh_detail:hover img {
  opacity: 0.3;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

/***Hover效果1: 放大淡出zoom***/
.imh_zoom {
  position: relative;
  background-color: #000;
  overflow: hidden;
}

.imh_zoom img {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
}

.imh_zoom a:before {
  content: "\f002";
  display: block;
  position: absolute;
  left: 50%;
  top: -30px;
  margin-top: -20px;
  margin-left: -20px;
  z-index: 99;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  font-family: FontAwesome;
  text-align: center;
  background-color: #000;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.imh_zoom:hover a:before {
  top: 50%;
}

.imh_zoom:hover img {
  opacity: 0.3;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.classNote {
  margin-bottom: 20px;
}

.itemOpacity {
  position: relative;
}

.itemOpacity .Img {
  background-color: #282322;
  overflow: hidden;
}

.itemOpacity .Img img {
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.itemOpacity:hover .Img img {
  opacity: 0.15;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.itemOpacity.white .Img {
  background-color: #fff;
}

/*--最新消息icon--*/
.newIcon {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .035em;
  color: #909090;
}

@media (min-width: 641px) {
  .textEditor .contentBuilder .row {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

.cookieArea {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 5;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 15px;
  letter-spacing: .05em;
}

.cookieArea .btn1 {
  padding-top: 15px;
}

.cookieArea .btn1 a {
  color: #fff;
}
