@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);
@import url(//fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Roboto:wght@300;400;500;700;900&display=swap);
.side_share a, .orderCheckArea input[type=text], .orderCheckArea input[type=password] {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: "Roboto", "Noto Sans TC", Helvetica, Arial, "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
  font-size: 15px;
}

/*css3*/
a {
  color: #000;
  cursor: pointer;
  transition: all 0.4s ease;
  outline: none;
}
a:hover {
  color: #f8180c;
}

[class*=col-] {
  float: left;
  box-sizing: border-box;
}

.b-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;
}

.outerWrap {
  position: relative;
  padding-top: 70px;
  opacity: 0;
  transition: all 0.4s ease;
}

.wrap {
  width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1320px) {
  .wrap {
    width: 100%;
    padding: 0 20px;
  }
}

#gmap {
  display: none;
  height: 400px;
}

.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;
  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;
}

/***↓↓↓購物車↓↓↓***/
.cartArea {
  width: 360px !important;
  border: 5px solid #d8d8d8;
  background-color: #fff;
}
.cartArea .wrap {
  position: relative;
  width: auto;
  padding: 40px 10px;
}
.cartArea .countBox {
  margin-top: 10px;
  font-size: 13px;
  color: #333;
  text-align: center;
}
.cartArea .countBox b {
  font-size: 18px;
  color: #7ea830;
}
.cartArea .countBox b em {
  font-weight: 400;
  font-size: 12px;
  color: #7ea830;
}
.cartArea .countBox a.btn_pay {
  display: inline-block;
  padding: 7px 15px;
  font-size: 13px;
  color: #fff;
}
.cartArea .goto_pay_btn {
  margin-left: 15px;
}
.cartArea .cart {
  clear: both;
  max-height: 250px;
  overflow-y: auto;
}
.cartArea .cart li {
  position: relative;
  padding: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.cartArea .cart li i {
  cursor: pointer;
  display: block;
  float: right;
  font-size: 18px;
  color: #949494;
}
.cartArea .cart .Img {
  float: left;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  overflow: hidden;
}
.cartArea .cart .Img img {
  display: block;
  width: 100%;
  backface-visibility: hidden;
}
.cartArea .cart .Txt {
  overflow: hidden;
}
.cartArea .cart .Txt strong {
  display: block;
  margin-bottom: 10px;
}
.cartArea .cart .Txt strong a {
  display: block;
  width: 90%;
  font-size: 15px;
  color: #272727;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cartArea .cart .Txt b {
  display: inline-block;
  padding-right: 10px;
  font-weight: 400;
  font-size: 12px;
}
.cartArea .cart .Txt b.price {
  font-size: 15px;
  color: #e83336;
}

/*訂單查詢*/
.orderCheckArea {
  width: 320px;
  border: 5px solid #d8d8d8;
  background-color: #fff;
}
.orderCheckArea .wrap {
  position: relative;
  width: auto;
  padding: 40px 10px;
  text-align: center;
}

#closeOrder, #closeCart, #closePrice, #closeInquiry {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 18px;
}

.orderCheckArea h4 {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  font-family: "微軟正黑體", "新細明體", sans-serif;
  color: #222;
  text-align: left;
}
.orderCheckArea input[type=text], .orderCheckArea input[type=password] {
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  padding: 5px;
  border: 2px solid #ccc;
}
.orderCheckArea a.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .cartArea, .orderCheckArea {
    width: 300px !important;
  }
  #closeOrder, #closeCart, #closePrice, #closeInquiry {
    top: 5px;
    font-size: 25px;
  }
}
/***↑↑↑購物車↑↑↑**/
/*pop*/
.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  font-size: 15px;
  line-height: 1.8;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.7s;
}
.popWin .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.7s;
}
.popWin .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  transition: all 0.7s;
  box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.6);
  border-radius: 2px;
}
.popWin .popContent {
  max-height: 85vh;
  overflow-y: auto;
}
.popWin img {
  display: block;
  max-width: 100%;
  backface-visibility: hidden;
}
.popWin .modal-header {
  padding: 20px;
}
.popWin .modal-header .title {
  font-size: 30px;
  font-weight: 700;
}
.popWin .modal-header .subTitle {
  font-size: 18px;
  font-weight: 700;
}
.popWin .financialBox {
  padding: 0 20px 30px;
}
.popWin .modal-footer {
  background-color: #e5e5e5;
  text-align: center;
  padding: 25px 0;
}
.popWin .modal-footer a {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 5px;
  color: #fff;
  letter-spacing: 2px;
}
.popWin .modal-footer a.continue {
  background-color: #f8180c;
}
.popWin .modal-footer a.btnClose {
  background-color: #808080;
}
.popWin .info {
  display: flex;
  flex-wrap: wrap;
  padding: 5px 0;
}
.popWin .info .left {
  margin-right: 10px;
}
.popWin .Txt {
  padding: 30px;
  text-align: left;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  position: absolute;
  right: -23px;
  top: -23px;
  top: 10px;
  right: 0px;
  z-index: 1;
  width: 46px;
  height: 46px;
  /* background-color: #fff; */
  border-radius: 5px;
}
.popWin .close::before, .popWin .close::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 16px;
  height: 3px;
  background-color: #888;
  /* border-radius:  50%; */
}
.popWin .close::before {
  transform: rotate(45deg);
}
.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
  opacity: 1;
}
.popWin .close::after {
  transform: rotate(-45deg);
}

