@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=Manjari:100,400|Red+Hat+Text|Montserrat:100,400|Noto+Sans+TC:300,400&display=swap");

body {
  background-color: #fff;
  font-family: '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: #323232;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a:hover {
  color: #32d199;
}

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

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

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

.col-1 {
  width: 100%;
}

.col-2 {
  width: 50%;
}

.col-3 {
  width: 33.33%;
}

.col-4 {
  width: 25%;
}

.col-5 {
  width: 20%;
}

a.btn_color1 {
  /*按鈕主色1*/
  color: #222 !important;
  background-color: #32d199 !important;
}

a.btn_color1:hover {
  color: #fff !important;
  background-color: #222 !important;
}

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

a.btn_color2:hover {
  color: #fff !important;
  background-color: #666;
}

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

textarea {
  -webkit-appearance: none;
  border: 1px solid #ccc;
}

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

.outerWrap.show {
  opacity: 1;
}

@media (max-width: 1220px) {
  .outerWrap {
    padding-top: 60px;
  }
}

/* @media (max-width: 1023px) {
  .outerWrap {
    padding-bottom: 60px;
  }
} */

.outerWrap.noHeader header {
  display: none;
}

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

@media (max-width: 1240px) {
  .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;
  -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;
}

/***↓↓↓購物車↓↓↓***/
@media (max-width: 480px) {
  .cartArea {
    width: calc(100% - 40px) !important;
    left: 20px !important;
    margin-left: 0 !important;
  }
}

.cartArea .wrap {
  position: relative;
  width: auto;
}

.cartArea .countBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 15px;
  letter-spacing: .05em;
  color: #333;
}

.cartArea .countBox .price {
  color: #e9b31a;
  padding-left: 5px;
}

.cartArea .cartNote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  color: #434343;
  letter-spacing: .025em;
}

.cartArea .cartNote i {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  margin-right: 15px;
  border-radius: 50%;
  fill: #000;
  background-color: #32d199;
}

.cartArea .cartNote b {
  margin: 0 3px;
  font-size: 18px;
  font-weight: 500;
  color: #e9b31a;
}

.cartArea .cartNote svg {
  width: 20px;
  height: 20px;
}

.cartArea .countBox {
  text-align: left;
  padding-bottom: 12px;
}

.cartArea .goto_pay_btn {
  margin-left: 15px;
}

.cartArea .cart {
  clear: both;
  max-height: 250px;
  overflow-y: auto;
}

.cartArea .cart li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.cartArea .cart li i {
  cursor: pointer;
  display: block;
  float: right;
  font-size: 18px;
  color: #949494;
}

