* {
  margin: 0;
  padding: 0;
  outline: 0;
}

#pageTool{
  margin: 30px 0 20px 0;
}
/* 滚动条整体部分 */
::-webkit-scrollbar {
  width: 4px; /* 滚动条的宽度 */
}

/* 滚动条的轨道 */
::-webkit-scrollbar-track {
  background: #F2BFBF; /* 轨道的颜色 */
}

/* 滚动条的拖动部分 */
::-webkit-scrollbar-thumb {
  background: #9B191A; /* 拖动部分的颜色 */
  border-radius: 6px; /* 圆角 */
}

/* 滚动条的拖动部分悬停时的样式 */
::-webkit-scrollbar-thumb:hover {
  background: #7A1416; /* 悬停时的颜色 */
}

/* 滚动条的拖动部分按下时的样式 */
::-webkit-scrollbar-thumb:active {
  background: #691214; /* 按下时的颜色 */
}

.indicators-box {
  position: fixed;
  z-index: 99;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.indicators-box .indicators-icon {
  cursor: pointer;
  width: 24px;
  height: 23px;
}

.indicators-box .indicators {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.indicators-box .indicators span {
  cursor: pointer;
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 20px;
}

.indicators-box .indicators span:last-child {
  margin-bottom: 0;
}

.indicators-box .indicators .active {
  background: #FF4040;
}

.carousel-control-prev-icon {
  background-image: url('../images/prev-icon.png');

}

.carousel-control-next-icon {
  background-image: url('../images/next-icon.png');
}

/* 文字单行省略号 */
.sle {
  overflow: hidden;
  /* height: 4rem; */
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 文字多行省略号 */
.mle {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}


/* 文字单行省略号 */
.mle1 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

* {
  touch-action: pan-y;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
li,
ul {
  margin: 0;
  padding: 0;
}


:root {
  --rad: #EC5253;
  --brand: #AC1618;
  --subclr: #fff;
  --cl1: #444;
  --ff1: 'Poppins', sans-serif;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
.navbar-nav .nav-link.show{
  /* color: var(--rad) !important; */
  font-weight: bold;
}

body {
  font-family: var(--ff1);
  color: #f1f1f1;
}

/* section {
  padding: 20px 0;
} */

/* common css end */

#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  text-align: center;
  background-color: #0C0C0D;
  z-index: 9999999;
  display: grid;
  align-content: center;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  /* common */
}

#preloader .loading {
  font-size: 84px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 490px) {
  #preloader .loading {
    letter-spacing: -3px;
  }
}

#preloader .loading span {
  display: inline-block;
  margin: 0 -0.05em;
  font-size: clamp(48px, 5vw, 180px);
}

#preloader .loading07 span {
  position: relative;
  color: #0C0C0D;
}

#preloader .loading07 span::after {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-text);
  color: #FCA95D;
  opacity: 0;
  transform: scale(1.5);
  animation: loading07 3s infinite;
}

#preloader .loading07 span:nth-child(2)::after {
  animation-delay: 0.1s;
}

#preloader .loading07 span:nth-child(3)::after {
  animation-delay: 0.2s;
}

#preloader .loading07 span:nth-child(4)::after {
  animation-delay: 0.3s;
}

#preloader .loading07 span:nth-child(5)::after {
  animation-delay: 0.4s;
}

#preloader .loading07 span:nth-child(6)::after {
  animation-delay: 0.5s;
}

#preloader .loading07 span:nth-child(7)::after {
  animation-delay: 0.6s;
}

#preloader .loading07 span:nth-child(8)::after {
  animation-delay: 0.7s;
}

#preloader .loading07 span:nth-child(9)::after {
  animation-delay: 0.8s;
}

#preloader .loading07 span:nth-child(10)::after {
  animation-delay: 0.9s;
}

@keyframes loading07 {

  0%,
  75%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }

  25%,
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ========================================
               menu part start
  ========================================*/
.main-menu {
  /* background-color: var(--brand); */
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 999;
  padding: 0;
}



.main-menu ul li a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-align: center;
  color: var(--subclr) !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 80px;
}

.main-menu .red-text ul li a {
  color: var(--brand);
}

.dropdown-menu.show ul li a {
  color: #666;
}

.main-menu ul li a:hover {
  /* color: #999 !important; */
  /* color: var(--rad) !important; */
}

