@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("https://fonts.googleapis.com/css?family=Noto+Sans+TC:300,400,500|Oswald:400,500&display=swap");
.orderCheckArea input[type="text"], .orderCheckArea input[type="password"], .loginArea input[type="text"], .loginArea input[type="password"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



body {
  color: #fff;
  background-color: #000;
  font-family: Arial, 'Noto Sans TC', "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
  font-size: 13px;
}

address {
  font-style: normal;
}

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

*:focus {
  outline: none;
}

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

a:hover {
  color: #d99f37;
}

[class*='col-'] {
  float: left;
}

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

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

.col-1 {
  width: 100%;
}

.col-2 {
  width: 50%;
}

.col-3 {
  width: 33.33%;
}

.col-4 {
  width: 25%;
}

.col-5 {
  width: 20%;
}

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

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

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

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

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

textarea {
  -webkit-appearance: none;
}

.outerWrap {
  position: relative;
  overflow-x: hidden;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

.outerWrap.move {
  -webkit-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  transform: translateX(-30px);
}

.wrap {
  width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1240px) {
  .wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 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;
  -webkit-transition-property: top, opacity, visibility;
  -o-transition-property: top, opacity, visibility;
  transition-property: top, opacity, visibility;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

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

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

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

/***↓↓↓購物車↓↓↓***/
.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%;
  -webkit-backface-visibility: hidden;
  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;
  -o-text-overflow: ellipsis;
  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;
  }
}

/***↑↑↑購物車↑↑↑**/
/***↓↓↓會員登入↓↓↓**/
.loginArea {
  width: 300px !important;
  border: 5px solid #d8d8d8;
  background-color: #fff;
}

.loginArea .box {
  position: relative;
  padding: 40px 20px 20px 20px;
  background: #fff;
}

a#closeLogin {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 18px;
  color: #666;
}

.loginArea input[type="text"], .loginArea input[type="password"] {
  display: block;
  width: 100%;
  height: 30px;
  padding: 5px;
  margin-bottom: 7px;
  border: 1px solid #ccc;
}

.loginArea .btn {
  /*送出按鈕*/
  margin-top: 15px;
  text-align: center;
}

.loginArea .btn a {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 3px;
  font-size: 13px;
  color: #fff;
}

.loginArea .forget {
  clear: both;
  margin-top: 20px;
  font-size: 15px;
  color: #2f2f2f;
}

.loginArea .forget span {
  font-size: 13px;
  color: #e1e1e1;
}

.loginArea .forget strong a {
  font-weight: 400;
  color: #f93;
  text-decoration: underline;
}

.loginArea .forget b a {
  font-weight: 400;
  font-size: 18px;
  color: #09f;
  text-decoration: underline;
}

.loginArea .forgetCheck {
  display: none;
}

.loginArea .forgetCheck a.btn_relog {
  display: block;
  margin-bottom: 15px;
  font-size: 15px;
  color: #09f;
  text-align: center;
  text-decoration: underline;
}

/***↑↑↑會員登入↑↑↑**/
/*****網頁頭*****/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

header.ins {
  background-color: #000;
}

header .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
}

header .logo {
  width: 190px;
}

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

header .rightItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

header .rightItem a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 30px;
  color: #fff;
  font-size: 18px;
}

header .rightItem a:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
  width: 1px;
  height: 10px;
  opacity: 0.2;
  background-color: #fff;
}

header .rightItem a:hover {
  color: #fdb940;
}

header .icon-line {
  width: 18px;
  height: 18px;
}

