@charset "UTF-8";

a {
  text-decoration: none;
}

body {
  padding-top: 70px;
}

.img-fluid {
  width: 100%;
}

.container.p-0 {
  padding: 0 !important;
}

.show-pc {
  display: block;
}

.show-mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .show-pc {
    display: none;
  }

  .show-mobile {
    display: block;
  }
}

/***********************/
/***** 選單 Start *****/
/***********************/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.navbar-brand {
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 22px;
  transition: 0.3s all;
}

.navbar-brand:hover {
  color: rgba(255, 255, 255, 0.7);
}

.navbar {
  background-color: transparent;
  transition: background-color 0.5s;
  border-radius: 2px;
}

@media screen and (min-width: 992px) {
  .navbar {
    background-color: rgba(0, 0, 0, 0.3);
  }
}

@media screen and (min-width: 992px) {

  /* 滾動後的樣式，白色背景 */
  .scrolled {
    background-color: rgba(255, 255, 255, 0.85);
  }

  .navbar {
    padding: 0;
  }

  .nav-item {
    padding: 10px;
  }

  /* 選單文字 */
  .nav-item a {
    color: #eee;
  }

  .nav-item a:hover,
  .nav-item a:focus,
  .nav-item.dropdown a:hover,
  .nav-item.dropdown a:focus {
    color: #fff;
  }

  .scrolled .nav-item a {
    color: #fff;
  }

  .scrolled .nav-item a:hover,
  .scrolled .nav-item a:focus,
  .scrolled .nav-item.dropdown a:hover,
  .scrolled .nav-item.dropdown a:focus {
    color: #32cadb;
  }

  /* 下拉選單文字 */
  .nav-item.dropdown ul li a {
    color: #666;
  }

  .nav-item.dropdown ul li a:hover,
  .nav-item.dropdown ul li a:focus {
    color: #32cadb;
    background-color: #f7f7f7;
  }

  .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 0px;
    border: 0px #fff solid;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    letter-spacing: 0.05em;
    padding: 15px 10px;
    line-height: 30px;
  }


}

@media screen and (max-width: 992px) {
  header {
    background-color: rgba(255, 255, 255, 0.95);
  }

  .navbar-toggler-icon {
    color: #fff;
  }

  .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  .nav-link {
    text-align: right;
    padding: 10px 15px;
    color: #fff;
    font-weight: 900;
  }

  .dropdown-menu {
    background: none;
    border-radius: 0px;
    border: 0px #fff solid;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.15);
    text-align: center;
    text-align: left;
    line-height: 32px;
    color: #333;

  }

  .dropdown-menu li a:hover {
    background: none;
  }

  .dropdown-item {
    padding: 5px 35px;
  }
}

.navbar-toggler {
  border: 0px solid #fff;
}

.navbar-toggler:focus {
  border: 0px solid #fff;
}

.home-logo {
  width: 60px;
}

@media screen and (max-width: 768px) {

  body {
    padding-top: 70px;
  }

  .home-logo {
    width: 45px;
  }


}


/**************************/
/***** 首頁輪播圖 Start *****/
/**************************/

.home-swiper-style {
  width: 100%;
  max-width: 100%;
}

.swiper-1 .swiper-slide {
  position: relative;
  height: auto;
}

.swiper-2 .swiper-slide {
  position: relative;
  height: auto;
}

.home-swiper-style .swiper-slide img {
  /* position: absolute;
  top: 0;
  left: 0; */
  width: 100%;
  /* height: 100%; */
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.home-swiper-style .swiper-slide p {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 46px;
  color: #fff;
  text-align: left;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 30px;
  display: grid;
  place-items: center;
  /* 同時處理水平和垂直置中 */
  height: 100%;
  text-shadow: 3px 3px 3px #555;
}

@media screen and (max-width: 767px) {
  .home-swiper-style .swiper-slide p {
    font-size: 26px;
  }
}


.swiper-button-next,
.swiper-button-prev {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.6);
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}