.navbar .nav-item .active {
  /* color: var(--brand) !important; */
  color: #FFFFFF !important;
  font-weight: bolder !important;
}

.abc {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
}

.logo {
  width: 200px;
}


.cuts-container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0px 60px;
}

.collapse {
  justify-content: center;
}

.dropdown-menu {
  background-color: #fff;
  /* background: rgba(0, 0, 0, 0.6); */
}

.dropdown-item li a:hover {
  color: #666666 !important;
  background-color: transparent !important;
}
.nav-item .dropdown-menu li a{
    color: #666666 !important;
    background-color: transparent !important;
}
.dropdown-item {
  line-height: 40px !important;
}

.search-lang,
.search-lang>div {
  display: flex;
  cursor: pointer;
  align-items: center;
  align-items: center;
}

.search-lang>div>span {
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
}
.search-lang .ch-box .icon{
  width: 16px;
  height: 16px;
}
.main-menu .red-text .search-lang>div>span {
  color: #333333 !important;
}

.search-lang>div>img {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 14px;
}

.search-area {

  display: flex;
  align-items: center;
  margin-right: 30px;
  cursor: pointer;
}

.navbar .search-lang .search-input-container {
  display: none;
  background-color: #fff;
  border-radius: 30px;
  margin-right: 30px;
  padding:3px 5px;
  /* display: flex; */
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.search-input {
  width: 150px;
  /* 输入框的宽度 */
  padding: 5px 0 5px 15px;
  border: none;
  font-size: 12px;
}

.search-input::placeholder {
  color: #CC0001;
  font-weight: 500;
  font-size: 12px;
}

.search-btn {
  cursor: pointer;
  background-color: #CC0001;
  padding: 3px 15px;
  border-radius: 25px;
}

.search-btn .search-icon {
  width: 15px;
  height: 15px;
  /* 搜索图标的宽度 */
  cursor: pointer;
}

.slide-out {
  display: flex;
}

.search-area-hidden {
  display: none !important;
  /* 隐藏原始搜索区域 */
}

.gary-search .search-input-container,
.gary-search .search-input {
  background-color: #e7e7e7 !important;
}

.mouse {
  display: block;
  width: 48px;
  height: 48px;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}

/* ========================================
               menu part end
  ========================================*/


/* ========================================
               banner part start
  ========================================*/

#banner .row {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#bannerCarousel {
  /*position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;*/
  /* height: 100%; */
}

#bannerCarousel .carousel-item {
  width: 100%;
  /*height: 100vh;*/
}

.carousel-content {
  width: 80%;
  position: absolute;
  top: 49%;
  left: 4.75rem;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-content .title {
  font-weight: bold;
  font-size: 80px;
  color: #FFFFFF;
  line-height: 90px;
  text-shadow: 0px 4px 70px rgba(0, 0, 0, 0.25);
  text-align: left;
  margin-bottom: 30px;
}

.carousel-content .desc {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 25px;
}

.carousel-content .detail-btn {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #FFFFFF;
  margin-top: 40px;
  text-decoration: underline;
  cursor: pointer;
}

.carousel-content .detail-btn img {
  margin-left: 8px;
  width: 13px;
  height: 6px;

}

#bannerCarousel .carousel-indicators {
  /* position: absolute;
  left: 4rem;
  top: 78%;
  margin: 0;
  justify-content: flex-start; */
}

#bannerCarousel .carousel-indicators [data-bs-target] {
  width: 92px;
}

#banner {
  padding-top: 0;
  padding-bottom: 0 !important;
  position: relative;
  z-index: 1;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  /*max-width: 100%;*/
  /* padding: 15px; */
}

.banner-text {
  /* padding: 230px 0; */
  padding-top: 200px;
}

.event-text h3,
.banner-text h3 {
  background-color: rgba(0, 0, 0, 0.8);
  width: 80%;
  padding: 15px 10px;
  border-radius: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.event-text h3 span,
.banner-text h3 span {
  background: var(--brand);
  padding: 6px 20px;
  border-radius: 30px;
  padding-left: 10px;
}

.banner-text h1 {
  font-size: 57px;
  font-weight: 600;
  line-height: 70px;
  margin-bottom: 15px;
}

.banner-text h1 span {
  color: var(--brand);
  /* text-shadow: 1px 1px 2px var(--brand), 0 0 1em #fcfcfc, 0 0 0.1em white; */
  text-shadow: 1px 1px 2px white;
}

.banner-text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 15px;
}

