﻿@charset "UTF-8";
/* banner 開始 */
.-banner-wrap {
  position: relative;
}

.-banner-wrap > img {
    display: block;
    margin: auto;
}

/* banner 結束 */
/* banner 內頁banner圖 開始 */
.banner {
  height: 300px;
  background-image: url(../images/banner.png);
  background-size: cover;
  background-position: top center;
}




@media (max-width: 576px) {
    .banner {
    height: 250px;
  }
}

/* banner 內頁banner圖 結束 */
/* banner 首頁banner輪播圖 開始 */
.banner-swiper-frame {
  position: relative;
}
@media (min-width: 577px) {
  .banner-swiper-frame {
    margin-top: 20px;
  }
}
@media (min-width: 993px) {
  .banner-swiper-frame {
    margin-top: 30px;
  }
}
.banner-swiper-frame .swiper-slide {
  width: 100%;
  margin: 0;
  opacity: 0.5;
  transition: opacity 0.3s;
  overflow: hidden;
}
.banner-swiper-frame .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.banner-swiper-frame .swiper-slide img {
  max-width: none;
  width: 100%;
}
@media (min-width: 577px) {
  .banner-swiper-frame .swiper-slide {
    width: 90%;
    margin: 0 1%;
    border-radius: 35px;
  }
}
@media (min-width: 993px) {
  .banner-swiper-frame .swiper-slide {
    width: 100%;
    max-width: 1280px;
    margin: 0 15px;
  }
}
.banner-swiper-frame .navigator-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  z-index: 10;
  justify-content: space-between;
  pointer-events: none;
}
@media (min-width: 577px) {
  .banner-swiper-frame .navigator-wrap {
    width: 90%;
  }
}
@media (min-width: 993px) {
  .banner-swiper-frame .navigator-wrap {
    max-width: 100%;
    width: 1280px;
  }
}
.banner-swiper-frame .navigator-wrap .navigator-btn {
  width: 44px;
  pointer-events: all;
  cursor: pointer;
}
.banner-swiper-frame .navigator-wrap .prev {
  left: 0;
}
.banner-swiper-frame .navigator-wrap .next {
  right: 0;
}

/* banner 首頁banner輪播圖 結束 */
/* 主題按鈕 開始*/
.-theme-btn {
  padding: 10px 24px;
  border-radius: 6px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
  border: 1px solid;
  transition: all 0.3s !important;
  cursor: pointer;
}
.-theme-btn:hover {
  background-color: #fff;
  transform: scale(1.01);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
}
.-theme-btn.-blue {
  border-color: #1a3b56;
  background-color: transparent;
}
.-theme-btn.-blue p {
  color: #1a3b56;
}
.-theme-btn.-blue:hover {
  border-color: #1a3b56;
  background-color: #1a3b56;
}
.-theme-btn.-blue:hover p {
  color: #fff;
}
.-theme-btn.-org {
  background-color: #e0492d;
  border-color: #e0492d;
}
.-theme-btn.-org p {
  color: #fff;
}
.-theme-btn.-org:hover {
  background-color: transparent;
}
.-theme-btn.-org:hover p {
  color: #e0492d;
}

/* 主題按鈕 結束*/
/* 彈窗 開始 */
.-popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background-color: rgba(7, 3, 4, 0.3);
  z-index: 101;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  display: none;
  overflow: auto;
  padding: 50px 0;
}
.-popup-wrap .popup {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  background-color: #fff;
  border-radius: 14px;
  padding: 24px;
  display: none;
}
.-popup-wrap .popup .head {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f3f3f3;
}
.-popup-wrap .popup .head img {
  cursor: pointer;
}
.-popup-wrap .popup .body {
  margin-top: 16px;
  font-size: 14px;
}
.-popup-wrap .popup .body .link {
  border-radius: 6px;
  border: 1px #dfdfdf;
  background-color: #d6d6d6;
  padding: 16px;
  margin-top: 12px;
  cursor: pointer;
}
.-popup-wrap .popup .bottom {
  --flex-gap: 10px;
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: var(--flex-gap);
}
.-popup-wrap .popup .bottom .-theme-btn {
  height: 48px;
  display: flex;
  margin-top: 0;
  align-items: center;
  justify-content: center;
  width: calc(50% - var(--flex-gap) / 2);
}

/* 彈窗 結束 */
.-popup-wrap .share-popup {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* 照片彈窗 開始 */
.-popup-wrap .photo-popup {
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  max-width: 1280px;
  min-width: 500px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 576px) {
  .-popup-wrap .photo-popup {
    width: 90%;
    min-width: auto;
  }
}
@media (max-width: 480px) {
  .-popup-wrap .photo-popup .head {
    padding-bottom: 16px;
  }
}

/* 照片彈窗 結束 */
/* 分頁 開始 */
.-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.-pagination-wrap .page-num-wrap {
  display: flex;
}
.-pagination-wrap .pagination {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .-pagination-wrap .pagination {
    width: 35px;
    height: 35px;
  }
}
.-pagination-wrap .pagination.dot {
  cursor: auto;
}
.-pagination-wrap .pagination:hover:not(.dot) {
  border: 1px solid #e7e7e7;
}
.-pagination-wrap .pagination.-active {
  font-weight: bold;
  color: #e0492d;
}
.-pagination-wrap .pagination.-disabled {
  visibility: hidden;
}

/* 分頁 結束 *//*# sourceMappingURL=components.css.map */