@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);
@import url(http://fonts.googleapis.com/css2?family=Arimo:wght@400;700&family=Roboto:wght@300;400&display=swap);
body {
  background-color: #fff;
  font-family: "Noto Sans TC", "微軟正黑體", Helvetica, Arial, Heiti TC, "メイリオ", sans-serif;
  color: #2b2b2b;
  letter-spacing: 1px;
  font-size: 17px;
}

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

.dcjob {
  display: block;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: contain !important;
  background-color: #eee !important;
}

.articleTitle {
  text-align: left;
  padding-bottom: 30px;
  color: #333;
  border-bottom: solid 1px #ddd;
}
.articleTitle em {
  font-family: "Arimo", sans-serif;
  font-size: 18px;
  font-weight: bold;
}
.articleTitle em i {
  color: #215ca4;
  font-style: initial;
}
.articleTitle h2 {
  font-size: 36px;
  font-weight: 300;
}

/*css3*/
a {
  color: #ccc;
  cursor: pointer;
  transition: all 0.4s ease;
}
a:hover {
  color: #ccc;
}

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

.b-box, * {
  box-sizing: border-box;
  outline: none;
}

@keyframes butarrow {
  0% {
    transform: translate(0px, 0);
  }
  50% {
    transform: translate(-5px, 0);
  }
  100% {
    transform: translate(0px, 0);
  }
}
a.side_contact {
  width: 70px;
  height: 140px;
  color: #fff;
  background: #215ca4;
  border-radius: 70px 0 0 70px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(10px, -50%);
  align-items: center;
  justify-content: center;
  padding: 0 25px 0 35px;
  line-height: 1;
  font-size: 15px;
  z-index: 99;
}
a.side_contact i {
  padding-bottom: 10px;
}
a.side_contact:hover {
  box-shadow: -2px 2px 20px 6px rgba(0, 0, 0, 0.2);
  transform: translate(0px, -50%);
}
@media (max-width: 1023px) {
  a.side_contact {
    transform: translate(-50%, 0);
    width: 160px;
    height: 50px;
    border-radius: 160px 160px 0 0;
    flex-direction: row;
    padding: 10px 0;
    left: 50%;
    top: auto;
    bottom: 0;
    right: auto;
    box-shadow: -2px 2px 20px 6px rgba(0, 0, 0, 0.2);
  }
  a.side_contact i {
    padding-bottom: 0px;
    padding-right: 10px;
  }
  a.side_contact:hover {
    transform: translate(-50%, 0);
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1300;
}
.loading.loadingNk {
  opacity: 0;
  transform: translate(100%, 0);
  pointer-events: none;
  transition: opacity 0.8s 0s, transform 0s 0.8s;
}
.loading.loadingOK {
  opacity: 0;
  pointer-events: none;
  transform: translate(100%, 0);
  transition: opacity 1.5s 2s, transform 0s 3.5s;
}
.loading.loadingOK img {
  opacity: 1;
  transition: 0.6s 0.4s;
}
.loading.loadingOK::before {
  transform: translate(-100%, 0);
  transition: 0.5s ease-in;
}
.loading img {
  display: block;
  width: 200px;
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.loading::before {
  content: "";
  width: 100%;
  height: 100vh;
  display: block;
  background: #215ca4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
}
.loading::after {
  content: "";
  width: 100%;
  height: 100vh;
  display: block;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.social {
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
.social a {
  width: 40px;
  height: 40px;
  border-radius: 99em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  margin: 5px 0;
  transition: 0.6s;
}
.social a img {
  width: 80%;
  margin: auto;
  opacity: 1;
  transition: 0s;
}
.social a:hover {
  background: #215ca4;
}
.social a:hover img {
  -webkit-filter: brightness(5);
}

.contactBox {
  background: #215ca4;
  padding: 30px 0;
  text-align: center;
}
.contactBox h2 {
  font-size: 20px;
  color: #fff;
  line-height: 1.5;
}
.contactBox a {
  font-size: 15px;
  color: #bfd8c0;
  display: inline-block;
  padding: 0 30px;
  border-left: 1px solid #bfd8c0;
  border-right: 1px solid #bfd8c0;
  line-height: 2;
  margin-top: 5px;
}
.contactBox a:hover::after {
  animation: butarrow 600ms infinite ease-in-out;
}
.contactBox a::after {
  content: "";
  font-family: FontAwesome;
  width: 20px;
  height: 20px;
  display: inline-block;
  border: 1px solid #bfd8c0;
  border-radius: 99em;
  line-height: 20px;
  text-align: center;
  font-size: 15px;
  margin-left: 8px;
  transition: 0.6s;
}

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%;
}

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

textarea {
  -webkit-appearance: none;
}

.outerWrap {
  position: relative;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .outerWrap {
    padding-top: 50px;
  }

  .dcjob {
  height: 250px;
}
}

.wrap {
  width: 1220px;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  .wrap {
    width: 100%;
    padding: 0 20px;
  }
}

.arrow-control {
  display: flex;
  padding-top: 10px;
}
.arrow-control a {
  width: 50px;
  height: 50px;
  color: #444;
  display: flex;
  font-size: 25px;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 99em;
  margin: 5px;
}
.arrow-control a:hover {
  background: #f8b616;
}

/*-moduleBox--*/
.moduleBox {
  position: fixed;
  left: 50%;
  top: 48%;
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-property: top, opacity, visibility;
  transition-duration: 0.5s;
  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;
  transition: all 0.5s ease-in-out;
}
.moduleMask.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.moduleQaptcha {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #cecece;
  background-color: #ffffff;
  overflow: hidden;
  border-radius: 15px;
}
.moduleQaptcha .box {
  position: relative;
  padding: 0px !important;
  background: #fff;
}
.moduleQaptcha .box .topic {
  width: 300px;
  position: relative;
  min-height: 65px;
  margin: 20px 80px !important;
  font-weight: 500;
}
.moduleQaptcha .reset {
  padding-top: 10px;
}
.moduleQaptcha h4 {
  text-align: center;
  font-size: 17px;
  padding: 10px;
  background: #000;
  color: #fff;
  letter-spacing: 3px;
  font-weight: 300;
  border: none;
}
.moduleQaptcha p {
  padding: 20px 20px 0px;
  text-align: center;
  font-size: 15px;
}
.moduleQaptcha a.resetButton {
  font-size: 15px;
  text-align: center;
  width: 120px;
  line-height: 30px;
  margin: 0 auto 30px;
  line-height: 40px;
  border-radius: 5px;
  background: #215ca4;
  color: #fff !important;
  display: block;
}
@media (max-width: 520px) {
  .moduleQaptcha .box .topic {
    margin: 20px auto !important;
  }
}

#closeOrder, #closeCart, #closePrice, #closeInquiry {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-80%, 30%);
  color: #fff;
  font-size: 20px;
}

.btn > a {
  font-family: "Arimo", sans-serif;
  color: #353535;
  font-size: 12px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  width: 120px;
}
.btn > a div.dec {
  display: flex;
  flex-wrap: wrap;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  justify-content: center;
}
.btn > a div.dec span {
  width: 6px;
  height: 6px;
  background: #353535;
  margin: 2px;
  transition: 0.6s;
}
.btn > a:hover {
  color: #215ca4;
}
.btn > a:hover div.dec span {
  background: #215ca4;
}

.contral_bar {
  padding: 15px 10px;
  margin: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #555;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.contral_bar .pageBox a {
  color: #333;
  display: inline-block;
  border: 1px solid #333;
  border-radius: 15px;
  padding: 0 10px;
  color: #333;
  transition: 0.6s;
}
.contral_bar .pageBox a:hover {
  color: #fff;
  background: #333;
}
.contral_bar .side_share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contral_bar .side_share a {
  font-size: 13px;
  padding: 3px 3px 3px 10px;
  display: flex;
  align-items: center;
}
.contral_bar .side_share a.line {
  color: #4ecd00;
}
.contral_bar .side_share a.line img {
  background: #4ecd00;
}
.contral_bar .side_share a.fb {
  color: #3c77c7;
}
.contral_bar .side_share a.fb img {
  background: #3c77c7;
}
.contral_bar .side_share a.twitter {
  color: #43bceb;
}
.contral_bar .side_share a.twitter img {
  background: #43bceb;
}
.contral_bar .side_share a img {
  width: 35px;
  background: #888;
  padding: 2px;
  border-radius: 99em;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .dcjob {
  height: 200px;
}
  .contral_bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .contral_bar .side_share a {
    padding: 3px;
  }
  .contral_bar .side_share a span {
    display: none;
  }
  .contral_bar .pageBox {
    padding-top: 10px;
  }
}

/*****網頁頭*****/
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);
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
}
header .logo {
  width: 400px;
  margin: 18px 0;

}
header .logo a {
  display: block;
  width: 250px;
  height: 45px;
  background: url("../images/logo.png") no-repeat;
  text-indent: -9999px;
}
header .rightBox {
  display: flex;
  text-align: center;
}
@media (max-width: 1440px) {
  header {
    padding: 0 0 0 10px;
  }
}

a.memberIcon {
  background: #215ca4;
  color: #bfd8c0;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px 0 50px;
  position: relative;
  line-height: 1.2;
  transition: 0.6s;
}
a.memberIcon::before {
  content: "";
  font-family: FontAwesome;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 99em;
  text-align: center;
  line-height: 20px;
  border: 1px solid #bfd8c0;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  transition: 0.6s;
}
a.memberIcon em {
  font-size: 12px;
  display: block;
}
a.memberIcon:hover {
  padding: 0 50px 0 20px;
}
a.memberIcon:hover::before {
  left: 100px;
}
@media (max-width: 1440px) {
  a.memberIcon {
    padding: 0 10px 0 45px;
  }
}

/*menu*/
ul.menu {
  display: flex;
}
ul.menu > li {
  position: relative;
}
ul.menu > li:hover > a {
  color: #215ca4;
}
ul.menu > li:hover > a::after {
  height: 25px;
  transform-origin: right bottom;
}
ul.menu > li > a {
  position: relative;
  display: block;
  padding: 25px 30px;
  font-size: 17px;
  line-height: 30px;
  color: #333;
  text-align: center;
  font-weight: 400;
}
ul.menu > li > a.current {
  color: #215ca4;
}
ul.menu > li > a.current::before {
  right: 0;
  opacity: 0;
}
ul.menu > li > a.current::after {
  height: 25px;
  transform-origin: right bottom;
}
ul.menu > li > a::after {
  content: "";
  width: 1px;
  height: 0px;
  display: block;
  background: #215ca4;
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: left bottom;
  transition: 0.6s;
}
ul.menu .submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  min-width: 100%;
  text-align: center;
}
ul.menu .submenu a {
  display: block;
  padding: 10px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
  background-color: #333;
  white-space: nowrap;
}
ul.menu .submenu a em {
  display: block;
  font-size: 12px;
}
ul.menu .submenu a:hover {
  background-color: #215ca4;
}
@media (max-width: 1440px) {
  ul.menu > li > a {
    padding: 15px 30px 15px 10px;
  }
}

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

