@charset "UTF-8";
body {
  background: #d7e7ff;
  padding-top: 90px;
  min-height: 100vh;
  display: block;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  body {
    padding-top: 55px;
  }
}

main {
  width: 100%;
  flex: 1 0 0%;
  display: flex;
  flex-direction: column;
  flex-basis: auto;
}

/**********************/
/********* 選單 ********/
/**********************/
header {
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
header .navbar {
  box-shadow: 0px 4px 40px rgba(130, 179, 254, 0.2);
}
@media (max-width: 992px) {
  header .menu-tool {
    position: absolute;
    right: 0;
    top: 8px;
  }
}
header .account {
  display: flex;
  align-items: center;
  order: 2;
  margin-left: 30px;
}
@media (max-width: 992px) {
  header .account {
    order: 1;
    margin-left: 0;
    margin-top: 30px;
  }
}
header .account:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../images/icon/account.svg") center center no-repeat;
  background-size: 24px 24px;
  margin-right: 8px;
  display: inline-block;
}
header .account .gold {
  color: #737373;
  display: flex;
  align-items: center;
}
header .account .gold:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../images/icon/gold.png") center center no-repeat;
  background-size: 24px 24px;
  margin-right: 8px;
  display: inline-block;
}
header .logo {
  width: 186px;
  height: 64px;
  background: url("../images/logo.webp") center center no-repeat;
  background-size: 186px 64px;
  display: block;
}
@media (max-width: 992px) {
  header .logo {
    background: url("../images/logo-mob.webp") center center no-repeat;
    background-size: 93px 24px;
    width: 93px;
    height: 28px;
    padding: 2px 0;
    margin-left: 20px;
  }
}
header .navbar-toggler {
  border: 0;
}
header .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(46, 129, 253, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
@media (max-width: 992px) {
  header nav .menu-list {
    margin-top: 10px;
  }
}
header nav .menu-list li {
  padding: 0px;
}
header nav .menu-list li a {
  font-size: 18px;
  font-weight: 700;
  color: #636569;
  display: flex;
  align-items: center;
  letter-spacing: 2.4px;
}
header nav .menu-list li a:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #ffcb2e;
  margin-left: 1em;
}
header nav .menu-list li a:hover {
  color: #111;
}
header nav .menu-list li ul li a {
  font-size: 16px;
  color: #888;
}
header nav .menu-list li ul li a::after {
  display: none;
}
header nav .login {
  font-size: 16px;
  font-weight: 700;
  color: #82b3fe;
  border: 1px solid #82b3fe;
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: 30px;
  padding: 7px 10px;
  text-decoration: none;
  margin-left: 30px;
  justify-content: center;
  width: 140px;
}
@media (max-width: 992px) {
  header nav .login {
    margin-left: 0px;
    margin-right: 15px;
    width: 105px;
    font-size: 14px;
  }
}
header nav .login:hover {
  background: #2e81fd;
  color: #fff;
}
header .dropdown-toggle::after {
  border: none !important;
}
@media (max-width: 992px) {
  header .dropdown-menu {
    border: none !important;
    border-radius: 100px !important;
  }
}
@media (max-width: 992px) {
  header .navbar-nav {
    height: calc(100vh - 55px);
  }
}
@media (max-width: 992px) {
  header .navbar-collapse {
    position: relative;
    padding: 0 25px;
    margin-top: 10px;
    box-shadow: inset 0 20px 20px -20px rgba(130, 179, 254, 0.5);
  }
  header .navbar-collapse .nav-item {
    border-bottom: 1px #d5e6ff solid;
  }
  header .navbar-collapse .nav-item a {
    padding: 20px 0 !important;
    font-size: 14px;
  }
  header .navbar-collapse .nav-item a:after {
    display: none;
  }
}
@media (max-width: 992px) {
  header .container {
    max-width: 100% !important;
    padding: 0;
  }
}