header .contact {
  -webkit-mask-image: url("../images/icon_mail.svg");
  mask-image: url("../images/icon_mail.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 19px auto;
  mask-size: 19px auto;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  background-color: #fff;
}

header .contact:hover {
  background-color: #fdb940;
}

.fixedOrder {
  position: absolute;
  right: 50px;
  top: 0;
  z-index: 10;
  width: 145px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.fixedOrder.show {
  opacity: 1;
  pointer-events: auto;
  -webkit-animation: bounceIn .8s both;
  animation: bounceIn .8s both;
}

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

.fixedOrder:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.goTopStyle {
  position: fixed;
  right: 65px;
  bottom: 65px;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50px;
  background-color: #fef3c7;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  pointer-events: none;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

.goTopStyle.show {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  pointer-events: auto;
}

.goTopStyle .arrow {
  width: 8px;
  height: 14px;
  color: #000;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.goTopStyle2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .goTopStyle2 {
    display: none;
  }
}

.goTopStyle2 .arrow {
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-top: 10px;
  margin-bottom: 5px;
}

.goTopStyle2 span {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
}

@media (max-width: 1023px) {
  .fixedOrder,
  .goTopStyle {
    display: none;
  }
}

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

.menu > li {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.menu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 10px;
  font-size: 15px;
  letter-spacing: .05em;
  color: #fff;
}

@media (max-width: 1315px) {
  .menu > li > a {
    font-size: 12px;
    padding: 5px;
  }
}

.menu > li > a span {
  position: relative;
  margin-left: 8px;
  padding-bottom: 2px;
}

.menu > li > a span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #e00520;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.menu > li > a::before {
  content: '';
  display: inline-block;
  height: 25px;
  background-color: #fff;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
}

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

.menu > li.about > a::before {
  width: 26px;
  -webkit-mask-image: url("../images/icon_menu1.svg");
  mask-image: url("../images/icon_menu1.svg");
}

.menu > li.menu > a::before {
  width: 28px;
  -webkit-mask-image: url("../images/icon_menu2.svg");
  mask-image: url("../images/icon_menu2.svg");
}

.menu > li.news > a::before {
  width: 18px;
  -webkit-mask-image: url("../images/icon_menu3.svg");
  mask-image: url("../images/icon_menu3.svg");
}

.menu > li.store > a::before {
  width: 19px;
  -webkit-mask-image: url("../images/icon_menu4.svg");
  mask-image: url("../images/icon_menu4.svg");
}

.menu > li.franchisee > a::before {
  width: 19px;
  -webkit-mask-image: url("../images/icon_menu5.svg");
  mask-image: url("../images/icon_menu5.svg");
}

.menu > li.join > a::before {
  width: 22px;
  -webkit-mask-image: url("../images/icon_menu6.svg");
  mask-image: url("../images/icon_menu6.svg");
}

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

.fMenu {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #000;
}

@media (min-width: 1024px) {
  .fMenu {
    display: none;
  }
}

.fMenu a {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 15px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #c91a30;
}

.fMenu i {
  font-size: 15px;
}

/*手機menu*/
.m_menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  pointer-events: auto;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

@media (min-width: 1181px) {
  .m_menu {
    display: none;
  }
}

.m_menu.out {
  opacity: 0;
  top: -50px;
  pointer-events: none;
}

.m_menu .m_logo {
  width: 250px;
}

.m_menu .m_logo a {
  display: block;
}

@media (max-width: 1180px) {
  .m_menu .m_logo {
    width: 145px;
  }
}

.m_menu .m_logo img {
  display: block;
  width: 100%;
}

.m_menu .controlBox {
  position: relative;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 1740px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  height: 100px;
}

@media (max-width: 1180px) {
  .m_menu .controlBox {
    height: 60px;
    background-color: #000;
  }
}

.m_menu .controlBox a.main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70px;
  height: 100px;
  font-size: 12px;
  letter-spacing: .05em;
  color: #fef3c7;
}

.m_menu .controlBox a.main span {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.5px;
  width: 16px;
  height: 1px;
  background-color: #fef3c7;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

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

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

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

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

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

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

.m_menu .hideBox {
  /*手機menu內容*/
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 400px;
  height: 100vh;
  padding: 80px 60px 60px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-image: url("../images/mobileBg.jpg");
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

@media (max-width: 640px) {
  .m_menu .hideBox {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 60px;
  }
}

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

.m_menu .hideBox.show {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.m_menu .mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

.m_menu .mask.show {
  opacity: 1;
  pointer-events: auto;
}

.mSocialBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: 25px;
  font-size: 16px;
}

.mSocialBox a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 20px;
}

.mSocialBox a:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
  width: 1px;
  height: 12px;
  background-color: #fff;
  opacity: 0.2;
}

.mSocialBox .icon-line {
  width: 17px;
  height: 17px;
}

