@charset "UTF-8";
/*  ===== 斷點變數 ===== */
/*  ===== 往上適應 ===== */
/*  ===== 往下適應 ===== */
/*  ===== 範圍內適應 ===== */
/*  ===== 基本漸層背景設定 ===== */
/*  ===== 以 em 計算font-size, letter-spacing(RWD時方便使用) ===== */
/*  ===== 文字置中時的 letter spacing 偏移修正 ===== */
/*  ===== letter spacing 偏移重設 ===== */
/*  ===== firefox font weight bold 統一設定為 normal (firefox在小字為粗體的時候會過粗) ===== */
/*  ===== a連結清除預設值 ===== */
/*  ===== 字體設定（全域/英文/中文) ===== */
/*  ===== 排版相關 ===== */
/*  ===== 超過文字省略為...(可設定行數) ===== */
/*  ===== 捲軸樣式設定 ===== */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

/**
 * Allows you to use retina images at various pixel densities.
 * Examples:
 *
 *   +retina(/images/mypic.jpg, 2);
 *   +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 *
 * @param  {Value}  $path               The path to the file name minus extension.
 * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * @param  {Value}  $extras: null       Any other `background` values to be added.
 */
.header {
  position: relative;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  padding: 17px 50px 17px 50px;
}

@media (max-width: 1879px) {
  .header {
    font-size: 0.88889em;
  }
}

@media (max-width: 1199px) {
  .header {
    height: auto;
  }
}

.header .menu-btn {
  display: none;
  margin-left: auto;
}

@media (max-width: 1589px) {
  .header .menu-btn {
    display: inline-block;
  }
}

.header .logo-img img {
  width: 288px;
  height: 57px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 991px) {
  .header .logo-img img {
    width: 179px;
    height: 35px;
  }
}

.header .lang-btn {
  color: #fff;
  display: inline-block;
  background-color: #3b5a9d;
  width: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  text-decoration: none;
}

@media (max-width: 1589px) {
  .header .lang-btn {
    display: none;
  }
}

.header .lang-btn:hover {
  opacity: .8;
}

.header .drop-down-group {
  background-color: #ffffff;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 1589px) {
  .header .drop-down-group {
    display: none;
    margin-left: 0px;
    position: absolute;
    z-index: 100;
    top: 100px;
    left: 0;
    right: 0;
    padding: 20px 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 2px solid #3b5a9d;
    border-bottom: 2px solid #3b5a9d;
  }
}

@media (max-width: 991px) {
  .header .drop-down-group {
    top: 69px;
  }
}

.header .drop-down-group .drop-down-item {
  max-width: 111px;
  padding: 8px 7px;
  font-size: 1em;
  margin-right: 2.1vw;
  position: relative;
  padding-bottom: 6px;
}

.header .drop-down-group .drop-down-item.lang-item {
  display: none;
}

@media (max-width: 1589px) {
  .header .drop-down-group .drop-down-item.lang-item {
    display: block;
  }
}

.header .drop-down-group .drop-down-item.active .navbar-link {
  color: #3b5a9d;
}

@media (max-width: 1589px) {
  .header .drop-down-group .drop-down-item {
    padding: 10px 0;
  }
}

@media (min-width: 1590px) {
  .header .drop-down-group .drop-down-item:hover .open {
    display: none;
  }
  .header .drop-down-group .drop-down-item:hover .cancel-btn {
    display: inline-block;
  }
  .header .drop-down-group .drop-down-item:hover .navbar-link {
    color: #3b5a9d;
    text-decoration: none;
  }
  .header .drop-down-group .drop-down-item:hover .my-drop-down-list {
    display: block;
  }
}

.header .drop-down-group .drop-down-item .navbar-link {
  color: #000000;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-weight: 500;
  letter-spacing: 1.2px;
}

.header .drop-down-group .drop-down-item .navbar-link.lang {
  text-decoration: underline;
  color: #fff;
  display: inline-block;
  background-color: #3b5a9d;
  width: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  text-decoration: none;
}

@media (min-width: 1200px) {
  .header .drop-down-group .drop-down-item .navbar-link.lang:hover {
    opacity: .8;
  }
}

.header .drop-down-group .drop-down-item .open {
  display: inline-block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.header .drop-down-group .drop-down-item .cancel-btn {
  display: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.header .drop-down-group .drop-down-item .my-drop-down-list {
  display: none;
  list-style: none;
  position: absolute;
  z-index: 100;
  top: auto;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  left: -18px;
  width: 225px;
  padding: 15px 31px;
  background-color: #ffffff;
}

@media (max-width: 1439px) {
  .header .drop-down-group .drop-down-item .my-drop-down-list {
    position: relative;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: 10px;
    left: 0;
  }
  .header .drop-down-group .drop-down-item .my-drop-down-list.active {
    display: block;
  }
}

.header .drop-down-group .drop-down-item .my-drop-down-list::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 15px;
  left: 11px;
  background-color: #000000;
  width: 1px;
}

.header .drop-down-group .drop-down-item .my-drop-down-list .drop-down-item-link {
  font-size: 0.83333em;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  margin-bottom: 15px;
  position: relative;
}

.header .drop-down-group .drop-down-item .my-drop-down-list .drop-down-item-link::before {
  content: "";
  top: 50%;
  position: absolute;
  left: -19px;
  width: 9px;
  height: 1px;
  background-color: #000000;
}

.header .drop-down-group .drop-down-item .my-drop-down-list .drop-down-item-link .drop-down-link {
  color: #000000;
}

.header .drop-down-group .drop-down-item .my-drop-down-list .drop-down-item-link .drop-down-link:hover {
  color: #3b5a9d;
  text-decoration: none;
}

.header .drop-down-group .drop-down-item.i-1 {
  margin-right: 55px;
}

.header .drop-down-group .drop-down-item.i-last {
  margin-right: 0;
}

.lightboxOverlay {
  position: fixed;
}

@media (max-width: 1199px) {
  .lightbox {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}

@media (max-width: 1199px) {
  .canvas-bg {
    display: none;
  }
}

.bg-contain {
  background-size: contain;
  background-position: center center;
}

.canvas-bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}

.mains-container {
  background-color: #fff;
  padding-top: 50px;
  padding-right: 65px;
  padding-left: 65px;
  position: relative;
  border: 2px solid #E5E5E5;
}

@media (max-width: 1199px) {
  .mains-container {
    padding-right: 73px;
    padding-left: 73px;
  }
}

@media (max-width: 575px) {
  .mains-container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.mains-container::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -100%;
  right: -100%;
  height: 1px;
  background-color: #E5E5E5;
}

@media (max-width: 1199px) {
  .mains-container::before {
    display: none;
  }
}

.mains-container::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -100%;
  right: -100%;
  height: 1px;
  background-color: #E5E5E5;
}

@media (max-width: 1199px) {
  .mains-container::after {
    display: none;
  }
}

.mains-container .main-line {
  position: absolute;
  background: url("../images/main-line.png") no-repeat;
  background-size: contain;
  width: 11px;
  height: 11px;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .mains-container .main-line {
    background: url("../images/main-line@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .mains-container .main-line {
    background: url("../images/main-line@2x.png") no-repeat;
    background-size: contain;
  }
}

.mains-container .main-line.top-left {
  top: 13px;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 575px) {
  .mains-container .main-line.top-left {
    display: none;
  }
}

.mains-container .main-line.bottom-left {
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-54%, 62%);
          transform: translate(-54%, 62%);
}

@media (max-width: 575px) {
  .mains-container .main-line.bottom-left {
    display: none;
  }
}

.mains-container .main-line.top-right {
  top: 13px;
  right: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

@media (max-width: 575px) {
  .mains-container .main-line.top-right {
    display: none;
  }
}

.mains-container .main-line.bottom-right {
  bottom: 0;
  right: 0;
  -webkit-transform: translate(50%, 62%);
          transform: translate(50%, 62%);
}

@media (max-width: 575px) {
  .mains-container .main-line.bottom-right {
    display: none;
  }
}

@media (max-width: 1199px) {
  main {
    background-color: #f5f5f5;
  }
}

.join-school-section {
  margin: 0px -1.25px 0px -1.25vw;
  padding: 58px 4.3vw 35px 4.3vw;
  background-color: #fff;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .join-school-section {
    padding: 0px 0px 39px 2.2vw;
    margin: 0px;
    padding: 17px 0px 39px 0;
  }
}

@media (max-width: 575px) {
  .join-school-section {
    padding: 0px 0px 15px 0;
    margin: 0px;
  }
}

.join-school-section .join-card {
  padding: 0 1.25vw;
  display: inline-block;
  vertical-align: top;
  max-width: 25%;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  margin-bottom: 23px;
}

@media (max-width: 1439px) {
  .join-school-section .join-card {
    max-width: calc(100% /3);
    -ms-flex-preferred-size: calc(100% /3);
        flex-basis: calc(100% /3);
  }
}

