@charset "utf-8";

body {
  padding: 0;
  margin: 0;
  font-family: Microsoft JhengHei, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #222;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #222;
}

a:hover,
a:focus {
  text-decoration: none !important;
  color: #222;
}

a,
input,
button {
  outline: none !important;
}

ul {
  list-style-type: none;
}

.header {
  background-color: rgba(0, 0, 0, 0);
  padding: 10px 0;
  z-index: 999;
  height: 90px;
  transition: all 0.4s ease-in-out;
}

@media (min-width: 992px) {
  .header {
    height: 120px;
  }
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 0;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  /* height: 86px; */
}

.navbar-toggler svg {
  color: #000;
  width: 30px;
  height: 30px;
}

.header.fixed .navbar-toggler svg {
  color: #fff;
}

.btn-close {
  font-size: 40px;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23ffffff' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z' clip-rule='evenodd'/></svg>");
}

.btn-close-1 {
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z' clip-rule='evenodd'/></svg>");
}

.logo,
.logo a {
  display: block;
}

.logo img {
  width: auto;
  height: 70px;
}

@media (min-width: 992px) {
  .logo img {
    height: 100px;
  }
}

.logo-fixed {
  display: none;
}

.show-logo img {
  height: 100px;
}

.nav-item {
  margin-bottom: 14px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.nav-link {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  padding: 0 6px;
  position: relative;
}

/* .nav-link::before {
    content: '';
    left: 0;
    bottom: 0;
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #49155F;
    transition: all 0.4s;
} */

@media (min-width: 992px) {
  .nav-link {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 6px;
    text-align: center;
  }

  .nav-item {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (min-width: 1400px) {
  .nav-link {
    font-size: 22px;
    margin: 0 16px;
  }
}

.nav-link:hover,
.nav-link.active {
  color: #49155f !important;
}

@media (min-width: 992px) {
  .nav-link:hover::before,
  .nav-link.active::before {
    width: 100%;
  }
}

.nav-item.dropdown {
  position: relative;
}

.dropdown_menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9;
}

.dropdown_menu.show {
  display: block;
}

.dropdown-box {
  border-radius: 0px;
  border-top: 2px solid #49155f;
  min-width: 200px;
  margin-left: -30px;
}

.dropdown-box li {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.dropdown-box li .dropdown-item {
  font-size: 18px;
  font-weight: 400; 
  color: #000;
  text-align: center;
}

.dropdown-box li:hover {
  background-color: #49155f;
}

.dropdown-box li:hover .dropdown-item {
  color: #fff;
}

@media (max-width: 991px) {
  .nav-item.dropdown .nav-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-item.dropdown .nav-link::after {
    content: '';
    border-left: 0.3em solid transparent;
    border-right: 0.3em solid transparent;
    border-top: 0.3em solid #000;
    margin-left: 0.255em;
    transform: rotate(-90deg);
    transition: all 0.2s ease-in-out;
  }

  .nav-item.dropdown.show .nav-link::after {
    transform: rotate(0deg);
  }

  .dropdown-box {
    position: relative;
    top: 10px;
    margin-left: 0;
    box-shadow: none;
  }

  .dropdown-box li .dropdown-item {
    text-align: start;
  }
}

.navbar.bg-body-tertiary {
  background-color: rgba(0, 0, 0, 0) !important;
}

.navbar .navbar-toggler {
  width: 36px;
  height: 36px;
  background-color: #49155f !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}

.navbar .navbar-toggler svg {
  color: #fff;
  width: 26px;
  height: 26px;
}

.close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  right: -10px;
  top: -10px;
  width: 50px;
  height: 50px;
  background-color: #edd010;
  border-radius: 100%;
  border: none;
  cursor: pointer;
  z-index: 9;
}

.close-btn .bi {
  color: #fff;
  margin-top: 8px;
  margin-right: 8px;
}

@media (max-width: 414px) {
  .captcha-box {
    transform: scale(0.9);
    margin-left: -15px;
  }
}

#back-to-top {
  display: none;
}

#back-to-top.show {
  display: block;
}

.back-to-top {
  position: fixed;
  right: 2%;
  bottom: 6%;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.23);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.back-to-top .fa {
  color: #49155f;
  font-size: 24px;
}

.navbar-toggler-icon {
  width: 26px;
  height: 26px;
}

.banner {
  max-width: 1920px;
  height: 400px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

@media (min-width: 768px) {
  .banner {
    height: 700px;
  }
}

@media (min-width: 1920px) {
  .banner {
    max-width: 100%;
  }
}

.slide-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

.slide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);    
  z-index: 0;
}

