#sec-notice {
  padding-top: 96px;
  padding-bottom: 120px;
}

#sec-notice .sec-container {
  width: 1080px;
}

@media (min-width: 769px) and (max-width: 1150px) {
  #sec-notice .sec-container {
    width: 90%;
  }
}

@media (max-width: 768px) {
  #sec-notice .sec-container {
    width: 90%;
  }
}

#sec-notice .sec-tit {
  display: flex;
  margin-bottom: 16px;
}

#sec-notice .sec-tit p {
  font-size: 14px;
  margin-left: 5px;
}

#sec-notice ul {
  padding-left: 1.3em;
}

#sec-notice ul li {
  list-style: decimal;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 1em;
  text-align: justify;
}

#sec-notice .toggle-wrap {
  position: relative;
}

@media (max-width: 768px) {
  #sec-notice .toggle-wrap {
    height: 300px;
    overflow: hidden;
  }

  #sec-notice .toggle-wrap.-active {
    height: auto;
  }
}

#sec-notice .toggle-btn {
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(100%);
  display: none;
  left: 0;
}

@media (max-width: 768px) {
  #sec-notice .toggle-btn {
    display: block;
  }
}

#sec-notice .toggle-btn .-btn {
  position: relative;
  width: 36px;
  height: 36px;
  background-color: #C0C0C0;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

#sec-notice .toggle-btn .-btn span {
  display: block;
  width: 50%;
  height: 3px;
  background-color: #fff;
  border-radius: 100px;
}

#sec-notice .toggle-btn .-btn span:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#sec-notice .toggle-btn .-btn span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

#sec-notice .toggle-btn:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
  background-color: #C0C0C0;
}

#sec-notice .toggle-btn.-active .-btn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(0deg);
}

#sec-notice .twm-content {
  margin-top: 0;
}

.custom_full_table thead td {
  font-weight: normal;
}

/**/

.eventbg {
  background-image: url('../images/kv.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: #000;
  padding-bottom: 8rem;
}

.kv-box {
    height: 80vh;
  }

.exhibition-ttl span {
  text-indent: -9999px;
}

.exhibition-ttl {
  width: 100%;
  height: 80px;
  background-image: url('../images/ttl-bg.png?v2');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  text-align: center;
  line-height: 80px;
  margin: 0 auto;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.exhibition-ttl img {
  width: auto;
  height: 80px;
}

/* 容器與通用設定 */
.exhibition-page {
  background-color: #000;
  color: #fff;
  font-family: sans-serif;
}

.note-text {
  font-size: 11px;
}

/* 卡片基礎樣式：加入橘色暈光球 */
.exhibition-page .intro-card {
  background-color: #1a1a1a;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;

  /* 使用放射狀漸層刻畫暈光球 */
  /* 漸層中心點設在右上角 (at 85% 20%)，從橘色漸變到透明 */
  background-image: radial-gradient(circle at 25% 20%,
      rgba(144, 88, 21, 0.3) 0%,
      rgba(255, 143, 7, 0.05) 30%,
      transparent 50%);
}

/* 當滑鼠移入卡片時的效果 */
.exhibition-page .hover-card:hover {
  border-color: #ff8a00;
  /* Hover 時讓暈光球變亮、範圍擴大 */
  background-image: radial-gradient(circle at 25% 20%,
      rgba(144, 88, 21, 0.5) 0%,
      rgba(255, 143, 7, 0.1) 40%,
      transparent 50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 確保內容在漸層之上 */
.exhibition-page .intro-card>* {
  position: relative;
  z-index: 1;
}

/* Hover 橘邊效果 */
.exhibition-page .hover-card:hover {
  border-color: #ff8f07;
  cursor: pointer;
}

/* 右下角產品介紹 Tag */
.exhibition-page .product-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #ff8f07, #e52d27);
  color: white;
  padding: 4px 12px;
  font-size: 12px;
  border-top-left-radius: 10px;
  display: none;
  /* 平時隱藏 */
}

.exhibition-page .hover-card:hover .product-tag {
  display: block;
}

/* 文字顏色 */
.exhibition-page .text-yellow {
  color: #ffb90d;
}

.exhibition-page .title-orange {
  color: #ff8f07;
  font-weight: bold;
  font-size: 1.2rem;
}

/* 區塊堆疊 RWD */
@media (max-width: 991px) {
  .exhibition-page .col-lg-4 {
    margin-bottom: 1rem;
  }
}

/* 文字強調色 */
.exhibition-page .text-yellow {
  color: #ffb90d;
}

.exhibition-page .title-orange {
  color: #ffffff;
  /* 改為純白字 */
  font-style: italic;
  /* 設定為斜體 */
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 1px;
  /* 稍微增加字距，讓暈光更清晰 */

  /* 疊加多層橘色 text-shadow 以產生強烈暈光感 */
  text-shadow:
    0 0 4px #ff8f07,
    /* 第一層：核心發光 */
    0 0 10px #ff8f07,
    /* 第二層：中度擴散 */
    0 0 15px rgba(255, 138, 0, 0.8),
    /* 第三層：柔和外暈 */
    0 0 25px rgba(255, 138, 0, 0.5);
  /* 第四層：遠處氛圍光 */

  transition: all 0.3s ease;
}

/* 當滑鼠移入卡片時，標題暈光增強（模擬導光感） */
.exhibition-page .hover-card:hover .title-orange {
  color: #ffffff;
  text-shadow:
    0 0 6px #ff8f07,
    0 0 15px #ff8f07,
    0 0 30px #ff8f07,
    0 0 45px rgba(255, 138, 0, 0.7);
}

/* 展區卡片設定 */
.exhibition-page .info-card {
  background-color: #1a1a1a;
  border-radius: 20px;
  color: #fff;
}

/* 地圖外框 */
.exhibition-page .map-box {
  border: 2px solid #555555;
  background-color: #222222;
}

/* --- 雙連結子項目樣式 --- */
.exhibition-page .sub-link-item {
  transition: color 0.2s ease;
  /* 讓顏色切換平滑 */
}

/* 設定子連結內的文字與圖片 (避免繼承父層 a 標籤可能的底線) */
.exhibition-page .sub-link-item p {
  color: #ffffff;
  /* 預設白字 */
  transition: color 0.2s ease;
}

/* --- Hover 效果：字變成橘色 #ff8f07 --- */
.exhibition-page .sub-link-item:hover p {
  color: #ff8f07 !important;
  /* 您指定的橘色 */
}

/* 如果圖片也需要一點互動感 (選配) */
.exhibition-page .sub-link-item:hover img {
  filter: brightness(1.1);
}

/* 下方區塊標題背景化 */
.exhibition-page .title-sub {
  height: 59px;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999px;
}

.exhibition-page .title-tp {
  background-image: url('../images/ttl-tp.png?v3');
}

.exhibition-page .title-kh {
  background-image: url('../images/ttl-ks.png?v3');
}

.e-moveing {
  background-image: url('../images/e-moving.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 10% 50%;
  min-height: 350px;
}

/* 響應式：手機版間距調整 */
@media (max-width: 767px) {
  .kv-box {
    height: auto;
  }
  .exhibition-page .main-feature .col-md-5 {
    margin-bottom: 1.5rem;
  }
  .exhibition-ttl {
    margin: 1rem 0;
  }
  .exhibition-ttl {
    height: 80px;
    background-image: url('../images/m-ttl-bg.png?v2');
  }
  .e-moveing {
    background-image: url('../images/e-moving.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    min-height: 480px;
  }
}

