<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
@import url(public/css/reset.css);
@import url(public/css/font-awesome-4.7.0/font-awesome.min.css);
@import url(public/css/rwdgrid.css);
@import url(public/css/textEditor.css);
@import url(public/css/contentbuilder.css);
@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&amp;family=Noto+Sans+TC:wght@300;400&amp;family=Noto+Serif+JP:wght@500&amp;family=Poppins&amp;display=swap");
.pageBox .pageList.number a.firstBtn::before, .pageBox .pageList.number a.firstBtn::after, .pageBox .pageList.number a.lastBtn::before, .pageBox .pageList.number a.lastBtn::after, .pageBox .pageList a.prevBtn::before, .pageBox .pageList a.nextBtn::before, footer .infoList li a::after, .m_menu .nav &gt; li span.open, .loadingArea .lcfText .Img1, .loadingArea .lcfText .Img2, .loadingArea .lcfText .Img3, .loadingArea .lcfText .Img4, .loadingArea .lcfText .Img5, .loadingArea, .moduleBox .moduleClose {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body {
  background-color: #fff;
  font-size: 14px;
  font-family: "Poppins", "Noto Sans Tc", Helvetica, Arial, "微軟正黑體", "Heiti TC", "メイリオ", sans-serif;
}
body.overflow, body.popwinOverflow, body.loadingOverflow {
  overflow: hidden;
}

address {
  font-style: normal;
}

a {
  color: #000;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a:hover {
  color: #589000;
}

div.titan {
  display: none;
}

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

.col-1 {
  width: 100%;
}
.col-2 {
  width: 50%;
}
.col-3 {
  width: 33.33%;
}
.col-4 {
  width: 25%;
}
.col-5 {
  width: 20%;
}
@media (max-width: 480px) {
  .col-1, .col-2, .col-3, .col-4, .col-5 {
    float: none;
    width: 100%;
  }
}

.btn_color1 {
  color: #fff;
  background-color: #831518;
}
.btn_color1:hover {
  background-color: #88c123;
}
.btn_color2 {
  color: #fff;
  background-color: #A0A0A0;
}
.btn_color2:hover {
  background-color: #999;
}

/*button*/
.btn1.center {
  text-align: center;
}
.btn1.full a {
  width: 100%;
  margin: 0;
}
.btn1 a {
  min-width: 190px;
  background-color: #0e0e0e;
  border: 1px solid #0e0e0e;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.01em;
  margin: 5px;
  padding: 13px 30px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.btn1 a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background-color: #831518;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn1 a:hover {
  border-color: #831518;
}
.btn1 a:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.btn1 a.white {
  background-color: #fff;
  border: 1px solid #68a9b1;
  color: #68a9b1;
}
.btn1 a.white::after {
  background-color: #68a9b1;
}
.btn1 a.white:hover {
  color: #fff;
}

input[type=text],
input[type=password],
textarea,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  font-size: 16px;
  outline: none;
  padding: 0;
  margin: 0;
}

textarea {
  resize: vertical;
}

.outerWrap {
  position: relative;
}
@media (max-width: 1180px) {
  .outerWrap {
    padding-bottom: calc(55px + env(safe-area-inset-bottom));
  }
}