.mSocialBox .contact {
  -webkit-mask-image: url("../images/icon_mail.svg");
  mask-image: url("../images/icon_mail.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 19px auto;
  mask-size: 19px auto;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  background-color: #fff;
}

.mSocialBox .contact:hover {
  background-color: #fdb940;
}

.mCopyright {
  font-size: 12px;
  color: #a2a2a2;
}

.nav {
  position: relative;
  padding-top: 50px;
}

@media (max-width: 640px) {
  .nav {
    padding-top: 40px;
  }
  .nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 100vw;
    height: 1px;
    background-color: #fff;
    opacity: 0.2;
  }
}

.nav a {
  position: relative;
  display: block;
  padding: 12px 0;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: .05em;
  color: #fff;
}

.nav a:hover span::after {
  width: 100%;
}

.nav a span {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
}

.nav a span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #e00520;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.nav a i {
  position: absolute;
  right: 10px;
  top: 50%;
  display: block;
  margin-top: -7px;
}

.nav .submenu {
  display: none;
}

.nav .submenu a {
  padding: 10px 20px;
}

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

.dotsBox {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

.dotsBox .dots li {
  display: inline-block;
}

.dotsBox .dots li.slick-active button::after {
  width: 30px;
  border-radius: 3px;
  margin-left: -15px;
}

.dotsBox .dots li button {
  position: relative;
  display: block;
  width: 40px;
  height: 10px;
  border: none;
  background: none;
  font-size: 0;
  line-height: 0;
  padding: 0;
  text-indent: -9999px;
  cursor: pointer;
}

.dotsBox .dots li button::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

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

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

/*文字跑馬燈*/
.marqueeArea {
  padding: 15px 0;
  background-color: #061540;
}

.marqueeArea h2 {
  float: left;
  margin-right: 20px;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}

.marqueeArea h2 em {
  margin-left: 5px;
}

.marqueeArea .marqueeBox {
  max-height: 30px;
  overflow: hidden;
}

.marqueeArea ul {
  overflow: hidden;
}

.marqueeArea li {
  line-height: 20px;
}

.marqueeArea .date {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  font-size: 13px;
  color: #dbdbdb;
}

.marqueeArea h3 {
  display: inline-block;
  vertical-align: top;
}

.marqueeArea h3 a {
  display: block;
  width: 100%;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

/*頁尾資訊*/
footer {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-top: -90px;
  min-height: 570px;
}

footer::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../images/footerBg.png");
  background-repeat: no-repeat;
  background-position: 50% bottom;
  background-size: cover;
}

footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer .follow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
}

footer .follow .title {
  width: 100%;
  margin-bottom: 25px;
  color: #fff;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  font-size: 15px;
  letter-spacing: .07em;
}

footer .follow a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-left: 12px;
  margin-right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
}

footer .follow a:hover {
  background-color: #fdb940;
  color: #000;
}

footer .follow .icon-line {
  width: 24px;
}

footer .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 35px;
}

@media (max-width: 480px) {
  footer .link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
  }
}

footer .link .btn2 {
  position: relative;
}

@media (min-width: 481px) {
  footer .link .btn2 {
    padding-left: 30px;
    padding-right: 30px;
  }
  footer .link .btn2:first-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -18px;
    width: 1px;
    height: 36px;
    background-color: #fff;
    opacity: 0.2;
  }
}

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

@media (max-width: 480px) {
  footer .link .btn2 a {
    width: 100%;
    text-align: center;
  }
}

.footerInfo {
  margin-bottom: 35px;
  color: #dadada;
  line-height: 1.8;
}

.footerInfo a {
  color: #dadada;
}

.footerInfo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.footerInfo li {
  padding-left: 5px;
  padding-right: 5px;
}

.footerInfo .full {
  width: 100%;
}

