:root {
  --main-color: #CFA25B;
  --purple--color: #600091;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
}
::-webkit-scrollbar-track {
  background: #d7d7d7;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 6px;
}
.dont-recognize-phone {
  -webkit-touch-callout: none;
  /* 禁止长按链接弹出菜单 */
  -webkit-user-select: none;
  /* 禁止用户选择文字 */
  pointer-events: none;
  /* 禁止元素接收点击事件 */
}
a[href^="tel:"] {
  color: inherit;
  /* 继承父元素的文字颜色 */
  text-decoration: none;
  /* 取消下划线 */
}
.f_up {
  opacity: 0;
  transform: translateY(100px);
  transition: ease-out 0.5s;
}
.f_up.on {
  opacity: 1;
  transform: translateY(0px);
}
.pc {
  display: block!important;
}
.h5 {
  display: none!important;
}
.h5 {
  margin: 0;
}
.cf {
  zoom: 1;
}
.cf:after {
  content: ".";
  display: block;
  clear: both;
  font-size: 0;
  height: 0;
  visibility: hidden;
  overflow: hidden;
}
input,
select {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select {
  -webkit-appearance: none;
}
input::-ms-clear {
  width: 0;
  height: 0;
}
input::-webkit-credentials-auto-fill-button {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
}
input:focus::-webkit-contacts-auto-fill-button {
  opacity: 0;
}
input:focus,
select:focus {
  outline: none;
  border-width: 0;
  box-shadow: none!important;
}
body {
  word-break: break-word;
}
i {
  font-style: normal;
}
img {
  width: 100%;
  display: block;
  line-height: 0;
  font-size: 0;
  transition: all 0.5s;
}
svg {
  width: 20px;
  height: 20px;
  margin: 0;
}
.play_btn {
  display: block;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  position: relative;
}
.play_btn i {
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #f7f9fc;
  border-radius: 100%;
  transition: all 0.3s;
}
.play_btn svg {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}
.play_btn svg path {
  transition: all 0.3s;
}
.play_btn::before,
.play_btn::after,
.play_btn i::before,
.play_btn i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 1.4px solid rgba(247, 249, 252, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 1.8s infinite;
}
.play_btn::after {
  animation-delay: 0s;
}
.play_btn::before {
  animation-delay: 0.6s;
}
.play_btn i::before {
  animation-delay: 1.2s;
}
.play_btn i::after {
  animation-delay: 1.8s;
}
.play_btn:hover svg path {
  fill: var(--main-color);
}
.play_btn:hover i {
  border: 1.4px solid var(--main-color);
}
.play_btn:hover::after,
.play_btn:hover::before,
.play_btn:hover i::after,
.play_btn:hover i::before {
  border: 1.4px solid var(--main-color);
}
@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
.cont {
  width: 100%;
  overflow: hidden;
}
.anchor {
  width: 100%;
  padding: 38px 0;
  background: #FAFAFA;
}
.anchor .tab-pc {
  display: block;
  text-align: center;
}
.anchor .tab-pc a {
  display: inline-block;
  color: #6B6B6B;
  font-size: 16px;
  margin: 0 24px;
  position: relative;
  transition: all 0.3s;
}
.anchor .tab-pc a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.anchor .tab-pc a:hover {
  color: var(--main-color);
}
.anchor .tab-pc a.on {
  color: var(--purple--color);
}
.anchor .tab-pc a.on::after {
  width: 100%;
  background: var(--purple--color);
}
.anchor .tab-h5 {
  display: none;
  width: 90%;
  margin-left: 5%;
}
.anchor .tab-h5 p {
  color: #0c101a;
  font-size: 12px;
}
.anchor .tab-h5 .current {
  color: #0c101a;
  font-size: 24px;
  font-weight: 400;
  display: flex;
  align-items: center;
  position: relative;
}
.anchor .tab-h5 .current i {
  display: block;
  margin-left: 8px;
}
.anchor .tab-h5 .current svg {
  width: 11px;
  height: 11px;
  transition: all 0.3s;
}
.anchor .tab-h5 .current .nav-selection {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  z-index: 20;
  width: 110px;
  padding: 14px 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}
.anchor .tab-h5 .current .nav-selection a {
  display: block;
  width: 100%;
  margin: 0;
  text-align: center;
  line-height: 38px;
  color: #8f8f8f;
  font-size: 14px;
  font-weight: 400;
}
.anchor .tab-h5 .current .nav-selection a:hover {
  color: var(--main-color);
}
.anchor .tab-h5 .current.on svg {
  transform: rotate(180deg);
}
.anchor .sw-anchor {
  display: none;
  width: 90%;
  margin: 12px auto 0;
  overflow: initial;
}
.anchor .sw-anchor .swiper-slide {
  border-radius: 2px;
  background: #f7f9fc;
  text-align: center;
  padding: 6px 0;
  color: #8f8f8f;
  font-size: 12px;
  font-weight: 400;
}
.anchor .sw-anchor .swiper-slide.act {
  background: rgba(252, 120, 44, 0.1);
  color: var(--main-color);
}
.side-navigation {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  z-index: 999;
  transition: ease 0.5s;
}
.side-navigation .nav-box {
  border-radius: 4px;
  background: rgba(249, 249, 249, 0.64);
  box-shadow: -6px 2px 8px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
  width: 52px;
  padding: 0;
}
.side-navigation .nav-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 36px;
  margin: 0 auto;
  padding: 6px 0;
  position: relative;
  /*  border-bottom: 1px solid rgba(255,255,255,.2);
            &:nth-last-child(1){
                border: 0;
            } */
}
.side-navigation .nav-box a .ic1 {
  width: 36px;
  display: block;
}
.side-navigation .nav-box a .ic2 {
  width: 36px;
  display: none;
}
.side-navigation .nav-box a p {
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  display: inline-block;
}
.side-navigation .nav-box a .qr {
  position: absolute;
  right: calc(100% + 60px);
  top: 0;
  width: 100px;
  border-radius: 5px;
  background: #fff;
  padding: 10px 0;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
}
.side-navigation .nav-box a .qr::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid white;
  margin-left: 5px;
  vertical-align: middle;
  position: absolute;
  top: 28px;
  right: -8px;
}
.side-navigation .nav-box a .qr img {
  width: 80px;
  margin: 0 auto;
}
.side-navigation .nav-box a .qr .txt {
  text-align: center;
  color: #7D7D7D;
  font-size: 10px;
}
.side-navigation .nav-box a .tel-l {
  position: absolute;
  right: calc(100% + 60px);
  top: 50%;
  transform: translateY(-50%);
  width: 170px;
  border-radius: 5px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
}
.side-navigation .nav-box a .tel-l .txt {
  color: #333333;
  font-weight: 600;
}
.side-navigation .nav-box a .tel-l::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid white;
  margin-left: 5px;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -8px;
}
.side-navigation .nav-box a:hover .qr {
  right: calc(100% + 19px);
  pointer-events: auto;
  opacity: 1;
}
.side-navigation .nav-box a:hover .tel-l {
  right: calc(100% + 19px);
  pointer-events: auto;
  opacity: 1;
}
.side-navigation.on .nav-box a .ic1 {
  display: none;
}
.side-navigation.on .nav-box a .ic2 {
  display: block;
}
.side-navigation.on .nav-box a p {
  color: var(--main-color);
}
.page-banner {
  position: relative;
}
.page-banner .bg {
  width: 100%;
}
.page-banner .bg img {
  margin: 0 auto;
}
.page-banner .txt {
  position: absolute;
  width: 90%;
  top: 55%;
  transform: translateY(-50%);
  left: 5%;
}
.page-banner .txt .title {
  font-weight: 700;
  color: #ffffff;
}
.page-banner .txt .breadcrumbs {
  margin-top: 20px;
}
.page-banner .txt .breadcrumbs a {
  font-weight: 500;
  color: #d6d6d6;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
}
.page-banner .txt .breadcrumbs a::after {
  content: '>';
  font-size: 14px;
  line-height: 24px;
  display: inline-block;
  margin: 0 6px;
  color: #d6d6d6;
}
.page-banner .txt .breadcrumbs a:nth-last-child(1) {
  color: #ffffff;
}
.page-banner .txt .breadcrumbs a:nth-last-child(1)::after {
  display: none;
}
.pagination {
  margin-top: 40px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination a {
  text-decoration: none;
  border: 1px solid #AAE;
  color: #15B;
}
.pagination a,
.pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  margin-bottom: 5px;
  color: #6b6b6b;
  width: 45px;
  height: 45px;
  font-size: 16px;
  font-weight: 500;
  background: #f7f9fc;
  margin: 0 3px;
  border-radius: 100%;
  border: 0;
}
.pagination a:hover,
.pagination span:hover {
  color: var(--main-color);
}
.pagination .current {
  background: var(--main-color);
  color: #fff;
}
.pagination .current.prev,
.pagination .current.next {
  color: #6b6b6b;
  background: #f7f9fc;
  opacity: 0.6;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 10, 20, 0.36) 0%, rgba(10, 56, 115, 0.13) 100%);
  box-shadow: 0px 10px 16px 4px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.header.on {
  background: #f9f9f9;
}
.header.on .h_top .logo .logo1 {
  display: none;
}
.header.on .h_top .logo .logo2 {
  display: block;
}
.header.on .h_top .m-nav li > a {
  color: var(--purple--color);
}
.header.on .h_top .m-nav > li .sub-nav {
  box-shadow: 0 0 10px rgba(11, 56, 115, 0.1);
}
.header.on .h_top .m-nav > li.entrance > a {
  box-shadow: 0px;
}
.header.on .h_top .nav_r .buts .hotline a {
  color: var(--purple--color);
}
.header.on .h_top .nav_r .buts .hotline a svg path {
  fill: var(--purple--color);
}
.header.act {
  background: #600091 !important;
  backdrop-filter: blur(4px) !important;
}
.header.act .h_top .logo img {
  top: 0%;
}
.header.act .h_top .m-nav {
  background: #600091 !important;
  backdrop-filter: blur(4px) !important;
}
.header.act .h_top .m-nav li > a {
  color: #8f8f8f;
  white-space: nowrap;
}
.header.act .h_top .m-nav > li .sub-nav {
  box-shadow: 0 0 10px rgba(11, 56, 115, 0.1);
}
.header.act .h_top .m-nav > li.entrance > a {
  box-shadow: 0px 2px 8px 2px rgba(23, 39, 143, 0.36);
}
.header.act .h_top .nav_r .buts .hotline a {
  color: #8f8f8f;
}
.header.act .h_top .nav_r .buts .hotline a svg path {
  fill: #8f8f8f;
}
.header.act .h_top .nav_r .buts .entrance a {
  border: 1px solid #fff;
  color: #fff;
}
.header .h_top {
  pointer-events: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 140px;
  transition: all 0.3s;
  position: relative;
  top: 0;
  left: 0;
  margin: 0 auto;
}
.header .h_top .logo {
  width: 90px;
  padding-top: 76px;
  overflow: hidden;
  position: relative;
}
.header .h_top .logo img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0s;
}
.header .h_top .logo .logo1 {
  display: block;
}
.header .h_top .logo .logo2 {
  display: none;
}
.header .h_top .h_top_r {
  width: calc(100% - 108px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.header .h_top .m-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  margin-right: 40px;
  transition: all 0.3s;
}
.header .h_top .m-nav > li {
  height: 100%;
  display: block;
  position: relative;
}
.header .h_top .m-nav > li > a {
  color: #fff;
  height: 100%;
  padding: 0 25px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
}
.header .h_top .m-nav > li > a:hover {
  color: var(--main-color);
}
.header .h_top .m-nav > li .nav-icon {
  display: none;
}
.header .h_top .m-nav > li .sub-nav {
  position: absolute;
  left: 50%;
  top: 70%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 15px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.header .h_top .m-nav > li .sub-nav::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid white;
  width: 0;
  height: 0;
}
.header .h_top .m-nav > li .sub-nav a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  color: #8f8f8f;
  white-space: nowrap;
}
.header .h_top .m-nav > li .sub-nav a:hover {
  color: var(--main-color);
  font-weight: bold;
}
.header .h_top .m-nav > li .sub-nav.on {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0px);
}
.header .h_top .m-nav > li.entrance {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 30px;
}
.header .h_top .m-nav > li.entrance > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  border-radius: 4px;
  background: var(--main-color);
  padding: 3px 15px;
  color: #fff;
  transition: all 0.3s;
}
.header .h_top .m-nav > li.entrance > a svg {
  margin-right: 5px;
}
.header .h_top .m-nav > li.entrance > a:hover {
  /* background: #fc782c; */
}
.header .h_top .m-nav .enrollment {
  display: none;
}
.header .h_top .nav_r {
  height: 100%;
}
.header .h_top .nav_r .buts {
  height: 100%;
  display: flex;
  align-items: center;
  /* .entrance{
                    margin-right: 40px;
                    a{
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background: rgba(44, 72, 252, 1);
                        box-shadow: 0px 2px 8px 2px rgba(23, 39, 143, 0.36);
                        padding: 3px 15px;
                        border-radius: 100px;
                        color: #fff;
                        svg{
                            margin-right: 5px;
                        }
                    }
                } */
}
.header .h_top .nav_r .buts .entrance {
  display: none;
}
.header .h_top .nav_r .buts .hotline a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.header .h_top .nav_r .buts .hotline a svg {
  margin-right: 12px;
  margin-top: 0;
  width: 14px;
  height: 14px;
}
.footer {
  background: var(--purple--color);
  width: 100%;
  position: relative;
  z-index: 50;
}
.footer .bg {
  background: url(../img/footer_bg.png) center center no-repeat;
  background-size: 39%;
  padding-top: 60px;
}
.footer img {
  display: block;
}
.footer .wrapper {
  overflow: initial;
}
.footer .btn-top {
  display: none;
}
.footer .footer_t {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 30px;
  border-bottom: 1px solid #7f11b8;
}
.footer .footer_t .logo {
  width: 153px;
}
.footer .footer_t .enrollment {
  display: none;
}
.footer .footer_t .share {
  width: 100px;
}
.footer .footer_t .share .txt {
  width: 100%;
  text-align: center;
  margin-top: 12px;
  color: #fff;
}
.footer .copyright p {
  display: block;
  color: #fff;
  margin-bottom: 10px;
}
.footer .copyright p a:hover {
  color: var(--main-color);
}
.footer .footer_nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-bottom: 50px;
}
.footer .footer_nav .footer_nav_l {
  width: 50%;
}
.footer .footer_nav .footer_nav_l ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer .footer_nav .footer_nav_l ul li > a {
  color: #fff;
}
.footer .footer_nav .footer_nav_l ul .sub-nav {
  margin-top: 8px;
}
.footer .footer_nav .footer_nav_l ul .sub-nav div {
  padding: 2px 0;
}
.footer .footer_nav .footer_nav_l ul .sub-nav a {
  color: rgba(239, 239, 239, 0.7);
  position: relative;
}
.footer .footer_nav .footer_nav_l ul .sub-nav a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0%;
  width: 0;
  height: 1px;
  background-color: var(--main-color);
  opacity: 0;
  transition: all 0.3s;
}
.footer .footer_nav .footer_nav_l ul .sub-nav a:hover {
  color: var(--main-color);
  /* &::before{
                                width: 100%;
                                opacity: 1;
                            } */
}
.footer .footer_b {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #500078;
}
.footer .footer_b .btm_l p,
.footer .footer_b .btm_l a {
  color: #fff;
  text-align: center;
}
.wrapper {
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
}
.w1440 {
  width: 1440px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .w1440 {
    width: 80%;
  }
}
@media screen and (max-width: 1440px) {
  .anchor {
    padding: 25px 0;
  }
}
@media screen and (max-width: 1366px) {
  .header .h_top .m-nav > li > a {
    padding: 0 15px;
  }
  .header .h_top .m-nav {
    margin-right: 20px;
  }
  .footer .footer_nav .footer_nav_l {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 1200px) {
  .w1440 {
    width: 90%;
  }
  .header .h_top .m-nav > li > a {
    padding: 0 10px;
  }
  .header .h_top .m-nav {
    margin-right: 10px;
  }
}
@media screen and (max-width: 998px) {
  .header {
    background: transparent;
    backdrop-filter: none;
  }
  .header .u-menu {
    width: 25px;
    height: 25px;
    position: relative;
    cursor: pointer;
    top: 3px;
    z-index: 6;
    margin-right: 0px;
    margin-left: 17px;
  }
  .header .u-menu .menu-sub {
    position: absolute;
    left: 0;
    margin: 8px 0 0;
    top: 8px;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    border-radius: 2px;
  }
  .header .u-menu .menu-sub:after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    border-radius: 2px;
    display: block;
  }
  .header .u-menu .menu-sub:before {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    border-radius: 2px;
    display: block;
  }
  .header .u-menu .menu-sub:before {
    top: -16px;
  }
  .header .u-menu .menu-sub:after {
    top: -8px;
  }
  .header .u-menu.on .menu-sub {
    height: 0;
    background: #fff;
  }
  .header .u-menu.on .menu-sub:before {
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #fff;
    top: -8px;
  }
  .header .u-menu.on .menu-sub:after {
    -ms-transform: rotate(-225deg);
    -moz-transform: rotate(-225deg);
    -webkit-transform: rotate(-225deg);
    -o-transform: rotate(-225deg);
    transform: rotate(-225deg);
    background: #fff;
    top: -8px;
  }
  .header .u-menu.on .menu-sub:before,
  .header .u-menu.on .menu-sub:after {
    width: 20px;
  }
  .header.on .u-menu .menu-sub {
    background-color: var(--purple--color);
  }
  .header.on .u-menu .menu-sub {
    background: var(--purple--color);
  }
  .header.on .u-menu .menu-sub:before {
    background: var(--purple--color);
  }
  .header.on .u-menu .menu-sub:after {
    background: var(--purple--color);
  }
  .header.on:hover .u-menu .menu-sub {
    background-color: var(--purple--color);
  }
  .header.on:hover .u-menu.on .menu-sub {
    background: var(--purple--color);
  }
  .header.on:hover .u-menu.on .menu-sub:before {
    background: var(--purple--color);
  }
  .header.on:hover .u-menu.on .menu-sub:after {
    background: var(--purple--color);
  }
  .header.act .u-menu .menu-sub {
    background-color: #fff;
  }
  .header.act .u-menu.on .menu-sub {
    background: #fff;
  }
  .header.act .u-menu.on .menu-sub:before {
    background: #fff;
  }
  .header.act .u-menu.on .menu-sub:after {
    background: #fff;
  }
  .header.act:hover .u-menu .menu-sub {
    background-color: #fff;
  }
  .header.act:hover .u-menu.on .menu-sub {
    background: #fff;
  }
  .header.act:hover .u-menu.on .menu-sub:before {
    background: #fff;
  }
  .header.act:hover .u-menu.on .menu-sub:after {
    background: #fff;
  }
  .header .h_top .nav_r {
    display: flex;
    align-items: center;
  }
  .header .h_top .nav_r .buts .hotline {
    display: none;
  }
  .header .h_top .m-nav > li > a:hover {
    font-weight: initial;
  }
  .header .h_top {
    height: 68px;
  }
  .header .h_top .logo {
    width: 65px;
    padding-top: 55px;
  }
  .header .h_top .m-nav > li.entrance > a:hover {
    background: transparent;
  }
  .header.on {
    background: rgba(255, 255, 255, 0.98);
  }
  .header .h_top .nav_r .buts .entrance {
    display: block;
  }
  .header .h_top .nav_r .buts .entrance a {
    padding: 6px 12px 6px 12px;
    border: 1px solid #fff;
    font-size: 8px;
    border-radius: 4px;
    color: #fff;
  }
  .header.on .h_top .nav_r .buts .entrance a {
    border: 1px solid #0b3873;
    color: #0b3873;
  }
  .header.act .h_top .nav_r .buts .entrance a {
    border: 1px solid #fff !important;
    color: #fff !important;
  }
  .header .h_top .m-nav {
    position: fixed;
    top: 68px;
    left: 0;
    height: calc(100vh - 68px);
    width: 100%;
    bottom: 0;
    right: 0;
    background-color: #fff;
    margin-left: 0;
    display: none;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: all;
  }
  .header .h_top .m-nav li {
    width: 90%;
    margin: 0 auto;
    height: auto;
    border-bottom: 1px solid rgba(240, 240, 240, 0.12);
    position: relative;
  }
  .header .h_top .m-nav li:nth-child(1) {
    border-top: 1px solid rgba(240, 240, 240, 0.12);
  }
  .header .h_top .m-nav li > a {
    color: #e6e6e6 !important;
    font-size: 12px;
    width: 80%;
    height: 50px;
    line-height: 50px;
    padding: 0;
  }
  .header .h_top .m-nav li.on > a {
    color: var(--main-color) !important;
  }
  .header .h_top .m-nav li.on .nav-icon .ic::after,
  .header .h_top .m-nav li.on .nav-icon .ic::before {
    background: var(--main-color) !important;
  }
  .header .h_top .m-nav .enrollment {
    display: block;
    margin-top: 25px;
    border-bottom: 0;
  }
  .header .h_top .m-nav .enrollment p {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 24px;
  }
  .header .h_top .m-nav .enrollment span {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 12px;
  }
  .header .h_top .m-nav .enrollment .consult {
    width: 100%;
    border-radius: 100px;
    background: #11488f;
    text-align: center;
    color: #fff;
    display: block;
    height: 32px;
    line-height: 32px;
    margin-top: 10px;
  }
  .header .h_top .m-nav .enrollment .share {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  .header .h_top .m-nav .enrollment .share .qr {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #e6e6e6;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
  }
  .header .h_top .m-nav .enrollment .share .qr:nth-child(1) {
    margin-left: 0;
  }
  .header .h_top .m-nav .enrollment .share .qr svg {
    width: 16px;
    height: 16px;
  }
  .header .h_top .m-nav .enrollment .share .qr .img {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translate(-50%, 20px);
    width: 128px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }
  .header .h_top .m-nav .enrollment .share .qr .img::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid white;
    width: 0;
    height: 0;
  }
  .header .h_top .m-nav .enrollment .share .qr:hover {
    background: #fc782c;
  }
  .header .h_top .m-nav .enrollment .share .qr:hover svg path {
    fill: #fff;
  }
  .header .h_top .m-nav .enrollment .share .qr.on .img {
    opacity: 1;
    transform: translate(-50%, 0px);
    pointer-events: auto;
  }
  .header .h_top .m-nav .enrollment .share .qr:nth-child(2) svg {
    width: 20px;
    height: 20px;
  }
  .header .h_top .m-nav > li.entrance > a {
    background: transparent;
    padding: 0;
    border-radius: 0;
    color: #8f8f8f;
    justify-content: flex-start;
    box-shadow: none !important;
  }
  .header .h_top .m-nav > li.entrance > a svg {
    display: none;
  }
  .header .h_top .m-nav li .nav-icon {
    position: absolute;
    top: 0%;
    right: 6px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .header .h_top .m-nav li .nav-icon .ic {
    width: 9px;
    height: 9px;
    position: relative;
    transition: all 0.3s;
  }
  .header .h_top .m-nav li .nav-icon .ic::after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #d6d6d6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
  }
  .header .h_top .m-nav li .nav-icon .ic::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #d6d6d6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .header .h_top .m-nav > li .sub-nav::before {
    display: none;
  }
  .header .h_top .m-nav li .sub-nav {
    position: static;
    transform: translateX(0);
    width: 100%;
    padding: 0px;
    text-align: left;
    display: none;
    transition: all 0s;
    opacity: 1;
    background: transparent;
    pointer-events: auto;
  }
  .header .h_top .m-nav li .sub-nav li {
    width: 100%;
    border: 0;
  }
  .header .h_top .m-nav li .sub-nav li a {
    padding: 0;
  }
  .header .h_top .m-nav > li.entrance {
    padding-left: 0;
  }
  .header .h_top .m-nav li.on .nav-icon .ic {
    transform: rotateZ(180deg);
  }
  .header .h_top .m-nav li.on .nav-icon .ic::after {
    transform: translate(-50%, -50%) rotateZ(90deg);
  }
  .header .h_top .m-nav li .sub-nav a {
    color: #777;
    padding: 0;
    text-align: left;
    padding: 0 0 0 25px;
  }
  .header.on .h_top .nav_r .language .other,
  .header .h_top .nav_r .language .other {
    top: 37px;
  }
  .page-banner .txt .breadcrumbs {
    display: none;
  }
  .page-banner .txt .title {
    text-align: center;
  }
  .page-banner .txt {
    top: 50%;
  }
  .anchor {
    display: block;
    padding: 38px 0 20px;
    background: #fff;
  }
  .anchor .tab-pc {
    display: none;
  }
  .anchor .tab-h5 {
    display: block;
  }
  .anchor .sw-anchor {
    display: block;
    margin: 8px auto 0;
  }
  .page1 .curriculum:nth-child(1) {
    margin-top: 0;
  }
  .footer .bg {
    padding-top: 40px;
  }
  .header .h_top .nav_r .entrance {
    display: block!important;
    border-radius: 100px;
    border: 1px solid #fff;
    padding: 7px 0;
    text-align: center;
    color: #fff;
    transition: all 0.3s;
    width: 68px;
    font-size: 10px;
    margin-bottom: 0;
  }
  .header.on .h_top .nav_r .entrance {
    border: 1px solid var(--purple--color);
    background: rgba(96, 0, 145, 0.06);
    color: var(--purple--color);
  }
  .header.act .h_top .logo .logo1 {
    display: block;
  }
  .header.act .h_top .logo .logo2 {
    display: none;
  }
  .header.act .h_top .nav_r .entrance {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
  }
  .header .h_top .m-nav > li.header-contact {
    padding: 20px 0 40px;
    border-bottom: 0;
  }
  .header .h_top .m-nav > li.header-contact .tel {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    height: auto;
    width: 100%;
  }
  .header .h_top .m-nav > li.header-contact .tel img {
    width: 22px;
  }
  .header .h_top .m-nav > li.header-contact .txt {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 12px;
  }
  .header .h_top .m-nav > li.header-contact .link1 {
    width: 100%;
    border-radius: 100px;
    border: 1px solid #fff;
    text-align: center;
    display: block;
    padding: 10px 0;
    height: auto;
    line-height: 1.5;
    margin-top: 15px;
  }
  .header .h_top .m-nav > li.header-contact .link1:hover {
    background: var(--main-color);
    border: 1px solid var(--main-color);
  }
  .header .h_top .m-nav > li.header-contact .link2 {
    width: 100%;
    border-radius: 100px;
    background: #7500b0;
    text-align: center;
    display: block;
    padding: 12px 0;
    height: auto;
    line-height: 1.5;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header .h_top .logo {
    width: 45px;
    padding-top: 38px;
  }
  .footer {
    padding: 28px 0 0;
  }
  .footer .btn-top {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d6d6d6;
    font-size: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(240, 240, 240, 0.24);
  }
  .footer .btn-top svg {
    width: 9px;
    height: 9px;
    margin-left: 7px;
  }
  .footer .footer_t .logo {
    width: 100%;
    margin-top: 30px;
  }
  .footer .footer_t .logo img {
    width: 190px;
    margin: 0 auto;
  }
  .footer .footer_t .enrollment {
    display: block;
    margin-top: 25px;
    border-bottom: 0;
    width: 100%;
  }
  .footer .footer_t .enrollment p {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 24px;
  }
  .footer .footer_t .enrollment span {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 12px;
    margin-top: 2px;
  }
  .footer .footer_t .enrollment .consult {
    width: 100%;
    border-radius: 100px;
    background: #11488f;
    text-align: center;
    color: #fff;
    display: block;
    height: 32px;
    line-height: 32px;
    margin-top: 10px;
  }
  .footer .footer_t .share {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  .footer .footer_t {
    border-bottom: 1px solid rgba(240, 240, 240, 0.24);
  }
  .footer .footer_nav .footer_nav_l ul {
    display: none;
  }
  .footer .footer_nav .hotline .txt {
    display: none;
  }
  .footer .footer_nav .footer_nav_l {
    width: 100%;
  }
  .footer .footer_nav .footer_nav_l .links {
    width: 100%;
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
  }
  .footer .footer_nav .footer_nav_l .links .select p {
    font-size: 12px;
  }
  .footer .footer_nav {
    flex-wrap: wrap;
    border: 0;
    padding-bottom: 0;
  }
  .footer .copyright {
    width: 100%;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 12px;
    margin-top: 18px;
  }
  .footer .copyright p,
  .footer .copyright a {
    color: #fff;
  }
  .footer .footer_nav .hotline .qr .item:nth-child(1) {
    margin-left: 0;
  }
  .footer .footer_nav .hotline {
    width: 100%;
  }
  .footer .footer_nav .hotline .qr {
    width: 100%;
    margin-top: 28px;
    justify-content: center;
  }
  .footer .footer_nav .footer_nav_l .links .selection {
    width: 100%;
  }
  .footer .footer_nav .footer_nav_l .links .selection .item {
    width: 100%;
  }
  .side-navigation {
    display: none;
  }
  .play_btn {
    width: 30px;
    height: 30px;
  }
  .play_btn svg {
    width: 10px;
    height: 10px;
  }
  .play_btn::before,
  .play_btn::after,
  .play_btn i::before,
  .play_btn i::after {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 1px solid rgba(247, 249, 252, 0.5);
  }
  .play_btn i {
    border: 1px solid #f7f9fc;
  }
  .pc {
    display: none!important;
  }
  .h5 {
    display: block!important;
  }
  .footer .top {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d6d6d6;
    font-size: 12px;
    font-weight: 300;
  }
  .footer .top svg {
    width: 8px;
    height: 8px;
    margin-left: 8px;
  }
  .footer .w1440 {
    border-bottom: 1px solid rgba(240, 240, 240, 0.2);
    padding-bottom: 22px;
  }
  .footer .bg {
    padding-top: 0;
  }
  .footer .footer_t .logo img {
    width: 141px;
    opacity: 0.5;
  }
  .footer .footer_t {
    border-bottom: 0;
  }
  .footer .footer_nav {
    margin-top: 0;
  }
  .footer .copyright {
    margin-top: 0;
  }
  .footer .link {
    border-radius: 100px;
    background: #7500b0;
    width: 100%;
    padding: 13px 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
    margin-top: 17px;
  }
  .footer .share {
    width: 100%;
    margin-top: 40px;
    padding-bottom: 35px;
  }
  .footer .share img {
    width: 150px;
    margin: 0 auto;
  }
  .footer .share .txt {
    font-size: 14px;
    color: #fff;
    text-align: center;
    font-weight: 300;
    width: 100%;
    margin-top: 10px;
  }
}
/*# sourceMappingURL=./base.css.map */