/* ========================================
               banner part end
  ========================================*/

/* ========================================
               button part start
  ========================================*/
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: relative;
  padding: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  transition: all .15s ease;
  margin-right: 10px;
}

.button::before,
.button::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #7D8082;
  transition: all .15s ease;
}

.button::before {
  top: 0;
  border-bottom-width: 0;
}

.button::after {
  bottom: 0;
  border-top-width: 0;
}

.button:active,
.button:focus {
  outline: none;
}

.button:active::before,
.button:active::after {
  right: 3px;
  left: 3px;
}

.button:active::before {
  top: 3px;
}

.button:active::after {
  bottom: 3px;
}

.button_lg {
  position: relative;
  display: block;
  padding: 10px 20px;
  color: #fff;
  background-color: var(--brand);
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
}

.button_lg::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #0f1923;
}

.button_lg::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: #0f1923;
  transition: all .2s ease;
}

.button_sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8px;
  width: 0;
  background-color: #ff4655;
  transform: skew(-15deg);
  transition: all .2s ease;
}

.button_text {
  position: relative;
}

.button_text a {
  color: var(--subclr);
}

.button:hover {
  color: #0f1923;
}

.button:hover .button_sl {
  width: calc(100% + 15px);
}

.button:hover .button_lg::after {
  background-color: #fff ;
}

.nav-link:focus,
.nav-link:hover {
  /* color: var(--brand) !important; */
  color:#fff !important;
  text-decoration: underline;
}

/* ========================================
               button part end
  ========================================*/

/* ========================================
               about part start
  ========================================*/
#contact,
#gallery,
#vision {
  background: #252A32;
}


.vision-text h5,
.about-text h5 {
  color: var(--brand);
  margin-top: 20px;
  text-transform: uppercase;
}

.about-text {
  margin: 45px 0;
  width: 100%;
}

.common-header h2 {
  width: 50%;
}

.cmn-head h2 {
  width: 100% !important;
}

.common-header .cmn-text h2 {
  width: 70% !important;
}

.vision-text h2,
.common-header h2,
.about-text h2 {
  font-weight: 700;
  font-size: 40px;
  margin-top: 20px;
  line-height: 1.2;
  text-transform: uppercase !important;
}

.vision-text h2 span,
.common-header h2 span,
.choose-text h2 span,
.about-text h2 span {
  color: var(--brand);
  text-shadow: 1px 1px 2px var(--subclr);

}

.about-text p {
  color: #fff;
  margin-top: 20px;
  opacity: .8;
}




/* Base styles (for larger devices like desktops) */
#about {
  background: linear-gradient(180deg, #FFFFFF 0%, #EEEEEE 100%);
}

.about-section {
  position: relative;
  padding: 80px 110px;
}

#about .container {
  text-align: center;
  margin: 0;
  width: 100%;
}

#about .container .row {
  margin-top: 30px;
}

#about .news-img,
.programs-section .news-img {
  height: 80px;
}

.get-more {
  display: block;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  color: #AC1618;
  font-weight: 800;
  /* line-height: 80px; */
}

.about-section .sec-title {
  margin-bottom: 45px;
}

.about-section .content-column {
  position: relative;
  margin-bottom: 40px;
}

.about-section .content-column .new-box {
  background-color: #fff;
  padding: 20px 10px;
  min-height: 500px;
  border-radius: 8px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
}

.new-box .news-top {
  width: 100%;
  display: block;
  height: 250px;
}

.new-box .title-box {
  display: flex;
  font-weight: 500;
  align-items: flex-start;
  font-size: 20px;
  color: #333333;
  margin: 18px 0;
  /* margin-bottom: 10px; */
  line-height: 24px;
}

.new-box .title-box .date {
  display: flex;
  flex-direction: column;
  font-size: 36px;
  color: #AC1618;
  margin-right: 8px;
}

.new-box .title-box .date-day {
  font-size: 12px;
  color: #AC1618;
}

.new-box .title-box .text-content {
  font-weight: 800;
  flex: 1;
  margin-top: -5px;
  text-align: left;
}

.new-box .news-content {
  font-size: 16px;
  color: #999999;
  line-height: 24px;
  text-align: justify;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  height: 146px;
}

.about-section .content-column .inner-column {
  position: relative;
  padding-left: 30px;
}

