body {
  background: #ffffff;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.tptih1 {
  color: #003674;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .tptih1 {
    font-size: 1.2rem;
  }
}

.tptih4 {
  color: #E0B24F;
  font-size: 1.1rem;
}

.tptiContent {
  color: #002147;
  font-size: 1.1rem;
  line-height: 1.8rem;
}

.itemTitle {
  font-weight: 600;
  color: #002147;
  font-size: 1.2rem;
  display: block;
}

.awardsTitle {
  font-weight: 600;
  color: #002147;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 10px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .awardsTitle {
    font-size: 1.1rem;
  }
}

.awardsContent {
  color: #002147;
  font-size: 1.1rem;
  line-height: 1.8rem;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .awardsContent {
    font-size: 0.8rem;
  }
}

.tptiContentImgBox {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 700px;
  margin: 2rem auto;
  aspect-ratio: 3/4;
  border: 1px solid rgba(224, 178, 79, 0.7098039216);
}
@media screen and (max-width: 768px) {
  .tptiContentImgBox {
    max-width: 100%;
  }
}
.tptiContentImgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

.btnMoreG {
  background: #E0B24F;
  color: #ffffff;
  font-size: 0.8rem;
  padding: 0.8rem;
  border-radius: 0px;
  border: none;
  cursor: pointer;
}
.btnMoreG:hover {
  background: rgba(224, 178, 79, 0.5019607843);
}

.btnMoreB {
  background: #003674;
  color: #ffffff;
  font-size: 0.8rem;
  padding: 0.8rem;
  border-radius: 0px;
  border: none;
  cursor: pointer;
  width: 8rem;
}
.btnMoreB:hover {
  background: rgba(0, 54, 116, 0.5019607843);
}

.btnSignup {
  background: #e6e6e6;
  color: #003674;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 0px;
  border: none;
  cursor: pointer;
}
.btnSignup:hover {
  background: rgba(230, 230, 230, 0.5019607843);
}

.bgGline {
  background: url(../img/bg/bgGline.png) no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
}

.bgBline {
  background: url(../img/bg/bgBline.png) no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
}


.historyBoxContainer {
  height: 100%;
  transform: translateY(14%); 
}


@media screen and (max-width: 992px) {
  .historyBoxContainer {
    height: -moz-fit-content;
    height: fit-content;
  }
}

.historyBox {
  position: relative; /* 為 ::before 定位做準備 */
  background-image: url(../img/bg/bgMain3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #E0B24F;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  width: 65%;
  padding: 1.6rem 1.6rem;
  z-index: 1000;
  overflow: hidden; /* 限制 ::before 溢出 */
}

/* 加上霧狀遮罩 */
.historyBox::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8); /* 霧狀白色 */
  z-index: -1; /* 確保在內容底下 */
}

@media screen and (max-width: 992px) {
  .historyBox {
    padding: 2rem 1.1rem;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .historyBox {
    height: -moz-fit-content;
    height: fit-content;
    padding: 1.1rem 1.1rem;
  }
}

.newsBox {
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 992px) {
  .newsBox {
    padding: 2rem 1.1rem;
  }
}
.newsBox .newsListBox {
  margin-left: 5rem;
}
@media screen and (max-width: 992px) {
  .newsBox .newsListBox {
    margin-left: 0;
  }
}
.newsBox .newsListItem {
  width: 100%;
  padding: 1.2rem 1.1rem;
  border-top: 1px solid #EBEBEB;
}
.newsBox .newsListItem:last-child {
  border-bottom: 1px solid #EBEBEB;
}
@media screen and (max-width: 768px) {
  .newsBox .newsListItem {
    flex-wrap: wrap;
  }
}
.newsBox .newsListItem .newsListItemDate {
  flex-grow: 1;
  color: #002147;
}
@media screen and (max-width: 768px) {
  .newsBox .newsListItem .newsListItemDate {
    margin-bottom: 1.1rem;
  }
}
.newsBox .newsListItem .newsListItemTitle {
  flex-grow: 1;
  flex-basis: 260px;
  color: #002147;
}
@media screen and (max-width: 768px) {
  .newsBox .newsListItem .newsListItemTitle {
    flex-basis: 40px;
    margin-bottom: 1.1rem;
  }
}
.newsBox .newsListItem .newsListItemContent {
  flex-grow: 8;
  flex-basis: 100px;
  color: #002147;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .newsBox .newsListItem .newsListItemContent {
    flex-grow: 1;
    flex-basis: 100px;
	padding-left: 10px;
  }
}

.dividerBox {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background: #ffffff;
  margin: 2rem 0rem 0rem 0rem;
}
.dividerBox .dividerImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.dividerBox .dividerImg.mirror {
  transform: scaleX(-1);
}