.swiper-button-next {
  right: 15px;
}

.swiper-button-prev {
  left: 15px;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination {
  bottom: 0 !important;
}

/* 圖片列表 開始 */

.img-list-box img {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.style4-box img {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
}

/* 圖片列表 結束 */

/* Layout設定 開始 */

.content-box {
  padding-top: 0px;
  padding-bottom: 0px;
  overflow: hidden;
}

/* Layout設定 結束 */

/* 圖文區塊1 開始 */

.pictext1 .pictext1 img {
  border-radius: 6px;
  transition: all 0.3s;
}

.pictext1 .pt-box {
  background-color: #fff;
  padding: 15px 10px;
  color: #333;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 10px;
  transition: all 0.3s;
  border: 1px #f3f3f3 solid;
}

.pictext1:hover img,
.pictext1:hover .pt-box {
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.05);
}

.pictext1 .title {
  font-size: 18px;
}

.pictext1 p {
  margin-bottom: 0;
  font-size: 14px;
}

/* 圖文區塊1 結束 */


/* 圖文區塊2 開始 */

.style7-box img {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

.style7-box .title-content {
  width: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #6ca6c9;
  max-width: 800px;
  margin: 0 auto;
}

.style7-box .title-content div {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.style7-box .title-content span {
  width: 100%;
  height: 1px;
  display: block;
  background-color: #5b96bb;
  margin: 0 8px;
}

.style7-box .title-content p {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 15px 0;
}

.style7-box .text-content {
  font-size: 16px;
  line-height: 26px;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 0.05em;
}


/* 圖文區塊2 結束 */






/**************************/
/***** 頁尾 樣式 Start *****/
/**************************/

footer {
  background: #f8f8f8;
}


@media screen and (max-width: 767px) {
  footer {
    margin-bottom: 46px;
  }
}

/**************************/
/***** 頁尾 樣式 End *****/
/**************************/


/**************************/
/***** 頁尾 表單 Start *****/
/**************************/

.footer-form-box form {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(235, 235, 235, 0.6);
  margin: 50px 0;
}

.footer-form-box form input[type="text"],
.footer-form-box form select {
  border: 1px #ddd solid;
  padding: 0 5px;
  border-radius: 6px;
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  color: #555;
  letter-spacing: 0.05em;
  display: block;
  margin: 8px 0;
  width: 100%;
}

.footer-form-box form textarea {
  border: 1px #ddd solid;
  padding: 5px;
  border-radius: 6px;
  min-height: 100px;
  line-height: 26px;
  font-size: 16px;
  color: #555;
  letter-spacing: 0.05em;
  width: 100%;
  margin: 8px 0;
}

.city-selector-set {
  padding: 0;
  margin: 0;
}

.footer-form-box form input[type="button"] {
  border: 0;
  padding: 0 5px;
  border-radius: 6px;
  height: 38px;
  line-height: 38px;
  font-size: 16px;
  color: #555;
  letter-spacing: 0.05em;
  display: block;
  margin: 8px 0;
  width: 100%;
  color: #fff;
}

.footer-form-box form input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.footer-form-check-text {
  margin: 10px 0;
  font-weight: 900;
  color: #111;
  font-size: 14px;
}

.footer-form-box form p {
  font-size: 12px;
  color: #333;
  line-height: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/************************/
/***** 頁尾 表單 End *****/
/************************/

/**************************/
/***** 頁尾 資訊 start *****/
/**************************/

.footer-info {
  padding: 0 20px;
  list-style-type: none;
}

.footer-info li {
  font-size: 16px;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 36px;
}

/************************/
/***** 頁尾 資訊 End *****/
/************************/

/************************/
/***** 頁尾 版權 Start *****/
/************************/

.copyright {
  width: 100%;
  min-height: 50px;
  background-color: #111;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 30px;
  padding: 10px;
  font-size: 12px;
}

/************************/
/***** 頁尾 版權 End *****/
/************************/

.nav-item {
  cursor: pointer;
}

/***********************/
/***** 浮動按鈕 開始 *****/
/***********************/

.floating-button {
  position: fixed;
  bottom: 20px;
  right: 0px;
  z-index: 999;
  max-width: 60px;
}


.floating-button a {
  float: right;
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  background-color: #444;
  color: #eee;
  text-align: center;
  line-height: 40px;
  border-radius: 6px 0 0 6px;
  font-size: 20px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.35);
  transition: width 0.2s;
}

.floating-button a:hover {
  width: 60px;
}

.floating-button a span {
  display: none;
}

.btn-color1 {
  background-color: #498ff8 !important;
}

.btn-color2 {
  background-color: #fc8646 !important;
}

.btn-color3 {
  background-color: #37b837 !important;
}

.btn-color4 {
  background-color: #e5575e !important;
}

.btn-color5 {
  background-color: #4c8de2 !important;
}

.btn-color6 {
  background-color: #2aa448 !important;
}

@media screen and (max-width: 767px) {
  .floating-button {
    bottom: 0px;
    right: 0px;
    max-width: 100%;
    width: 100%;
    margin: 0px;
    padding: 0;
    background-color: #333;
  }

  .floating-button a {
    float: left;
    display: block;
    margin: 0px;
    padding: 0;
    border-radius: 0;
    width: 16.66%;
    height: 46px;
    line-height: 26px;
    box-shadow: 0 0 0;
  }

  .floating-button.link-count-1 a {
    width: 100%;
  }

  .floating-button.link-count-2 a {
    width: 50%;
  }

  .floating-button.link-count-3 a {
    width: 33.33%;
  }

  .floating-button.link-count-4 a {
    width: 25%;
  }

  .floating-button.link-count-5 a {
    width: 20%;
  }

  .floating-button.link-count-6 a {
    width: 16.66%;
  }

  .floating-button.link-count-1 a:hover {
    width: 100%;
  }

  .floating-button.link-count-2 a:hover {
    width: 50%;
  }

  .floating-button.link-count-3 a:hover {
    width: 33.33%;
  }

  .floating-button.link-count-4 a:hover {
    width: 25%;
  }

  .floating-button.link-count-5 a:hover {
    width: 20%;
  }

  .floating-button.link-count-6 a:hover {
    width: 16.66%;
  }

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

  .floating-button a span {

    font-size: 10px;
    display: block;
    line-height: 20px;
  }
}

/***********************/
/***** 浮動按鈕 結束 *****/
/***********************/


/***********************/
/***** 主要標題1 開始 *****/
/***********************/

.main-title-1 {
  text-align: center;
  color: #6aa7cd;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.main-text-1 {
  text-align: left;
  width: 100%;
  max-width: 992px;
  padding: 0 30px;
  margin: 0 auto;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

/***********************/
/***** 主要標題1 結束 *****/
/***********************/

/***********************/
/***** Youtube 1 開始 *****/
/***********************/


.youtube-box-1 {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
}

.youtube-box-1 iframe {
  width: 100%;
  border-radius: 6px;
}

/***********************/
/***** Yotube 1 結束 *****/
/***********************/

/***********************/
/***** 滿版視覺差 開始 *****/
/***********************/
#foreign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 400px;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-shadow: 0 0 6px black;
}

#foreign .bg1 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-image: url(../images/sample.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-animation-name: foreign-bg;
  animation-name: foreign-bg;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  -webkit-animation-delay: calc(var(--sc) * -1s);
  animation-delay: calc(var(--sc) * -1s);
  transform: translateY(0%);
}

#foreign>.container {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 10px;
  color: #fff;
  position: relative;
  z-index: 4;
}

@media screen and (max-width: 850px) {
  #foreign {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  #foreign .bg1 {
    background-position: 8% 0%;
  }

  #foreign>.container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 0 60px 0;
  }

  #foreign>.container>.col {
    width: 100%;
  }
}