.about-section .text {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
}

.about-section .btn-box a {
  padding: 15px 50px;
}




/* For large tablets (768px and above) */
@media screen and (max-width: 1200px) {

  .about-section {
    padding: 50px 50px 50px;
  }

  .about-section .content-column .inner-column {
    padding-left: 0;
  }

}

/* For medium devices (576px to 767px) */
@media screen and (max-width: 767px) {
  .about-section {
    padding: 80px 0 40px;
  }

  .about-section .content-column {
    margin-bottom: 40px;
  }

  .about-section .content-column .inner-column {
    padding-left: 20px;
  }

  .about-section .text {
    font-size: 14px;
    line-height: 24px;
  }

  .about-section .btn-box a {
    padding: 12px 30px;
  }
}

/* For small devices (max-width: 576px) */
@media screen and (max-width: 576px) {
  .about-section {
    padding: 60px 0 30px;
  }

  .sec-title h2 {
    font-size: 28px;
  }

  .about-section .content-column {
    margin-bottom: 30px;
  }

  .about-section .content-column .inner-column {
    padding-left: 0;
  }

  .about-section .text {
    font-size: 14px;
    line-height: 22px;
  }

  .about-section .btn-box a {
    padding: 10px 25px;
  }

}

/* Extra small devices (max-width: 400px) */
@media screen and (max-width: 400px) {
  .sec-title h2 {
    font-size: 24px;
  }

  .about-section .btn-box a {
    padding: 8px 20px;
  }

}

.choose-item {
  background-color: #252A32;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}

/* ========================================
               about part end
  ========================================*/

/* ========================================
               choose part start
  ========================================*/
#testimonials,
#tournament {
  background-color: #23282F;
}

.book-section {
  background: url('../images/book-bg.png') no-repeat;
  background-size: 100% 100%;
  overflow-x: hidden;
}

.book-section .book-classify {
  display: flex;
  align-items: center;
  font-size: 24px;
  margin-top: 80px;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}

.book-section .second-classify span,
.book-section .book-classify p {
  cursor: pointer;
}

.book-section .book-classify .active {
  font-size: 32px;
  color: #FFFFFF !important;
  font-weight: bold;
}

.book-section .second-classify {
  display: flex;
  margin-top: 30px;
  justify-content: center;
  overflow: hidden;
}

.book-section .second-classify span {
  font-size: 1rem;
  color: #FFFFFF;
  margin-right: 2vw;
  text-decoration: underline;
}

.book-section .second-classify span:last-child {
  margin-right: 0;
}

.book-section #bookCarousel .carousel-inner {
  padding: 0 180px;
  margin-top: 40px;
}

#bookCarousel .book-column {
  width: 16vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#bookCarousel .book-column img {
  aspect-ratio: 260 / 400 !important;
}

#bookCarousel .book-column .book-name {
  font-size: 20px;
  text-align: center;
  width: 100%;
  color: #FFFFFF;
  margin: 15px 0;
  margin-bottom: 0;
}

#bookCarousel .book-column .detail-btn {
  font-size: 14px;
  color: #FFFFFF;
  text-decoration-line: underline;
}

.book-section .get-more {
  color: #FFFFFF;
  margin-top: 40px;
  display: block;
}


/* ========================================
               choose part end
  ========================================*/

/* ========================================
               programs part start
  ========================================*/
#blog,
#match {
  background: #252A32;
}

.programs-section {
  /* padding: 140px 0px 0; */
  background: linear-gradient(180deg, #FFFFFF 0%, #EEEEEE 100%);
}

.programs-section .container {
  text-align: center;
}

.programs-section #specialCarousel {
  margin-bottom: 80px;
}

.programs-section #specialCarousel .carousel-inner {
  /* padding: 0 200px; */
}

.programs-section #specialCarousel .carousel-indicators {
  bottom: -50px;

}

.programs-section #specialCarousel .carousel-indicators [data-bs-target] {
  background-color: #AC1618;
  width: 90px;
}

#specialCarousel .special-column {
  padding-top: calc(var(--bs-gutter-x) * .5);
  padding-bottom: calc(var(--bs-gutter-x) * .5);
}

.special-column .special-item {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 16px;
  background: #FFFFFF;

}


/* 隐藏覆盖层，默认情况下不显示 */
.special-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 10%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  visibility: hidden;
}