@media (max-width: 1180px) {
  .popWin .close {
    right: 0;
    top: 0;
    border-radius: 0;
  }
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}
.loadingArea {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
}
.loadingArea.show {
  opacity: 1;
  pointer-events: auto;
  animation: logoFadeOut 0.6s 3.6s forwards;
}
.loadingArea.show .picTop {
  animation: antLogo1 0.8s forwards;
}
.loadingArea.show .picBottom {
  animation: antLogo1 0.8s 0.2s forwards, antRotate1 0.6s 1.4s forwards, antRotate2 0.6s 2s forwards, antRotate1 0.6s 2.6s forwards;
}
.loadingArea:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.loadingArea .loadLogo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 246px;
  height: 167px;
  opacity: 1;
  z-index: 1;
  overflow: hidden;
}
.loadingArea .picTop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
}
.loadingArea .picTop img {
  display: block;
  width: 100%;
}
.loadingArea .picBottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center calc(100% - 56px);
  transform: translateY(100%);
}
.loadingArea .picBottom img {
  display: block;
  width: 100%;
}

@keyframes antLogo1 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes antRotate1 {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes antRotate2 {
  0% {
    transform: rotateX(0);
  }
  100% {
    transform: rotateX(360deg);
  }
}
@keyframes logoFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*****網頁頭*****/
.buttomBox {
  margin: 0 -4px;
  display: flex;
  flex-wrap: wrap;
}
.buttomBox.center {
  align-items: center;
  justify-content: center;
}
.buttomBox .btn {
  padding: 4px;
}
.buttomBox a {
  display: block;
  padding: 11px 20px;
  background-color: #f8180c;
  color: #fff;
  min-width: 200px;
  text-align: center;
  line-height: 1.2;
}

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;
  align-items: center;
  width: 100%;
  z-index: 1;
  background-color: #fff;
}
header .logo {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 150px;
}
@media (max-width: 1320px) {
  header .logo {
    margin-left: 20px;
  }
}
header .logo a {
  display: block;
  width: 77px;
  height: 70px;
  background-repeat: no-repeat;
  background-image: url("../images/logo.svg");
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
}
header .rightBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0 230px;
}
@media (max-width: 1320px) {
  header .rightBox {
    padding: 0 100px;
  }
}
header .searchBtn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 185px;
  transform: translateY(-50%);
  font-size: 18px;
  height: 40px;
  display: flex;
  align-items: center;
}
@media (max-width: 1320px) {
  header .searchBtn {
    right: 155px;
  }
}

.searchBox {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  padding: 30px 0;
  background-color: #f2f2f2;
  transform: translateY(-200%);
  transition: all 0.4s ease;
  z-index: 5;
}
@media (max-width: 380px) {
  .searchBox {
    top: 110px;
  }
}
.searchBox.show {
  transform: translate(0);
}
.searchBox .wrap {
  width: 100%;
  max-width: 800px;
  padding: 5px 15px;
  background-color: transparent;
}
.searchBox .inputBox {
  position: relative;
  width: 100%;
}
.searchBox input {
  border-radius: 100px;
  border: 2px solid #fff;
  width: 100%;
  height: 50px;
  font-size: 20px;
  padding: 5px 50px 5px 20px;
}
.searchBox .searchBtn {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(0);
  font-size: 18px;
}

.languageBox {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 1320px) {
  .languageBox {
    right: 20px;
  }
}
.languageBox .language {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.languageBox .icon {
  padding-right: 5px;
}
.languageBox .main {
  padding: 5px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.languageBox ul {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.languageBox ul a {
  position: relative;
  display: block;
  width: 100%;
  padding: 5px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.languageBox ul a:hover, .languageBox ul a.current {
  color: #f8180c;
}

/*menu*/
.menu {
  display: flex;
}
.menu > li {
  display: inline-block;
}
.menu > li:not(:first-child) > a:after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 6px);
  width: 1px;
  height: 12px;
  background-color: #b2b2b2;
}
.menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  font-size: 15px;
  font-weight: 400;
  height: 70px;
  color: rgba(0, 0, 0, 0.9);
  box-sizing: border-box;
}
.menu > li > a:hover {
  color: #f8180c;
}
.menu > li > a:hover:before {
  width: 100%;
}
.menu > li > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background-color: #f8180c;
  transition: all 0.4s ease;
}
.menu .submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  width: 100%;
  background-color: #f2f2f2;
  border-top: 1px solid #f8180c;
}
.menu .submenuBox {
  display: flex;
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}
.menu .submenuBox .right {
  width: 100%;
}
.menu .submenuBox .right .unitOuterMenuBox {
  padding: 45px 30px;
  display: flex;
}
.menu .submenuBox .right .unitMenuBox {
  flex: 1;
  box-sizing: border-box;
}
.menu .submenuBox .right .unitMenuBox:not(:first-child) {
  padding-left: 20px;
}
.menu .submenuBox .right .title {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.9);
}
.menu .submenuBox .right .title a {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.9);
}
.menu .submenuBox .right .title a:hover {
  color: #f8180c;
}
.menu .submenuBox .right .title a[href=""] {
  pointer-events: none;
}
.menu .submenuBox .right .unitMenu {
  display: flex;
  flex-direction: column;
}
.menu .submenuBox .right .unitMenu a {
  font-size: 15px;
  font-weight: 300;
  padding: 4px 0;
  color: #504e4e;
}
@media (min-width: 1181px) {
  .menu .submenuBox .right .unitMenu a.pcHide {
    display: none;
  }
}
.menu .submenuBox .right .unitMenu a:hover {
  color: #f8180c;
}

