@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;500;700;900&display=swap");
textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active {
  outline: 0px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

::-webkit-input-placeholder {
  color: #999 !important;
  /* 這裡的顏色可以根據需要調整 */
  opacity: 1;
  /* 確保顏色的透明度設為 1，這樣才會使用您設置的顏色 */
}

:-ms-input-placeholder {
  color: #999 !important;
  /* 這裡的顏色可以根據需要調整 */
  opacity: 1;
  /* 確保顏色的透明度設為 1，這樣才會使用您設置的顏色 */
}

::-ms-input-placeholder {
  color: #999 !important;
  /* 這裡的顏色可以根據需要調整 */
  opacity: 1;
  /* 確保顏色的透明度設為 1，這樣才會使用您設置的顏色 */
}

::placeholder {
  color: #999 !important;
  /* 這裡的顏色可以根據需要調整 */
  opacity: 1;
  /* 確保顏色的透明度設為 1，這樣才會使用您設置的顏色 */
}

/* 對於不同瀏覽器的兼容性 */
::-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ededed;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #ededed;
}

::-webkit-input-placeholder {
  /* Chrome, Safari, Opera */
  color: #ededed;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #ededed;
}

a {
  word-break: break-all;
}

a {
  color: #363636;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

body {
  font-family: "微軟正黑體", "Noto Sans TC", serif;
  margin: 0;
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
  scrollbar-width: none;
  min-height: 100vh;
  //overflow-x: hidden;
  overflow:hidden
}

/* 導航欄固定定位 */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  background-color: #fff !important;
}

@media screen and (max-width: 768px) {
  ::-webkit-scrollbar {
    display: none;
  }
}

html {
  overflow-x: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 1201px) {
  .mobile-only {
    display: none !important;
  }
}

nav {
  z-index: 10 !important;
}