/*****banner******/
.bannerArea {
  position: relative;
  background: #215ca4;
  z-index: 4;
  max-height: 100%;
  overflow: hidden;
}
.bannerArea .titleBox {
  z-index: 50;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  text-align: center;
  padding-bottom: 0px;
  color: #222;
  text-shadow: 0px 0px 3px #fff;
}
.bannerArea .titleBox em {
  font-family: "Arimo", sans-serif;
  font-size: 70px;
  font-weight: bold;
  color: #222;
}
.bannerArea .titleBox em i {
  /*color: #215ca4;*/
  font-style: initial;
  color: #222;
}
.bannerArea .titleBox h2 {
  font-size: 30px;
  font-weight: 300;
  color: #222;
}
.bannerArea .slick-dotted.slick-slider {
  margin-bottom: 0px;
}
.bannerArea .slick-dots {
  position: absolute;
  bottom: 200px;
  left: calc( (100% - 1160px ) /2 );
  width: 1160px;
  text-align: left;
}
.bannerArea .slick-dots li {
  width: 4px;
  height: 21px;
  background: #fff;
}
.bannerArea .slick-dots li.slick-active {
  transition: 0.6s;
  transform: rotate(-20deg);
  background: #215ca4;
}
.bannerArea .slick-dots li button::before {
  display: none;
}
.bannerArea a.scrollDown {
  bottom: 0;
  position: absolute;
  left: calc( (100% - 1160px ) /2 );
  z-index: 7;
  height: 135px;
  padding: 15px 0 0 20px;
}
.bannerArea a.scrollDown::before {
  content: "";
  width: 1px;
  height: 135px;
  display: block;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  bottom: 0;
}
.bannerArea a.scrollDown::after {
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 99em;
  background: #215ca4;
  position: absolute;
  top: 10px;
  left: 0px;
  transform: translate(-50%, 0);
}
@media (max-width: 1200px) {
  .bannerArea .slick-dots {
    bottom: 20px;
    left: 0%;
    width: 100%;
    text-align: center;
  }
  .bannerArea a.scrollDown {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .bannerArea .titleBox em {
    font-size: 26px;
  }
  .bannerArea .titleBox h2 {
    font-size: 15px;
  }
  .bannerArea .slick-dots {
    display: none !important;
  }
}

.bannerBox {
  position: relative;
  z-index: 5;
}
.bannerBox ul li.view .Txt {
  -webkit-filter: blur(0px);
  transform: translate(-50%, -50%);
  opacity: 1;
}
.bannerBox ul li .Txt {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1160px;
  transform: translate(calc(-50% + 50px), -50%);
  opacity: 0;
  z-index: 5;
  font-size: 24px;
  line-height: 36px;
  color: #fff;
  -webkit-filter: blur(10px);
  transition: transform 0.9s, opacity 0.9s;
  text-shadow: 0px 0px 10px #fff;
  font-weight: 600 !important;
}
.bannerBox ul li .Txt .entxt {
  font-size: 78px;
  line-height: 1;
  font-weight: bold;
  font-family: "Arimo", sans-serif;
}
.bannerBox ul li .Txt .entxt span.yellow_orange {
  color: #215ca4;
}
.bannerBox ul li img {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
}
@media (max-width: 1180px) {
  .bannerBox ul li .Txt {
    width: 100%;
    padding: 0 20px;
    text-align: center;
    transform: translate(-50%, -50%);
    /*font-size: 14px;*/
  }
  .bannerBox ul li .Txt .entxt {
    font-size: 38px;
  }
}

/*頁尾資訊*/
.copyright {
  /*display: flex;*/
  font-size: 12px;
  color: #454545;
  /*flex-wrap: wrap;*/
  line-height: 36px;
  text-align: right;
}
@media (max-width: 1180px) {
  .copyright {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .copyright {
    /*justify-content: center;*/
  }
}

footer {
  padding: 40px 0 20px;
  background-color: #f6f6f6;
}
footer .wrap {
  width: 1600px;
}
footer .topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #454545;
}
footer .topbar div.line {
  display: block;
  background: #cccccc;
  width: 1px;
  height: 25px;
}
footer .topbar a.downlogo {
  width: 270px;
}
footer .topbar a.downlogo img {
  display: block;
  width: 100%;
}
footer .topbar .time .timetxt {
  font-size: 16px;
  text-align: right;
}
footer .topbar .time .timetxt em {
  color: #215ca4;
  display: inline-block;
  margin-right: auto;
  float: left;
}
footer .topbar .time address {
  font-size: 20px;
  font-style: inherit;
}
footer .topbar .tel {
  font-size: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
footer .topbar .tel .title {
  font-size: 16px;
  padding-right: 10px;
}
footer .topbar .tel .title strong {
  color: #215ca4;
  font-weight: 400;
  font-size: 20px;
  display: block;
}
footer .topbar .tel a {
  color: #454545;
  font-family: "Noto Sans TC", sans-serif;
}
footer .topbar .tel a:hover {
  color: #215ca4;
}
footer .topbar a.telcall {
  border: 1px solid #215ca4;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 15px;
  color: #215ca4;
  font-weight: 800;
  transition: 0.6s;
}
footer .topbar a.telcall img {
  display: block;
  padding-right: 10px;
}
footer .topbar a.telcall:hover {
  color: #fff;
  background: #215ca4;
}
footer .topbar a.telcall:hover img {
  -webkit-filter: brightness(10);
}
footer .bottombar {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ccc;
  margin-top: 20px;
  padding: 0px 0px 0;
}
footer .bottombar .social {
  padding-top: 0px;
}
@media (max-width: 1620px) {
  footer .wrap {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 1320px) {
  footer .topbar a.downlogo {
    width: 200px;
  }
}
@media (max-width: 1200px) {
  footer .topbar .tel {
    font-size: 30px;
  }
}
@media (max-width: 1100px) {
  footer .topbar {
    flex-direction: column;
  }
  footer .topbar div.line {
    margin: 20px 0;
    width: 25px;
    height: 1px;
  }
  footer .topbar a.telcall {
    margin-top: 20px;
  }
}

@media (max-width: 1180px) {
  footer .bottombar {
    padding-top: 10px;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 1023px) {
  footer {
    padding: 40px 0 80px;
  }
  footer .topbar .tel .title {
    font-size: 13px;
    padding-right: 5px;
  }
  footer .topbar .tel .title strong {
    font-size: 16px;
  }
  /*footer .bottombar {
    padding-top: 10px;
    flex-direction: column;
    justify-content: center;
  }*/
}



/*********內頁**********/
/**********************/
.bannerArea .bannerBox img {
  display: block;
  width: 100%;
}

.bread {
  position: absolute;
  right: 10px;
  top: 25px;
  font-size: 12px;
  color: #bbb;
}
.bread a {
  color: #bbb;
}
.bread a i {
  font-size: 20px;
}
.bread span {
  padding: 0 3px;
  color: #bbb;
}

.mainArea {
  min-height: 60vh;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .mainArea {
    padding: 40px 0;
  }
}

.titleBox {
  text-align: left;
  padding-bottom: 30px;
  color: #333;
}
.titleBox em {
  font-family: "Arimo", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #215ca4;
}
.titleBox em i {
  color: #215ca4;
  font-style: initial;
}
.titleBox h2 {
  font-size: 45px;
  font-weight: 300;
  color: #222;
}

.mainArea .contentBox {
  clear: both;
}

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

.classNote, .classBox, .thankInfo {
  padding-bottom: 30px;
  line-height: 1.8;
  font-size: 15px;
  color: #222;
  text-align: center;
}
.classNote img, .classBox img, .thankInfo img {
  max-width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/*類別*/
.m_classLink {
  display: none;
}

.classLink {
  padding: 5px 0;
  text-align: center;
}
.classLink li {
  display: inline-block;
  margin: 3px;
}
.classLink a {
  position: relative;
  display: block;
  padding: 5px 50px;
  font-size: 14px;
  color: #808080;
  border-radius: 20px;
  background: #f3f3f3;
  line-height: 30px;
}
.classLink a:hover {
  color: #fff;
  background-color: #215ca4;
}
.classLink a.current {
  color: #fff;
  background-color: #215ca4;
}

/*側邊標題字*/
.sectionTitle {
  display: inline-block;
  background: #215ca4;
  color: #fff;
  font-size: 15px;
  padding: 5px 30px;
  border-radius: 99em;
  font-weight: normal;
  margin: 10px 0;
}

.side_news ul {
  margin: 0 -10px;
  display: flex;
}
.side_news ul li {
  width: 33.33%;
}
.side_news ul li .item {
  padding: 10px;
}
.side_news ul li .item .Img {
  width: 120px;
  float: left;
  padding-right: 15px;
  overflow: hidden;
}
.side_news ul li .item .Img img {
  display: block;
  width: 100%;
}
.side_news ul li .item .Txt .newsDate {
  font-size: 12px;
  color: #5a5a5a;
}
.side_news ul li .item .Txt h3 {
  font-weight: 500;
  font-size: 16px;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 25px;
  height: 50px;
  overflow: hidden;
}
.side_news ul li .item .Txt h3 a {
  color: #333;
}
.side_news ul li .item .Txt h3 a:hover {
  color: #215ca4;
}
@media (max-width: 767px) {
  .side_news ul {
    display: block;
  }
  .side_news ul li {
    width: 100%;
  }
}

/******頁籤*******/
.tab {
  display: flex;
}
.tab a {
  flex: 1;
  padding: 12px 10px;
  font-size: 15px;
  background: #d0d0d0;
  text-align: center;
  border-radius: 15px 15px 0 0;
  color: #fff;
  border-right: 1px solid #fff;
}
.tab a.current {
  background: #215ca4;
}
@media (max-width: 767px) {
  .tab a {
    padding: 12px 5px;
  }
}

.tabContent {
  margin-top: -1px;
  padding: 20px 5px;
  border-top: 1px solid #d6d6d6;
}
.tabContent > li {
  display: none;
}
.tabContent .textEditor {
  margin: 0;
}
.tabContent .sectionTitle {
  display: none;
}

/*側邊_相簿*/
.side_album {
  margin: 30px 20px;
}
.side_album .slick-prev:before, .side_album .slick-next:before {
  color: #a9a9a9;
}
.side_album a {
  display: block;
  padding: 3px;
}
.side_album a:hover img {
  border: 1px solid #215ca4;
}
.side_album a img {
  border: 1px solid #fff;
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .side_album li {
    width: 25%;
  }
}
@media (max-width: 480px) {
  .side_album li {
    width: 33.33%;
  }
}

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

  /*手機menu*/
  .m_menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: block;
    width: 100%;
    box-shadow: 0 2px 5px rgba(126, 126, 126, 0.68);
  }
  .m_menu .mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    padding-bottom: 60px;
  }
  .m_menu .m_logo {
    width: 300px;
    margin: 0 auto;
    transform: translate(-25px, 0);
  }
  .m_menu .m_logo img {
    display: block;
    width: 200px;
    padding: 10px 0;
  }
  .m_menu .controlBox {
    position: relative;
    z-index: 99;
    background-color: #fff;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  }
  .m_menu .controlBox a.main {
    position: absolute;
    right: 8px;
    top: 6px;
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 99em;
    display: flex;
    flex-wrap: wrap;
    background: #215ca4;
    justify-content: center;
    align-items: center;
    transition: 0.6s;
    /*一般造型漢堡選單*/
  }
  .m_menu .controlBox a.main span {
    width: 6px;
    height: 6px;
    display: block;
    background: #fff;
    margin: 2px;
  }
  .m_menu .controlBox a.main.show {
    transform: rotate(180deg);
  }

  .hideBox {
    /*手機menu內容*/
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 11;
    display: none;
    padding: 60px 0;
    width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    background-size: cover;
  }
  .hideBox .sp {
    display: none;
    padding: 10px;
    font-size: 13px;
    color: #fff;
    background-color: #c80303;
  }

  /*手機會員登入*/
  .m_menu .social {
    justify-content: center;
  }
  .m_menu a.memberIcon {
    width: 270px;
    margin: 20px auto;
    padding: 20px 60px;
    display: block;
    position: relative;
  }
  .m_menu a.memberIcon em {
    display: inline-block;
    padding-left: 5px;
  }
  .m_menu a.memberIcon::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 10px;
    border-color: transparent transparent transparent #bfd8c0;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
    transition: 0.6s;
  }
  .m_menu a.memberIcon:hover {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .m_menu a.memberIcon:hover::before {
    left: 180px;
  }

  .nav {
    width: 270px;
    margin: 20px auto;
  }
  .nav li {
    border-bottom: none;
  }
  .nav a {
    position: relative;
    display: block;
    padding: 20px 10px;
    font-size: 17px;
    color: #fff;
    text-align: center;
  }
  .nav a i {
    position: absolute;
    right: 10px;
    top: 50%;
    display: block;
    margin-top: -7px;
  }
  .nav .submenu {
    display: none;
  }
  .nav .submenu a {
    padding: 10px 20px;
    font-size: 13px;
    color: #fff;
    background: #215ca4;
    border-bottom: 1px solid #5a5a5a;
  }
}
/*640*/
@media (max-width: 640px) {

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

.dcjob {
  height: 300px;
}

.bannerBox ul li .Txt {
  font-size: 14px;
  line-height: 21px;
  display: none;
}

.bannerArea .titleBox {
  transform: translate(-50%, -30%);
}

  ul.classLink {
    display: none;
  }

  .m_classLink {
    display: block;
    position: relative;
  }
  .m_classLink a.main {
    display: block;
    font-size: 15px;
    color: #fff;
    position: relative;
    padding: 10px;
    border-radius: 30px;
    text-align: center;
    background: #215ca4;
    /* Old browsers */
    /* IE6-9 */
  }
  .m_classLink a.main i {
    display: block;
    font-size: 15px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -6px;
  }
  .m_classLink a.main b {
    font-weight: 500;
  }
  .m_classLink ul {
    padding: 0;
    text-align: center;
    list-style: none;
    display: none;
    width: 100%;
    background: #FFF;
    border-radius: 10px;
    border: 1px solid #d1d1d1;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    box-sizing: border-box;
  }
  .m_classLink ul li {
    padding: 0;
  }
  .m_classLink ul li a {
    display: block;
    padding: 15px 10px;
    border-top: 1px solid #d1d1d1;
    color: #333;
  }
  .m_classLink ul li:first-child a {
    border: none;
  }
}
/*480*/
@media (max-width: 480px) {

  .dcjob {
  height: 200px;
}

  .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 {
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.imh_opacity:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}

/***Hover效果1: 放大淡出Detail***/
.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: "read more";
  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;
  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);
}

/***Hover效果1: 放大淡出zoom***/
.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);
}