@media (max-width: 1199px) {
  .join-school-section .join-card {
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .join-school-section .join-card {
    margin-right: 9.72vw;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
    padding: 0;
  }
}

.join-school-section .join-card:nth-last-of-type(1) {
  margin-right: 0;
}

.join-school-section .join-card .join-header {
  padding: 0px 12px 0px 12px;
  width: 100%;
  font-size: 1.11111em;
  font-weight: 500;
  line-height: 2.5;
  color: #ffffff;
  background-color: #3b5a9d;
  margin-bottom: 12px;
}

@media (max-width: 1199px) {
  .join-school-section .join-card .join-header {
    min-width: 296px;
  }
}

@media (max-width: 991px) {
  .join-school-section .join-card .join-header {
    min-width: 226px;
  }
}

@media (max-width: 575px) {
  .join-school-section .join-card .join-header {
    width: 100%;
  }
}

.join-school-section .join-card .join-header a {
  color: #fff;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.join-school-section .join-card .join-header a:hover {
  opacity: .7;
  text-decoration: none;
}

.join-school-section .join-card .join-list {
  list-style: none;
  padding-left: 17px;
  margin: 0;
}

@media (max-width: 575px) {
  .join-school-section .join-card .join-list {
    padding-left: 31px;
  }
}

.join-school-section .join-card .join-list .item {
  margin-bottom: 13px;
}

.join-school-section .join-card .join-list .item a {
  font-size: 0.88889em;
  letter-spacing: 1px;
  font-weight: 500;
  color: #000000;
  position: relative;
}

.join-school-section .join-card .join-list .item a:hover {
  text-decoration: none;
  color: #3b5a9d;
}

.join-school-section .join-card .join-list .item a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10px;
  width: 1px;
  background-color: #dea56a;
}

.news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  padding: 40px 4vw 45px 0;
  border-bottom: 0.5px solid #3b5a9d;
}

