::selection {
  background: #5f5f5f;
  color: #FFFFFF;
  text-shadow: none;
}

::-moz-selection {
  background: #5f5f5f;
  color: #FFFFFF;
  text-shadow: none;
}

body ::-moz-selection {
  color: #22317F;
  background: #FFC917;
}

body ::selection {
  color: #22317F;
  background: #FFC917;
}


@font-face {
  font-family: "PingFangSC-Light";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/PingFangSC-Light.woff2") format("woff2");
}

@font-face {
  font-family: "PingFangSC-Regular";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/PingFangSC-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "PingFangSC-Semibold";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/PingFangSC-Semibold.woff2") format("woff2");
}

@font-face {
  font-family: "PingFangSC-Medium";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/PingFangSC-Medium.woff2") format("woff2");
}


body {
  font-family: "PingFangSC-Regular", 'microsoft YaHei';
  font-style: normal;
  line-height: 1.33em;
  color: #070721;
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent; */
  padding: 0;
  min-width: 1240px;
}

a {
  color: #070721;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* header */
.header {
  z-index: 10;
  position: fixed;
  width: 100%;
  transform: translateY(0);
  transition: all 0.3s;
  top: 0;
  min-width: 1240px;
}

.header--light {
  background-color: #F2F4F6;
}

.header.header-scroll {
  background: rgba(15, 30, 110, 0.9) !important;
  color: #FFFFFF;
}

.header.header-scroll::before,
.header.show-overlay::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: -1;
}

.header.show-overlay {
  background: rgba(15, 30, 110, 0.9) !important;
}

.header.header-scroll::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: -1;
}

.header.header-hidden {
  transform: translateY(-100%);
}

.header .header-main {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}


.header .header-main .nav {
  display: flex;
}

.header .header-main .nav .nav-item {
  display: flex;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  /* margin: 0 20px; */
  color: #fff;
  position: relative;
  height: 60px;
  /* overflow: hidden; */
}

.header .header-main .nav .nav-item a {
  color: #fff;
  font-size: 16px;
  font-family: "PingFangSC-Regular";
}

.header .header-main .nav .nav-item .submenu {
  position: absolute;
  /* padding: 10px; */
  background: rgba(15, 30, 110, 0.9) !important;
  /* top: 100%; */
  left: 0;
  min-width: 180px;
  height: 0;
  top: 105%;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 0 10px;
}

.header .header-main .nav .nav-item .submenu:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: -1;
}

.header .header-main .nav .nav-item:hover {
  /* overflow: visible; */
}

.header .header-main .nav .nav-item:hover .submenu {
  height: auto;
  padding: 10px;
  top: 100%;
}

.header .header-main .nav .nav-item .submenu .sub-nav-item {
  line-height: 2;
}

.header .header-main .nav .nav-item .submenu .sub-nav-item a {
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.header .header-main .nav .nav-item .submenu .sub-nav-item a:hover {
  color: #fff
}

.header .lan-change {
  color: #fff;
  position: relative;
  font-size: 16px;
  height: 100%;
  display: flex;
  cursor: pointer;
}

.header .lan-change .selectLan {
  display: flex;
  align-items: center;
}

.header .lan-change .selectLan img {
  margin-left: 10px;
}

.header .lan-change .lanList {
  position: absolute;
  top: 105%;
  left: 0;
  padding: 0 10px;
  background: rgba(15, 30, 110, 0.9) !important;
  backdrop-filter: blur(30px);
  opacity: 0;
  height: 0;
  transition: all ease 0.3s;
}

.header .lan-change:hover .lanList {
  top: 100%;
  opacity: 1;
  height: auto;
}

.header .lan-change .lanList p {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  line-height: 2;
}

.header .lan-change .lanList p:hover {
  color: #fff;
}

/* banner */

.banner .container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.indexbanner {
  height: 100vh;
  background-image: url(../image/indexbanner.jpg);
  background-size: cover;
  background-position: top center;
  position: relative;
}

.subbanner {
  height: 556px;
  background: #22317F;
}

.subbanner .banner-main {
  margin-top: 50px;
}

.indexbanner::before {
  /* content: ''; */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.indexbanner::after {
  /* content: ''; */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(34, 49, 127, 0.2);
}

.indexbanner .mouseimg {
  filter: sepia(1);
  width: 20px;
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s ease-in-out infinite;
}

@-webkit-keyframes bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px)
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px)
  }
}