/**************************/
/********* 分頁按鈕 ********/
/**************************/
.custom-pagination .page-link.circle {
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  line-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  font-weight: 500;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  color: #abcdfe;
}
.custom-pagination .page-link.circle:hover {
  color: #589afd;
}

.custom-pagination .page-item.active .page-link.circle {
  background: #589afd;
  color: #fff;
  border-color: #589afd;
}

.custom-pagination .page-link.arrow {
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  color: #abcdfe;
}
.custom-pagination .page-link.arrow:hover {
  color: #589afd;
}

.custom-pagination .page-item.disabled .page-link.arrow {
  color: #adb5bd;
  background: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
}

.custom-pagination .page-link:focus {
  box-shadow: none;
}

.pagination li {
  color: #ccc;
  padding-top: 2px;
}
.pagination li.page-item {
  padding-top: 0;
}
@media (max-width: 576px) {
  .pagination {
    flex-wrap: wrap;
    justify-content: center; /* 讓換行後也保持置中 */
  }
}

/**********************/
/********* 選單 ********/
/**********************/
.modal-alert-style1 {
  max-width: 400px;
  padding: 0 15px;
}
.modal-alert-style1 .modal-content {
  min-height: 220px;
}

.modal-alert-style2 {
  max-width: 800px;
  padding: 0 15px;
}
.modal-alert-style2 .modal-content {
  min-height: 220px;
}