@keyframes foreign-bg {
  0% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  100% {
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
  }
}

/***********************/
/***** 滿版視覺差 結束 *****/
/***********************/

/***********************/
/***** iframe 開始 *****/
/***********************/

/* 1 */

.iframe-box iframe {
  width: 100%;
  height: 500px;
}

/* 2 */

.iframe-box-2 iframe {
  width: 100%;
  height: 635px;
}

@media screen and (max-width: 1400px) {
  .iframe-box-2 iframe {
    width: 100%;
    height: 545px;
  }
}

@media screen and (max-width: 1200px) {
  .iframe-box-2 iframe {
    width: 100%;
    height: 455px;
  }
}

@media screen and (max-width: 992px) {
  .iframe-box-2 iframe {
    width: 100%;
    height: 335px;
  }
}

/* 3 */

.iframe-box-3 iframe {
  width: 100%;
  height: 850px;
}

@media screen and (max-width: 1400px) {
  .iframe-box-3 iframe {
    width: 100%;
    height: 730px;
  }
}

@media screen and (max-width: 1200px) {
  .iframe-box-3 iframe {
    width: 100%;
    height: 610px;
  }
}

@media screen and (max-width: 992px) {
  .iframe-box-3 iframe {
    width: 100%;
    height: 450px;
  }
}