.slide-card img {
  max-width: 1920px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1920px) {
  .slide-card img {
    max-width: 100%;
  }
}

.swiper-con {
  bottom: 13% !important;
}

@media (min-width: 992px) {
  .swiper-con {
    bottom: 22% !important;
  }
}

.banner-title {
  display: inline-flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.65);
  padding: 10px 15px;
  max-width: 300px;
}

.banner-title h3 {
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: #49155f;
  margin-bottom: 10px;
}

.banner-title p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

@media (min-width: 992px) {
  .banner-title {
    max-width: 600px;
    padding: 20px 30px;
  }
  .banner-title h3 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .banner-title p {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (min-width: 1200px) {
  .banner-title {
    max-width: 650px;
    padding: 40px 30px;
  }
  .banner-title h3 {
    font-size: 56px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #000;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0;
  background: url(../images/right.svg) no-repeat center center;
  background-size: 100%;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.swiper-button-prev {
  left: auto;
  right: 60px;
}

.swiper-button-prev::after,
.swiper-button-prev:hover::after {
  transform: rotate(180deg);
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  background: url(../images/right-hov.svg) no-repeat center center;
  background-size: 100%;
}

@media (min-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 50px;
    height: 50px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    width: 30px;
    height: 30px;
  }

  .swiper-button-prev {
    right: 70px;
  }
}

.pag-box {
  width: 100%;
  height: 30px;
  position: absolute;
  bottom: 0;
}

.pag_con {
  width: auto !important;
  text-align: start !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  display: flex;
  flex-direction: row;
}

.pag_con .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 100%;
  opacity: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 15px !important;
}

.pag_con .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 100%;
  border: 1px solid #fff;
  transition: all 0.3s ease;
  opacity: 0;
}

.pag_con .swiper-pagination-bullet-active::after {
  opacity: 1;
}

/* home style */

.tp-notice-area {
  background-color: rgba(73, 21, 95, 0.06);
  padding: 40px 0;
}

@media (min-width: 992px) {
  .tp-notice-area .container {
    max-width: 1000px;
  }
}

.tp-notice-area ul li a:hover {
  color: #49155f !important;
}

.notice-scroll-container {
  height: 170px;
  overflow: hidden;
  padding-right: 10px;
  position: relative;
}

.notice-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.notice-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.notice-scroll-container::-webkit-scrollbar-thumb {
  background: #49155f;
  border-radius: 3px;
}

.notice-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #3a104a;
}

/* tabs style */
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 20px;
}

.nav-tabs .nav-link {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 20px;
  border: none;
  border-radius: 0;
  /* margin-right: 10px; */
  transition: all 0.3s ease-in-out;
}

.nav-tabs .nav-link:hover {
  color: #49155f;
  background-color: rgba(73, 21, 95, 0.06);
}

.nav-tabs .nav-link.active {
  color: #49155f;
  background-color: rgba(73, 21, 95, 0.06);
  border-bottom: 2px solid #49155f;
}

.tab-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.home-news {
  background-color: #fff;
}

.notice-scroll-container ul li span {
  font-size: 16px;
  font-family: 'Arial', sans-serif;
}

.notice-scroll-container ul li a {
  font-size: 18px;
}

