body {
  /*深色底的背景顏色底色、每頁最下方底色與底圖*/
  background-color: #f2f0e7;
  /*background-image:url(../images_muxia/index/bg_dark.jpg);*/
  color: #222 !important;
}

/*設定圖片的大小*/
img {
  max-width: 100%;
  max-height: 100%;
}

.hr_style {
  margin-top: 5px;
  margin-bottom: 20px;
  border: 0px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.8) !important;
}

/* -------------------------------------------------------
                   選單設定 start
-------------------------------------------------------- */
.navbar .navbar-nav .nav-link {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  margin: 1px;
  letter-spacing: 1px;
  /*text-transform: uppercase;*/
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  padding-right: 12px;
  padding-left: 12px;
}
.navbar .navbar-nav .nav-link.nav-color {
  color: #fff;
}
.navbar .navbar-nav .nav-link:hover {
  color: #c4d0af;
}
.navbar .navbar-nav .active {
  color: #c4d0af !important;
}
.navbar .navbar-nav .active i {
  color: #c4d0af;
}
.nav-scroll {
  background-image: url(../img/navbar_bg.webp);
  background-position: center center;
  padding: 0 0 0 0;
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
  box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
  height: 90px;
}

/* -------------------------------------------------------
                   選單設定 end
-------------------------------------------------------- */

/* 3.2 Page cover */
.cover-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100vh;
  transition: 0.3s;
}
.cover-page .cover-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}
.cover-page img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cover-page iframe,
.cover-page video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 769px) {
  /*這個屬性是用在電腦版面顯示時，div col的排序 */
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }

  .margin_top_lg_minus_100 {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  /*這個屬性是用在手機版面顯示時，div col的排序 */
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
}

/* -------------------------------------------------------
                   電腦版設定 start
-------------------------------------------------------- */
@media only screen and (min-width: 768px) {
  .room_photo_height_vh {
    height: 90vh !important;
  }

  /*首頁左上角logo區的底圖或顏色*/
  .home_logo_bg {
    position: fixed;
    left: 0px;
    top: 0px;
    background-image: url(../images/index/index_left_top_bg.png);
    width: 400px;
    height: 558px;
    z-index: 40;
    /*width: 24.4vmin;*/
  }

  .computer_padding_bottom {
    padding-bottom: 100px;
  }

  .computer_padding_bottom_30 {
    padding-bottom: 30px;
  }

  .slide_height_vh {
    height: 90vh !important;
  }
}
/* -------------------------------------------------------
                   電腦版設定 end
-------------------------------------------------------- */

/* -------------------------------------------------------
                   手機版設定 start
-------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .room_photo_height_vh {
    height: 45vh !important;
  }

  .mobile_padding_top {
    padding-top: 120px;
  }

  .mobile_padding_top_30 {
    padding-top: 30px;
  }

  .mobile_margin_top_50 {
    margin-top: 150px;
  }

  .slide_height_vh {
    height: 35vh !important;
  }
}
/* -------------------------------------------------------
                   手機版設定 end
-------------------------------------------------------- */

.bg_align_center {
  background-position: center center; /* 背景對齊 */
}

.img-hover_effect.single-img {
  position: relative;
  overflow: hidden;
}
.img-hover_effect.single-img:before {
  background-color: #000000;
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  z-index: 1;
}
.img-hover_effect.single-img img {
  -webkit-transition: all 1.3s ease-in-out;
  -o-transition: all 1.3s ease-in-out;
  transition: all 1.3s ease-in-out;
}
.img-hover_effect:hover.single-img:before {
  opacity: 0.2; /*滑鼠移入圖片上時，減少的透明度*/
}
.img-hover_effect:hover.single-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.img_border_white {
  border: solid;
  border-color: #ffffff99;
  border-width: 15px;
}

.img_border_lightyellow {
  border: solid;
  border-color: #ffe99b;
  border-width: 15px;
}

.img_border_lightpink {
  border: solid;
  border-color: #fad3db;
  border-width: 15px;
}

/*fancybox訊息內容li的設定*/
#hello ul,
ol li {
  /*margin-left: 30px;*/
}