@media (max-width: 1439px) {
  .news-card {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.news-card:nth-last-of-type(1) {
  border-bottom: none;
}

@media (max-width: 1499px) {
  .news-card {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 40px 2vw 45px 0;
  }
}

@media (max-width: 575px) {
  .news-card {
    padding: 20px 10px 16px 0;
  }
}

@media (max-height: 900px) {
  .news-card {
    padding: 25px 2vw 25px 0;
  }
}

.news-card .data {
  -ms-flex-preferred-size: 72px;
      flex-basis: 72px;
  max-width: 72px;
}

@media (max-width: 1499px) {
  .news-card .data {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.news-card .data .date {
  display: block;
  padding-bottom: 9px;
  margin: 0;
  font-family: 'Fjalla One', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" , "蘋果儷中黑",'sans-serif' , Arial;
  font-size: 1.11111em;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #3b5a9d;
  position: relative;
}

.news-card .data .date::after {
  content: "";
  width: 46px;
  height: 2px;
  background-color: #9dacce;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}

@media (max-width: 1499px) {
  .news-card .data .date {
    display: none;
  }
}

.news-card .data .year {
  display: block;
  font-family: 'Fjalla One', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" , "蘋果儷中黑",'sans-serif' , Arial;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #000000;
  font-size: 1.11111em;
  padding-top: 9px;
}

@media (max-width: 1499px) {
  .news-card .data .year {
    display: none;
  }
}

.news-card .data .mobile-date {
  display: none;
  margin-bottom: 5px;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-size: 0.77778em;
  color: #000000;
}

@media (max-width: 1499px) {
  .news-card .data .mobile-date {
    display: block;
  }
}

.news-card .news-card-content {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
  padding-left: 3.4vw;
}

@media (max-width: 1879px) {
  .news-card .news-card-content {
    padding-left: 2vw;
  }
}

@media (max-width: 1499px) {
  .news-card .news-card-content {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
  }
}

.news-card .news-card-content .content-title {
  font-size: 1.33333em;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  letter-spacing: 1.44px;
  color: #3b5a9d;
  margin-bottom: 14px;
}

@media (max-width: 575px) {
  .news-card .news-card-content .content-title {
    font-size: 0.88889em;
    letter-spacing: 1.05px;
  }
}

.news-card .news-card-content .content-description {
  line-height: 1.79;
  color: #333333;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  font-size: 0.88889em;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-weight: 500;
  color: #333333;
}

@media (max-width: 575px) {
  .news-card .news-card-content .content-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
    padding-right: 48px;
    letter-spacing: 0.88px;
  }
}

.news-card .btn-group {
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  max-width: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1499px) {
  .news-card .btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.news-card .btn-group .more-btn {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  -webkit-transition: -webkit-filter .3s ease;
  transition: -webkit-filter .3s ease;
  transition: filter .3s ease;
  transition: filter .3s ease, -webkit-filter .3s ease;
  font-size: 0.77778em;
  font-weight: 500;
  letter-spacing: 0.88px;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  background-color: #3b5a9d;
  margin-bottom: 0;
}

.news-card .btn-group .more-btn:hover {
  text-decoration: none;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

@media (max-width: 991px) {
  .news-card .btn-group .more-btn {
    margin-bottom: 0;
    margin-top: 9px;
    padding: 6px 8px;
  }
}

.news-card .btn-group .download-btn {
  display: inline-block;
  text-decoration: underline;
}

.news-card .btn-group .download-btn .download-img {
  display: inline-block;
  padding: 10px 6px 8px 6px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.news-card .btn-group .download-btn .download-imgimg {
  width: 100%;
}

.news-card .btn-group .download-btn .download-text {
  font-family: NotoSansCJKtc;
  font-weight: bold;
  font-size: 0.77778em;
  color: #000000;
  line-height: 1.43;
}

@media (min-width: 1200px) {
  .index-container {
    margin-top: -100px;
  }
}

.index .hr-line {
  padding: 0 1vw;
}

@media (max-width: 575px) {
  .index .hr-line {
    padding: 0 13px;
  }
}

.index .hr-line .line-1 {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
}

.index .hr-line .line-2 {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}

.index .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-right: 4vw;
  border-bottom: solid 0.5px #3b5a9d;
}

@media (max-width: 1879px) {
  .index .section-header {
    padding-right: 2vw;
  }
}

@media (max-width: 767px) {
  .index .section-header {
    border-bottom: none;
  }
}

@media (max-width: 575px) {
  .index .section-header {
    margin-bottom: 7px;
  }
}

.index .section-header .header-title {
  color: #3b5a9d;
  font-weight: 500;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-size: 2.22222em;
  letter-spacing: 2.4px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .index .section-header .header-title {
    font-size: 1.11111em;
    letter-spacing: 1.2px;
  }
}

.index .section-header .news-title {
  font-size: 1.66667em;
  font-family: 'Fjalla One','Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  color: #000000;
  margin-left: 16px;
  margin-top: 3px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .index .section-header .news-title {
    font-size: 0.77778em;
    letter-spacing: normal;
    margin-left: 2px;
  }
}

@media (max-width: 575px) {
  .index .section-header .news-title {
    margin-bottom: 0;
  }
}

.index .section-title {
  color: #3b5a9d;
  font-weight: 500;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-size: 2.22222em;
  letter-spacing: 2.4px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .index .section-title {
    font-size: 1.11111em;
    letter-spacing: 1.2px;
  }
}

.index .section-small-title {
  font-size: 1.66667em;
  font-family: 'Fjalla One','Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  color: #000000;
  margin-left: 16px;
  margin-bottom: 3px;
}

@media (max-width: 767px) {
  .index .section-small-title {
    font-size: 0.77778em;
    letter-spacing: 1.2px;
    margin-left: 2px;
    margin-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .index .section-small-title {
    margin-bottom: 0;
  }
}

.index .more-btn {
  -webkit-transition: -webkit-filter .3s ease;
  transition: -webkit-filter .3s ease;
  transition: filter .3s ease;
  transition: filter .3s ease, -webkit-filter .3s ease;
  display: inline-block;
  font-size: 0.77778em;
  padding: 6px;
  text-align: center;
  background-color: #3b5a9d;
  color: white;
  min-width: 84px;
}

.index .more-btn:hover {
  text-decoration: none;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

@media (max-width: 991px) {
  .index .more-btn {
    margin-bottom: 0;
    margin-top: 9px;
    padding: 6px 8px;
  }
}

.index .news-section {
  background-color: #ffffff;
}

.index .news-section .news-bg-img {
  height: 100%;
  max-width: 100%;
  width: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  background-color: #3b5a9d;
}

@media (max-width: 1879px) {
  .index .news-section .news-bg-img {
    height: 100%;
  }
}

@media (max-width: 1199px) {
  .index .news-section .news-bg-img {
    padding-top: calc(100% / 960 * 793);
  }
}

@media (max-width: 575px) {
  .index .news-section .news-bg-img {
    display: none;
  }
}

.index .news-section .news-bg-img.mobile {
  display: none;
}

@media (max-width: 575px) {
  .index .news-section .news-bg-img.mobile {
    display: block;
  }
}

.index .news-section .news-block {
  width: 100%;
  max-width: 100%;
  padding: 63px 0 0px 5.47vw;
}

@media (max-width: 1879px) {
  .index .news-section .news-block {
    padding: 63px 0 0px 2.47vw;
  }
}

@media (max-width: 575px) {
  .index .news-section .news-block {
    padding: 38px 0 0 6.21vw;
  }
}

.index .news-section .news-block .section-header {
  padding-bottom: 34px;
}

@media (max-width: 1199px) {
  .index .news-section .news-block .section-header {
    padding-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .index .news-section .news-block .section-header {
    padding-bottom: 0;
  }
}

.index .news-section .swiper-pagination-bullets {
  margin-bottom: 0;
  left: unset;
  width: 41.6%;
  right: 10px;
  bottom: 30px;
  padding-right: 0;
}

@media (max-width: 1439px) {
  .index .news-section .swiper-pagination-bullets {
    bottom: 13px;
    width: auto;
    text-align: center;
    padding: 0 10px;
    left: 40px;
    right: 40px;
  }
}

@media (max-width: 575px) {
  .index .news-section .swiper-pagination-bullets {
    margin-bottom: 0;
    display: none;
  }
}

.index .news-section .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  margin-bottom: 10px;
  display: inline-block;
  text-align: center;
}

.index .news-card:nth-of-type(3) {
  border-bottom: none;
}

.index .news-card:nth-of-type(4) {
  display: none;
}

.index .swiper-item {
  position: relative;
}

.index .swiper-item .swiper-badge-block {
  min-width: 350px;
  width: 350px;
  position: absolute;
  bottom: 16px;
  left: 4vw;
}

@media (max-width: 1439px) {
  .index .swiper-item .swiper-badge-block {
    bottom: 58px;
  }
}

@media (max-width: 575px) {
  .index .swiper-item .swiper-badge-block {
    bottom: 8px;
  }
}

.index .swiper-item .swiper-badge-block .swiper-badge {
  display: inline-block;
  padding: 3px 9px;
  font-size: 0.77778em;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #333333;
  background-color: #ffffff;
  margin-bottom: 10px;
}

.index .swiper-item .swiper-badge-block .swiper-badge:nth-of-type(2) {
  display: none;
}

.index .swiper-container {
  position: relative;
}

.index .swiper-container-pagination {
  position: relative;
  height: 100%;
}

@media (max-width: 1499px) {
  .index .swiper-container-pagination {
    height: 100%;
  }
}

@media (max-width: 575px) {
  .index .swiper-container-pagination {
    height: auto;
  }
}

.index .swiper-pagination-bullets {
  position: absolute;
  z-index: 10000;
  right: 0;
  left: 0;
  bottom: 18px;
  text-align: right;
  padding-right: 1.49vw;
}

@media (max-width: 1199px) {
  .index .swiper-pagination-bullets {
    bottom: 60px;
  }
}

@media (max-width: 575px) {
  .index .swiper-pagination-bullets {
    bottom: -37px;
    text-align: right;
    z-index: 10000;
  }
}

@media (max-width: 1199px) {
  .index .index-swiper .swiper-pagination-bullets {
    bottom: 20px;
  }
}

@media (max-width: 575px) {
  .index .index-swiper .swiper-pagination-bullets {
    bottom: 0px;
  }
}

.index .swiper-pagination-bullet {
  width: 29px;
  height: 7px;
  background-color: #ffffff;
  border-radius: 0;
  margin: 0 10px;
  position: relative;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  opacity: 1;
}

.index .swiper-pagination-bullet:hover {
  opacity: .7;
}

@media (max-width: 575px) {
  .index .swiper-pagination-bullet {
    background-color: #ffffff;
    width: 8px;
    height: 3px;
    margin: 0 6px !important;
  }
}

.index .swiper-pagination-bullet::after {
  content: attr(data-num);
  position: absolute;
  top: -35px;
  left: 0;
  font-size: 1.11111em;
  font-family: 'Fjalla One','Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  color: #ffffff;
  min-width: 100%;
  text-align: center;
  font-weight: bold;
}

@media (max-width: 575px) {
  .index .swiper-pagination-bullet::after {
    font-size: 0.55556em;
    min-width: 20px;
    color: #ffffff;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -19px;
  }
}

.index .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #3b5a9d;
}

.index .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  color: #3b5a9d;
}

@media (max-width: 575px) {
  .index .news-swiper .swiper-pagination-bullet {
    background-color: #3b5a9d;
    opacity: .4;
  }
}

@media (max-width: 575px) {
  .index .news-swiper .swiper-pagination-bullet::after {
    color: #3b5a9d;
  }
}

@media (max-width: 575px) {
  .index .news-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
  }
}

.index .news-swiper .swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: .3;
}

@media (max-width: 575px) {
  .index .news-swiper .swiper-pagination-bullet {
    background-color: #3b5a9d;
  }
}

.index .news-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.index .news-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  color: #ffffff;
}

@media (max-width: 575px) {
  .index .news-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    color: #3b5a9d;
  }
}

.index .header-bg-img {
  background-size: 100% 100%;
  background-position: center center;
  width: 100%;
  padding-top: calc(100% / 1920 * 1080);
  position: relative;
}

@media (max-width: 1199px) {
  .index .header-bg-img {
    height: auto;
    padding-top: calc(100% / 1920 * 1078);
    display: none;
  }
}

.index .header-bg-img.ipad {
  display: none;
  padding-top: calc(100% / 834 * 1194);
}

@media (max-width: 1199px) {
  .index .header-bg-img.ipad {
    display: block;
  }
}

@media (max-width: 575px) {
  .index .header-bg-img.ipad {
    display: none;
  }
}

.index .header-bg-img.phone {
  display: none;
  padding-top: calc(100% / 375 * 675);
}

@media (max-width: 575px) {
  .index .header-bg-img.phone {
    display: block;
  }
}

.index .swiper-container.news-swiper {
  height: 100%;
}

.index .class-information-section {
  padding: 45px 2.2vw 30px 2.2vw;
  background-color: #F3F3F3;
}

@media (max-width: 1199px) {
  .index .class-information-section {
    padding: 80px 2vw 15px 2vw;
    background: none;
  }
}

@media (max-width: 991px) {
  .index .class-information-section {
    max-width: 100%;
    padding: 30px 0px 30px 0px;
  }
}

.index .class-information-section .class-information-header {
  max-width: 100%;
  margin-bottom: 31px;
  border-bottom: none;
}

@media (max-width: 1199px) {
  .index .class-information-section .class-information-header {
    width: 100%;
    max-width: 100%;
    padding-left: 23px;
  }
}

.index .class-information-section .class-information-header .more-btn {
  margin-left: 12.14vw;
}

@media (max-width: 575px) {
  .index .class-information-section .class-information-header {
    margin-bottom: 5px;
  }
}

.index .class-information-section .link-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -17px;
}

@media (max-width: 1199px) {
  .index .class-information-section .link-group {
    margin: 0;
    padding: 30px 0;
  }
}

.index .class-information-section .link-group .class-card {
  background-color: #ffffff;
  -webkit-box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

@media (max-width: 575px) {
  .index .class-information-section .link-group .class-card {
    padding-bottom: 10px;
  }
}

.index .class-information-section .link-group .item {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  max-width: 100%;
  width: 100%;
  margin-bottom: 40px;
  padding: 0 17px;
}

@media (min-width: 576px) {
  .index .class-information-section .link-group .item {
    max-width: 33.333%;
    -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
    margin-bottom: 20px;
  }
}

.index .class-information-section .link-group .item img {
  max-width: 100%;
}

@media (max-width: 575px) {
  .index .class-information-section .link-group .item:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}

.index .class-information-section .link-group .content-block {
  padding: 25px 20px 25px 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 1199px) {
  .index .class-information-section .link-group .content-block {
    padding: 25px 20px 25px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .index .class-information-section .link-group .content-block {
    padding: 7px 22px 7px 45px;
  }
}

.index .class-information-section .link-group .content-block .title {
  font-size: 0.88889em;
  line-height: normal;
  font-weight: bold;
  letter-spacing: 1.07px;
  color: #3b5a9d;
  position: relative;
  padding-right: 12px;
}

@media (max-width: 1199px) {
  .index .class-information-section .link-group .content-block .title {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 15px;
  }
}

.index .class-information-section .link-group .content-block .title::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 5px;
  width: 15px;
  height: 15px;
  background-color: #dea56a;
}

.index .class-information-section .link-group .content-block .link-btn {
  font-size: 1em;
  font-weight: 500;
  color: #dea56a;
  text-align: right;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 1199px) {
  .index .class-information-section .link-group .content-block .link-btn {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    text-align: left;
    font-size: 0.77778em;
  }
}

.header-title {
  position: relative;
}

.header-title .top-line, .header-title .left-line, .header-title .right-line, .header-title .bottom-line {
  background-color: #E5E5E5;
  position: absolute;
}

.header-title .top-line {
  top: 0;
  left: -46px;
  right: 0;
  height: 1px;
}

.header-title .bottom-line {
  left: -22px;
  right: 0px;
  bottom: 0;
  height: 1px;
}

.header-title .left-line {
  left: 0;
  margin-left: -2px;
  top: -46px;
  bottom: -31px;
  width: 1px;
}

@media (max-width: 575px) {
  .header-title .left-line {
    top: 0;
  }
}

.header-title .right-line {
  position: absolute;
  right: 0;
  bottom: 0;
}

.header-title .right-line::before, .header-title .right-line::after {
  content: "";
  position: absolute;
  background-color: #fff;
}

.header-title .right-line::before {
  right: -5px;
  bottom: 0;
  height: 1px;
  width: 10px;
}

.header-title .right-line::after {
  right: -1px;
  bottom: -4px;
  height: 10px;
  width: 1px;
}

.header-title .radius-01, .header-title .radius-02, .header-title .radius-03, .header-title .radius-04 {
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
}

@media (max-width: 575px) {
  .header-title .radius-01, .header-title .radius-02, .header-title .radius-03, .header-title .radius-04 {
    display: none;
  }
}

.header-title .radius-01 {
  top: 0px;
  left: 0px;
  width: 38px;
  height: 38px;
  z-index: -1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.header-title .radius-01.active {
  top: -19px;
  left: -15px;
}

.header-title .radius-02 {
  left: 0px;
  top: 0px;
  width: 17px;
  height: 17px;
  -webkit-transition: all .7s ease;
  transition: all .7s ease;
  -webkit-transform: scale(0.2);
          transform: scale(0.2);
}

.header-title .radius-02.active {
  left: -52px;
  top: -37px;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.header-title .radius-03 {
  width: 25px;
  height: 25px;
  bottom: 0px;
  left: 0px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.header-title .radius-03.active {
  bottom: -43px;
  left: -52px;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.header-title .radius-04 {
  width: 9px;
  height: 9px;
  right: 0px;
  top: 0px;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.header-title .radius-04.active {
  right: -13px;
  top: -33px;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.main-modal img {
  max-width: 100%;
}

@media (min-width: 576px) {
  .main-modal .modal-dialog {
    max-width: 90%;
  }
}

@media (min-width: 992px) {
  .main-modal .modal-dialog {
    max-width: 85%;
  }
}

.yt-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}

@media (max-width: 575px) {
  .yt-wrapper {
    margin: 30px -15px 0 -15px;
  }
}

.yt-wrapper .yt-item {
  max-width: 80%;
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  padding: 0 15px;
}

@media (max-width: 575px) {
  .yt-wrapper .yt-item {
    max-width: 90%;
    -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
    padding: 0 15px;
  }
}

.card-container {
  padding-bottom: 70px;
  padding-left: 23px;
  padding-right: 0px;
}

.page-utilities {
  width: 100%;
}

.page-utilities .header-box {
  width: 100%;
  height: 240px;
  background-color: #f1f1f1;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.page-utilities .header-box::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.page-utilities .header-box .container {
  padding: 0;
}

.page-utilities .header-box .header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 240px;
}

@media (max-width: 767px) {
  .page-utilities .header-box .header-block {
    height: 60px;
    margin-left: 15px;
    margin-top: 15px;
  }
}

.page-utilities .header-box .header-block .header-title {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-size: 1.66667em;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 3px;
  color: #000000;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  margin: 0;
  position: relative;
  padding: 14px 30px;
  background-color: #fff;
  border: 1px solid #E5E5E5;
}

@media (min-width: 992px) {
  .page-utilities .header-box .header-block .header-title {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .page-utilities .header-box .header-block .header-title {
    font-size: 1.33333em;
  }
}

@media (max-width: 991px) {
  .page-utilities .header-box .header-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .page-utilities .header-box .header-block .header-title {
    color: #3b5a9d;
    font-weight: 500;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.page-utilities .header-box .header-block .news-title {
  font-size: 1.11111em;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 3px;
  color: #fff;
  position: relative;
  display: inline-block;
  font-family: 'Fjalla One', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" , "蘋果儷中黑",'sans-serif' , Arial;
  text-align: center;
  -webkit-transform: translate(51%, 0px) rotate(-270deg);
          transform: translate(51%, 0px) rotate(-270deg);
}

@media (max-width: 991px) {
  .page-utilities .header-box .header-block .news-title {
    font-size: 0.77778em;
    margin-left: 2px;
    margin-top: 14px;
    margin-bottom: 0;
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
}

.page-utilities .header-box .header-block .news-title::after {
  content: "";
  position: absolute;
  right: -117px;
  top: 50%;
  width: 92px;
  height: 1px;
  background-color: #fff;
}

@media (max-width: 991px) {
  .page-utilities .header-box .header-block .news-title::after {
    display: none;
  }
}

@media (min-width: 576px) {
  .page-utilities .header-box .header-block .mobile-news-title {
    display: none;
    font-size: 0.77778em;
    color: #000000;
    font-family: 'Fjalla One', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" , "蘋果儷中黑",'sans-serif' , Arial;
  }
}

.page-utilities .now-page-badge {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.page-utilities .now-page-badge .now-page {
  color: #333333;
  font-size: 0.77778em;
  font-weight: 500;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
}

.page-utilities .now-page-badge .now-page:nth-of-type(1)::after {
  content: "≫";
  margin: 0 3px;
}

.page-utilities .introduction-link-group {
  margin: 0px -6px 20px -36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-utilities .introduction-link-group::-webkit-scrollbar {
  width: 0;
  display: none;
}

@media (max-width: 1199px) {
  .page-utilities .introduction-link-group {
    margin: 0px -5px 15px -55px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: scroll;
  }
}

@media (max-width: 991px) {
  .page-utilities .introduction-link-group {
    margin: 35px -2.5px 35px -55px;
  }
}

@media (max-width: 575px) {
  .page-utilities .introduction-link-group {
    margin: 15px -2.5px 15px -4.5px;
  }
}

.page-utilities .introduction-link-group .link-block {
  padding: 0 6px;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .page-utilities .introduction-link-group .link-block {
    max-width: 40%;
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    padding: 0 5px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .page-utilities .introduction-link-group .link-block {
    max-width: 45%;
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}

@media (max-width: 575px) {
  .page-utilities .introduction-link-group .link-block {
    max-width: 80%;
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
  }
}

.page-utilities .introduction-link-group .link-block .link-btn {
  display: inline-block;
  padding: 12px 20px;
  font-size: 0.88889em;
  font-weight: 500;
  text-align: center;
  border: solid 1px #3b5a9d;
  color: #3b5a9d;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  margin-bottom: 1px;
}

@media (max-width: 1199px) {
  .page-utilities .introduction-link-group .link-block .link-btn {
    font-size: 0.77778em;
  }
}

.page-utilities .introduction-link-group .link-block .link-btn.active {
  background-color: #3b5a9d;
  color: #ffffff;
}

@media (min-width: 1200px) {
  .page-utilities .introduction-link-group .link-block .link-btn:hover {
    background-color: #3b5a9d;
    color: #ffffff;
  }
}

@media (max-width: 1199px) {
  .page-utilities .introduction-link-group .link-block .link-btn {
    min-width: 100%;
  }
}

.page-utilities .content-wrap {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .page-utilities .content-wrap {
    margin-bottom: 0;
  }
}

.page-utilities .content-wrap .img-block {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 50px;
  margin-right: 25px;
}

.page-utilities .content-wrap .img-block img {
  width: 100%;
  height: 40px;
}

.page-utilities .content-wrap .text-block {
  display: inline-block;
  vertical-align: middle;
  width: 88%;
  line-height: 1;
}

.page-utilities .content-wrap .text-block .edu-text {
  margin-bottom: 0;
}

.page-utilities .introduction-card {
  padding: 40px 0;
}

@media (max-width: 575px) {
  .page-utilities .introduction-card {
    padding: 20px 0;
  }
}

.page-utilities .introduction-card .content-title-block {
  padding-left: 0px;
  padding-right: 1.7vw;
}

@media (max-width: 575px) {
  .page-utilities .introduction-card .content-title-block {
    padding-left: 50px;
  }
}

.page-utilities .introduction-card .content-title-block .content-title {
  display: block;
  font-family: 'Fjalla One', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" , "蘋果儷中黑",'sans-serif' , Arial;
  font-size: 1.66667em;
  letter-spacing: 1px;
  color: #3b5a9d;
  font-weight: 500;
  position: relative;
  min-width: 285px;
  padding-right: 28px;
  padding-left: 0px;
  margin-bottom: 43px;
}

@media (max-width: 1199px) {
  .page-utilities .introduction-card .content-title-block .content-title {
    min-width: auto;
    display: inline-block;
  }
}

@media (max-width: 575px) {
  .page-utilities .introduction-card .content-title-block .content-title {
    margin-bottom: 20px;
  }
}

.page-utilities .introduction-card .content-title-block .content-title::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url("../images/main-icon.png") no-repeat;
  background-size: contain;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .page-utilities .introduction-card .content-title-block .content-title::before {
    background: url("../images/main-icon@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .page-utilities .introduction-card .content-title-block .content-title::before {
    background: url("../images/main-icon@2x.png") no-repeat;
    background-size: contain;
  }
}

.page-utilities .introduction-card .editor-block {
  width: 100%;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-size: 1em;
  color: #333333;
  letter-spacing: 0.88px;
  padding-left: 2px;
  line-height: 1.79;
  letter-spacing: 0.88px;
  color: #333333;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .page-utilities .introduction-card .editor-block {
    font-size: 0.88889em;
  }
}

.page-utilities .introduction-card .editor-block a {
  color: #3b5a9d;
  line-height: 1.56;
  letter-spacing: 0.88px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 0.88889em;
}

.page-utilities .introduction-card .editor-block img {
  max-width: 100%;
}

.page-utilities .introduction-card .editor-block .editor-img {
  margin-bottom: 20px;
}

.page-utilities .introduction-card .editor-block .title {
  font-size: 0.88889em;
  line-height: 1.56;
  letter-spacing: 1px;
  color: #3b5a9d;
  font-weight: 500;
  margin-bottom: 5px;
}

.page-utilities .introduction-card .editor-block .category-title {
  font-size: 0.88889em;
  letter-spacing: 1px;
  color: #333333;
  font-weight: bold;
  position: relative;
  padding-left: 58px;
  margin-top: 14px;
  margin-bottom: 31px;
}

.page-utilities .introduction-card .editor-block .category-title::before {
  content: attr(data-category);
  position: absolute;
  left: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  color: #ffffff;
  background-color: #3b5a9d;
}

.page-utilities .introduction-card .editor-block .edu-text {
  font-size: 1em;
  line-height: 1.79;
  letter-spacing: 0.88px;
  color: #333333;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .page-utilities .introduction-card .editor-block .edu-text {
    font-size: 0.88889em;
  }
}

.page-utilities .introduction-card .editor-block .img-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .page-utilities .introduction-card .editor-block .img-wrap {
    margin-top: 28px;
    margin-bottom: -20px;
    padding: 0;
    width: unset;
    max-width: unset;
  }
}

.page-utilities .introduction-card .editor-block .img-wrap .img-intro-card {
  max-width: 25%;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  margin-bottom: 20px;
  padding: 0 10px;
}

@media (max-width: 1199px) {
  .page-utilities .introduction-card .editor-block .img-wrap .img-intro-card {
    max-width: 33.33%;
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
  }
}

@media (max-width: 575px) {
  .page-utilities .introduction-card .editor-block .img-wrap .img-intro-card {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding: 0 10px;
    margin-right: 0;
  }
}

.page-utilities .introduction-card .editor-block .img-wrap .img-intro-card .photo {
  border-radius: 10px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  padding-top: calc(100% / 170 * 170);
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.page-utilities .introduction-card .editor-block .img-wrap .img-intro-card .photo:hover {
  opacity: .7;
}

.page-utilities .introduction-card .editor-block .img-wrap .img-intro-card .img {
  width: 100%;
  max-width: 100%;
  height: 170px;
  border-radius: 10px;
}

.page-utilities .introduction-card .editor-block .img-wrap .img-intro-card .img-title {
  font-size: 0.88889em;
  text-align: center;
  font-weight: 500;
  color: #333333;
  margin: 10px 0 0 0;
  letter-spacing: normal;
}

@media (max-width: 1199px) {
  .page-utilities .introduction-card .editor-block .img-wrap .img-intro-card .img-title {
    font-size: 0.77778em;
  }
}

.page-utilities .edu-img-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .page-utilities .edu-img-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.page-utilities .edu-img-group .item {
  margin-bottom: 10px;
  -ms-flex-preferred-size: 12.9%;
      flex-basis: 12.9%;
  max-width: 12.9%;
  margin-right: 10px;
}

.page-utilities .edu-img-group .item:nth-last-of-type(1) {
  margin-right: 0;
}

@media (max-width: 575px) {
  .page-utilities .edu-img-group .item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    margin-right: 0px;
    margin-bottom: 10px;
    padding: 0 10px;
  }
}

.page-utilities .edu-img-group .item-img {
  border-radius: 10px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  padding-top: calc(100% / 90 * 90);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.page-utilities .edu-img-group .item-img:hover {
  opacity: .8;
}

.page-utilities .edu-img-group img {
  width: 100%;
  max-width: 100%;
  height: 90px;
  border-radius: 10px;
}

.page-utilities .swiper-button-next, .page-utilities .swiper-button-prev {
  width: 34px;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  height: unset;
  margin-top: 0;
}

.page-utilities .swiper-button-next.swiper-button-disabled, .page-utilities .swiper-button-prev.swiper-button-disabled {
  display: none;
}

.page-utilities .swiper-button-next::after, .page-utilities .swiper-button-prev::after {
  display: none;
}

.page-utilities .swiper-button-next::before, .page-utilities .swiper-button-prev::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/next-icon.png") no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .page-utilities .swiper-button-next::before, .page-utilities .swiper-button-prev::before {
    background: url("../images/next-icon@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .page-utilities .swiper-button-next::before, .page-utilities .swiper-button-prev::before {
    background: url("../images/next-icon@2x.png") no-repeat;
    background-size: contain;
  }
}

.page-utilities .swiper-button-next::before:hover, .page-utilities .swiper-button-prev::before:hover {
  opacity: .8;
}

.page-utilities .swiper-button-next {
  right: 0;
}

.page-utilities .swiper-button-prev {
  left: 0;
}

.page-utilities .swiper-button-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

.page-utilities .introduction-section {
  padding: 0;
}

.page-utilities .introduction-wrap {
  width: 100%;
  padding-bottom: 70px;
  margin: 0 -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .page-utilities .introduction-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (max-width: 991px) {
  .page-utilities .introduction-wrap {
    margin: 0;
  }
}

@media (max-width: 575px) {
  .page-utilities .introduction-wrap {
    padding-bottom: 30px;
  }
}

.page-utilities .introduction-wrap .intro-block {
  max-width: 33.33%;
  -ms-flex-preferred-size: 33.333%;
      flex-basis: 33.333%;
  padding: 0 3px;
  margin-bottom: 5px;
}

@media (max-width: 991px) {
  .page-utilities .introduction-wrap .intro-block {
    min-width: 50%;
    width: 50%;
  }
}

@media (max-width: 575px) {
  .page-utilities .introduction-wrap .intro-block {
    min-width: 100%;
    width: 100%;
    padding: 0 15px;
  }
}

.page-utilities .introduction-wrap .intro-block:nth-of-type(1) .introduction-link {
  background-color: #475171;
}

.page-utilities .introduction-wrap .intro-block:nth-of-type(2) .introduction-link {
  background-color: #78819e;
}

.page-utilities .introduction-wrap .intro-block:nth-of-type(3) .introduction-link {
  background-color: #a6afcb;
}

.page-utilities .introduction-wrap .intro-block:nth-of-type(4) .introduction-link {
  background-color: #4a5c99;
}

.page-utilities .introduction-wrap .intro-block:nth-of-type(5) .introduction-link {
  background-color: #293c79;
}

.page-utilities .introduction-wrap .introduction-link {
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  opacity: 1;
  text-decoration: none;
  min-height: 218px;
  padding: 74px 0px 84px 26px;
  display: inline-block;
  vertical-align: top;
  color: #ffffff;
  font-size: 1.11111em;
  font-family: 'Fjalla One', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" , "蘋果儷中黑",'sans-serif' , Arial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  letter-spacing: 1.33px;
  position: relative;
  background-color: #475171;
}

@media (max-width: 575px) {
  .page-utilities .introduction-wrap .introduction-link {
    min-height: 166px;
    padding: 30px 0px 30px 26px;
  }
}

.page-utilities .introduction-wrap .introduction-link:hover {
  opacity: .7;
}

.page-utilities .introduction-wrap .introduction-link::after {
  content: attr(data-num);
  position: absolute;
  right: 10px;
  bottom: 14px;
  font-size: 2.77778em;
  font-family: 'Fjalla One','Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  line-height: 0.6;
}

@media (max-width: 1199px) {
  .page-utilities .introduction-wrap .introduction-link::after {
    font-size: 1.94444em;
  }
}

.page-utilities .introduction-wrap .introduction-link .intro-bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
}

.page-utilities .introduction-wrap .introduction-link .intro-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.page-utilities .introduction-wrap .introduction-link .item {
  position: relative;
  z-index: 1;
}

.page-utilities .introduction-wrap .introduction-link .text {
  margin-bottom: 0;
}

.page-utilities .category-list {
  list-style: none;
  margin: 0 -5px 29px -36px;
  position: relative;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-utilities .category-list::-webkit-scrollbar {
  width: 0;
  display: none;
}

@media (max-width: 1199px) {
  .page-utilities .category-list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: scroll;
  }
}

@media (max-width: 575px) {
  .page-utilities .category-list {
    margin: 0 -5px 29px -5px;
  }
}

.page-utilities .category-list .teacher-category {
  display: block;
  margin-bottom: 12px;
  padding: 0 5px;
}

@media (max-width: 1199px) {
  .page-utilities .category-list .teacher-category {
    margin-bottom: 15px;
    min-width: 140px;
  }
}

@media (max-width: 991px) {
  .page-utilities .category-list .teacher-category {
    min-width: 138px;
  }
}

.page-utilities .category-list .teacher-category .teacher-link {
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  background-color: #aaaaaa;
  border-radius: 25px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

@media (max-width: 1199px) {
  .page-utilities .category-list .teacher-category .teacher-link {
    font-size: 0.88889em;
  }
}

@media (max-width: 991px) {
  .page-utilities .category-list .teacher-category .teacher-link {
    width: 100%;
    text-align: center;
  }
}

.page-utilities .category-list .teacher-category .teacher-link.active {
  color: #fff;
  background-color: #3b5a9d;
}

.page-utilities .category-list .teacher-category .teacher-link:hover {
  opacity: .9;
}

.news .news-card {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px 4vw 45px 4vw;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.news .news-card .data {
  max-width: 15%;
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
}

@media (max-width: 1199px) {
  .news .news-card .data {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.news .news-card .news-card-content .content-description {
  font-size: 0.88889em;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-weight: 500;
  color: #333333;
  line-height: 1.79;
  color: #333333;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  text-align: left;
}

@media (max-width: 991px) {
  .news .news-card .news-card-content .content-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: left;
  }
}

@media (max-width: 575px) {
  .news .news-card .news-card-content .content-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
    padding-right: 48px;
    letter-spacing: 0.88px;
  }
}

.news .news-card .btn-group {
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  max-width: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

.news .news-card .btn-group .more-btn {
  -webkit-transition: -webkit-filter .3s ease;
  transition: -webkit-filter .3s ease;
  transition: filter .3s ease;
  transition: filter .3s ease, -webkit-filter .3s ease;
  display: inline-block;
  font-size: 0.77778em;
  padding: 13px 13px 13px 13px;
  text-align: center;
  background-color: #3b5a9d;
  color: white;
  margin-bottom: 0;
}

.news .news-card .btn-group .more-btn:hover {
  text-decoration: none;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

@media (max-width: 991px) {
  .news .news-card .btn-group .more-btn {
    margin-bottom: 0;
    margin-top: 9px;
    padding: 6px 8px;
  }
}

.news .news-card .btn-group .download-btn {
  display: inline-block;
  text-decoration: underline;
}

.news .news-card .btn-group .download-btn .download-img {
  display: inline-block;
  padding: 10px 6px 8px 6px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.news .news-card .btn-group .download-btn .download-imgimg {
  width: 100%;
}

.news .news-card .btn-group .download-btn .download-text {
  font-family: NotoSansCJKtc;
  font-weight: bold;
  font-size: 0.77778em;
  color: #000000;
  line-height: 1.43;
}

.news .page-btn-group {
  margin-top: 19px;
  margin-right: 17px;
  text-align: right;
}

.news .page-btn-group .now-page {
  margin: 0 15px;
  font-size: 1.11111em;
  color: #3b5a9d;
}

.news .page-btn-group .last-btn, .news .page-btn-group .next-btn {
  text-decoration: none;
}

.news .page-btn-group .last-btn img, .news .page-btn-group .next-btn img {
  width: 40px;
  height: 40px;
}

.news .page-btn-group .last-btn:hover, .news .page-btn-group .next-btn:hover {
  opacity: 0.8;
}

.news-description .mains-container {
  padding-right: 60px;
  padding-left: 60px;
}

@media (max-width: 575px) {
  .news-description .mains-container {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.news-description .now-page-badge {
  padding-right: 73px;
  padding-left: 73px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.news-description .now-page-badge .now-page {
  color: #333333;
  font-size: 0.77778em;
  font-weight: 500;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
}

.news-description .now-page-badge .now-page:nth-of-type(1)::after {
  content: "≫";
  margin: 0 3px;
}

.news-description .download-btn {
  display: inline-block;
}

.news-description .download-btn .download-img {
  display: inline-block;
  padding: 10px 0px 8px 0px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.news-description .download-btn .download-imgimg {
  width: 100%;
}

.news-description .download-btn .download-text {
  font-family: NotoSansCJKtc;
  font-weight: bold;
  font-size: 0.77778em;
  color: #000000;
  line-height: 1.43;
}

.news-description .news-description .download-btn {
  padding-left: 0;
}

.news-description .news-card {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-description .news-card .news-card-content {
  max-width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.news-description .news-card .news-card-content .content-description {
  overflow: unset;
  text-overflow: unset;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  padding-right: 0;
}

[data-page="news-description"].news-description .news-card .news-card-content {
  padding-left: 0;
}

[data-page="news-description"].news-description .news-card .data {
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  [data-page="news-description"].news-description .news-card .data {
    margin-bottom: 15px;
  }
}

.system-introduction-content.edu-future .introduction-card {
  padding: 30px 0;
}

@media (max-width: 575px) {
  .system-introduction-content.edu-future .introduction-card {
    padding: 10px 0;
  }
}

.system-introduction-content.edu-future .introduction-card.edu-card .editor-block {
  padding: 0 1.5vw;
}

.edu-future .page-utilities .introduction-card .content-title-block .content-title::after {
  display: none;
}

.edu-future .edu-card.introduction-card .editor-block {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
}

.edu-future .edu-card.introduction-card .editor-block .title {
  font-size: 0.88889em;
  line-height: 1.56;
  letter-spacing: 1px;
  color: #3b5a9d;
  font-weight: 500;
  margin-bottom: 5px;
}

.edu-future .edu-card.introduction-card .editor-block .category-title {
  font-size: 0.88889em;
  letter-spacing: 1px;
  color: #333333;
  font-weight: bold;
  position: relative;
  padding-left: 58px;
  margin-top: 14px;
  margin-bottom: 31px;
}

.edu-future .edu-card.introduction-card .editor-block .category-title::before {
  content: attr(data-category);
  position: absolute;
  left: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  color: #ffffff;
  background-color: #3b5a9d;
}

.edu-future .edu-card.introduction-card .editor-block .edu-text {
  font-size: 1em;
  line-height: 1.79;
  letter-spacing: 0.88px;
  color: #333333;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .edu-future .edu-card.introduction-card .editor-block .edu-text {
    font-size: 0.88889em;
  }
}

.edu-record .page-utilities .category-list {
  margin-bottom: 0;
}

.edu-record .year-list {
  padding: 0;
  margin-bottom: 54px;
  list-style: none;
}

@media (max-width: 575px) {
  .edu-record .year-list {
    text-align: center;
    margin-bottom: 20px;
  }
}

.edu-record .year-list .year {
  display: inline-block;
  margin-right: 45px;
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .edu-record .year-list .year {
    min-width: 31.333%;
    margin-right: 4px;
    margin-bottom: 10px;
  }
}

.edu-record .year-list .year .year-link {
  text-decoration: none;
  font-size: 0.88889em;
  font-family: 'Fjalla One','Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  letter-spacing: 1px;
  color: #718fcd;
}

.edu-record .year-list .year .year-link.active {
  color: #3b5a9d;
}

.edu-record .year-list .year .year-link:hover {
  color: #3b5a9d;
}

.edu-record .edu-card.introduction-card .editor-block {
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .edu-record .edu-card.introduction-card .editor-block {
    padding: 0 1.5vw;
  }
}

.edu-record .edu-card.introduction-card .editor-container {
  padding-bottom: 37px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.edu-record .edu-card.introduction-card .editor-container .year-box {
  vertical-align: top;
  text-align: center;
  display: inline-block;
}

.edu-record .edu-card.introduction-card .editor-container .year-box .year-badge {
  display: inline-block;
  width: 55px;
  line-height: 55px;
  border-radius: 50%;
  background-color: #3b5a9d;
  color: #ffffff;
  font-size: 0.88889em;
  letter-spacing: 0.88px;
  text-align: center;
}

.edu-record .edu-card.introduction-card .editor-container .doing-wrapper {
  max-width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.edu-record .edu-card.introduction-card .editor-container .doing-wrapper .doing-box {
  margin-bottom: 0;
  padding-top: 0;
}

.edu-record .edu-card.introduction-card .editor-container .doing-wrapper .doing-box:nth-of-type(1) {
  padding-top: 11px;
}

.edu-record .edu-card.introduction-card .editor-container .doing-wrapper .doing-box:nth-of-type(even) .doing-record {
  background-color: transparent;
}

.edu-record .edu-card.introduction-card .editor-container .doing-box {
  max-width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding-top: 11px;
  margin-left: 1.6vw;
}

@media (max-width: 575px) {
  .edu-record .edu-card.introduction-card .editor-container .doing-box {
    padding-left: 2vw;
  }
}

.edu-record .edu-card.introduction-card .editor-container .doing-box .doing-record {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  padding: 5px 10px;
}

.edu-record .edu-card.introduction-card .editor-container .doing-box .doing-record:nth-of-type(1) {
  margin-left: -1px;
}

.edu-record .edu-card.introduction-card .editor-container .doing-box .doing-record:nth-of-type(odd) {
  background-color: transparent;
}

.edu-record .edu-card.introduction-card .editor-container .doing-box .doing-record:nth-of-type(odd) {
  background-color: #eeeeee;
}

@media (max-width: 575px) {
  .edu-record .edu-card.introduction-card .editor-container .doing-box .doing-record {
    width: 100%;
  }
}

.edu-record .edu-card.introduction-card .editor-container .doing-box .doing-record .date {
  margin-right: 10px;
  vertical-align: top;
  font-size: 0.88889em;
  font-weight: 500;
  color: #3b5a9d;
  display: inline-block;
  min-width: 90px;
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  max-width: 15%;
}

@media (max-width: 1199px) {
  .edu-record .edu-card.introduction-card .editor-container .doing-box .doing-record .date {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .edu-record .edu-card.introduction-card .editor-container .doing-box .doing-record .date {
    padding-left: 2vw;
  }
}

.edu-record .edu-card.introduction-card .editor-container .doing-box .doing-record .text {
  -ms-flex-preferred-size: 85%;
      flex-basis: 85%;
  max-width: 85%;
  display: inline-block;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-size: 0.88889em;
  letter-spacing: 0.88px;
  color: #333333;
}

@media (max-width: 1199px) {
  .edu-record .edu-card.introduction-card .editor-container .doing-box .doing-record .text {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .edu-record .edu-card.introduction-card .editor-container .doing-box .doing-record .text {
    width: 100%;
  }
}

.edu-record .edu-card.introduction-card .editor-container .doing-box.name-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 0;
}

.edu-record .edu-card.introduction-card .editor-container .doing-box.name-list .doing-record {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

@media (max-width: 991px) {
  .edu-record .edu-card.introduction-card .editor-container .doing-box.name-list .doing-record {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-left: 0;
  }
}

.edu-record .edu-card.introduction-card .editor-container .doing-box.name-list .doing-record:nth-of-type(odd) {
  background-color: transparent;
}

.teacher-introl .teacher-list {
  list-style: none;
  margin: 0 0 44px 0px;
  padding-left: 0px;
  position: relative;
}

.teacher-introl .teacher-list .teacher-category {
  display: inline-block;
  margin-bottom: 12px;
  padding: 0 5px;
}

@media (max-width: 1199px) {
  .teacher-introl .teacher-list .teacher-category {
    margin-bottom: 15px;
    min-width: 135px;
  }
}

.teacher-introl .teacher-list .teacher-category .teacher-link {
  font-size: 0.88889em;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  background-color: #aaaaaa;
  border-radius: 20px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.teacher-introl .teacher-list .teacher-category .teacher-link.active {
  color: #fff;
  background-color: #3b5a9d;
}

.teacher-introl .teacher-list .teacher-category .teacher-link:hover {
  opacity: .9;
}

.teacher-section .teacher-card-wrap {
  padding-bottom: 25px;
}

.teacher-section .teacher-card-wrap .teacher-card {
  width: 100%;
  margin-bottom: 45px;
}

.teacher-section .teacher-card-wrap .teacher-card .teacher-header .img-block {
  display: inline-block;
  vertical-align: top;
  width: 20.13%;
  margin-right: 16px;
  min-width: 106px;
}

.teacher-section .teacher-card-wrap .teacher-card .teacher-header .img-block img {
  max-width: 100%;
  height: 150px;
}

.teacher-section .teacher-card-wrap .teacher-card .teacher-header .header-title-block {
  display: inline-block;
  width: 26%;
}

.teacher-section .teacher-card-wrap .teacher-card .teacher-header .header-title-block .teacher-name {
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 1px;
  color: #333333;
  margin-bottom: 10px;
}

.teacher-section .teacher-card-wrap .teacher-card .teacher-header .header-title-block .teacher-badge {
  display: inline-block;
  padding: 5px 10px;
  background-color: #3b5a9d;
  color: #ffffff;
  font-size: 0.83333em;
  font-weight: 500;
  margin-bottom: 56px;
  min-width: 110px;
  text-align: center;
}

@media (max-width: 1199px) {
  .teacher-section .teacher-card-wrap .teacher-card .teacher-header .header-title-block .teacher-badge {
    font-size: 0.77778em;
  }
}

.teacher-section .teacher-card-wrap .teacher-card .teacher-header .header-title-block .add-badge {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 8px;
}

.teacher-section .teacher-card-wrap .teacher-card .teacher-header .header-title-block .add-badge img {
  width: 30px;
  height: 30px;
}

.teacher-section .teacher-card-wrap .teacher-card .teacher-header .header-title-block .teacher-link {
  font-size: 0.77778em;
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0f3f66;
}

.teacher-section .teacher-card-wrap .teacher-card .teacher-content {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-size: 0.88889em;
  letter-spacing: 0.88px;
  color: #333333;
  line-height: 1.79;
  margin-top: 15px;
}

@media (max-width: 575px) {
  .teacher-section .teacher-card-wrap .teacher-card .teacher-content {
    font-size: 0.77778em;
  }
}

.teacher-section .teacher-card-wrap .teacher-card .teacher-content p {
  margin-bottom: 0;
}

.teacher-section .teacher-card-wrap .teacher-card .teacher-content .tel a {
  letter-spacing: 0.88px;
  color: #333333;
  line-height: 1.79;
  margin-top: 15px;
}

.teacher-section .teacher-card-wrap .teacher-card .teacher-content .teacher-email a {
  letter-spacing: 0.88px;
  color: #333333;
  line-height: 1.79;
  margin-top: 15px;
}

.teacher-section .teacher-card-wrap .teacher-card.type-2 .teacher-header .header-title-block .teacher-name {
  color: #3b5a9d;
}

.teacher-section .teacher-card-wrap .teacher-card.type-2 .teacher-header .header-title-block .teacher-badge {
  margin-bottom: 10px;
}

.teacher-section .teacher-card-wrap .teacher-card.type-2 .teacher-content .tel a {
  letter-spacing: 0.88px;
  color: #333333;
  line-height: 1.79;
  margin-top: 15px;
}

.teacher-section .teacher-card-wrap .teacher-card.type-2 .teacher-content .teacher-email a {
  letter-spacing: 0.88px;
  color: #333333;
  line-height: 1.79;
  margin-top: 15px;
}

.edu-resources .introduction-card.resources-card {
  padding-bottom: 80px;
}

.edu-resources .introduction-card.resources-card .editor-block {
  padding: 0 3.1vw 0 0.2vw;
}

.edu-resources .introduction-card.resources-card .editor-block .edu-text {
  letter-spacing: 0.88px;
  line-height: 1.79;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  color: #333333;
  font-size: 1em;
}

@media (max-width: 1199px) {
  .edu-resources .introduction-card.resources-card .editor-block .edu-text {
    font-size: 0.88889em;
  }
}

.class-rule .class-wrap {
  padding-bottom: 25px;
}

.class-rule .class-section .class-card .editor-block .title span {
  color: #718fcd;
  margin-left: 15px;
}

.class-rule .class-section .class-card .editor-block .edu-text .text-indent {
  margin-bottom: 0;
  padding-left: 38px;
}

.class-future .future-img-section {
  padding: 43px 0 78px;
  background-color: #f2f2f2;
}

.class-future .future-img-section .future-img-block {
  width: 100%;
  overflow-x: hidden;
}

.class-future .future-img-section .future-img-block img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.class-bonus .content-img {
  width: 100%;
  max-width: 100%;
  padding-left: 2.5vw;
  padding-right: 1.1vw;
}

.class-bonus .content-img .img-block {
  border-radius: 15px;
  overflow-x: hidden;
}

.class-bonus .content-img .img-block img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-rule .recruit-section .class-wrap {
  padding-bottom: 40px;
}

.recruit-rule .recruit-section .introduction-card.recruit-card .editor-block .text-indent {
  padding-left: 37px;
}

.recruit-rule .recruit-section .introduction-card.recruit-card .content-title-block .content-title.long-title {
  padding-right: 3.5vw;
}

.recruit-share-section {
  padding-left: 2.65vw;
}

.recruit-share-section .recruit-share-wrap {
  width: 100%;
  padding-bottom: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 991px) {
  .recruit-share-section .recruit-share-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.recruit-share-section .recruit-share-wrap .share-item {
  -ms-flex-preferred-size: 28.5%;
      flex-basis: 28.5%;
  max-width: 28.5%;
  -webkit-box-shadow: 4px 8px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 4px 8px 6px rgba(0, 0, 0, 0.3);
  margin-right: 2.61vw;
  margin-bottom: 50px;
  -webkit-transition: -webkit-box-shadow .3s ease;
  transition: -webkit-box-shadow .3s ease;
  transition: box-shadow .3s ease;
  transition: box-shadow .3s ease, -webkit-box-shadow .3s ease;
}

@media (min-width: 1200px) {
  .recruit-share-section .recruit-share-wrap .share-item:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.recruit-share-section .recruit-share-wrap .share-item:nth-of-type(3n) {
  margin-right: 0;
}

@media (max-width: 991px) {
  .recruit-share-section .recruit-share-wrap .share-item {
    width: 45%;
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    max-width: 45%;
  }
  .recruit-share-section .recruit-share-wrap .share-item:nth-of-type(3n) {
    margin-right: 2.61vw;
  }
  .recruit-share-section .recruit-share-wrap .share-item:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .recruit-share-section .recruit-share-wrap .share-item {
    -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
    max-width: 90%;
    margin-right: 0;
  }
  .recruit-share-section .recruit-share-wrap .share-item:nth-of-type(3n) {
    margin-right: 0;
  }
}

.recruit-share-section .recruit-share-wrap .share-item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 225px;
}

.download-section .download-wrap {
  padding-bottom: 20px;
}

.download-section .download-wrap .download-card.introduction-card .editor-block {
  padding: 0 3.9vw 0 0.6vw;
}

.download-section .download-wrap .content-img {
  width: 100%;
  padding: 0 0.5vw 0 0;
}

.download-section .download-wrap .content-img .img-block {
  border-radius: 10px;
  overflow-x: hidden;
}

.download-section .download-wrap .content-img img {
  width: 100%;
  max-width: 100%;
}

.student-club-record.edu-record .edu-section {
  padding-bottom: 80px;
}

.student-club-record.edu-record .introduction-card {
  padding: 40px 0 0 0;
}

.student-club-record.edu-record .introduction-card .editor-block .editor-container .year-box .year-badge {
  letter-spacing: normal;
}

.student-club-record.edu-record .introduction-card .img-content {
  width: 100%;
  padding: 0 2vw 0 0.8vw;
}

.student-club-record.edu-record .introduction-card .img-content .img-block {
  border-radius: 10px;
  overflow-x: hidden;
}

.student-club-record.edu-record .introduction-card .img-content img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.student-club-header.header-box .header-block .news-title {
  letter-spacing: normal;
}

.edu-record .edu-card.introduction-card .editor-block .editor-container .doing-box.student-club-names {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 0;
}

.edu-record .edu-card.introduction-card .editor-block .editor-container .doing-box.student-club-names .doing-record {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

@media (max-width: 991px) {
  .edu-record .edu-card.introduction-card .editor-block .editor-container .doing-box.student-club-names .doing-record {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-left: 0;
  }
}

.edu-record .edu-card.introduction-card .editor-block .editor-container .doing-box.student-club-names .doing-record:nth-of-type(odd) {
  background-color: transparent;
}

.student-club-activity .edu-wrap {
  padding-bottom: 80px;
}

.student-club-activity .embed-responsive {
  margin-bottom: 20px;
}

.student-club-activity.edu-record .edu-card.introduction-card {
  margin-bottom: 2px;
  padding: 0 0;
  padding-top: 40px;
}

.student-club-activity.edu-record .edu-card.introduction-card.active {
  -webkit-animation: fadeIn .8s;
          animation: fadeIn .8s;
}

.student-club-activity.edu-record .edu-card.introduction-card .editor-block {
  margin-bottom: 20px;
}

.edu-resources.student-club-photo .introduction-card.resources-card .editor-block {
  padding: 0 3.1vw 0 0.3vw;
}

.edu-resources.student-club-photo .introduction-card.resources-card .editor-block .img-wrap .img-intro-card .photo {
  border-radius: 10px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  padding-top: calc(100% / 170 * 170);
}

.edu-resources.student-club-photo .introduction-card.resources-card .editor-block .img-wrap .img-intro-card .photo:hover {
  opacity: .7;
}

.student-club-data .download-section .download-wrap {
  padding-bottom: 80px;
}

.friend-system-activity.edu-record .introduction-card .editor-block:nth-last-child(1) .editor-container .year-box .year-line {
  display: none;
}

.friend-system-activity.edu-record .introduction-card .editor-block .editor-container .year-box .year-badge {
  letter-spacing: normal;
}

.friend-system-data .img-block {
  width: 100%;
  border-radius: 10px;
  overflow-x: hidden;
}

.friend-system-data .img-block img {
  max-width: 100%;
  width: 100%;
}

.friend-system-data .text-block {
  font-size: 0.77778em;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  padding-bottom: 70px;
  letter-spacing: 0.88px;
  color: #333333;
}

.friend-system-data .text-block .text {
  margin: 35px 0;
}

.friend-system-data .text-block .tel, .friend-system-data .text-block .email, .friend-system-data .text-block .url {
  margin-bottom: 0;
}

.loader-wrap {
  background-color: #fff;
  -webkit-transition: .8s .5s ease, opacity .5s .3s ease;
  transition: .8s .5s ease, opacity .5s .3s ease;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100000;
}

.loading-bar {
  -webkit-transition: .8s ease;
  transition: .8s ease;
  height: 2px;
  position: fixed;
  top: 60vh;
  left: 0;
  right: 0;
}

.loading-progress {
  min-width: 0%;
  height: 100%;
  -webkit-transition: min-width .8s ease, opacity .5s 1s ease;
  transition: min-width .8s ease, opacity .5s 1s ease;
  background-color: rgba(20, 122, 192, 0.7);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: 0;
}

.loading-progress-number {
  font-family: 'Fjalla One','Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-size: 60px;
  color: rgba(20, 122, 192, 0.7);
  -webkit-transition: .8s ease;
  transition: .8s ease;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
}

.loaded .loader-wrap {
  opacity: 0;
  z-index: -100;
}

nav {
  color: #333;
  font-size: 1em;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: #333;
  -webkit-box-shadow: box-shadow(default);
          box-shadow: box-shadow(default);
  font-family: 'Fjalla One', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" , "蘋果儷中黑",'sans-serif' , Arial;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  image-rendering: -webkit-optimize-contrast;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  font-size: 18px;
}

@media (max-width: 767px) {
  body {
    font-size: 18px;
  }
}

body.loading-out {
  opacity: 0;
}

h1 {
  font-size: 2.55556em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.55556em;
}

h4 {
  font-size: 1.22222em;
}

h5 {
  font-size: 1em;
  font-family: 'Fjalla One', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" , "蘋果儷中黑",'sans-serif' , Arial;
  text-align: center;
  text-align-letter-spacing: 0.25em;
  text-align-text-indent: 0.25em;
}

h6 {
  font-size: 0.88889em;
  letter-spacing: 0.25em;
}

span {
  font-size: 100%;
}

p, a, li, span {
  font-size: inherit;
}

b, strong {
  font-weight: bold;
}

.pages__li .text {
  font-weight: bold;
}

.firefox .pages .text {
  font-weight: normal;
}

.footer {
  background: #ddd;
  border-top: 1px dotted #d3d3d3;
  width: 100%;
  max-width: 100%;
}

.footer .information {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 52px 57px;
}

@media (max-width: 1649px) {
  .footer .information {
    padding: 52px 0 52px 17vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (max-width: 1439px) {
  .footer .information {
    padding: 52px 0 52px 10vw;
  }
}

@media (max-width: 1199px) {
  .footer .information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (max-width: 991px) {
  .footer .information {
    padding: 52px 120px;
  }
}

@media (max-width: 575px) {
  .footer .information {
    padding: 40px 50px;
  }
}

.footer .information .logo-block {
  margin-right: 176px;
}

@media (max-width: 1649px) {
  .footer .information .logo-block {
    margin-bottom: 20px;
  }
}

@media (max-width: 1439px) {
  .footer .information .logo-block {
    margin-bottom: 20px;
  }
}

@media (max-width: 1199px) {
  .footer .information .logo-block {
    margin-right: 0;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .footer .information .logo-block {
    margin-bottom: 7px;
    margin-left: -5px;
  }
}

.footer .information .logo-block img {
  height: 56px;
  width: 275px;
}

@media (max-width: 1199px) {
  .footer .information .information-container {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .footer .information .information-container {
    display: block;
  }
}

.footer .information .information-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 -20px;
}

.footer .information .information-block:nth-of-type(1) {
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .footer .information .information-block {
    margin: 0 -15px;
    width: 100%;
    width: 50%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .footer .information .information-block {
    width: 100%;
  }
}

.footer .information .information-block .item {
  display: inline-block;
  padding: 0 20px;
  position: relative;
}

@media (max-width: 1199px) {
  .footer .information .information-block .item {
    padding: 0 15px;
  }
}

@media (max-width: 1199px) {
  .footer .information .information-block .item {
    width: 100%;
    margin-bottom: 10px;
  }
}

.footer .information .information-block .item::after {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 0;
  width: 1px;
  background-color: #000000;
}

@media (max-width: 1199px) {
  .footer .information .information-block .item::after {
    display: none;
  }
}

.footer .information .information-block .item:nth-last-of-type(1)::after {
  display: none;
}

.footer .information .information-block .item span {
  display: inline-block;
  position: relative;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-size: 0.77778em;
  letter-spacing: 1px;
  color: #000000;
  text-decoration: none;
}

@media (max-width: 575px) {
  .footer .information .information-block .item span {
    font-size: 0.66667em;
    letter-spacing: normal;
  }
}

.footer .information .information-block .item a {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-size: 0.77778em;
  letter-spacing: 1px;
  color: #000000;
  text-decoration: none;
}

@media (min-width: 1200px) {
  .footer .information .information-block .item a:hover {
    color: #3b5a9d;
  }
}

@media (min-width: 1200px) and (max-width: 575px) {
  .footer .information .information-block .item a {
    font-size: 0.66667em;
    letter-spacing: normal;
  }
}

.footer .copyright {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  color: #000000;
  background-color: #F5F5F5;
  text-align: center;
  font-size: 0.77778em;
  margin-bottom: 0;
  padding: 25px 20px;
  font-weight: 400;
}

@media (max-width: 575px) {
  .footer .copyright {
    padding: 15px;
    text-align: left;
  }
}

.footer .copyright .company-link {
  color: #000000;
  font-weight: 400;
}

.footer .copyright .company-link:hover {
  text-decoration: none;
  color: #3b5a9d;
}