.style-height-low iframe {
  width: 100%;
  height: 210px;
}

@media screen and (max-width: 1400px) {
  .style-height-low iframe {
    width: 100%;
    height: 182px;
  }
}

@media screen and (max-width: 1200px) {
  .style-height-low iframe {
    width: 100%;
    height: 152px;
  }
}

@media screen and (max-width: 992px) {
  .style-height-low iframe {
    width: 100%;
    height: 112px;
  }
}

@media screen and (max-width: 768px) {
  .style-height-low iframe {
    width: 100%;
    height: 200px;
  }
}

.style-height-medium iframe {
  width: 100%;
  height: 425px;
}

@media screen and (max-width: 1400px) {
  .style-height-medium iframe {
    width: 100%;
    height: 367px;
  }
}

@media screen and (max-width: 1200px) {
  .style-height-medium iframe {
    width: 100%;
    height: 334px;
  }
}

@media screen and (max-width: 992px) {
  .style-height-medium iframe {
    width: 100%;
    height: 228px;
  }
}

.style-height-high iframe {
  width: 100%;
  height: 640px;
}

@media screen and (max-width: 1400px) {
  .style-height-high iframe {
    width: 100%;
    height: 550px;
  }
}

@media screen and (max-width: 1200px) {
  .style-height-high iframe {
    width: 100%;
    height: 460px;
  }
}

@media screen and (max-width: 992px) {
  .style-height-high iframe {
    width: 100%;
    height: 340px;
  }
}

.style-height-superhigh iframe {
  width: 100%;
  height: 830px;
}

@media screen and (max-width: 1400px) {
  .style-height-superhigh iframe {
    width: 100%;
    height: 715px;
  }
}

@media screen and (max-width: 1200px) {
  .style-height-superhigh iframe {
    width: 100%;
    height: 595px;
  }
}

@media screen and (max-width: 992px) {
  .style-height-superhigh iframe {
    width: 100%;
    height: 440px;
  }
}

.style-height-auto iframe {
  width: 100%;
  height: 560px;
}

@media screen and (max-width: 1400px) {
  .style-height-auto iframe {
    width: 100%;
    height: 520px;
  }
}

@media screen and (max-width: 1200px) {
  .style-height-auto iframe {
    width: 100%;
    height: 520px;
  }
}

@media screen and (max-width: 992px) {
  .style-height-auto iframe {
    width: 100%;
    height: 280px;
  }
}

/***********************/
/***** iframe 結束 *****/
/***********************/

/***********************/
/***** 圖文視窗 1 開始 *****/
/***********************/

.imgtext-1-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.imgtext-1-box .title {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 8px;
  margin-bottom: 10px;
  text-align: center;
}

