@charset "UTF-8";
/* CSS Document */
@import url(public/css/reset.css);
@import url(public/css/font-awesome-4.7.0/font-awesome.min.css);
@import url(public/css/rwdgrid.css);
@import url(public/css/textEditor.css);
@import url(public/css/contentbuilder.css);
*, *::before, *::after {
  box-sizing: border-box;
}

.arrowPrev::after,
.arrowNext::after, .arrowPrev::before,
.arrowNext::before, .arrowPrev,
.arrowNext, ul.dots li button::before, .btnMore span::after, .btnMore span::before, .btnMore::after, .classColumnBox > ul .linkHasItems::before, header .menuBtn span::before, header .menuBtn span::after {
  transition: all 0.5s;
}

body {
  font-family: "Lato", "Noto Sans TC", Helvetica, Arial, "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  background-color: #fff;
}


.loadingArea {
    width: 100%;
    height: 100vh;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999
}

.loadingArea .loadLogo {
    width: 160px
}

.loadingArea .loadLogo img {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.loadingArea.show {
    opacity: 1;
    pointer-events: auto
}

.loadingArea.show .loadLogo img {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.loadingArea.hide {
    opacity: 0
}
.outerWrap {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (max-width: 1180px) {
  .outerWrap {
    padding-top: 60px;
    padding-bottom: 55px;
  }
}
.outerWrap .mainArea {
  flex-grow: 1;
}

@media (min-width: 1181px) {
  body:not(.WebSiteHome) .outerWrap {
    padding-top: 80px;
  }
}

.wrap {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1451px) {
  .wrap {
    max-width: 1350px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 641px) and (max-width: 1450px) {
  .wrap {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 361px) and (max-width: 640px) {
  .wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 360px) {
  .wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.wrap.fullWrap {
  max-width: 100%;
  padding: 0;
}

a {
  color: #17181a;
  cursor: pointer;
  transition: all 0.4s ease;
}
a:hover {
  color: #003f91;
}

/*****moduleBox*****/
.moduleBox {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1005;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-property: top, opacity, visibility;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}
.moduleBox.show {
  opacity: 1;
  visibility: visible;
}
.moduleBox.show .mobuleWrap {
  opacity: 1;
  transform: translateY(0);
}

.mobuleWrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  background-color: #fff;
  pointer-events: auto;
  padding-top: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s;
}

.moduleContent {
  width: 100%;
  max-height: calc(90vh - 50px);
  overflow-y: auto;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}

.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;
  transition: all 0.5s ease-in-out;
}
.moduleMask.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.moduleClose {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: none;
  background: #0253bd;
  border: none;
  cursor: pointer;
}
.moduleClose::before, .moduleClose::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -15px;
  margin-top: -0.5px;
  width: 30px;
  height: 1px;
  background-color: #fff;
}
.moduleClose::before {
  transform: rotate(45deg);
}
.moduleClose::after {
  transform: rotate(-45deg);
}

/*****網頁頭*****/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 50;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
@media (max-width: 1180px) {
  header .wrap {
    height: 60px;
  }
}
@media (min-width: 641px) and (max-width: 1180px) {
  header .wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 640px) {
  header .wrap {
    padding-left: 20px;
    padding-right: 15px;
  }
}
header .rightBox {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
  padding: 0 0 0 20px;
}

@media (max-width: 1180px) {
  header .rightBox {
    flex-grow: 0;
    padding-left: 20px;
  }
}
@media (max-width: 400px) {
  header .rightBox {
    padding-left: 10px;
  }
}
header .socialBox {
  padding-left: 20px;
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 520px) {
  header .socialBox {
    display: none;
  }
}
header .socialBox::before {
  display: none;
}
header .socialLink {
  color: #003f91;
  opacity: 1;
}
header .socialLink:hover {
  color: #1664cd;
}


header .lagBox {
    position: relative;
}
@media (max-width: 1180px) {
  header .lagBox {
    margin-right: 20px;
  }
}
@media (max-width: 400px) {
  header .lagBox {
      margin-right: 10px;
  }
}
header .lagBox .btnBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 130px;
    height: 40px;
    background-color: #0253bd;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
	 margin-top:auto;
}
@media (max-width: 480px) {
  header .lagBox .btnBox {
      width: 100px;
      font-size: 13px;
  }
}
@media (max-width: 400px) {
  header .lagBox .btnBox {
      width: 90px;
      font-size: 12px;
  }
}

header .lagBox .dropdown_layer {
    position: absolute;
    top: 40px;
    background-color: #fff;
    width: 100%;
    -webkit-box-shadow: 0px 1px 4px 0px #0000000f;
    box-shadow: 0px 1px 4px 0px #0000000f;
    display: none
}

header .lagBox .dropdown_layer a {
    padding: 10px 0;
    display: block;
    text-align: center;
    text-transform: uppercase;
    border-top: 1px solid #ccc
}

header .lagBox .dropdown_layer a:hover {
    background-color: #0253bd;
    color: #fff
}


header .menuBtn {
  position: relative;
  width: 40px;
  height: 40px;
  background: #0253bd;
  cursor: pointer;
}
@media (min-width: 1181px) {
  header .menuBtn {
    display: none;
  }
}
@media (max-width: 520px) {
  header .menuBtn {
    margin-left: auto;
  }
}
header .menuBtn span {
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% - 9px);
  width: 18px;
  height: 8px;
}
header .menuBtn span::before, header .menuBtn span::after {
  content: "";
  position: absolute;
  left: calc(50% - 9px);
  width: 100%;
  height: 1px;
  background-color: #fff;
}
header .menuBtn span::before {
  top: 0;
}
header .menuBtn span::after {
  bottom: 0;
}
header .menuBtn.open span::before {
  top: 50%;
  transform: rotate(45deg);
}
header .menuBtn.open span::after {
  bottom: 50%;
  transform: rotate(-45deg);
}

.logo {
  flex-shrink: 0;
  width: 150px;
}
.logo a {
  display: block;
  width: 100%;
  height: 55px;
  background: url("../images/logo.png") no-repeat;
  background-size: contain;
  text-indent: -9999px;
}


@media (max-width: 420px) {
  .logo {
    width:100px;
  }
	.logo a {
		  background-position:center center;
	}
	
}

/*****menu*****/
@media (max-width: 1180px) {
  .menuBox {
    display: none;
  }
}

.menu > li {
  position: relative;
  display: inline-block;
}
.menu > li > a {
  position: relative;
  display: block;
  padding: 10px 8px;
  font-size: 16px;
}
@media (min-width: 1181px) and (max-width: 1360px) {
  .menu > li > a {
    padding: 2px;
  }
}
.menu > li > a:hover {
  color: #003f91;
}
.menu .submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  width: 150px;
  text-align: center;
}
.menu .submenu a {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #dadada;
  font-size: 15px;
  color: #666;
  background-color: #fff;
}
.menu .submenu a:hover {
  color: #fff;
  background-color: #516190;
}