@keyframes bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px)
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px)
  }
}

.footer {
  height: 80px;
  line-height: 80px;
  font-size: 16px;
  background-color: #070721;
  color: #fff;
  font-family: "PingFangSC-Regular";
  border-top: 4px solid #4C5156;
}


.indexbanner .banner-main {
  margin-top: -15%;
}

.banner .banner-main {
  /* margin-top: 120px; */
  color: #fff;
}


.banner .banner-main .logos img {
  margin-right: 20px;
  height: 71px;
}

.banner .banner-main .smalltitle {
  padding: 10px 0;
  font-size: 12px;
}

.banner .banner-main .bigtitle {
  font-weight: 500;
  font-size: 64px;
  line-height: 86px;
}

.banner .banner-main .linebar {
  height: 1px;
  background: #3587E5;
  margin: 20px 0;
}

.banner .banner-main .mtinfo {
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
}


/* container */
.container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  min-width: 1240px;
}

/* event */


.event-info {
  background: transparent;
  padding-top: 80px;
}

.event-info .events-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.event-item {
  display: none;
}

.event-info .sidebar-col {
  width: 25%;
}

.event-info .sidebar-col .event-info-sidebar-wrapper {
  position: sticky;
  top: 80px;
  margin-bottom: 70px;
}

/* 
@media only screen and (max-width: 992px) {
  .event-info {
    padding-top: 110px;
  }
}

@media only screen and (max-width: 769px) {
  .event-info {
    padding-top: 40px;
    background: #F2F4F6;
    position: relative;
  }
}

@media only screen and (max-width: 769px) {
  .event-info .hero-category-breadcrumbs-wrapper {
    display: none;
  }
} */

.event-info .block-text h3 {
  margin-bottom: 0;
  color: #22317F;
}

.event-info .content-col,
.event-info .content-col-2 {
  width: 70%;
}

/* @media only screen and (max-width: 768px) {

  .event-info .content-col,
  .event-info .content-col-2 {
    width: 100%;
  }
} */

.event-info .content-col-2 .hero-category-breadcrumbs-wrapper {
  display: none;
}

.event-info .only-mobile {
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 40px;
  padding-top: 40px;
  margin-bottom: 30px;
  margin-top: -45px;
}

/* @media only screen and (max-width: 769px) {
  .event-info .only-mobile {
    display: block;
  }
}

@media only screen and (max-width: 769px) {
  .event-info .not-mobile {
    display: none;
  }
} */

.event-info .child-page {
  background: #F2F4F6;
}

.event-info .child-page .event-info-sidebar__menu {
  background: transparent;
  padding: 40px 24px;
  margin-left: -24px;
  margin-right: -24px;
}

.event-info .child-page .hero-category-breadcrumbs-wrapper {
  display: block;
}

.event-info-sidebar__select {
  width: 100%;
  background: transparent;
  padding: 40px 24px;
  position: fixed;
  top: 69px;
  left: 0;
  z-index: 10000;
  display: none;
}

.event-info-sidebar__select:after {
  content: "";
  position: absolute;
  background: url("../image/arrow-dark.svg") no-repeat;
  transform: rotate(90deg);
  top: 66px;
  right: 40px;
  width: 16px;
  height: 16px;
}

.event-info-sidebar__select select {
  width: 100%;
  position: relative;
}

.event-info-sidebar__menu {
  display: flex;
  flex-direction: column;
}

/* @media only screen and (max-width: 992px) {
  .event-info-sidebar__menu {
    width: unset;
    min-width: 200px;
  }
}
 */