@media (min-width: 768px) {
  .notice-scroll-container ul li span {
    font-size: 18px;
    font-family: 'Arial', sans-serif;
  }

  .notice-scroll-container ul li a {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  
}

.home-news {
  background-color: #fff;
}

.home-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-title h3 {
  color: #49155f;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.home-title p {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  max-width: 100%;
  text-align: center;
}

@media (min-width: 992px) {
  .home-title h3 {
    font-size: 36px;
  }
  .home-title p {
    font-size: 20px;
    max-width: 800px;
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.news-card:hover {
  border-color: #eee;
  box-shadow: 2px 2px 10px rgba(73, 21, 95, 0.25);
  transform: translateY(-5px);
}

.news-card-img,
.news-card-con {
  width: 100%;
}

.news-card-img {
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.news-card-con {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 10px;
  background-color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease-in-out;
}

.news-card:hover .news-card-con {
  background-color: rgba(73, 21, 95, 0.06);
}

.tp_card {
  display: block;
}

.tp_card h4 {
  font-size: 24px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

.news-card:hover .tp_card h4 {
  color: #49155f;
}

.tp_card p {
  margin-top: 20px;
  font-size: 16px;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bt_card {
  display: flex;
  justify-content: end;
  padding-right: 10px;
}

.bt_card i {
  font-style: normal;
  font-size: 18px;
  color: #49155f;
}

@media (min-width: 1200px) {
  .news-card {
    flex-direction: row;
  }
  .news-card-img,
  .news-card-con {
    width: 50%;
  }

  .news-card-con {
    padding: 20px 14px 20px 18px;
  }
}

.link-btn-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .link-btn-box {
    margin-top: 50px;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  background-color: #49155f;
  border: 1px solid #49155f;
  padding: 12px 30px;
  font-size: 18px;
  color: #fff !important;
  transition: all 0.3s ease-in-out;
}

.btn-primary span {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url(../images/Arrow-right-w.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #fff;
  color: #111!important;
  border-color: #111;
}

.btn-primary:hover span {
  background-image: url(../images/Arrow-right.svg);
  animation: lr 1s ease-in-out infinite;
}

@keyframes lr {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

.home-ytb {
  background-color: #f6f6f6;
}

.video-item {
    border: 1px solid #ddd;
    /* padding: 20px; */
    transition: all 0.3s ease-in-out;
}

.video-item:hover {
    /* border-color: #49155f; */
    box-shadow: 2px 2px 10px rgba(73, 21, 95, 0.25);
    transform: translateY(-5px);
}

.video-con {
    display: flex;
    flex-direction: column;
  padding: 20px;
}

.video-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
    font-size: 20px;
  font-weight: bold;
    color: #333;
  text-align: center;
    transition: all 0.3s ease-in-out;
}

.video-title i.fa {
  color: red;
  font-size: 20px;
}

.video-item:hover .video-title {
    color: #49155f; 
}

.video-name {
    margin-top: 10px;
}

.video-name img {
    margin-right: 5px;
}

.video-name {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    color: #666;
}

.video-link-img {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-link-img img {
  width: 100%;
  object-fit: cover;
}

.video-link-img span {
    position: absolute;
    width: 54px;
    height: 38px;
    background-image: url(../images/logos_youtube-icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    transition: all 0.3s ease-in-out;
}

.popup-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-box.active {
    display: flex;
}

.btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: none;
    cursor: pointer;
    opacity: 1; 
}

.btn-close::after,
.btn-close::before  {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

.btn-close::after {
    transform: rotate(45deg);
}

.btn-close::before {
    transform: rotate(-45deg);  
}

.video-popup-item {
    display: none;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .video-popup-item {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .video-popup-item {
        width: 800px;
    }
}

@media (min-width: 1200px) {
    .video-popup-item {
        width: 1024px;
    }
}

.video-popup-link iframe {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .video-popup-link iframe {
        height: 600px;
    }
}

.home-lump {
  padding: 30px 0;
}

@media (min-width: 992px) {
  .home-lump {
    padding: 60px 0;
  }
}

#meetingTabsContent p {
  font-size: 19px;
} 

@media (max-width: 460px) {
  #meetingTabs li.nav-item button.nav-link {
    padding: 10px 8px;
    margin-right: 2px;
  }
}

.footer {
  background-image: url(../images/footer-bj.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 20px 0 0;
}

.footer-logo img {
  margin-left: 18px;
  width: 60px;
}

.footer-logo span {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

@media (min-width: 576px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer-logo img {
      width: 99px;
      margin-left: 14px;
  }
  .footer-logo span {
    font-size: 24px;
  }
}

.footer-menu-title {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (min-width: 576px) {
  .footer-menu-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.footer-menu-list  {
  display: flex;
  flex-direction: column;
}

@media (min-width: 576px) {
  .footer-menu-list  {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-menu-list li {
  list-style: none;
  margin-bottom: 10px;
  width: 50%;
}

.footer-menu-list li a {
  display: block;
  color: #fff;
  font-size: 18px;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 576px) {
  .footer-menu-list li a {
    font-size: 20px;
  }
}

.footer-menu-list li a:hover {
  opacity: 1;
}

.footer-address-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.address-title {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

ul.footer-address-list li ol li {
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
  opacity: 0.8;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (min-width: 768px)  {
  .footer-copy {
    margin-top: 25px;
  }
}

.footer-text {
  color: #fff;
  font-size: 14px;
  text-align: center;
}



.editor {overflow: hidden;}
.editor img {display: inline-block;max-width: 100%!important;height: auto!important;}
.editor iframe {max-width: 100%;}
.editor table {max-width: 100%!important;}
.editor p { min-height:24px; margin-bottom:0; }

.editor video { max-width:100%; height:auto; }