.alert-style-box {
  padding: 28px;
}
.alert-style-box .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: url("../images/close.png") center center no-repeat !important;
  width: 40px;
  height: 40px;
}
.alert-style-box .title {
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  color: #232323;
  margin-bottom: 20px;
}
.alert-style-box img {
  width: 100%;
}
.alert-style-box p {
  margin-top: 15px;
  font-size: 16px;
  color: #232323;
  margin-bottom: 20px;
}
.alert-style-box p.remark {
  line-height: 24px;
  color: #a1a1a1;
  margin-bottom: 0;
}
.alert-style-box .cancel-btn {
  width: 150px;
  height: 40px;
  border-radius: 32px;
  border-width: 2px;
  padding: 0;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  color: #82b3fe;
  border: 2px solid #82b3fe;
  background: #fff;
  float: left;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 540px) {
  .alert-style-box .cancel-btn {
    width: 120px;
  }
}
.alert-style-box .cancel-btn.large-btn {
  width: 358px;
}
@media (max-width: 768px) {
  .alert-style-box .cancel-btn.large-btn {
    width: 100%;
  }
}
.alert-style-box .cancel-btn:hover {
  opacity: 0.7;
}
.alert-style-box .ok-btn {
  width: 150px;
  height: 40px;
  border-radius: 32px;
  border-width: 2px;
  padding: 0;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  border: 2px solid #2e81fd;
  background: #2e81fd;
  float: right;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 540px) {
  .alert-style-box .ok-btn {
    width: 120px;
  }
}
.alert-style-box .ok-btn.large-btn {
  width: 358px;
}
@media (max-width: 768px) {
  .alert-style-box .ok-btn.large-btn {
    width: 100%;
  }
}
.alert-style-box .ok-btn:hover {
  opacity: 0.7;
}
.alert-style-box .confirm-close-btn {
  width: 100%;
  height: 40px;
  border-radius: 32px;
  border-width: 2px;
  line-height: 36px;
  padding: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  border: 2px solid #2e81fd;
  background: #2e81fd;
  transition: all 0.3s ease-in-out;
}
.alert-style-box .confirm-close-btn:hover {
  opacity: 0.7;
}
.alert-style-box .member-qrcord {
  text-align: center;
  width: 100%;
  max-width: 140px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.alert-style-box .active-modal-content {
  width: 100%;
  max-height: 270px;
  margin: 20px 0;
  overflow: auto;
}
@media (max-width: 768px) {
  .alert-style-box .active-modal-content {
    max-height: 350px;
  }
}
.alert-style-box .active-modal-content .reviewlist-table {
  width: 100%;
}
.alert-style-box .active-modal-content .reviewlist-table tr {
  border-bottom: 1px solid #eaf2ff;
}
.alert-style-box .active-modal-content .reviewlist-table tr th {
  font-weight: 700;
  color: #737373;
  font-size: 16px;
  line-height: 28px;
  padding: 15px;
}
.alert-style-box .active-modal-content .reviewlist-table tr td {
  font-weight: 300;
  color: #737373;
  font-size: 16px;
  line-height: 24px;
  padding: 15px;
}

/**********************/
/********* 按鈕 ********/
/**********************/
.activity-link {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 240px;
  height: 64px;
  border-radius: 50px;
  border-width: 2px;
  background-color: #e4efff;
  border: 2px solid #82b3fe;
}
.activity-link a,
.activity-link span {
  position: absolute;
  bottom: 4px;
  left: -3px;
  display: inline-block;
  width: 240px;
  height: 64px;
  border-radius: 50px;
  border-width: 2px;
  background-color: #fff;
  font-family: Noto Sans TC;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  color: #82b3fe !important;
  border: 2px solid #82b3fe;
  z-index: 112;
  transition: all 0.3s ease-in-out;
}
.activity-link a:hover,
.activity-link span:hover {
  bottom: 9px;
  color: #82b3fe !important;
}
.activity-link a:active,
.activity-link span:active {
  bottom: 0px;
  background-color: #82b3fe;
  color: #fff !important;
}
.activity-link.al-more {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (max-width: 992px) {
  .activity-link.al-signup {
    height: 50px;
    line-height: 44px;
  }
  .activity-link.al-signup a,
  .activity-link.al-signup span {
    height: 50px;
    line-height: 44px;
    color: #82b3fe;
    cursor: pointer;
  }
  .activity-link.al-signup a:hover,
  .activity-link.al-signup span:hover {
    color: #82b3fe !important;
  }
  .activity-link.al-signup a:active,
  .activity-link.al-signup span:active {
    color: #fff !important;
  }
}
@media (max-width: 992px) {
  .activity-link.al-more-signup {
    position: absolute;
    bottom: -15px !important;
    left: 50%;
  }
}

.activity-link-submit {
  border: none;
  background: none;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

/**************************/
/********* 廣告區塊 ********/
/**************************/
.event-recommendation {
  margin: 0 auto;
  margin-bottom: 80px;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.event-recommendation.ab-xxl {
  display: none;
}
@media screen and (min-width: 998px) {
  .event-recommendation.ab-xxl {
    display: block;
  }
}
.event-recommendation.ab-lg {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 997px) {
  .event-recommendation.ab-lg {
    display: block;
  }
}
.event-recommendation.ab-sm {
  display: none;
}
@media screen and (max-width: 767px) {
  .event-recommendation.ab-sm {
    display: block;
  }
}

/**************************/
/********* 會員選單 ********/
/**************************/
.member-menu {
  width: 280px;
  position: fixed;
  right: -100%;
  top: 60px;
  z-index: 9;
  height: calc(90vh - 60px);
  overflow: auto;
  background: #fff;
  box-shadow: 0 0px 12px rgba(46, 129, 253, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  display: none;
}
@media (max-width: 992px) {
  .member-menu {
    display: block;
  }
}
.member-menu.active {
  right: 6px;
}
.member-menu .aside-box ul {
  list-style: none;
  margin: 0;
  padding: 0px 25px 0 25px;
}
.member-menu .aside-box ul li.active, .member-menu .aside-box ul li:hover {
  position: relative;
}
.member-menu .aside-box ul li.active:before, .member-menu .aside-box ul li:hover:before {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  left: -35px;
  top: 0;
  background: #2e81fd;
  display: block;
}
.member-menu .aside-box ul li.active a, .member-menu .aside-box ul li:hover a {
  font-weight: bold;
}
.member-menu .aside-box ul li a {
  color: #616161;
  text-decoration: none;
  position: relative;
  padding: 17px 30px 17px 50px;
  display: block;
}
.member-menu .aside-box ul li a:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 10px;
}
.member-menu .aside-box ul li a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 18px;
  background: url("../images/icon/account-arrow.svg") center center no-repeat;
  background-size: 24px 24px;
}
.member-menu .aside-box ul li a.icon1:before {
  background: url("../images/icon/account1.svg") center center no-repeat;
  background-size: 40px 40px;
}
.member-menu .aside-box ul li a.icon2:before {
  background: url("../images/icon/account2.svg") center center no-repeat;
  background-size: 40px 40px;
}
.member-menu .aside-box ul li a.icon3:before {
  background: url("../images/icon/account3.svg") center center no-repeat;
  background-size: 40px 40px;
}
.member-menu .aside-box ul li a.icon4:before {
  background: url("../images/icon/account4.svg") center center no-repeat;
  background-size: 40px 40px;
}
.member-menu .aside-box ul li a.icon5:before {
  background: url("../images/icon/account5.svg") center center no-repeat;
  background-size: 40px 40px;
}
.member-menu .aside-box ul li a.icon6:before {
  background: url("../images/icon/account6.svg") center center no-repeat;
  background-size: 40px 40px;
}
.member-menu .aside-box ul li a.icon7:before {
  background: url("../images/icon/account7.svg") center center no-repeat;
  background-size: 40px 40px;
}
.member-menu .aside-box ul li a.icon8:before {
  background: url("../images/icon/account8.svg") center center no-repeat;
  background-size: 40px 40px;
}
.member-menu .aside-box .logout {
  display: block;
  border-top: 1px #efefef solid;
  color: #616161;
  padding: 25px 30px 25px 75px;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}
.member-menu .aside-box .logout:before {
  position: absolute;
  background: url("../images/icon/logout.png") center center no-repeat;
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  left: 25px;
  top: 15px;
  background-size: 40px 40px;
}
.member-menu .aside-box .logout::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 25px;
  top: 25px;
  background: url("../images/icon/account-arrow.svg") center center no-repeat;
  background-size: 24px 24px;
}
.member-menu .aside-box .user-info {
  padding: 25px;
  display: block;
  width: 100%;
  border-bottom: 1px #efefef solid;
}
.member-menu .aside-box .user-info .info {
  display: flex;
  position: relative;
  text-decoration: none;
  justify-content: space-between;
  align-items: center;
}
.member-menu .aside-box .user-info .info::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0px;
  top: 25px;
  background: url("../images/icon/account-arrow.svg") center center no-repeat;
  background-size: 24px 24px;
}
.member-menu .aside-box .user-info .info figure {
  width: 52px;
  height: 52px;
  border-radius: 100%;
  border: 1px #82b3fe solid;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.member-menu .aside-box .user-info .info figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.member-menu .aside-box .user-info .info .name {
  color: #333;
  width: calc(100% - 60px);
}
.member-menu .aside-box .user-info .info .name p {
  font-size: 16px;
  margin-bottom: 5px;
}
.member-menu .aside-box .user-info .info .name .level {
  display: flex;
  align-items: center;
}
.member-menu .aside-box .user-info .info .name .level span {
  font-size: 14px;
}
.member-menu .aside-box .user-info .info .name .level.lv1::before {
  content: "";
  display: inline-block;
  background: url("../images/icon/lv1.png");
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.member-menu .aside-box .user-info .gold-box {
  padding: 8;
  background: #eaf2ff;
  border-radius: 20px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  margin-top: 17px;
}
.member-menu .aside-box .user-info .gold-box:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../images/icon/gold.png") center center no-repeat;
  background-size: 24px 24px;
  margin-right: 8px;
}
.member-menu .aside-box .user-info .gold-box b {
  font-size: 16px;
  color: #333333;
  font-weight: 600;
}

.member-btn {
  width: 24px;
  height: 24px;
  background: url("../images/icon/header-member.png");
  background-size: 24px 24px;
  padding: 0;
  border: 0;
  display: none;
}
@media (max-width: 992px) {
  .member-btn {
    display: block;
  }
}/*# sourceMappingURL=layout.css.map */