/* 当鼠标悬停在 special-item 上时显示覆盖层 */
.special-item:hover .overlay {
  visibility: visible;
}

.overlay .overlay-title {
  font-weight: 500;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 30px;
  margin-top: 30%;
}

.overlay .overlay-desc {
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 20px;
  text-align: justify;
  margin: 30px 0 50px 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}

.overlay .overlay-more {
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}

#specialCarousel .special-column .book-cover {
  display: block;
  width: 100%;
  height: 320px;
  margin: 0 auto;
}

.special-column .book-btm {
  display: flex;
}

.book-btm .book-sort {
  width: 28px;
  height: 30px;
}

.book-name-new {
  padding-left: 5px;
  font-size: 18px;
  flex: 1;
  color: #CC0001;
  line-height: 30px;
  /* background: #FFE3E3; */
}

/* ========================================
               programs part end
  ========================================*/

/* ========================================
               event part start
  ========================================*/
#event {
  position: relative;
  background: url('../images/event-bg.png') no-repeat;
  background-size: 100% 100%;
  padding-bottom: 0 !important;
}

#event .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 108%;
  background: rgba(102, 11, 12, 0.6);
  backdrop-filter: blur(10px);
}

#bannerCarousel .mask {
  /*position: absolute;*/
  /*top: 0;*/
  /*left: 0;*/
  width: 100vw;
  /*height: 100vh;*/
  z-index: 1;
  /*background-color: rgba(0, 0, 0, 0.4);*/
}
@media (max-width: 600px) {
  #bannerCarousel .mask {
    height: 60vh;
  }
}
.event-section {
  padding-top: 80px;
}


.event-section .news-img {
  /* width: 50vw; */
  height: 80px;
}

#event .container {
  position: relative;
  z-index: 10;
  text-align: center;
}

#event .container .row {
  margin-top: 40px;
  align-items: center;
}

#event .container .event-img {
  position: relative;
  border: 6px solid #FFFFFF;
}

#event .container .event-img img {
  display: block;
  width: 100%;
  height: auto;
}

#event .container .event-img .img-text {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  font-size: 20px;
  color: #FFFFFF;
  padding: 10px 0 10px 20px;
  width: 100%;
}

#event .container .row .event-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

#event .container .row .event-text .event-top {
  border-bottom: 1px solid #fff;
  padding: 15px 0;
}

#event .container .row .event-text .event-top .title {
  font-weight: 600;
  font-size: 32px;
  color: #FFFFFF;
  width: 100%;
}

#event .container .row .event-text .event-top .desc {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 24px;
  width: 100%;
}

#event .container .event-btm {
  margin-top: 20px;
}

#event .container .event-btm .news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 10px;
  color: #FFFFFF;
}

#event .container .event-btm .news-item .icon,
#hr-res .container .res-box .news-item .icon {
  width: 25px;
  font-size: 22px;
}

#event .container .event-btm .news-item .title,
#hr-res .container .res-box .news-item .title {
  flex: 1;
  text-align: left;
}

#event .container .event-btm .news-item .time,
#hr-res .container .res-box .news-item .time {
  width: 120px;
  margin-left: 10px;
}

#event .get-more {
  position: relative;
  z-index: 10;
  color: #FFFFFF;
  margin: 30px auto;
  margin-bottom: 80px;

}
#choose .get-more {
  margin-bottom: 80px;
}

/* ========================================
               event part end
  ========================================*/

/* ========================================
            hr-res part start
  ========================================*/
#hr-res {
  padding-top: 80px;
  position: relative;
  background: url('../images/hr-bg.png') no-repeat;
  background-size: 100% 100%;
  padding-bottom: 0 !important;
}

#hr-res .container {
  text-align: center;
}

#hr-res .news-img {
  /* width: 50vw; */
  height: 80px;
}

#hr-res .container .row {
  margin-top: 60px;
  background-color: #fff;
  font-size: 18px;
  color: #666666;
}

#hr-res .container .row .res-left {
  padding-right: 0;
  margin-right: 50px;
}

#hr-res .container .row .res-right {
  padding-left: 0;
}

#hr-res .container .res-box {
  padding: 50px;
}

#hr-res .container .res-box .news-item .icon {
  color: #AC1618
}