.event-info-sidebar__item {
  position: relative;
  background: transparent;
  padding: 10px 0 8px 0;
  font-size: 16px;
  line-height: 24px;
  will-change: auto;
  transition: 500ms cubic-bezier(0.33, 0, 0, 1);
  overflow: hidden;
  /* height: 39px; */
  margin-bottom: 0;
  border-bottom: 1px solid #22317F;
  cursor: pointer;
  box-sizing: border-box;
}

.event-info-sidebar__item:hover span,
.event-info-sidebar__item:hover a {
  color: #0063D3;
}

.event-info-sidebar__item span,
.event-info-sidebar__item a {
  width: 100%;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  color: #22317F;
  transition: 250ms linear;
  color: #22317F;
  font-family: "PingFangSC-Semibold";
}

.event-info-sidebar__parent {
  font-size: 16px;
  line-height: 24px;
  position: relative;
}

.event-info-sidebar__parent:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #A6B6D3;
  transition: 500ms cubic-bezier(0.33, 0, 0, 1);
}

.open .event-info-sidebar__parent:after {
  margin-top: 8px;
  width: 100%;
}

.event-info-sidebar__parent span,
.event-info-sidebar__parent a {
  transition: 250ms linear;
}

.open .event-info-sidebar__parent span,
.open .event-info-sidebar__parent a,
.current .event-info-sidebar__parent span,
.current .event-info-sidebar__parent a {
  font-weight: 500;
}

.event-info-sidebar__parent .has-child {
  position: relative;
}

.event-info-sidebar__parent .has-child:after {
  content: "";
  position: absolute;
  background: center url("../image/arrow-dark.svg") no-repeat;
  width: 12px;
  height: 12px;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: 500ms cubic-bezier(0.33, 0, 0, 1);
}

.open .event-info-sidebar__parent .has-child:after {
  transform: translateY(-50%) rotate(270deg);
}

.event-info-sidebar__parent-info {
  margin-bottom: 64px;
  display: none;
}

.event-info-sidebar__parent-info-title {
  margin-bottom: 24px;
}

.event-info-sidebar__parent-data {
  margin-right: 48px;
  margin-bottom: 40px;
}

.event-info-sidebar__parent-data-wrapper {
  display: flex;
  margin-bottom: 28px;
  flex-direction: column;
}

.event-info-sidebar__children {
  position: relative;
  will-change: auto;
}

.event-info-sidebar__children span,
.event-info-sidebar__children a {
  font-size: 14px;
  text-transform: initial;
  color: #22317F;
  font-family: 'PingFangSC-Regular';
}

.event-info-sidebar__children.active:before {
  opacity: 1;
}

.event-info-sidebar__children:before {
  content: "";
  position: absolute;
  background: #22317F;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: -20px;
  top: 7px;
  opacity: 0;
  transition: 250ms linear;
}

.event-info-sidebar__children:hover {
  font-weight: 500;
}

.event-info-sidebar__children:hover:before {
  opacity: 1;
}

.event-info-sidebar__children-list {
  display: none;
  padding: 18px 13px 8px 20px;
  width: calc(100% - 18px);
}

.event-info-sidebar__children-list li {
  margin-bottom: 5px;
  transition: all 0.5s;
}

.event-info-sidebar__children-list li:hover {
  padding-left: 10px;
}

.event-info-sidebar__children-list li:last-child {
  margin-bottom: 8px;
}

.event-info-sidebar__children.active::before {
  content: "";
  position: absolute;
  background: #3587E5;
  height: 8px;
  left: -20px;
  top: 7px;
}

.event-info .open,
.event-info .current {
  background: transparent;
}

.events-subpage-title h1 {
  margin-bottom: 18px;
  font-family: "PingFangSC-Semibold";
  font-weight: 600;
  font-size: 24px;
  color: #22317F;
  line-height: 25px;
}

.event-info p strong {
  font-family: "PingFangSC-Semibold";
  font-weight: 500;
  font-size: 16px;
}

.events-subpage-content {
  padding-left: 110px;
}

/* 
@media only screen and (max-width: 769px) {
  .events-subpage-content {
    padding-left: 0;
  }
} */