.dividerBoxInnerTop {
  margin-top: 55px;
}

.chairmanBox {
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 992px) {
  .chairmanBox {
    padding: 2rem 1.1rem;
  }
}
.chairmanBox .chairmanListBox {
  margin-bottom: 2rem;
  margin-left: 5rem;
  border-bottom: 1px solid rgba(224, 178, 78, 0.4392156863);
}
.chairmanBox .chairmanListBox:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .chairmanBox .chairmanListBox {
    margin-left: 0;
  }
}
.chairmanBox .chairmanListItem {
  width: 100%;
  padding: 1.2rem 1.1rem;
}
@media screen and (max-width: 992px) {
  .chairmanBox .chairmanListItem {
    flex-wrap: wrap;
    padding: 1.1rem 0.5rem;
  }
}
.chairmanBox .chairmanListItem .chairmanListItemTitleBox {
  width: 15%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1.1rem 0rem;
}
@media screen and (max-width: 992px) {
  .chairmanBox .chairmanListItem .chairmanListItemTitleBox {
    width: 10%;
  }
}
@media screen and (max-width: 768px) {
  .chairmanBox .chairmanListItem .chairmanListItemTitleBox {
    width: 100%;
  }
}
.chairmanBox .chairmanListItem .chairmanListItemTitleBox .chairmanListItemTitle {
  color: #E0B24F;
  font-size: 1.2rem;
}
@media screen and (max-width: 992px) {
  .chairmanBox .chairmanListItem .chairmanListItemTitleBox .chairmanListItemTitle {
    font-size: 1.1rem;
  }
}
.chairmanBox .chairmanListItem .chairmanListItemImgBox {
  width: 35%;
}
@media screen and (max-width: 992px) {
  .chairmanBox .chairmanListItem .chairmanListItemImgBox {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .chairmanBox .chairmanListItem .chairmanListItemImgBox {
    width: 100%;
  }
}
.chairmanBox .chairmanListItem .chairmanListItemImgBox .chairmanImgBox {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 3/4;
  border: 1px solid rgba(224, 178, 79, 0.7098039216);
}
@media screen and (max-width: 992px) {
  .chairmanBox .chairmanListItem .chairmanListItemImgBox .chairmanImgBox {
    max-width: 150px;
  }
}
.chairmanBox .chairmanListItem .chairmanListItemImgBox .chairmanImgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.chairmanBox .chairmanListItem .chairmanListItemImgBox .chairmanNameBox {
  width: -moz-fit-content;
  width: fit-content;
  background: #E0B24F;
  padding: 0.5rem 1.1rem;
  margin-top: 1.1rem;
  position: relative;
}
.chairmanBox .chairmanListItem .chairmanListItemImgBox .chairmanNameBox::after {
  content: "";
  position: absolute;
  top: 0;
  right: -28.04px;
  width: 0;
  height: 0;
  border-top: 39.04px solid #E0B24F;
  border-right: 28.04px solid transparent;
}
@media screen and (max-width: 992px) {
  .chairmanBox .chairmanListItem .chairmanListItemImgBox .chairmanNameBox::after {
    right: -15.04px;
    border-top: 31.35px solid #E0B24F;
    border-right: 15.04px solid transparent;
  }
}
.chairmanBox .chairmanListItem .chairmanListItemImgBox .chairmanNameBox .tptih2 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .chairmanBox .chairmanListItem .chairmanListItemImgBox .chairmanNameBox .tptih2 {
    font-size: 0.8rem;
  }
}
.chairmanBox .chairmanListItem .chairmanListItemContentBox {
  width: 50%;
  padding: 0rem 1.1rem;
}
@media screen and (max-width: 992px) {
  .chairmanBox .chairmanListItem .chairmanListItemContentBox {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .chairmanBox .chairmanListItem .chairmanListItemContentBox {
    width: 100%;
    margin-top: 40px;
  }
}
.chairmanBox .chairmanListItem .chairmanListItemContentBox p {
  font-size: 1.1rem;
  color: #002147;
  line-height: 1.8rem;
}

.awardsBox {
  padding: 1.1rem 3rem;
}
@media screen and (max-width: 992px) {
  .awardsBox {
    padding: 2rem 1.1rem;
  }
}
.awardsBox .item {
  background: #f6f6f6;
  padding: 1.2rem 2rem;
}
.awardsBox .awardsItemBox {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f6f6;
}
.awardsBox .awardsItemBox .awardImg {
  width: 50px;
  height: auto;
  margin: 20px;
}
@media screen and (max-width: 992px) {
  .awardsBox .awardsItemBox .awardImg {
    width: 30px;
  }
}
.awardsBox .awardsItemBox .awardsContentBox {
  max-width: 800px;
}
@media screen and (max-width: 992px) {
  .awardsBox .awardsItemBox .awardsContentBox {
    width: 60%;
    max-width: 100%;
  }
}

.owl-nav {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 1.1rem;
  display: flex;
  justify-content: space-between;
}

.owl-prev span, .owl-next span {
  font-size: 2rem;
  line-height: 2rem;
}

.eventsBox {
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 992px) {
  .eventsBox {
    padding: 2rem 1.1rem;
  }
}
.eventsBox .eventCard {
  border: 1px solid #E0B24F;
  background: #ffffff;
  width: 100%;
  height: 100%;
}
.eventsBox .eventCard .eventCardImgBox {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
}
.eventsBox .eventCard .eventCardImgBox .eventCardImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.eventsBox .eventCard .eventCardImgBox .eventTagBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 40px;
  padding: 0.5rem 0.5rem 0.5rem 1.1rem;
  background: #E0B24F;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  color: #ffffff;
}
.eventsBox .eventCard .eventCardImgBox .eventTagBox .eventTag {
  position: relative;
}
.eventsBox .eventCard .eventCardImgBox .eventTagBox .eventTag::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -52px;
  width: 0;
  height: 0;
  border-top: 40px solid #E0B24F;
  border-right: 30px solid transparent;
}
.eventsBox .eventCard .eventCardContentBox {
  padding: 0.5rem 1.1rem;
  min-height: 210px;
  max-height: 210px;
}
.eventsBox .eventCard .eventCardContentBox .eventSubBox {
  padding: 0.5rem 0rem;
  margin-bottom: 10px;
}
.eventsBox .eventCard .eventCardContentBox .eventSubTag {
  background: #00317b;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.4rem 1.1rem;
  margin-right: 0.4rem;
  border-radius: 99rem;
}
.eventsBox .eventCard .eventCardContentBox .tptih2 {
  color: #002965;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  padding: 0.8rem 0rem 1.1rem;
  border-bottom: 1px solid rgba(224, 178, 79, 0.1607843137);
}
.eventsBox .eventCard .eventCardContentBox .tptih4 {
  color: #002147;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.eventsBox .eventCard .eventCardBtnBox {
  padding: 0.5rem 1.1rem 1.1rem;
}