/*****手機menu*****/
.m_menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 49;
  display: block;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.6s;
}
.m_menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 1181px) {
  .m_menu {
    display: none;
  }
}
.m_menu .mask {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: #0253bd;
  width: 100%;
  height: 100vh;
}
.m_menu .hideBox {
  position: relative;
  z-index: 99;
  height: 100vh;
  padding: 80px 50px;
  overflow-y: auto;
}
@media (min-width: 481px) and (max-width: 960px) {
  .m_menu .hideBox {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 480px) {
  .m_menu .hideBox {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.m_menu .socialBox {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 360px) {
  .m_menu .socialBox {
    margin-top: 25px;
  }
}

.nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.nav a {
  position: relative;
  display: block;
  padding: 20px 10px;
  font-size: 15px;
  color: #fff;
  text-align: center;
}
@media (min-width: 361px) and (max-width: 640px) {
  .nav a {
    padding: 15px 10px;
  }
}
@media (max-width: 360px) {
  .nav a {
    padding: 12px 10px;
  }
}
.nav a:hover {
  background-color: #6fa8c7;
}
.nav a i {
  position: absolute;
  right: 10px;
  top: 50%;
  display: block;
  margin-top: -7px;
}
.nav .dropDown > a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 20px;
  font-family: FontAwesome;
}
.nav .submenu {
  display: none;
}
.nav .submenu a {
  padding: 10px 20px;
}
.nav .submenu a:hover {
  background-color: #999;
}

/*手機翻譯*/
/*****banner******/
.bannerArea {
  position: relative;
  overflow: hidden;
}
.bannerArea .titleBox {
  width: 100%;
  text-align: center;
}
@media (min-width: 641px) {
  .bannerArea .titleBox {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 3;
    margin-bottom: 0;
    transform: translateY(-50%);
  }
}
@media (max-width: 640px) {
  .bannerArea .titleBox {
    margin-top: 30px;
  }
}
@media (min-width: 1181px) {
  .bannerArea .subTitle {
    font-size: 60px;
  }
}
@media (min-width: 641px) {
  .bannerArea .subTitle {
    color: #fff;
  }
}

/*****頁尾資訊*****/
footer {
  padding: 0;
  background: #0c3e81;
}
footer .wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
footer .topBox {
  position: relative;
  padding: 20px 0;
  background-color: #f7f7f7;
}
footer .topBox .wrap {
  align-items: center;
}
@media (max-width: 640px) {
  footer .topBox .wrap {
    justify-content: center;
  }
}
footer .topBox .description {
  color: #767676;
}
@media (min-width: 641px) {
  footer .topBox .description {
    width: calc(100% - 150px);
    padding-left: 40px;
  }
}
@media (max-width: 640px) {
  footer .topBox .description {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
}
footer .topBox .goTop {
  position: absolute;
  bottom: 0;
  left: calc(50% - 28px);
  z-index: 3;
  border-bottom: 28px solid #0c3e81;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  cursor: pointer;
}
@media (max-width: 1180px) {
  footer .topBox .goTop {
    display: none;
  }
}
footer .topBox .goTop::before {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(50% - 5px);
  z-index: 3;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}
footer .topBox .goTop::after {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(50% - 1px);
  width: 2px;
  height: 10px;
  background-color: #fff;
}
footer .bottomBox {
  padding: 40px 0 60px;
}
@media (min-width: 1181px) {
  footer .downMenu {
    width: calc(100% - 290px);
    padding-right: 30px;
  }
}
@media (max-width: 1180px) {
  footer .downMenu {
    width: 100%;
  }
}
@media (min-width: 1181px) {
  footer .infoBox {
    width: 290px;
  }
}
@media (max-width: 1180px) {
  footer .infoBox {
    width: 100%;
    margin-top: 30px;
    border: 0;
  }
}
footer .infoBox strong.title {
  display: block;
  margin-top: 25px;
  margin-bottom: 8px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}

@media (min-width: 1181px) {
  .downMenu {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
  .downMenu > li {
    min-width: calc(100% / 7);
    padding: 0 15px 20px;
  }
  .downMenu > li > a {
    margin-bottom: 8px;
  }
}
@media (max-width: 1180px) {
  .downMenu > li {
    padding: 12px 0;
  }
  .downMenu > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .downMenu > li > a {
    position: relative;
  }
  .downMenu > li > a::before, .downMenu > li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 10px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .downMenu > li > a::after {
    transform: rotate(90deg);
  }
  .downMenu > li > a.open::after {
    transform: rotate(0);
  }
  .downMenu .Txt {
    display: none;
    padding: 8px 0;
  }
}
.downMenu > li > a {
  display: block;
  font-size: 16px;
  color: #fff;
}
.downMenu > li ul a {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #c3c3c3;
  -webkit-text-decoration: 1px underline transparent;
          text-decoration: 1px underline transparent;
}
.downMenu > li ul a:hover {
  color: #fff;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
}

.contactList li {
  margin-top: 2px;
  font-size: 14px;
  color: #c3c3c3;
}
.contactList .title::after {
  content: ":";
  margin: 0 3px;
}
.contactList a {
  color: #c3c3c3;
}
.contactList a:hover {
  color: #fff;
  text-decoration: underline;
}

.socialBox::before {
  content: "Follow us";
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.socialLink {
  display: block;
  vertical-align: middle;
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
  opacity: 0.3;
}
.socialLink.line{
  margin-bottom: -4px;
}
.socialLink:hover {
  color: #fff;
  opacity: 1;
}
.socialLink svg {
  width: 18px;
  height: 18px;
}

.copyright {
  width: 100%;
  color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 1180px) {
  .copyright {
    margin-top: 30px;
  }
}

.footerInfo {
  display: inline-block;
  vertical-align: middle;
}

.translateIbest {
  display: inline-block;
  vertical-align: middle;
}
.translateIbest .design {
  display: block;
  color: rgba(255, 255, 255, 0.3);
}
.translateIbest .design a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}
.translateIbest .design a:hover {
  text-decoration: underline;
}

.privacyArea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    -webkit-box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    padding: 40px 0 25px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 53;
    -webkit-transition: all 0.6s 0.1s;
    transition: all 0.6s 0.1s;
}

.privacyArea.check {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.privacyArea .wrap {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.privacyArea .text {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.privacyArea .text a {
    color: #003f91;
    display: inline-block;
    margin-top: 8px;
    text-decoration: underline;
}

.privacyArea .text a:hover {
    color: #003f91;
}

.privacyArea .btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 25px;
    padding-top: 0;
    display: block;
    min-width: auto;
    height: auto;
    line-height: 1;
    position: unset;
    padding: 0;
    
}

.privacyArea .btn::before,
.privacyArea .btn::after{
    display: none;
}

.privacyArea .btn a {
    color: #fff;
    display: inline-block;
    letter-spacing: 0.5px;
    font-size: 14px;
    padding: 15px 15px;
    position: relative;
}
@media (max-width: 768px) {
    .privacyArea .wrap {
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            text-align: center;
    }
    .privacyArea .text {
            width: 100%;
    }
    .privacyArea .btn {
            margin-top: 25px;
            margin-left: 0;
    }
}

/*****手機快捷選單*****/
.fixedQuickLink {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  background-color: #0d2f5c;
}
@media (min-width: 1181px) {
  .fixedQuickLink {
    display: none;
  }
}
.fixedQuickLink ul {
  display: flex;
}
.fixedQuickLink li {
  flex: 1;
}
.fixedQuickLink li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.fixedQuickLink a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 55px;
  font-size: 13px;
  color: #fff;
}
.fixedQuickLink i {
  margin-bottom: 5px;
}

/*****內頁*****/
.mainArea {
  position: relative;
  padding: 0;
}

.contentBox {
  padding: 80px 0;
}
@media (min-width: 641px) and (max-width: 960px) {
  .contentBox {
    padding: 50px 0;
  }
}
@media (max-width: 640px) {
  .contentBox {
    padding: 40px 0;
  }
  .contentBox.noClassLink {
    padding-top: 0;
  }
}
@media (max-width: 640px) {
  .contentBox.flexBox {
    padding-top: 10px;
  }
}
.contentBox .textEditor th {
  font-weight: 500;
  background: #0253bd;
}

.bread {
  position: absolute;
  right: 15px;
  top: 20px;
  font-size: 13px;
  color: #bbb;
  display: none;
}
@media (max-width: 960px) {
  .bread {
    display: none;
  }
}
.bread a {
  color: #bbb;
}
.bread a:hover {
  color: #999;
  text-decoration: underline;
}
.bread span {
  padding: 0 3px;
  color: #bbb;
}

.articleTitle {
  clear: both;
  margin-bottom: 25px;
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
  font-weight: 500;
  font-size: 20px;
  color: #17181a;
}

.sectionTitle {
  font-size: 18px;
  font-weight: 500;
}
.sectionTitle::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 18px;
  margin-right: 10px;
  background-color: #17181a;
}

/*類別*/
.classNote {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.classRowBox {
  position: relative;
  z-index: 3;
}
@media (min-width: 641px) {
  .classRowBox {
    padding: 20px 0;
  }
}
@media (min-width: 641px) {
  .classRowBox::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    width: calc(100vw - 10px);
    height: 100%;
    background-color: #f7f7f7;
  }
}
.classRowBox > ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1180px) {
  .classRowBox > ul {
    display: none;
  }
}
.classRowBox > ul li {
  margin: 5px 0;
}
.classRowBox > ul li:not(:last-child) {
  border-right: 1px solid #e1e1e1;
}
.classRowBox > ul a {
  display: block;
  padding: 0 18px;
  font-size: 16px;
  color: #676869;
  text-align: center;
}
.classRowBox > ul a:hover {
  color: #003f91;
}
.classRowBox > ul a.current {
  color: #003f91;
  text-decoration: underline;
}

.classColumnBox {
  position: relative;
}
.classColumnBox .sectionTitle {
  margin-bottom: 10px;
}
@media (max-width: 960px) {
  .classColumnBox .sectionTitle {
    display: none;
  }
}
@media (max-width: 1180px) {
  .classColumnBox > ul {
    display: none;
  }
}
.classColumnBox > ul > li {
  border-bottom: 1px solid #ccc;
}
.classColumnBox > ul > li > a {
  padding: 12px 0;
}
.classColumnBox > ul ul {
  display: none;
  padding: 0 0 16px 8px;
}
.classColumnBox > ul ul a {
  margin-bottom: 5px;
  font-size: 14px;
}
.classColumnBox > ul a {
  position: relative;
  display: block;
  font-size: 16px;
  color: #676869;
}
.classColumnBox > ul a.current, .classColumnBox > ul a:hover {
  color: #003f91;
}
.classColumnBox > ul .linkHasItems::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 6px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.classColumnBox > ul .linkHasItems.open::before {
  transform: translateY(4px) rotate(225deg);
}

.mClassLink {
  position: relative;
  z-index: 3;
}
@media (min-width: 1181px) {
  .mClassLink {
    display: none;
  }
}
.mClassLink.open > ul {
  display: block;
}
.mClassLink .main {
  position: relative;
  display: block;
  font-size: 16px;
  padding: 10px 30px 10px 10px;
  color: #fff;
  letter-spacing: 1px;
  cursor: pointer;
  background: #0253bd;
}
.mClassLink .main::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  z-index: 1;
  margin-top: -6px;
  line-height: 1;
  font-size: 15px;
  color: #fff;
  font-family: FontAwesome;
}
.mClassLink > ul {
  position: relative;
  left: 0;
  top: calc(100% - 1px);
  z-index: 1;
  display: none;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.mClassLink > ul > li + li {
  border-top: 1px solid #f2f2f2;
}
.mClassLink > ul > li.current > a {
  color: #003f91;
}
.mClassLink > ul a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 14px 20px;
  color: #000;
  font-size: 14px;
  background-color: #fff;
}
.mClassLink ul {
  display: none;
}
.mClassLink .linkHasItems {
  position: relative;
  padding-right: 40px;
}
.mClassLink .linkHasItems::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  z-index: 1;
  line-height: 1;
  margin-top: -7px;
  font-family: FontAwesome;
}
.mClassLink .linkHasItems + ul {
  background-color: #efefef;
}
.mClassLink .linkHasItems + ul a {
  padding: 10px 5px 10px 30px;
  background-color: #efefef;
}
.mClassLink .linkHasItems + ul a.current {
  color: #003f91;
}