.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/*module*/
.moduleBox {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1005;
  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%;
  padding-left: 20px;
  padding-right: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition-property: top, opacity, visibility;
  transition-property: top, opacity, visibility;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.moduleBox.show {
  opacity: 1;
  visibility: visible;
}
.moduleBox.show .moduleWrap {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.moduleBox .moduleWrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  background-color: #fff;
  pointer-events: auto;
  padding-top: 60px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 20px;
}
.moduleBox .moduleContent {
  width: 100%;
  max-height: calc(90vh - 50px);
  overflow-y: auto;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}
.moduleBox .moduleTitle {
  color: #000;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  text-align: center;
}
.moduleBox .moduleClose {
  width: 50px;
  height: 50px;
  background: none;
  background-color: #831518;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.moduleBox .moduleClose::before, .moduleBox .moduleClose::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -15px;
  margin-top: -0.5px;
  width: 30px;
  height: 1px;
  background-color: #fff;
}
.moduleBox .moduleClose::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.moduleBox .moduleClose::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.moduleBox .moduleClose:hover {
  background-color: #589000;
}

.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 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.moduleMask.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*洽詢車&amp;購物車*/
.cartArea .moduleWrap {
  max-width: 480px;
}
.cartArea .text {
  color: #373737;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
}
.cartArea .text b {
  padding-left: 4px;
  padding-right: 4px;
  font-weight: 400;
  font-size: 18px;
  color: #831518;
}
.cartArea .cart {
  border-top: 2px solid #831518;
  border-bottom: 2px solid #b4b4b4;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cartArea .buyList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cartArea .buyList li:not(:first-child) {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #d5d5d5;
}
.cartArea .buyList .Img {
  width: 90px;
}
.cartArea .buyList .Img img {
  display: block;
  width: 100%;
}
.cartArea .buyList .Txt {
  position: relative;
  width: calc(100% - 90px);
  padding-left: 15px;
  padding-right: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
}
.cartArea .buyList h3 {
  width: 100%;
  margin-bottom: 3px;
}
.cartArea .buyList h3 a {
  display: block;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cartArea .buyList .spec {
  color: #6a6a6a;
  margin-bottom: 3px;
}
.cartArea .buyList .del {
  position: absolute;
  right: 0;
  top: 25px;
  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: 35px;
  height: 35px;
  border: none;
  background-color: #eee;
  border-radius: 50%;
  color: #5f5f5f;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cartArea .buyList .del:hover {
  background-color: #831518;
  color: #fff;
}
.cartArea .buyList .del svg {
  width: 15px;
  height: 18px;
}

/*訂單查詢*/
.orderCheckArea .moduleWrap {
  max-width: 360px;
}
.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;
}

/*會員登入*/
.loginArea .moduleWrap {
  max-width: 360px;
}
.loginArea .forgetCheck,
.loginArea .resendCheck {
  display: none;
}
.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;
}

/*搜尋*/
.searchArea .moduleWrap {
  max-width: 480px;
}
.searchArea .searchBox {
  margin: 30px 0;
  position: relative;
}
.searchArea .searchBox input {
  width: 100%;
  display: block;
  border: 1px solid #e1e1e1;
  padding: 15px 55px 15px 15px;
}
.searchArea .searchBox a {
  width: 50px;
  height: 50px;
  background-color: #831518;
  color: #fff;
  display: block;
  font-size: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}

/*提醒使用cookie彈窗*/
.cookieArea .moduleWrap {
  max-width: 480px;
}
.cookieArea .text {
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

#closeCart,
#closePrice,
#closeInquiry {
  font-size: 18px;
  position: absolute;
  top: 8px;
  right: 10px;
}
@media (max-width: 480px) {
  #closeCart,
#closePrice,
#closeInquiry {
    font-size: 25px;
    top: 5px;
  }
}