.sponsorsBox {
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 992px) {
  .sponsorsBox {
    padding: 2rem 1.1rem;
  }
}
.sponsorsBox .sponsorsItem {
  width: 25%;
  height: auto;
  padding: 1.1rem;
  margin: 0.5rem 0;
}
@media screen and (max-width: 992px) {
  .sponsorsBox .sponsorsItem {
    width: 50%;
    height: auto;
  }
}
.sponsorsBox .sponsorsItem .sponsorsImg {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.pagination .page-item {
  border-radius: 0px;
}
.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
  background: #e5e5e5;
  color: #ffffff;
  border-radius: 0;
  padding: 0.375rem 0.75rem;
}
.pagination .page-item.active .page-link {
  background: #E0B24F;
  color: #ffffff;
}
.pagination .page-link {
  color: #E0B24F;
  border: none;
  padding: 0.375rem 1.1rem;
  border-radius: 0px;
}
.pagination .page-link:hover {
  background: #E0B24F;
  color: #ffffff;
}

.innerImgCarousel .owl-nav {
  position: absolute;
  top: 46%;
}
.innerImgCarousel .owl-nav button.owl-prev, .innerImgCarousel .owl-nav button.owl-next {
  background: #E0B24F;
  color: #ffffff;
  border-radius: 0px;
  padding: 0.075rem 0.75rem 0.375rem !important;
  border: none;
}
.innerImgCarousel .owl-nav button.owl-prev:hover, .innerImgCarousel .owl-nav button.owl-next:hover {
  background: rgba(224, 178, 79, 0.5019607843);
}
.innerImgCarousel .owl-dots {
  display: flex;
  justify-content: center;
  margin: 20px auto;
}
.innerImgCarousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #dedede;
  border-radius: 50%;
  margin-right: 5px;
}
.innerImgCarousel .owl-dots .owl-dot.active {
  background: #E0B24F;
}
.nav-tabs .nav-link {
  border: none;
  border-radius: 0.5rem;
  margin-right: 0.5rem;
  background-color: #f8f9fa;
  color: #000000;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.nav-tabs .nav-link:hover {
  background-color: #e2e6ea;
}
.nav-tabs .nav-link.active {
  background-color: #003674;
  color: white;
}
.tab-pane {
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.card-style {
  padding: 1.5rem;
  border-radius: 1.1rem;
  background: #ffffff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.card ol {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.card ol li {
  display: list-item !important;
}/*# sourceMappingURL=index.css.map */