.cartArea .cart .Img {
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.cartArea .cart .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cartArea .cart .Txt {
  width: 100%;
  line-height: 1.6;
}

.cartArea .cart .Txt strong {
  display: block;
  font-weight: 400;
  padding-bottom: 5px;
  font-size: 16px;
  color: #a9b2bb;
}

.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 {
  font-weight: 400;
}

.cartArea .price {
  font-size: 15px;
  color: #7e99c8;
}

.cartArea .num {
  font-family: "Red Hat Text", "Noto Sans TC", sans-serif;
  font-size: 16px;
  letter-spacing: .05em;
  color: #434343;
}

.cartArea .sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cartArea .sub-item {
  padding-right: 5px;
  font-size: 13px;
  color: #5a5959;
}

.cartArea .sub-item:not(:last-child)::after {
  content: '+';
}

.cartArea .del {
  margin-left: auto;
  width: 16px;
  height: 20px;
  background-image: url("../images/icon-garbage.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/*訂單查詢*/
/***↑↑↑購物車↑↑↑**/
/***↓↓↓會員登入↓↓↓**/
.moduleClose {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 30px;
  height: 30px;
}

.moduleClose::before,
.moduleClose::after {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.moduleClose::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.moduleClose::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.moduleBoxStyle {
  width: 100%;
  max-width: 400px;
  background-color: #fff;
}

.moduleBoxStyle .wrap {
  position: relative;
  width: 100%;
  padding: 40px 20px 20px 20px;
}

.moduleBoxStyle .bottomBox {
  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;
  padding-top: 12px;
}

.moduleBoxStyle .bottomBox.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.moduleBoxStyle .bottomBox a {
  color: #575757;
}

.moduleBoxStyle .bottomBox span {
  padding-left: 5px;
  padding-right: 5px;
  color: #999;
}

.moduleBoxStyle input[type="text"],
.moduleBoxStyle input[type="password"] {
  display: block;
  width: 100%;
  height: 40px;
  padding: 5px;
  margin-bottom: 7px;
  border: 1px solid #ccc;
  font-weight: 300;
  letter-spacing: .05em;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
}

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

.loginArea .forgetCheck {
  display: none;
}

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

/***↑↑↑會員登入↑↑↑**/
.sideFunctionArea {
  position: fixed;
  z-index: 40;
}

@media (min-width: 1221px) {
  .sideFunctionArea {
    display: none;
  }
}

@media (min-width: 1681px) {
  .sideFunctionArea::after {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    width: 130px;
    height: 100vh;
    background-color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
  }
}

@media (min-width: 1681px) {
  .sideFunctionArea:not(.fixed) {
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 130px;
    height: 100vh;
  }

  .sideFunctionArea:not(.fixed) .list {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .sideFunctionArea:not(.fixed) .text {
    display: none;
  }
}

.sideFunctionArea.change .list {
  -webkit-transition: all .5s .3s;
  -o-transition: all .5s .3s;
  transition: all .5s .3s;
}

.sideFunctionArea .list {
  position: relative;
  cursor: pointer;
  width: 100%;
}

.sideFunctionArea .list a {
  color: #000;
}

.sideFunctionArea .loginBox:hover .submenu {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

.sideFunctionArea .submenu {
  position: absolute;
  left: 100%;
  top: 15px;
  width: 150px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.sideFunctionArea .submenu.show {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

.sideFunctionArea .submenu a {
  display: block;
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #ededed;
}

.sideFunctionArea .submenu a:hover {
  color: #fff;
  background-color: #a9b2bb;
}

.sideFunctionArea .icon {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sideFunctionArea .icon:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.sideFunctionArea .icon.member img {
  width: 18px;
  height: 20px;
}

.sideFunctionArea .icon.cart {
  position: relative;
}

.sideFunctionArea .icon.cart img {
  width: 20px;
  height: 25px;
}

.sideFunctionArea .icon.cart .num {
  position: absolute;
  right: 42px;
  bottom: -5px;
  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: 18px;
  height: 18px;
  background-color: #32d199;
  border-radius: 50%;
  font-size: 12px;
  font-family: "Manjari", "Noto Sans TC", sans-serif;
}

.sideFunctionArea .icon.order img {
  width: 17px;
  height: 22px;
}

@media (min-width: 1221 - 1680px) {
  .sideFunctionArea {
    left: 0;
    top: 50%;
    margin-top: -112.5px;
    background-color: transparent;
    width: 65px;
    height: 225px;
  }

  .sideFunctionArea .list {
    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;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #fff;
  }

  .sideFunctionArea .list:not(:first-child) {
    border-top: none;
  }

  .sideFunctionArea .icon {
    width: 65px;
    height: 75px;
  }

  .sideFunctionArea .icon.cart .num {
    right: 10px;
    bottom: 30px;
  }

  .sideFunctionArea .text {
    width: 100%;
    padding-top: 8px;
    font-size: 12px;
    letter-spacing: .2em;
    color: #5c5c5c;
    text-align: center;
  }
}

@media (min-width: 1221px) {
  .sideFunctionArea.fixed {
    left: 0;
    top: 50%;
    margin-top: -112.5px;
    background-color: transparent;
    width: 65px;
    height: 225px;
  }

  .sideFunctionArea.fixed::after {
    left: -130px;
  }

  .sideFunctionArea.fixed.fixedShow .list {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    -webkit-transition: opacity .5s, -webkit-transform .5s;
    transition: opacity .5s, -webkit-transform .5s;
    -o-transition: transform .5s, opacity .5s;
    transition: transform .5s, opacity .5s;
    transition: transform .5s, opacity .5s, -webkit-transform .5s;
  }

  .sideFunctionArea.fixed.fixedShow .list:nth-of-type(1) {
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }

  .sideFunctionArea.fixed.fixedShow .list:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .sideFunctionArea.fixed.fixedShow .list:nth-of-type(3) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  .sideFunctionArea.fixed .list {
    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;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
    background-color: #fff;
  }

  .sideFunctionArea.fixed .list:not(:first-child) {
    border-top: none;
  }

  .sideFunctionArea.fixed .icon {
    width: 65px;
    height: 75px;
  }

  .sideFunctionArea.fixed .icon.cart .num {
    right: 10px;
    bottom: 30px;
  }

  .sideFunctionArea.out .list {
    opacity: 0 !important;
    -webkit-transition: all .3s !important;
    -o-transition: all .3s !important;
    transition: all .3s !important;
  }
}

.sideFunctionArea .text {
  width: 100%;
  padding-top: 8px;
  font-size: 12px;
  letter-spacing: .2em;
  color: #5c5c5c;
  text-align: center;
}

.sideFunctionArea .goTopList {
  display: none !important;
}

@media (max-width: 1220px) {
  .sideFunctionArea {
    left: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 60px;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }

  .sideFunctionArea .list {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .sideFunctionArea .list:not(:first-child) {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }

  .sideFunctionArea .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .sideFunctionArea .icon.cart .num {
    right: 50%;
    margin-right: -20px;
    bottom: 22px;
  }

  .sideFunctionArea .goTopList {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

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

.headerIcon .list {
  position: relative;
}

.headerIcon .icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 65px;
  height: 75px;
}

.headerIcon .icon.member img {
  height: 20px;
}

.headerIcon .icon.cart img {
  height: 20px;
}

.headerIcon .icon.cart .num {
  position: absolute;
  right: 12px;
  top: 22px;
  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: 18px;
  height: 18px;
  background-color: #32d199;
  border-radius: 50%;
  font-size: 12px;
  font-family: "Manjari", "Noto Sans TC", sans-serif;
  color: #000;
}

.headerIcon .icon.order img {
  height: 20px;
}

.headerIcon .text {
  width: 100%;
  padding-top: 8px;
  font-size: 12px;
  letter-spacing: .2em;
  color: #5c5c5c;
  text-align: center;
}

.headerIcon .loginBox:hover .submenu {
  top: 100%;
  opacity: 1;
  pointer-events: auto;
}

.headerIcon .submenu {
  position: absolute;
  left: 50%;
  top: 120%;
  margin-left: -75px;
  width: 150px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

.headerIcon .submenu.show {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

.headerIcon .submenu a {
  display: block;
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #ededed;
}

.headerIcon .submenu a:hover {
  color: #fff;
  background-color: #a9b2bb;
}

.goTopStyle {
  position: fixed;
  right: 45px;
  top: 50%;
  margin-top: -24px;
  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: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #32d199;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

@media (max-width: 1023px) {
  .goTopStyle {
    right: 20px;
    bottom: 20px;
  }
}

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

.goTopStyle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: #32d199;
  opacity: 0.2;
}

.goTopStyle .icon-arrow {
  width: 7px;
  height: 14px;
  fill: #fff;
  -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;
  width: 100%;
  height: 100%;
}

.goTopStyle2 .icon-arrow {
  width: 7px;
  height: 14px;
  fill: #000;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/*****網頁頭*****/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 50;
  background-color: #fff;
  padding-right: 70px;
  -webkit-box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1680px) {
  header {
    padding-right: 0;
  }
}

@media (max-width: 1220px) {
  header {
    display: none;
  }
}

header .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding-left: 130px;
  min-height: 100px;
}

@media (max-width: 1680px) {
  header .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

header .logo {
  width: 300px;
}

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

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

header .tel {
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 14px;
  letter-spacing: .05em;
  color: #4d4d4d;
}

header .tel::before {
  content: '\f095';
  font-family: FontAwesome;
  margin-right: 6px;
  color: #717171;
}

header .tel:hover {
  color: #32d199;
}

header.product {
  padding-right: 0;
}

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

.searchBox input {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  border: none;
  font-family: '微軟正黑體';
  background-color: #fafafa;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.searchBox a {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: #a9b2bb;
}

/*menu*/
.menuBox {
  position: relative;
  margin-right: 55px;
  padding-right: 55px;
}

.menuBox::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7px;
  width: 1px;
  height: 14px;
  background-color: #ccc;
}

.menuStyle>li {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 33px;
  padding-bottom: 33px;
}

@media (max-width: 1600px) {
  .menuStyle>li {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 1320px) {
  .menuStyle>li {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 1250px) {
  .menuStyle>li {
    padding-left: 7px;
    padding-right: 7px;
  }
}


.menuStyle>li:hover .subMenu {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.menuStyle>li:hover .subMenu .wrap {
  opacity: 1;
  -webkit-transition-delay: .5s;
  -o-transition-delay: .5s;
  transition-delay: .5s;
}

.menuStyle>li>a {
  position: relative;
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: .05em;
  color: #353535;
}

.menuStyle>li>a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  margin: auto;
  width: 0;
  height: 1px;
  background-color: #32d199;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

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

.menuStyle .subMenu {
  position: fixed;
  left: 0;
  top: 100px;
  width: 100vw;
  z-index: 10;
  background-color: #ececec;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-12px);
  -ms-transform: translateY(-12px);
  transform: translateY(-12px);
  -webkit-transition: all .6s ease-in-out;
  -o-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
}

.menuStyle .subMenu .wrap {
  width: 100%;
  max-width: 1400px;
  opacity: 0;
  -webkit-transition: all .6s ease-in-out;
  -o-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
}

.headerMenuList {
  width: 100%;
}

.headerMenuList li {
  float: left;
  width: 20%;
}

.headerMenuList a {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px 25px;
  color: #797979;
}

.headerMenuList a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 0;
  background-color: #32d199;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.headerMenuList a:hover,
.headerMenuList a.current {
  color: #fff;
}

.headerMenuList a:hover::after,
.headerMenuList a.current::after {
  height: 100%;
  bottom: auto;
  top: 0;
}

.headerMenuList a:hover .Img img,
.headerMenuList a.current .Img img {
  top: 40px;
}

.headerMenuList .Img {
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.headerMenuList .Img img {
  position: relative;
  display: block;
  top: 0;
  width: 100%;
  -webkit-filter: drop-shadow(0 -40px #fff);
  filter: drop-shadow(0 -40px #fff);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.headerMenuList .title {
  margin-bottom: 5px;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: .05em;
}

.headerMenuList .en {
  font-size: 13px;
  letter-spacing: .05em;
  font-family: "Manjari", "Noto Sans TC", sans-serif;
  text-transform: uppercase;
}

.headerMenuList .arrows {
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  background: none;
  border: none;
  fill: #9c9c9c;
  font-size: 24px;
  cursor: pointer;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.headerMenuList .arrows:hover {
  fill: #000;
}

.headerMenuList .icon-arrow {
  width: 6px;
  height: 12px;
}

.headerMenuList .prevArrow {
  left: -50px;
}

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

.headerMenuList .nextArrow {
  right: -50px;
}

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

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

.noBanner {
  width: 100%;
  height: 100px;
}

/*文字跑馬燈*/
.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: 10;
  padding-top: 60px;
  background-color: #32d199;
}

footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 768px) {
  footer .rowList:not(:last-child) {
    border-right: 1px solid #2cb685;
  }
}

@media (max-width: 767px) {
  footer .rowList:not(:last-child) {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #2cb685;
  }
}

@media (min-width: 768px) {
  footer .rowList.left {
    width: 30%;
  }

  footer .rowList.center {
    width: 40%;
  }

  footer .rowList.right {
    width: 30%;
  }
}

@media (max-width: 767px) {
  footer .rowList {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}

.endArea {
  width: 100%;
}

.endArea .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
  border-top: 1px solid #2cb685;
  text-align: center;
  font-size: 12px;
  color: #343434;
}

.endArea a {
  color: #343434;
}

.endArea a:hover {
  color: #000;
}

.downLogo {
  width: 180px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .downLogo {
    margin-left: 10px;
  }
}

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

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

.social 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: 50px;
  height: 50px;
  border: 1px solid #279971;
  border-radius: 50%;
  margin-right: 20px;
  color: #1d1d1d;
  font-size: 18px;
}

@media (max-width: 767px) {
  .social a {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.social a:hover {
  background-color: #1d1d1d;
  color: #fff;
}

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

.footerInfo {
  width: 100%;
  text-align: right;
}

@media (max-width: 767px) {
  .footerInfo {
    text-align: center;
  }
}

.footerInfo .en {
  margin-bottom: 18px;
  font-size: 16px;
  letter-spacing: .02em;
  color: #454545;
  font-family: "Manjari", "Noto Sans TC", sans-serif;
  font-weight: 100;
}

.footerInfo .title {
  margin-bottom: 12px;
  font-size: 16px;
  letter-spacing: .07em;
  font-weight: 300;
  color: #141414;
}

.footerInfo .tel {
  display: block;
  font-size: 25px;
  letter-spacing: .07em;
  color: #141414;
  font-family: "Manjari", "Noto Sans TC", sans-serif;
}

.footerInfo .btn {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: .07em;
  color: #1f1f1f;
  border: 1px solid #279971;
}

.footerInfo .btn:hover {
  background-color: #1f1f1f;
  color: #fff;
}

.footerMenuList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

.footerMenuList .title {
  margin-bottom: 12px;
  font-size: 16px;
  letter-spacing: .07em;
  color: #171717;
}

.footerMenuList .text a {
  display: block;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: .07em;
  color: #141414;
  padding-top: 2px;
  padding-bottom: 2px;
}

.footerMenuList .text a:hover {
  text-decoration: underline;
  color: #000;
}



@media (max-width: 640px) {

.footerMenuList li {
  padding-left: 10px;
  padding-right: 10px;
}
/*
  .footerMenuList {
  display: block;
  display: block;
  display: block;
}

.footerMenuList .text {
  margin-bottom: 15px;
}
*/

}



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

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

.mainArea {
  padding: 30px 0;
  background-color: #f5f5f5;
}

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

.mainArea.nopb {
  padding-bottom: 0;
}

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

.titleBox.ins {
  padding-top: 15px;
  padding-bottom: 30px;
}

.titleBox .subTitle {
  margin-bottom: 12px;
  font-size: 14px;
  color: #5b2331;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.titleBox .en {
  font-size: 35px;
  color: #505050;
  font-family: "Manjari", "Noto Sans TC", sans-serif;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .titleBox .en {
    font-size: 28px;
  }
}

.titleBox .title {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .05em;
  color: #585757;
}

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

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

.bread2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: .07em;
  color: #5f5f5f;
}

.bread2 span:not(:last-child)::after {
  content: '/';
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

.mainArea .contentBox {
  clear: both;
}

.articleTitle {
  /*文章標題*/
  margin-bottom: 30px;
  font-size: 19px;
  font-weight: 400;
  color: #2f2f2f;
  overflow: hidden;
}

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-bottom: 50px;
}

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

.classLinkStyle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.classLinkStyle a {
  display: inline-block;
  min-width: 130px;
  padding: 13px 30px;
  background-color: #fff;
  font-size: 14px;
  text-align: center;
  letter-spacing: .05em;
  color: #464646;
}

.classLinkStyle a.current,
.classLinkStyle a:hover {
  color: #000;
  background-color: #32d199;
}

.classLinkStyle h1 {
  font-weight: 400;
}

/*標籤*/
.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 #a9b2bb;
  font-size: 13px;
  color: #a9b2bb;
}

.tagBox a:hover {
  color: #fff;
  background-color: #a9b2bb;
}

.tagBox a.current {
  color: #fff;
  background-color: #a9b2bb;
}

.tagBox a.current:before {
  content: "\f00d";
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 12px;
}

/*側邊標題字*/
.sectionTitle {
  padding-bottom: 5px;
  border-bottom: 2px solid #353535;
}

.sectionTitle .subTitle {
  display: block;
  font-weight: 400;
  font-family: "Manjari", "Noto Sans TC", sans-serif;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
}

.sectionTitle .title {
  font-weight: 400;
  font-size: 16px;
  color: #000;
  letter-spacing: .05em;
}

.ribbon {
  position: absolute;
  left: 25px;
  top: 25px;
  z-index: 2;
  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: 50%;
  font-family: "Manjari", "Noto Sans TC", sans-serif;
  font-size: 15px;
  color: #fff;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

@media (max-width: 1180px) {
  .ribbon {
    top: 0;
  }
}

.ribbon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  opacity: 0.2;
}

.ribbon_hot {
  background-color: #b19aaa;
}

.ribbon_hot::after {
  background-color: #b19aaa;
}

.ribbon_new {
  background-color: #7e99c8;
}

.ribbon_new::after {
  background-color: #7e99c8;
}

/******頁籤*******/
.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;
  -webkit-box-shadow: inset 0 3px 5px -2px #cecece;
  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: #32d199;
}

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

.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: #414141;
}

.side_contactInfo i {
  display: inline-block;
  vertical-align: middle;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 8px;
  border-radius: 50%;
  font-size: 20px;
  color: #171717;
  background-color: #32d199;
  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%;
  -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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}

.side_share .title {
  margin-right: 10px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .05em;
}

.side_share a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  border-radius: 50%;
  background-color: #22ac38;
  color: #fff;
  margin-right: 10px;
}

.side_share a:hover {
  background-color: #32d199;
}

.side_share a.line {
  background-color: #22ac38;
}

.side_share a.fb {
  background-color: #4067b2;
}

.side_share svg {
  width: 18px;
  height: 18px;
}

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

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

.side_news li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e1e1e1;
}

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

.side_news .Img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 60px;
  overflow: hidden;
}

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

.side_news .Txt {
  width: 100%;
}

.side_news h3 a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

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

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

.dotsBox .dots li.slick-active button {
  background: #505050;
}

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

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

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

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

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

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

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

input[type="radio"]+label {
  position: relative;
  cursor: pointer;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

input[type="radio"]+label span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
  width: 25px;
  height: 25px;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  border-radius: 50%;
}

input[type="radio"]+label span:before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  left: 50%;
  margin-left: -6.5px;
  margin-top: -6.5px;
  width: 13px;
  height: 13px;
  background-color: #32d199;
  border-radius: 50%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

/*--button--*/
.btn1.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn1.blue a {
  background-color: #7e99c8;
  color: #fff;
}

.btn1.dark a {
  background-color: #5d5d5d;
  color: #fff;
}

.btn1.dark a:hover {
  background-color: #32d199;
  color: #5d5d5d;
}

.btn1 a {
  display: inline-block;
  text-align: center;
  min-width: 145px;
  padding: 12px 30px;
  font-size: 13px;
  letter-spacing: .07em;
  color: #222 !important;
  border-radius: 3px;
  background-color: #32d199;
}

.btn1 a:hover {
  background-color: #222;
  color: #fff !important;
}

.btn2 a {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 8px 30px;
  font-size: 14px;
  letter-spacing: .07em;
  color: #1f1f1f;
  border: 1px solid #1f1f1f;
}

.btn2 a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 0;
  background-color: #1f1f1f;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

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

.btn2 a:hover::after {
  top: 0;
  bottom: auto;
  height: 100%;
}

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

/*.btn3 a {
  display: inline-block;
  min-width: 190px;
  padding: 8px 20px;
  font-size: 13px;
  letter-spacing: .07em;
  color: #4f4f4f;
  border: 1px solid #ccc;
  border-radius: 3px;
}*/


.btn3 a {
  display: inline-block;
  min-width: 190px;
  padding: 8px 20px;
  font-size: 13px;
  letter-spacing: .07em;
  color: #222 !important;
  background-color: #32d199;
  border-radius: 3px;
}

.btn3 a:hover {
  background-color: #222;
  color: #fff !important;
}



.btnBackStyle {
  position: absolute;
  right: 0;
  top: 0;
  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: 100px;
  height: 100%;
  background-color: #878e98;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .02em;
  color: #fff;
  font-family: "Manjari", "Noto Sans TC", sans-serif;
}

.btnBackStyle:hover {
  color: #000;
  background-color: #32d199;
}

/*--arrow--*/
.arrowsStyle1 {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.arrowsStyle1:hover {
  border-color: #fcd35d;
  background-color: #fcd35d;
}

.arrowsStyle1 .icon-arrow {
  width: 5px;
  height: 9px;
}

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

.slick-arrow.slick-hidden {
  display: none !important;
}

/*--品質嚴選--*/
.certificationItemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  letter-spacing: .05em;
  color: #585757;
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 961px) {
  .certificationItemBox.right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media (max-width: 960px) {
  .certificationItemBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 0;
  }
}

@media (min-width: 961px) {
  .certificationItemBox:nth-of-type(odd) .rightItem {
    padding-top: 3%;
    padding-bottom: 3%;
    padding-right: 5%;
    padding-left: calc((50% - 600px) / 2);
    margin: 30px 0;
  }
}

@media (min-width: 961px) and (max-width: 1366px) {
  .certificationItemBox:nth-of-type(odd) .rightItem {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 961px) {
  .certificationItemBox:nth-of-type(odd) .rightItem::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: calc(100% + 90px);
    height: 100%;
    background-color: #f6f6f6;
  }
}

.certificationItemBox:nth-of-type(odd) .rightItem {
  background-color: #f6f6f6;
}

@media (min-width: 961px) {
  .certificationItemBox:nth-of-type(even) .rightItem {
    padding-left: 5%;
    padding-right: calc((50% - 600px) / 2);
    margin: 30px 0;
  }
}

.certificationItemBox .leftItem,
.certificationItemBox .rightItem {
  position: relative;
  z-index: 0;
  width: 50%;
}

@media (max-width: 960px) {

  .certificationItemBox .leftItem,
  .certificationItemBox .rightItem {
    width: 100%;
  }
}

.certificationItemBox .leftItem .Img img {
  display: block;
  width: 100%;
}

.certificationItemBox .rightItem {
  position: relative;
  z-index: 2;
}

@media (max-width: 960px) {
  .certificationItemBox .rightItem {
    padding: 20px;
  }
}

.certificationItemBox .mainTitle {
  font-size: 30px;
  letter-spacing: .07em;
  font-weight: 500;
  color: #5b2331;
}

@media (max-width: 480px) {
  .certificationItemBox .mainTitle {
    font-size: 24px;
  }
}

.certificationItemBox .compareBox {
  padding-top: 25px;
  padding-bottom: 25px;
}

.certificationItemBox .compareBox ul {
  width: 100%;
  border: 1px solid #a9b2bb;
  font-size: 15px;
  padding-left: 0;
  list-style: none;
  margin: 10px 0;
}

.certificationItemBox .compareBox ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 640px) {
  .certificationItemBox .compareBox ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.certificationItemBox .compareBox ul li:not(:last-child) .left {
  border-bottom: 1px solid #c3c9d0;
}

.certificationItemBox .compareBox ul li:not(:last-child) .right {
  border-bottom: 1px solid #a9b2bb;
}

.certificationItemBox .compareBox ul .left,
.certificationItemBox .compareBox ul .right {
  width: 50%;
  padding: 13px 30px;
}

@media (max-width: 640px) {

  .certificationItemBox .compareBox ul .left,
  .certificationItemBox .compareBox ul .right {
    width: 100%;
  }
}

.certificationItemBox .compareBox ul .left {
  color: #fff;
  background-color: #a9b2bb;
}

.certificationItemBox .compareBox ul .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.certificationItemBox .per {
  width: 90px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
}

.certificationItemBox .per i {
  display: inline-block;
  height: 15px;
  background-color: #a9b2bb;
}

.certificationItemBox .note {
  font-size: 12px;
  color: #a9b2bb;
}

.certificationItemBox .textList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  counter-reset: certification;
}

.certificationItemBox .textList li {
  float: none;
  padding: 0 15px 12px;
}

.certificationItemBox .textList li:nth-child(-n+9) .Img::before {
  content: "0"counter(certification);
}

.certificationItemBox .textList .Img {
  position: relative;
  display: inline-block;
}

.certificationItemBox .textList .Img img {
  max-width: 100%;
}

.certificationItemBox .textList .Img::before {
  counter-increment: certification;
  content: counter(certification);
  font-size: 18px;
  font-family: "Red Hat Text", "Noto Sans TC", sans-serif;
  letter-spacing: .05em;
  color: #535353;
}

.certificationItemBox .textList .title {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .05em;
  color: #313131;
}

.certificationItemBox .textList .text {
  font-size: 15px;
}

.certificationItemBox .textList.style1 .Img {
  margin-bottom: 10px;
}

.certificationItemBox .textList.style1 .Img::before {
  position: absolute;
  right: 0;
  bottom: 2px;
}

.certificationItemBox .textList.style2 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.certificationItemBox .textList.style2 .Img {
  width: 70px;
}

.certificationItemBox .textList.style2 .Img::before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 28px;
}

.certificationItemBox .textList.style2 .Img img {
  max-width: 100%;
}

.certificationItemBox .textList.style2 .Txt {
  position: relative;
  width: calc(100% - 70px);
}

.certificationItemBox .textList.style2 .title,
.certificationItemBox .textList.style2 .text {
  padding-left: 15px;
}

.certificationItemBox .textList.style2 .title {
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #32d199;
}

/**********適應性**********/
/************************/
@media (max-width: 1220px) {

  /*1160+20(卷軸寬度)*/
  /*手機menu*/
  .m_menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 35;
    display: block;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px rgba(126, 126, 126, 0.68);
    box-shadow: 0 2px 5px rgba(126, 126, 126, 0.68);
  }

  .m_menu.active {
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .m_menu.active .m_logo {
    opacity: 0;
    pointer-events: none;
  }

  .m_menu.active .controlBox a.main {
    width: 74px;
    height: 74px;
  }

  .m_menu.active .controlBox a.main span {
    width: 35px;
  }

  .m_menu .m_logo {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    margin-left: 2%;
  }

  .m_menu .m_logo img {
    height: 48px;
  }

  .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: center;
    -ms-flex-pack: center;
    /*justify-content: center;*/
    height: 60px;
    background-color: #fff;
  }

  .m_menu .controlBox a.main {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #32d199;
  }

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

  .m_menu .controlBox a.main span:before,
  .m_menu .controlBox a.main span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -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);
  }

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

  .hideBox::after {
    content: '';
    position: fixed;
    left: 0;
    top: 40px;
    z-index: -1;
    width: calc(100% - 40px);
    height: calc(100% - 80px);
    background-color: #ececec;
  }

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

  .nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav a {
    position: relative;
    display: block;
    padding: 20px 10px;
    font-size: 14px;
    color: #353535;
  }

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

  .nav .Img,
  .nav .en {
    display: none;
  }

  .nav .title {
    color: #7e7e7e;
  }

  .nav .subMenu {
    display: none;
  }

  .nav .subMenu .wrap {
    padding: 0;
  }

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

@media (max-width: 960px) {
  .bookingArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px 20px;
  }

  .bookingArea .title {
    display: none;
  }

  .bookingArea .bookingList,
  .bookingArea .btn {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .bookingArea .bookingList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }

  .bookingArea .bookingList li {
    margin-bottom: 15px;
  }

  .bookingArea .bookingList li:not(:first-child) {
    margin-left: 0;
  }

  .bookingArea input,
  .bookingArea select {
    width: 100%;
  }

  .bookingArea .btn a {
    padding: 12px;
  }
}

@media (max-width: 767px) {

  /*bread*/
  .mainArea .titleBox .bread {
    display: none;
  }

  /*main*/
  .mainArea .cotentBox {
    padding: 20px 0;
  }

  .mainArea .titleBox h2 em {
    display: block;
    margin: 0;
  }

  ul.classLink {
    display: none;
  }

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

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

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

  .m_classLink ul {
    padding: 0;
    list-style: none;
    display: none;
    width: 100%;
    background: #FFF;
    border-radius: 5px;
    border: 1px solid #d1d1d1;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .m_classLink ul li {
    padding: 0;
  }

  .m_classLink ul li a {
    display: block;
    padding: 15px 10px;
    border-top: 1px solid #d1d1d1;
  }

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

/***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_h_rotate .Img {
  overflow: hidden;
}

.item_h_rotate .Img img {
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  -webkit-animation: rotate360 30s linear infinite;
  animation: rotate360 30s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.item_h_rotate .Img:hover img {
  opacity: 0.8;
}

.item_h_rotate:hover .Img img {
  -webkit-animation: rotate360 30s linear infinite;
  animation: rotate360 30s linear infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

@-webkit-keyframes rotate360 {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate360 {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*-- radio & checkbox--*/
.radio {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.radio input[type="radio"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.radio input[type="radio"]:checked+span {
  border-color: #a9b2bb;
}

.radio input[type="radio"]:checked+span:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.radio span {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #a9b2bb;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.radio span:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -4px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  background-color: #a9b2bb;
  border-radius: 50%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

/*--最新消息icon--*/
.newIcon {
  /*分類小圖示*/
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #88a1ad;
  letter-spacing: .07em;
}

/****圖示顏色****/
.newIcon_green {
  background: #abd85d;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjYWJkODVkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzgxYjYyNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #abd85d 0%, #81b625 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #abd85d), color-stop(100%, #81b625));
  background: -webkit-linear-gradient(-45deg, #abd85d 0%, #81b625 100%);
  background: -o-linear-gradient(-45deg, #abd85d 0%, #81b625 100%);
  background: -ms-linear-gradient(-45deg, #abd85d 0%, #81b625 100%);
  background: -webkit-linear-gradient(315deg, #abd85d 0%, #81b625 100%);
  background: -o-linear-gradient(315deg, #abd85d 0%, #81b625 100%);
  background: linear-gradient(135deg, #abd85d 0%, #81b625 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#abd85d', endColorstr='#81b625', GradientType=1);
}

.newIcon_brown {
  background: #ed842e;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZWQ4NDJlIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2QyNmYxZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #ed842e 0%, #d26f1e 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #ed842e), color-stop(100%, #d26f1e));
  background: -webkit-linear-gradient(-45deg, #ed842e 0%, #d26f1e 100%);
  background: -o-linear-gradient(-45deg, #ed842e 0%, #d26f1e 100%);
  background: -ms-linear-gradient(-45deg, #ed842e 0%, #d26f1e 100%);
  background: -webkit-linear-gradient(315deg, #ed842e 0%, #d26f1e 100%);
  background: -o-linear-gradient(315deg, #ed842e 0%, #d26f1e 100%);
  background: linear-gradient(135deg, #ed842e 0%, #d26f1e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed842e', endColorstr='#d26f1e', GradientType=1);
}

.newIcon_pink {
  background: #f48daf;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjQ4ZGFmIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VmNDk4NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #f48daf 0%, #ef4984 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #f48daf), color-stop(100%, #ef4984));
  background: -webkit-linear-gradient(-45deg, #f48daf 0%, #ef4984 100%);
  background: -o-linear-gradient(-45deg, #f48daf 0%, #ef4984 100%);
  background: -ms-linear-gradient(-45deg, #f48daf 0%, #ef4984 100%);
  background: -webkit-linear-gradient(315deg, #f48daf 0%, #ef4984 100%);
  background: -o-linear-gradient(315deg, #f48daf 0%, #ef4984 100%);
  background: linear-gradient(135deg, #f48daf 0%, #ef4984 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f48daf', endColorstr='#ef4984', GradientType=1);
}

.newIcon_blue {
  background: #00b7ea;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMDBiN2VhIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwOWVjMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #00b7ea 0%, #009ec3 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #00b7ea), color-stop(100%, #009ec3));
  background: -webkit-linear-gradient(-45deg, #00b7ea 0%, #009ec3 100%);
  background: -o-linear-gradient(-45deg, #00b7ea 0%, #009ec3 100%);
  background: -ms-linear-gradient(-45deg, #00b7ea 0%, #009ec3 100%);
  background: -webkit-linear-gradient(315deg, #00b7ea 0%, #009ec3 100%);
  background: -o-linear-gradient(315deg, #00b7ea 0%, #009ec3 100%);
  background: linear-gradient(135deg, #00b7ea 0%, #009ec3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00b7ea', endColorstr='#009ec3', GradientType=1);
}

.newIcon_navy {
  background: #3f4c6b;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjM2Y0YzZiIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzNmNGM2YiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #3f4c6b 0%, #3f4c6b 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #3f4c6b), color-stop(100%, #3f4c6b));
  background: -webkit-linear-gradient(-45deg, #3f4c6b 0%, #3f4c6b 100%);
  background: -o-linear-gradient(-45deg, #3f4c6b 0%, #3f4c6b 100%);
  background: -ms-linear-gradient(-45deg, #3f4c6b 0%, #3f4c6b 100%);
  background: -webkit-linear-gradient(315deg, #3f4c6b 0%, #3f4c6b 100%);
  background: -o-linear-gradient(315deg, #3f4c6b 0%, #3f4c6b 100%);
  background: linear-gradient(135deg, #3f4c6b 0%, #3f4c6b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3f4c6b', endColorstr='#3f4c6b', GradientType=1);
}

.newIcon_orange {
  background: #ffa84c;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZmZhODRjIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmN2IwZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #ffa84c 0%, #ff7b0d 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #ffa84c), color-stop(100%, #ff7b0d));
  background: -webkit-linear-gradient(-45deg, #ffa84c 0%, #ff7b0d 100%);
  background: -o-linear-gradient(-45deg, #ffa84c 0%, #ff7b0d 100%);
  background: -ms-linear-gradient(-45deg, #ffa84c 0%, #ff7b0d 100%);
  background: -webkit-linear-gradient(315deg, #ffa84c 0%, #ff7b0d 100%);
  background: -o-linear-gradient(315deg, #ffa84c 0%, #ff7b0d 100%);
  background: linear-gradient(135deg, #ffa84c 0%, #ff7b0d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa84c', endColorstr='#ff7b0d', GradientType=1);
}

.newIcon_gold {
  background: #eab92d;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZWFiOTJkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2M3OTgxMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #eab92d 0%, #c79810 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #eab92d), color-stop(100%, #c79810));
  background: -webkit-linear-gradient(-45deg, #eab92d 0%, #c79810 100%);
  background: -o-linear-gradient(-45deg, #eab92d 0%, #c79810 100%);
  background: -ms-linear-gradient(-45deg, #eab92d 0%, #c79810 100%);
  background: -webkit-linear-gradient(315deg, #eab92d 0%, #c79810 100%);
  background: -o-linear-gradient(315deg, #eab92d 0%, #c79810 100%);
  background: linear-gradient(135deg, #eab92d 0%, #c79810 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eab92d', endColorstr='#c79810', GradientType=1);
}

.newIcon_burgundyRed {
  background: #a90329;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2E5MDMyOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ0JSIgc3RvcC1jb2xvcj0iIzhmMDIyMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM2ZDAwMTkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a90329), color-stop(44%, #8f0222), color-stop(100%, #6d0019));
  background: -webkit-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
  background: -o-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
  background: -ms-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#a90329), color-stop(44%, #8f0222), to(#6d0019));
  background: linear-gradient(to bottom, #a90329 0%, #8f0222 44%, #6d0019 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a90329', endColorstr='#6d0019', GradientType=0);
}

.newIcon_purple {
  background: #cb60b3;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2NiNjBiMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2FkMTI4MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZTQ3YWMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #cb60b3 0%, #ad1283 50%, #de47ac 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cb60b3), color-stop(50%, #ad1283), color-stop(100%, #de47ac));
  background: -webkit-linear-gradient(top, #cb60b3 0%, #ad1283 50%, #de47ac 100%);
  background: -o-linear-gradient(top, #cb60b3 0%, #ad1283 50%, #de47ac 100%);
  background: -ms-linear-gradient(top, #cb60b3 0%, #ad1283 50%, #de47ac 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#cb60b3), color-stop(50%, #ad1283), to(#de47ac));
  background: linear-gradient(to bottom, #cb60b3 0%, #ad1283 50%, #de47ac 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cb60b3', endColorstr='#de47ac', GradientType=0);
}

#lg-counter,
.lg-toolbar .lg-icon {
  color: #fff !important;
}

.lg-backdrop {
  background-color: #fff !important;
}

.lg-outer .lg-thumb-outer {
  background-color: #fff !important;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #e9b31a !important;
}

.lg-outer .lg-thumb-item {
  border-color: #ccc !important;
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
  color: #fff !important;
}

.lg-outer .lg-toogle-thumb {
  background-color: rgba(0, 0, 0, 0.45) !important;
  color: #fff !important;
}

.dialogArea .text {
  text-align: center;
  line-height: 1.6;
  padding-top: 12px;
  padding-bottom: 25px;
  font-size: 15px;
  letter-spacing: .05em;
}

.dialogArea .text a {
  text-decoration: underline;
}

.dialogArea .btn1 a {
  margin-left: 5px;
  margin-right: 5px;
}