/*****banner******/
/*頁尾資訊*/
.outLinkArea {
  padding: 30px 0;
  background-color: #7a7a7a;
}
@media (max-width: 960px) {
  .outLinkArea {
    padding: 0;
  }
}
@media (max-width: 1320px) {
  .outLinkArea .wrap {
    padding: 0;
  }
}
.outLinkArea .outLinkBox {
  position: relative;
  padding: 0 30px;
}
.outLinkArea .outList li {
  position: relative;
  width: 25%;
}
.outLinkArea .outList li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  opacity: 1;
}
.outLinkArea .outList li.slick-current::before {
  opacity: 0;
}
.outLinkArea .outList li > a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 10px 15px;
}
@media (max-width: 960px) {
  .outLinkArea .outList li > a {
    padding: 30px 10px;
  }
}
.outLinkArea .outList li > a:hover .title {
  color: #f8180c;
}
.outLinkArea .outList .item {
  display: flex;
  align-items: center;
}
@media (max-width: 1180px) {
  .outLinkArea .outList .item {
    flex-direction: column;
  }
}
.outLinkArea .outList .Txt {
  padding-left: 15px;
  line-height: 1.5;
  width: 100%;
}
@media (max-width: 1180px) {
  .outLinkArea .outList .Txt {
    text-align: center;
    padding-left: 0;
  }
}
.outLinkArea .outList .Txt p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 480px) {
  .outLinkArea .outList .Txt p {
    display: none;
  }
}
.outLinkArea .outList .title {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: all 0.4s ease;
}
@media (max-width: 480px) {
  .outLinkArea .outList .title {
    margin: 10px 0;
  }
}
.outLinkArea .arrowBox .prev, .outLinkArea .arrowBox .next {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
}
.outLinkArea .arrowBox .prev:hover span, .outLinkArea .arrowBox .next:hover span {
  opacity: 1;
}
.outLinkArea .arrowBox .prev span, .outLinkArea .arrowBox .next span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 30px;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0.6;
}
.outLinkArea .arrowBox .prev {
  left: 0;
}
.outLinkArea .arrowBox .prev span::before {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 5px;
  height: 100%;
  transform-origin: left bottom;
  background-color: #fff;
  transform: rotate(35deg);
}
.outLinkArea .arrowBox .prev span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 100%;
  transform-origin: left top;
  background-color: #fff;
  transform: rotate(-35deg);
}
.outLinkArea .arrowBox .next {
  right: 0;
}
.outLinkArea .arrowBox .next span::before {
  content: "";
  position: absolute;
  bottom: 50%;
  right: 0;
  width: 5px;
  height: 100%;
  transform-origin: right bottom;
  background-color: #fff;
  transform: rotate(-35deg);
}
.outLinkArea .arrowBox .next span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 100%;
  transform-origin: right top;
  background-color: #fff;
  transform: rotate(35deg);
}