.imgtext-1-box .sub-title {
  font-size: 24px;
  font-weight: 900;
  border-top: 1px #ccc solid;
  ;
  border-bottom: 1px #ccc solid;
  letter-spacing: 0.05em;
  padding: 8px;
  text-align: center;
  margin-bottom: 10px;
}

.imgtext-1-box p {
  font-size: 20px;
  line-height: 36px;
  color: #555;
  letter-spacing: 0.05em;
  padding: 8px;
  margin-bottom: 0px;
  text-align: left;
}

/***********************/
/***** 圖文視窗 1 結束 *****/
/***********************/

/***********************/
/***** 圖文視窗 2 開始 *****/
/***********************/

.imgtext-2-box {
  position: relative;
  width: 100%;
  height: 100%;
}

.imgtext-2-content {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 100%;
  max-width: 500px;
  height: auto;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .imgtext-2-content {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 1000px;
  }
}

.imgtext-2-content .title {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.imgtext-2-content .sub-title {
  font-size: 24px;
  font-weight: 900;
  border-top: 1px #fff solid;
  ;
  border-bottom: 1px #fff solid;
  letter-spacing: 0.05em;
  padding: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.imgtext-2-content p {
  font-size: 20px;
  line-height: 36px;
  color: #555;
  letter-spacing: 0.05em;
  padding: 8px;
  margin-bottom: 10px;
  text-align: left;
}

/***********************/
/***** 圖文視窗 2 結束 *****/
/***********************/

/***********************/
/***** 圖文視窗 3 開始 *****/
/***********************/

.imgtext-3-box {
  position: relative;
}

.imgtext-3-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 15px;
}

@media screen and (max-width: 767px) {
  .imgtext-3-content {
    position: relative;
  }
}

/***********************/
/***** 圖文視窗 3 結束 *****/
/***********************/

/***********************/
/***** 圖文視窗 4 開始 *****/
/***********************/

.style21-box img {
  display: block;
  width: 100%;
  margin: 0 auto;
  border-radius: 6px;
  margin-bottom: 0px;
}

/***********************/
/***** 圖文視窗 4 結束 *****/
/***********************/

/***********************/
/***** 圖文視窗 5 開始 *****/
/***********************/

.style-21-box {
  /* 上下置中 */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.style-21-box .title {
  font-size: 30px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  font-weight: 900;
}

.style-21-box .content {
  font-size: 22px;
  letter-spacing: 0.05em;
  color: #555;
}

/***********************/
/***** 圖文視窗 5 結束 *****/
/***********************/

/***********************/
/***** 圖文視窗 6 開始 *****/
/***********************/

.horizontal-scrolling {
  width: 100%;
  height: auto;
  overflow-x: auto;
}

.horizontal-scrolling img {
  width: 100%;
  height: auto;
}

.touch-icon {
  width: 165px;
  height: 165px;
  background: url(/backend/assets/images/style_icon/icon1.png);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeInOut 1s infinite;
  display: none;
}

.hs-content {
  position: relative;
}

@keyframes fadeInOut {

  0%,
  100% {
    opacity: 0.75;
  }

  50% {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {

  .touch-icon {
    display: block;
  }

  .horizontal-scrolling {
    width: 100%;
    height: auto;
    overflow-x: auto;
  }

  .horizontal-scrolling img {
    width: auto;
    height: 500px;
  }
}

/***********************/
/***** 圖文視窗 7 結束 *****/
/***********************/

/***********************/
/***** 圖文視窗 7 開始 *****/
/***********************/

.swiper-3 {
  padding-bottom: 40px;
}

.swiper27-box .title {
  font-weight: 900;
  color: #333;
  padding: 5px 0;
  font-size: 20px;
  letter-spacing: 0.05em;
}

.swiper27-box .text-content {
  color: #777;
  letter-spacing: 0.05em;
}

/***********************/
/***** 圖文視窗 7 結束 *****/
/***********************/

/***********************/
/***** 圖文視窗 8 開始 *****/
/***********************/

.swiper-4 {
  padding-bottom: 5px;
}

.swiper-4 .title {
  padding: 20px 0 10px 0;
  text-align: center;
  font-size: 20px;
  color: #555;
  letter-spacing: 0.05em;
}

.swiper-4 p {
  padding-bottom: 10px;
  text-align: center;
  font-size: 20px;
  color: #555;
  letter-spacing: 0.05em;
}

/***********************/
/***** 圖文視窗 8 結束 *****/
/***********************/

/***********************/
/***** 拖拉地圖設定 開始 *****/
/***********************/

.myContainer {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.02);
  border: 0.5px #ccc solid;
  border-radius: 6px;
}

.imageDiv {
  position: absolute;
  top: 0;
  left: 0;
  background-size: 100%;
  width: 100%;
  height: 100%;
  transition: transform 0.25s ease;
  cursor: move;
}

.zoomIn,
.zoomOut,
.reset {
  border: 0;
  padding: 0;
  margin: 0;

  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px #ccc solid;
  border-radius: 50%;
  text-align: center;
}

.zoomIn i,
.zoomOut i,
.reset i {
  display: block;
  color: #888;
  transition: all 0.3s;
  line-height: 32px;
  text-align: center !important;
}

.zoomIn:hover,
.zoomOut:hover,
.reset:hover {
  background-color: rgba(255, 255, 255, 1);
  border: 2px #ccc solid;
  color: #333;
  border: 2px #555 solid;
}

.controller-box {
  padding: 15px 0 0 0;
  text-align: center;
}

/***********************/
/***** 拖拉地圖設定 結束 *****/
/***********************/

/***********************/
/***** 影片設定 開始 *****/
/***********************/

video {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

/***********************/
/***** 影片設定 結束 *****/
/***********************/


/***********************/
/***** 手機mb設定 開始 *****/
/***********************/

@media screen and (max-width: 992px) {
  .pad-mb-5 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .mobile-mb-5 {
    margin-bottom: 20px;
  }
}

/***********************/
/***** 手機mb設定 結束 *****/
/***********************/

/***********************/
/***** 影片設定 開始 *****/
/***********************/

video::-webkit-media-controls {
  display: none !important;
  /* 初始不顯示控制條 */
}

video.show-controls::-webkit-media-controls {
  display: block !important;
  /* 觸碰後才顯示控制條 */
}

/***********************/
/***** 影片設定 結束 *****/
/***********************/

/********************************/
/********** 預約按鈕 開始 **********/
/*********************************/

.online-resever {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0%;
  text-align: center;
  z-index: 10;
}

.online-resever a {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 40px;
  line-height: 36px;
  border: 2px rgba(255, 255, 255, 0.7) solid;
  color: #fff;
  border-radius: 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  overflow: hidden;
}

.online-resever a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, .75) 50%,
      transparent 100%);
  transform: translateX(-120%) skewX(-25deg);
  transition: transform .5s ease-out;
  pointer-events: none;
  opacity: 0.4;
}

.online-resever a:hover::before {
  transform: translateX(120%) skewX(-25deg);
  /* hover 時光線掃到右邊 */
}

@media screen and (max-width: 767px) {

  .online-resever a {
    display: inline-block;
    width: 150px;
    height: 30px;
    line-height: 28px;
    border-radius: 15px;
  }
}

.online-resever.o-r-2 a {
  border-radius: 3px;
}

.online-resever a:hover {
  opacity: 0.8;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

/********************************/
/********** 預約按鈕 結束 **********/
/*********************************/

/**************************************/
/********** 影片Video優化 開始 **********/
/***************************************/

video {
  /* 硬體加速但避免過度使用 */
  transform: translateZ(0);
  will-change: transform;

  /* 避免視頻縮放時的額外計算 */
  object-fit: cover;

  /* 減少重繪 */
  backface-visibility: hidden;
}

/* 縮放時的處理 */
.video-container {
  position: relative;
  overflow: hidden;
}

/**************************************/
/********** 影片Video優化 結束 **********/
/***************************************/