/*頁碼*/
.pageBox {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.pageBox > a {
  display: inline-block;
  margin: 0 0px 8px;
  padding: 6px 30px;
  line-height: 24px;
  border: 1px solid #e4e4e4;
  color: #999;
}
.pageBox > a:hover {
  color: #fff;
  background-color: #0253bd;
}
.pageBox > a.current {
  color: #fff;
  background: #0253bd;
}
.pageBox .prevBtn {
  margin-right: auto;
}
.pageBox .prevBtn::before {
  content: "";
  margin-right: 5px;
  font-family: FontAwesome;
}
.pageBox .nextBtn {
  margin-left: auto;
}
.pageBox .nextBtn::after {
  content: "";
  margin-left: 5px;
  font-family: FontAwesome;
}

/*標籤*/
.tagBox {
  padding: 20px 0;
}
.tagBox b {
  display: inline-block;
  margin-right: 10px;
}
.tagBox ul {
  display: inline-block;
}
.tagBox li {
  display: inline-block;
  margin-bottom: 5px;
}
.tagBox a {
  position: relative;
  display: block;
  margin: 0 3px;
  padding: 5px 10px;
  border: 1px solid #003f91;
  font-size: 13px;
  color: #003f91;
}
.tagBox a:hover {
  color: #fff;
  background: #0253bd;
}
.tagBox a.current {
  color: #fff;
  background: #0253bd;
}
.tagBox a.current:before {
  content: "";
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 12px;
}

/*頁籤*/
.tab {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 766px) {
  .tab {
    margin-top: 30px;
  }
}
.tab a {
  display: block;
  padding: 8px 16px 12px;
  border: 2px solid transparent;
  font-size: 15px;
  color: #17181a;
  text-align: center;
  background-color: rgba(217, 217, 217, 0.6);
}
@media (min-width: 401px) {
  .tab a {
    min-width: 160px;
  }
}
.tab a.current {
  border-color: #d9d9d9;
  border-bottom-color: #fff;
  background-color: #fff;
}

.tabContent {
  margin-top: -2px;
  padding: 20px 0;
  border-top: 2px solid #d9d9d9;
}
.tabContent > li {
  display: none;
}
.tabContent .textEditor {
  margin: 0;
}
.tabContent .sectionTitle {
  display: none;
}

/*側邊_相簿*/
.side_album {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: -10px;
}
.side_album li {
  float: left;
  width: calc(100% / 5);
  padding: 0 10px 10px 0;
}
@media (min-width: 401px) and (max-width: 640px) {
  .side_album li {
    width: calc(100% / 4);
  }
}
@media (max-width: 400px) {
  .side_album li {
    width: calc(100% / 3);
  }
}
.side_album a {
  display: block;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
.side_album a img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/*側邊_聯絡資訊*/
.side_contactInfo li {
  margin-top: 20px;
}
.side_contactInfo a {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #17181a;
}
.side_contactInfo i {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-right: 8px;
  border: 0;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background: #0253bd;
}
.side_contactInfo b {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
}

/*側邊_分享*/
.side_share {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 35px;
}
.side_share::before {
  content: "Share :";
  display: inline-block;
  margin-right: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #888;
}
.side_share a {
  display: inline-block;
  vertical-align: middle;
  padding: 8px 16px;
  margin-right: 8px;
  color: #fff;
  background-color: #17181a;
}
.side_share a:hover {
  background: #0253bd;
}
.side_share a.line {
  background-color: #00b900;
}
.side_share a.line:hover {
  background-color: #00a000;
}
.side_share a.fb {
  background-color: #4267b2;
}
.side_share a.fb:hover {
  background-color: #3b5c9f;
}

@keyframes aniSlideLeft {
  0% {
    transform: translateX(10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*****列表共用樣式*****/
.itemList {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 641px) {
  .itemList {
    margin-left: -16px;
    margin-right: -16px;
  }
}
@media (max-width: 640px) {
  .itemList {
    margin-left: -8px;
    margin-right: -8px;
  }
}
.itemList li {
  position: relative;
  padding: 8px 16px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .itemList li {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 480px) {
  .itemList li {
    margin-bottom: 10px;
  }
}
.itemList .item {
  height: 100%;
  padding: 10px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}
.itemList .Txt {
  padding: 8px 5px;
}
.itemList p.ellipsis {
  height: calc(24px * 2);
  overflow: hidden;
}
.itemList .btnMore {
  margin-top: 45px;
}
@media (max-width: 480px) {
  .itemList .btnMore {
    margin-top: 30px;
  }
}

.listTitle {
  font-size: 19px;
  font-weight: 500;
}
@media (max-width: 400px) {
  .listTitle {
    font-size: 17px;
  }
}
.listTitle a:not(:hover) {
  color: #494949;
}
.listTitle + .listExp {
  margin-top: 15px;
}

.listExp {
  font-size: 14px;
  line-height: calc(24 / 14);
  color: #6c6c6c;
}

.newIcon {
  display: inline-block;
  padding: 3px 8px 5px;
  margin-right: 8px;
  color: #fff;
  background-color: #0354bc;
}

.newsDate {
  padding: 8px 0;
  color: #888;
}
.newsDate strong {
  display: inline-block;
  margin-right: 8px;
  font-weight: 400;
}
.newsDate strong::after {
  content: "";
  position: relative;
  top: -2px;
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 2px;
  margin-left: 8px;
  background-color: #ccc;
}
.newsDate b {
  font-weight: 400;
}

/*****共用樣式*****/
div.titan {
  display: none;
}

.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.moduleQaptchaBox {
  display: none;
}

.fullImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flexBox {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.side_share {
  flex-wrap: nowrap;
}
.side_share a {
  padding: 8px 12px;
}

@media (min-width: 960px) {
  .flexBox > .leftBox {
    padding-right: 35px;
  }
}
@media (max-width: 960px) {
  .flexBox > .leftBox {
    margin-bottom: 30px;
  }
}
.flexBox > .rightBox {
  position: relative;
}

.titleBox {
  position: relative;
  margin-bottom: 30px;
}
.titleBox.bdrBottom::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 25px;
  border-bottom: 1px solid #e1e1e1;
}
.titleBox.center {
  text-align: center;
}
.titleBox.right {
  text-align: right;
}
.fullWrap .titleBox .mainTitle {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}
.mainTitle {
  font-size: 24px;
  font-weight: 500;
  color: #333;
}
@media (max-width: 640px) {
  .mainTitle {
    font-size: 20px;
    color: #333;
  }
  .fullWrap .titleBox .mainTitle {
    font-size: 20px;
    color: #333;
  }
}

.subTitle {
  display: inline-block;
  font-size: 43px;
  font-weight: 900;
  color: #003f91;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .subTitle {
    font-size: 32px;
  }
}

.btnBox.center {
  text-align: center;
}

.btn {
  position: relative;
  display: inline-block;
  min-width: 180px;
  height: 42px;
  line-height: 40px;
  padding: 0 40px;
  color: #fff;
  text-align: center;
  background: #0253bd;
   transition: all 0.4s ease;
}
.btn::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 25px;
  width: 11px;
  height: 2px;
  background-color: currentColor;
}
.btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 25px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover {
  color: #ffffff;
  background: #0b346a;
}
.btn.bdr {
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn.bdr:hover {
  border-color: transparent;
}

.btnMore {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  color: #6c6c6c;
}
.btnMore::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-left: 14px;
  border: 1px solid #f0f0f0;
}
.btnMore span::before {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  right: 7px;
  width: 11px;
  height: 2px;
  background-color: #cbcbcb;
}
.btnMore span::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 7px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #cbcbcb;
  border-right: 2px solid #cbcbcb;
  transform: rotate(45deg);
}
.btnMore:hover::after {
  background: #0253bd;
}
.btnMore:hover span::before {
  background-color: #fff;
}
.btnMore:hover span::after {
  border-color: #fff;
}

ul.dots {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  text-align: center;
}
ul.dots li {
  position: relative;
  display: inline-block;
  margin: 0 3px;
  padding: 0 !important;
}
ul.dots li button {
  position: relative;
  display: block;
  width: 12px;
  height: 15px;
  padding: 0;
  font-size: 0;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
}
ul.dots li button::before {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 3px);
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: transparent;
}
ul.dots li.slick-active button::before, ul.dots li:hover button::before {
  background-color: #fff;
}
ul.dots.dark li button::before {
  border-color: #1266ba;
}
ul.dots.dark li.slick-active button::before, ul.dots.dark li:hover button::before {
  background: #0253bd;
}

.arrowPrev,
.arrowNext {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 38px;
  border: 1px solid #f0f0f0;
  background-color: #fff;
  cursor: pointer;
}
.arrowPrev::before,
.arrowNext::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(50% - 5px);
  width: 11px;
  height: 2px;
  background-color: #cbcbcb;
}
.arrowPrev::after,
.arrowNext::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-top: 2px solid #cbcbcb;
  border-right: 2px solid #cbcbcb;
  transform: rotate(225deg);
}
.arrowPrev:hover,
.arrowNext:hover {
  background: #0253bd;
}
.arrowPrev:hover::before,
.arrowNext:hover::before {
  background-color: #fff;
}
.arrowPrev:hover::after,
.arrowNext:hover::after {
  border-color: #fff;
}

.arrowNext::after {
  transform: rotate(45deg);
}

.imh_opacity {
  background-color: transparent;
  overflow: hidden;
  transition: all 0.3s linear;
}
.imh_opacity img {
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.imh_opacity:hover {
  background-color: #000;
}
.imh_opacity:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}

.imh_detail {
  background-color: #000;
  overflow: hidden;
}
.imh_detail img {
  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;
  transition: all 0.3s ease;
}
.imh_detail:hover a:before {
  opacity: 1;
  margin-top: -20px;
}
.imh_detail:hover img {
  opacity: 0.3;
  transform: scale(1.05);
}

.imh_zoom {
  position: relative;
  background-color: #000;
  overflow: hidden;
}
.imh_zoom img {
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
}
.imh_zoom a:before {
  content: "";
  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;
  transition: all 0.4s ease;
}
.imh_zoom:hover a:before {
  top: 50%;
}
.imh_zoom:hover img {
  opacity: 0.3;
  transform: scale(1.05);
}