ul,
ol li {
  margin-left: 0px;
}

.ul_list_style {
  list-style: square !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.ol_list_style {
  list-style: disc !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.list_style_decimal {
  list-style: decimal !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.list_unstyled {
  list-style: none !important;
  color: rgba(255, 255, 255, 0.7);
}

/*首頁fancybox訊息內容 右上角 關閉鈕 的設定
button:not([data-filter]):not(.mfp-arrow) {
  position: absolute;
  right: 25px;
  top: 5px;
  width: auto;
  color: #fff;
  background-color: #090909;
}*/

/* 房間照片小圖滑鼠移入時小小放大效果 start */
.room_image .col_image {
  overflow: hidden;
  position: relative;
}

.room_image .col_image img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 100%;
}

.room_image:hover .col_image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/* 房間照片小圖滑鼠移入時小小放大效果 end */

/*最新訊息-資料的div屬性設定*/
.div_border_color /*滑鼠移入前*/ {
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 20px 20px 20px 20px;
  border: 1px solid rgba(255, 0, 0, 0.5);
  border-radius: 40px 5px 40px 5px; /*border-radius 後方允許填入四個值，依序分別是 「左上」、「右上」、「右下」、「左下」*/
  cursor: pointer; /*滑鼠指標變成超連結的 手 圖案*/
  background: #ffffff33; /*HEX還可搭配一個透明的數值，一樣也是加在最後 #RRGGBBaa*/
}
.div_border_color:hover /*滑鼠移入後*/ {
  background: #22222211; /*HEX還可搭配一個透明的數值，一樣也是加在最後 #RRGGBBaa*/
  border: 1px solid rgba(200, 200, 200, 0.5);
  border-radius: 40px 5px 40px 5px; /*border-radius 後方允許填入四個值，依序分別是 「左上」、「右上」、「右下」、「左下」*/
  cursor: pointer; /*滑鼠指標變成超連結的 手 圖案*/
}

.stroke_orange {
  color: white;
  text-shadow: 0px 10px 0.02px #ff9500, 9.8px 2.1px 0.02px #ff9500,
    4.2px -9.1px 0.02px #ff9500, -8px -6px 0.02px #ff9500,
    -7.6px 6.5px 0.02px #ff9500, 4.8px 8.8px 0.02px #ff9500,
    9.6px -2.8px 0.02px #ff9500, -0.7px -10px 0.02px #ff9500,
    -9.9px -1.5px 0.02px #ff9500, -3.5px 9.4px 0.02px #ff9500,
    8.4px 5.4px 0.02px #ff9500, 7.1px -7px 0.02px #ff9500,
    -5.4px -8.4px 0.02px #ff9500, -9.4px 3.5px 0.02px #ff9500,
    1.4px 9.9px 0.02px #ff9500, 10px 0.8px 0.02px #ff9500,
    2.9px -9.6px 0.02px #ff9500, -8.7px -4.8px 0.02px #ff9500,
    -6.6px 7.5px 0.02px #ff9500, 5.9px 8px 0.02px #ff9500,
    9.1px -4.1px 0.02px #ff9500, -2.1px -9.8px 0.02px #ff9500,
    -10px -0.1px 0.02px #ff9500, -2.2px 9.8px 0.02px #ff9500,
    9.1px 4.2px 0.02px #ff9500, 6.1px -8px 0.02px #ff9500,
    -6.5px -7.6px 0.02px #ff9500, -8.8px 4.7px 0.02px #ff9500,
    2.7px 9.6px 0.02px #ff9500, 10px -0.6px 0.02px #ff9500,
    1.5px -9.9px 0.02px #ff9500, -9.3px -3.6px 0.02px #ff9500,
    -5.5px 8.4px 0.02px #ff9500, 7px 7.2px 0.02px #ff9500,
    8.5px -5.3px 0.02px #ff9500, -3.4px -9.4px 0.02px #ff9500,
    -9.9px 1.3px 0.02px #ff9500, -0.8px 10px 0.02px #ff9500,
    9.6px 2.9px 0.02px #ff9500, 4.9px -8.7px 0.02px #ff9500,
    -7.5px -6.7px 0.02px #ff9500, -8.1px 5.9px 0.02px #ff9500,
    4px 9.2px 0.02px #ff9500, 9.8px -2px 0.02px #ff9500,
    0.2px -10px 0.02px #ff9500, -9.7px -2.3px 0.02px #ff9500,
    -4.3px 9px 0.02px #ff9500, 7.9px 6.1px 0.02px #ff9500;
}

.stroke_blue {
  color: white;
  text-shadow: 0px 10px 0.02px #0096dc, 9.8px 2.1px 0.02px #0096dc,
    4.2px -9.1px 0.02px #0096dc, -8px -6px 0.02px #0096dc,
    -7.6px 6.5px 0.02px #0096dc, 4.8px 8.8px 0.02px #0096dc,
    9.6px -2.8px 0.02px #0096dc, -0.7px -10px 0.02px #0096dc,
    -9.9px -1.5px 0.02px #0096dc, -3.5px 9.4px 0.02px #0096dc,
    8.4px 5.4px 0.02px #0096dc, 7.1px -7px 0.02px #0096dc,
    -5.4px -8.4px 0.02px #0096dc, -9.4px 3.5px 0.02px #0096dc,
    1.4px 9.9px 0.02px #0096dc, 10px 0.8px 0.02px #0096dc,
    2.9px -9.6px 0.02px #0096dc, -8.7px -4.8px 0.02px #0096dc,
    -6.6px 7.5px 0.02px #0096dc, 5.9px 8px 0.02px #0096dc,
    9.1px -4.1px 0.02px #0096dc, -2.1px -9.8px 0.02px #0096dc,
    -10px -0.1px 0.02px #0096dc, -2.2px 9.8px 0.02px #0096dc,
    9.1px 4.2px 0.02px #0096dc, 6.1px -8px 0.02px #0096dc,
    -6.5px -7.6px 0.02px #0096dc, -8.8px 4.7px 0.02px #0096dc,
    2.7px 9.6px 0.02px #0096dc, 10px -0.6px 0.02px #0096dc,
    1.5px -9.9px 0.02px #0096dc, -9.3px -3.6px 0.02px #0096dc,
    -5.5px 8.4px 0.02px #0096dc, 7px 7.2px 0.02px #0096dc,
    8.5px -5.3px 0.02px #0096dc, -3.4px -9.4px 0.02px #0096dc,
    -9.9px 1.3px 0.02px #0096dc, -0.8px 10px 0.02px #0096dc,
    9.6px 2.9px 0.02px #0096dc, 4.9px -8.7px 0.02px #0096dc,
    -7.5px -6.7px 0.02px #0096dc, -8.1px 5.9px 0.02px #0096dc,
    4px 9.2px 0.02px #0096dc, 9.8px -2px 0.02px #0096dc,
    0.2px -10px 0.02px #0096dc, -9.7px -2.3px 0.02px #0096dc,
    -4.3px 9px 0.02px #0096dc, 7.9px 6.1px 0.02px #0096dc;
}

/* ====================== [  Start Button Style ] ====================== */
.btn-curve {
  background: transparent;
  padding: 12px 35px;
  border: 1px solid #1e1e1e;
  font-family: "Teko", sans-serif;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-curve:focus {
  outline: none;
}
.btn-curve:hover {
  outline: none;
}
.btn-curve:hover:after {
  bottom: -30px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.btn-curve:hover span {
  color: #fff;
}
.btn-curve:after {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: 130%;
  background: #1e1e1e;
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.btn-curve span {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.btn-curve.btn-lit {
  border-color: #fff;
  color: #fff;
}
.btn-curve.btn-lit:hover span {
  color: #98846f;
}
.btn-curve.btn-lit:after {
  background: #fff;
}
.btn-curve.btn-blc {
  background: #1e1e1e;
}
.btn-curve.btn-blc:after {
  background: #fff;
}
.btn-curve.btn-blc span {
  color: #fff;
}
.btn-curve.btn-blc:hover span {
  color: #1e1e1e;
}
.btn-curve.btn-color {
  background: #98846f;
  border-color: #98846f;
}
.btn-curve.btn-color:after {
  background: #fff;
}
.btn-curve.btn-color span {
  color: #fff;
}
.btn-curve.btn-color:hover span {
  color: #98846f;
}
.btn-curve.btn-lg {
  padding: 14px 40px;
}
.btn-curve.btn-lg span {
  font-size: 14px;
}
.btn-curve.btn-wit {
  background: #fff;
  border-color: #fff;
}
.btn-curve.btn-wit:after {
  background: #090909;
}
.btn-curve.btn-wit span {
  color: #1e1e1e;
}
.btn-curve.btn-wit:hover span {
  color: #fff;
}
.btn-curve.btn-radius {
  border-radius: 30px;
}

/* ====================== [ End Button Style ] ====================== */

.photo_shadow_black {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
}

.textborder_title_black {
  -webkit-text-stroke: 1.5px black;
}
.textshadow_title_black {
  text-shadow: 0.1em 0.1em 0.2em black;
}

.textshadow_content_black {
  text-shadow: 0 0 0.2em black, 0 0 0.2em black, 0 0 0.2em black;
}

.textshadow_content_blue {
  text-shadow: 0 0 0.2em #00488b, 0 0 0.2em #00488b, 0 0 0.2em #00488b;
}

.textshadow_content_green {
  text-shadow: 0 0 0.2em #4e6e16, 0 0 0.2em #4e6e16, 0 0 0.2em #4e6e16;
}

.textshadow_content_white {
  text-shadow: 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff;
}

.font_12 {
  font-size: 12px !important;
  line-height: 24px;
  font-weight: 200 !important;
}

.font_14 {
  font-size: 14px !important;
  line-height: 24px;
  font-weight: 400 !important;
  letter-spacing: 1px;
}

.font_15 {
  font-size: 15px !important;
  line-height: 26px !important;
}

.font_16 {
  font-size: 16px !important;
  line-height: 24px;
  font-weight: 400 !important;
  letter-spacing: 1px;
}

.font_18 {
  font-size: 18px !important;
  line-height: 26px;
  font-weight: 500 !important;
}

.font_20 {
  font-size: 20px !important;
  line-height: 28px;
  font-weight: 600 !important;
}

.font_22 {
  font-size: 22px !important;
  line-height: 30px;
  font-weight: 300 !important;
}

.font_24 {
  font-size: 24px !important;
  line-height: 30px;
  font-weight: 600 !important;
}

.font_28 {
  font-size: 28px !important;
  line-height: 30px;
  font-weight: 500 !important;
}

.font_30 {
  font-size: 30px !important;
  line-height: 30px;
  font-weight: 600 !important;
}

.font_42 {
  font-size: 42px !important;
  line-height: 30px;
  font-weight: 800 !important;
}

.font_italic {
  font-style: italic;
}

.font_price {
  color: #f26e3a !important;
  font-size: 16px !important;
  line-height: 30px;
  font-weight: 400 !important;
}

.font_weight_200 {
  font-weight: 200 !important;
}

.font_weight_300 {
  font-weight: 300 !important;
}

.font_weight_400 {
  font-weight: 400 !important;
}

.font_weight_500 {
  font-weight: 500 !important;
}

.font_weight_700 {
  font-weight: 700 !important;
}

.color_white {
  color: #ffffff !important;
}

.color_grey {
  color: #555555 !important;
}

.color_lightgrey {
  color: #888888 !important;
}

.color_lightyellow {
  color: #ffeb99 !important;
}

.color_blue {
  color: #009fe2 !important;
}

.color_pink {
  color: #e4005b !important;
}

.color_red {
  color: #990000 !important;
}

.color_orange {
  color: #b65b00 !important;
}

.color_lightblue {
  color: #55daf7 !important;
}

.color_yellow {
  color: #efdd34 !important;
}

.color_darkgrey {
  color: #222222 !important;
}

.color_black {
  color: #101010 !important;
}

.color_lightorange {
  color: #ffce58 !important;
}

.color_darkpink {
  color: #c20037 !important;
}

.color_lightpink {
  color: #ffacbb !important;
}

.color_yellowgreen {
  color: #c7cd9c !important;
}

.color_green {
  color: #9bdb01 !important;
}

.color_darkgreen {
  color: #6e970b !important;
}

.color_darkgreen_1 {
  color: #4c6b00 !important;
}

.color_darkorange {
  color: #ad8a2c !important;
}

.color_darkbrown {
  color: #89693f !important;
}

.color_price {
  color: #d1dd83 !important;
  font-size: 18px !important;
  font-style: italic !important;
}

.color_price_small {
  color: #e16224 !important;
  font-size: 18px !important;
}

.color_price_small_2 {
  color: #ffb20c !important;
  font-size: 14px !important;
}

.color_price_small_grey {
  color: #444444 !important;
  font-size: 16px !important;
}

.color_price_promotion {
  color: #e16224 !important;
  font-size: 20px !important;
  font-style: italic;
}

.color_price_promotion_small {
  color: #e16224 !important;
  font-size: 16px !important;
  font-style: italic;
}

.color_price_promotion_title {
  color: #ff9c00 !important;
  font-size: 20px !important;
}

.align_right {
  text-align: right !important;
}

.align_center {
  text-align: center !important;
}

.mb_20 {
  margin-bottom: 20px;
}

.margin_top_20 {
  margin-top: 20px;
}

.margin_top_50 {
  margin-top: 50px;
}

.margin_top_100 {
  margin-top: 100px;
}

.margin_top_minus_100 {
  margin-top: -100px;
}

.padding_100 {
  padding: 100px 0;
}

.padding_bottom_20 {
  padding-bottom: 20px;
}

.padding_bottom_30 {
  padding-bottom: 30px;
}

.padding_bottom_40 {
  padding-bottom: 40px;
}

.padding_left_20 {
  padding-left: 20px;
}
.padding_left_40 {
  padding-left: 40px;
}

.padding_left_60 {
  padding-left: 60px;
}

.padding_top_15 {
  padding-top: 15px;
}
.padding_top_20 {
  padding-top: 20px;
}
.padding_top_30 {
  padding-top: 30px;
}
.padding_top_50 {
  padding-top: 50px;
}
.padding_top_100 {
  padding-top: 100px;
}
.padding_top_-20 {
  padding-top: -20px;
}

.padding_top_-50 {
  padding-top: -50px;
}

.padding_top_120 {
  padding-top: 120px;
}

.line_height_10 {
  line-height: 10px;
}

.line_height_20 {
  line-height: 20px;
}

.line_height_26 {
  line-height: 26px;
}

.line_height_30 {
  line-height: 30px;
}

.line_height_36 {
  line-height: 36px;
}

.line_height_50 {
  line-height: 50px;
}

.zindex_9999 {
  z-index: 9999;
}

.bgcolor_lightbrown {
  background: #f5f3f0;
}

.thumb_border {
  border: solid;
  border-width: 1px;
  border-color: #ffffff;
}

.photo_border {
  border: solid;
  border-width: 1px;
  border-color: #90877b;
}

A.naw:link {
  color: #ff7e00 !important;
  text-decoration: none !important;
}
A.naw:visited {
  color: #ff7e00 !important;
  text-decoration: none !important;
}
A.naw:hover {
  color: #00bdfc !important;
  text-decoration: underline !important;
  filter: Alpha(Opacity=70, FinishOpacity=70, Style=2);
  filter: alpha(opacity=70); /* IE */
  -moz-opacity: 0.7; /* Moz + FF */
  opacity: 0.7;
}

A.naz:link {
  color: #ffe400 !important;
  text-decoration: none !important;
  background: #f5f3f0;
}
A.naz:visited {
  color: #ffe400 !important;
  text-decoration: none !important;
}
A.naz:hover {
  color: #31daf9 !important;
  text-decoration: none !important;
}

A.nax:link {
  color: #eeeeee !important;
  text-decoration: none !important;
}
A.nax:visited {
  color: #eeeeee !important;
  text-decoration: none !important;
}
A.nax:hover {
  color: #ec1d66 !important;
  text-decoration: underline !important;
  left: 2px;
  top: 2px;
  right: -2px;
  bottom: 0px;
  position: relative;
  filter: Alpha(Opacity=70, FinishOpacity=70, Style=2);
  filter: alpha(opacity=70); /* IE */
  -moz-opacity: 0.7; /* Moz + FF */
  opacity: 0.7;
}

A.nay:link {
  color: #ccb7b2 !important;
  text-decoration: none !important;
}
A.nay:visited {
  color: #ccb7b2 !important;
  text-decoration: none !important;
}
A.nay:hover {
  color: #e7d0cb !important;
  text-decoration: none !important;
  left: 2px;
  top: 0px;
  right: -0px;
  bottom: 0px;
  position: relative;
}

A.nay_1:link {
  color: #c2cead !important;
  text-decoration: none !important;
}
A.nay_1:visited {
  color: #c2cead !important;
  text-decoration: none !important;
}
A.nay_1:hover {
  color: #dfe7d0 !important;
  text-decoration: none !important;
  left: 2px;
  top: 0px;
  right: -0px;
  bottom: 0px;
  position: relative;
}

A.nay_2:link {
  color: #b0c0d5 !important;
  text-decoration: none !important;
}
A.nay_2:visited {
  color: #b0c0d5 !important;
  text-decoration: none !important;
}
A.nay_2:hover {
  color: #d2ddeb !important;
  text-decoration: none !important;
  left: 2px;
  top: 0px;
  right: -0px;
  bottom: 0px;
  position: relative;
}

A.naa:link {
  color: #222222 !important;
  text-decoration: none !important;
}
A.naa:visited {
  color: #222222 !important;
  text-decoration: none !important;
}
A.naa:hover {
  color: #990000 !important;
  text-decoration: underline !important;
  left: 2px;
  top: 0px;
  right: -0px;
  bottom: 0px;
  position: relative;
}

A.nab:link {
  color: #0074c5 !important;
  font-size: 20px !important;
  text-decoration: none !important;
}
A.nab:visited {
  color: #0074c5 !important;
  text-decoration: none !important;
}
A.nab:hover {
  color: #ec1d66 !important;
  text-decoration: underline !important;
}

.intro-text .inner ul li {
  list-style: square;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  line-height: 30px;
}

.pro-text ul li {
  list-style: square;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  line-height: 30px;
}

/*點擊icon設定class*/
.click_word_icon {
  font-family: "微軟正黑體", "Arial", "Microsoft JhengHei";
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  height: 40px;
  width: 180px;
  line-height: 33px;
  text-align: center;
  margin: 20px 20px;
  border: 1px solid rgba(112, 112, 112, 0.5);
  color: #000;
  letter-spacing: 1px;
}

/* 按鈕基礎樣式 */
.btn_1 {
  background: #b5ad79;
  transition: background-color 0.2s ease; /* 平滑過渡 */
  color: white; /* 文字顏色 */
  border: none;
  cursor: pointer;
}

/* 使用 filter 自動加深 */
.btn_1:hover {
  background: #a39c6d;
}

/* 按鈕基礎樣式 */
.btn_2 {
  background: #d1a66d;
  transition: background-color 0.2s ease; /* 平滑過渡 */
  color: white; /* 文字顏色 */
  border: none;
  cursor: pointer;
}

/* 使用 filter 自動加深 */
.btn_2:hover {
  background: #b6905e;
}

/* 按鈕基礎樣式 */
.btn_3 {
  background: #b2af9b;
  transition: background-color 0.2s ease; /* 平滑過渡 */
  color: white; /* 文字顏色 */
  border: none;
  cursor: pointer;
}

/* 使用 filter 自動加深 */
.btn_3:hover {
  background: #999685;
}

/* 按鈕基礎樣式 */
.btn_4 {
  background: #b3b3b3;
  transition: background-color 0.2s ease; /* 平滑過渡 */
  color: white; /* 文字顏色 */
  border: none;
  cursor: pointer;
}

/* 使用 filter 自動加深 */
.btn_4:hover {
  background: #9e9e9e;
}