.show-rectangle {
  font-weight: 500;
}

.show-rectangle:before {
  display: block;
}

.single-event-hero-wrapper .container {
  border-bottom: 1px solid #3587E5;
}

.single-event-hero-wrapper .hero-category-description {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: row !important;
}

.single-event-hero-wrapper .hero-category-description span {
  font-size: 24px;
  line-height: 28px;
  color: #3587E5;
}

.single-event-hero-wrapper .hero-category-description span,
.single-event-hero-wrapper .hero-category-description li {
  padding-left: 0;
}

.single-event-hero-wrapper .hero-category-description span::before,
.single-event-hero-wrapper .hero-category-description li::before {
  display: none;
}


.block-text {
  margin-bottom: 40px;

}

.block-text h5 {
  color: #22317F;
}

.block-text ol li,
.block-text ul li {
  color: #22317F;
  font-size: 18px;
  line-height: 24px;
}

/* @media only screen and (max-width: 769px) {

  .block-text ol li,
  .block-text ul li {
    font-size: 14px;
  }
} */

.block-text p {
  color: #22317F;
  font-size: 14px;
  line-height: 30px;
  font-family: 'PingFangSC-Reguler';
  font-weight: 300;
  padding: 5px 0;
}

.block-text p a {
  color: #22317F;
}

/* @media only screen and (max-width: 769px) {
  .block-text p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 769px) {
  .block-text__button {
    width: 100%;
  }
} */
.block-text__button {
  margin-bottom: 24px;
  margin-top: 12px;
}


.block-text__list {
  padding-left: 0;
}

.block-text__list li {
  width: fit-content;
}

.block-text__list li:before {
  display: none;
}

.block-text .card-button {
  margin-bottom: 24px;
}

.block-text .extra-list {
  padding: 0 !important;
  text-transform: capitalize;
}

/* @media only screen and (max-width: 769px) {
  .block-text .extra-list li {
    width: 100%;
  }
} */

.block-text__image {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
}

.block-text__image.left {
  justify-content: flex-start;
}

.block-text__image.right {
  justify-content: flex-end;
}

.block-text__image.center {
  justify-content: center;
}

.block-text__image img {
  height: auto;
}

/* @media only screen and (max-width: 576px) {
  .block-text__image img {
    width: 100% !important;
  }
}



@media only screen and (max-width: 768px) {
  .single-wrapper-new .block-text {
    width: 100%;
  }
} */
.single-wrapper-new .block-text {
  width: 74%;
  margin-left: auto;
}

.text-sidebar {
  margin-bottom: 40px;
  border-bottom: 1px solid #3587E5;
  padding-bottom: 40px;
}

/* @media only screen and (max-width: 769px) {
  .text-sidebar {
    width: 100%;
  }
} */

.text-sidebar:last-of-type {
  border-bottom: none;
}

.block-people {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #3587E5;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.block-people__title {
  color: #22317F;
  width: 20%;
}

.block-people__title h3 {
  font-size: 36px;
  line-height: 52px;
}

.block-people__title span {
  font-size: 24px;
  line-height: 28px;
}

.block-people__title h3,
.block-people__title h2 {
  font-weight: 300;
}

.block-people__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 74%;
}

.block-people__list li {
  width: calc(33.3% - 16px);
  max-width: 208px;
  margin: 0 8px;
}

.block-people__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  height: calc(100% - 24px);
}

.block-people__item-image {
  position: relative;
  margin-bottom: 12px;
  border-radius: 20px 20px 0 0;
}