footer {
  background-color: #f2f2f2;
}
footer .downMenu {
  padding: 75px 0 50px;
}
@media (max-width: 960px) {
  footer .downMenu {
    padding: 35px 0 0;
  }
}
footer .footerLinkList {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 960px) {
  footer .footerLinkList {
    flex-direction: column;
  }
}
@media (min-width: 961px) {
  footer .footerLinkList > li:not(:first-child) {
    padding-left: 10px;
  }
}
@media (max-width: 960px) {
  footer .footerLinkList > li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
footer .footerLinkList > li.current .fLinkTitle.dropLink:before {
  background-color: transparent;
}
footer .footerLinkList > li.current .fLinkTitle.dropLink:after {
  transform: rotate(0deg);
  background-color: rgba(0, 0, 0, 0.3);
}
footer .footerLinkList .fLinkTitle {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 960px) {
  footer .footerLinkList .fLinkTitle {
    margin: 0;
    padding: 5px 0;
  }
}
footer .footerLinkList .fLinkTitle.dropLink {
  position: relative;
  cursor: default;
  transition: all 0.4s ease;
}
@media (max-width: 960px) {
  footer .footerLinkList .fLinkTitle.dropLink {
    cursor: pointer;
  }
  footer .footerLinkList .fLinkTitle.dropLink:hover {
    color: #f8180c;
  }
  footer .footerLinkList .fLinkTitle.dropLink:hover:before, footer .footerLinkList .fLinkTitle.dropLink:hover:after {
    background-color: #f8180c;
  }
}
footer .footerLinkList .fLinkTitle.dropLink:before, footer .footerLinkList .fLinkTitle.dropLink:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 1;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background-color: #f8180c;
  transition: 0.3s ease-out;
  opacity: 0;
}
@media (max-width: 960px) {
  footer .footerLinkList .fLinkTitle.dropLink:before, footer .footerLinkList .fLinkTitle.dropLink:after {
    opacity: 1;
  }
}
footer .footerLinkList .fLinkTitle.dropLink:after {
  transform: rotate(90deg);
}
footer .footerLinkList .fLinkTitle a {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  font-family: "微軟正黑體";
  color: #fff;
  letter-spacing: 0.5px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  footer .footerLinkList .fLinkTitle a {
    border: 1px solid #fff;
    padding: 8px 20px 8px 8px;
    width: 100%;
  }
}
@media (min-width: 1181px) {
  footer .footerLinkList .fLinkTitle a:hover {
    color: #f8180c;
  }
}
footer .footerLinkList a {
  display: block;
  padding: 2px 0;
  font-size: 14px;
  font-weight: 400;
  font-family: "微軟正黑體";
  color: #fff;
}
@media (min-width: 1181px) {
  footer .footerLinkList a:hover {
    color: #f8180c;
  }
}
footer .fLinks {
  display: flex;
  flex-direction: column;
}
@media (max-width: 960px) {
  footer .fLinks {
    display: none;
    padding: 5px 10px 20px;
  }
}
footer .fLinks a {
  padding: 5px 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
}
footer .fLinks a:hover {
  color: #f8180c;
}
footer .bottomBox {
  border-top: 1px solid #d9d9d9;
  padding: 30px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1180px) {
  footer .bottomBox {
    flex-direction: column;
    border: none;
  }
}
footer .left {
  padding-right: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .left > .flex {
  margin-right: 5px;
  display: flex;
  align-items: center;
}
@media (max-width: 1180px) {
  footer .left > .flex {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 1180px) {
  footer .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 0;
    margin-top: 30px;
    margin-bottom: 10px;
    width: 100%;
  }
}
footer .right {
  flex-shrink: 0;
}
@media (max-width: 1180px) {
  footer .right {
    width: 100%;
  }
}
footer .top {
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 1180px) {
  footer .top {
    justify-content: center;
  }
}
footer .downLogo {
  flex-shrink: 0;
  margin-right: 20px;
  width: 77px;
}
@media (max-width: 1180px) {
  footer .downLogo {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
footer .privacyLink {
  display: flex;
  flex-wrap: wrap;
}
footer .privacyLink a {
  padding: 5px;
  display: block;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: #888;
}
footer .privacyLink a:hover {
  color: #f8180c;
}
footer .privacyLink a:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -8px;
  width: 1px;
  height: 16px;
  background-color: #bbb;
}
footer .socialBox {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -3px;
}
footer .socialBox a {
  margin: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 14px;
  color: #f2f2f2;
  border-radius: 50%;
  background-color: #7a7a7a;
}
footer .copyright {
  width: 100%;
  color: rgba(0, 0, 0, 0.5);
  text-align: right;
}
@media (max-width: 1180px) {
  footer .copyright {
    text-align: center;
  }
}

.temperature, .covid, .punchTime {
  margin: 5px;
}
.temperature a, .covid a, .punchTime a {
  padding: 0 10px;
  display: flex;
  width: 240px;
  height: 50px;
  color: #fff;
}
.temperature a:hover, .covid a:hover, .punchTime a:hover {
  opacity: 0.8;
}
.temperature .icon, .covid .icon, .punchTime .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
}
.temperature .title, .covid .title, .punchTime .title {
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.temperature a {
  background-color: #f8180c;
}

.covid a {
  background-color: #7A7A7A;
}

.punchTime.report a {
  width: 335px;
}
.punchTime a {
  background-color: #000;
}

/*share*/
.social {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  margin-right: -4px;
}
.social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 5px;
  font-size: 19px;
  color: #929292;
  text-align: center;
}
.social a:hover {
  opacity: 0.8;
}

.translateIbest {
  display: inline-block;
  vertical-align: middle;
}
.translateIbest .design {
  /*網頁設計‧愛貝斯*/
  display: block;
  line-height: 22px;
  font-size: 9pt;
  color: #000;
}
.translateIbest .design a {
  /*網頁設計‧愛貝斯*/
  color: #000;
  text-decoration: none;
}
.translateIbest .design a:hover {
  text-decoration: underline;
}

.privacyArea {
  width: 100%;
  background-color: rgba(153, 153, 153, 0.8);
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  padding: 15px 0 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 50;
  transition: all 0.6s 0.1s;
}
.privacyArea.check {
  opacity: 0;
  transform: translateY(100%);
}
.privacyArea .wrap {
  align-items: flex-start;
  display: flex;
  justify-content: center;
}
.privacyArea .text {
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.privacyArea .text a {
  color: #f8180c;
  display: inline-block;
  margin-top: 8px;
  text-decoration: underline;
}
.privacyArea .text a:hover {
  color: #f8180c;
}
.privacyArea .btn {
  margin-left: 25px;
  padding-top: 0;
}
.privacyArea .btn a {
  background-color: #f8180c;
  color: #fff;
  display: inline-block;
  padding: 10px 35px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .privacyArea .wrap {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .privacyArea .text {
    width: 100%;
  }
  .privacyArea .btn {
    margin-top: 25px;
    margin-left: 0;
  }
}

/*********內頁**********/
/**********************/
.bannerArea {
  clear: both;
  position: relative;
  z-index: 1;
}
@media (max-width: 1180px) {
  .bannerArea .bannerBox .Img {
    position: relative;
    overflow: hidden;
    height: 420px;
  }
  .bannerArea .bannerBox .Img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
  }
}
@media (max-width: 840px) {
  .bannerArea .bannerBox .Img {
    height: 300px;
  }
  .bannerArea .bannerBox .Img img {
    transform: translate(-52%, -50%);
  }
}
@media (max-width: 1180px) {
  .bannerArea.pc .bannerBox .Img, .bannerArea.mobile .bannerBox .Img {
    position: relative;
    height: 575px;
    overflow: hidden;
  }
  .bannerArea.pc .bannerBox .Img img, .bannerArea.mobile .bannerBox .Img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
  }
}
@media (max-width: 960px) {
  .bannerArea.pc .bannerBox .Img, .bannerArea.mobile .bannerBox .Img {
    height: 480px;
  }
}
.bannerArea .wrap {
  width: 100%;
  padding: 0;
}
.bannerArea .bannerBox li {
  position: relative;
}
.bannerArea .bannerBox img {
  display: block;
  width: 100%;
  backface-visibility: hidden;
}
.bannerArea .bannerBox .Txt {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1280px;
  transform: translate(-50%, -50%);
  letter-spacing: 0.5px;
  line-height: 1.8;
}
@media (max-width: 1320px) {
  .bannerArea .bannerBox .Txt {
    padding: 0 20px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerBox .Txt {
    text-align: center;
  }
}
.bannerArea .bannerBox .text {
  width: 100%;
}
.bannerArea .bannerBox .text p {
  width: 100%;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 640px) {
  .bannerArea .bannerBox .text p {
    display: none;
  }
}
.bannerArea .bannerBox .title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 25px;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
@media (max-width: 640px) {
  .bannerArea .bannerBox .title {
    font-size: 27px;
  }
}
.bannerArea .bannerBox .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 150px;
  background-color: #f8180c;
}
@media (max-width: 640px) {
  .bannerArea .bannerBox .title:before {
    left: calc(50% - 75px);
  }
}
.bannerArea .bannerBox .subTitle {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 420px) {
  .bannerArea .bannerBox .subTitle {
    font-size: 16px;
  }
}
.bannerArea .bannerBox .btnBox {
  margin-top: 45px;
}
.bannerArea .bannerBox .btnBox a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  background-color: #f8180c;
  color: #fff;
}
.bannerArea .bannerBox .btnBox a:hover {
  opacity: 0.8;
}
.bannerArea .scrollDown {
  cursor: pointer;
  position: absolute;
  height: 105px;
  left: 50%;
  bottom: -33px;
  transform: translateX(-50%);
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.bannerArea .scrollDown span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 66px;
  overflow: hidden;
}
.bannerArea .scrollDown span:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: calc(50% - 1px);
  height: 100%;
  width: 2px;
  background-color: #f8180c;
  animation: scrollAni 2.5s linear infinite;
}

