/* HarmonyOS */
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Black';
  src: url('../font/HarmonyOS_Sans_SC_Black.ttf') format('ttf'),
    url('../font/HarmonyOS_Sans_SC_Black.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Bold';
  src: url('../font/HarmonyOS_Sans_SC_Bold.ttf') format('ttf'),
    url('../font/HarmonyOS_Sans_SC_Bold.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Light';
  src: url('../font/HarmonyOS_Sans_SC_Light.ttf') format('ttf'),
    url('../font/HarmonyOS_Sans_SC_Light.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Medium';
  src: url('../font/HarmonyOS_Sans_SC_Medium.ttf') format('ttf'),
    url('../font/HarmonyOS_Sans_SC_Medium.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Regular';
  src: url('../font/HarmonyOS_Sans_SC_Regular.ttf') format('ttf'),
    url('../font/HarmonyOS_Sans_SC_Regular.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Thin';
  src: url('../font/HarmonyOS_Sans_SC_Thin.ttf') format('ttf'),
    url('../font/HarmonyOS_Sans_SC_Thin.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

/*============= Header area Section CSS ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 10px 0;
  background: #4abdc4;
}
/*头部logo*/
.header .left {
  width: 25%;
  float: left;
}
.header .left a img {
  height: auto;
}
.header .left .img2 {
  display: none;
}
.header .login {
  min-width: 10%;
  float: right !important;
  text-align: center;
}
.header .login a {
  /*background: #fff;*/
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  line-height: 50px;
  display: block;
  font-size: 18px;
}
.header .login a:hover {
  background: #fff;
  color: #4abdc4;
}
/*nav*/
.header .nav {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  height: 100%;
  line-height: 50px;
  display: block;
}
.header .navbar_nav li {
  float: left;
  position: relative;
  display: block;
  margin: 0px 5px;
}
.header .navbar_nav li.active a {
  background: #fff;
  color: #4abdc4;
  border-radius: 5px;
}
/*.header .navbar_nav li:after{
    content: "";
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    padding: 13px 37px;
    border-radius:5px;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease 0s;
}*/
.header .navbar_nav li:hover:after {
  width: 100%;
}
.header .navbar_nav li a {
  text-decoration: none;
  height: 100%;
  padding: 0 15px;
  display: block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
  font-size: 18px;
}
.header .navbar_nav li:active a {
  background: #fff;
  color: #4abdc4;
  border-radius: 5px;
}
.header .navbar_nav li:hover a {
  background: #fff;
  color: #4abdc4;
  border-radius: 5px;
}
.header .navbar_nav li.dropdown {
  display: inherit;
  position: relative;
}
.header .navbar_nav li.dropdown .jt {
  width: 20px;
  height: 20px;
  background: url(i/top.png) no-repeat;
  background-size: 100% 100%;
  display: block;
}
.header .navbar_nav li.dropdown .dropdown_menu {
  display: none;
  position: absolute;
  /*top:60px;*/
  width: 100%;
  padding: 10px 0px;
  background: #4abdc4;
  box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
  width: 150%;
  left: 0;
  text-align: left;
}
.header .navbar_nav li.dropdown .dropdown_menu a {
  font-size: 18px;
  color: #fff;
  padding: 5px 0px 5px 20px;
  line-height: 40px;
  text-align: left;
  background: none;
  width: 170px;
  display: block;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu {
  display: block;
  /*background: #f3f3f3;*/
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a {
  color: #fff;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover {
  color: #232323;
  /*background: orange;*/
}
/*ç™½è‰²èƒŒæ™¯çš„å¤´éƒ¨*/
.header.on {
  background: #fff;
  border-bottom: 1px solid #ccc;
}
.header.on .left .img1 {
  display: none;
}
.header.on .left .img2 {
  display: block;
}
.header.on .navbar_nav li a {
  color: #333;
}
.header.on .navbar_nav li:hover a {
  color: orangered;
}
#navToggle {
  display: none;
}
.m_nav {
  position: fixed;
  top: 0px;
  box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
  width: 100%;
  height: 100%;
  background: #4abdc4;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  overflow-y: auto;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  top: 0;
  transform: translateX(100%);
}
.m_nav.open {
  transform: translateX(0);
}
.m_nav .top {
  height: 60px;
  padding: 20px;
  box-sizing: border-box;
}
.m_nav .top .closed {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  float: right;
  cursor: pointer;
}
.m_nav .logo {
  width: 100%;
  margin: 0 auto;
}
.m_nav .logo img {
  /*height: 50px;*/
  display: block;
  margin: 0px auto;
}
.m_nav .ul {
  margin-top: 30px;
}
.m_nav .ul li {
  padding: 0 20px;
  border-bottom: 1px solid #f5f5f5;
  transform: translateY(0);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  opacity: 0;
}
.m_nav.open .ul li {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.m_nav .ul li:nth-child(1) {
  -webkit-transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.m_nav .ul li:nth-child(2) {
  -webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.m_nav .ul li:nth-child(3) {
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.m_nav .ul li:nth-child(4) {
  -webkit-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.m_nav .ul li:nth-child(5) {
  -webkit-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.m_nav .ul li:nth-child(6) {
  -webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.m_nav .ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  width: 100%;
}
.m_nav .ul li .dropdown_menu {
  display: none;
}
.m_nav .ul li.dropdown.active .dropdown_menu {
  display: block;
}
.m_nav .ul li .dropdown_menu a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 40px;
  box-sizing: border-box;
  border-bottom: 1px solid #f5f5f5;
}
.m_nav .ul li .dropdown_menu a:last-child {
  border: none;
}
@media screen and (max-width: 992px) {
  .header {
    padding: 10px;
  }
  .header .login {
    display: none;
  }
  .header #navToggle {
    height: 100%;
    padding: 9px 15px;
    margin-right: -15px;
    display: inline-block;
    float: right;
  }
  .header #navToggle span {
    position: relative;
    width: 25px;
    height: 1px;
    margin-top: 19px;
  }
  .header #navToggle span:before,
  .header #navToggle span:after {
    content: '';
    position: relative;
    width: 100%;
    height: 1px;
    left: 0;
  }
  .header #navToggle span,
  .header #navToggle span:before,
  .header #navToggle span:after {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: #fff;
  }
  .header #navToggle span:before {
    top: 8px;
  }
  .header #navToggle span:after {
    bottom: 10px;
  }
  .header #navToggle.open span:before {
    top: 10px;
    -webkit-transform: translateY(-11px) rotate(-45deg);
    -moz-transform: translateY(-11px) rotate(-45deg);
    -ms-transform: translateY(-11px) rotate(-45deg);
    -o-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg);
  }
  .header #navToggle.open span:after {
    bottom: 12px;
    -webkit-transform: translateY(10px) rotate(45deg);
    -moz-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    -o-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
  }
  .header #navToggle.open span {
    background: none;
  }
  .header #navToggle.open span:before,
  .header #navToggle.open span:after {
    background: #4f4f4f;
  }

  .header .nav {
    display: none;
  }

  .banner img {
    height: 600px;
    object-fit: cover;
  }
}
/*.header-area {
    background: #4abdc4;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding:10px 0;
    z-index: 99;
}
.transparent .header-main-menu li a {
    color: #fff;
}
.header-logo a{
    display: block;
}
.header-main-menu ul li{
    display: inline-block;
    text-align: center;
    margin:0px 20px;   
}
.header-main-menu {
    text-align: center;
}
.header-main-menu li a{
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    font-weight: 400;
    font-family: "HarmonyOS Sans";
    padding: 15px;
    border-radius: 20px;
}
.header-main-menu li a:hover{
    background: #fff;
    color:#4abdc4;
    padding: 15px;
    border-radius: 20px;
}
.header-main-menu li a.active{
    background: #fff;
    color:#4abdc4;
    padding: 15px;
    border-radius: 20px;
}
.header-btn a {
    display: inline-block;
    background: #fff;
    font-size: 16px;
    color: #4abdc4;
    font-weight: 500;
    text-align: center;
    font-family: "HarmonyOS Sans";
    padding: 13px 37px;
    border-radius: 20px;
}
.header-btn a:hover{
    color: #fff;
    background:#13adb6;
}
.header-btn i {
    font-size: 16px;
}

/*============= Sub Menu CSS ===============*/
/*.header-main-menu ul li .sub-menu {
    position: absolute;
    width: 200px;
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    background: #13adb6;
    padding: 15px;
    text-align: left;
    visibility: hidden;
    overflow: hidden;  确保超出容器的内容被裁剪 
  
}*/
/*.header-main-menu ul li:hover .sub-menu{
    opacity: 1;
    visibility: visible;
    top: 75px;
}
.header-main-menu ul li .sub-menu li a{
    width: 170px;
    display:block;
    padding: 0;
    color: #fff;
    text-align: left;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    white-space: nowrap;
   text-overflow: ellipsis;
   overflow: hidden;
    
}
.header-main-menu ul li .sub-menu li a:hover{
    color: #232323;
    padding: 0;
    background: none;
}
.header-main-menu ul li .sub-menu li{
    width: 170px;
    margin-bottom: 5px;
    white-space: nowrap;
}*/

/*============= Sticky CSS ===============*/
/*.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
    z-index: 10000;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    background-color: #4abdc4;
    padding: 15px 0 15px;
    -webkit-animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
}
.header-area.transparent .sticky-logo {
    display: none;
}
.header-area.transparent .is-sticky .sticky-logo {
    display: block;
}
.header-area.transparent .is-sticky .main-logo {
    display: none;
}
.header-area.transparent .is-sticky .header-main-menu ul li a{
    color:#000;
}*/
/*============= Sticky CSS End =====================*/

/*============= Banner Section Area CSS ===============*/
.banner-section-area {
  height: 780px;
  background: url('../image/bg.jpg');
  background-size: cover;
  background-position: center center;
  position: relative;
}
.banner-content span {
  font-size: 16px;
  line-height: 67px;
  color: #e21e00;
  font-weight: 700;
  font-family: 'HarmonyOS Sans';
}
.banner-content h1 {
  font-size: 42px;
  letter-spacing: 1px;
  line-height: 70px;
  color: #4abdc4;
  font-weight: 700;
  font-family: 'HarmonyOS Sans';
  margin-bottom: 30px;
  text-transform: uppercase;
}
.banner-content p {
  width: 75%;
  font-size: 20px;
  line-height: 28px;
  color: #444444;
  font-weight: 400;
  font-family: 'HarmonyOS Sans';
  margin-bottom: 55px;
}
.banner-btn a {
  background: #4abdc4;
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 500;
  font-family: 'HarmonyOS Sans';
  padding: 17px 37px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
}
.banner-btn a:hover {
  background: #13adb6;
}
/*.banner-video-icon a {
    display: inline-block;
    background: #e21e00;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    margin-left: 15px;
    font-size: 25px;
}
.banner-vedio-icon i{
    color:#fff;
}
.banner-vedio-icon:hover{
    background: #232323;
}*/
.banner-shape-one {
  position: absolute;
  right: 36%;
  background: #dcedff;
  padding: 20px 56px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  top: 34%;
}
.banner-shape-one span {
  font-size: 16px;
  line-height: 22px;
  color: #232323;
  font-weight: 400;
}
.banner-shape-one strong {
  color: #e21e00;
  display: block;
  text-align: center;
  font-size: 30px;
  margin-bottom: 8px;
}
.banner-shape-two {
  position: absolute;
  right: 31%;
  background: #dcedff;
  padding: 20px 56px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  top: 77%;
  text-align: center;
  opacity: 0.9;
}
.banner-shape-two span {
  font-size: 16px;
  line-height: 22px;
  color: #232323;
  font-weight: 400;
  font-family: 'HarmonyOS Sans';
  text-align: center;
}
.banner-shape-two text {
  display: block;
  margin-bottom: 8px;
}
.banner-shape-three {
  position: absolute;
  right: 10%;
  background: #dcedff;
  padding: 20px 56px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  text-align: center;
  top: 52%;
  opacity: 0.9;
}
.banner-shape-three span {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'HarmonyOS Sans';
  text-align: center;
}
.banner-shape-three text {
  display: block;
  margin-bottom: 8px;
}

.banner-shape-three strong {
  color: #e21e00;
}
.banner-img {
  float: right;
  position: relative;
  right: 150px;
}
.banner-img img {
  width: 140%;
}
.banner-btn {
  display: inline-block;
}
.banner-video-icon {
  display: inline-block;
}
.banner-video-icon a:hover {
  background: #000;
}

/*============= Section Title CSS ===============*/
.section-title span {
  font-size: 15px;
  line-height: 28px;
  color: #e21e00;
  font-weight: 600;
  font-family: 'HarmonyOS Sans';
}
.section-title h1 {
  font-size: 22px;
  line-height: 55px;
  color: #4abdc4;
  font-weight: 600;
  font-family: 'HarmonyOS Sans';
  margin: 20px 0 27px 0;
}
.section-title h1::before {
  content: '';
  position: absolute;
  background: #4abdc4;
  width: 45px;
  height: 3px;
  margin: 50px 0px 0px;
  /*left: 0;*/
}
.section-title p {
  font-size: 15px;
  line-height: 28px;
  color: #555555;
  font-weight: 400;
  margin-bottom: 58px;
  width: 83%;
}

/*============= About Section CSS ===============*/
.about-btn a {
  background: #4abdc4;
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 500;
  font-family: 'HarmonyOS Sans';
  padding: 17px 39px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
}
.about-btn a:hover {
  background: #232323;
}

/*============= Services Section CSS ===============*/
.services-section {
  background-color: #f5f8fd;
}
.services-content h3 {
  font-size: 20px;
  line-height: 28px;
  color: #232323;
  font-weight: 600;
}
.services-content p {
  font-size: 14px;
  line-height: 26px;
  color: #555555;
  font-weight: 400;
  text-align: center;
}
.services-box {
  background: #fff;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  padding: 49px;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-style: none;
}
.services-box:hover {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.services-icon {
  margin-bottom: 30px;
}
.serivces-btn a {
  font-size: 15px;
}
.serivces-btn a:hover {
  color: #e21e00;
}
/*============= Counter Section CSS ===============*/
.counter-box {
  text-align: center;
  background: #e5f1ff;
  padding: 20px 0 20px 0;
}
.counter-box h1 {
  font-size: 35px;
  font-weight: 700;
}
.counter-box h3 {
  font-size: 30px;
  font-weight: 500;
}
/*
.counter-box:last-child {
    border-right: 0px solid black;
}*/
.counter {
  animation-duration: 1s;
  animation-delay: 0s;
}

.counter-box i {
  font-size: 30px !important;
  color: #e21e00;
}
/*============= Career Section CSS ================*/
.career-text p {
  font-size: 18px;
  /*line-height: 42px;*/
  color: #333;
  font-weight: 400;
  margin-bottom: 56px;
  width: 100%;
}
.career-text p a {
  color: #4abdc4;
}
.career-btn {
  padding-top: 4px;
}
.career-btn a {
  background: #e21e00;
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 500;
  font-family: 'HarmonyOS Sans';
  padding: 17px 39px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-top: 30px;
}
.career-btn a:hover {
  background: #232323;
}
.career-img {
  position: relative;
  /*left: 17%;*/
}

.news-item {
  margin-bottom: 20px;
  /*background-color: #fff; */
  border: none;
  overflow: hidden;
  /*border-bottom: 1px solid #ddd; */
}
.news-image {
  width: 100%;
  height: auto;
}
.news-images {
  width: 100%;
  height: auto;
  padding: 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border: 1px solid #4abdc4;
  background: #f5ffff;
}
.news-content {
  padding: 15px;
}
.news-contents {
  padding: 0 15px;
}
.news-details {
  display: flex;
  flex-direction: column;
}
.news-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
.news-title a {
  background: #4abdc4;
  padding: 9px 12px;
  color: #fff !important;
  border-radius: 30px;
  display: inline;
  vertical-align: middle;
  margin-right: 10px;
}
.news-description {
  font-size: 18px;
  color: #000;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.news-content a.read-more-btn {
  background: #4abdc4;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 500;
  font-family: 'HarmonyOS Sans';
  padding: 10px 20px;
  border: none;
  /*border-radius: 30px;
            -webkit-border-radius: 30px;
            -moz-border-radius: 30px;
            -ms-border-radius: 30px;
            -o-border-radius: 30px;*/
  position: relative;
}
.news-content a.read-more-btn:hover {
  background: #13adb6;
}
.newss-item {
  margin-bottom: 0px;
  padding: 25px 0px;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}
.newss-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #4abdc4;
}
.newss-title:before {
  content: '';
  position: absolute;
  background: #4abdc4;
  width: 45px;
  height: 3px;
  margin: 50px 0px 0px;
}
.newss-titles {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #4abdc4;
  border-bottom: 1px solid #ddd;
}

.newss-description {
  font-size: 18px;
  color: #333;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.newss-description a {
  color: #4abdc4;
}
.news-content span.news-deta {
  font-size: 16px;
  line-height: 24px;
  color: #777;
  font-weight: 500;
  font-family: 'HarmonyOS Sans';
  border: none;
  position: relative;
}
.newses-item {
  margin-bottom: 0px;
  padding: 0px;
  overflow: hidden;
}
.newses-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 32px;
  margin-bottom: 10px;
  color: #000;
}
.file-upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%; /* 通栏 */
  padding: 15px;
  border: 1px solid #4abdc4;
  border-radius: 5px;
  background: #f5ffff;
}
.file-select-button {
  background: none;
  border: none;
  color: #ccc;
  font-size: 20px;
}
.file-select-button:hover {
  background: none;
  border: none;
  color: #333;
}
.file-select-button:active {
  background: none !important;
  color: #777 !important;
}
.file-upload-input {
  flex: 1; /* 占据剩余空间 */
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.file-upload-button {
  background: #4abdc4;
  border: 0px;
  flex-shrink: 0; /* 不缩小 */
}
.file-upload-button:hover {
  background: #13adb6;
  border: 0px;
  flex-shrink: 0;
}
.file-upload-button:active {
  background: #13adb6 !important;
  border: 0px;
  flex-shrink: 0;
}
.file-upload-button:focus {
  background: #13adb6;
  border: 0px;
  flex-shrink: 0;
}
.file-uploads {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%; /* 通栏 */
}
.file-uploads h5 {
  -webkit-line-clamp: inherit;
  line-height: 1.6rem;
}

.career-img-content {
  position: absolute;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 16px 44px 16px 44px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  top: 71%;
  left: -22%;
}
.career-img-content:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px,
    rgba(0, 0, 0, 0.05) 0px 5px 10px;
}
.carrer-shape {
  position: relative;
}
.carrer-shape span {
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  font-weight: 600;
  font-family: 'HarmonyOS Sans';
  text-align: center;
}
.carrer-shape p {
  font-size: 14px;
  line-height: 24px;
  color: #555555;
  font-weight: 400;
  font-family: 'HarmonyOS Sans';
  text-align: center;
}
/*============= Online Course Section CSS ================*/
.course-section {
  background-color: #f5f8fd;
}
.single-course {
  padding-top: 10px;
}
.online-img img {
  width: 100%;
}
.star-icon i {
  margin-right: 8px;
  color: #f2c451;
}
.content-box {
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.content h5 {
  font-size: 18px;
  line-height: 28px;
  color: #232323;
  font-weight: 600;
  font-family: 'HarmonyOS Sans';
  margin: 12px 0 12px 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.content h5:hover {
  color: #e21e00;
}

.content p {
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  font-weight: 300;
  font-family: 'HarmonyOS Sans';
  margin-bottom: 22px;
}
.text li {
  list-style: none;
  display: inline-block;
  cursor: pointer;
}
.text {
  display: flex;
  justify-content: space-between;
}
.text li:hover {
  color: #e21e00;
}
.owl-nav {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: flex;
}
.owl-nav div {
  margin: 0 10px;
  font-size: 18px;
  background: #f00;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.bi.bi-arrow-left:hover {
  color: #fff;
}
.bi.bi-arrow-right:hover {
  color: #fff;
}
.owl-nav div:hover {
  background: #000;
  color: #fff;
  transition: 0.5;
  -webkit-transition: 0.5;
  -moz-transition: 0.5;
  -ms-transition: 0.5;
  -o-transition: 0.5;
}
/*============= Testimonial Section CSS ================*/
.testimonial-box {
  padding: 40px;
  background: #fff;
  margin: 5px;
  filter: drop-shadow(0px 5px 10px rgba(162, 162, 162, 0.2));
}
.testimonial-img img {
  margin: auto;
}
.testimonial-info h3 {
  font-size: 20px;
  line-height: 28px;
  color: #232323;
  font-weight: 500;
  font-family: 'HarmonyOS Sans';
  text-align: center;
  margin-bottom: 3px;
}
.testimonial-info span {
  font-size: 16px;
  line-height: 28px;
  color: #e21e00;
  font-weight: 400;
  font-family: 'HarmonyOS Sans';
  text-align: center;
}
.testimonial-info p {
  font-size: 19px;
  line-height: 30px;
  color: #555555;
  font-weight: 300;
  font-style: italic;
  font-family: 'HarmonyOS Sans';
  text-align: center;
}
.owl-nav i:hover {
  color: #e21e00;
}
/*============= instruction Section CSS ================*/
.instruction-section {
  background-color: #f5f8fd;
}
.check-mark ul li {
  list-style: none;
}
.check-mark li {
  font-size: 17px;
  line-height: 16px;
  color: #232323;
  font-weight: 500;
  font-family: 'HarmonyOS Sans';
  margin-bottom: 20px;
}
.check-mark i {
  background: #e21e00;
  width: 26px;
  height: 26px;
  line-height: 26px;
  color: #fff;
  margin-right: 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-align: center;
  font-size: 15px;
  display: inline-block;
}
.check-mark i:hover {
  background: #232323;
}
.check-mark-btn a {
  display: inline-block;
  background: #e21e00;
  padding: 17px 39px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  font-family: 'HarmonyOS Sans';
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-top: 30px;
}
.check-mark-btn a:hover {
  background: #000000;
}
/*============= Footer Section CSS ================*/
.footer-area {
  background: #4abdc4;
  padding-bottom: 2px;
}
.footer-text p {
  font-size: 17px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
  font-family: 'HarmonyOS Sans';
  width: 76%;
}
.footer-social a {
  margin-right: 15px;
  font-size: 18px;
}
.footer-social a:hover {
  color: #e21e00;
}
.footer-content li {
  list-style: none;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
  font-family: 'HarmonyOS Sans';
}
.footer-content li:hover {
  color: #e21e00;
}
.footer-text h5 {
  font-size: 22px;
  line-height: 28px;
  color: #fff;
  font-weight: 600;
  font-family: 'HarmonyOS Sans';
  margin-bottom: 10px;
}
.footer-content i {
  margin-right: 8px;
}
.footer-content a {
  display: block;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
  font-family: 'HarmonyOS Sans';
  margin-bottom: 5px;
}
.footer-content a:hover {
  color: #fff;
}
.copyright-text span {
  font-size: 16px;
  line-height: 28px;
  color: #646464;
  font-weight: 400;
  font-family: 'HarmonyOS Sans';
  text-align: center;
}
.copyright-text p {
  color: #fff;
  margin: 0px;
}
.copyright-text a {
  color: #fff;
}
/*.footer-img img{width: 80%;}*/
/*--- =============== Scroll Top ============ ---*/

.scroll-area .go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 30px;
  color: #ffffff;
  background-image: -moz-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  background-image: -webkit-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  z-index: 9999;
  width: 45px;
  text-align: center;
  height: 45px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.9s ease-out 0s;
  -moz-transition: all 0.9s ease-out 0s;
  border-radius: 10px;
}
.scroll-area .go-top i {
  position: absolute;
  top: 50%;
  left: -4px;
  right: 0;
  margin: 0 auto;
  font-size: 15px;
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
}
.scroll-area .go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.scroll-area .go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(to right, #001110 0%, #001110 100%);
  background-image: -ms-linear-gradient(0deg, #001110 0%, #001110 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  border-radius: 100%;
}
.scroll-area .go-top:focus,
.scroll-area .go-top:hover {
  color: #fff;
}
.scroll-area .go-top:focus::before,
.scroll-area .go-top:hover::before {
  opacity: 1;
  visibility: visible;
}
.scroll-area .go-top:focus i:first-child,
.scroll-area .go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.scroll-area .go-top:focus i:last-child,
.scroll-area .go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.scroll-area .go-top.active {
  top: 95%;
  -webkit-transform: translateY(-98%);
  -moz-transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
  border-radius: 0;
  right: 30px;
  border-radius: 100%;
}
.top-wrap {
  position: relative;
}
.top-wrap .go-top-button {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  top: 3px;
  z-index: 1;
  background: #13adb6;
}
.top-wrap .go-top-button i {
  font-size: 20px;
  font-weight: 700;
  padding-left: 4px;
  color: #fff;
}
.top-wrap .go-top-button::after {
  z-index: -1;
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 45px;
  height: 45px;
  -webkit-animation: ripple 1.6s ease-out infinite;
  -moz-animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  border-radius: 100%;
}
.top-wrap .go-top-button:hover {
  background-color: #222;
  color: #fff;
}

/*============= breadcumb Section CSS ================*/
.breadcrumb-area {
  padding-top: 0px;
  padding-bottom: 74px;
  background-position: center center;
  background-size: cover;
  position: relative;
  /*background-image: url(../image/breadcumb-bg.png);*/
}
.img-1 img {
  width: 100%;
}
.breadcrumb-box .breadcrumb-section-title h1 {
  color: #fff;
}
.breadcrumb-title h1 {
  color: #fff;
  font-size: 70px;
  margin-bottom: 30px;
}

.breadcrumb-title p {
  color: #fff;
  font-size: 20px;
}
.box-content {
  position: absolute;
  top: 10%;
  left: 0;
  padding: 20px 40px 0;
}
.img-title h3 {
  color: #fff;
  line-height: 45px;
}
.img-box {
  position: relative;
}
.img-1 img {
  border-radius: 20px;
}
.img-text p {
  color: #fff;
  margin: 20px 0 50px;
}
.breadcrumb-menu ul li {
  list-style: none;
  display: inline-block;
}

.breadcrumb-menu li a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.breadcrumb-menu li:not(:last-child)::after {
  content: '/';
  position: relative;
  margin-left: 20px;
  margin-right: 15px;
  color: #fff;
}
.breadcrumb-menu {
  position: relative;
  margin: 0;
  background-color: #e21e00;
  padding: 25px 0px 25px 50px;
  border-radius: 0 7px 7px 0;
  margin-top: 40px;
}
.header-area.breadcrumb .header-main-menu li a {
  color: #fff;
}
.breadcrumb-menu i {
  margin-right: 10px;
}

.widget {
  position: relative;
  background: #f3f3f3;
  padding: 25px 35px;
  margin-bottom: 30px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.widget-title {
  display: inline-block;
}
.widget-title h3::before {
  content: '';
  position: absolute;
  background: #e21e00;
  width: 50px;
  height: 2px;
  bottom: 0;
}
.widget-title h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10px;
  height: 2px;
  background: #fec624;
}
.widget-title::after {
  left: 89px;
  width: 10px;
  background: #fec624;
}
.course-img img {
  width: 100%;
}
.widget-title h3 {
  font-size: 26px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
}
.course-list ul li {
  list-style: none;
  text-decoration: none;
}
.course-list ul li a:hover {
  color: #e21e00;
}
.course-list a {
  position: relative;
  background: #fff;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.course-list a i {
  margin-right: 10px;
  color: #e21e00;
}

.course-img img {
  border-radius: 20px;
  margin-bottom: 50px;
}
.course-category {
  width: 40%;
  /*margin-bottom: 15px;*/
  padding-top: 42px;
}
.course-category a {
  padding: 8px 20px;
  /*border-radius: 20px;*/
  color: #4abdc4;
  font-size: 20px;
  letter-spacing: 0.6px;
}
/*.course-category a:hover{
    background: #13adb6;
}*/
.course-title {
  margin-bottom: 15px;
}
.course-title a {
  background: #4abdc4;
  padding: 8px 22px;
  color: #fff !important;
  border-radius: 30px;
  display: inline;
  vertical-align: middle;
  font-size: 26px;
}
.course-review {
  margin-bottom: 30px;
}
.course-review i {
  color: #fec624;
  margin-right: 6px;
  font-size: 16px;
  font-weight: 600;
}
.course-meta {
  padding: 0px 0 20px 0;
  justify-content: space-between;
  box-shadow: 2px 2px 10px 2px rgba(74, 189, 196, 0.05);
}
.course-meta h2 {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  background: #4abdc4;
  line-height: 60px;
  width: 100%;
  padding-left: 30px;
  display: flex;
  justify-content: space-between;
}
.course-meta .meta-item {
  position: relative;
  padding: 10px 60px;
}
.course-meta i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: 2px;
  color: #e21e00;
}
.course-meta .meta-btn button {
  /*width: 15%;*/
  background: #4abdc4;
  border: 0px;
  height: 48px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  padding: 10px;
}
.course-meta .meta-btn button:hover {
  /*width: 15%;*/
  background: #13adb6;
}
.course-meta .meta-btn svg {
  width: 28px;
  height: 28px;
  line-height: 45px;
  margin-right: 10px;
  background-image: url(../image/gongshi.svg);
  background-size: 100%;
  margin-top: -4px;
}
.meta-title span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.meta-text p {
  font-size: 15px;
}
.meta-text input {
  width: 100%;
  height: 45px;
  padding-left: 15px;
  border: 1px solid #4abdc4;
  box-shadow: 2px 2px 10px 2px rgb(74, 189, 196, 0.1);
}
.course-price {
  margin-top: 50px;
  font-size: 80px;
  font-weight: 600;
}
.course-price span {
  color: #e21e00;
}
.course-price small {
  font-size: 15px;
  font-weight: 500;
}
.course-img-btn {
  background: #e21e00;
  padding: 22px 40px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  display: inline-block;
  vertical-align: middle;
}
.course-btn {
  background: #e21e00;
  padding: 22px 40px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  display: inline-block;
  vertical-align: middle;
}
.courses-btn {
  background: none;
  padding: 10px 0px;
  color: #4abdc4;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
}
.inner-video-box img {
  width: 100%;
}
.course-img-btn:hover {
  background: #000;
  color: #fff;
}
.course-btn:hover {
  background: #000;
  color: #fff;
}
.border-title {
  position: relative;
  margin-bottom: 25px;
}
.border-title h5 {
  font-size: 24px;
  padding-top: 20px;
}
.border-title::before {
  content: '';
  position: absolute;
  background: #4abdc4;
  width: 80px;
  height: 3px;
  bottom: 10px;
  left: 0;
}
.border-text p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 36px;
}

