@font-face {
  font-family: "Noto_Sans_TC";
  src: url("fonts/Noto_Sans_TC/NotoSansTC-Regular.woff") format("woff"), url("fonts/Noto_Sans_TC/NotoSansTC-Regular.otf") format("opentype"), url("fonts/Noto_Sans_TC/NotoSansTC-Regular.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Noto_Sans_TC_bold";
  src: url("fonts/Noto_Sans_TC/NotoSansTC-Bold.otf") format("woff"), url("fonts/Noto_Sans_TC/NotoSansTC-Bold.otf") format("opentype"), url("fonts/Noto_Sans_TC/NotoSansTC-Bold.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Ubuntu";
  src: url("fonts/Ubuntu/Ubuntu-Regular.ttf") format("opentype");
}
*::-webkit-scrollbar {
  height: 10px;
  width: 12px;
  background-color: white;
  border-radius: 0;
}

*::-webkit-scrollbar-thumb {
  background-color: #999;
  border: 2px solid white;
}

html {
  padding: 0 !important;
  overflow-x: hidden;
}

body {
  font-size: 16px !important;
  width: 100%;
  overflow-x: hidden !important;
  background-color: white;
  color: #666 !important;
  min-height: 900px;
  font-family: "Titillium Web", Arial, "Noto Sans TC", sans-serif !important;
  letter-spacing: 0;
}
@media (min-width: 992px) {
  body {
    font-size: 17px !important;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 18px !important;
  }
}
body p, body ul, body li {
  font-size: 1rem;
  line-height: 1.67rem;
}
body p:last-child {
  margin-bottom: 0;
}
body a {
  text-decoration: none;
  transition: all 0.3s linear !important;
}
body img {
  transition: all 0.3s linear;
}
body mark, body .mark {
  color: #003399;
  padding: 0;
  font-weight: bold;
  background-color: transparent !important;
  margin: 0 0.2rem;
}

.container-fluid {
  --bs-gutter-x: 1.5rem;
  padding-right: calc(var(--bs-gutter-x) * 1) !important;
  padding-left: calc(var(--bs-gutter-x) * 1) !important;
}
@media (min-width: 769px) {
  .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 1.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 1.5) !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 3) !important;
    padding-left: calc(var(--bs-gutter-x) * 3) !important;
  }
}

.cat-list a .img-wrap:before {
  background: linear-gradient(to right, #333 0%, black 100%);
}

.btn {
  padding: 0.6rem 1.7rem;
  font-size: 1rem;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s linear;
}

.btn-sm {
  padding: 0.6rem 1rem;
  font-size: 1rem;
  transition: all 0.3s linear;
}

.btn-refresh {
  padding: 0.5rem !important;
  height: 40px !important;
  transition: all 0.3s linear;
}
.btn-refresh i {
  color: #999;
  transition: all 0.3s linear;
}
.btn-refresh:hover, .btn-refresh:active, .btn-refresh:focus {
  transform: rotate(180deg);
}
.btn-refresh:hover i, .btn-refresh:active i, .btn-refresh:focus i {
  color: #003399;
}

.btn-delete {
  border: 0;
  background-color: transparent !important;
  padding: 0;
  color: #999;
  font-size: 1rem;
}

.btn-back {
  color: white;
  font-size: 1;
  display: inline-flex;
  align-items: center;
  border: 0 !important;
  position: relative;
  overflow: hidden;
  padding-left: 0 !important;
  margin-bottom: -1px;
  border-radius: 0 !important;
}
.btn-back:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  background-color: #003399;
  transition: all 0.3s linear;
}
.btn-back img {
  display: inline-flex;
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}
.btn-back:hover, .btn-back:active {
  color: white !important;
}
.btn-back:hover:after, .btn-back:active:after {
  width: 100%;
}

.btn-play {
  color: white;
  text-align: center;
  border: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.btn-play i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  transition: all 0.3s linear;
}
.btn-play p {
  font-size: 1rem !important;
}
.btn-play:hover i {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.85);
  color: #003399;
}

.btn-dark {
  border: 0;
  color: white;
  background: linear-gradient(to right, #333 0%, black 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  width: 210px;
  overflow: hidden;
}
.btn-dark:before {
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #003399;
  transition: all 0.3s linear;
  z-index: -1;
}
.btn-dark:after {
  display: none;
}
.btn-dark img {
  position: relative;
  display: inline-flex;
  width: 20px;
  height: 20px;
  filter: invert(1) brightness(100);
  z-index: 2;
  transition: all 0.3s linear;
}
.btn-dark i {
  position: relative;
  display: inline-flex;
  font-size: 1rem;
  color: white;
  z-index: 2;
  transition: all 0.3s linear;
}
.btn-dark:hover:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #003399;
}
.btn-dark:hover img, .btn-dark:hover i {
  transform: translateX(10px);
}

