@charset "UTF-8";
/* -------------- reset --------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body {
  margin: 0;
  padding: 0;
}

/* HTML5 display-role reset for older browsers */
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: block;
}
.clearfix:after {
  clear: both;
}

.img-limit.out-link img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

/* 修正粗體 ASCII (碧筵綰) */
@font-face {
  font-family: "fix Microsoft JhengHei";
  font-style: normal;
  font-weight: bold;
  unicode-range: U+7db0, U+78A7, U+7B75;
  src: url("../webfonts/msgothic.otf");
}
/* -------------- layout --------------*/
* {
  box-sizing: border-box;
  outline: none;
  word-break: break-word;
}

html,
body {
  max-width: 1920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

body {
  font-family:
    "Open Sans", Arial, "LiHei Pro", "fix Microsoft JhengHei",
    "Microsoft JhengHei", "新細明體", sans-serif;
}

.hide {
  display: none !important;
}

a {
  text-decoration: none;
  transition: all 0.4s ease;
}

button {
  transition: all 0.4s ease;
}

.unreset {
  line-height: initial;
  overflow-x: auto;
}
.unreset:before,
.unreset:after {
  content: "";
  display: block;
}
.unreset:after {
  clear: both;
}
.unreset a {
  text-decoration: underline;
}
.unreset img {
  max-width: 100% !important;
  height: auto !important;
}
.unreset .oembed-provider-youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.unreset .oembed-provider-youtube iframe,
.unreset .oembed-provider-youtube object,
.unreset .oembed-provider-youtube embed {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/* 編輯器嵌入影片的 RWD。
   上面的 .oembed-provider-youtube 是舊 CKEditor oembed 外掛產生的 wrapper，
   換成 TinyMCE 後 media 外掛插入的是「沒有 wrapper 的裸 iframe」
   （<iframe width="560" height="314" src="https://www.youtube.com/embed/xxx">），
   固定 560px 在手機上會爆版，所以這裡直接讓內容區的影片 iframe 自適應。
   CSS 的 width/height 優先權高於 HTML 的 width/height 屬性，不必再去清那些屬性。
   只鎖定影片網域，避免動到管理者貼進內容區的 Google Map 之類的 iframe。 */
/* 保險絲：內容區內「任何」iframe 都不准超出容器寬度。
   管理者日後嵌入沒被下面規則列舉到的東西（Google 表單、FB 貼文、音樂播放器…）時，
   至少不會把版面撐破。這裡只限制寬度、不指定比例，所以不會壓縮到有固定高度需求的嵌入。 */
.unreset iframe {
  max-width: 100%;
}
/* 這裡刻意用 max-width 而不是 width:100%。
   TinyMCE 的 media 外掛是把尺寸寫成「HTML 屬性」（<iframe width="560" height="314">），
   屬性的優先權是 0，若這裡寫 width:100% 就會蓋掉它，管理者在對話框調的寬度會完全失效。
   改成 max-width 之後：寬度聽管理者的，CSS 只負責「不準超出容器」與「維持 16:9」。
   height:auto + aspect-ratio 讓高度自動算，所以螢幕變窄而寬度被 max-width 收縮時
   不會出現上下黑邊，也不必理會對話框裡填的 height。 */
.unreset iframe[src*="youtube.com"],
.unreset iframe[src*="youtube-nocookie.com"],
.unreset iframe[src*="youtu.be"],
.unreset iframe[src*="vimeo.com"] {
  display: block;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
}
/* 想讓某支影片滿版，在對話框把寬度填大（例如 1200）即可，
   或改用原始碼模式加上 class="video-full"。 */
.unreset iframe.video-full {
  width: 100%;
}
/* Google 地圖。Google 給的嵌入碼預設是 600x450（4:3），
   比照影片改成滿版自適應，比例沿用 4:3 才不會把地圖壓得太扁。
   注意這只作用在內容區（.unreset）裡；聯絡我們頁面的地圖是獨立的
   .page-contact .map iframe，不受影響。 */
.unreset iframe[src*="google.com/maps"],
.unreset iframe[src*="maps.google."] {
  display: block;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 0;
}
.unreset p {
  color: #281d19;
  font-size: 1rem;
  line-height: 1.5;
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-left: 40px;
  position: relative;
  gap: 10px;
}
.sec-head:before {
  position: absolute;
  top: -18px;
  left: 5px;
  width: 50px;
  height: 50px;
  background: url(../images/book_icon.svg) no-repeat;
  background-size: contain;
  content: "";
}
.sec-head > * {
  position: relative;
}
.sec-head p {
  margin: 0;
}
.sec-head .title {
  color: #281d19;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}
.sec-head .sub {
  color: #d95e25;
  font-size: 1.875rem;
  font-family:
    "Raleway", "fix Microsoft JhengHei", "Microsoft JhengHei", "新細明體",
    sans-serif;
  text-transform: uppercase;
  line-height: 1;
}

.more-link {
  align-items: center;
  display: inline-flex;
  gap: 20px;
}
.more-link:hover .icon {
  background: #d95e25;
}
.more-link span {
  color: #281d19;
  font-size: 1rem;
  font-family:
    "Raleway", "fix Microsoft JhengHei", "Microsoft JhengHei", "新細明體",
    sans-serif;
  text-transform: uppercase;
}
.more-link .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #e93c00;
}
.more-link .icon i {
  color: #fff;
  font-size: 0.875rem;
}

.social-link {
  border: 1px solid #e2e2e2;
  box-shadow: 0 0 0px #fde7c6;
  background: #fff;
  padding: 10px;
  margin: 7px 10px;
  transition: all 0.4s ease;
}
.social-link:hover {
  box-shadow: -7px 7px 0px #fde7c6;
}

.img-limit {
  display: block;
  position: relative;
}
.img-limit.out-link {
  width: 100%;
  height: 0;
  padding-bottom: 40%;
}
.page-banner {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.page-banner img {
  display: block;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-top: 70px;
  padding-bottom: 20px;
  margin: 0;
  list-style: none;
}
.breadcrumb li:not(:last-child):after {
  content: "/";
  font-size: 0.9375rem;
  color: #aaa;
  margin: 0 5px;
}
.breadcrumb a {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.2;
}
.breadcrumb a:hover {
  color: #d95e25;
}

.page-frame {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 80px;
}
.page-frame.wide {
  display: block;
}
.page-frame.wide .page-frame-main {
  padding-left: 0;
  margin-top: 0;
  width: 100%;
}

aside {
  width: 300px;
}
aside .aside-head {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-left: 20px;
  position: relative;
  gap: 10px;
  margin-bottom: 20px;
}
aside .aside-head:before {
  position: absolute;
  top: -16px;
  left: -7px;
  width: 39px;
  height: 38px;
  background: url(../images/book_icon.svg) no-repeat;
  background-size: contain;
  content: "";
}
aside .aside-head > * {
  position: relative;
}
aside .aside-head p {
  margin: 0;
}
aside .aside-head .title {
  color: #281d19;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
}
aside .aside-head .sub {
  color: #d95e25;
  font-size: 1.0625rem;
  font-family:
    "Raleway", "fix Microsoft JhengHei", "Microsoft JhengHei", "新細明體",
    sans-serif;
  text-transform: uppercase;
  line-height: 1;
}
aside .toggle-page-menu {
  border: 1px solid #eee;
  background: #f9f9f9;
  color: #281d19;
  padding: 13px 20px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  width: 100%;
  display: none;
}
aside .toggle-page-menu:hover {
  border-color: #d95e25;
  color: #d95e25;
}
aside .toggle-page-menu i {
  margin-right: 7px;
}
aside .aside-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
aside .aside-menu > li {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}
aside .aside-menu > li.active > a {
  background: #3568b3;
  color: #fff !important;
}
aside .aside-menu > li > a {
  border-radius: 5px;
  color: #281d19;
  display: block;
  font-size: 1.1875rem;
  line-height: 1.3;
  padding: 15px 20px;
}
aside .aside-menu > li > a:hover {
  color: #e93c00;
}
aside .sub-menu {
  list-style: none;
  padding-left: 20px;
  margin: 10px 0;
}
aside .sub-menu li {
  margin: 5px 0;
  padding-left: 15px;
  position: relative;
}
aside .sub-menu li:before {
  position: absolute;
  top: 3px;
  left: 0;
  content: "\f105";
  color: #281d19;
  font-size: 0.9375rem;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
}
aside .sub-menu li.active a {
  color: #d95e25;
}
aside .sub-menu a {
  color: #281d19;
  font-size: 1rem;
  line-height: 1.2;
}
aside .sub-menu a:hover {
  color: #e93c00;
}
aside .aside-dec.is-cover {
  display: block;
  margin-top: 20px;
}
aside .aside-dec img {
  display: block;
  width: 100%;
  max-width: 250px;
  mix-blend-mode: color;
  filter: brightness(1.3);
  opacity: 0.9;
  margin-top: 52px;
}

.page-frame-main {
  padding-left: 80px;
  width: calc(100% - 300px);
}
.page-frame-main .main-head {
  border-bottom: 1px solid #e2e2e2;
  padding-left: 15px;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 40px;
}
.page-frame-main .main-head:before {
  position: absolute;
  top: 5%;
  left: 0;
  width: 5px;
  height: 25px;
  background: #d95e25;
  border-radius: 3px;
  content: "";
}
.page-frame-main .main-head .title {
  color: #281d19;
  font-size: 1.6875rem;
  line-height: 1.2;
  margin: 0;
}

.page-frame-main .main-head .title span {
  font-size: 1rem /* 16/16 */;
  display: inline-block;
}
.page-frame-main .main-head .title span a {
  display: inline-block;
  color: #e93c00;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.share-sns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
}
.share-sns p {
  margin: 0;
}
.share-sns .title {
  color: #555;
  font-size: 1.0625rem;
}
.share-sns .title i {
  padding-right: 3px;
}
.share-sns .a2a_kit {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.share-sns .a2a_kit i {
  color: #555;
  font-size: 1.125rem;
  line-height: 1;
}
.share-sns .a2a_kit .fa-facebook-f:hover {
  color: #1877f2;
}
.share-sns .a2a_kit .fa-line:hover {
  color: #00b900;
}
.share-sns .a2a_kit .fa-envelope:hover {
  color: #e93c00;
}

.term.grid td {
  color: #281d19;
  line-height: 1.5;
  vertical-align: baseline;
}

.table-grid table {
  border-collapse: collapse;
  width: 100%;
}
.table-grid thead td {
  background: #bad2ee;
  text-align: center;
  font-weight: bold;
}
.table-grid td {
  border: 1px solid #ddd;
  background: #fff;
  color: #281d19;
  font-size: 1rem;
  line-height: 1.4;
  padding: 18px;
}

.page-info-list {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.page-info-list.in-list {
  border-top: 1px solid #e2e2e2;
  padding-top: 13px;
  margin-top: 13px;
}
.page-info-list .info {
  color: #555;
  display: flex;
  font-size: 0.875rem;
  line-height: 1.2;
  position: relative;
  margin: 3px 0 !important;
}
.page-info-list .info:not(:last-child):after {
  content: "/";
  color: #555;
  padding: 0 10px;
}
.page-info-list .info .download-link {
  margin-right: 8px;
}
.page-info-list .info .title {
  flex-shrink: 0;
}
.page-info-list .date-info {
  padding-left: 20px;
  position: relative;
}
.page-info-list .date-info:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f017";
  color: #999;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 0.8125rem;
}
.page-info-list .info.booked-info {
  color: #e93c00;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
}
.page-info-list .date-info.booked-info:before {
  color: #e93c00;
}
.page-info-list .catregory-info {
  padding-left: 20px;
  position: relative;
}
.page-info-list .catregory-info:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f07c";
  color: #999;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 0.8125rem;
}
.page-info-list .people-info {
  padding-left: 20px;
  position: relative;
}
.page-info-list .people-info:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f2bd";
  color: #999;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 0.8125rem;
}
.page-info-list .people-info sup {
  display: inline-block;
  margin-top: -5px;
}
.page-info-list .download-link {
  position: relative;
  padding-left: 20px;
}
.page-info-list .download-link:hover span {
  color: #e93c00;
}
.page-info-list .download-link:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f0ed";
  color: #d95e25;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 0.8125rem;
}
.page-info-list .download-link span {
  color: #2365af;
  font-size: 0.875rem;
  display: inline-block;
  text-decoration: underline;
}

.page-detail-head {
  /* align-items: flex-start;
  display: grid;
  grid-template-columns: auto 130px;
  gap: 20px; */
  margin-bottom: 40px;
}
.page-detail-head.full-wide {
  display: block;
}
.page-detail-head .detail-title {
  color: #281d19;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 15px;
}

/* -------------- layout RWD --------------*/
@media (max-width: 1480px) {
  aside {
    width: 240px;
  }
  aside .aside-head {
    margin-bottom: 15px;
  }
  aside .aside-head .title {
    font-size: 1.625rem;
  }
  aside .aside-head .sub {
    font-size: 0.9375rem;
  }
  aside .aside-menu > li > a {
    font-size: 1.0625rem;
    padding: 13px 20px;
  }
  .page-frame-main {
    padding-left: 40px;
    width: calc(100% - 240px);
  }
}
@media (max-width: 1280px) {
  .breadcrumb {
    padding-top: 50px;
  }
  .table-grid td {
    padding: 13px;
  }
}
@media (max-width: 1200px) {
  .sec-head {
    padding-left: 20px;
  }
  .sec-head:before {
    top: -18px;
    left: -5px;
    width: 41px;
  }
  .sec-head .title {
    font-size: 2rem;
  }
  .sec-head .sub {
    font-size: 1.5rem;
  }
  aside {
    width: 100%;
  }
  aside .toggle-page-menu {
    display: block;
  }
  aside .aside-menu {
    display: none;
  }
  aside .aside-dec {
    display: none;
  }
  aside .aside-dec.is-cover {
    max-width: 260px;
  }
  .page-frame-main {
    margin-top: 30px;
    padding-left: 0;
    width: 100%;
  }
  .page-frame-main .main-head .title {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .sec-head {
    gap: 5px;
  }
  .sec-head .title {
    font-size: 1.75rem;
  }
  .sec-head .sub {
    font-size: 1.125rem;
  }
  .rwd-table thead {
    display: none;
  }
  .rwd-table tr {
    border-bottom: 1px solid #e2e2e2;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .rwd-table td {
    border: none;
    display: block;
    padding: 5px 0 5px 100px;
    position: relative;
    margin-bottom: 5px;
  }
  .rwd-table td:before {
    position: absolute;
    top: 0;
    left: 0;
    content: attr(data-tableCell);
    background: #ffe9d2;
    display: inline-block;
    padding: 5px;
    text-align: center;
    width: 80px;
  }
}
@media (max-width: 640px) {
  .breadcrumb {
    justify-content: flex-start;
    padding-top: 20px;
  }
  .breadcrumb a {
    font-size: 0.875rem;
  }
  .page-frame-main .main-head {
    margin-bottom: 30px;
  }
  aside .aside-menu > li > a {
    padding: 7px 13px;
  }
  .page-frame {
    padding-top: 10px;
    padding-bottom: 50px;
  }
  .page-detail-head {
    margin-bottom: 20px;
  }
}
/* -------------- container --------------*/
.frame {
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-frame iframe,
.video-frame object,
.video-frame embed {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* -------------- container RWD --------------*/
@media (max-width: 768px) {
  .frame {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* -------------- form --------------*/
button,
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
}

input[type="reset"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select,
input[type="date"],
input[type="time"],
input[type="number"],
input[type="password"],
input[type="url"],
button {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-family:
    "Open Sans", Arial, "LiHei Pro", "fix Microsoft JhengHei",
    "Microsoft JhengHei", "新細明體", sans-serif;
  box-shadow: none;
  border: none;
  outline: none;
}

select::-ms-expand {
  display: none;
}

.select-style {
  border: 1px solid #e2e2e2;
  background: #fff;
  position: relative;
}
.select-style:before {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "\f0dd";
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  color: #281d19;
  transform: translateY(-80%);
}
.select-style select {
  background: transparent;
  color: #281d19;
  font-size: 1rem;
  line-height: 1.2;
  padding: 12px;
  padding-right: 30px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.login-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}
.login-form .wide {
  grid-column: 1/-1;
}
.login-form .field-label p {
  color: #281d19;
  font-size: 1rem;
  line-height: 1.3;
  margin: 0;
  margin-bottom: 10px;
}
.login-form input[type="text"],
.login-form input[type="password"] {
  background: #eee;
  border-radius: 3px;
  color: #281d19;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 20px;
  width: 100%;
}
.login-form .submit {
  background: #e93c00;
  border-radius: 3px;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  width: 100%;
}
.login-form .submit:hover {
  background: #d95e25;
}

.form-sec-head {
  border-radius: 3px;
  background: #f4f4f4;
  padding: 15px;
  padding-left: 40px;
  position: relative;
}
.form-sec-head:before {
  position: absolute;
  top: 16px;
  left: 15px;
  content: "\f35a";
  color: #e93c00;
  font-size: 1rem;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  line-height: 1;
}
.form-sec-head p {
  color: #281d19;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}

.must-des {
  color: #281d19;
  font-size: 1rem;
  line-height: 1.2;
}
.must-des span {
  color: #e93c00;
  font-size: 1rem;
  font-weight: bold;
}

.form-style {
  display: grid;
  grid-template-columns: 55% auto;
  gap: 20px 30px;
}
.form-style.third-form {
  grid-template-columns: 35% 30% auto;
  padding: 30px 0;
}
.form-style.third-form .three-halves {
  grid-column: span 2;
}
.form-style.third-form .file-input {
  width: 100%;
}
.form-style.third-form .file-input .file-cell {
  width: 100%;
}
.form-style.third-form .file-input .file-name {
  border-color: #ccc;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 13px 15px;
  min-width: calc(100% - 95px);
  width: 100%;
}
.form-style.third-form .file-input .file-btn {
  background: #666;
  padding: 14px 15px;
}
.form-style.third-form .btn-row button {
  background: #e93c00;
  min-width: 330px;
}
.form-style.third-form .btn-row button:hover {
  background: #d95e25;
}
.form-style.inline-form {
  padding: 0;
}
.form-style.inline-form .field {
  display: flex;
}
.form-style.inline-form .field .field-label {
  flex-shrink: 0;
  padding-top: 12px;
  min-width: 110px;
}
.form-style.inline-form .field .field-content {
  width: 100%;
}
.form-style.inline-form .btn-row button {
  background: #d95e25;
  min-width: 230px;
}
.form-style.inline-form .btn-row button:hover {
  background: #e93c00;
}
.form-style .wide {
  grid-column: 1/-1;
}
.form-style .field-label {
  margin-bottom: 7px;
}
.form-style .field-label.miltiple-items {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.form-style .field-label p {
  color: #281d19;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.3;
  margin: 0;
  position: relative;
}
.form-style .field-label p.must:before {
  position: absolute;
  top: -2px;
  right: -10px;
  content: "*";
  color: #e93c00;
  font-size: 1rem;
  font-weight: bold;
}
.form-style .field-content {
  align-items: center;
  display: flex;
  gap: 15px;
}
.form-style .field-content ::-webkit-input-placeholder {
  color: #aaa;
  font-size: initial;
}
.form-style .field-content :-ms-input-placeholder {
  color: #aaa;
  font-size: initial;
}
.form-style .field-content ::-moz-placeholder {
  color: #aaa;
  font-size: initial;
  opacity: 1;
}
.form-style .field-content :-moz-placeholder {
  color: #aaa;
  font-size: initial;
  opacity: 1;
}
.form-style .field-content.wide-remark {
  gap: 0;
  flex-wrap: wrap;
}
.form-style .field-content input[type="text"],
.form-style .field-content input[type="tel"],
.form-style .field-content input[type="email"],
.form-style .field-content input[type="password"],
.form-style .field-content textarea {
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #281d19;
  font-size: 1rem;
  line-height: 1.2;
  padding: 12px 15px;
  width: 100%;
}
.form-style .field-content textarea {
  resize: none;
  height: 120px;
}
.form-style .field-content .select-style {
  border-color: #ccc;
  border-radius: 3px;
  width: 100%;
}
.form-style .cheked-list {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}
.form-style .cheked-list span {
  color: #281d19;
}
.form-style .remark {
  color: #999;
  font-size: 1rem;
  line-height: 1.3;
  margin: 0;
  margin-top: 7px;
}
.form-style .file-input {
  display: flex;
  gap: 20px;
}
.form-style .file-input .file-cell {
  align-items: baseline;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
}
.form-style .file-input input[type="file"] {
  display: none;
}
.form-style .file-input .file-name {
  border: 1px solid #e2e2e2;
  color: #281d19;
  font-size: 1rem;
  line-height: 1;
  padding: 12px 15px;
  margin: 0;
  min-width: 270px;
}
.form-style .file-input .file-btn {
  background: #e93c00;
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1;
  padding: 12px 15px;
}
.form-style .pw-field {
  position: relative;
  width: 100%;
}
.form-style .pw-field.open .eye:before {
  display: block;
}
.form-style .pw-field.open .eye:after {
  display: none;
}
.form-style .pw-field .eye {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.form-style .pw-field .eye:before,
.form-style .pw-field .eye:after {
  color: #666;
  cursor: pointer;
  font-family: "Font Awesome 6 Free";
  font-size: 1rem;
}
.form-style .pw-field .eye:before {
  content: "\f06e";
  display: none;
}
.form-style .pw-field .eye:after {
  content: "\f070";
}
.form-style .pw-field input[type="password"] {
  padding-right: 35px;
}
.form-style .btn-row {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.form-style .btn-row button {
  background: #d95e25;
  border-radius: 3px;
  color: #fff;
  font-size: 1.0625rem;
  padding: 15px;
  text-align: center;
  min-width: 130px;
}
.form-style .btn-row button:hover {
  background: #e93c00;
}
.form-style .address-field .field-content {
  display: grid;
  grid-template-columns: 110px auto;
  gap: 0 10px;
}
.form-style .address-field .field-content .remark {
  grid-column: 1 / -1;
}

/* -------------- form RWD --------------*/
@media (max-width: 1280px) {
  .form-style.third-form {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .login-form {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .login-form .wide {
    grid-column: 1/2;
  }
}
@media (max-width: 960px) {
  .form-style {
    grid-template-columns: 1fr !important;
  }
  .form-style.third-form .three-halves {
    grid-column: auto;
  }
  .form-style .wide {
    grid-column: inherit;
  }
  .form-style .remark {
    font-size: 0.9375rem;
    width: 100%;
  }
  .form-style .field-label p {
    font-weight: bold;
  }
  .form-style .file-input {
    flex-wrap: wrap;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .form-style .field-content {
    flex-wrap: wrap;
    gap: 10px;
  }
  .form-style .cheked-list {
    flex-shrink: initial;
    gap: 5px;
  }
  .form-style .file-input .file-name {
    width: 200px;
    min-width: 200px;
  }
}
@media (max-width: 640px) {
  .form-style.inline-form .field {
    flex-wrap: wrap;
  }
  .form-style.inline-form .field .field-label {
    padding-top: 0;
  }
  .form-style .btn-row button {
    padding: 12px;
    min-width: 110px;
  }
  .form-style .address-field .field-content {
    grid-template-columns: 1fr;
    gap: 5px 10px;
  }
}
@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: top left;
    max-width: 80vw;
  }
}
/* -------------- header --------------*/
.header {
  border-top: 10px solid #2e69b6;
  background: #fff;
  padding-top: 25px;
  padding-bottom: 15px;
  z-index: 11;
  position: relative;
}
.header ul {
  padding-left: 0;
  margin: 0;
}
.header ul li {
  list-style: none;
}
.header .frame {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header .logo {
  max-width: 415px;
  width: 100%;
  display: block;
}
.header .logo img {
  display: block;
  width: 100%;
}
.header .others-link {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 40px;
}
.header .others-link a {
  color: #281d19;
  display: block;
  font-size: 1.125rem;
  position: relative;
  line-height: 1;
}
.header .others-link a i {
  color: #d95e25;
  margin-right: 10px;
}
.header .others-link a span {
  position: relative;
}
.header .others-link a span:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 8px;
  background: rgba(255, 204, 51, 0.5);
  content: "";
}
.header .others-link a:not(:last-child):after {
  position: absolute;
  top: 4px;
  right: -20px;
  width: 1px;
  height: 10px;
  background: #ccc;
  content: "";
}
.header .others-link a:hover span:before {
  transition: all 0.4s ease;
  width: 100%;
}
.header .main-menu {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 45px;
  margin-top: 20px;
  margin-bottom: 8px;
  z-index: 10;
}
.header .main-menu > li {
  position: relative;
}
.header .main-menu > li.has-sub .main-link {
  margin-right: 22px;
  position: relative;
}
.header .main-menu > li.has-sub .main-link:after {
  position: absolute;
  top: 4px;
  right: -23px;
  content: "\f0d7";
  color: #e93c00;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 1.125rem;
}
.header .main-menu .main-link {
  color: #281d19;
  font-size: 1.275rem;
  font-weight: bold;
  position: relative;
  line-height: 1;
}
.header .main-menu .main-link:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 8px;
  background: rgba(255, 204, 51, 0.5);
  content: "";
}
.header .main-menu .main-link:hover:before {
  transition: all 0.4s ease;
  width: 100%;
}
.header .sub-menu {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
  padding-top: 20px;
  transform: translateY(100%);
  width: 150px;
  z-index: 1;
}
.header .sub-menu li {
  margin-bottom: 1px;
}
.header .sub-menu a {
  background: #d95e25;
  color: #fff;
  display: block;
  font-size: 1.1rem;
  line-height: 1.4;
  padding: 12px 20px;
}
.header .sub-menu a:hover {
  background: #e93c00;
}
.header .member-state {
  align-items: center;
  color: #281d19;
  display: flex;
  margin: 0;
}
.header .member-state a {
  color: #e93c00;
  font-size: 1rem;
  line-height: 1;
  text-decoration: underline;
}

.mobile-toggle {
  position: absolute;
  top: 35px;
  right: 40px;
  width: 28px;
  height: 30px;
  background: none;
  display: none;
  transform: translateY(13px);
  padding: 0;
  z-index: 4;
}
.mobile-toggle.open span,
.mobile-toggle.open span:before,
.mobile-toggle.open span:after {
  background: #e93c00;
}
.mobile-toggle.open span {
  background: none;
}
.mobile-toggle.open span:before {
  transform: rotate(45deg) translate(6px, 5px);
}
.mobile-toggle.open span:after {
  transform: rotate(-45deg) translate(7px, -8px);
}
.mobile-toggle span {
  display: block;
  position: relative;
}
.mobile-toggle span:before,
.mobile-toggle span:after {
  position: absolute;
  top: -9px;
  left: 0;
  content: "";
}
.mobile-toggle span:after {
  top: 9px;
}
.mobile-toggle span,
.mobile-toggle span:before,
.mobile-toggle span:after {
  width: 100%;
  height: 3px;
  backface-visibility: hidden;
  border-radius: 2px;
  background: #281d19;
  transition: all 0.4s ease;
}

/* -------------- header RWD --------------*/
@media (max-width: 1480px) {
  .header .logo {
    max-width: 380px;
  }
  .header .main-menu {
    gap: 35px;
    margin-top: 20px;
  }
  .header .main-menu > li.has-sub .main-link:after {
    top: 2px;
  }
  .header .main-menu .main-link {
    font-size: 1.1875rem;
  }
  .header .sub-menu {
    padding-top: 10px;
  }
  .header .sub-menu a {
    font-size: 1.0625rem;
    padding: 13px 15px;
  }
}
@media (max-width: 1280px) {
  .header .logo {
    max-width: 320px;
  }
  .header .others-link {
    gap: 30px;
  }
  .header .others-link a {
    font-size: 1rem;
  }
  .header .others-link a:not(:last-child):after {
    right: -15px;
  }
  .header .main-menu {
    gap: 25px;
  }
  .header .main-menu > li.has-sub .main-link {
    margin-right: 20px;
  }
  .header .main-menu > li.has-sub .main-link:after {
    right: -20px;
  }
  .header .main-menu .main-link {
    font-size: 1.125rem;
  }
  .header .sub-menu a {
    font-size: 1rem;
  }
}
@media (max-width: 1100px) {
  .header {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .header .frame {
    align-items: center;
  }
  .header .others-link {
    gap: 15px 30px;
    margin-right: 50px;
    position: relative;
  }
  .header .member-state {
    position: absolute;
    top: -10px;
    right: 0;
    transform: translateY(-100%);
  }
  .header .main-menu {
    background: rgba(238, 238, 238, 0.95);
    position: fixed;
    padding: 15px 25px;
    top: 0;
    left: 0;
    width: 300px;
    height: 100dvh;
    margin-top: 0;
    overflow-y: auto;
    display: none;
  }
  .header .main-menu > li {
    margin: 15px 0;
    padding-bottom: 13px;
  }
  .header .main-menu > li:not(:last-child) {
    border-bottom: 1px dashed #999;
  }
  .header .sub-menu {
    position: static;
    transform: translateY(0%);
    width: 100%;
  }
  .mobile-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .header .frame {
    display: block;
  }
  .header .others-link {
    background: #f3f3f3;
    justify-content: center;
    margin-right: 0;
    margin-top: 10px;
    padding: 7px;
  }
  .mobile-toggle {
    top: 27px;
    right: 20px;
  }
  .header .member-state {
    top: -28px;
    right: 45px;
  }
}
@media (max-width: 640px) {
  .header .logo {
    max-width: 260px;
  }
  .header .others-link {
    gap: 20px;
  }
  .header .others-link a {
    font-size: 0.9375rem;
  }
  .header .others-link a i {
    margin-right: 7px;
  }
  .header .others-link a:not(:last-child):after {
    right: -10px;
  }
  .header .main-menu {
    max-width: calc(100vw - 50px);
  }
  .header .sub-menu a {
    padding: 11px 15px;
  }
  .mobile-toggle {
    top: 21px;
  }
}
@media (max-width: 480px) {
  .header .logo {
    max-width: 240px;
  }
  .header .others-link {
    gap: 10px 20px;
  }
  .header .member-state {
    position: static;
    transform: translateY(0);
    justify-content: center;
    width: 100%;
  }
}
/* -------------- footer --------------*/
.footer {
  background: url(../images/repeat-grey.jpg);
  font-family:
    "Raleway", "fix Microsoft JhengHei", "Microsoft JhengHei", "新細明體",
    sans-serif;
}
.footer p {
  margin: 0;
}
.footer .main-frame {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer .ft-logo {
  max-width: 400px;
  width: 100%;
  display: block;
}
.footer .contact-sec {
  align-items: flex-start;
  display: grid;
  grid-template-columns: auto 300px;
  gap: 60px;
  border-left: 1px solid #ccc;
  margin-left: 70px;
  padding-left: 70px;
  width: calc(100% - 450px - 70px);
}
.footer .info-list {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer .info-list .info {
  display: grid;
  grid-template-columns: 25px auto;
}
.footer .info-list .info i {
  color: #d95e25;
  font-size: 1rem;
}
.footer .info-list .info p {
  color: #281d19;
  font-size: 1rem;
  line-height: 1.2;
}
.footer .info-list .info p .title {
  display: inline-block;
}
.footer .info-list .info a {
  color: #281d19;
  text-decoration: underline;
}
.footer .info-list .info a:hover {
  color: #e93c00;
}
.footer .info-list .info:not(:last-child) {
  margin-right: 20px;
  margin-bottom: 15px;
}
.footer .post-info {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer .post-info .info {
  color: #281d19;
  font-size: 1rem;
  padding-left: 13px;
  position: relative;
  line-height: 1.2;
}
.footer .post-info .info:before {
  position: absolute;
  top: 5%;
  left: 0;
  width: 4px;
  height: 87%;
  background: #e93c00;
  content: "";
}
.footer .post-info .info:not(:last-child) {
  margin-right: 20px;
  margin-bottom: 15px;
}
.footer .right-sec {
  align-items: center;
  display: grid;
  grid-template-columns: 65px auto;
  gap: 15px;
}
.footer .right-sec .icon {
  display: block;
  width: 100%;
}
.footer .right-sec p {
  color: #281d19;
  font-size: 1.35rem;
  line-height: 1.4;
}
.footer .right-sec:hover p {
  color: #e93c00;
}
.footer .bottom-frame {
  background: #281d19;
  padding: 30px 0;
}
.footer .bottom-frame .frame {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .bottom-frame p,
.footer .bottom-frame a,
.footer .bottom-frame b {
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.2;
}

.top-btn {
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: #3568b3;
  display: block;
  padding: 10px;
  text-align: center;
  z-index: 10;
  opacity: 0;
}
.top-btn:hover {
  background: #d95e25;
}
.top-btn i {
  color: #fff;
}
.top-btn span {
  color: #fff;
  display: block;
  font-size: 1rem;
  text-align: center;
}

/* -------------- footer RWD --------------*/
@media (max-width: 1480px) {
  .footer .ft-logo {
    max-width: 380px;
  }
  .footer .contact-sec {
    gap: 40px;
    margin-left: 50px;
    padding-left: 50px;
    width: calc(100% - 380px - 50px);
  }
}
@media (max-width: 1280px) {
  .footer .main-frame {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer .ft-logo {
    max-width: 320px;
  }
  .footer .contact-sec {
    margin-left: 40px;
    padding-left: 40px;
    width: calc(100% - 320px - 40px);
  }
  .top-btn {
    right: 0;
  }
  .top-btn span {
    font-size: 0.875rem;
  }
}
@media (max-width: 1024px) {
  .footer .main-frame {
    display: block;
  }
  .footer .contact-sec {
    border-left: none;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-left: 0;
    margin-top: 25px;
    padding-left: 0;
    width: 100%;
  }
  .footer .bottom-frame {
    padding: 20px 0;
  }
  .footer .right-sec {
    gap: 10px;
    grid-template-columns: 50px auto;
  }
  .footer .right-sec p {
    font-size: 1.15rem;
  }
}
@media (max-width: 640px) {
  .footer .main-frame {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer .ft-logo {
    max-width: 260px;
  }
  .footer .info-list,
  .footer .post-info {
    display: block;
  }
  .footer .info-list .info:not(:last-child),
  .footer .post-info .info:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .footer .contact-sec {
    gap: 20px;
  }
  .footer .bottom-frame {
    padding: 15px 0;
  }
  .footer .bottom-frame .frame {
    display: block;
  }
  .footer .bottom-frame p,
  .footer .bottom-frame a,
  .footer .bottom-frame b {
    font-size: 0.875rem;
  }
  .footer .bottom-frame .designed {
    margin-top: 5px;
  }
  .top-btn {
    padding: 5px;
  }
}
/* -------------- pagination --------------*/
.page_box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.page_box .page_num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 50%;
  background: #fff;
  color: #555;
  font-size: 1rem;
  margin-left: 3px;
  margin-right: 3px;
}
.page_box .page_num:hover {
  background: #eee;
}
.page_box .page_num.active {
  background: #d95e25;
  border-color: #d95e25;
  color: #fff;
}
.page_box .page_num i {
  font-size: 1rem;
}

/* -------------- pagination RWD --------------*/
@media (max-width: 640px) {
  .page_box .page_num {
    margin-left: 3px;
    margin-right: 3px;
  }
}
.empty-row {
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  max-width: 640px;
}
.empty-row .img-box {
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}
.empty-row .img-box img {
  display: block;
  width: 100%;
}
.empty-row .content {
  margin-top: 40px;
  text-align: center;
}
.empty-row .content .title {
  color: #222;
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
}
.empty-row .content .des {
  color: #999;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  margin-top: 20px;
}
.empty-row .btn-row {
  margin-top: 40px;
}
.empty-row .btn-row .link {
  background: #d95e25;
  border-radius: 30px;
  color: #fff;
  display: block;
  font-size: 17px;
  margin-left: auto;
  margin-right: auto;
  padding: 13px;
  text-align: center;
  text-decoration: inherit;
  transition: all 0.4s;
  width: 120px;
}
.empty-row .btn-row .link:hover {
  background: #e93c00;
}

@media (max-width: 640px) {
  .empty-row .content {
    margin-top: 30px;
  }
  .empty-row .content .title {
    font-size: 26px;
  }
  .empty-row .content .des {
    font-size: 16px;
    margin-top: 15px;
  }
  .empty-row .btn-row {
    margin-top: 30px;
  }
}
.error-row {
  background: url(../images/error-background.svg) no-repeat;
  background-position: center top;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}
.error-row .img-box {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
}
.error-row .img-box img {
  display: block;
  width: 100%;
}
.error-row .img-box .error-code {
  color: #555;
  font-size: 120px;
  font-weight: bold;
  letter-spacing: 5px;
  line-height: 1;
  margin: 0;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translateX(-57%);
}
.error-row .content {
  margin-top: 50px;
  text-align: center;
}
.error-row .content .title {
  color: #281d19;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}
.error-row .content .des {
  margin-top: 25px;
}
.error-row .content .des p {
  color: #555;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}
.error-row .content .des p:not(:last-child) {
  margin-bottom: 5px;
}
.error-row .btn-row {
  margin-top: 80px;
}
.error-row .btn-row .link {
  border-radius: 30px;
  background: #d95e25;
  color: #fff;
  display: block;
  font-size: 20px;
  padding: 15px 13px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-decoration: inherit;
  text-transform: uppercase;
  transition: all 0.4s;
  width: 240px;
}
.error-row .btn-row .link:hover {
  background: #333;
}

@media (max-width: 1440px) {
  .error-row .img-box {
    max-width: 540px;
  }
  .error-row .img-box .error-code {
    font-size: 100px;
  }
  .error-row .btn-row {
    margin-top: 50px;
  }
}
@media (max-width: 1024px) {
  .error-row .img-box {
    max-width: 440px;
  }
  .error-row .img-box .error-code {
    font-size: 70px;
    top: 45%;
  }
  .error-row .btn-row {
    margin-top: 50px;
  }
}
@media (max-width: 640px) {
  .error-row .img-box .error-code {
    font-size: 50px;
    top: 45%;
  }
  .error-row .content {
    margin-top: 30px;
  }
  .error-row .content .title {
    font-size: 26px;
  }
  .error-row .content .des {
    margin-top: 15px;
  }
  .error-row .content .des p {
    font-size: 16px;
  }
  .error-row .btn-row {
    margin-top: 30px;
  }
  .error-row .btn-row .link {
    font-size: 17px;
    max-width: 170px;
  }
}
/* -------------- index --------------*/
.index-head-with-link {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px 80px;
}

.index-banner {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.index-banner .img-box {
  display: block;
}
.index-banner .img-box img {
  display: block;
  width: 100%;
}
.index-banner .slick-arrow {
  position: absolute;
  top: 50%;
  background: none;
  padding: 0;
  width: 30px;
  z-index: 1;
  opacity: 0;
}
.index-banner:hover .slick-arrow {
  opacity: 1;
}
.index-banner .slick-arrow.slick-prev {
  transform: translateY(-50%) rotateZ(180deg);
  left: 100px;
}
.index-banner .slick-arrow.slick-next {
  transform: translateY(-50%);
  right: 100px;
}
.index-banner .slick-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  gap: 10px;
  transform: translateX(-50%);
  padding-left: 0;
}
.index-banner .slick-dots .slick-active button {
  border-color: #ffcc33;
  background: #ffcc33;
}
.index-banner .slick-dots button {
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid #aaa;
  font-size: 0;
}

.index-intro {
  /* background: url(../images/index-login-bg.png) no-repeat; */
  background-position: top center;
  padding-top: 120px;
  padding-bottom: 120px;
}
.index-intro p {
  margin: 0;
}
.index-intro .frame {
  align-items: flex-start;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.index-intro .frame.is-member {
  display: block;
}
.index-intro section {
  padding-left: 40px;
}
.index-intro .sec-head {
  margin-bottom: 35px;
}
.index-intro .sec-content {
  padding-left: 40px;
}
.index-intro .about-sec .des {
  color: #281d19;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 25px;
}
.index-intro .login-sec {
  /* background: url(../images/gf-group.svg) no-repeat;
  background-position: bottom right;
  background-size: 380px; */
  padding-bottom: 0px;
}
.index-intro .login-sec .link {
  color: #281d19;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  text-decoration: underline;
  margin-top: 10px;
  margin-left: 20px;
}
.index-intro .login-sec .link:hover {
  color: #d95e25;
}

.index-news {
  background: url(../images/news-bottom-bg.png) no-repeat;
  background-position: bottom center;
  padding-bottom: 215px;
  margin-top: 40px;
}
.index-news p {
  margin: 0;
}
.index-news .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 40px;
}
.index-news .news-item {
  padding: 40px 50px;
  position: relative;
  border: 1px solid transparent;
  box-shadow: 0 0 0 #6480c1;
  transition: box-shadow 0.4s ease;
}
.index-news .news-item:hover {
  border-color: #6480c1;
  background: url(../images/news-gf-hover.svg) #fff;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 300px;
  box-shadow: -15px 15px 0 #6480c1;
  position: relative;
}
.index-news .news-item .info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.index-news .news-item .info .date {
  color: #281d19;
  font-size: 0.875rem;
  font-family:
    "Raleway", "fix Microsoft JhengHei", "Microsoft JhengHei", "新細明體",
    sans-serif;
  line-height: 1.2;
}
.index-news .news-item .info .category {
  border-radius: 30px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 5px 15px;
}
.index-news .news-item .news-title {
  border-bottom: 1px solid #e2e2e2;
  height: 7.2rem;
  overflow: hidden;
  margin-top: 30px;
}
.index-news .news-item .news-title a {
  color: #281d19;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.6;
}
.index-news .news-item .news-title a:hover {
  color: #d95e25;
}
.index-news .news-item .link {
  margin-top: 25px;
  display: inline-block;
}
.index-news .news-item .link i {
  color: #d95e25;
  font-size: 1.125rem;
}
.index-news .news-item .link i:hover {
  color: #e93c00;
}

.index-activities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.index-activities p {
  margin: 0;
}
.index-activities .activity-grid {
  background: url(../images/bg-index-study.jpg) no-repeat;
  background-size: cover;
  padding: 120px 8%;
}
.index-activities .activity-grid:nth-child(2) {
  background: url(../images/bg-index-general.jpg) no-repeat;
  background-size: cover;
  transform: translateY(0);
}
.index-activities .activity-grid:nth-child(2) .head .sub {
  /* color: #282828; */
}
.index-activities .activity-grid:nth-child(2) .activity-item .date {
  background: #d95e25;
  color: #fff;
}
.index-activities .activity-grid:nth-child(2) .activity-item:not(:last-child) {
  border-color: #fff;
}
.index-activities .activity-grid .record-search {
  background: #e93c00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  display: block;
  width: 150px;
  margin: 15px auto 0;
}
.index-activities .activity-grid .record-search:hover {
  background: #333;
}
.index-activities .head {
  text-align: center;
  margin-bottom: 25px;
}
.index-activities .head .title {
  color: #281d19;
  font-size: 2.5rem;
  font-weight: bold;
}
.index-activities .head .sub {
  color: #d95e25;
  font-size: 1.875rem;
  font-family:
    "Raleway", "fix Microsoft JhengHei", "Microsoft JhengHei", "新細明體",
    sans-serif;
  line-height: 1;
  margin-top: 5px;
  text-transform: uppercase;
}
.index-activities .activity-item {
  align-items: flex-start;
  display: grid;
  grid-template-columns: 80px auto;
  gap: 20px 30px;
  padding: 20px 0;
}
.index-activities .activity-item:not(:last-child) {
  border-bottom: 1px solid #ffcc33;
}
.index-activities .activity-item .date {
  background: #ffcc33;
  padding: 10px 5px;
  text-align: center;
}
.index-activities .activity-item .date p {
  font-family:
    "Raleway", "fix Microsoft JhengHei", "Microsoft JhengHei", "新細明體",
    sans-serif;
}
.index-activities .activity-item .date .day {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
.index-activities .activity-item .date .month {
  font-size: 0.875rem;
  margin-top: 5px;
}
.index-activities .activity-item .content .state {
  color: #e93c00;
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.index-activities .activity-item .content .state span {
  margin: 0 5px;
}


.index-activities .btn-row {
  text-align: right;
  margin-top: 20px;
}

.index-activities .activity-item .content .activity-title {
  align-items: flex-start;
  display: flex;
  gap: 0 10px;
  margin-top: 10px;
}
.index-activities .activity-item .content .activity-title .activity-link {
  color: #281d19;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  width: 100%;
}
.index-activities .activity-item .content .activity-title .activity-link:hover {
  text-decoration: underline;
}
.index-activities .btn-row {
  text-align: right;
  margin-top: 20px;
}
.index-activities .activity-item .content .activity-title a {
  color: #281d19;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
}
.index-activities .activity-item .content .activity-title a:hover {
  text-decoration: underline;
}

.index-activities .activity-item .content .activity-title .state-btn {
  border-radius: 3px;
  background: #c5c5c5;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  display: block;
  padding: 10px 5px;
  text-align: center;
  width: 130px;
}
.index-activities .activity-item .content .activity-title .state-btn:hover {
  opacity: 0.8;
}
.index-activities .activity-item .content .activity-title .state-btn.is-active {
  background: #d95e25;
}
.index-activities .activity-item .content .page-info-list {
  margin-top: 5px;
}

.index-magazine {
  background: url(../images/bg-magazine.svg) no-repeat;
  background-position: center bottom;
  position: relative;
  padding-top: 100px;
}
.index-magazine:after {
  position: absolute;
  bottom: 21%;
  left: 2%;
  content: url(../images/gf-mag.svg);
  width: 28%;
}
.index-magazine p {
  margin: 0;
}
.index-magazine .magazine-grid {
  max-width: 1120px;
  width: 100%;
  border: 5px solid #d95e25;
  background: #fff;
  margin-left: auto;
  margin-top: 110px;
  padding: 50px 80px;
  position: relative;
}
.index-magazine .list-head {
  position: absolute;
  top: 0;
  left: 80px;
  border-radius: 30px;
  background: #281d19;
  color: #fff;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  transform: translateY(-50%);
  padding: 13px 15px;
  min-width: 210px;
}
.index-magazine .exam-row {
  align-items: center;
  background: #fff5e5;
  border-radius: 30px;
  display: flex;
  gap: 10px 15px;
  padding: 10px;
}
.index-magazine .exam-link {
  align-items: center;
  background: #fd9536;
  border-radius: 30px;
  color: #fff;
  display: inline-flex;
  gap: 10px;
  padding: 10px 25px;
  flex-shrink: 0;
}
.index-magazine p {
  color: #e93c00;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
}
.index-magazine p span {
  display: inline-block;
}
.index-magazine .chapter {
  align-items: baseline;
  border-bottom: 1px solid #e2e2e2;
  display: grid;
  grid-template-columns: 30px auto 30px;
  gap: 15px;
  padding: 25px 0;
  position: relative;
}
.index-magazine .chapter:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: #e93c00;
  content: "";
  transition: all 0.4s ease;
}
.index-magazine .chapter:hover:after {
  width: 100%;
}
.index-magazine .chapter .no {
  color: #d95e25;
  font-size: 1.25rem;
  font-weight: bold;
  font-family:
    "Raleway", "fix Microsoft JhengHei", "Microsoft JhengHei", "新細明體",
    sans-serif;
}
.index-magazine .chapter .title {
  color: #281d19;
  font-size: 1.125rem;
  line-height: 1.4;
}
.index-magazine .chapter .link {
  color: #d95e25;
  font-size: 1.5rem;
}
.index-magazine .chapter .link:hover {
  color: #e93c00;
}

.index-links {
  background: #6cc47b;
  padding: 110px 0;
}
.index-links .slick-dots {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
  gap: 8px;
}
.index-links .slick-dots button {
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1px solid #e2e2e2;
  font-size: 0;
}
.index-links .slick-dots .slick-active button {
  background: #fde7c6;
  border-color: #fde7c6;
}

/* -------------- index RWD --------------*/
@media (max-width: 1600px) {
  .index-magazine:after {
    width: calc(100% - 1120px - 100px);
  }
  .index-magazine .magazine-grid {
    padding: 50px;
    margin-top: 70px;
  }
  .index-magazine .list-head {
    left: 50px;
  }
}
@media (max-width: 1480px) {
  .index-banner .slick-arrow {
    width: 20px;
  }
  .index-banner .slick-arrow.slick-prev {
    left: 70px;
  }
  .index-banner .slick-arrow.slick-next {
    right: 70px;
  }
  .index-intro .frame {
    gap: 40px;
  }
  .index-intro .about-sec .des {
    font-size: 1.125rem;
  }
  .index-news .news-item {
    padding: 30px;
  }
  .index-news .news-item .news-title {
    margin-top: 20px;
  }
  .index-activities .activity-grid {
    padding: 80px 8%;
  }
  .index-magazine:after {
    width: calc(30% - 40px);
  }
  .index-magazine .magazine-grid {
    max-width: 70%;
  }
  .index-magazine .chapter {
    padding: 18px 0;
  }
}
@media (max-width: 1280px) {
  .index-banner .slick-arrow.slick-prev {
    left: 40px;
  }
  .index-banner .slick-arrow.slick-next {
    right: 40px;
  }
  .index-banner .slick-dots {
    bottom: 20px;
  }
  .index-news .news-grid {
    padding-top: 40px;
  }
  .index-news .news-item {
    padding: 25px;
  }
  .index-news .news-item .news-title {
    margin-top: 15px;
  }
  .index-activities .head .title {
    font-size: 1.875rem;
  }
  .index-activities .head .sub {
    font-size: 1.625rem;
  }
  .index-activities .activity-item {
    grid-template-columns: 70px auto;
    gap: 20px;
  }
  .index-magazine {
    padding-top: 60px;
  }
}
@media (max-width: 1200px) {
  .index-intro {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .index-intro .sec-head {
    margin-bottom: 25px;
  }
  .index-intro .sec-content {
    padding-left: 20px;
  }
  .index-intro .about-sec .des {
    margin-bottom: 60px;
  }
  .index-intro .login-sec {
    background: none;
    padding-bottom: 0;
  }
  .index-magazine:after {
    display: none;
  }
  .index-magazine .magazine-grid {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .index-news {
    background: none;
    padding-bottom: 60px;
  }
  .index-news .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .index-activities {
    grid-template-columns: 1fr;
  }
  .index-activities .activity-grid {
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .index-banner .slick-arrow {
    width: 15px;
  }
  .index-banner .slick-arrow.slick-prev {
    left: 20px;
  }
  .index-banner .slick-arrow.slick-next {
    right: 20px;
  }
  .index-banner .slick-dots {
    bottom: 10px;
  }
  .index-intro {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .index-intro .frame {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .index-intro .about-sec .des {
    font-size: 1.0625rem;
    margin-bottom: 20px;
  }
  .index-news .news-grid {
    padding-top: 20px;
  }
  .index-news .news-item:hover {
    background-size: 200px;
  }
  .index-news .news-item .news-title {
    height: 6.4rem;
  }
  .index-news .news-item .news-title a {
    font-size: 1rem;
  }
  .index-activities .activity-grid {
    padding: 60px 40px;
  }
  .index-activities .activity-item {
    padding: 20px 0;
  }
  .index-activities .activity-item .content .activity-title .activity-link {
    font-size: 1rem;
  }
  .index-magazine .list-head {
    font-size: 1.125rem;
    padding: 13px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .index-magazine .magazine-grid {
    border-width: 3px;
    padding: 60px 30px 40px;
    margin-top: 50px;
  }
  .index-magazine .chapter {
    gap: 13px;
    padding: 13px 0;
  }
  .index-magazine .chapter .title {
    font-size: 1rem;
  }
  .index-links {
    padding: 60px 0;
  }
}
@media (max-width: 640px) {
  .index-head-with-link {
    gap: 10px;
    flex-direction: row;
    justify-content: center;
  }
  .index-head-with-link .sec-head {
    width: 100%;
  }
  .index-news {
    padding-bottom: 40px;
  }
  .index-news .news-grid {
    grid-template-columns: 1fr;
  }
  .index-news .news-item {
    padding: 15px;
  }
  .index-news .news-item:hover {
    box-shadow: -10px 10px 0 #ffcc33;
  }
  .index-news .news-item .link {
    margin-top: 15px;
  }
  .index-activities .activity-grid {
    padding: 50px 20px;
  }
  .index-activities .activity-item {
    grid-template-columns: 65px auto;
    gap: 15px;
  }
  .index-activities .activity-item .date {
    padding: 10px 5px;
  }
  .index-activities .activity-item .date .day {
    font-size: 1.75rem;
  }
  .index-activities .activity-item .date .month {
    margin-top: 0;
  }
  .index-activities .activity-item .content .activity-title {
    margin-top: 5px;
  }
  .index-magazine .exam-row {
    flex-direction: column;
  }
  .index-magazine .exam-row p {
    font-size: 15px;
    text-align: center;
  }
}
/* -------------- news --------------*/
.page-news .news {
  border: 1px solid #e3e3e3;
  padding: 30px 40px;
}
.page-news .news:hover {
  background: rgba(253, 231, 198, 0.2);
}
.page-news .news:not(:last-child) {
  margin-bottom: 20px;
}
.page-news .news p {
  margin: 0;
}
.page-news .news .category {
  align-items: center;
  display: flex;
  font-weight: bold;
  font-size: 1rem;
  gap: 10px;
  margin-bottom: 10px;
}
.page-news .news .category .square {
  width: 13px;
  height: 13px;
}
.page-news .news .news-title {
  color: #281d19;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.4;
}
.page-news .news .news-title:hover {
  color: #e93c00;
}
.page-news .news .des {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: 8px;
}

/* -------------- temp RWD --------------*/
@media (max-width: 1280px) {
  .page-news .news {
    padding: 25px 30px;
  }
}
@media (max-width: 768px) {
  .page-news .news {
    padding: 25px 20px;
  }
}
/* -------------- about --------------*/
.page-about .content-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.page-about .page-title {
  color: #281d19;
  font-size: 1.0625rem;
  line-height: 1.4;
  margin: 0;
}
.page-about .committee-head .master {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.page-about .committee-head .master p {
  margin: 0;
}
.page-about .committee-head .master .name {
  color: #281d19;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 5px;
}
.page-about .committee-head .master .period {
  color: #555;
  display: inline-block;
  font-size: 0.9375rem;
}
.page-about .committee-group {
  margin-top: 50px;
}
.page-about .group-head {
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
}
.page-about .group-head:before {
  position: absolute;
  top: 1px;
  left: 0;
  content: "\f0c9";
  color: #e93c00;
  font-size: 1.125rem;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
}
.page-about .group-head .sub {
  color: #281d19;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}

/* -------------- about RWD --------------*/
@media (max-width: 768px) {
  .page-about .content-head {
    display: block;
    margin-bottom: 20px;
  }
  .page-about .page-title {
    margin-bottom: 15px;
  }
}
@media (max-width: 640px) {
  .page-about .committee-group {
    margin-top: 30px;
  }
}
/* -------------- activity --------------*/
.page-activity .state-btn {
  background: #d95e25;
  border-radius: 3px;
  color: #fff;
  display: block;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 5px;
  text-align: center;
}
.page-activity .state-btn:hover {
  background: #e93c00;
}
.page-activity .state-btn.full {
  background: #999 !important;
  cursor: auto;
}
.page-activity .state-btn.deadline {
  background: #c5c5c5 !important;
  cursor: auto;
}
.page-activity .n-register {
  color: #e93c00;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
}
.page-activity .activity {
  border: 1px solid #e3e3e3;
  display: grid;
  grid-template-columns: 100px auto;
}
.page-activity .activity:not(:last-child) {
  margin-bottom: 15px;
}
.page-activity .activity:hover .date {
  background: #e93c00;
}
.page-activity .activity .date {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #888;
  text-align: center;
}
.page-activity .activity .date p {
  color: #fff;
  margin: 0;
}
.page-activity .activity .date .day {
  font-size: 2.75rem;
  font-weight: bold;
}
.page-activity .activity .date .month {
  font-size: 0.875rem;
}
.page-activity .activity .content {
  align-items: center;
  display: grid;
  grid-template-columns: auto;
  gap: 25px;
  padding: 25px;
}
.page-activity .activity .main-info .activity-title {
  color: #281d19;
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
}
.page-activity .activity .main-info .activity-title:hover {
  color: #e93c00;
}
.page-activity .activity .main-info .des {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.4;
  margin: 0;
  margin-top: 5px;
  width: 100%;
}
.page-activity .detail-content {
  background: #f6f6f6;
  border: 1px solid #efefef;
  border-radius: 5px;
  padding: 50px 40px;
}
.page-activity .detail-content .detail-info-list {
  margin-bottom: 15px;
}
.page-activity .detail-content .info {
  color: #281d19;
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-top: 0;
  padding-left: 18px;
  position: relative;
}
.page-activity .detail-content .info:not(:last-child) {
  margin-bottom: 10px;
}
.page-activity .detail-content .info:before {
  position: absolute;
  top: 7px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: #e93c00;
  content: "";
  transform: rotate(45deg);
}
.page-activity .detail-content .sec-title {
  align-items: center;
  display: flex;
  gap: 10px;
}
.page-activity .detail-content .sec-title p {
  background: #e93c00;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  color: #fff;
  flex-shrink: 0;
  font-size: 1.0625rem;
  margin: 0;
  padding: 13px 30px;
}
.page-activity .detail-content .sec-title .line {
  border-top: 1px solid #e6e6e6;
  width: 100%;
}
.page-activity .detail-content .des {
  margin: 25px 0;
}
.page-activity .contact-content {
  margin-top: 50px;
}
.page-activity .contact-content .group-content {
  border-left: 4px solid #d95e25;
  padding-left: 15px;
}
.page-activity .contact-content .group-content:not(:last-child) {
  margin-bottom: 40px;
}
.page-activity .contact-content .group-content p {
  color: #281d19;
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}
.page-activity .contact-content .group-content p:not(:last-child) {
  margin-bottom: 10px;
}
.page-activity .contact-content .group-content p span {
  display: inline-block;
}
.page-activity .bottom-btn-row {
  margin-top: 20px;
  text-align: center;
}
.page-activity .bottom-btn-row .state-btn {
  max-width: 120px;
  margin-inline: auto;
}
.activity-remark {
  color: #f24;
  font-weight: bold;
  margin-top: 10px;
}

/* -------------- activity RWD --------------*/
@media (max-width: 1024px) {
  .page-activity .state-btn {
    width: 120px;
  }
  .page-activity .n-register {
    position: absolute;
    top: 50%;
    left: 130px;
    transform: translateY(-50%);
  }
  .page-activity .activity .info-list {
    padding-top: 10px;
    margin-top: 10px;
  }
  .page-activity .activity .content {
    gap: 10px;
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .page-activity .page-detail-head {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-activity .detail-content {
    padding: 40px 30px;
  }
  .page-activity .detail-content .info {
    font-size: 1rem;
  }
  .page-activity .detail-content .des p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .page-activity .activity {
    grid-template-columns: 80px auto;
  }
}
@media (max-width: 640px) {
  .page-activity .activity {
    grid-template-columns: 60px auto;
  }
  .page-activity .activity .date .day {
    font-size: 2.25rem;
  }
  .page-activity .activity .date .month {
    font-size: 0.8125rem;
  }
  .page-activity .activity .content {
    padding: 15px 13px;
  }
  .page-activity .detail-content {
    padding: 30px 15px;
  }
  .page-activity .detail-content .info span {
    display: block;
    font-weight: bold;
  }
  .page-activity .detail-content .sec-title p {
    font-weight: bold;
    padding: 10px 20px 10px 15px;
  }
  .page-activity .contact-content {
    margin-top: 30px;
  }
  .page-activity .contact-content .group-content:not(:last-child) {
    margin-bottom: 30px;
  }
  .page-activity .contact-content .group-content p .title {
    display: block;
    font-weight: bold;
    width: 100%;
  }
}
/* -------------- member --------------*/
.page-login {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  max-width: 760px;
}
.page-login p {
  margin: 0;
}
.page-login .login-form {
  gap: 10px;
  grid-template-columns: 1fr;
}
.page-login .form-head {
  color: #281d19;
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.page-login .form-des {
  border-left: 3px solid #d95e25;
  padding-left: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  margin-bottom: 50px;
}
.page-login .form-des p {
  color: #281d19;
  font-size: 0.9375rem;
  line-height: 1.2;
}
.page-login .form-des p:not(:last-child) {
  margin-bottom: 8px;
}

/* -------------- member RWD --------------*/
@media (max-width: 960px) {
  .page-login {
    gap: 25px;
  }
}
@media (max-width: 640px) {
  .page-login {
    grid-template-columns: 1fr;
  }
  .page-login .form-des {
    margin-bottom: 20px;
  }
}
/* -------------- magazine --------------*/
.page-magazine .magazine-past-table a {
  display: inline-block;
}
.page-magazine .magazine-past-table .no-link {
  color: #2365af;
}
.page-magazine .magazine-past-table .no-link:hover {
  color: #e93c00;
  text-decoration: underline;
}
.page-magazine .magazine-past-table .to-exam {
  color: #555;
}
.page-magazine .magazine-past-table .to-exam.is-link:hover {
  color: #e93c00;
}
.page-magazine .magazine-past-table .to-exam i {
  margin-right: 5px;
}
.page-magazine .magazine-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -39px;
  margin-bottom: 20px;
}
.page-magazine .magazine-head p {
  margin: 0;
}
.page-magazine .magazine-head .current-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.page-magazine .magazine-head .info {
  display: flex;
  background: #40b8ca;
  color: #fff;
  font-size: 1.25rem;
  font-weight: lighter;
  padding: 15px;
  padding-left: 20px;
  position: relative;
  height: 57px;
  text-decoration: none;
}
.page-magazine .magazine-head .info:before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  border-style: solid;
  border-width: 57px 25px 0 0;
  border-color: #40b8ca transparent transparent transparent;
  transform: translateX(100%);
}
.page-magazine .magazine-head .info p:not(:last-child):after {
  content: "/";
  color: #fff;
  font-size: 1.125rem;
  padding: 0 5px;
}
.page-magazine .magazine-head .exam-link {
  background: #0f85bb;
  color: #fff;
  display: inline-block;
  font-size: 1.0625rem;
  padding: 17px 20px 17px 15px;
  position: relative;
  margin-left: 27px;
  height: 57px;
}
.page-magazine .magazine-head .exam-link:hover {
  background: #e93c00;
}
.page-magazine .magazine-head .exam-link:hover:before {
  border-color: transparent transparent #e93c00 transparent;
}
.page-magazine .magazine-head .exam-link:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  border-style: solid;
  border-width: 0 0 57px 25px;
  border-color: transparent transparent #0f85bb transparent;
  transform: translateX(-100%);
  transition: all 0.4s ease;
}
.page-magazine .magazine-head .exam-link i {
  margin-right: 5px;
}
.page-magazine .magazine-head .filter-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 25px;
}
.page-magazine .magazine-des .remark {
  color: #e93c00;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
}
.page-magazine .magazine-des .remark span {
  display: inline-block;
}
.page-magazine .magazine-list {
  padding-top: 10px;
}
.page-magazine .magazine {
  padding: 17px 0;
}
.page-magazine .magazine:not(:last-child) {
  border-bottom: 1px solid #e2e2e2;
}
.page-magazine .magazine .magazine-title {
  color: #281d19;
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
}
.page-magazine .magazine .magazine-title:hover {
  color: #e93c00;
}
.page-magazine .sub-des {
  margin-bottom: 25px;
}
.page-magazine .sub-des p {
  color: #281d19;
  font-size: 1.0625rem;
  line-height: 1.4;
  margin: 0;
}
.page-magazine .sub-des a {
  color: #2365af;
  display: inline-block;
  font-size: 1.0625rem;
  line-height: 1.4;
}
.page-magazine .sub-des a:hover {
  color: #e93c00;
}
.page-magazine .exam-top-head {
  margin: 20px 0;
}
.page-magazine .exam-top-head p {
  margin: 0;
}
.page-magazine .exam-top-head .main {
  color: #281d19;
  font-size: 1.125rem;
  line-height: 1.4;
}
.page-magazine .exam-top-head .sub {
  color: #555;
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 5px;
}
.page-magazine .exam-file {
  align-items: baseline;
  display: flex;
  gap: 20px;
}
.page-magazine .exam-file .download-link {
  background: linear-gradient(0deg, rgb(215, 56, 1) 0%, rgb(247, 86, 30) 100%);
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 1.125rem;
  flex-shrink: 0;
  line-height: 1;
  padding: 18px 25px;
}
.page-magazine .exam-file .download-link i {
  margin-right: 8px;
}
.page-magazine .exam-file .link-remark {
  color: #e93c00;
  font-size: 1rem;
  line-height: 1.4;
}
.page-magazine .exam-grid {
  background: #f6f6f6;
  border: 1px solid #efefef;
  border-radius: 5px;
  padding: 50px 40px;
  margin-top: 25px;
}
.page-magazine .exam-grid .exam-head {
  margin-bottom: 30px;
  padding-left: 25px;
  position: relative;
}
.page-magazine .exam-grid .exam-head:before {
  position: absolute;
  top: 1px;
  left: 0;
  content: "\f0c9";
  color: #e93c00;
  font-size: 1.125rem;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
}
.page-magazine .exam-grid .exam-head .exam-text {
  color: #281d19;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}
.page-magazine .exam-grid .exam-list {
  padding-left: 20px;
  margin: 0;
}
.page-magazine .exam-grid .exam:not(:last-child) {
  margin-bottom: 30px;
}
.page-magazine .exam-grid .exam .exam-q {
  color: #281d19;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 15px;
}
.page-magazine .exam-grid .exam .exam-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page-magazine .exam-grid .exam .exam-content input {
  margin: 0;
  margin-right: 8px;
}
.page-magazine .exam-grid .exam .exam-content .input-text {
  color: #281d19;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.6;
}
.page-magazine .exam-grid .radio-item {
  align-items: baseline;
  display: inline-flex;
}
.page-magazine .exam-grid .radio-item input {
  flex-shrink: 0;
}
.page-magazine .exam-grid .btn-row {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.page-magazine .exam-grid .btn-row button {
  background: #d95e25;
  border-radius: 3px;
  color: #fff;
  font-size: 1.0625rem;
  padding: 15px;
  text-align: center;
  min-width: 130px;
}
.page-magazine .exam-grid .btn-row button:hover {
  background: #e93c00;
}

/* -------------- temp RWD --------------*/
@media (max-width: 1024px) {
  .page-magazine .exam-grid {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .page-magazine .exam-file {
    gap: 10px;
    flex-wrap: wrap;
  }
  .page-magazine .exam-file .link-remark {
    margin: 0;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .page-magazine .magazine-head {
    margin-top: -29px;
  }
  .page-magazine .magazine-head .info {
    font-size: 1.0625rem;
    padding: 10px;
    padding-left: 15px;
    height: 44px;
  }
  .page-magazine .magazine-head .info:before {
    border-width: 44px 15px 0 0;
  }
  .page-magazine .magazine-head .exam-link {
    font-size: 1.0625rem;
    padding: 10px;
    padding-bottom: 11px;
    padding-right: 15px;
    margin-left: 17px;
    height: 44px;
  }
  .page-magazine .magazine-head .exam-link:before {
    border-width: 0 0 44px 15px;
  }
  .page-magazine .exam-top-head .main {
    font-size: 1rem;
  }
  .page-magazine .exam-top-head .sub {
    font-size: 0.9375rem;
  }
  .page-magazine .exam-grid {
    padding: 30px 15px;
  }
  .page-magazine .exam-grid .exam-head {
    margin-bottom: 20px;
  }
  .page-magazine .exam-grid .exam .exam-q {
    margin-bottom: 8px;
  }
}
/* -------------- download --------------*/
.page-download .tag-group-item {
  margin-top: 30px;
}
.page-download .top-des {
  background: #f3f3f3;
  padding: 20px;
}
.page-download .tag-group-box {
  border: 1px solid #f3f3f3;
  padding: 20px;
}
.page-download .tag-group-row:not(:first-child) {
  margin-top: 30px;
}
.page-download .tag-group-row .download-list {
  display: none;
}
.page-download .tag-head {
  margin-bottom: 20px;
}
.page-download .tag-head .title {
  cursor: pointer;
  color: #d95e25;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  position: relative;
  padding-left: 30px;
}
.page-download .tag-head .title:before {
  content: "\f0c9";
  font-size: 20px;
  font-family: "Font Awesome 6 Free";
  color: #d95e25;
  margin-right: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
.page-download .download {
  align-items: center;
  border: 1px solid #eee;
  display: grid;
  grid-template-columns: auto 30px;
  gap: 10px;
  padding: 8px 15px;
}
.page-download .download:not(:last-child) {
  margin-bottom: 10px;
}
.page-download .download:hover {
  background: #f6f6f6;
}
.page-download .download .file-name {
  margin: 0;
}
.page-download .download .file-name .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}
.page-download .download .file-name .tag-row .tag {
  border-radius: 3px;
  background: #f7e1ca;
  color: #281d19;
  padding: 5px;
  font-size: 0.825rem;
  line-height: 1;
}
.page-download .download .file-name a {
  color: #281d19;
  font-size: 1.0625rem;
  line-height: 1.4;
}
.page-download .download .file-name a:hover {
  text-decoration: underline;
}
.page-download .download .date {
  color: #999999;
  font-size: 0.875rem;
  line-height: 1.2;
}
.page-download .download .date i {
  margin-right: 5px;
}
.page-download .download .dl-btn {
  color: #d95e25;
  font-size: 1.5rem;
  text-align: center;
  width: 30px;
}
.page-download .download .dl-btn:hover {
  color: #e93c00;
}

/* -------------- download RWD --------------*/
@media (max-width: 640px) {
  .page-download .download {
    gap: 5px;
  }
}
/* -------------- links --------------*/
.page-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0 -10px;
}

/* -------------- links RWD --------------*/
@media (max-width: 1280px) {
  .page-links {
    gap: 0;
  }
}
@media (max-width: 1024px) {
  .page-links {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .page-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* -------------- contact --------------*/
.page-contact-frame {
  /* background: linear-gradient(0deg, #f0f0f0 70%, #fff 70%); */
}

.page-contact .top-des {
  margin-bottom: 50px;
}
.page-contact .top-des span {
  display: inline-block;
}
.page-contact .top-des p {
  color: #281d19;
  font-size: 1.0625rem;
  line-height: 1.4;
  margin: 0;
}
.page-contact .top-des p:not(:last-child) {
  margin-bottom: 10px;
}
.page-contact .top-des a {
  color: #2365af;
  display: inline-block;
}
.page-contact .top-des a:hover {
  text-decoration: underline;
}
.page-contact .map {
  border: 3px solid #fff;
  margin-bottom: 50px;
  height: 480px;
  position: relative;
}
.page-contact .map:after {
  position: absolute;
  bottom: -3px;
  left: 50%;
  background: url(../images/sh-map.png) no-repeat;
  background-size: contain;
  width: 1265px;
  height: 3px;
  background-position: top center;
  content: "";
  transform: translate(-50%, 100%);
  max-width: 100%;
}
.page-contact .map iframe {
  width: 100%;
  height: 100%;
}

/* -------------- contact RWD --------------*/
@media (max-width: 960px) {
  .page-contact .top-des {
    margin-bottom: 30px;
  }
  .page-contact .map {
    height: 400px;
    margin-bottom: 30px;
  }
}
@media (max-width: 640px) {
  .page-contact .top-des p {
    font-size: 1rem;
  }
  .page-contact .map {
    height: 300px;
  }
}
/* -------------- sitemap --------------*/
.sitemap-row {
  display: flex;
  flex-wrap: wrap;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.sitemap-row a {
  text-decoration: inherit;
}
.sitemap-row .map-item {
  border-right: 1px solid #fff;
  box-sizing: border-box;
  margin-bottom: 30px;
  width: 20%;
}
.sitemap-row .map-item .title-link {
  background: #d95e25;
  color: #fff;
  display: block;
  font-size: 18px;
  line-height: 1.2;
  padding: 15px 25px 12px;
  text-align: center;
}
.sitemap-row .map-item .title-link:hover {
  font-weight: bold;
}
.sitemap-row .map-list {
  border-left: 1px solid #ccc;
  margin-top: 15px;
  margin-bottom: 0;
  padding-left: 25px;
  padding-right: 20px;
}
.sitemap-row .map-list li {
  list-style: none;
}
.sitemap-row .map-list > li {
  padding-top: 8px;
  padding-bottom: 8px;
}
.sitemap-row .map-list .second-link {
  color: #333;
  font-size: 17px;
  line-height: 1.3;
}
.sitemap-row .map-list .second-link:hover {
  font-weight: bold;
  position: relative;
}
.sitemap-row .map-list .second-link:hover:before {
  background: #fff;
  content: "\f105";
  color: #333;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 16px;
  position: absolute;
  top: -1px;
  left: -30px;
}
.sitemap-row .third-list {
  padding-left: 25px;
  margin-top: 10px;
}
.sitemap-row .third-list > li {
  padding-top: 5px;
  padding-bottom: 5px;
}
.sitemap-row .third-list .third-link {
  color: #333;
  font-size: 16px;
  line-height: 1.3;
  position: relative;
}
.sitemap-row .third-list .third-link:before {
  color: #aaa;
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 14px;
  position: absolute;
  top: 1px;
  left: -15px;
}
.sitemap-row .third-list .third-link:hover {
  font-weight: bold;
}
.sitemap-row .third-list .third-link:hover:before {
  color: #333;
}

@media (max-width: 1024px) {
  .sitemap-row .map-item {
    width: 25%;
  }
}
@media (max-width: 960px) {
  .sitemap-row .map-item {
    width: 33.3333333333%;
  }
}
@media (max-width: 768px) {
  .sitemap-row .map-item {
    width: 50%;
  }
  .sitemap-row .map-item .title-link {
    padding: 15px;
    padding-bottom: 12px;
  }
  .sitemap-row .map-list {
    padding-left: 15px;
    padding-right: 10px;
  }
  .sitemap-row .map-list > li {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .sitemap-row .map-list .second-link {
    font-size: 1rem;
  }
  .sitemap-row .map-list .second-link:hover:before {
    left: -20px;
  }
  .sitemap-row .third-list {
    margin-top: 5px;
  }
}
/* -------------- sitemap RWD --------------*/
/* -------------- inquire --------------*/
.page-inquire .search-form {
  max-width: 330px;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.page-inquire .search-form input {
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #281d19;
  font-size: 1rem;
  line-height: 1;
  padding: 12px 20px;
  padding-right: 35px;
  width: 100%;
}
.page-inquire .search-form .submit {
  position: absolute;
  top: 50%;
  right: 15px;
  background: none;
  color: #281d19;
  font-size: 1rem;
  padding: 0;
  transform: translateY(-50%);
}
.page-inquire .search-form .submit:hover {
  color: #e93c00;
}
.page-inquire .table-limit {
  overflow-x: auto;
  width: 100%;
}
.page-inquire .table-limit table {
  min-width: 900px;
}

.page-inquire .table-limit .cenacel-btn {
  color: #e93c00;
  display: inline-block;
  margin-left: 5px;
  text-decoration: underline;
}
.page-inquire .table-limit .cenacel-btn:hover {
  font-weight: bold;
}

.page-inquire .table-limit .edit-btn {
  color: #0c76ff;
  display: inline-block;
  margin-left: 5px;
  text-decoration: underline;
}
.page-inquire .table-limit .edit-btn:hover {
  font-weight: bold;
}

blockquote {
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  padding: 2px 0;
  border-style: solid;
  border-color: #ccc;
  border-width: 0;
  padding-left: 20px;
  padding-right: 8px;
  border-left-width: 5px;
}

/* -------------- inquire RWD --------------*/

.remark-text {
  color: #f24;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}



.imemberlist{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.imemberlist .oneset{
  width: calc((100% - 10px*2) / 3);
}
.imemberlist .oneset a{
  display: flex;
  justify-content: center;
  height: 100%;
  background-color: #fff;
  transition: 0.3s;
}
.imemberlist .oneset a img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.unreset .member_table img{
  max-width: 150px!important;
}


.cookies-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(110%);
  transition: all 0.3s;
}
.cookies-box.show {
  transform: translateY(0);
}
.cookies-box .cookies-content {
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  padding: 15px 20px;
}
.cookies-box .cookies-content .des {
  padding-right: 20px;
  width: calc(100% - 100px);
}
.cookies-box .cookies-content .des p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
.cookies-box .cookies-content .des a {
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: underline;
}
.cookies-box .cookies-content .des a:hover {
  opacity: 0.5;
}
.cookies-box .cookies-content .btn-confirm {
  border: 1px solid white;
  background: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: block;
  padding: 13px 10px;
  text-align: center;
  width: 100px;
}
.cookies-box .cookies-content .btn-confirm:hover {
  background: white;
  color: #333;
}

@media (max-width: 640px) {
  .cookies-box .cookies-content {
    padding: 10px;
    display: block;
  }
  .cookies-box .cookies-content .des {
    padding-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .cookies-box .cookies-content .des p, .cookies-box .cookies-content .des a {
    font-size: 0.875rem;
  }
  .cookies-box .cookies-content .btn-confirm {
    padding: 10px 8px;
    font-size: 0.875rem;
  }
}
.policy-section {
  max-width: 1280px;
  margin: 30px auto;
}
.policy-section .policy-sec {
  margin-bottom: 40px;
}
.policy-section p, .policy-section li {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}
.policy-section li {
  margin-bottom: 5px;
}
.policy-section .title {
  font-weight: bold;
  font-size: x-large;
  margin-bottom: 0;
}

/* index book banner */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 書本最終停靠的「網格牆」 (終點狀態) */
.books-grid {
  display: flex;
  flex-wrap: wrap;
  /* 假設排成 10 欄 3 列，共 30 本 */
  /* display: grid;
  grid-template-columns: repeat(10, 190px);
  grid-template-rows: repeat(3, 276.59px);  */
  gap: 10px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* 單本書的樣式 */
.book {
  width: calc((100% - 10px*9) / 10);
  /* background-color: #ccc; */
  border-radius: 4px;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.2);
  /* 圖片定位關鍵設定 */
  /* background-size: cover; 
  background-position: center;
  background-repeat: no-repeat; */
  /* 疊加一層微弱的陰影，讓純色色塊在堆疊時更有層次，且不影響原色 */
}

.book img{
  width: 100%;
  aspect-ratio: calc(145/211);
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* 文字遮罩層 (初始隱藏) */
.text-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85); /* 白底半透明模糊效果 */
  backdrop-filter: blur(5px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0; /* 初始透明度為 0 */
  pointer-events: none; /* 避免擋住下方滑鼠事件 */
}

.main-title {
  font-size: 5.8vw;
  font-weight: bold;
  color: #0e4c90;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0px;
  line-height: 1;
}

.sub-title {
  font-size: 2.5vw;
  color: #333;
  margin: 1.2vw 0 0 0;
  line-height: 1;
}

@media (max-width: 768px) {  
  .books-grid {
    gap: 5px;
  }
  .book {
    width: calc((100% - 5px*9) / 10);
  }
}
@media (max-width: 480px) {  
  .books-grid {
    gap: 3px;
  }
  .book {
    width: calc((100% - 3px*9) / 10);
  }
}

.video-container {
  width: 100%;
  /* 修正：使用 350 / 1920 的百分比 */
  padding-top: 18.23%; 
  position: relative;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 加上此屬性可確保影片填滿且不變形 */
  object-fit: cover; 
}