/*loading*/
.loadingArea {
  position: relative;
  width: 100%;
  height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/background-master.jpg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.loadingArea::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/background-circle.png);
}
.loadingArea .lcfCircle {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
  z-index: 0;
  width: 300px;
}
.loadingArea .lcfCircle img {
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.loadingArea .lcfText {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  width: 260px;
}
.loadingArea .lcfText Img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 260px;
}
.loadingArea .lcfText .Img1, .loadingArea .lcfText .Img2, .loadingArea .lcfText .Img3, .loadingArea .lcfText .Img4, .loadingArea .lcfText .Img5 {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
}
.loadingArea .lcfChineseText {
  position: absolute;
  top: 65%;
  left: 0;
  right: 0;
  margin: auto;
  width: 260px;
}
.loadingArea .lcfChineseText img {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.loadingArea.show {
  opacity: 1;
  pointer-events: auto;
}
.loadingArea.show .lcfCircle img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.loadingArea.show .lcfText .Img1 {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.loadingArea.show .lcfText .Img2 {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.loadingArea.show .lcfText .Img3 {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.loadingArea.show .lcfText .Img4 {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.loadingArea.show .lcfText .Img5 {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.loadingArea.show .lcfChineseText img {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.loadingArea.hide {
  opacity: 0;
}

/*header*/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 50;
  /*menu*/
}
@media (max-width: 1180px) {
  header {
    display: none;
  }
}
header .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  padding-top: 40px;
  padding-left: 75px;
  padding-right: 60px;
}
header .logo a {
  display: block;
  width: 85px;
}
header .logo a img {
  width: 100%;
  display: block;
}
header .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -35px;
}
header .searchBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .searchBox 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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 16px;
  color: #fff;
  background-color: #4d9028;
  border-radius: 100%;
}
header .menuBox {
  background: #fff;
  border-radius: 50px;
  padding-left: 20px;
  margin-right: 20px;
}
header .menu &gt; li {
  position: relative;
  display: inline-block;
}
header .menu &gt; li:not(:last-child) {
  padding: 10px 20px;
  margin: 0 7px;
  letter-spacing: 1px;
}
header .menu &gt; li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 45%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  display: block;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
}
header .menu &gt; li a {
  color: #333;
  display: block;
  font-size: 16px;
}
header .menu &gt; li a.current, header .menu &gt; li a:hover {
  color: #831518;
}
header .menu .contact {
  display: inline-block;
  background: #4d9028;
  border-radius: 50px;
  padding: 11px 38px;
  margin-left: 30px;
}
header .menu .contact a {
  color: #fff;
}
header .menu .contact a.current, header .menu .contact a:hover {
  color: rgb(219, 219, 219);
}
header .menu .submenu {
  width: 150px;
  display: none;
  position: absolute;
  top: 101%;
  left: 50%;
  z-index: 99;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
header .menu .submenu a {
  border-bottom: 1px solid #dadada;
  background-color: #fff;
  color: #666;
  padding: 10px;
}
header .menu .submenu a.current, header .menu .submenu a:hover {
  color: #fff;
  background-color: #831518;
}

/*手機menu*/
.m_menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  display: block;
  width: 100%;
  /*手機menu內容*/
}
@media (min-width: 1181px) {
  .m_menu {
    display: none;
  }
}
.m_menu .mask {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 95;
  display: none;
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
}
.m_menu .controlBox {
  position: relative;
}
.m_menu .m_logo {
  position: absolute;
  z-index: 95;
  left: 20px;
  top: 20px;
}
.m_menu .m_logo img {
  display: block;
  width: 80px;
}
.m_menu .main {
  position: absolute;
  top: 30px;
  right: 20px;
  display: inline-block;
  max-width: 160px;
  width: 100%;
  padding: 11px 20px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-align: center;
  background: #4d9028;
  border-radius: 50px;
  color: #fff;
}
.m_menu .hideBox {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 110px auto 0;
  z-index: 100;
  display: none;
  width: 90%;
  height: 75%;
  padding-bottom: 30px;
  border-radius: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#650e13+0,b2181b+100 */
  background: #fff;
  /* Old browsers */
  background: #fff;
  /* FF3.6+ */
  background: #fff;
  /* Chrome,Safari4+ */
  background: #fff;
  /* Chrome10+,Safari5.1+ */
  background: #fff;
  /* Opera 11.10+ */
  background: #fff;
  /* IE10+ */
  background: #fff;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#650e13", endColorstr="#b2181b", GradientType=0);
  /* IE6-9 */
}
.m_menu .searchBox_m {
  padding-bottom: 50px;
  text-align: center;
}
.m_menu .searchBox_m input[type=text] {
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  height: 30px;
  border: 1px solid #ccc;
  text-align: center;
  margin-left: 30px;
}
.m_menu .searchBox_m a {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  text-align: center;
  color: #2b2b2b;
  background-color: #9cc720;
}
.m_menu .nav {
  padding-top: 60px;
}
.m_menu .nav &gt; li {
  position: relative;
  display: block;
  padding: 0 20px;
  margin: 0 7px;
  letter-spacing: 1px;
  max-width: 180px;
  margin: 0 auto;
}
.m_menu .nav &gt; li span &gt; a {
  position: relative;
  color: #2b2b2b;
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  width: 100%;
  margin: 0 auto;
}
.m_menu .nav &gt; li span &gt; a.current, .m_menu .nav &gt; li span &gt; a:hover {
  color: #831518;
}
.m_menu .nav &gt; li span &gt; a::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 60px;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
}
.m_menu .nav .contact {
  padding: 30px 0;
  text-align: center;
}
.m_menu .nav .contact a {
  position: relative;
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 5px 10px;
  font-size: 15px;
  background-color: #4d9028;
  border-radius: 50px;
}
.m_menu .nav .contact a.current, .m_menu .nav .contact a:hover {
  color: rgb(219, 219, 219);
}
.m_menu .nav .submenu {
  display: none;
  -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;
  font-size: 14px;
  text-align: left;
}
.m_menu .nav .submenu li {
  padding: 5px 0;
}
.m_menu .nav .submenu li a {
  color: #4e4d4d;
}
.m_menu .closeMain {
  position: fixed;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  width: 57px;
  height: 57px;
  border-radius: 100%;
  background: #831518;
  cursor: pointer;
}
.m_menu .closeMain span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: transparent;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.m_menu .closeMain span::before, .m_menu .closeMain span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.m_menu .closeMain span::before {
  top: 0px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.m_menu .closeMain span::after {
  bottom: 0px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*banner*/
.bannerArea {
  clear: both;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.bannerArea .wrap {
  max-width: 100%;
  padding: 0;
}
.bannerArea .bannerBox .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.bannerArea .bannerItem {
  position: relative;
}
.bannerArea .bannerItem .Img {
  position: relative;
}
@media (max-width: 1024px) {
  .bannerArea .bannerItem .Img {
    height: 350px;
  }
  .bannerArea .bannerItem .Img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.bannerArea .bannerLink {
  display: block;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/*文字跑馬燈*/
.marqueeArea {
  padding: 15px 0;
  background-color: rgb(6, 21, 64);
}
.marqueeArea h2 {
  float: left;
  margin-right: 20px;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}
@media (max-width: 640px) {
  .marqueeArea h2 {
    display: none;
  }
}
.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;
}
@media (max-width: 640px) {
  .marqueeArea .date {
    display: none;
  }
}
.marqueeArea h3 {
  display: inline-block;
  vertical-align: top;
}
.marqueeArea h3 a {
  display: block;
  width: 100%;
  font-size: 15px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*footer*/
footer {
  position: relative;
  z-index: 0;
  background: url(../images/background-master.jpg);
  padding: 65px 0 80px;
  margin-top: -30px;
}
footer::before {
  content: "";
  position: absolute;
  top: -50px;
  z-index: -2;
  background: url(../images/background-tearpaper.png);
  background-position: top left;
  height: 275px;
  width: 100%;
  pointer-events: none;
}
@media (max-width: 640px) {
  footer::before {
    background: url(../images/background-m-footer.png);
    background-size: cover;
  }
}
footer::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/background-circle.png);
}
@media (max-width: 480px) {
  footer::after {
    background: url(../images/background-m-circle.png);
  }
}
footer .wrap {
  text-align: center;
  color: #2a2a2a;
}
footer .downLogo {
  width: 100%;
  max-width: 100px;
  margin: 0 auto;
}
footer .downLogo img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
footer .copyrightBox {
  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;
  font-size: 15px;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  font-weight: 400;
  padding-top: 40px;
}
@media (max-width: 480px) {
  footer .copyrightBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .footerInfo {
  padding-right: 5px;
}
footer .copyright .translateIbest .design a {
  color: #2a2a2a;
  font-size: 15px;
}
footer .infoList {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 20px;
}
footer .infoList li {
  padding: 5px 10px;
}
footer .infoList li a, footer .infoList li span {
  position: relative;
  line-height: 1.5;
  font-size: 15px;
  letter-spacing: 2px;
}
footer .infoList li a::after {
  content: "";
  position: absolute;
  right: 0;
  display: block;
  width: 0;
  height: 1px;
  background: #2a2a2a;
}
@media (min-width: 1201px) {
  footer .infoList li a:hover {
    color: #831518;
  }
  footer .infoList li a:hover::after {
    width: 100%;
  }
}
footer .infoList .tel {
  position: relative;
}
footer .infoList .tel::before {
  content: "T";
  position: relative;
  left: 0;
  padding-right: 5px;
  display: inline-block;
  color: #88c123;
  font-size: 15px;
}
footer .infoList .tel::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: #2a2a2a;
}
footer .infoList .fax {
  position: relative;
}
footer .infoList .fax::before {
  content: "F";
  position: relative;
  left: 0;
  padding-right: 5px;
  display: inline-block;
  color: #831518;
  font-size: 15px;
}
footer .infoList .fax::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: #2a2a2a;
}

.privacyArea {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  padding: 40px 0 25px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 50;
  -webkit-transition: all 0.6s 0.1s;
  transition: all 0.6s 0.1s;
}
.privacyArea.check {
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.privacyArea .wrap {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.privacyArea .text {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}
.privacyArea .text a {
  color: #831518;
  display: inline-block;
  margin-top: 8px;
  text-decoration: underline;
}
.privacyArea .text a:hover {
  color: #831518;
}
.privacyArea .btn {
  margin-left: 25px;
  padding-top: 0;
}
.privacyArea .btn a {
  color: #fff;
  display: inline-block;
  letter-spacing: 0.5px;
  padding: 15px 35px;
}
@media (max-width: 768px) {
  .privacyArea .wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .privacyArea .text {
    width: 100%;
  }
  .privacyArea .btn {
    margin-top: 25px;
    margin-left: 0;
  }
}

/*share*/
.social {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  margin-right: -4px;
}
@media (max-width: 480px) {
  .social {
    width: 100%;
  }
}
.social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 5px;
  font-size: 19px;
  color: #929292;
  text-align: center;
}
.social a:hover {
  opacity: 0.8;
}

.translateIbest {
  display: inline-block;
  vertical-align: middle;
}
.translateIbest .design {
  /*網頁設計‧愛貝斯*/
  display: block;
  line-height: 22px;
  font-size: 9pt;
  color: #000;
}
.translateIbest .design a {
  /*網頁設計‧愛貝斯*/
  color: #000;
  text-decoration: none;
}
.translateIbest .design a:hover {
  text-decoration: underline;
}

/*手機快捷選單*/
.fixedQuickLink {
  width: 100%;
  background-color: #000;
  padding-bottom: env(safe-area-inset-bottom);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 5;
}
@media (min-width: 1181px) {
  .fixedQuickLink {
    display: none;
  }
}
.fixedQuickLink ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fixedQuickLink li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.fixedQuickLink li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.fixedQuickLink a {
  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;
  height: 55px;
  font-size: 13px;
  color: #fff;
}
.fixedQuickLink i {
  margin-bottom: 5px;
}

/*後台預覽模式*/
.adminPreviewArea {
  max-width: 320px;
  border: 4px solid #ffe2e2;
  border-radius: 5px;
  background: #fdc9c9;
  color: #000;
  padding: 20px;
  position: fixed;
  top: 15px;
  right: 0;
  z-index: 99999;
}
.adminPreviewArea a {
  text-decoration: underline;
}

/*後台登入模式*/
.adminLoginArea {
  width: 100%;
  background-color: rgba(180, 0, 0, 0.85);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding-bottom: env(safe-area-inset-bottom);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99999;
  text-align: center;
}
.adminLoginArea p {
  padding: 20px 15px;
}

/*********內頁**********/
.mainArea {
  position: relative;
  padding-top: 100px;
  padding-bottom: 140px;
}
@media (max-width: 1023px) {
  .mainArea {
    padding-top: 30px;
  }
}
.mainArea::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  display: block;
  background: url(../images/background-master.jpg);
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.mainArea::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/background-circle.png);
}
.mainArea404 {
  width: 100%;
  height: calc(100vh - 300px);
  min-height: 500px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mainArea404 .top {
  max-width: 380px;
  color: #831518;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .mainArea404 {
    height: 50vh;
    min-height: 350px;
  }
  .mainArea404 .top {
    font-size: 24px;
  }
}
.mainArea .contentBox {
  clear: both;
}

.textBoxIns {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.titleBox {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
.titleBox .subtitle {
  padding-bottom: 5px;
}
.titleBox .subtitle img {
  display: block;
  width: auto;
}
.titleBox .title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 50px;
  letter-spacing: 5px;
  color: #2b2b2b;
}
@media (max-width: 640px) {
  .titleBox .title {
    font-size: 45px;
  }
}
@media (max-width: 480px) {
  .titleBox .title {
    font-size: 30px;
  }
}
.titleBoxIns {
  position: relative;
  text-align: center;
  margin-bottom: 0;
}
.titleBoxIns .titleEn {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.titleBoxIns .titleTw {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 45px;
  letter-spacing: 2px;
  line-height: 1;
  color: #2b2b2b;
  color: #fff;
  padding-top: 10px;
}

/*bread*/
.bread {
  margin-bottom: 15px;
  padding: 20px 0;
}
.bread .wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  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;
}
.bread .wrap a, .bread .wrap span {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.bread .wrap a {
  color: #fff;
}
.bread .wrap a:hover {
  color: #88c123;
}
.bread .wrap span {
  color: #fff;
}
.bread .wrap span + a,
.bread .wrap a + span {
  padding-left: 25px;
  position: relative;
}
.bread.arrow .wrap span + a,
.bread.arrow .wrap a + span {
  padding-left: 25px;
  position: relative;
}
.bread.arrow .wrap span + a::before,
.bread.arrow .wrap a + span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 7px;
  z-index: 1;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.bread.verticalLine .wrap span + a,
.bread.verticalLine .wrap a + span {
  padding-left: 20px;
  position: relative;
}
.bread.verticalLine .wrap span + a::before,
.bread.verticalLine .wrap a + span::before {
  content: "";
  width: 1px;
  height: 80%;
  background-color: #a9a9a9;
  position: absolute;
  top: 10%;
  left: 10px;
  z-index: 1;
}
.bread.horizontalLine .wrap span + a,
.bread.horizontalLine .wrap a + span {
  padding-left: 25px;
  position: relative;
}
.bread.horizontalLine .wrap span + a::before,
.bread.horizontalLine .wrap a + span::before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #a9a9a9;
  position: absolute;
  top: 50%;
  left: 8px;
  z-index: 1;
}

/*文章標題*/
.articleTitle {
  color: #2b2b2b;
  font-weight: 400;
  font-size: 20px;
  padding: 30px 0 20px;
  border-bottom: 1px solid #4e4d4d;
  margin-bottom: 20px;
}

/*側邊標題字*/
.sectionTitle {
  margin-bottom: 20px;
  padding: 5px;
  border-bottom: 1px solid #d6d6d6;
  font-weight: 400;
  font-size: 15px;
  color: #232323;
}
.sectionTitle strong {
  display: block;
  position: relative;
  font-weight: 400;
}
.sectionTitle a {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

@-webkit-keyframes aniSlideLeft {
  0% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes aniSlideLeft {
  0% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@media (max-width: 1023px) {
  .bannerArea .classBoxRow {
    display: none;
  }
}

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

/*類別*/
.classBox {
  position: relative;
  z-index: 4;
}
.classBox .classCurrent {
  background-color: #831518;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 30px 10px 10px;
  position: relative;
  margin-bottom: 40px;
}
.classBox .classCurrent::before {
  content: "\f107";
  color: #fff;
  font-size: 15px;
  font-family: FontAwesome;
  line-height: 1;
  margin-top: -6px;
  position: absolute;
  right: 15px;
  top: 50%;
  z-index: 1;
}
@media (min-width: 1024px) {
  .classBox .classCurrent {
    display: none;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}
@media (min-width: 1024px) {
  .classBoxRow .classLink {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .classBoxRow .classLink li {
    margin: 0 18px;
    margin-bottom: 10px;
  }
  .classBoxRow .classLink a {
    font-family: "Noto Serif JP", serif;
    display: block;
    padding: 13px;
    font-size: 16px;
    color: #4d9028;
    background-color: #fff;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 50px;
    border: 1px solid #4d9028;
    min-width: 160px;
  }
  .classBoxRow .classLink a.current, .classBoxRow .classLink a:hover {
    color: #fff;
    background-color: #4d9028;
  }
}
.classBoxColumn {
  margin-bottom: 30px;
}
.classBoxColumn .classLink .linkHasItems::before, .classBoxColumn .classLink .linkHasItems::after {
  content: "";
  width: 13px;
  height: 1px;
  background-color: #2f2f2f;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.classBoxColumn .classLink .linkHasItems::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.classBoxColumn .classLink .linkHasItems::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.classBoxColumn .classLink .linkHasItems.open {
  background-color: #831518;
  color: #fff;
}
.classBoxColumn .classLink .linkHasItems.open::before, .classBoxColumn .classLink .linkHasItems.open::after {
  background-color: #fff;
}
.classBoxColumn .classLink .linkHasItems.open::after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}
.classBoxColumn .classLink .linkHasItems.open + ul {
  display: block;
}
.classBoxColumn .classLink .linkHasItems.open + ul &gt; li {
  -webkit-animation: aniSlideLeft 0.5s 0.3s ease-out both;
          animation: aniSlideLeft 0.5s 0.3s ease-out both;
}
.classBoxColumn .classLink .linkHasItems.open + ul &gt; li a {
  background-color: #f8f8f8;
  color: #2f2f2f;
}
.classBoxColumn .classLink .linkHasItems.open + ul &gt; li a.current, .classBoxColumn .classLink .linkHasItems.open + ul &gt; li a:hover {
  background-color: #e5e5e5;
  color: #831518;
}
@media (min-width: 1024px) {
  .classBoxColumn .classLink &gt; li:not(:first-child) {
    border-top: 1px solid #ccc;
  }
  .classBoxColumn .classLink ul {
    display: none;
  }
  .classBoxColumn .classLink ul li:not(:first-child) {
    border-top: 1px solid #ccc;
  }
  .classBoxColumn .classLink a {
    color: #2f2f2f;
    display: block;
    line-height: 1.2;
    letter-spacing: 0.5px;
    padding: 18px 15px;
    position: relative;
  }
  .classBoxColumn .classLink a.current, .classBoxColumn .classLink a:hover {
    background-color: #831518;
    color: #fff;
  }
  .classBoxColumn .classLink a.current::before, .classBoxColumn .classLink a.current::after, .classBoxColumn .classLink a:hover::before, .classBoxColumn .classLink a:hover::after {
    background-color: #fff;
  }
}
@media (max-width: 1023px) {
  .classBoxRow .classLink, .classBoxColumn .classLink {
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
  }
  .classBoxRow .classLink.open, .classBoxColumn .classLink.open {
    display: block;
  }
  .classBoxRow .classLink &gt; li:not(:first-child), .classBoxColumn .classLink &gt; li:not(:first-child) {
    border-top: 1px solid #ccc;
  }
  .classBoxRow .classLink &gt; li &gt; a.current, .classBoxColumn .classLink &gt; li &gt; a.current {
    color: #831518;
  }
  .classBoxRow .classLink &gt; li ul, .classBoxColumn .classLink &gt; li ul {
    display: none;
  }
  .classBoxRow .classLink a, .classBoxColumn .classLink a {
    color: #2f2f2f;
    background-color: #fff;
    display: block;
    font-size: 14px;
    padding: 14px 15px;
    position: relative;
  }
}

.pageBox .pageList {
  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;
  border-top: 1px solid #4e4d4d;
  padding: 40px 0;
  margin-top: 20px;
}
.pageBox .pageList a {
  border: 1px solid #4e4d4d;
  color: #4e4d4d;
  display: block;
  font-size: 15px;
  border-radius: 5px;
}
.pageBox .pageList a.prevBtn::before, .pageBox .pageList a.nextBtn::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 1px solid #4e4d4d;
  border-bottom: 1px solid #4e4d4d;
  display: block;
  position: absolute;
}
.pageBox .pageList a.prevBtn::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.pageBox .pageList a.nextBtn::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.pageBox .pageList a:hover {
  border: 1px solid #831518;
  background-color: #831518;
  color: #fff;
}
.pageBox .pageList a:hover.prevBtn::before, .pageBox .pageList a:hover.nextBtn::before {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.pageBox .pageList.number {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pageBox .pageList.number.oval a {
  width: 50px;
}
.pageBox .pageList.number li {
  margin: 5px;
}
.pageBox .pageList.number a {
  width: 30px;
  height: 30px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  text-align: center;
}
.pageBox .pageList.number a.prevBtn::before, .pageBox .pageList.number a.nextBtn::before {
  margin: auto;
  top: 0;
  bottom: 0;
}
.pageBox .pageList.number a.prevBtn::before {
  left: 5px;
  right: 0;
}
.pageBox .pageList.number a.nextBtn::before {
  left: 0;
  right: 5px;
}
.pageBox .pageList.number a.firstBtn::before, .pageBox .pageList.number a.firstBtn::after, .pageBox .pageList.number a.lastBtn::before, .pageBox .pageList.number a.lastBtn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 1px solid #4e4d4d;
  border-bottom: 1px solid #4e4d4d;
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}
.pageBox .pageList.number a.firstBtn::before, .pageBox .pageList.number a.firstBtn::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.pageBox .pageList.number a.firstBtn::before {
  left: -2px;
  right: 0;
}
.pageBox .pageList.number a.firstBtn::after {
  left: 12px;
  right: 0;
}
.pageBox .pageList.number a.lastBtn::before, .pageBox .pageList.number a.lastBtn::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.pageBox .pageList.number a.lastBtn::before {
  left: 0;
  right: -2px;
}
.pageBox .pageList.number a.lastBtn::after {
  left: 0;
  right: 12px;
}
.pageBox .pageList.number a.current {
  border: 1px solid #831518;
  background-color: #831518;
  color: #fff;
}
.pageBox .pageList.number a:hover.firstBtn::before, .pageBox .pageList.number a:hover.firstBtn::after, .pageBox .pageList.number a:hover.lastBtn::before, .pageBox .pageList.number a:hover.lastBtn::after {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.pageBox .pageList.prevnext {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pageBox .pageList.prevnext a {
  width: 180px;
  height: 45px;
  font-weight: 300;
  line-height: 43px;
  padding: 0 20px;
  position: relative;
}
.pageBox .pageList.prevnext a.prevBtn::before, .pageBox .pageList.prevnext a.nextBtn::before {
  top: calc(50% - 5px);
}
.pageBox .pageList.prevnext a.prevBtn {
  text-align: right;
}
.pageBox .pageList.prevnext a.prevBtn::before {
  left: 15px;
}
.pageBox .pageList.prevnext a.nextBtn {
  margin-left: auto;
  text-align: left;
}
.pageBox .pageList.prevnext a.nextBtn::before {
  right: 15px;
}
@media (max-width: 768px) {
  .pageBox .pageList.prevnext a {
    width: 125px;
    padding: 0 15px;
  }
}
@media (max-width: 640px) {
  .pageBox .pageList.prevnext li {
    width: calc(50% - 15px);
  }
  .pageBox .pageList.prevnext a {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .pageBox .pageList.prevnext li {
    width: calc(50% - 10px);
  }
}
.pageBox .pageList.prevnext.circle a {
  width: 45px;
  padding: 0;
}
.pageBox .pageList.prevnext.circle a span {
  display: none;
}
.pageBox .pageList.prevnext.circle a.prevBtn::before {
  left: calc(50% - 3px);
}
.pageBox .pageList.prevnext.circle a.nextBtn::before {
  right: calc(50% - 3px);
}
.pageBox .pageList.circle a {
  border-radius: 50%;
  overflow: hidden;
}
.pageBox .pageList.oval a {
  border-radius: 30px;
  overflow: hidden;
}

/*標籤*/
.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 #831518;
  font-size: 13px;
  color: #831518;
}
.tagBox a:hover {
  color: #fff;
  background-color: #831518;
}
.tagBox a.current {
  color: #fff;
  background-color: #831518;
}
.tagBox a.current:before {
  content: "\f00d";
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 12px;
}

/*頁籤*/
.tab {
  border-top: 1px solid #d6d6d6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
.tab li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.tab a {
  color: #333;
  display: block;
  line-height: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 10px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.tab a.current {
  background-color: #831518;
  color: #fff;
}

/*頁籤內容*/
.tabContent {
  margin-top: -1px;
  padding: 30px 5px;
}
.tabContent .tabContentItem {
  display: none;
}

/*側邊_menu*/
.side_menu {
  margin-bottom: 50px;
}
.side_menu li {
  border-bottom: 1px solid #e1e1e1;
  position: relative;
}
.side_menu li &gt; a {
  display: block;
  font-size: 14px;
  padding: 10px 15px;
}
.side_menu li &gt; a.current {
  background-color: #8c8c8c;
  color: #fff;
}
.side_menu li &gt; a b {
  color: #808080;
  font-size: 13px;
  font-weight: 400;
  margin-left: 10px;
}
.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;
  -webkit-box-shadow: 2px 2px 5px #c3c3c3;
          box-shadow: 2px 2px 5px #c3c3c3;
}
.side_album a img {
  width: 100%;
  display: block;
  -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: #4e4d4d;
}
.side_contactInfo a:hover {
  color: #831518;
}
.side_contactInfo i {
  display: inline-block;
  vertical-align: middle;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-right: 8px;
  border: 2px solid #a5a5a5;
  border-radius: 50%;
  font-size: 20px;
  color: #a5a5a5;
  text-align: center;
}
.side_contactInfo b {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
}

/*側邊_房型*/
.side_room {
  margin-bottom: 50px;
}
.side_room .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.side_room .Txt {
  margin-top: 5px;
}
.side_room .Txt .title a {
  font-size: 16px;
  font-weight: 400;
}
.side_room .Txt .text {
  max-height: 100px;
  font-size: 13px;
  color: #858383;
  line-height: 1.8;
  overflow: hidden;
}

/*側邊_其他相關訊息*/
.side_news {
  margin: 30px 0;
}
.side_news .sideNewsList {
  margin-top: 20px;
}
.side_news .sideNewsItem {
  margin-bottom: 25px;
}
.side_news .Img {
  float: left;
  width: 60px;
  margin-right: 12px;
  overflow: hidden;
}
.side_news .Img img {
  display: block;
  height: 60px;
}
.side_news .Txt {
  overflow: hidden;
}
.side_news .Txt a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
}
.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;
}

/*社群分享*/
.sideShare {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}
.sideShare .shareList {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sideShare .shareList .shareTitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  color: #666;
}
.sideShare .shareList .shareItem a {
  color: #666;
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  padding: 5px 6px;
  text-align: center;
}
.sideShare .shareList .shareItem a:hover {
  opacity: 0.8;
}
.sideShare .shareList .shareItem a svg {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-top: -3px;
  vertical-align: middle;
}

/*滑動解鎖*/
.captchaArea {
  position: relative;
  width: 200px;
  height: 50px;
  background-color: #ddd;
}
.captchaArea.unlocking .sliderBtn {
  -webkit-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 0.3s linear;
  transition: all 0.3s linear;
}
.sliderBtn::before {
  content: "\f105";
  position: absolute;
  top: 13px;
  left: 23px;
  color: #fff;
  font-size: 24px;
  font-family: FontAwesome;
  pointer-events: none;
}

/*Hover效果1: 放大淡出*/
.imh_opacity {
  background-color: #000;
  overflow: hidden;
}
.imh_opacity img {
  -webkit-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);
          transform: scale(1.05);
}

/*Hover效果1: 放大淡出Detail*/
.imh_detail {
  background-color: #000;
  overflow: hidden;
  position: relative;
}
.imh_detail img {
  -webkit-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;
  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);
          transform: scale(1.05);
}

/*Hover效果1: 放大淡出zoom*/
.imh_zoom {
  background-color: #000;
  overflow: hidden;
  position: relative;
}
.imh_zoom img {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  backface-visibility: hidden;
  -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;
  transition: all 0.4s ease;
}
.imh_zoom:hover a:before {
  top: 50%;
}
.imh_zoom:hover img {
  opacity: 0.3;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}</pre></body></html>