.copyright {
  width: 100%;
  padding-top: 25px;
  text-align: center;
  color: #b4b2b2;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/*********內頁**********/
/**********************/
.bannerArea .wrap {
  width: 100%;
  padding: 0;
}

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

.bannerArea.ins {
  position: relative;
  background-color: #000;
}

.bannerArea.ins::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 45px;
  background-image: url("../images/bannerInsBottomBg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.bannerArea.ins img {
  opacity: 0.6;
  min-height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}

.bannerArea.ins .bannerText {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.bannerArea.ins .bannerText .en {
  font-size: 16px;
  letter-spacing: .05em;
  color: #fdb940;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  text-transform: uppercase;
}

.bannerArea.ins .bannerText .tw {
  margin-bottom: 10px;
  font-size: 35px;
  font-weight: 500;
  letter-spacing: .05em;
}

.mainArea {
  padding-top: 50px;
  padding-bottom: 200px;
  background-image: url("../images/bg.jpg");
  background-position: center top;
}

@media (max-width: 640px) {
  .mainArea {
    padding-bottom: 100px;
  }
}

.titleArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 45px;
  padding-bottom: 20px;
  border-bottom: 1px solid #585655;
}

@media (max-width: 480px) {
  .titleArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.titleArea .title {
  font-size: 28px;
  letter-spacing: .07em;
  color: #fff;
  font-weight: 500;
}

.titleArea .en {
  position: relative;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  font-size: 28px;
  letter-spacing: .02em;
  color: #fdb940;
  text-transform: uppercase;
}

@media (min-width: 481px) {
  .titleArea .en {
    padding-left: 35px;
  }
  .titleArea .en::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -13px;
    width: 1px;
    height: 26px;
    background-color: #fff;
    opacity: 0.2;
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
  }
}

@media (max-width: 480px) {
  .titleArea .en {
    font-size: 20px;
  }
}

.titleArea .bread {
  margin-left: auto;
}

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

.titleBox .en {
  font-size: 16px;
  font-weight: 500;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  color: #fdb940;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.titleBox .title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 35px;
  letter-spacing: .02em;
  color: #fff;
}

.titleBox2 .en {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .07em;
  color: #fdb940;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  text-transform: uppercase;
}

.titleBox2 .title {
  padding-bottom: 5px;
  font-size: 35px;
  letter-spacing: .02em;
  color: #fff;
  font-weight: 500;
}

.titleBox2 .text {
  font-size: 14px;
  letter-spacing: .05em;
  color: #cfcfcf;
  line-height: 1.9;
}

.bread {
  font-size: 13px;
  color: #9b9a9a;
}

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

.bread a {
  color: #9b9a9a;
}

.bread a i {
  font-size: 16px;
}

.bread span {
  padding: 0 3px;
  color: #9b9a9a;
}

.mainArea .contentBox {
  clear: both;
  position: relative;
}

.articleTitle {
  /*文章標題*/
  clear: both;
  margin-bottom: 25px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 400;
  font-size: 20px;
  color: #fdb940;
}

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

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

.classBox {
  padding: 20px 0 50px;
}

.classLinkStyle {
  text-align: center;
}

.classLinkStyle li {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  padding-right: 30px;
}

.classLinkStyle li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -18px;
  width: 1px;
  height: 36px;
  background-color: #fff;
  opacity: 0.2;
}

.classLinkStyle a {
  position: relative;
  z-index: 0;
  display: inline-block;
  min-width: 150px;
  padding: 18px 30px;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: .05em;
  color: #fff;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.classLinkStyle a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../images/btnBg2.jpg");
  opacity: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.classLinkStyle a::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.classLinkStyle a:hover::before, .classLinkStyle a.current::before {
  opacity: 1;
}

/*標籤*/
.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;
}

/*側邊標題字*/
.sectionTitle {
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
  padding: 15px 10px;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  text-align: center;
  background-image: url("../images/btnBg2.jpg");
}

.sectionTitle::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid #fff;
  opacity: 0.2;
}

.sectionTitle strong {
  display: block;
  position: relative;
  font-weight: 400;
}

.sectionTitle a {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

/******頁籤*******/
.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tab a {
  display: block;
  width: 50%;
  text-align: center;
  padding: 15px 20px;
  font-size: 15px;
  color: #fff;
  letter-spacing: .1em;
}

.tab a.current {
  background-image: url("../images/btnBg2.jpg");
}

.tabContent {
  width: 100%;
  padding: 20px 5px;
}

.tabContent > li {
  display: none;
}

.tabContent .textEditor {
  margin: 0;
}

.tabContent .sectionTitle {
  display: none;
}

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

.side_menu li {
  position: relative;
}

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

.side_menu li > a.current {
  color: #fff;
  background-image: url("../images/btnBg2.jpg");
}

.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;
  border: 1px solid #555;
}

.side_album a {
  display: block;
}

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

/*側邊_線上訂房*/
.side_booking {
  margin-bottom: 30px;
}