@media (min-width: 1201px) {
  nav {
    height: 13vw;
    background-image: url(../img/head-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100vw;
    position: fixed !important;
  }
  nav.active {
    margin-top: -15vw;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  nav {
    height: 13vw;
    background-image: url(../img/head-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100vw;
    position: fixed !important;
  }
  nav.active {
    margin-top: -15vw;
  }
}

nav .logo {
  height: 60px;
}

@media (min-width: 1201px) {
  nav .logo {
    margin-left: 20px;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  nav .logo {
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  nav .logo {
    height: 38px;
  }
}

nav .navbar-toggler {
  z-index: 50;
}

nav .header-right {
  background-image: url(../img/head-right.png);
  width: 10vw;
  height: 20vw;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  background-size: 139%;
  background-position: -11% 105%;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 2;
}

@media (max-width: 768px) {
  nav .header-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar-collapse {
    background-color: #ededed;
    padding: 10px;
  }
}

@media (min-width: 1201px) {
  .navbar-expand-lg {
    font-weight: 300;
    font-size: 1.2vw;
  }
  .navbar-expand-lg .navbar-collapse {
    justify-items: center;
  }
  .navbar-expand-lg .navbar-nav {
    margin-top: 1vw;
    margin-left: 0vw;
    z-index: 2;
    color:#3d3d3d;
    font-weight: 400;
    font-size: 0.9em;
  }
  .navbar-expand-lg .nav-item {
    cursor: pointer;
    margin: auto 0.8vw;
  }
  .navbar-expand-lg .nav-item .dropdown-item {
    font-weight: 400;
    font-size: 15px;
  }
  .navbar-expand-lg .nav-item.dropdown {
    width: 6vw;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .navbar-expand-lg .navbar-collapse {
    justify-items: center;
  }
  .navbar-expand-lg .navbar-nav {
    z-index: 2;
    margin: auto;
    margin-top: 4vw;
  }
}

.navbar-nav .nav-item.active a {
  border-bottom: 2px solid #d3d3d3;
}

.nav-link:hover {
  border-bottom: 0 solid #fff;
}

.main-out-box {
  width: 100%;
  background-image: url(../img/bg-1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 80px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .main-out-box {
    margin-top: 0;
    padding: 0;
    padding-top: 0;
  }
}

.main-out-box .main-box {
  width: 100%;
}

@media (min-width: 1201px) {
  .main-out-box .main-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    height: 40vw;
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .main-out-box .main-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    height: 40vw;
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .main-out-box .main-box {
    display: -ms-grid;
    display: grid;
  }
}

.main-out-box .main-box .carousel-box {
  width: 55%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 75% 0, 96.1% 100%, 0% 100%);
          clip-path: polygon(0 0, 75% 0, 96.1% 100%, 0% 100%);
  display: block;
}

@media (max-width: 768px) {
  .main-out-box .main-box .carousel-box {
    width: 100vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 90vw;
    margin-top: -15vw;
    -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
  }
}

.main-out-box .main-box .carousel-box .slide-in-box {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 40vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  border: solid #fff 1px;
}

@media (max-width: 768px) {
  .main-out-box .main-box .carousel-box .slide-in-box {
    height: 80vw;
  }
}

.main-out-box .main-box .carousel-box .slide-in-box .slide-title-box {
  padding: 10px;
  width: 100%;
  background-color: #00000099;
  color: #fff;
  min-width: 50vw;
  word-break: break-all;
}



.main-out-box .main-box .carousel-box .slide-in-box .slide-title-box h1 {
  word-break: break-all;
}

@media (max-width: 768px) {
  .main-out-box .main-box .carousel-box .slide-in-box .slide-title-box h1 {
    font-size: 18px;
  }
  .main-out-box .main-box .carousel-box .slide-in-box .slide-title-box h2 {
    font-size: 15px;
  }
}

.main-out-box .main-box .carousel-box .slide-in-box .slide-title-box h1 {
  font-size: 28px;
}

.main-out-box .main-box .carousel-box .slide-in-box .slide-title-box h2 {
  font-size: 20px;
}

.main-out-box .main-box .video-box {
  width: 58%;
  height: 100%;
  margin-left: -20%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #a1a1a1;
}

@media (max-width: 768px) {
  .main-out-box .main-box .video-box {
    width: 100vw;
    margin-left: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 90vw;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 91%, 0% 81%);
            clip-path: polygon(0 0, 100% 0, 100% 91%, 0% 81%);
  }
}

.main-out-box .main-box .video-box .main-video-iframe {
  width: 100%;
  height: 100%;
}

.owl-prev,
.owl-next {
  color: #fff;
  background: #333;
  padding: 5px 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.owl-prev {
  left: 10px;
}

.owl-next {
  right: 10px;
}

.owl-dot {
  background: #fff;
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  display: inline-block;
}

.owl-dot.active {
  background: #333;
}

.owl-next,
.owl-prev {
  background-color: unset;
}

.owl-next img,
.owl-prev img {
  height: 25px;
  -webkit-filter: drop-shadow(1px 1px 1px #00000099);
          filter: drop-shadow(1px 1px 1px #00000099);
}

@media (min-width: 1201px) {
  .owl-next {
    margin-right: 100px;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .owl-next {
    margin-right: 100px;
  }
}

.owl-theme .owl-nav [class*="owl-"] {
  background: unset !important;
}

@media (min-width: 1201px) {
  .owl-next {
    right: 4vw;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .owl-next {
    right: 4vw;
  }
}

.owl-theme .owl-dots {
  margin-top: -3vw;
  z-index: 9;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 5vw;
}

.link-area {
  --bs-gutter-x: unset !important;
}

.links-out-box {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (max-width: 768px) {
  .links-out-box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (min-width: 1201px) {
  .links-out-box {
    padding: 20px;
    width: 45vw;
    height: 29vw;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .links-out-box {
    padding: 20px;
    width: 45vw;
    height: 29vw;
  }
}

@media (max-width: 768px) {
  .links-out-box {
    height: 162vw;
    width: 100vw;
    padding-right: 0 !important;
  }
}

.links-out-box .links-box {
  width: 100%;
  height: 100%;
  background-image: url(../img/links-box-bg.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .links-out-box .links-box {
    background-image: url(../img/links-box-bg-mo.png);
  }
}

.links-out-box .links-box .title {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3.2vw;
  margin-top: 0.5vw;
}

@media (max-width: 768px) {
  .links-out-box .links-box .title {
    height: 7.2vw;
  }
}

.links-out-box .link-content-box {
  padding-left: 4vw;
  padding-top: 0.5vw;
  padding-right: 1.7vw;
  height: 100%;
}

@media (max-width: 768px) {
  .links-out-box .link-content-box {
    padding-left: 14vw;
    padding-top: 3.5vw;
    padding-right: 12.7vw;
  }
}

.links-out-box .link-content-box .row div:nth-of-type(1) .links-in-box {
  background-image: url(../img/link-icon-1.png);
  background-size: 33%;
  background-position: 22px 22px;
  background-repeat: repeat;
  background-color: #fff;
  border: solid 1px #eee;
}

.links-out-box .link-content-box .row div:nth-of-type(1) .links-in-box:hover {
  background-image: url(../img/link-icon-1-ani.gif);
}

.links-out-box .link-content-box .row div:nth-of-type(2) .links-in-box {
  background-image: url(../img/linkn-icon-2.png);
  background-size: 33%;
  background-position: 22px 22px;
  background-repeat: repeat;
  background-color: #fff;
  border: solid 1px #eee;
}

.links-out-box .link-content-box .row div:nth-of-type(2) .links-in-box:hover {
  background-image: url(../img/linkn-icon-2-2.gif);
}

.links-out-box .link-content-box .row div:nth-of-type(3) .links-in-box {
  background-image: url(../img/link-icon-3.png);
  background-size: 100%;
  background-repeat: repeat;
  background-color: #fff;
  border: solid 1px #eee;
}

.links-out-box .link-content-box .row div:nth-of-type(3) .links-in-box:hover {
  background-image: url(../img/link-icon-3-2.gif);
}

.links-out-box .link-content-box .row div:nth-of-type(4) .links-in-box {
  background-image: url(../img/link-icon-4.png);
  background-size: 33%;
  background-repeat: repeat;
  background-color: #fff;
  border: solid 1px #eee;
}

.links-out-box .link-content-box .row div:nth-of-type(4) .links-in-box:hover {
  background-image: url(../img/link-icon-4-2.gif);
}

.links-out-box .link-content-box .row div:nth-of-type(5) .links-in-box {
  background-image: url(../img/link-icon-5.png);
  background-repeat: repeat;
  background-color: #fff;
  border: solid 1px #eee;
}

.links-out-box .link-content-box .row div:nth-of-type(5) .links-in-box:hover {
  background-image: url(../img/link-icon-5.gif);
}

.links-out-box .link-content-box .row div:nth-of-type(6) .links-in-box {
  background-image: url(../img/link-icon-6.png);
  background-size: 250%;
  background-repeat: repeat;
  background-color: #fff;
  border: solid 1px #eee;
  -webkit-transition: 1s;
  transition: 1s;
  background-position: -50px 0;
}

.links-out-box .link-content-box .row div:nth-of-type(6) .links-in-box:hover {
  -webkit-transition: 1s;
  transition: 1s;
  background-position: 50px 0;
}

.links-out-box .link-content-box .row div:nth-of-type(7) .links-in-box {
  background-image: url(../img/link-icon-7.png);
  background-size: 50%;
  background-repeat: repeat;
  background-color: #fff;
  border: solid 1px #eee;
}

.links-out-box .link-content-box .row div:nth-of-type(7) .links-in-box:hover {
  background-image: url(../img/link-icon-7-2.gif);
}

.links-out-box .link-content-box .row div:nth-of-type(8) .links-in-box {
  background-image: url(../img/link-icon-8.png);
  background-position: 0 0;
  background-repeat: repeat;
  background-color: #fff;
  border: solid 1px #eee;
  -webkit-transition: 1s;
  transition: 1s;
}

.links-out-box .link-content-box .row div:nth-of-type(8) .links-in-box:hover {
  background-position: 50px 0px;
  -webkit-transition: 1s;
  transition: 1s;
}

.links-out-box .link-content-box .links-in-box {
  background-color: #abc;
  height: 8vw;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  cursor: pointer;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .links-out-box .link-content-box .links-in-box {
    height: 33vw;
  }
}

.links-out-box .link-content-box .links-in-box .link-text-box {
  background-color: #cccccc99;
  width: 100%;
  border-top: solid 3px #a7a7a7;
  text-align: left;
  font-size: 14px;
}

@media (max-width: 768px) {
  .links-out-box .link-content-box .links-in-box .link-text-box {
    height: 7.5vw;
  }
}

.news-area {
  --bs-gutter-x: unset !important;
}

.news-out-box {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 9px;
}

@media (max-width: 768px) {
  .news-out-box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 40px;
  }
}

@media (min-width: 1201px) {
  .news-out-box {
    padding: 20px;
    width: 45.2vw;
    height: 50vw;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .news-out-box {
    padding: 20px;
    width: 45vw;
    height: 50vw;
  }
}

@media (max-width: 768px) {
  .news-out-box {
    height: 100vw;
    width: 99vw;
    padding-right: 0 !important;
  }
}

.news-out-box .news-box {
  width: 100%;
  height: 100%;
  background-image: url(../img/news-box-bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .news-out-box .news-box {
    background-image: url(../img/news-box-bg-mo.png);
  }
}

.news-out-box .news-box .news-gap2 {
  height: 3.2vw;
}

.news-out-box .news-box .title {
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3.2vw;
}

@media (max-width: 768px) {
  .news-out-box .news-box .title {
    height: 7.2vw;
  }
}

.news-out-box .news-box .title.tabs {
  padding-left: 30px;
  padding-right: 30px;
}

.news-out-box .news-box .title .tab {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  border-bottom: solid #00000000 3px;
}

.news-out-box .news-box .title .tab.active {
  border-bottom: 3px solid #888;
}

@media (max-width: 768px) {
  .news-out-box .news-box .title .tab {
    margin-top: 3px;
  }
}

.bg-body-tertiary {
  background-color: unset !important;
}

.bear-box {
  background-image: url(../img/bear.svg);
  width: 13vw;
  height: 30vw;
  background-repeat: no-repeat;
  position: absolute;
  top: 85vw;
  left: 46.5vw;
  z-index: -1;
}

.bear-box .bear-hand {
  background-image: url(../img/bear-hand.svg);
  background-repeat: no-repeat;
  width: 3.2vw;
  height: 11vw;
  position: absolute;
  left: 0.6vw;
  top: 7.9vw;
  -webkit-transform-origin: 53% 2%;
          transform-origin: 53% 2%;
  -webkit-animation: bear-hand-ani infinite 10s;
          animation: bear-hand-ani infinite 10s;
}

.cat-box {
  background-image: url(../img/cat.png);
  width: 10vw;
  height: 8vw;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 5vw;
  top: 0;
  -webkit-transform: translateY(-67%);
          transform: translateY(-67%);
  z-index: 1;
}

@media (max-width: 768px) {
  .cat-box {
    display: none;
  }
}

@-webkit-keyframes bear-hand-ani {
  15% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  20% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  25% {
    -webkit-transform: rotate(140deg);
            transform: rotate(140deg);
  }
  30% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  35% {
    -webkit-transform: rotate(140deg);
            transform: rotate(140deg);
  }
  40% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes bear-hand-ani {
  15% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  20% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  25% {
    -webkit-transform: rotate(140deg);
            transform: rotate(140deg);
  }
  30% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  35% {
    -webkit-transform: rotate(140deg);
            transform: rotate(140deg);
  }
  40% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.video-out-box {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  position: relative;
  margin-bottom: 18vw;
  left: 28px;
}

@media (min-width: 1201px) {
  .video-out-box {
    width: 41vw;
    height: 44vw;
    margin-top: 4.2vw;
    
    margin-left: 1.8vw;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .video-out-box {
    padding: 20px;
    width: 41vw;
    height: 44vw;
    margin-top: -10vw;
    margin-left: 2vw;
  }
}

@media (max-width: 768px) {
  .video-out-box {
    height: 100vw;
    width: 100vw;
    padding-right: 0 !important;
    margin-top: 40px;
  }
}

.video-out-box .video-box {
  width: 100%;
  height: 100%;
  background-image: url(../img/video-box-bg.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 3.2vw;
}

.video-out-box .video-box .video-in-box {
  height: 16.7vw;
  width: 36.6vw;
  margin-left: 0.8vw;
}

@media (max-width: 768px) {
  .video-out-box .video-box .video-in-box {
    height: 40vw;
    width: 84vw;
    margin-top: 3vw;
    margin-left: 5vw;
  }
}

.video-out-box .video-box .video-text {
  width: 37vw;
  height: 20vw;
  color: #555;
  padding-top: 2vw;
  padding-left: 1vw;
}

@media (max-width: 768px) {
  .video-out-box .video-box .video-text {
    width: 90vw;
    padding-left: 5vw;
    height: 46vw;
  }
}

.video-out-box .video-box .video-text .title {
  font-size: 17px;
  font-weight: 600;
}

.video-out-box .video-box .video-text .sub-title {
  size: 14px;
  font-weight: 300;
}

.video-out-box .video-box .video-text .brief {
  padding-top: 1vw;
  font-size: 13px;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #888;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.brief-text {
  font-size: 12px;
  font-weight: 200;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #888;
  display: -webkit-box;
  -webkit-line-clamp: 10
  ;
  -webkit-box-orient: vertical;
  text-align: justify;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .video-out-box .video-box .video-text .brief {
    -webkit-line-clamp: 5;
  }
}

@media (max-width: 1000px) {
  .video-out-box .video-box .video-text .brief {
    -webkit-line-clamp: 4;
  }
}

@media (max-width: 900px) {
  .video-out-box .video-box .video-text .brief {
    -webkit-line-clamp: 1;
  }
}

@media (max-width: 768px) {
  .video-out-box .video-box .video-text .brief {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

.airplane1 {
  background-image: url(../img/airplane-1.svg);
  background-repeat: no-repeat;
  width: 5vw;
  height: 6vw;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-animation: airplane1-ani infinite 10s;
          animation: airplane1-ani infinite 10s;
  z-index: -1;
  -webkit-animation: plane1 infinite 20s;
          animation: plane1 infinite 20s;
}

@-webkit-keyframes plane1 {
  0% {
    -webkit-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
    bottom: 0;
    left: 0;
  }
  45% {
    opacity: 1;
  }
  50% {
    -webkit-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
    bottom: 100vw;
    left: 100vw;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
    bottom: 100vw;
    left: 100vw;
    opacity: 0;
  }
}

@keyframes plane1 {
  0% {
    -webkit-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
    bottom: 0;
    left: 0;
  }
  45% {
    opacity: 1;
  }
  50% {
    -webkit-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
    bottom: 100vw;
    left: 100vw;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
    bottom: 100vw;
    left: 100vw;
    opacity: 0;
  }
}

.airplane2 {
  background-image: url(../img/airplane-2.svg);
  background-repeat: no-repeat;
  width: 5vw;
  height: 6vw;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-animation: airplane1-ani infinite 10s;
          animation: airplane1-ani infinite 10s;
  z-index: -1;
  -webkit-animation: plane2 infinite 25s;
          animation: plane2 infinite 25s;
  -webkit-transform: rotateZ(10deg);
          transform: rotateZ(10deg);
}

@-webkit-keyframes plane2 {
  0% {
    bottom: 0;
    right: 0;
    opacity: 0;
  }
  55% {
    opacity: 0;
    bottom: 0;
    right: 0;
  }
  60% {
    opacity: 1;
  }
  95% {
    bottom: 100vw;
    right: 100vw;
    opacity: 1;
  }
  100% {
    bottom: 100vw;
    right: 100vw;
    opacity: 0;
  }
}

@keyframes plane2 {
  0% {
    bottom: 0;
    right: 0;
    opacity: 0;
  }
  55% {
    opacity: 0;
    bottom: 0;
    right: 0;
  }
  60% {
    opacity: 1;
  }
  95% {
    bottom: 100vw;
    right: 100vw;
    opacity: 1;
  }
  100% {
    bottom: 100vw;
    right: 100vw;
    opacity: 0;
  }
}

.news-line {
  width: 100%;
  height: 10vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .news-line {
    height: 45px;
    width: 100vw;
    padding-left: 35px;
    padding-right: 35px;
  }
}

.news-line .news-pic-box {
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .news-line .news-pic-box {
    display: none;
  }
}

.news-line .news-text {
  padding: 5px;
  width: 50%;
  padding-top: 0;
}

@media (max-width: 768px) {
  .news-line .news-text {
    display: -ms-grid;
    display: grid;
    width: 100%;
    -ms-grid-columns: 1fr 71px;
        grid-template-columns: 1fr 71px;
    border-bottom: solid 3px #eee;
    height: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.news-line .news-text .title {
  font-size: 1vw;
  font-weight: 600;
  color: #878787;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  max-height: 3em;
  line-height: 1.5em;
  display: -webkit-box;
}

@media (max-width: 768px) {
  .news-line .news-text .title {
    font-size: 14px;
    padding-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
    display: block;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .news-line .news-text .title {
    font-size: 14px;
  }
}

.news-line .news-text .date {
  font-size: 10px;
  color: #6d4a1c;
}

.news-line .news-text .brief {
  font-size: 0.8vw;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #888;
}

.news-line .news-text .brief span {
  font-size: 12px !important;
  color: #888 !important;
  font-weight: 300 !important;
}

@media (min-width: 1201px) {
  .news-line .news-text .brief {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .news-line .news-text .brief {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 768px) {
  .news-line .news-text .brief {
    white-space: nowrap;
    display: none;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .news-line.narrow {
    margin-top: -3vw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: calc(16vw - 10px);
    margin-left: 10px;
    padding: unset;
  }
  .news-line.narrow .news-pic-box {
    width: 100%;
    height: 8vw;
  }
  .news-line.narrow .news-text {
    height: 8vw;
    width: 100%;
  }
}

@media (min-width: 1201px) {
  .news-line.narrow {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: calc(16vw - 10px);
    margin-left: 10px;
    padding: unset;
  }
  .news-line.narrow .news-pic-box {
    width: 100%;
    height: 8vw;
  }
  .news-line.narrow .news-text {
    height: 8vw;
    width: 100%;
  }
}

@media (min-width: 1201px) {
  .news-line.wide {
    padding-left: 33px;
    height: calc(16vw - 10px);
    padding: unset;
    margin-left: 30px;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .news-line.wide {
    padding-left: 0;
    margin-top: -2vw;
    height: calc(16vw - 10px);
    padding: unset;
    margin-left: 30px;
  }
}

.news-line.wide .news-pic-box {
  width: 15vw;
}

@media (min-width: 1201px) {
  .news-line.wide .news-text .brief {
    -webkit-line-clamp: 7;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .news-line.wide .news-text .brief {
    -webkit-line-clamp: 5;
  }
}

.resource-out-box {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  margin-top: 3px;
  width: 100%;
}

@media (min-width: 1201px) {
  .resource-out-box {
    margin-top: 2vw;
    margin-left: 9vw;
    width: 45vw;
    height: 31vw;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .resource-out-box {
    width: 45vw;
    height: 31vw;
  }
}

@media (max-width: 768px) {
  .resource-out-box {
    height: 96vw;
    width: 100vw;
  }
}

.resource-out-box .resource-box {
  width: 100%;
  height: 100%;
  background-image: url(../img/rc-bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 1.2vw;
}

@media (max-width: 768px) {
  .resource-out-box .resource-box {
    background-image: unset;
  }
}

.resource-out-box .resource-title {
  font-size: 1.1em;
  font-weight: 600;
  color: #bbbbbb;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .resource-out-box .resource-title {
    font-size: 20px;
    margin-bottom: 15px;
    padding-top: 15px;
  }
}

.resource-out-box .resource-box .resource-items {
  padding-left: 5.5vw;
}

.resource-out-box .resource-box .resource-items .resource-item {
  width: 8.5vw;
  height: 8.5vw;
  border: solid 1px #eee;
  margin: 0.7vw 0 0 0.7vw;
  padding-right: 0;
  padding-left: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

.resource-out-box .resource-box .resource-items .resource-item .resource-text {
  padding: 5px;
  width: 100%;
  height: 100%;
  display: none;
}

.resource-out-box .resource-box .resource-items .resource-item:hover .resource-text {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  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;
  font-size: 1vw;
  font-weight: 300;
  color: #ffffff;
  background-color: #00000099;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-height: 1.6vw;
}


.footer {
  //position: fixed;
  position:absolute
  bottom: 0;
  background-image: url(../img/footer-bg.png);
  width: 100%;
  height: 20vw;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 13px;
  color: #888;
  font-weight: 300;
  margin-right: 0;
  margin-left: 0;
  z-index: 999;
  
}

@media (max-width: 768px) {
  .footer {
    background-image: url(../img/footer-bg-mobile.png);
    height: 100vw;
    font-size: 15px;
  }
}

.footer .footer-left {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8vw;
      grid-template-columns: 1fr 8vw;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  justify-items: flex-end;
}

@media (max-width: 768px) {
  .footer .footer-left {
    -ms-grid-columns: 1fr 20vw;
        grid-template-columns: 1fr 20vw;
    padding-left: 32vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    justify-items: flex-start;
  }
}

.footer .footer-left .edu-logo {
  width: 6vw;
  height: 6vw;
}

@media (max-width: 768px) {
  .footer .footer-left .edu-logo {
    width: 15vw;
    height: 15vw;
  }
}

.footer .footer-right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1vw;
  padding-left: 14vw;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}


.footer-home {
  //position: fixed;
  position: absolute;
  bottom: 0;
  background-image: url(../img/footer-bg.png);
  width: 100%;
  height: 20vw;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 13px;
  color: #888;
  font-weight: 300;
  margin-top: 200px;
  margin-right: 0;
  margin-left: 0px;

  
  
}

@media (max-width: 768px) {
  .footer-home {
    background-image: url(../img/footer-bg-mobile.png);
    height: 100vw;
    font-size: 15px;
    
  }
}

.footer-home .footer-left {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8vw;
      grid-template-columns: 1fr 8vw;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  justify-items: flex-end;
  padding-left: 100px;
}

@media (max-width: 768px) {
  .footer-home .footer-left {
    -ms-grid-columns: 1fr 20vw;
        grid-template-columns: 1fr 20vw;
    padding-left: 32vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    justify-items: flex-start;
  }
}

.footer-home .footer-left .edu-logo {
  width: 6vw;
  height: 6vw;
}

@media (max-width: 768px) {
  .footer-home .footer-left .edu-logo {
    width: 15vw;
    height: 15vw;
  }
}

.footer-home .footer-right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1vw;
  padding-left: 14vw;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}

.resource-carousel {
  width: 100%;
  height: 100vw;
  border: solid 1px #ededed;
}

.resource-carousel .owl-two {
  padding: 5vw;
  height: 100%;
}

.resource-carousel .owl-two .slide-in-box {
  height: 85vw;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.resource-carouselB {
  border: solid 0px #ededed;
}

.resource-carouselB .owl-three {
  padding-bottom: 12px;
}

.resource-carouselB .slide-in-box {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 65vw;
  height: calc(65vw * 0.6);
  max-width: 798px;
  max-height: calc($maxwidth * 0.6);
}

@media (max-width: 768px) {
  .resource-carouselB .slide-in-box {
    width: 100vw;
    height: calc(100vw * 0.6);
    max-height: unset;
  }
}

.resource-carouselB .owl-theme .owl-dots {
  margin-top: 0vw;
}

@media (min-width: 1201px) {
  .resource-carouselB .owl-next {
    right: 1vw;
  }
}

.title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.title-box > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  .title-box > div {
    display: -ms-grid;
    display: grid;
  }
}

.title-box .title {
  font-size: 1.5vw;
  font-weight: 600;
  color: #585858;
  border-bottom: solid 1px #d3d3d3;
}

@media (max-width: 768px) {
  .title-box .title {
    font-size: 4vw;
    border-bottom: unset;
  }
}

.content-box {
  margin: auto;
  margin-top: 13vw;
  max-width: 1200px;
  //min-height: calc(100vh + 15vw);
  min-height:calc(87vh - 20vw)
}

@media (max-width: 768px) {
  .content-box {
    margin-top: 13px;
    max-width: unset;
    padding: 12px;
    min-height: calc(100vh + 15vw);
  }
}

.content-box .title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.title-box-resource {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #d3d3d3;
}

@media (max-width: 1200px) {
  .content-box .title-box {
    display: -ms-grid;
    display: grid;
  }
}

.content-box .title-box .title {
  color: #585858;
  font-size: 1.2vw;
  padding-top: 5px;
}

.content-box .title-box .title-achieve {
  color: #585858;
  font-size: 1.6vw;
  padding-top: 5px;
  font-weight: 600;
  border-bottom: solid 1px #d3d3d3;
}

@media (max-width: 768px) {
  .content-box .title-box .title {
    font-size: 25px;
  }
}

.content-box .title-box .title-tab {
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  margin-top: 5px;
  border-bottom: solid 1px #d3d3d3;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #6d4a1c;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .content-box .title-box .title-tab {
    padding-right: unset;
    padding-left: unset;
    padding-top: unset;
    border: solid 1px #d3d3d3;
    padding: 2px 4px;
    margin: 3px;
  }
}

.content-box .title-box .title-tab.active {
  border-top: solid 1px #d3d3d3;
  border-left: solid 1px #d3d3d3;
  border-right: solid 1px #d3d3d3;
  border-bottom: solid 0px #d3d3d3;
}

@media (min-width: 1201px) {
  .content-box .title-box .title-tab.active {
    border-radius: 5px 5px 0 0;
  }
}

@media (max-width: 768px) {
  .content-box .title-box .title-tab.active {
    border: solid 1px #585858;
  }
}

.content-box-archive {
  margin: auto;
  margin-top: 13vw;
  max-width: 1200px;
  
  margin-bottom: 50px;
  min-height: calc(100vh + 20vw);
}

.content-box-archive .title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content-box-archive .title-box .title {
  color: #585858;
  font-size: 1.8vw;
  padding-top: 5px;
}

.content-box-archive .title-box .title-achieve {
  color: #585858;
  font-size: 1.2vw;
  padding-top: 5px;
  font-weight: 600;
  border-bottom: solid 1px #d3d3d3;
}

.title-box-resource .title-resource {
  color: #585858;
  font-size: 1.2vw;
  padding-top: 5px;
  font-weight: 600;
}

.teFilterBlock{
 
}

.content-box-archive .title-box .title-tab {
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  margin-top: 5px;
  border-bottom: solid 1px #d3d3d3;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #6d4a1c;
  white-space: nowrap;
}

.content-box-archive .title-box .title-tab.active {
  border-top: solid 1px #d3d3d3;
  border-left: solid 1px #d3d3d3;
  border-right: solid 1px #d3d3d3;
  border-bottom: solid 0px #d3d3d3;
}

@media (min-width: 1201px) {
  .content-box-archive .title-box .title-tab.active {
    border-radius: 5px 5px 0 0;
  }
}

@media (max-width: 768px) {
  .content-box-archive .title-box .title-tab.active {
    border: solid 1px #585858;
  }
}


.content-box-resource {
  margin: auto;
  margin-top: 13vw;
  max-width: 1200px;
  
  margin-bottom: 50px;
  min-height: calc(100vh + 40vw);
}



.liContent {
  line-height: 2.1em;
  font-size: 15px;
}

.liLink a{
  color: #6d4a1c;
  text-decoration: none;
}
.aesthetic {
  color: #333;
  letter-spacing: 1.5px;
}

.aesthetic .main-content {
  padding: 0px 20px;
}

.aesthetic .form-select {
  margin-bottom: 20px;
}

.aesthetic .introproContent {
  font-size: 16px;
}

.aesthetic h2 {
  font-size: 25px;
  font-weight: 700;
}

.aesthetic .menu-box {
    background-color: #f8f9fa;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.aesthetic .menu-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.aesthetic .intropro1 {
    font-size: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.aesthetic li {
    margin-bottom: 8px;
}

.aesthetic .intropro1Text {
    text-decoration: none;
    color: #585858;
    font-size: 16px;
}

.aesthetic .intropro1Text:hover {
    text-decoration: underline;
    color: #202020;
}

.aesthetic .menu-box .archive-line {
  color: #a7a7a7;
}

.aesthetic .menu-box .intropro1Text.active {
  font-weight: 900;
  color: #6d4a1c;
}

.aesthetic-title {
  font-size: 1.5vw;
  font-weight: 600;
  color: #585858;
  margin-bottom: 20px;
}

.aesthetic-content {
  font-size: 1.1vw;
  font-weight: 2300;
  color: #585858;
  margin-bottom: 20px;
}

.modal {
  width: 100vw;
  height: 100vh;
}

.modal .modal-dialog {
  width: 90vw;
  max-width: 1000px;
  height: 90vh;
}

@media (max-width: 768px) {
  .modal .modal-dialog {
    max-width: unset;
    width: 95vw;
    height: 95vh;
    margin-top: 50px;
  }
}

.news-img {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-img img {
  max-height: 400px;
  margin: auto;
}

@media (max-width: 768px) {
  .news-img img {
    max-width: 90vw;
    max-height: unset;
  }
}

.news-body img {
  max-width: 100%;
}

.introproBlock1 {
  color: #bbb;
  font-size: 16px;
}

.introproBlock1 ul {
  font-size: 14px;
  color: #585858;
}

.linBottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.linBottom .linCard {
  width: 30%;
  height: 20vw;
  margin-top: 2vw;
  margin-right: 2vw;
}

@media (max-width: 768px) {
  .linBottom .linCard {
    width: calc(50% - 20px);
    height: 30vw;
    margin-top: unset;
    margin-right: unset;
    margin: 10px;
  }
}

.linBottom .linCard .linPic {
  width: 100%;
  height: 80%;
  border: 1px solid #eee;
}

.linBottom .linCard .linTitle {
  font-size: 1.2vw;
  font-weight: 800;
  text-align: center;
  color: #878787;
  margin-top: 0.5vw;
}

@media (max-width: 768px) {
  .linBottom .linCard .linTitle {
    font-size: 3vw;
  }
}

.secBottom {
  width: 100%;
  margin-top: 1%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.secBottom .secCard {
  cursor: pointer;
  width: 23%;
  margin-right: 1%;
  margin-bottom: 4%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .secBottom .secCard {
    width: 49%;
    padding-right: 5px !important;
    padding-left: 5px !important;
  }
}

.secBottom .secCard .secPic {
  position: relative;
  width: 100%;
  min-height: 200px;
  aspect-ratio: 1/1;
}

@media (max-width: 768px) {
  .secBottom .secCard .secPic {
    min-height: 44vw;
  }
}

.secBottom .loading-img {
  --bgPos: 0 0;
  --bgSize: cover;
  --default-url: url(../img/default.png);
  background-image: var(--default-url);
  background-position: var(--bgImgPos);
  background-size: cover !important;
  background-repeat: no-repeat;
}

.secBottom .loading-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: var(--bgSize);
  object-fit: var(--bgSize);
}

.secBottom .secTextBox {
  width: 100%;
  padding: 10px;
}

@media (max-width: 768px) {
  .secBottom .secTextBox {
    padding: 5px;
  }
}

.secBottom .secTextBox .secDate {
  width: 85%;
  font-size: 13px;
  margin-top: 2%;
  color: #878787;
}

.secBottom .secTextBox .secTitle {
  font-size: 15px;
  margin-top: 2%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 800;
}

.secBottom .secTextBox .secSubTitle {
  width: 85%;
  font-size: 13px;
  margin-top: 1%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #878787;
}

.subtitle-box {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-top: 20px;
}

.icon {
  height: 25px;
}

.search-box .btn-primary {
  min-width: 100px;
}

.btn-dark-gray {
  border-radius: 5px;
  background-color: #585858;
  color: #fff;
  padding: 10px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}

.btn-white {
  padding: 10px;
  border: solid 1px #999;
  width: auto;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
}

.btn-white.small {
  padding: 4px 10px;
}

.btn-white:hover {
  background-color: #999;
  color: #fff;
}

.font-bold, .text-bold {
  font-weight: 700;
}

.bg-gray {
  background-color: #999;
}

.bg-dark-gray {
  background-color: #333;
}

.class-row {
  padding: 10px;
  border-bottom: solid 1px #ccc;
}

.class-header-row > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.text-gray {
  color: #999;
}

.filter-options > div {
  margin-bottom: 10px;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
  border-radius: 3px;
}

.course-slide-box {
  height: 40vw;
  max-height: 450px;
}

.owl-course-detail {
  position: relative;
  width: 100%;
  height: 40vw;
  max-height: 450px;
}

.owl-course-detail .owl-next {
  margin-right: unset;
  right: 0;
}

.owl-course-detail .owl-prev {
  left: 0;
}

.owl-course-detail .owl-prev, .owl-course-detail .owl-next {
  color: #fff;
  background: unset;
  padding: 5px 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: unset;
  top: 10vw;
}

.owl-course-detail .owl-dot {
  width: 15px;
  height: 15px;
}

.owl-course-detail .owl-dots {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.owl-course-detail .slide-in-box {
  width: 100%;
  height: 40vw;
  max-height: 450px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-bottom {
  border-bottom: solid 1px #ccc;
}

.gray-frame {
  border: solid 1px #ccc;
  padding: 3px 10px;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 16px;
  line-height: 2em;
}

.gray-box {
  background-color: #757575;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
}

.input-group-text.required::after {
  content: '*';
  color: red;
}

@media (max-width: 768px) {
  .input-group-text {
    white-space: wrap;
    text-align: left;
  }
}

.thead-dark {
  background-color: #757575 !important;
  color: #fff !important;
}

.thead-dark tr th {
  background-color: #757575 !important;
  color: #fff !important;
}

.bi-eye, .bi-eye-slash {
  cursor: pointer;
  /* Makes the icon clickable */
}

.login-form {
  margin: auto;
  min-width: 300px;
}

#loginButton, #forgotPasswordButton {
  margin-bottom: 10px;
}

#menu-logout, #menu-login {
  display: none;
}

#menu-logout.active, #menu-login.active {
  display: unset;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: .25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.select-btn {
  width: calc(100% - 50px) !important;
}

.as-btn {
  cursor: pointer;
}

.as-btn:hover {
  background-color: #757575;
  color: #fff;
}

.course-left-menu {
  padding: 10px;
  border: solid 1px #ccc;
  border-radius: 5px;
}

.btn-sm {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

.card-header-course {
  width: 100%;
  height: 300px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 1201px) {
  .course-left-menu-box {
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .submenu-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.small-icon {
  width: 50px;
}

.course-data .gray-frame {
  font-size: 12px;
}

.text-lightgray {
  color: #ccc;
}

.pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.check-list-content > div:nth-of-type(even) {
  background-color: #ededed;
}

.alpha {
  opacity: 0.2 !important;
}

.no-pointer {
  pointer-events: none;
  cursor: default;
}

#status {
  border: solid 1px #888;
  max-width: 130px;
  padding: 5px;
  text-align: center;
}

.font-l {
  font-size: 17px;
}

.form-header {
  padding: 15px;
  color: #fff;
  background-color: #757575;
}

.radius-up {
  border-radius: 5px 5px 0 0 !important;
}

.radius-down {
  border-radius: 0 0 5px 5px !important;
  border: solid 1px #ccc;
  border-top: 0px solid #fff;
  padding: 10px;
}

#event-box:nth-of-type(odd) {
  background-color: #f8f9fa;
}

#event-box > div {
  padding: 10px;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 1201px) {
  .mobile-only {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-border {
    border: solid 1px #e2e2e2;
  }
}

@media (max-width: 768px) {
  .mobile-m2 {
    margin: 2px;
  }
}

@media (max-width: 768px) {
  .mobile-radius {
    border-radius: 8px;
  }
}

.badge-info {
  background-color: #17a2b8 !important;
}

.article-cover-photo img {
  width: 100%;
}

@media (max-width: 768px) {
  .title.pe-5 {
    padding-right: 0px !important;
  }
}

.border-left {
  border-left: solid 1px #868686;
}

.border-left-5 {
  border-left: solid 5px #868686;
}

.border-left-2 {
  border-left: solid 2px #868686;
}

.owl-resource .item {
  width: 100%;
  aspect-ratio: 1/1;
  min-height: 300px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.border-bottom {
  border-bottom: solid 1px #868686;
}

.resource-info .title {
  font-size: 24px;
  font-weight: 700;
}

.square {
  aspect-ratio: 1/1;
}

.w100 {
  width: 100%;
}

.activity-box .secTextBox {
  background-color: #f1f1f1;
}

.activity-box .secPic {
  background-size: cover !important;
  background-position: center center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  overflow: hidden;
}

.activity-box .secPic.zoomed {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.secPicContainer {
  overflow: hidden;
}

.atp_button_box {
  padding: 5px 12px;
  border: 1px solid #707070;
  border-radius: 7px;
  width: 100px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

.activity-detail-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 2fr 1fr;
      grid-template-rows: 2fr 1fr;
}

.activity-detail-title {
  font-size: 28px;
  font-weight: 700;
}

.article-detail-content {
  padding: 14px;
}

.article-detail-content iframe {
  max-width: 100%;
}

.table-header {
  font-weight: 700;
  background-color: #525252;
  padding: 3px;
  color: #fff;
}

.table-header:not(.exclude) {
  margin-right: unset !important;
  margin-left: unset !important;
}

#grant-list-content {
  margin-right: unset !important;
  margin-left: unset !important;
}

#grant-list-content .grant-item {
  margin-right: unset !important;
  margin-left: unset !important;
}

#grant-list-content > div {
  padding: 4px 10px;
}

#grant-list-content > div:nth-of-type(even) {
  background-color: #f1f1f1;
}

.process-item {
  padding: 20px;
  padding-left: 20px;
  position: relative;
}

.process-item.border-left {
  border-left: solid 3px #b6b6b6;
}

.process-item.border-left.transparent {
  border-left: solid 3px transparent;
}

.process-item .process-number-box {
  color: #b6b6b6;
  font-size: 12px;
  position: absolute;
  top: -7px;
  left: -7px;
}

.process-item .process-number-box .big-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #b6b6b6;
  margin-right: 10px;
}

.process-item .process-content-box {
  padding: 30px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.process-item .process-content-box .title {
  font-size: 26px;
  font-weight: 700;
}

.qa-box {
  padding: 20px;
}

.qa-box .q-title {
  font-weight: 700;
  color: #007bff;
}

.qa-box .q-content {
  padding: 10px;
}

#application-list-content > div {
  padding: 10px;
  margin-left: unset !important;
}

#application-list-content > div:nth-of-type(even) {
  background-color: #f1f1f1;
}

#application-list-content .badge {
  width: 70px;
}

#application-list-content .badge.wide {
  width: 100px;
}

.no-margin-left-and-right {
  margin-left: unset !important;
  margin-right: unset !important;
}

.no-margin-left {
  margin-left: unset !important;
}

.no-margin-right {
  margin-right: unset !important;
}

.grant-item-img {
  background-size: cover;
  background-position: center;
  height: 150px;
  width: 150px;
}

#cityReport-list-content > div:nth-of-type(even) {
  background-color: #f1f1f1;
}

.btn-short {
  font-size: 14px;
  padding: 3px 10px 3px 10px;
}

@media (max-width: 768px) {
  #search-result-content > .grant-item {
    padding: 10px;
  }
}

#search-result-content .grant-item:nth-of-type(even) {
  background-color: #f1f1f1;
}

@media (max-width: 768px) {
  #course-box {
    overflow: scroll;
  }
}

.wscnph {
  max-width: 100%;
  height: auto;
}
/*# sourceMappingURL=style.css.map */