.border-list {
  margin-bottom: 50px;
}
.border-list ul li {
  list-style: none;
}
.border-list li {
  font-size: 15px;
  margin-bottom: 15px;
}
.border-list i {
  font-size: 20px;
  font-weight: 700;
  color: #e21e00;
}
.inner-video-box {
  position: relative;
}
.position-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.play-btn i {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background-color: #e21e00;
  font-size: 30px;
  border-radius: 50%;
  z-index: 1;
  transition: all ease 0.4s;
  color: #fff;
}
.play-btn i:hover {
  background-color: #000;
  color: #fff;
}

/*--============== Listbox CSS --==============*/
.listbox {
  margin-bottom: 25px;
  box-shadow: 4.45px 12.22px 24px rgba(35, 31, 32, 0.09);
  transition: all ease 0.4s;
  padding: 0px 20px;
  border: 2px solid #4abdc4;
  border-radius: 20px;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.underline {
  border-bottom: 1px solid #4abdc4;
}
.underlines {
  border-bottom: 1px solid #ccc;
}
.listbox div {
  text-align: center;
  margin: 0px !important;
}
h5 {
  padding: 0px;
  margin: 0px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}
.listbox p {
  margin: 0px !important;
  line-height: 2.8rem;
  margin-bottom: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}

/*--============== page CSS --==============*/
.page {
  padding: 20px;
}
.page li a {
  color: #666;
}
.page li a:hover {
  color: #fff;
  background: #4abdc4;
}
.page-link:focus {
  color: #fff;
  background: #4abdc4;
  box-shadow: none;
}

.page li.page-num {
  color: #333;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
}

/*--============== Accordion CSS --==============*/
.accordion-style .accordion-item {
  border: 0px solid rgba(0, 0, 0, 0);
  /*border-radius: 20px;*/
  /*margin-bottom: 20px;*/
  /*outline: 1px solid #4abdc4;*/
  /*padding-left: 20px;*/
  position: relative;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}
.accordion-style .accordion-item.active {
  border: 1px solid #4abdc4;
  outline: none;
  box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.05);
  transition: all ease 0.4s;
  background: #f5ffff;
}
.accordion-style .accordion-body {
  position: relative;
  padding-left: 10px;
}
.accordion-style .accordion-body p {
  /*margin-bottom: 10px;*/
  font-size: 18px;
  /*margin-bottom: 50px;*/
  line-height: 36px;
}
.accordion-style .accordion-body p a {
  /*margin-bottom: 10px;*/
  font-size: 18px;
  color: #4abdc4;
}
.accordion-style .accordion-bodys {
  position: relative;
  padding-left: 0px;
}
.accordion-style .accordion-bodys p {
  /*margin-bottom: 10px;*/
  font-size: 18px;
  /*margin-bottom: 50px;*/
  line-height: 36px;
}
.accordion-style .accordion-bodys p a {
  /*margin-bottom: 10px;*/
  font-size: 18px;
  color: #4abdc4;
}
.accordion-style .accordion-button {
  position: relative;
  z-index: 3;
  color: #4abdc4;
  font-size: 24px;
  padding: 20px 27px 20px 0px;
  transition: all 0.4s ease 0s;
  border: none;
}
.accordion-style .accordion-button:hover {
  color: #4abdc4;
}
.accordion-style .accordion-button:not(.collapsed) .button-label {
  background-image: url('../image/accordion-button-up.png'); /* 使用背景图片 */
  color: #fff;
}
.accordion-style .button-label {
  background-image: url('../image/accordion-button-down.png'); /* 使用背景图片 */
  /*border-radius: 20px;*/
  /*color: #e21e00;*/
  font-size: 16px;
  font-weight: bold;
  height: 40px;
  left: 156px;
  line-height: 40px;
  position: absolute;
  text-align: center;
  width: 40px;
  transition: all 0.4s ease 0s;
}
.accordion-collapse {
  border: none;
}
.accordion-style .list-style1 {
  margin-bottom: 0;
}
.accordion-button {
  padding: 0;
  border: none;
  text-align: left;
  font-weight: normal;
}
.accordion-button:after {
  display: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: #4abdc4;
  background-color: rgba(0, 0, 0, 0);
}
.syllabus-list img {
  border-radius: 20px;
  width: 20rem;
}
.syllabus-list {
  align-items: flex-start;
  display: flex;
  /*margin-bottom: 20px;*/
  position: relative;
}
.syllabus-content {
  padding-left: 20px;
}
.syllabus-list .syllabus-img {
  margin-right: 20px;
}
.syllabus-title h6 {
  font-size: 20px;
}
.syllabus-text {
  font-size: 18px;
}
.syllabus-text a {
  font-size: 18px;
  color: #4abdc4;
}
.available-badge {
  color: #444444;
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  margin-left: 30px;
  padding-left: 25px;
  position: relative;
}
.available-badge::before {
  background-color: #e21e00;
  border-radius: 50%;
  bottom: 5px;
  content: '';
  height: 16px;
  left: 0;
  position: absolute;
  width: 16px;
}
/*--============== Team CSS --==============*/
.team-box {
  border: 2px solid rgba(193, 193, 193, 0.1);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: all ease 0.4s;
  margin-bottom: 30px;
}
.team-box .team-img {
  border-radius: 20px;
  overflow: hidden;
}
.team-box .team-content {
  padding-top: 40px;
  position: relative;
  text-align: center;
}
.team-box .team-review {
  position: absolute;
  left: 50%;
  top: -15px;
  color: #f6b800;
  font-size: 14px;
  line-height: 1;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 15.5px;
  background-color: #fff;
  width: -moz-max-content;
  width: max-content;
}
.team-name h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 7px;
}
.team-desi p {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.team-text p {
  font-size: 16px;
  max-width: 290px;
  margin: 6.4px auto 0 auto;
}
.w-100 {
  width: 100%;
}
/*--============== Team Details CSS --==============*/
.team-details {
  margin-left: 80px;
}
.team-img img {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.team-name h2 {
  font-size: 42px;
}
.team-degi p {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.team-degi .team-course {
  background-color: #f8f6ff;
  padding: 8px 16px;
  border-radius: 5px;
  margin-bottom: 30px;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #e21e00;
  text-align: center;
}
.team-rate {
  font-weight: bold;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.team-rate .team-price {
  color: #e21e00;
  font-weight: bold;
  font-size: 40px;
}

.team-social-link a {
  display: inline-block;
}
.team-social-link i {
  display: block;
  font-size: 18px;
  margin: 35px 15px 0 0;
  color: #1d293e;
  border: 1px solid #eee;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.team-social-link .bi:hover {
  background: #e21e00;
  color: #fff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
/*============= Our Team Section CSS ================*/
.our-team-box {
  width: 100%;
  border: 1px solid #ecf0f1;
  text-align: center;
}
.team-box-img img {
  width: 100%;
  margin-bottom: 10px;
}
.team-box-info h4 {
  text-transform: uppercase;
  margin-bottom: 0px;
}
.team-box-info h4:hover {
  color: #e21e00;
}
.team-box-info p {
  font-size: 16px;
}
.team-box-info p:hover {
  color: #e21e00;
}

.social-link {
  margin: 20px;
}
.social-link a {
  display: inline-block;
  text-decoration: none;
}
.social-link i {
  display: block;
  font-size: 18px;
  margin: 0 15px 15px 0;
  color: #1d293e;
  border: 1px solid #eee;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.social-link .bi:hover {
  background: #e21e00;
  color: #fff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.social-link .bi-box-arrow-up-right:hover {
  background: #e21e00;
  color: #fff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.our-team_list .owl-nav {
  position: absolute;
  /*bottom: 16%;*/
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.our-team_list .owl-nav .owl-prev {
  position: relative;
  left: -18px;
  top: 89px;
  text-align: center;
  font-size: 24px;
  color: #000000;
  font-weight: 500;
}
.our-team_list .owl-nav .owl-next {
  position: relative;
  right: -16px;
  top: 61px;
  text-align: center;
  font-size: 24px;
  color: #000000;
  font-weight: 500;
}
.owl-nav i:hover {
  color: #e21e00;
}
/*============= Contact Section CSS ================*/
.contact-form-box {
  /*box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
  padding: 30px;
}
.contact-btn button {
  display: inline-block;
  background: #e21e00;
  padding: 17px 37px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  font-family: 'HarmonyOS Sans';
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.contact-btn button {
  border: none;
}
.contact-btn button:hover {
  background: #000000;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.contact-form-box p {
  padding-left: 5px;
  font-size: 16px;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-box input {
  width: 100%;
  height: 45px;
  padding-left: 15px;
  border: 1px solid #4abdc4;
  border-radius: 0px;
}
.form-box textarea {
  width: 100%;
  height: 150px;
  padding: 15px 19px;
}
.single-contact-box {
  display: flex;
}
.cda-content-area {
  background: #000000;
  padding: 29px;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.contact-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 30px;
}
.contact-content p {
  color: #fff;
  margin-bottom: 67px;
}
.single-contact-box .contact-icon i {
  background: #e21e00;
  display: inline-block;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 25px;
  text-align: center;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-right: 40px;
}
.single-content .icon i:hover {
  background: #000;
  color: #fff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

/*============= info-box CSS ================*/
.info-box {
  padding: 30px;
}
.info-box p {
  color: #4abdc4;
  padding-left: 5px;
  font-size: 22px;
  font-weight: bold;
}
.info-box select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #4abdc4;
  border-radius: 0px;
}

/* 当选中一个选项时，改变下拉列表的样式 */
.info-box select:focus {
  border-color: #007bff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  padding-right: 20px; /* 为箭头留出空间 */
  -webkit-appearance: none; /* Safari, Chrome 和 Opera */
  -moz-appearance: none; /* Firefox */
  appearance: none;
  background-image: url('../image/arrow-down.png'); /* 使用背景图片 */
  background-position: right center; /* 将图片放置在右侧中央 */
  background-repeat: no-repeat;
}

/*============= Dashboard Section CSS ================*/

.dashborad-section-title p {
  font-size: 23px;
  font-weight: 300;
  line-height: 45px;
}

/*============= slider-container CSS ================*/
.slider-container {
  width: 300px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.slider-container .back-bar {
  height: 10px;
  position: relative;
}
.slider-container .back-bar .selected-bar {
  position: absolute;
  height: 100%;
}
.slider-container .back-bar .pointer {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: red;
  cursor: col-resize;
  opacity: 1;
  z-index: 2;
}
.slider-container .back-bar .pointer.last-active {
  z-index: 3;
}
.slider-container .back-bar .pointer-label {
  position: absolute;
  top: -28px;
  font-size: 12px;
  background: #13adb6;
  white-space: nowrap;
  line-height: 16px;
  /* height: 16px; */
  /* width: 18px; */
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: -5px;
}
.slider-container .back-bar .focused {
  z-index: 10;
}
.slider-container .clickable-dummy {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slider-container .scale {
  top: 0px;
  position: relative;
}
.slider-container .scale span {
  position: absolute;
  height: 8px;
  border-left: 1px solid #999;
  font-size: 0;
}
.slider-container .scale ins {
  font-size: 12px;
  text-decoration: none;
  position: absolute;
  left: 0;
  top: 8px;
  color: #000;
  line-height: 1;
}
.slider-container.slider-readonly .clickable-dummy,
.slider-container.slider-readonly .pointer {
  cursor: auto;
}
.theme-green .back-bar {
  /*height: 5px;*/
  border-radius: 20px;
  background-color: #eeeeee;
  background-color: #e7e7e7;
  background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#eeeeee),
    to(#dddddd)
  );
  background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-green .back-bar .selected-bar {
  border-radius: 20px;
  background-color: #4abdc4;
  /*  background-image: -moz-linear-gradient(top, #bdfade, #76fabc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));
  background-image: -webkit-linear-gradient(top, #bdfade, #76fabc);
  background-image: -o-linear-gradient(top, #bdfade, #76fabc);
  background-image: linear-gradient(to bottom, #bdfade, #76fabc);*/
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);
}
.theme-green .back-bar .pointer {
  width: 18px;
  height: 18px;
  top: -5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #aaa;
  background-color: #e7e7e7;
  background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#eeeeee),
    to(#dddddd)
  );
  background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-green .back-bar .pointer-label {
  color: #fff;
}
.theme-green .back-bar .focused {
  color: #fff;
}
.theme-green .scale span {
  border-left: 1px solid #000;
}
.theme-green .scale ins {
  color: #000;
}
.theme-blue .back-bar {
  height: 5px;
  border-radius: 2px;
  background-color: #eeeeee;
  background-color: #e7e7e7;
  background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#eeeeee),
    to(#dddddd)
  );
  background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-blue .back-bar .selected-bar {
  border-radius: 2px;
  background-color: #92c1f9;
  background-image: -moz-linear-gradient(top, #b1d1f9, #64a8f9);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#b1d1f9),
    to(#64a8f9)
  );
  background-image: -webkit-linear-gradient(top, #b1d1f9, #64a8f9);
  background-image: -o-linear-gradient(top, #b1d1f9, #64a8f9);
  background-image: linear-gradient(to bottom, #b1d1f9, #64a8f9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb1d1f9', endColorstr='#ff64a8f9', GradientType=0);
}
.theme-blue .back-bar .pointer {
  width: 14px;
  height: 14px;
  top: -5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #aaa;
  background-color: #e7e7e7;
  background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#eeeeee),
    to(#dddddd)
  );
  background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-blue .back-bar .pointer-label {
  color: #999;
}
.theme-blue .back-bar .focused {
  color: #333;
}
.theme-blue .scale span {
  border-left: 1px solid #e5e5e5;
}
.theme-blue .scale ins {
  color: #999;
}

/* 显示遮罩层时 */
#myModal.show {
  display: block; /* 显示遮罩层 */
}
#mask_shadow {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center; /* 与子元素的Flexbox布局结合使用 */
  justify-content: center; /* 同上 */
}
.overlay {
  display: none;
  position: absolute;
  z-index: 8;
  top: 150px;
  width: 600px;
  margin: auto;
  height: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  background-color: #fff;
  border-radius: 30px;
  padding: 10px;
}
/* 对话框样式 */
.overlay .titles {
  position: relative;
  width: 100%;
  height: 38px;
}
.overlay .titles .close_button {
  position: absolute;
  right: 0px;
  width: 30px;
  height: 30px;
  color: #000;
  cursor: pointer;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  background-color: unset;
  border-radius: 0;
  border: 0;
}
.overlay .titles .close_button:hover {
  opacity: 0.8;
}
.overlay .cont {
  width: 100%; /*height:80px;*/
  padding: 5px;
  text-align: left;
  font-size: 20px;
}
#btn1 {
  margin: 30px;
}
.overlay .btns {
  max-width: 100px;
  font-size: larger;
  width: 100%;
  background-color: #4abcc3;
  border: 0;
  height: 38px;
  border-radius: 49px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.5s;
  float: right;
  margin-right: 20px;
}