.side_booking a {
  display: block;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px #8d2121;
  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;
  -webkit-box-shadow: 1px 0 #f38a8a;
  box-shadow: 1px 0 #f38a8a;
}

.side_booking a:hover {
  -webkit-box-shadow: inset 0 3px 3px #8d2121;
  box-shadow: inset 0 3px 3px #8d2121;
}

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

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

.side_contactInfo a:hover {
  color: #fdb940;
}

.side_contactInfo i {
  display: inline-block;
  vertical-align: middle;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  margin-right: 8px;
  border-radius: 50%;
  font-size: 17px;
  color: #000;
  text-align: center;
  background-image: url("../images/circleBg.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.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%;
  -webkit-backface-visibility: hidden;
  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 {
  display: none;
}

@media (max-width: 640px) {
  .side_share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.side_share a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 10px;
  font-size: 16px;
  color: #000;
  background-image: url(../images/circleBg.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

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

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

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

.side_news li {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.side_news .Img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.side_news .Txt {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

.btn1 a {
  display: inline-block;
  min-width: 157px;
  min-height: 54px;
  text-align: center;
  line-height: 54px;
  font-size: 13px;
  letter-spacing: .05em;
  color: #fff;
  text-transform: uppercase;
  font-family: "Oswald", "Noto Sans TC", sans-serif;
  background-image: url("../images/btnBg.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.btn2 a {
  position: relative;
  display: inline-block;
  padding: 14px 45px;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: .05em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn2 a::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn2 a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

@media (max-width: 960px) {
  ul.classLink {
    display: none;
  }
  .m_classLink {
    display: block;
    position: relative;
  }
  .m_classLink a.main {
    display: block;
    font-size: 15px;
    color: #000;
    position: relative;
    padding: 10px;
    background-color: #fdb940;
    /* IE6-9 */
  }
  .m_classLink a.main b {
    font-weight: 400;
    letter-spacing: .05em;
  }
  .m_classLink a.main i {
    display: block;
    font-size: 15px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -6px;
  }
  .m_classLink ul {
    padding: 0;
    list-style: none;
    display: none;
    width: 100%;
    background-color: #222;
    border: 1px solid #555;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
  }
  .m_classLink ul li {
    padding: 0;
  }
  .m_classLink ul li a {
    display: block;
    padding: 15px 10px;
    border-top: 1px solid #555;
  }
  .m_classLink ul li:first-child a {
    border: none;
  }
}

@media (max-width: 767px) {
  footer .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
  }
  footer .right {
    width: 100%;
    padding-left: 0;
  }
  /*bread*/
  .mainArea .titleBox .bread {
    display: none;
  }
  /*main*/
  .mainArea .cotentBox {
    padding: 20px 0;
  }
  .mainArea .titleBox h2 em {
    display: block;
    margin: 0;
  }
}

/*640*/
@media (max-width: 640px) {
  .marqueeArea h2,
  .marqueeArea ul li .date {
    display: none;
  }
  .mainArea .titleBox h2 {
    float: none;
  }
}

/*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%;
  }
  .downMenu {
    width: 100%;
  }
  .social {
    width: 100%;
  }
  .copyright {
    width: 100%;
    text-align: left;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.item_filter .Img {
  position: relative;
  overflow: hidden;
}

.item_filter .Img img {
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.item_filter:hover .Img img {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

.item_hover .Img {
  overflow: hidden;
  background-color: #000;
}

.item_hover .Img img {
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
}

.item_hover:hover .Img img {
  -webkit-transform: scale(1.08) rotate(3deg);
  -ms-transform: scale(1.08) rotate(3deg);
  transform: scale(1.08) rotate(3deg);
  opacity: 0.8;
}

.item_hover:hover h3 a {
  color: #fdb940;
}

/*--最新消息icon--*/
.newIcon {
  /*分類小圖示*/
  display: inline-block;
  min-width: 105px;
  padding: 8px 20px;
  font-size: 13px;
  text-align: center;
  letter-spacing: .05em;
  color: #fff;
  background-color: rgba(224, 5, 32, 0.8);
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}


.num {
  margin-left: 3px;
  background: #cc0000;
  color: #fff;
  font-family: "Nunito", "微軟正黑體", sans-serif;
  font-size: 14px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  line-height: 20px;
  text-align: center;
}