@keyframes scrollAni {
  0% {
    bottom: 100%;
  }
  50% {
    bottom: 0;
  }
  100% {
    bottom: -100%;
  }
}
.mainArea {
  padding: 30px 0;
}

.titleBox {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
.titleBox h2 {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
}
.titleBox em {
  font-weight: 300;
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.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 .contentBox {
  clear: both;
}

.articleTitle {
  /*文章標題*/
  clear: both;
  margin-bottom: 25px;
  padding: 10px;
  border-bottom: 1px solid #eee;
  font-size: 26px;
  font-weight: 400;
  color: #061540;
}

table.breakpoint > tbody > tr > td.expand {
  cursor: pointer;
  background: url("../images/plus.png") no-repeat 5px center;
  padding-left: 40px;
}

/*類別*/
.m_classLink {
  display: none;
}

.classArea {
  position: relative;
  margin-top: -55px;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
@media (max-width: 800px) {
  .classArea.flex {
    margin-top: 0;
  }
}
.classArea.flex .wrap {
  padding: 0;
}
.classArea.flex .classLink {
  display: flex;
}
@media (max-width: 860px) {
  .classArea.flex .classLink {
    flex-wrap: wrap;
  }
}
.classArea.flex .classLink li {
  flex: 1;
  flex-basis: auto;
}
.classArea .wrap {
  position: relative;
  width: 100%;
  max-width: 1360px;
  padding: 0 40px;
}
.classArea .arrowBox > div {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 40px;
  height: 55px;
}
.classArea .arrowBox .prev {
  left: 0;
}
.classArea .arrowBox .prev:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 18px;
  background-image: url(../images/class_arrow.png);
}
.classArea .arrowBox .next {
  right: 0;
}
.classArea .arrowBox .next:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  width: 11px;
  height: 18px;
  background-image: url(../images/class_arrow.png);
}

.classLink {
  text-align: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  background-size: 1px 100%;
}
.classLink li {
  display: inline-block;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}
.classLink a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 100%;
  min-width: 110px;
  padding: 5px 10px;
  font-size: 14px;
  color: #fff;
}
.classLink a:hover {
  background-color: #f8180c;
}
.classLink a.current {
  background-color: #f8180c;
}
.classLink .point img {
  margin-right: 5px;
}