.btn-light {
  border: 0;
  color: #666;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  width: 210px;
  overflow: hidden;
}
.btn-light:before {
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #003399;
  transition: all 0.3s linear;
  z-index: -1;
}
.btn-light:after {
  display: none;
}
.btn-light img {
  position: relative;
  display: inline-flex;
  width: 20px;
  height: 20px;
  filter: invert(1) brightness(100);
  z-index: 2;
  transition: all 0.3s linear;
}
.btn-light i {
  position: relative;
  display: inline-flex;
  font-size: 1rem;
  color: #666;
  z-index: 2;
  transition: all 0.3s linear;
}
.btn-light:hover {
  color: white;
}
.btn-light:hover:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #003399;
}
.btn-light:hover img {
  filter: invert(1) brightness(100);
  transform: translateX(10px);
}
.btn-light:hover i {
  transform: translateX(10px);
  color: white;
}

.btn-primary {
  background-color: #003399;
  color: white;
  border: 0;
}

.video-container {
  display: none;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  position: relative;
}
.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/*News*/
.news-list {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.news-list:after {
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to right, white 15%, #cccccc 80%);
  z-index: -1;
  transition: all 0.3s linear;
}
@media (min-width: 1200px) {
  .news-list {
    padding: 1rem 0;
  }
  .news-list:after {
    width: calc(100% - 4rem);
  }
}
.news-list .post-time {
  font-size: 1rem;
  color: #999;
  margin: 0.5rem 0;
}
.news-list .news-title {
  font-size: 1.3rem;
  color: black;
  margin-bottom: 0;
  font-weight: bold;
}
.news-list:hover:after {
  left: 0;
}
.news-list:hover .btn-dark:before {
  left: 0 !important;
}

.sub-news .post-time {
  font-size: 1rem;
  color: #999;
}
.sub-news .news-title {
  font-size: 1.6rem;
  color: black;
  margin-bottom: 1.5rem;
}
.sub-news .main-img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .sub-news .post-time {
    font-size: 1.3rem;
  }
  .sub-news .news-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

.last-news {
  border-radius: 10px;
  border: 1px solid #cccccc;
  background-color: #f6f6f6;
}
.last-news .title {
  font-size: 1.3rem;
  display: inline-flex;
  background-color: black;
  color: white;
  padding: 0.2rem 1.5rem;
  margin: 1.5rem 0 0 0;
  text-transform: uppercase;
  font-weight: bold;
}
.last-news .list {
  display: block;
  border-bottom: 1px solid #cccccc;
  padding: 1.5rem;
}
.last-news .list:last-child {
  border-bottom: 0;
}
.last-news .list .post-time {
  font-size: 0.88rem;
  color: #999;
  margin-bottom: 0.5rem;
}
.last-news .list .news-title {
  font-size: 1rem;
  color: black;
  margin-bottom: 0;
  transition: all 0.3s linear;
}
.last-news .list:hover .news-title {
  color: #003399;
}
@media (min-width: 1200px) {
  .last-news .title {
    font-size: 1.6rem;
  }
  .last-news .list .news-title {
    font-size: 1.3rem;
  }
  .last-news .list .post-time {
    font-size: 1rem;
  }
}

.control {
  margin-top: 3rem;
}
.control a {
  font-size: 0.88rem;
  font-weight: bold;
  color: black;
  text-transform: uppercase;
  display: inline-flex;
  align-content: center;
  transition: all 0.3s linear;
}
.control a i {
  font-size: 1.1rem;
  font-weight: normal;
}
.control a:hover {
  color: #003399;
}

/*Catalog*/
.cat-list a {
  display: block;
  color: black;
}
.cat-list a .cat-name {
  font-size: 1rem;
  font-weight: normal;
  margin: 1rem 0 0 0;
}
.cat-list a .img-wrap {
  position: relative;
}
.cat-list a .img-wrap img {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 0;
}
.cat-list a .img-wrap:before {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 50%;
  top: 30%;
  content: "\f356";
  font-family: "Bootstrap-icons";
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transform: translate(-50%, -30%);
  opacity: 0;
  transition: all 0.3s linear;
}
.cat-list a .img-wrap:after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: black;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s linear;
}
@media (min-width: 1200px) {
  .cat-list a .cat-name {
    font-size: 1.3rem;
  }
  .cat-list a:hover .img-wrap:before {
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  .cat-list a:hover .img-wrap:after {
    opacity: 0.5;
  }
}

/*Video*/
.btn-video {
  border: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.btn-video img {
  width: 100%;
  height: auto;
  transition: all 0.3s linear;
}
.btn-video .play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-video .play-icon i {
  color: white;
  font-size: 1.2rem;
}
.btn-video .play-icon:after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: black;
  border-radius: 50%;
  opacity: 0.6;
  z-index: -1;
}
@media (min-width: 992px) {
  .btn-video:hover img {
    transform: scale(1.15);
  }
}

.video-name {
  font-size: 1rem;
  color: black;
  letter-spacing: 0.1rem;
  font-weight: normal;
  margin-top: 1rem;
}
@media (min-width: 769px) {
  .video-name {
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=media.css.map */