#hr-res .container .res-box .news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  padding: 6px 0;
  border-bottom: 1px solid #DCDCDC;
  color: #666;
}
#hr-res .container .res-box .news-item .time {
  color: #999;
}
#hr-res .get-more {
  margin-top: 60px;
  padding-bottom: 80px;
}

/* ========================================
            hr-res part end
  ========================================*/

/* ========================================
            footer part end
  ========================================*/
.footer-section {
  position: relative;
  background: #fff;
  margin-top: 5px;
}

.footer-section .footer-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/footer-bg.png') no-repeat;
  background-size: 100% 100%;
}

.footer-section .container {
  /* min-height: 380px; */
  margin: 0;
  position: relative;

}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 0 450px;
  width: 100%;
}

.footer-content .row {
  position: relative;
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.navbar-brand:focus,
.navbar-brand:hover {
  color: var(--brand) !important;
}

.footer-logo img {
  max-width: 200px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--subclr);
  line-height: 28px;
  opacity: .8;
}

.footer-widget-heading h3 {
  color: var(--subclr);
  font-size: 20px;
  margin-bottom: 20px;
  text-wrap: nowrap;
  position: relative;
}

.footer-widget {
  position: relative;
}

.footer-content .row .message {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 8px;
  right: -100%;
  cursor: pointer;
}

.footer-content .row .message .icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.footer-content .row .message p {
  text-decoration: underline;
  font-size: 20px;
  color: #FFFFFF;
}


.message:hover .jubao-msg {
  display: block; /* 当鼠标悬停在 .message 上时显示 .jubao-msg */
}

.jubao-msg {
  display: none;
  width: initial;
  padding: 20px 10px 0 10px;
  position: absolute;
  z-index: 11;
  bottom: 25px;
  left: 15px;
  background-color: #fff;
  font-size: 14px;
  color: #666666;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}

.jubao-msg .msg-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.jubao-msg .msg-item  img{
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.footer-widget ul {
  display: flex;
  flex-direction: column;
}

.footer-widget ul li {
  float: left;
  margin-bottom: 10px;
  text-wrap: nowrap;
}

.footer-widget .news-footer {
  display: initial !important;
}

.footer-widget .news-footer li {
  margin-right: 15px;
}

.footer-widget ul li a:hover {
  color: #999;
}

.footer-widget ul li a {
  color: var(--subclr);
  font-size: 16px;
  text-decoration: underline;
  text-transform: capitalize;
  opacity: .8;
}


.copyright-area {
  background-color: #fff;
}

.copyright-area .container {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright-text p {
  margin: 0;
  font-size: 16px;
  color: #333333;
}


/* ========================================
            footer part end
  ========================================*/


/* ========================================
            btn_top_bottom part end
  ========================================*/
.btn_top_bottom {
  color: #fff;
  text-align: center;
  background: var(--brand);
  text-align: center;
  font-size: 15px;
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99999999999;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  padding: 8px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}

.btn_top_bottom i p {
  color: var(--subclr);
  font-size: 8px;
  padding-top: 10px;
  letter-spacing: 2px;
}

.btn_top_bottom {
  display: none;
}

/* ========================================
            btn_top_bottom part end
  ========================================*/


.vision-text {
  margin-top: 18%;
}

.vision-text p {
  margin-top: 24px;
  font-size: 21px;
  font-weight: 400;
  line-height: 39px;
  opacity: .9;
}

.vision-img img {
  border-radius: 10px;
}


.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}

/*  */

.progressbar-item {
  margin-bottom: 20px;
}

.progress-title {
  margin-bottom: 10px;
}

.progress-bg {
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  background-color: #3498db;
  height: 10px;
  width: 0;
  border-radius: 5px;
  transition: width 2s ease-in-out;
}

.progress-number-mark {
  position: absolute;
  top: -25px;
  right: 0;
  display: flex;
  align-items: center;
}

.percent {
  font-size: 14px;
  font-weight: bold;
}

.down-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #3498db;
  margin-left: 5px;
}
#choose{
  height: auto;
}
#programs{
  height: auto;
}
#programs .container{
  padding: 80px 0;
}
#event{
  height: auto;
}

@media (max-width: 600px) {
  #bannerCarousel .carousel-item {
    height: 60vh;
  }

  .carousel-content .title {
    font-size: 16px;
  }
  .carousel-content .desc{
    font-size: 9px;
  }
    .book-section #bookCarousel .carousel-inner{
      padding: 0 ;
    }

}
/*  */
/*