.classLink2 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px 20px;
}
.classLink2 li {
  padding: 5px;
  width: 33.33%;
}
@media (max-width: 1180px) {
  .classLink2 li {
    width: 100%;
  }
}
.classLink2 a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  background-color: #eee;
  color: #000;
  text-align: center;
}
.classLink2 a:hover, .classLink2 a.current {
  color: #f8180c;
}

/*標籤*/
.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 #51649A;
  font-size: 13px;
  color: #51649A;
}
.tagBox a:hover {
  color: #fff;
  background-color: #51649A;
}
.tagBox a.current {
  color: #fff;
  background-color: #51649A;
}
.tagBox a.current:before {
  content: "\f00d";
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 12px;
}

.relatedArea {
  padding: 65px 0 130px;
  background-color: #f7f7f7;
}
@media (max-width: 960px) {
  .relatedArea {
    padding: 30px 0 40px;
  }
}

/*側邊標題字*/
.sectionTitle {
  margin-bottom: 60px;
  font-size: 35px;
  font-weight: 700;
  color: #061540;
}
@media (max-width: 960px) {
  .sectionTitle {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.sectionTitle strong {
  display: block;
  position: relative;
  font-weight: 700;
}
.sectionTitle a {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/******頁籤*******/
.tab {
  margin-top: 40px;
}
.tab a {
  display: block;
  float: left;
  padding: 12px 10px;
  font-size: 15px;
  color: #1c1c1c;
}
.tab a.current {
  border: 1px solid #c0c0c0;
  border-top: 1px solid #c0c0c0;
  border-bottom: 1px solid #f8f3f0;
  box-shadow: inset 0 3px 5px -2px #cecece;
}

.tabContent {
  margin-top: -1px;
  padding: 20px 5px;
  border-top: 1px solid #d6d6d6;
}
.tabContent > li {
  display: none;
}
.tabContent .textEditor {
  margin: 0;
}
.tabContent .sectionTitle {
  display: none;
}

/*側邊_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 {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-right: -10px;
}
.side_album li {
  float: left;
  width: 33.33%;
  padding: 0 10px 10px 0;
}
.side_album a {
  display: block;
  box-shadow: 2px 2px 5px #c3c3c3;
}
.side_album a img {
  display: block;
  width: 100%;
  backface-visibility: hidden;
}

/*側邊_線上訂房*/
.side_booking {
  margin-bottom: 30px;
}
.side_booking a {
  display: block;
  border-radius: 4px;
  box-shadow: 0 1px 1px #8d2121;
  font-weight: bold;
  font-size: 25px;
  color: #fff;
  background-color: #f05b8f;
}
.side_booking a i {
  display: inline-block;
  font-size: 28px;
  padding: 10px 15px;
  margin-right: 15px;
  border-right: 1px solid #d33434;
  box-shadow: 1px 0 #f38a8a;
}
.side_booking a:hover {
  box-shadow: inset 0 3px 3px #8d2121;
}

/*側邊_聯絡資訊*/
.side_contactInfo li {
  margin-bottom: 20px;
}
.side_contactInfo a {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #414141;
}
.side_contactInfo i {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-right: 8px;
  border: 2px solid #a5a5a5;
  border-radius: 50%;
  font-size: 20px;
  color: #a5a5a5;
  text-align: center;
}
.side_contactInfo b {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
}

/*側邊_房型*/
.side_room {
  margin-bottom: 50px;
}
.side_room .Img img {
  display: block;
  width: 100%;
  backface-visibility: hidden;
}
.side_room .Txt {
  margin-top: 5px;
}
.side_room .Txt p {
  max-height: 100px;
  font-size: 13px;
  color: #858383;
  line-height: 1.8;
  overflow: hidden;
}
.side_room h3 a {
  font-size: 16px;
  font-weight: 400;
}

/*側邊_分享*/
.side_share {
  clear: both;
  display: none;
  margin-top: 30px;
}
.side_share a {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 15px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.side_share i {
  padding-right: 5px;
  font-size: 18px;
}
.side_share .line {
  box-shadow: 0 0 0 1px #22a00b;
  border-top: 1px solid #e1ffa9;
  background: #a7e732;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjYTdlNzMyIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMzUlIiBzdG9wLWNvbG9yPSIjMWZiNTBlIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: linear-gradient(135deg, #a7e732 0%, #1fb50e 35%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a7e732", endColorstr="#1fb50e", GradientType=1);
}
.side_share .fb {
  box-shadow: 0 0 0 1px #235c9b;
  border-top: 1px solid #8DCFF5;
  background: rgb(93, 160, 234); /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzVkYTBlYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzZDhjZTYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
  background: linear-gradient(to bottom, rgb(93, 160, 234) 0%, rgb(61, 140, 230) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5da0ea", endColorstr="#3d8ce6", GradientType=0); /* IE6-8 */
}

/*側邊_其他相關訊息*/
.side_news {
  margin: 0 -12px;
}
.side_news li {
  padding: 12px;
}
.side_news .Img {
  overflow: hidden;
}
.side_news .Img img {
  display: block;
  width: 100%;
}
.side_news .Txt {
  padding-top: 40px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .side_news .Txt {
    padding-top: 10px;
  }
}
.side_news .Txt .title {
  padding: 25px 0 15px;
}
@media (max-width: 480px) {
  .side_news .Txt .title {
    padding: 10px 0;
  }
}
.side_news .Txt .title a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  height: 82px;
}
.side_news .Txt .title a:hover {
  text-decoration: underline;
}
.side_news .Txt b {
  display: block;
  margin-top: 5px;
  font-weight: 400;
  font-size: 12px;
  color: #999;
}
.side_news .Txt p {
  color: #8e8e8e;
  line-height: 1.5;
  height: 90px;
}

/*--滑動解鎖--*/
.captchaArea {
  position: relative;
  width: 200px;
  height: 50px;
  background-color: #ddd;
}
.captchaArea.unlocking .sliderBtn {
  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;
  box-sizing: border-box;
  transition: all 0.3s linear;
}
.sliderBtn::before {
  content: "\f105";
  position: absolute;
  top: 13px;
  left: 23px;
  color: #fff;
  font-size: 24px;
  font-family: FontAwesome;
  pointer-events: none;
}

/*手機menu*/
.m_menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0 2px 5px rgba(126, 126, 126, 0.68);
  display: none;
}
.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-left: 15px;
}
.m_menu .m_logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}
.m_menu .m_logo img {
  display: block;
  width: 100%;
}
.m_menu .controlBox {
  position: relative;
  z-index: 99;
  background-color: #fff;
}
@media (max-width: 380px) {
  .m_menu .controlBox {
    height: 110px;
  }
}
.m_menu .controlBox a.main {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  background-color: #f8180c;
}
.m_menu .controlBox a.main:hover span:before {
  width: 100%;
}
.m_menu .controlBox a.main span {
  position: absolute;
  top: calc(50% - 10px);
  left: 50%;
  transform: translateX(-50%);
  margin-top: -0.5px;
  width: 24px;
  height: 1px;
  background-color: #fff;
  transition: all 0.5s;
  box-sizing: border-box;
}
.m_menu .controlBox a.main span:before, .m_menu .controlBox a.main span:after {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.5s;
}
.m_menu .controlBox a.main span:before {
  bottom: -10px;
  width: calc(100% - 9px);
}
.m_menu .controlBox a.main span:after {
  bottom: -20px;
}
.m_menu .controlBox a.main.show span {
  background-color: transparent;
  top: 50%;
}
.m_menu .controlBox a.main.show span:before {
  bottom: 0;
  transform: rotate(45deg);
  width: 100%;
}
.m_menu .controlBox a.main.show span:after {
  bottom: 0;
  transform: rotate(-45deg);
}
.m_menu .controlBox .languageBox {
  margin: 0;
  position: absolute;
  top: 50%;
  right: 85px;
  left: auto;
  transform: translateY(-50%);
}
@media (max-width: 380px) {
  .m_menu .controlBox .languageBox {
    top: auto;
    left: 50px;
    right: auto;
    bottom: 0;
    transform: translate(0);
  }
}
.m_menu .searchBtn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 230px;
  transform: translateY(-50%);
  font-size: 18px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 380px) {
  .m_menu .searchBtn {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    transform: translate(0);
    width: 40px;
  }
}
.m_menu .hideBox {
  /*手機menu內容*/
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 11;
  width: 100%;
  padding: 70px 0 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  background-color: #fff;
  transform: translateX(100%);
  transition: all 0.4s ease;
}
.m_menu .hideBox.active {
  transform: translateX(0);
}
.m_menu .hideBox .sp {
  display: none;
  padding: 10px;
  font-size: 13px;
  color: #fff;
  background-color: #c80303;
}
.m_menu .hideBox .insBox {
  position: relative;
  min-height: 100%;
  box-sizing: border-box;
  padding-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;
}
.m_menu .hideBox .bottomBox {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 100px;
  overflow: hidden;
}
.m_menu .languageBox {
  margin-top: 25px;
  position: relative;
  top: 0;
  right: auto;
  left: 0;
  transform: translate(0);
}
.m_menu .nav > li {
  padding: 20px 0px;
}
.m_menu .nav > li:not(:first-child) {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.m_menu .nav > li.hasMenu > a.open:after {
  background-repeat: repeat-x;
  background-image: linear-gradient(to bottom, #b2b2b2 0%, #b2b2b2 100%);
  background-size: 1px 1px;
  background-position: 0 50%;
}
.m_menu .nav > li.hasMenu > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(20px, -50%);
  width: 11px;
  height: 11px;
  background-repeat: repeat-x, repeat-y;
  background-image: linear-gradient(to bottom, #f8180c 0%, #f8180c 100%), linear-gradient(to right, #f8180c 0%, #f8180c 100%);
  background-size: 1px 1px;
  background-position: 0 50%, 50% 0;
}
.m_menu .nav > li > a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
}
.m_menu .nav > li > a:hover:before, .m_menu .nav > li > a.open:before {
  width: 100%;
}
.m_menu .nav > li > a:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #f8180c;
  transition: all 0.4s ease;
}
.m_menu .nav > li > a i {
  position: absolute;
  right: 10px;
  top: 50%;
  display: block;
  margin-top: -7px;
}
.m_menu .nav .submenu {
  display: none;
}
.m_menu .nav .submenuBox .left {
  display: none;
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.m_menu .nav .submenuBox .Img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.m_menu .nav .submenuBox .Img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  z-index: -1;
}
@media (max-width: 570px) {
  .m_menu .nav .submenuBox .Img img {
    height: 245px;
    width: auto;
  }
}
.m_menu .nav .submenuBox .Txt {
  position: relative;
  padding: 20px;
  line-height: 1.8;
  z-index: 2;
  width: 100%;
  height: 245px;
}
.m_menu .nav .submenuBox .Txt .title {
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.m_menu .nav .submenuBox .Txt .title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 1px;
  background-color: #f8180c;
}
.m_menu .nav .submenuBox .Txt p {
  display: block;
  width: 100%;
  font-size: 14px;
  height: 50px;
  color: rgba(255, 255, 255, 0.8);
}
.m_menu .nav .submenuBox .btn {
  margin-top: 30px;
}
.m_menu .nav .submenuBox .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8180c;
  font-size: 14px;
  color: #fff;
  width: 200px;
  height: 40px;
}
.m_menu .nav .unitMenuBox {
  padding-top: 15px;
}
.m_menu .nav .unitMenu {
  display: none;
}
.m_menu .nav .unitMenu a {
  display: block;
  padding: 5px 0;
  color: #5d5d5d;
}
.m_menu .nav .unitMenu a:hover {
  color: #f8180c;
}
.m_menu .nav .title {
  padding: 15px 0;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.m_menu .nav .title.hasSubMenu a {
  display: flex;
  align-items: center;
}
.m_menu .nav .title.hasSubMenu a.open span {
  background-color: #b2b2b2;
}
.m_menu .nav .title.hasSubMenu a.open span:before {
  background-color: #b2b2b2;
  transform: rotate(0);
}
.m_menu .nav .title.hasSubMenu span {
  margin-left: 10px;
  position: relative;
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #f00;
  transition: all 0.4s ease;
}
.m_menu .nav .title.hasSubMenu span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f00;
  transform: rotate(-90deg);
  transition: all 0.4s ease;
}
.m_menu .m_menu_pic_box {
  display: none;
  position: absolute;
  bottom: 100px;
  left: 0;
  height: 245px;
  width: 100%;
}
.m_menu .m_menu_pic_box .m_menu_pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
  opacity: 0;
}
.m_menu .m_menu_pic_box .m_menu_pic.show {
  z-index: 2;
  opacity: 1;
}
.m_menu .m_menu_pic_box .m_menu_pic.active {
  z-index: 3;
  opacity: 1;
}
.m_menu .m_menu_pic_box .Img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.m_menu .m_menu_pic_box .Img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  z-index: -1;
}
@media (max-width: 570px) {
  .m_menu .m_menu_pic_box .Img img {
    height: 245px;
    width: auto;
  }
}
.m_menu .m_menu_pic_box .Txt {
  position: relative;
  padding: 20px;
  line-height: 1.8;
  z-index: 2;
  width: 100%;
  height: 245px;
}
.m_menu .m_menu_pic_box .Txt .title {
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.m_menu .m_menu_pic_box .Txt .title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 1px;
  background-color: #f8180c;
}
.m_menu .m_menu_pic_box .Txt p {
  display: block;
  width: 100%;
  font-size: 14px;
  height: 50px;
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}
.m_menu .m_menu_pic_box .btn {
  margin-top: 30px;
}
.m_menu .m_menu_pic_box .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8180c;
  font-size: 14px;
  color: #fff;
  width: 200px;
  height: 40px;
}

/**********適應性**********/
/************************/
@media (max-width: 1180px) { /*1160+20(卷軸寬度)*/
  .outerWrap {
    padding-top: 70px;
  }
  header {
    display: none;
  }
  /*手機menu*/
  .m_menu {
    display: block;
  }
}
@media (max-width: 767px) {
  /*main*/
  .mainArea .cotentBox {
    padding: 20px 0;
  }
  .mainArea .titleBox h2 em {
    display: block;
    margin: 0;
  }
  /*footer*/
  .translateIbest {
    float: none;
  }
  /*側邊_分享*/
  .side_share {
    clear: both;
    display: block;
    margin-bottom: 30px;
  }
}
/*640*/
/*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 {
  overflow: hidden;
}
.imh_opacity img {
  transition: all 0.3s linear;
  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;
  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);
}

/***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: "\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;
  transition: all 0.4s ease;
}
.imh_zoom:hover a:before {
  top: 50%;
}
.imh_zoom:hover img {
  opacity: 0.3;
  transform: scale(1.05);
}