.block-people__item-image::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.block-people__item-image img {
  position: absolute;
  border-radius: 20px 20px 0 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.block-people__item-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.block-people__item-name {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 5px;
}

.block-people__item-work {
  font-size: 14px;
  font-family: "PFHighwayGothicLight", sans-serif;
  color: #22317F;
  font-weight: 300;
}

.block-people__item-work span {
  text-transform: uppercase;
  font-size: 11px;
  line-height: 14px;
  font-weight: 400;
}

.block-people__list .block-people__item-name {
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 28px;
  margin-top: 0;
}

.block-people__item-social {
  display: flex;
  align-items: center;
  margin-top: 8px;
  position: absolute;
  bottom: 14px;
  right: 10px;
}

.block-people__item-email {
  margin-right: 5px;
}

.block-people-sidebar {
  margin-bottom: 80px;
}

.block-people-sidebar__title {
  margin-bottom: 40px;
  color: #22317F;
}

.block-people-sidebar__list-item {
  display: flex;
  margin-bottom: 24px;
}

/* button */

.button_new {
  position: relative;
  line-height: 1px;
  padding: 20px 25px !important;
  border-radius: 50px !important;
  min-width: 120px;
  background: linear-gradient(to top, #0062d2, #203383);
  transition: background 0.5s ease, transform 0.5s ease,
    box-shadow 0.5s ease, padding 0.5s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none !important;
  width: fit-content;
}

.button_new .button-circle {
  width: 6px;
  height: 6px;
  background-color: #3587E5;
  border-radius: 50%;
  transition: left 0.6s ease, transform 0.6s ease;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 1;
}

.button_new .button-text {
  display: flex;
  position: relative;
  z-index: 1;
  transform: translateX(5px);
  transition: transform 0.3s ease;
  text-transform: uppercase;
}

.button_new .button-circle-second {
  width: 6px;
  height: 6px;
  right: 0;
  background-color: #3587E5;
  border-radius: 50%;
  transition: transform 0.3s ease;
  position: relative;
  display: inline-block;
  transform: translateX(100px);
  display: none;
}

.button_new .button-text .letter {
  display: inline-block;
  opacity: 1;
  font-size: 14px;
  color: #FFF;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(0);
}

.button_new:hover .letter {
  animation: fade-out-in 0.3s forwards;
  animation-delay: calc(var(--index) * 0.02s);
}

.button_new:hover .button-circle {
  left: calc(100% - 16px);
  transform: translateY(-50%);
}

.button_new:not(:hover) .letter {
  animation: fade-out-in-reverse 0.6s forwards;
  animation-delay: calc(var(--index) * -0.02s);
}

.button_new:hover .button-text {
  transform: translateX(-5px);
}

@keyframes fade-out-in {
  0% {
    opacity: 1
  }

  20% {
    opacity: 0
  }

  70% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes fade-out-in-reverse {
  0% {
    opacity: 1
  }

  20% {
    opacity: 0
  }

  70% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

/* detail  */
.program-table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}

.program-table thead {
  color: #fff;
  font-size: 14px;
  background-color: #173257;
}

.program-table tbody td,
.program-table tbody td p {
  font-size: 12px;
  color: #22317F;
}

.program-table tbody td p {
  padding: 0;
}

.program-table .imp-tr {
  background-color: #173257;
}

.program-table tbody .imp-tr td {
  color: #fff
}

.program-table .td-title,
.program-table .td-title h3 {
  font-weight: 500;
  font-size: 14px;
}

.program-table .margin-tr {
  background-color: #FFB62E;
  text-align: center;
}

.program-table tr td {
  border: 1px solid #D9DEE2;
  padding: 10px;

}


/* detail  */
.regist-table {
  border-collapse: collapse;
  width: 100%;
}

.regist-table thead {
  background-color: #dce5ef;
}

.regist-table td {
  padding: 10px;
  font-size: 12px;
  color: #22317F;
  border: 1px solid #D9DEE2;
}

.building {
  padding: 50px 0;
  text-align: center;
}

.building p {
  text-align: center;
}

.colorBlock {
  display: flex;
  margin-bottom: 10px;
}

.colorBlock div {
  width: 120px;
  line-height: 36px;
  text-align: center;
  box-shadow: 2px 2px 4px #aaa;
  margin-right: 10px;
  font-size: 14px;
}

.redblock {
  background-color: #ff7c80;
}

.greenblock {
  background-color: #8ed2ad;
}

.yellowblock {
  background-color: #ffc000;
}

.pinkblock {
  background-color: #d9bfd7;
}