.fixedPdCompareBtn {
  position: fixed;
  right: 0;
  bottom: 30%;
  z-index: 9999999;
}

.fixedPdCompareBtn.show {
  right: 0;
}

.fixedPdCompareBtn a {
  position: relative;
  display: block;
  width: 40px;
  height: 130px;
  line-height: 40px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  background-color: #1094c5;
}

.fixedPdCompareBtn a span {
  position: absolute;
  bottom: 0;
  left: 55%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}

.fixedPdCompareBtn a span:before {
  content: '(';
}

.fixedPdCompareBtn a span:after {
  content: ')';
}

.fixedPdCompareBtn a:hover {
  background-color: #1dc1dd;
}

@media screen and (min-width: 0\0) {
  .fixedPdCompareBtn a span {
    bottom: -18px;
    left: 30%;
  }
}



.nonono{position: absolute;
top: 0;
left:0;
width:150px;
             height:60px; 
 }
    .code
    {
            background:url(code_bg.jpg);
            font-family:Arial;
            font-style:italic;
             color:blue;
             font-size:30px;
             border:0;
             padding:2px 3px;
             letter-spacing:3px;
             font-weight:bolder;             
             float:left;            
             cursor:pointer;
             width:150px;
             height:60px;
             line-height:60px;
             text-align:center;
             vertical-align:middle;
             position: relative;

    }