@charset "UTF-8";

:root {
  --mainColor: #fac901;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
ul,
li {
  list-style: none;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #3e3e3e;
}
::selection {
  background: #1570ce;
  color: #fff;
}
html {
  overflow-y: auto;
  overflow-x: hidden;
}
html,
body {
  font: 14px/1 "微軟正黑體", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  -webkit-overflow-scrolling: touch;
}
/* 去除iphone按钮默认样式代码 */
input[type="button"],
input[type="submit"],
input[type="file"],
button {
  cursor: pointer;
  -webkit-appearance: none;
}

@font-face {
  /* font-family: "wxx_h";font-weight: 600;src: url("/static/font/kB0o3hwDlVkR.woff2") format("woff2"),url("/static/font/kB0o3hwDlVkR.woff") format("woff");font-display: swap; */
  font-family: "wxx_h";
  src: url("https://d1kids.oss-cn-chengdu.aliyuncs.com/uploads/20240503/987becdc521d12bea39613ae9d3a2578.ttf")
    format("truetype");
}

.ov1 {
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.ov2 {
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ov3 {
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ov4 {
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.ov5 {
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.ov6 {
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.ov7 {
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.ov12 {
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
}
.ov18 {
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 18;
  -webkit-box-orient: vertical;
}
.clf::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* 通用滚动条代码 */
::-webkit-scrollbar {
  width: 10px;
  height: 1px;
  display: none;
}
::-webkit-scrollbar-thumb {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--mainColor);
  border-radius: 30px;
  display: none;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.1);
  display: none;
}

/* 通用回到顶部代码 */
.backTop {
  position: fixed;
  right: 2%;
  bottom: 10%;
  width: 50px;
  height: 50px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  line-height: 50px;
  border-radius: 50%;
  z-index: 50;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  -webkit-transition: all 0.5s;
  -webkit-transform: scale(0);
  opacity: 0;
}
.backTop .iconfont {
  font-size: 25px;
}
.backTop.active {
  -webkit-transform: scale(1);
  opacity: 1;
}
.backTop:hover {
  background-color: var(--mainColor);
  color: #fff;
}

/* loading */
.loading_box {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  left: 0;
  top: 0;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading_box > img {
  height: 128px;
}

/*  消息提示组件  */
.mask-black {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  z-index: 500;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.mask-white-dialog {
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  z-index: 1500;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.m-toast {
  min-width: 130px;
  max-width: 80%;
  padding-top: 20px;
  background: rgba(40, 40, 40, 0.8);
  text-align: center;
  border-radius: 3px;
  color: #fff;
  z-index: 1501;
  -webkit-animation: zoomIn 0.06s ease forwards;
  animation: zoomIn 0.06s ease forwards;
}
.m-toast.none-icon {
  padding-top: 10px;
  border-radius: 3px;
}
.m-toast.none-icon .toast-content {
  padding: 0 36px 10px 36px;
}
.toast-content {
  font-size: 15px;
  padding: 0 15px 20px 15px;
  line-height: 22px;
  word-break: break-all;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

.mask-black-dialog {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  z-index: 1500;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.m-confirm {
  width: 85%;
  background-color: #fafafa;
  border-radius: 12px;
  font-size: 15px;
  -webkit-animation: zoomIn 0.15s ease forwards;
  animation: zoomIn 0.15s ease forwards;
  max-width: 400px;
}
.m-alert {
  -webkit-animation: zoomIn 0.15s ease forwards;
  animation: zoomIn 0.15s ease forwards;
}
.confirm-bd {
  text-align: left;
  padding: 0 20px;
  font-size: 16px;
  color: #000;
  line-height: 20px;
  word-break: break-all;
}
.m-alert .confirm-bd {
  text-align: center;
  padding: 20px 20px 0 20px;
}
.confirm-ft {
  position: relative;
  line-height: 40px;
  margin-top: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.m-alert .confirm-ft {
  margin-top: 14px;
}
.confirm-ft > a {
  position: relative;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 2px;
  font-size: 18px;
  font-weight: 600;
}
.confirm-ft > a.confirm-btn.primary {
  color: var(--mainColor);
}
.confirm-ft:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 1px solid #d9d9d9;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

/*  视频播放 */
.lightBox {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  visibility: hidden;
  position: fixed;
}
.lightBox.active {
  opacity: 1;
  visibility: visible;
}
.videoBox {
  width: 70%;
  max-width: 1000px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  background: #fff;
  padding: 50px 0px 35px 0;
  border-radius: 10px;
}
.videoBox video {
  display: block;
  position: relative;
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.videoCloseBtn {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 8px;
  top: 8px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  border-radius: 10px;
  background-color: var(--mainColor);
}
.videoCloseBtn i {
  font-size: 20px;
}

/* 预约弹窗 */
#pul_box {
  display: none;
}
.Pop-ups {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  z-index: 500;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.m_com_box {
  position: relative;
  width: 480px;
  height: 450px;
  padding: 12px 35px;
  background: var(--mainColor);
  border-radius: 5px;
  -webkit-animation: bounceInDown_wxx 0.5s ease forwards;
  animation: bounceInDown_wxx 0.5s ease forwards;
}
@keyframes bounceInDown_wxx {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    -ms-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.y_t {
  width: 100%;
}
.m_com_box .form_box_reserve {
  margin-top: 28px;
}
.m_com_box .item_box_r {
  height: 42px;
  background: #ffffff;
  border-radius: 10px;
  padding: 0 25px;
  margin-bottom: 18px;
  position: relative;
}
.m_com_box .item_box_r input {
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #242424;
  outline: none;
  border: none;
}
.m_com_box .item_box_r input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #929292;
}
.m_com_box .item_box_r .f_right_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}
.m_com_box .item_box_r .f_right_icon .iconfont {
  font-size: 18px;
}
.m_com_box .item_box_r .p_a_click {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}
.m_com_box .form_box_reserve_btn {
  margin-top: 32px;
}
.m_com_box .form_box_reserve_btn > span {
  height: 42px;
  line-height: 41px;
  background: #242424;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  display: block;
  cursor: pointer;
}
.m_com_box .close_btn_y {
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -50px;
  top: -50px;
  cursor: pointer;
}
.m_com_box .close_btn_y i {
  color: white;
}
.ss_mo {
  display: none;
}

.post_after {
  display: none;
}
.after {
  display: block;
  margin: auto;
  margin-top: 20px;
  width: 205px;
  height: 206px;
}
.af_box {
  text-align: center;
  position: relative;
  top: -8px;
}
.af_box .af_p1 {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 20px;
  color: #000000;
  line-height: 20px;
}
.af_box .af_p2 {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  line-height: 13px;
  margin-top: 20px;
}
.af_box .af_p3 {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 20px;
  color: #000000;
  line-height: 20px;
  margin-top: 10px;
}
.btns_ads {
  cursor: pointer;
  width: 220px;
  height: 42px;
  line-height: 42px;
  background: #242424;
  border-radius: 30px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  margin: auto;
  margin-top: 56px;
}

/* header */
.header_h {
  height: 56px;
}
.header_f {
  position: fixed;
  width: 100vw;
  height: 56px;
  left: 0;
  top: 0;
  z-index: 9999;
  background-color: var(--mainColor);
}
.h_w1200 {
  width: 1200px;
  margin: auto;
}
.f_fix {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.left_logo {
  cursor: pointer;
}
.left_logo > img {
  height: 37px;
}
.header_f .nav {
  display: flex;
  align-items: center;
  margin-left: 25px;
}
.header_f .nav_item:nth-child(1) {
  margin-left: 0;
}
.header_f .nav a {
  display: block;
  height: 42px;
  line-height: 42px;
  text-align: center;
  color: #050405;
  font-size: 16px;
  font-weight: 400;
}
.header_f .nav .nav_item.active a {
  background-color: white;
  color: #050405;
  border-radius: 30px;
  font-weight: 600;
  width: 106px;
}
.header_f .nav_item {
  margin-left: 86px;
}
.header_f .nav_item:nth-child(1) {
  margin-left: 0;
}
.win1200 {
  width: 1200px;
  margin: auto;
}

/* footer */
.footer_box {
  background-color: var(--mainColor);
  padding: 50px 0;
}
.footer_box .f_fix {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_box .f_left_logo {
  display: flex;
  align-items: flex-end;
}
.footer_box .logo_b {
  width: 107px;
  display: block;
}
.footer_box .f_tel {
  display: flex;
  align-items: center;
  font-size: 23px;
  color: #73497c;
  font-family: "wxx_h";
}
.footer_box .add_ffff {
  margin-left: 46px;
}
.footer_box .f_tel > img {
  height: 25px;
  margin-right: 5px;
}
.footer_box .f_right_box {
  display: flex;
  align-items: center;
}
.footer_box .r_ls .p_l {
  display: flex;
  align-items: center;
}
.footer_box .r_ls .p_l a > img {
  height: 42px;
  cursor: pointer;
}
.footer_box .r_ls .p_l a {
  margin-left: 23px;
}
.footer_box .r_ls .p_l a:first-child {
  margin-left: 0;
}
.footer_box .r_rs {
  margin-left: 30px;
}
.footer_box .this_qr {
  width: 97px;
  height: 97px;
  display: block;
}
.footer_box .tts {
  margin-left: 11px !important;
}
.footer_box .p_l2 {
  margin-top: 8px;
}
.footer_box .f_gov {
  font-size: 15px;
  margin-top: 10px;
  color: #73497c;
  display: inline-block;
}

/*****************************************        主页        *********************************************/
#wrapper {
  background-color: #fbfbfb;
}

.StartVideoBox {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
.opening {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.videoBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.32);
  z-index: 2;
  display: flex;
  justify-content: center;
}
.comhj {
  position: relative;
}
.videoTitle {
  width: 450px;
  display: table;
  height: auto;
  flex-shrink: 0;
  margin-top: 50%;
}
.bottom_box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6%;
  cursor: pointer;
}
.bottom_tips {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-top: 25px;
  transition: all 0.35s;
}
.bottom_tips:hover {
  color: var(--mainColor);
}
.rippleBox {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  position: relative;
  margin: auto;
}
.rippleBox > div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-scale-multiple 3s 0s linear infinite;
  -moz-animation: ball-scale-multiple 3s 0s linear infinite;
  -o-animation: ball-scale-multiple 3s 0s linear infinite;
  animation: ball-scale-multiple 3s 0s linear infinite;
  background-color: white;
}
.rippleBox > div:nth-child(2) {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.rippleBox > div:nth-child(3) {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
@keyframes ball-scale-multiple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.index_top_video {
  width: 100vw;
  height: 100vh;
  position: relative;
}
.video_show {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 0;
  margin: 0;
}
.mack {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.32);
  z-index: 2;
  display: flex;
  justify-content: center;
}
.byhnd {
  position: relative;
}
.indexVideoT {
  height: 134px;
  display: table;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}
.down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6%;
  cursor: pointer;
}
.down > img {
  width: 45px;
  display: block;
  -webkit-animation: name_move_half 1s ease-in-out infinite alternate;
  animation: name_move_half 1s ease-in-out infinite alternate;
}
@keyframes name_move_half {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -50%, 0);
  }
}

.plate1 {
  position: relative;
}
.plate1 .plate1_bg {
  width: 100%;
  display: block;
}
.plate1 .top_sim {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 22px;
}
.plate1 .top_sim .plate1_winner {
  width: 100%;
  display: block;
}
.plate1 .right_text_t {
  text-align: right;
}
.plate1 .right_text_t .plate1_slogan {
  font-size: 42px;
  color: var(--mainColor);
  margin-top: 18px;
  font-weight: 900;
  font-family: "wxx_h";
  letter-spacing: 2px;
}
.plate1 .right_text_t .plate1_slogan > span {
  color: white;
}
.plate1 .left_text_t {
  position: absolute;
  bottom: 17%;
  left: 50%;
  transform: translateX(-50%);
}
.plate1 .left_text_t .di_title {
  font-size: 41px;
  font-weight: 900;
  color: white;
  font-family: "wxx_h";
  letter-spacing: -0.37px;
}
.plate1 .left_text_t .di_tips {
  font-size: 16px;
  color: white;
  font-weight: 600;
  margin-top: 11px;
  line-height: 1.4;
}

.plate2 {
  position: relative;
  top: -2px;
}
.plate2 .plate2_bg {
  width: 100%;
  display: block;
  min-height: 650px;
}
.plate2 .top_imgs {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.plate2 .top_imgs .s_1 {
  text-align: right;
}
.plate2 .top_imgs .s_2 {
  text-align: right;
  margin-top: 8%;
}
.plate2 .top_imgs .s_1 > img {
  width: 380px;
}
.plate2 .top_imgs .s_2 > img {
  width: 380px;
  height: 380px;
}

.reserve {
  position: relative;
  height: 90vh;
  position: relative;
  min-height: 700px;
  top: -2px;
}
.reserve_bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.reserve_form_box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.add_lins {
  display: inline-block;
}
.re_top > img {
  width: 360px;
  display: block;
}
.reserve .form_box_reserve {
  margin-top: 40px;
}
.reserve .item_box_r {
  width: 360px;
  height: 54px;
  background: #ffffff;
  border-radius: 10px;
  padding: 0 25px;
  margin-bottom: 20px;
  position: relative;
}
.reserve .item_box_r input {
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #242424;
  outline: none;
  border: none;
}
.reserve .item_box_r input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #929292;
}
.reserve .item_box_r .f_right_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}
.reserve .item_box_r .f_right_icon .iconfont {
  font-size: 18px;
}
.reserve .item_box_r .p_a_click {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}
.reserve .form_box_reserve_btn {
  margin-top: 40px;
}
.reserve .form_box_reserve_btn > span {
  height: 60px;
  line-height: 60px;
  background: #242424;
  border-radius: 30px;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  display: block;
  width: 360px;
  cursor: pointer;
}

.index_news {
  background-color: #fbfbfb;
  padding: 32px 0;
}
.index_news .news_title > img {
  width: 100%;
  display: block;
}
.news_data_box {
  margin-top: 70px;
}
.public_data_title {
  display: flex;
  align-items: baseline;
  color: #242424;
}
.public_data_title .p_t_name {
  font-size: 32px;
  font-weight: 600;
  font-family: "wxx_h";
  position: relative;
  padding-left: 25px;
}
.public_data_title .p_t_name::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background: #fec009;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.public_data_title .p_t_name_en {
  font-size: 20px;
  font-weight: 500;
  margin-left: 10px;
}
.new_list_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.new_list_box .lis {
  width: calc(50% - 20px);
  position: relative;
  background: #ffffff;
  box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  margin-bottom: 40px;
}
#new_list_box .lis {
  cursor: pointer;
}
.new_list_box .lis .new_cover {
  width: 100%;
  height: 250px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  cursor: pointer;
}
#new_list_box2 .lis .new_cover {
  width: 100%;
  height: 315px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.new_list_box .lis .new_cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s;
}
.new_list_box .lis .new_cover:hover img {
  transform: scale(1.13);
}
.new_list_box .lis .new_introduce {
  padding: 20px;
}
.new_name,
.new_introduction {
  font-weight: 500;
  font-size: 18px;
  color: #929292;
  line-height: 30px;
  text-align: center;
}
.creative_content_cover {
  height: 327px;
  position: relative;
}
.pay_btns {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  width: 150px;
  height: 54px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 29px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  padding: 5px 6px;
  display: flex;
  align-items: center;
}
.pay_btns i {
  font-size: 45px;
  color: white;
}
.pay_btns span {
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  margin-left: 6px;
  transition: all 0.3s;
}
.pay_btns:hover span {
  color: var(--mainColor);
}

.more_box {
  text-align: center;
  margin-bottom: 60px;
}
.more_box > img {
  width: 60px;
  cursor: pointer;
}

#homeLogo2 {
  height: 45px;
  display: block;
  float: right;
}

/*****************************************        品牌介绍       *********************************************/
.brand_introduction {
  padding-bottom: 70px;
  position: relative;
  width: 100vw;
  background-color: white;
  overflow: hidden;
}
.brand_introduction .pors {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  height: 448px;
  z-index: 2;
}
.brand_introduction .bg_box {
  height: 623px;
  width: 70%;
  background-color: var(--mainColor);
  float: right;
}
.brand_introduction .this_type_titles {
  width: 60%;
  height: 86px;
  background: #242424;
  border-radius: 100px 0px 0px 100px;
  float: right;
  margin-top: 94px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.brand_introduction .this_type_titles .public_data_title {
  color: var(--mainColor);
  margin-left: 20px;
}
.brand_introduction .this_type_titles .public_data_title .p_t_name::after {
  display: none;
}
.WINNER_HIPHOP_B_box {
  position: relative;
  top: -30px;
}
.WINNER_HIPHOP_B {
  height: 100px;
  display: block;
  margin: auto;
  z-index: -1;
}
.brand_introduction_texts {
  padding-left: calc(40% + 55px);
  padding-right: 100px;
  position: relative;
  top: -50px;
}
.brand_introduction_texts .max_t_bs {
  font-weight: 600;
  font-size: 24px;
  color: #242424;
}
.brand_introduction_texts .min_t_bs {
  margin-top: 20px;
  font-weight: 500;
  font-size: 16px;
  color: #242424;
  line-height: 1.5;
}
.test_p1 {
  margin-bottom: 20px;
}
.brand_introduction .in1 {
  position: absolute;
  bottom: 0;
  left: 22%;
  width: 472px;
  height: 448px;
  border-radius: 30px;
  overflow: hidden;
}
.brand_introduction .in1 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand_introduction .in2 {
  position: absolute;
  top: -125px;
  left: 0;
  width: 491px;
  height: 448px;
  overflow: hidden;
}
.brand_introduction .in2 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand_introduction .in3 {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 105px;
}
.brand_introduction .in3 > img {
  width: 100%;
}

.brand_culture {
  position: relative;
  background: white;
  padding-top: 0px;
}
/* .t_bg{height: 100px;background-color: white;} */
.ad_fg {
  position: relative;
}
.brand_culture .culture_bg {
  width: 100%;
  display: block;
}
.brand_culture_video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
  margin-top: 50px;
}
.brand_culture .brand_culture_title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 74px;
  z-index: 2;
}
.brand_culture .brand_culture_title > img {
  width: 318px;
}
.brand_culture .cu_bottom_bg {
  position: relative;
  z-index: 1;
  margin-top: -120px;
}
.brand_culture .video_t {
  position: absolute;
  width: 100%;
  left: 0;
  top: -10px;
  display: block;
}
.brand_culture .video_b {
  width: 100%;
  left: 0;
  display: block;
  height: 360px;
}
.b_list_c {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.b_list_item {
  width: 32%;
  height: 255px;
  background: var(--mainColor);
  border-radius: 10px;
  backdrop-filter: blur(17px);
  padding: 30px 70px 0 40px;
}
.b_list_item .item_r_img {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
}
.b_list_item .title_its {
  line-height: 35px;
  padding: 0 10px;
  background: #242424;
  font-weight: 600;
  font-size: 24px;
  color: var(--mainColor);
  display: inline-block;
}
.b_list_item .add_tips {
  margin-top: 14px;
}
.b_list_item .cu_tips {
  font-weight: 400;
  font-size: 16px;
  color: #242424;
  line-height: 1.5;
  position: relative;
}
.b_list_item .cu_tips2 {
  font-weight: 400;
  font-size: 16px;
  color: #242424;
  line-height: 1.5;
  position: relative;
}
.b_list_item .cu_tips::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #242424;
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: 13px;
}

.brand_scale {
  padding: 45px 0;
  background: #fbfbfb;
}
.brand_scale .brand_scale_title > img {
  width: 100%;
  display: block;
}
.brand_scale .ScaleIntroduction {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
}
.brand_scale .left_map_box {
  width: 70%;
  background-color: white;
  box-shadow: 0px 5px 29px 0px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 50px 95px 40px 95px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand_scale .right_statistics {
  width: 28%;
  background-color: white;
  box-shadow: 0px 5px 29px 0px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  display: flex;
  align-self: stretch;
  align-items: center;
}
.brand_scale .left_map_box img {
  display: block;
  width: 100%;
  margin: auto;
}
.brand_scale .st_box {
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}
.brand_scale .st_box:last-child {
  margin-bottom: 0;
}
.brand_scale .m_coms {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 56px;
  background: #242424;
  border-radius: 6px;
  padding: 8px;
  margin: auto;
}
.brand_scale .m_coms .m_borders img {
  width: 100%;
}
.brand_scale .st_title {
  font-weight: 600;
  font-size: 18px;
  color: #242424;
  text-align: center;
  margin-top: 16px;
}
.brand_scale .stat_com {
  width: 100%;
}
.brand_scale .history {
  margin-top: 0px;
  overflow: hidden auto;
  padding: 30px 0;
}
.brand_scale .history .history_item {
  cursor: all-scroll;
  width: 232px !important;
  height: 198px;
  background: #ffffff;
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 19px;
  flex-shrink: 0;
  transition: all 0.35s;
}
.brand_scale .history .history_item .date_box {
  font-size: 35px;
  color: #8854ff;
  font-family: fantasy;
  font-weight: 500;
}
.brand_scale .history .history_item .date_box > img {
  height: 30px;
  display: block;
}
.brand_scale .history .history_item .data_mk {
  margin-top: 20px;
}
.brand_scale .history .history_item .data_mk p {
  font-weight: 500;
  font-size: 16px;
  color: #242424;
  margin-bottom: 8px;
}
.brand_scale .history .history_item .data_mk p span {
  color: #8854ff;
}
.brand_scale .history .h_coms {
  display: flex;
  align-items: center;
}
.mn-swiper .swiper-wrapper {
  padding: 30px 0 !important;
}
.mn-swiper .swiper-wrapper {
  /* 这里是改变其动画效果为匀速形式，不加此样式的话会造成滚动卡顿，看起来效果不平滑 */
  /* 样式做了各种浏览器的兼容 */
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
  -moz-transition-timing-function: linear !important;
  -ms-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.brand_scale .history .history_item:hover {
  transform: scale(1.1);
}

.brand_honor {
  background-color: #fff;
  padding: 0;
  overflow: hidden;
}
.brand_honor .br_ho_com {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.addinfg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.brand_honor .left_ho {
  width: 48%;
  background-color: var(--mainColor);
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: normal;
}
.brand_honor .brand_honor_t {
  height: 100px;
  display: block;
}
.brand_honor .lin_ms {
  margin-top: 109px;
}
.brand_honor .Honor_introduction {
  margin-top: 35px;
}
.brand_honor .Honor_introduction li {
  font-weight: 600;
  font-size: 16px;
  color: #242424;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
}
.brand_honor .Honor_introduction li::after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: #242424;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
.brand_honor .Honor_introduction2 {
  width: 404px;
  min-height: 205px;
  background: rgba(255, 216, 101, 0.66);
  box-shadow: 0px 2px 24px 0px #feaf09;
  border-radius: 8px;
  margin-top: 48px;
  padding: 23px 27px;
  font-weight: 600;
  font-size: 14px;
  color: #242424;
  line-height: 40px;
}
.brand_honor .right_ho {
  width: 52%;
  display: flex;
  align-self: stretch;
  align-items: center;
  position: relative;
  z-index: 1;
}
.brand_honor .brand_honor_r {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}
.brand_honor .bottom_hb {
  width: 100%;
  height: 139px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #8854ff;
}
.brand_honor_img {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  left: -54px;
  max-width: 750px;
}

.brand_cooperate {
  position: relative;
}
.brand_cooperate .cooperate_bg {
  width: 100%;
  display: block;
}
.brand_cooperate .cooperate_com_box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand_cooperate .cooperate_com_box > img {
  width: 100%;
  max-width: 1400px;
  display: block;
}
.add_b_c_t {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 65px;
  display: flex;
  justify-content: flex-end;
}
.add_b_c_t > img {
  height: 134px;
  display: block;
}

/*****************************************        课程产品       *********************************************/
.Teaching_philosophy {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.Teaching_philosophy_bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.regular_curriculum_system_bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.regular_curriculum_system_button {
  cursor: pointer;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 26px 0 8px;
  align-items: center;
  color: #fff;
  font-size: 25px;
  line-height: 42px;
  width: 210px;
  height: 76px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 41px;
}
.regular_curriculum_system_button_icon {
  width: 62px;
  height: 62px;
}
.Teaching_philosophy_datas {
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.Teaching_philosophy .item_lis {
  width: 25%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}
.Teaching_philosophy .item_lis:hover {
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);
}
.Teaching_philosophy .show_datas_t {
  width: 100%;
  height: 45%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(46%);
  transition: all 0.35s;
}
.Teaching_philosophy .type_titles_li {
  width: 160px;
  height: 54px;
  background: #242424;
  display: flex;
  align-items: center;
  padding-left: 6px;
  color: var(--mainColor);
}
.Teaching_philosophy .type_titles_li .iconfont {
  font-size: 16px;
}
.Teaching_philosophy .type_titles_li span {
  font-weight: 600;
  font-size: 24px;
}
.Teaching_philosophy .list_mjd {
  margin-top: 18px;
  padding-left: 25px;
  padding-right: 12px;
  opacity: 0;
}
.Teaching_philosophy .list_mjd .pls {
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  padding-left: 12px;
  position: relative;
}
.Teaching_philosophy .list_mjd .pls::after {
  content: "";
  display: block;
  height: 6px;
  width: 6px;
  border-radius: 100%;
  background-color: #242424;
  position: absolute;
  left: 0;
  top: 9px;
  flex-shrink: 0;
}
.Teaching_philosophy .item_lis:hover .show_datas_t {
  transform: translateY(0);
}
.Teaching_philosophy .item_lis:hover .list_mjd {
  opacity: 1;
}
.Teaching_philosophy_title {
  position: absolute;
  left: 0;
  width: 340px;
  top: 20%;
  z-index: 3;
}

.Teaching_system {
  position: relative;
  height: 100vh;
}
.Teaching_system .Teaching_system_bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.Teaching_system .Teaching_system_datas {
  position: absolute;
  left: 50%;
  top: 64%;
  transform: translate(-50%, -50%);
}
.Teaching_system_datas_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Teaching_system .left_imgs_box {
  width: max-content;
  position: relative;
}
.Teaching_system .right_texts_box {
  width: max-content;
  display: flex;
  align-self: stretch;
  align-items: flex-end;
  margin-left: 27px;
}
.Teaching_system .show_imgs {
  width: 100%;
  display: flex;
  height: 410px;
}

.left_tips_ls {
  min-width: 36px;
  position: relative;
  margin-right: 4px;
}
.L1_box {
  min-width: 158px;
  position: relative;
}
.L2_box {
  min-width: 198px;
  margin-right: 4px;
  position: relative;
}

.L3_box {
  min-width: 198px;
  position: relative;
}
.selection {
  min-width: 37px;
  position: relative;
}
.L4_box {
  min-width: 236px;
  position: relative;
}
.left_tips_03 {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.L1_03 {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.L2_03 {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.L3_03 {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.L4_03 {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.selection {
  padding: 0 6px;
}
.selection img {
  width: 25px;
  position: absolute;
  left: 6px;
  bottom: 97px;
}
.L1_box {
  margin-right: 4px;
}
/* .left_tips_ls {
  margin-right: 5px;
} */
.com_lihjd {
  width: max-content;
  margin-bottom: 14px;
}
.lisjk_box {
  width: max-content;
  height: 38px;
  line-height: 38px;
  background: #000000;
  border-radius: 4px;
  color: var(--mainColor);
  padding: 0 10px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: all 0.35s;
}
.lisjk_box:hover {
  background-color: var(--mainColor);
  color: #000000;
}
.lisjk_box.active {
  background-color: var(--mainColor);
  color: #000000;
}
.lisjk_box i {
  display: inline-block;
  transition: 0.35s;
}
.lisjk_box.active i {
  transform: rotateY(180deg);
}
.classMore {
  z-index: 1;
  cursor: pointer;
  transition: all 0.2s;
  width: 194px;
  height: 38px;
  border-radius: 19px;
  border: 1px solid #979797;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  position: absolute;
  left: 0;
  bottom: 35px;
  opacity: 0;
}
.classMore i {
  margin-right: 6px;
}
.classMore img {
  width: 5px;
  height: 5px;
  opacity: 0;
}
.classMore:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.left_imgs_box .h_bb {
  max-width: 870px;
  display: block;
  margin-top: 10px;
}
.top_title_ts {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 84px;
}
.Teaching_system_title {
  width: 267px;
  display: block;
}
.Teaching_system_tips {
  width: 267px;
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  color: #242424;
  line-height: 1.5;
}

.planning {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.planning_swiper_bg {
  width: 100%;
  height: 100%;
}
.planning_swiper_bg .swiper-slide {
  overflow: hidden;
}
.planning_swiper_bg .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.planning_swiper_bg .slide-inner > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.posa_show_datas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.planning .this_title_box {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.planning .this_title_box .planning_title {
  height: 100px;
}
.planning .ch_box {
  display: inline-block;
  margin-top: 25px;
  background: rgba(251, 251, 251, 0.9);
  border-radius: 30px;
  backdrop-filter: blur(8px);
  padding: 6px;
}
.planning .city_box {
  display: inline-block;
  width: 330px;
  height: 56px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 29px;
  backdrop-filter: blur(0px);
  padding: 3px;
}
.planning .switch_types {
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
}
.planning .switch_types .item_titles {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  flex-shrink: 0;
  height: 50px;
  font-weight: 600;
  font-size: 18px;
  color: #242424;
  z-index: 1;
  cursor: pointer;
}
.planning .switch_types .city_title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  flex-shrink: 0;
  height: 50px;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  z-index: 1;
  cursor: pointer;
}
.planning .switch_types .ch_items {
  width: 170px;
  height: 50px;
  background-color: var(--mainColor);
  left: 0;
  top: 0;
  border-radius: 30px;
  z-index: -1;
  position: absolute;
}
.planning .switch_types .city_items {
  width: 108px;
  height: 50px;
  background: #fec009;
  border-radius: 29px;
  left: 0;
  top: 0;
  z-index: -1;
  position: absolute;
}

.planning .item_lkd_moc {
  margin-top: 46px;
  position: relative;
}
.planning .item_lkd_moc .bom_kl1 {
  display: flex;
  align-items: center;
}
.planning .item_lkd_moc .bom_kl1 .box_mok {
  width: 453px;
  height: 370px;
  background: rgba(251, 251, 251, 0.8);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  margin-left: 20px;
}
.planning .item_lkd_moc .bom_kl1 .box_mok:first-child {
  margin-left: 0;
}
.planning .item_lkd_moc .bom_kl1 .box_mok .b_titles {
  width: 100%;
  height: 60px;
  background: #fec009;
  border-radius: 10px 10px 0px 0px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  font-weight: 600;
  font-size: 18px;
  color: #242424;
}
.box_mok:nth-child(2n-1) {
  width: 270px;
  flex-shrink: 0;
}
.box_mok:nth-child(2n) {
  width: 210px;
  flex-shrink: 0;
}
.b_box_padding {
  padding: 20px;
}
.b_box_padding .type_mkls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.b_box_padding .type_mkls .titmes_nmk {
  width: 184px;
  flex-shrink: 0;
  margin-right: 8px;
}
.b_box_padding .type_mkls p:nth-child(1) {
  background: #fec009;
  line-height: 24px;
  font-weight: 400;
  font-size: 12px;
  color: #242424;
  text-align: center;
}
.b_box_padding .type_mkls p:nth-child(2) {
  line-height: 30px;
  font-weight: 600;
  font-size: 14px;
  color: #fec009;
  text-align: center;
  background: #242424;
}
.bb_datas_add {
  padding-top: 20px;
  border-top: 1px dashed #979797;
  margin-top: 20px;
}
.bb_datas_add_t {
  display: flex;
  align-items: center;
  height: 24px;
  background: rgba(254, 192, 9, 0.2);
}
.bb_datas_add_title {
  width: 66px;
  height: 24px;
  background: #fec009;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 12px;
  color: #242424;
  line-height: 24px;
  text-align: center;
}
.bb_datas_add_info {
  margin-left: 6px;
  font-weight: 400;
  font-size: 12px;
  color: #242424;
  line-height: 18px;
}
.bb_datas_add_tips_wrap {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
}
.bb_datas_add_tips_box {
  width: 50%;
}
.bb_datas_add_tips {
  font-weight: 400;
  font-size: 12px;
  color: #242424;
  margin-top: 10px;
  line-height: 1.3;
}
.bb_datas_add_tips2 {
  font-weight: 600;
  font-size: 14px;
  color: #242424;
  margin-top: 7px;
}
.bb_datas_add_lis {
  margin-top: 12px;
}
.bb_datas_add_lis p {
  position: relative;
  padding-left: 10px;
  font-weight: 600;
  font-size: 13px;
  color: #242424;
  margin-bottom: 6px;
}
.bb_datas_add_lis p::after {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000;
}
.planning .item_lkd_moc .bom_kl2 {
}
.planning .item_lkd_moc .bom_kl2 .lin_box {
  width: 609px;
  background: #fbfbfb;
  border-radius: 10px;
  margin-bottom: 20px;
}
.planning .item_lkd_moc .bom_kl2 .b_titles {
  width: 100%;
  height: 60px;
  background: #fec009;
  border-radius: 10px 10px 0px 0px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  font-weight: 600;
  font-size: 18px;
  color: #242424;
}
.fix_items {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  justify-content: space-between;
}
.fix_items > span {
  font-weight: 600;
  font-size: 14px;
  color: #242424;
  border-radius: 30px;
  border: 1px solid rgba(36, 36, 36, 0.5);
  min-width: 178px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 14px;
}
.bom_kl2 .lin_box:first-child .fix_items:first-child span:last-child {
  padding: 0 31px;
}
.bom_kl2 .b_box_padding {
  padding-bottom: 5px;
}
.fix_tips_add {
  font-weight: 400;
  font-size: 14px;
  color: #666566;
  margin-bottom: 15px;
}
.fix_tips_add2 {
  font-weight: 600;
  font-size: 14px;
  color: #242424;
  line-height: 1.5;
}
.add_kl3 .b_box_padding {
  padding-bottom: 20px;
}
.show_item_box0 {
  position: absolute;
  left: 0;
  top: 0;
}
.show_item_box1 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.show_item_box2 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.Teaching_activities {
  background: #fbfbfb;
  padding: 84px 0;
}
.Teaching_activities_title {
  width: 100%;
}
.Teaching_activities .type_tcs {
  margin-top: 74px;
}
.Teaching_activities .T_a_list {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.Teaching_activities .T_a_list .item_nmbox {
  width: calc(33.3% - 18px);
  z-index: 1;
  margin-bottom: 30px;
  cursor: pointer;
  transition: transform 0.35s !important;
}
.Teaching_activities .T_a_list .item_nmbox:hover {
  transform: translateY(-10px) !important;
}
.Teaching_activities .T_a_list .item_nmbox:hover .hide_datas {
  opacity: 1;
}
/* .Teaching_activities .T_a_list .item_nmbox:hover .nm_cover>img{transform: scale(1.8);} */
.Teaching_activities .T_a_list .item_nmbox:hover .mark_box i {
  transform: rotate(-90deg);
}
.Teaching_activities .T_a_list .item_nmbox .nm_cover {
  width: 100%;
  height: 258px;
  border-radius: 60px 12px 12px 12px;
  overflow: hidden;
  position: relative;
  transform: translate(0, 0);
  transform: scale(0);
  transform: rotate(0deg);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 1;
}
.hide_datas {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 60px 12px 12px 12px;
  top: 0;
  left: 0;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.43);
  padding: 21px;
  display: flex;
  align-items: center;
  transition: all 0.35s;
  opacity: 0;
  overflow: hidden;
}
.hide_datas .w_100 {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 30px;
}
.Teaching_activities .T_a_list .item_nmbox .nm_cover > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 2s;
}
.Teaching_activities .T_a_list .item_nmbox .bbotom_bnmd {
  padding-left: 20px;
  z-index: -1;
  position: relative;
  top: -14px;
}
.bdnjPnm {
  background-color: var(--mainColor);
  width: 100%;
  min-height: 115px;
  border-radius: 0 0 12px 12px;
  position: relative;
}
.bottom_t_box {
  width: 100%;
  position: absolute;
  padding: 0 20px;
  left: 0;
  bottom: 20px;
  display: flex;
  align-content: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 16px;
  color: #242424;
}
.mark_box {
  min-width: 90px;
  position: absolute;
  left: 0;
  top: 25px;
  height: 38px;
  display: flex;
  background-color: #8752ff;
  border-radius: 0 30px 30px 0;
  padding: 0 20px 0 18px;
  z-index: 2;
  align-items: center;
  color: white;
  font-size: 16px;
  font-weight: 600;
}
.mark_box i {
  font-size: 12px;
  transition: all 0.5s;
  width: 14px;
  height: 14px;
}
.mark_box span {
  margin-left: 5px;
}
.mark_box::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 8px 0;
  border-color: transparent #4c16c7 transparent transparent;
  position: absolute;
  left: 0;
  bottom: -7px;
}
.add_mt {
  margin-top: 34px !important;
}

.ActivityList {
  margin-top: 50px;
}
.ActivityList .al_item {
  position: relative;
  z-index: 1;
  overflow: auto;
}
.ActivityList .al_item .al_left_img {
  width: 44.5%;
  float: left;
}
.ActivityList .al_item .al_left_img > img {
  width: 100%;
  display: block;
  position: relative;
}
.ac_right_text {
  float: right;
  width: 56%;
}
.ac_right_text .text_div {
  width: 36%;
  margin: auto;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  right: 3%;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 15px;
  color: #242424;
  line-height: 30px;
  text-align: left;
  font-style: normal;
}
.ActivityList .al_item .al_item_title {
  position: absolute;
  top: 19px;
  right: 0;
  height: 69px;
  z-index: -1;
}

.ActivityList .al_item:nth-child(2n) .al_left_img {
  float: right;
}
.ActivityList .al_item:nth-child(2n) .ac_right_text {
  float: left;
}
.ActivityList .al_item:nth-child(2n) .text_div {
  left: 3%;
  right: auto;
}
.ActivityList .al_item:nth-child(2n) .al_item_title {
  top: auto;
  left: 0;
  right: auto;
  bottom: 19px;
}
.ActivityList .al_item:last-child .al_item_title {
  top: auto;
  right: 0;
  bottom: 19px;
}

.education_model {
  position: relative;
}
.education_model_bg {
  width: 100%;
  display: block;
}
.education_model .ed_mo_coms {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
}
.education_model .education_model_title {
  height: 187px;
  display: block;
}
.education_model .ed_rights {
  width: 463px;
}
.education_model .education_model_right {
  width: 100%;
  display: block;
}
.education_model .ed_rights .p {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  margin-top: 10px;
}

.product_box {
  background-color: white;
  padding: 55px 0;
}
.product_box .pr_title > img {
  width: 100%;
  display: block;
}
.right_t_r {
  text-align: right;
  margin-top: 40px;
}
.right_t_r .mkd_l p:nth-child(1) {
  font-family: "wxx_h";
  font-size: 32px;
  color: #242424;
  letter-spacing: 3px;
}
.right_t_r .mkd_l p:nth-child(2) {
  font-weight: 400;
  font-size: 20px;
  color: #242424;
  margin-top: 3px;
}
.product_box .jis_df {
  margin-top: 35px;
  position: relative;
}
.product_box .bg_j {
  float: right;
  width: 79%;
  background: #ffc418;
  padding: 50px 120px 50px 0;
}
.product_box .advantage {
  width: 132px;
  line-height: 43px;
  background: #242424;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  color: #fec009;
}
.product_box .bg_j_com {
  padding-left: 42%;
  position: relative;
  z-index: 1;
}
.product_box .bg_j_com .ai {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  font-family: fantasy;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 3px;
}
.product_box .bg_j_com .ai > img {
  height: 116px;
  display: block;
}
.advantage_lis {
  margin-top: 22px;
}
.advantage_lis p {
  font-weight: 400;
  font-size: 16px;
  color: #242424;
  margin-bottom: 10px;
  line-height: 1;
}
.advantage_lis p span {
  background-color: #242424;
  font-family: "wxx_h";
  color: var(--mainColor);
  display: inline-block;
  padding: 2px 10px;
  font-size: 13px;
  position: relative;
  top: -2px;
  margin-right: 3px;
}

.soll_box {
  width: 100%;
  height: 343px;
  background: #ffffff;
  border-radius: 16px;
  backdrop-filter: blur(17px);
  padding: 20px 5px 20px 20px;
  margin-top: 22px;
}
.scoll_li {
  margin-bottom: 40px;
}
.scoll_li .sl_title {
  font-weight: 600;
  font-size: 18px;
  color: #242424;
}
.sl_tips {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  color: #242424;
  line-height: 1.5;
}
.soll_com {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}
.soll_com::-webkit-scrollbar {
  width: 4px !important;
  height: 4px !important;
  display: block !important;
}
.soll_com::-webkit-scrollbar-thumb {
  background: #eeeeee !important;
  border-radius: 30px !important;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
}
.soll_com::-webkit-scrollbar-track {
  background: #f7f7f7 !important;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
}
.lkd_box1 {
  width: 546px;
  height: 445px;
  position: absolute;
  left: 0;
  bottom: 48px;
}
.lkd_box1 .bb {
  width: 100%;
  height: 100%;
  background: #8854ff;
  border-radius: 0px 60px 60px 0px;
}
.product_left {
  position: absolute;
  left: 160px;
  bottom: 0;
  width: 500px;
}
.product_left > img {
  width: 100%;
}

.product_app {
  padding: 25px 0;
  margin-bottom: 149px;
}
.app_title p:nth-child(1) {
  font-size: 32px;
  color: #242424;
  font-family: "wxx_h";
  letter-spacing: 3px;
}
.app_title p:nth-child(2) {
  font-weight: 400;
  font-size: 20px;
  color: #242424;
  margin-top: 10px;
  font-family: PingFangSC, PingFang SC;
}

.posf_box {
  width: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  margin-top: 50px;
}
.ll_box_nm {
  width: calc(100% - 400px);
  height: 100%;
  position: relative;
}
.ll_box_nm::before {
  content: "";
  width: 60%;
  left: 0;
  z-index: -1;
  background-color: var(--mainColor);
  top: 0;
  position: absolute;
  display: block;
  height: 100%;
}
.ll_box_nm > img {
  height: 480px;
  float: right;
  z-index: 2;
}
.ll_box_nm2 {
  position: absolute;
  top: -45px;
  right: 0;
  width: 588px;
}
.ll_box_nm2 > img {
  width: 100%;
}
.vndf {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.left_mls {
  width: 356px;
  flex-shrink: 0;
}
.title_mls {
  line-height: 43px;
  background: #242424;
  padding: 0 16px 0 12px;
  color: var(--mainColor);
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 20px;
  color: #fec009;
  display: inline-block;
}
.title_mls span:last-child {
  margin-left: 10px;
}
.mls_tips {
  margin-top: 30px;
  font-weight: 400;
  font-size: 16px;
  color: #242424;
  line-height: 1.5;
}
.mls_btns {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ml_b_item {
  display: flex;
  width: calc(50% - 8px);
  flex-shrink: 0;
  border-radius: 30px;
  border: 1px solid #242424;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  cursor: pointer;
  transition: all 0.3s;
}
.ml_b_item:hover {
  background-color: #242424;
  color: var(--mainColor);
}
.ml_b_item.active {
  background-color: #242424;
  color: var(--mainColor);
}
.right_video_box {
  width: 724px;
  height: 346px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 27px;
  position: relative;
  overflow: hidden;
}
.show_box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.show_box > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.show_video_box {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.show_0 .msk_box {
  background: rgba(0, 0, 0, 0.5);
}
.msk_box {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  top: 0;
  left: 0;
}
.msk_datas {
  width: 70%;
  color: white;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.35s;
}
.msk_datas .t_p {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 18px;
}
.msk_datas .tips_p {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
  margin-top: 18px;
  text-align: left;
}
.active.show_box {
  opacity: 1;
}
.active.show_box .msk_datas {
  transform: translateY(0);
  opacity: 1;
}

/*****************************************        赛事活动      *********************************************/
#wrapper_event {
  width: 100vw;
  height: 100vh;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.mySwiperEvent {
  width: 100%;
  height: 100%;
}
.swiper_bg_img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  object-fit: cover;
}
.sw_lin_bn {
  position: absolute;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.s1_t {
  height: 197px;
  display: block;
}
.s1_boms {
  margin-top: 17%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s1_l_t {
  width: 451px;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  line-height: 26px;
  text-align: left;
  font-style: normal;
}

.mySwiperEvent2 {
  width: 100vw;
  height: 100vh;
}
.mySwiperEvent .swiper-pagination {
  right: 10%;
}
.mySwiperEvent .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 1);
  margin: 18px 0;
  width: 10px;
  height: 10px;
}
.mySwiperEvent .swiper-pagination-bullet-active {
  width: 10px !important;
  height: 30px !important;
  background: #ffffff;
  border-radius: 7px;
}

.s2_t {
  height: 120px;
}
.s2_boms {
  margin-top: 23px;
  height: 170px;
}
.bior_lijmf {
  position: relative;
  margin-top: 60px;
}
.show_img_btn {
  cursor: pointer;
  width: 150px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border-radius: 19px;
  color: var(--mainColor);
}
.show_img_btn span {
  margin-left: 8px;
  position: relative;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 1px solid var(--mainColor);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.show_img_btn span i {
  font-size: 0.5em;
}
.show_img_btn.active {
  background-color: var(--mainColor);
  color: #000000;
}
.show_img_btn.active span {
  border-color: #000000;
}
.show_img_list {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  flex-direction: row;
  margin-top: 30px;
  position: absolute;
  opacity: 0;
  top: 0px;
  transform: translateY(100%);
}
.img_items {
  width: 214px;
  height: 128px;
  border-radius: 5px;
  margin-right: 20px;
  overflow: hidden;
  cursor: pointer;
}
.img_items img {
  width: 100%;
  height: 100%;
  display: block;
}
.mySwiperEvent > .swiper-slide:nth-child(2) .sw_lin_bn {
  top: 50% !important;
}
.mySwiperEvent2 .after {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background: #000000;
  opacity: 0.32;
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
}
.add_s_f {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.m_lin_box {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
.f_img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.f_img2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 120px;
}
.sw_c_btns {
  width: 50px;
  position: absolute;
  right: calc(10% - 25px);
  bottom: 10%;
  z-index: 10;
}
.wxx_next {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s;
}
.wxx_prev {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  margin-top: 23px;
  transition: all 0.3s;
}
.wxx_prev:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.wxx_next:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

/*****************************************        师资阵容      *********************************************/
#wrapper_teacher {
  background-color: #f4f6f5;
}
.teacher_list {
  position: relative;
  background-image: url("https://d1kids.oss-cn-chengdu.aliyuncs.com/uploads/20240503/58751a7f81cfa4586f2c414498f0f83d.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% auto;
  background-color: #f4f6f5;
  padding-bottom: 70px;
}
.teacher_list .teacher_list_bg {
  width: 100%;
  display: block;
}
.teacher_list .t_comsf {
  overflow: hidden;
  padding-top: 60px;
}
/* .teacher_list .t_comsf{position: absolute;left: 50%;transform: translateX(-50%);top: 60px;overflow: hidden;} */
.teacher_list .top_mm_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.teacher_list .teacher_list_title {
  height: 130px;
  display: block;
}
.teacher_list .t_right_box {
  width: 470px;
  flex-shrink: 0;
  font-weight: 400;
  font-size: 16px;
  color: #242424;
  line-height: 24px;
  font-family: PingFangSC, PingFang SC;
}
.swiper_teacher_datas {
  margin-top: 40px;
}
.tt_items {
  width: 342px;
  height: 476px;
  position: relative;
  padding: 44px 0 0 12px;
  cursor: pointer;
  overflow: hidden;
}
.tbv_bn {
  width: 100%;
  height: 100%;
  background-color: var(--mainColor);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.head_t {
  width: 308px;
  height: 378px;
}
.head_t > img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  position: relative;
  top: -44px;
  left: -12px;
}
.user_datas {
  width: 300px;
  margin-left: 20px;
  position: relative;
  top: -20px;
  z-index: 1;
}
.user_names span.a {
  font-weight: 600;
  font-size: 30px;
  color: #000000;
  line-height: 1;
}
.user_names span.b {
  height: 30px;
  line-height: 30px;
  padding: 0 8px;
  text-align: center;
  background: #000000;
  border-radius: 35px 30px 30px 0px;
  font-weight: 600;
  font-size: 12px;
  color: #fec009;
  display: inline-block;
  min-width: 80px;
  position: relative;
  top: -8px;
  margin-left: 10px;
}
.t_times {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  margin-top: 6px;
}
.t_times span:last-child {
  margin-left: 20px;
}
.op_types {
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: -1;
  font-size: 45px;
  color: #fda701;
  font-family: fantasy;
  opacity: 0.8;
  text-transform: uppercase;
}
.op_types > img {
  max-width: 100%;
  height: 35px;
  display: block;
}
.l_mkes {
  width: 330px;
  flex-shrink: 0;
}
.w_rikld {
  display: flex;
  align-self: stretch;
  align-items: flex-end;
  padding: 20px 20px 20px 0;
  width: 100%;
}
.w_lins {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 15px 20px;
}
.w_lins::-webkit-scrollbar {
  width: 6px !important;
  height: 6px !important;
  display: block !important;
}
.w_lins::-webkit-scrollbar-thumb {
  background: #fda701 !important;
  border-radius: 30px !important;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
  display: block !important;
}
.w_lins::-webkit-scrollbar-track {
  background: #ffcd3a !important;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
  display: block !important;
}
.h_1 > span {
  width: 96px;
  height: 36px;
  line-height: 34px;
  display: flex;
  justify-content: center;
  background: #000000;
  border-radius: 18px;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  font-family: PingFangSC, PingFang SC;
}
.h_2 {
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #242424;
  line-height: 1.5;
}
.lis_lll {
  margin-bottom: 25px;
}
.chswipes {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
.chswipes > div {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: #000000;
  cursor: pointer;
  transition: all 0.3s;
}
.chswipes > div i {
  font-weight: 600;
}
.chswipes > div:nth-child(1) {
  margin-right: 15px;
}
.chswipes > div:nth-child(2) {
  margin-left: 15px;
}
.chswipes > div:hover {
  background-color: var(--mainColor);
  color: #000000;
}

.teacher_standard {
  margin-top: 0;
  position: relative;
}
.teacher_standard .standard_bg {
  width: 100%;
  display: block;
}
.standard_title {
  position: absolute;
  top: 30px;
  right: 120px;
  height: 160px;
  display: block;
}
.standard_b {
  right: 140px;
  position: absolute;
  bottom: 110px;
  display: block;
  width: 510px;
}

.li_adds {
  position: relative;
  height: 630px;
}
.l_nis {
  float: left;
  width: 44%;
  display: flex;
  align-items: center;
  background-color: var(--mainColor);
  height: 100%;
}
.loui {
  width: 100%;
  text-align: center;
}
.tt_img {
  height: 94px;
  display: block;
  margin: auto;
}
.r_nims {
  width: 56%;
  float: right;
  height: 100%;
}
.r_nims > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.tt_tip {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 16px;
  color: #242424;
  line-height: 24px;
  text-align: center;
  margin-top: 12px;
}

.teacher_chlist .li_adds:nth-child(2n) .l_nis {
  float: right;
}
.teacher_chlist .li_adds:nth-child(2n) .r_nims {
  float: left;
}
.teacher_chlist .add_lis {
  position: relative;
}
.teacher_chlist .add_lis .mw {
  width: 100%;
  display: block;
}
.c4_t {
  position: absolute;
  top: 65px;
  right: 120px;
  height: 120px;
  display: block;
}
.c4_tt {
  position: absolute;
  bottom: 74px;
  right: 120px;
  display: block;
  width: 491px;
}

.Team_training {
  position: relative;
  width: 100%;
  height: 100vh;
}
.Team_training .video_show_box {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.pa_datas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.32);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vt1 {
  height: 130px;
  display: block;
  margin: auto;
}
.w_t_100 {
  width: 100%;
  text-align: center;
}
.vt_text {
  margin-top: 33px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
}
.vt_text p {
  margin-bottom: 20px;
}

.pay_btns2 {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  width: 150px;
  height: 54px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 29px;
  padding: 5px 6px;
  display: flex;
  align-items: center;
  margin: auto;
  margin-top: 50px;
}
.pay_btns2 i {
  font-size: 45px;
  color: white;
}
.pay_btns2 span {
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  margin-left: 6px;
  transition: all 0.3s;
}
.pay_btns2:hover span {
  color: var(--mainColor);
}

.comminicate {
  padding: 0px 0 30px 0;
}
.comminicate .out {
  width: 100%;
  display: block;
}
.comminicate .new_list_box .lis .new_cover {
  border-radius: 12px;
  height: 380px;
}
.news_data_box_adds {
  margin-top: 14px;
}

/*****************************************        线下门店      *********************************************/
.environment {
  padding: 45px 0 20px 0;
}
.fix_ens {
  display: flex;
  align-items: center;
}
.fix_ens .l_kpl {
  width: 100%;
}
.fix_ens .r_kpl {
  width: 800px;
  flex-shrink: 0;
}
.fix_ens .r_kpl .img1s {
  width: 100%;
}
.swiper_bops {
  width: 100%;
  height: 450px;
  background-color: aliceblue;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  top: -42px;
}
.img0s {
  height: 180px;
  display: block;
  max-width: 90%;
}
.b1_tips {
  font-weight: 400;
  font-size: 16px;
  color: #242424;
  margin-top: 160px;
  line-height: 1.5;
}

.box1_swipers {
  width: 100%;
  height: 100%;
}
.box1_swipers .swiper-slide {
  overflow: hidden;
}
.swiper_bops .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper_bops .slide-inner > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.swiper_bops .swiper-pagination-bullet {
  background-color: white;
}
.swiper_bops .swiper-pagination {
  bottom: 5%;
}

.equipment {
  background-color: var(--mainColor);
  padding: 50px 0;
}
.equipment .fix_box1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.equipment .fix_box1 .m1 {
  height: 128px;
  display: block;
}
.equipment .fix_box1 .m2 {
  height: 124px;
  display: block;
}
.equipment .fix_box2 {
  width: 100%;
  margin-top: 30px;
  border-radius: 12px;
  padding: 40px 0;
}

.equipment .swiper-slide {
  width: 907px;
  height: 407px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.equipment .swiper-slide img {
  width: 100%;
  height: 100%;
}
.fix_box3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item_kk_b {
  width: 209px;
  flex-shrink: 0;
}
.item_kk_b img {
  width: 100%;
  display: block;
}
.d3_tips {
  font-weight: 400;
  font-size: 16px;
  color: #242424;
  font-family: PingFangSC, PingFang SC;
  margin-top: 6px;
  line-height: 1.5;
}

.Serve {
  position: relative;
}
.asddd {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.Serve .l_nis {
  background-color: #fda701;
}
.Serve .loui {
  text-align: left;
  width: 40%;
}
.Serve .tt_img {
  height: 124px;
  margin: initial;
}
.Serve .tt_tip {
  text-align: left;
  margin-top: 120px;
}

.SchoolAddress {
  padding: 46px 0;
  background-color: #f4f6f5;
}
.SchoolAddress .SchoolT {
  width: 100%;
  display: block;
  margin-bottom: 40px;
}

.SchoolAddress .schoolBox {
}
.SchoolAddress .sc_img_box {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
  position: relative;
}
.SchoolAddress .sc_cons {
  width: 100%;
  display: block;
  min-height: 500px;
}
.SchoolAddress .sc_list_box {
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  top: -80px;
  min-height: 115px;
  border-radius: 25px 25px;
  backdrop-filter: blur(17px);
  padding: 40px 34px 20px 34px;
  display: flex;
  flex-wrap: wrap;
}
.SchoolAddress .reserve_btns {
  width: 218px;
  height: 56px;
  line-height: 55px;
  letter-spacing: 2px;
  background: #fec009;
  border-radius: 28px;
  font-size: 20px;
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "wxx_h";
  cursor: pointer;
  text-align: center;
}
.SchoolAddress .school_name {
  width: calc(14.28% - 10px);
  height: 32px;
  line-height: 30px;
  border-radius: 18px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #242424;
  border: 1px solid #979797;
  font-family: PingFangSC, PingFang SC;
  margin-right: 10px;
  margin-bottom: 20px;
  transition: all 0.3s;
  cursor: pointer;
}
.SchoolAddress .school_name:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

/*****************************************        自适应处理      *********************************************/
@media (max-width: 1500px) {
  /*品牌介绍*/
  .brand_cooperate .cooperate_com_box {
    bottom: 9%;
  }

  /* 师资阵容 */
  .teacher_list .teacher_list_title {
    height: 100px;
  }
  .teacher_list .t_right_box {
    font-size: 15px;
  }
  .li_adds {
    height: 490px;
  }
  .c4_t {
    top: 65px;
    right: 160px;
    height: 100px;
  }
  .c4_tt {
    bottom: 110px;
    right: 163px;
    width: 415px;
  }
  .vt1 {
    height: 110px;
  }
  .vt_text {
    font-size: 15px;
  }

  .standard_title {
    position: absolute;
    top: 10px;
    right: 90px;
    height: 130px;
    display: block;
  }
  .standard_b {
    right: 99px;
    bottom: 88px;
    width: 401px;
  }
}

@media (max-width: 1400px) {
  /* 通用 */
  .win1200,
  .h_w1200,
  .brand_cooperate .cooperate_com_box > img {
    width: 90%;
  }

  /* 课程产品-教学体系 */
  .Teaching_system_datas_wrap {
    transform: scale(0.9);
    transform-origin: left bottom;
  }

  /* index */
  .plate2 .top_imgs .s_2 {
    margin-top: 40px;
  }
  .reserve {
    height: 75vh;
  }

  /* 品牌介绍 */
  .brand_introduction .bg_box {
    height: 575px;
  }
  .brand_introduction .in1 {
    width: 415px;
    height: 405px;
    left: 20%;
  }
  .brand_introduction .in2 {
    width: 426px;
    height: 393px;
  }
  .brand_culture .brand_culture_title > img {
    width: 285px;
  }
  .brand_honor .left_ho {
    height: 80vh;
  }
  .brand_honor .bottom_hb {
    height: 110px;
  }
  .brand_honor_img {
    max-width: 690px;
  }
  .brand_culture .video_b {
    height: 305px;
  }
  .b_list_c {
    top: -13px;
  }

  /* 课程产品 */
  .Teaching_philosophy {
    height: 70vh;
  }
  .Teaching_system {
    height: 78vh;
  }
  .Teaching_system_title {
    width: 210px;
  }
  .Teaching_system_tips {
    font-size: 15px;
  }
  .classMore {
    width: 150px;
    font-size: 13px;
  }
  .planning .this_title_box .planning_title {
    height: 70px;
  }
  .planning {
    height: 78vh;
  }
  .education_model .ed_rights {
    width: 380px;
  }
  .product_left {
    width: 475px;
  }
  .scoll_li .sl_title {
    font-size: 16px;
  }
  .sl_tips {
    font-size: 13px;
  }

  /* 师资阵容 */
  .standard_b {
    right: 155px;
    bottom: 92px;
    width: 260px;
  }
  .li_adds {
    height: 430px;
  }
  .tt_img {
    height: 80px;
  }
  .tt_tip {
    font-size: 15px;
  }
  .c4_t {
    top: 65px;
    right: 75px;
    height: 92px;
  }
  .c4_tt {
    bottom: 110px;
    right: 75px;
    width: 360px;
  }

  .SchoolAddress .sc_img_box {
    height: 480px;
  }
  .img0s {
    height: 127px;
    display: block;
    max-width: 90%;
  }
  .equipment .fix_box1 .m1 {
    height: 100px;
    display: block;
  }
  .equipment .fix_box1 .m2 {
    height: 100px;
    display: block;
  }
  .Serve .tt_img {
    height: 100px;
  }
}

@media (max-width: 1200px) {
  /* header */
  .left_logo > img {
    height: 30px;
  }
  .header_f .nav a {
    width: 90px;
    height: 36px;
    line-height: 36px;
    font-size: 15px;
  }
  .header_f .nav_item {
    margin-left: 10px;
  }

  /* footer */
  .footer_box {
    padding: 30px 0;
  }
  .footer_box .logo_b {
    width: 70px;
  }
  .footer_box .f_tel {
    font-size: 20px;
  }
  .footer_box .add_ffff {
    margin-left: 20px;
  }
  .footer_box .f_gov {
    font-size: 13px;
  }
  .footer_box .f_tel > img {
    height: 20px;
  }
  .footer_box .r_ls .p_l a > img {
    height: 30px;
  }
  .footer_box .r_ls .p_l a {
    margin-left: 17px;
  }
  .footer_box .this_qr {
    width: 70px;
    height: 70px;
  }

  /*index*/
  #homeLogo2 {
    height: 35px;
  }
  .plate2 .plate2_bg {
    min-height: 505px;
  }
  .plate2 .top_imgs .s_2 {
    margin-top: 20px;
  }
  .plate2 .top_imgs .s_1 > img {
    width: 300px;
  }
  .plate2 .top_imgs .s_2 > img {
    width: 300px;
    height: 300px;
  }
  .reserve {
    height: 600px;
  }
  #new_list_box2 .lis .new_cover {
    height: 250px;
  }
  .indexVideoT {
    height: 95px;
  }
  .public_data_title .p_t_name {
    font-size: 27px;
  }
  .public_data_title .p_t_name_en {
    font-size: 16px;
  }
  .re_top > img {
    width: 300px;
  }
  .reserve .form_box_reserve {
    margin-top: 30px;
  }
  .reserve .item_box_r {
    width: 300px;
    height: 46px;
    padding: 0px 12px;
    margin-bottom: 15px;
  }
  .reserve .item_box_r input {
    font-size: 14px;
  }
  .select .placeholder {
    padding: 0px 12px;
  }
  .select ul li {
    padding: 12px 12px;
  }
  .reserve .form_box_reserve_btn {
    margin-top: 25px;
  }
  .reserve .form_box_reserve_btn > span {
    height: 50px;
    line-height: 50px;
    font-size: 17px;
    width: 300px;
    width: 300px;
  }
  .reserve {
    height: 510px;
    min-height: auto;
  }
  .new_list_box .lis {
    width: calc(50% - 12px);
    margin-bottom: 24px;
  }

  /* 品牌介绍 */
  .brand_introduction .in1 {
    width: 340px;
    height: 325px;
  }
  .brand_introduction .in2 {
    width: 340px;
    height: 313px;
    top: -65px;
  }
  .brand_introduction_texts {
    padding-right: 30px;
  }
  .brand_introduction .bg_box {
    height: 530px;
  }
  .brand_culture_video {
    height: 50vh;
  }
  .b_list_item {
    height: 250px;
    padding: 25px 61px 0 25px;
  }
  /* .brand_culture .cu_bottom_bg{height: 160px;} */
  .m_borders {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .brand_scale .m_coms {
    width: 110px;
    height: 40px;
  }
  .brand_scale .st_box {
    margin-bottom: 20px;
  }
  .brand_scale .history .history_item .date_box {
    font-size: 28px;
  }
  .brand_scale .history .history_item .data_mk p {
    font-size: 15px;
  }
  .brand_scale .history .history_item {
    height: 175px;
    width: 190px !important;
    padding: 15px 12px;
  }
  .brand_honor .left_ho {
    height: 67vh;
  }
  .brand_honor_img {
    max-width: 460px;
    left: -30px;
  }
  .brand_honor .Honor_introduction2 {
    width: 365px;
    min-height: 196px;
    margin-top: 48px;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 1.75;
  }

  /* 课程产品 */
  .Teaching_system_datas_wrap {
    transform: scale(0.78);
    transform-origin: left bottom;
  }
  .Teaching_philosophy {
    height: 40vh;
  }
  .Teaching_philosophy_title {
    width: 255px;
    top: 15%;
  }
  .Teaching_philosophy .show_datas_t {
    height: 52%;
  }
  .Teaching_philosophy .type_titles_li span {
    font-size: 20px;
  }
  .Teaching_philosophy .type_titles_li {
    width: 125px;
    height: 45px;
  }
  .Teaching_philosophy .list_mjd {
    padding-left: 16px;
  }
  .Teaching_philosophy .list_mjd .pls {
    font-size: 14px;
  }
  .Teaching_system_title {
    width: 160px;
  }
  .Teaching_system_tips {
    font-size: 13px;
    width: 167px;
  }
  .Teaching_system {
    height: 610px;
  }
  .planning .this_title_box .planning_title {
    height: 54px;
  }
  .planning .switch_types .ch_items {
    width: 135px;
    height: 40px;
  }
  .planning .switch_types .item_titles {
    width: 135px;
    height: 40px;
    font-size: 15px;
  }
  .planning .ch_box {
    margin-top: 20px;
  }
  .planning .item_lkd_moc {
    margin-top: 35px;
  }
  .planning .item_lkd_moc .bom_kl2 .b_titles {
    height: 50px;
    padding-left: 15px;
    font-size: 15px;
  }
  .planning .item_lkd_moc .bom_kl2 .lin_box {
    width: 545px;
  }
  .add_kl3 .b_box_padding {
    padding-bottom: 15px;
  }
  .b_box_padding {
    padding: 15px;
  }
  .planning .item_lkd_moc .bom_kl1 .box_mok {
    margin-left: 15px;
  }
  .planning .item_lkd_moc .bom_kl1 .box_mok .b_titles {
    height: 50px;
    padding-left: 15px;
    font-size: 15px;
  }
  .b_box_padding .type_mkls .titmes_nmk {
    /* width: 67px; */
  }
  .b_box_padding .type_mkls p:nth-child(1) {
    font-size: 0.7em;
  }
  .b_box_padding .type_mkls p:nth-child(2) {
    font-size: 12px;
  }
  .bb_datas_add {
    padding-top: 15px;
    margin-top: 15px;
  }
  .bb_datas_add_tips2 {
    font-size: 13px;
  }
  .bb_datas_add_lis p {
    font-size: 12px;
  }
  .box_mok:nth-child(2n-1) {
    width: 200px;
  }
  .planning .item_lkd_moc .bom_kl1 .box_mok {
    height: 320px;
  }
  .box_mok:nth-child(2n) {
    width: 145px;
  }
  .planning {
    height: 610px;
  }
  .Teaching_activities .type_tcs {
    margin-top: 30px;
  }
  .Teaching_activities .T_a_list {
    margin-top: 30px;
  }
  .Teaching_activities .T_a_list .item_nmbox {
    width: calc(33.3% - 15px);
  }
  .Teaching_activities .T_a_list .item_nmbox .nm_cover {
    height: 195px;
  }
  .hide_datas {
    padding: 12px;
  }
  .hide_datas .w_100 {
    line-height: 22px;
  }
  .add_mt {
    margin-top: 0px !important;
  }
  .ActivityList {
    margin-top: 20px;
  }
  .ActivityList .al_item .al_item_title {
    height: 50px;
  }
  .ac_right_text .text_div {
    font-size: 14px;
    top: 48%;
    line-height: 20px;
  }
  .education_model .education_model_title {
    height: 100px;
  }
  .education_model .ed_rights {
    width: 255px;
  }
  .education_model .ed_rights .p {
    font-size: 12px;
  }
  .product_box {
    padding: 30px 0;
  }
  .right_t_r .mkd_l p:nth-child(1) {
    font-size: 24px;
  }
  .right_t_r .mkd_l p:nth-child(2) {
    font-size: 14px;
  }
  .product_box .advantage {
    width: 115px;
    line-height: 37px;
    font-size: 15px;
  }
  .product_box .advantage i {
    font-size: 12px;
  }
  .advantage_lis p {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .advantage_lis p span {
    font-size: 12px;
    top: -1px;
  }
  .soll_box {
    height: 314px;
    padding: 14px 5px 15px 15px;
    margin-top: 13px;
  }
  .scoll_li {
    margin-bottom: 20px;
  }
  .product_box .bg_j {
    padding: 40px 40px 40px 0;
  }
  .sl_tips {
    font-size: 12px;
  }
  .scoll_li .sl_title {
    font-size: 14px;
  }
  .advantage_lis {
    margin-top: 15px;
  }
  .lkd_box1 {
    width: 425px;
    height: 353px;
    left: 0;
    bottom: 40px;
  }
  .product_left {
    width: 433px;
    left: 50px;
    bottom: -1px;
  }
  .app_title p:nth-child(1) {
    font-size: 24px;
  }
  .app_title p:nth-child(2) {
    font-size: 15px;
  }
  .ll_box_nm2 {
    top: -65px;
    width: 441px;
  }
  .ll_box_nm {
    width: calc(100% - 250px);
  }
  .ll_box_nm > img {
    height: 310px;
  }
  .right_video_box {
    width: 487px;
    height: 233px;
  }
  .msk_datas {
    width: 90%;
  }
  .msk_datas .t_p {
    font-size: 15px;
  }
  .msk_datas .tips_p {
    font-size: 13px;
  }
  .title_mls {
    line-height: 37px;
    padding: 0 11px 0 11px;
    font-size: 15px;
  }
  .mls_tips {
    margin-top: 12px;
    font-size: 13px;
  }
  .mls_btns {
    margin-top: 10px;
  }
  .ml_b_item {
    margin-top: 12px;
    font-size: 13px;
  }
  .left_mls {
    width: 325px;
  }
  .product_app {
    margin-bottom: 80px;
  }
  .fix_items > span {
    font-size: 13px;
    min-width: 163px;
  }
  .bom_kl2 .lin_box:first-child .fix_items:first-child span:last-child {
    padding: 0 24px;
  }
  .Teaching_system .show_imgs {
    height: 360px;
  }
  /* .left_tips_ls {
    margin-right: 3px;
  } */
  /* .left_tips_ls {
    width: 22px;
    position: relative;
  } */
  /* .L1_box {
    margin-right: 3px;
  } */
  .L1_box {
    width: 101px;
  }
  .L2_box {
    width: 129px;
  }
  .selection {
    padding: 0px 4px;
  }
  .selection {
    width: 26px;
  }
  .selection img {
    width: 17px;
    left: 5px;
    bottom: 71px;
  }
  .left_imgs_box .h_bb {
    /* width: 528px; */
  }
  .classMore {
    width: 124px;
    font-size: 12px;
    bottom: 28px;
  }
  .Teaching_system .right_texts_box {
    /* padding-left: 1%; */
  }
  .product_box .bg_j_com .ai > img {
    height: 80px;
  }

  /* 赛事活动 */
  .s1_t {
    height: 120px;
  }
  .s1_boms {
    margin-top: 10%;
  }
  .s1_l_t {
    width: 50%;
    font-size: 14px;
    line-height: 20px;
  }
  .s1_t_b_svg {
    width: 40px;
  }
  .add_lin_swipers .s2_t {
    height: 70px;
  }
  .img_items {
    width: 170px;
    height: 100px;
    margin-right: 10px;
  }
  .f_img2 {
    height: 90px;
  }
  .mySwiperEvent .swiper-pagination .swiper-pagination-bullet {
    margin: 14px 0;
    width: 7px;
    height: 7px;
  }
  .mySwiperEvent .swiper-pagination-bullet-active {
    width: 7px !important;
    height: 20px !important;
  }
  .wxx_next {
    width: 40px;
    height: 40px;
  }
  .wxx_prev {
    width: 40px;
    height: 40px;
    margin-top: 15px;
  }
  .sw_c_btns i {
    font-size: 14px;
  }
  .sw_c_btns {
    width: 40px;
    right: calc(10% - 20px);
  }

  .tt_items {
    width: 228px;
    height: 369px;
    padding: 35px 0 0 12px;
  }
  .l_mkes {
    width: 230px;
  }
  .head_t {
    width: 208px;
    height: 283px;
  }
  .head_t > img {
    top: -22px;
    left: -12px;
  }
  .user_datas {
    width: 200px;
    margin-left: 10px;
    top: -11px;
  }
  .user_names span.a {
    font-size: 16px;
  }
  .user_names span.b {
    height: 20px;
    line-height: 20px;
    padding: 0 4px;
    font-size: 0.6em;
    min-width: 45px;
    top: -6px;
    margin-left: 7px;
  }
  .t_times {
    font-size: 14px;
    margin-top: 6px;
  }
  .op_types {
    right: 10px;
    font-size: 45px;
    opacity: 0.8;
  }
  .w_rikld {
    padding: 20px 20px 20px 0;
  }
  .w_lins {
    padding: 15px 20px;
  }
  .lis_lll {
    margin-bottom: 15px;
  }
  .h_1 > span {
    width: 83px;
    height: 31px;
    line-height: 29px;
    font-size: 14px;
  }
  .h_2 {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
  }
  .chswipes > div {
    width: 45px;
    height: 45px;
  }
  .standard_title {
    top: 35px;
    right: 130px;
    height: 60px;
  }
  .standard_b {
    right: 128px;
    bottom: 85px;
    width: 200px;
  }
  .li_adds {
    height: 370px;
  }
  .tt_img {
    height: 60px;
  }
  .tt_tip {
    font-size: 14px;
  }
  .c4_t {
    top: 63px;
    right: 48px;
    height: 69px;
  }
  .c4_tt {
    bottom: 64px;
    right: 51px;
    width: 295px;
  }
  .vt1 {
    height: 70px;
  }
  .vt_text {
    font-size: 12px;
  }
  .pay_btns2 {
    width: 110px;
    height: 42px;
  }
  .pay_btns2 i {
    font-size: 30px;
    color: white;
  }
  .pay_btns2 span {
    font-size: 13px;
  }
  .Team_training {
    height: 70vh;
  }
  .news_data_box {
    margin-top: 35px;
  }
  .new_list_box {
    margin-top: 35px;
  }
  .comminicate .new_list_box .lis .new_cover {
    height: 350px;
  }

  .pay_btns {
    width: 110px;
    height: 42px;
  }
  .pay_btns i {
    font-size: 30px;
    color: white;
  }
  .pay_btns span {
    font-size: 13px;
  }

  .fix_ens .r_kpl {
    width: 650px;
    flex-shrink: 0;
  }
  .swiper_bops {
    height: 350px;
  }
  .img0s {
    height: 100px;
  }
  .b1_tips {
    font-size: 14px;
    margin-top: 120px;
  }
  .item_kk_b {
    width: 140px;
  }
  .d3_tips {
    font-size: 12px;
  }
  .Serve .tt_img {
    height: 80px;
  }
  .Serve .tt_tip {
    margin-top: 50px;
  }
  .SchoolAddress .sc_img_box {
    height: 404px;
  }
  .SchoolAddress .reserve_btns {
    width: 170px;
    height: 46px;
    line-height: 45px;
    font-size: 17px;
    bottom: 109px;
  }
  .SchoolAddress .sc_list_box {
    top: -80px;
    min-height: 115px;
    padding: 20px 15px 10px 20px;
  }
  .SchoolAddress .school_name {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .equipment .swiper-slide {
    width: 600px;
    height: 300px;
  }

  .m_com_box .item_box_r {
    padding: 0 12px;
  }
  .m_com_box {
    padding: 12px 20px;
  }
  .m_com_box {
    width: 400px;
    height: 416px;
  }
  .m_com_box .form_box_reserve_btn {
    margin-top: 24px;
  }
  .m_com_box .form_box_reserve {
    margin-top: 20px;
  }
  .brand_scale .history .history_item .date_box > img {
    height: 25px;
  }
}

@media (max-width: 950px) {
  /* 课程产品-教学体系 */
  .Teaching_system_datas_wrap {
    transform: scale(0.7);
    transform-origin: left bottom;
  }

  .header_f .nav {
    margin-left: 0;
  }
  .header_f .nav a {
    width: 80px;
    font-size: 14px;
  }

  .footer_box .logo_b {
    width: 50px;
  }
  .footer_box .f_tel {
    font-size: 15px;
  }
  .footer_box .add_ffff {
    margin-left: 11px;
  }
  .footer_box .f_tel > img {
    height: 15px;
  }
  .footer_box .r_ls .p_l a > img {
    height: 25px;
  }
  .footer_box .r_ls .p_l a {
    margin-left: 15px;
  }
  .footer_box .r_rs {
    margin-left: 12px;
  }
  .footer_box .this_qr {
    width: 50px;
    height: 50px;
  }
  .footer_box {
    padding: 20px 0;
  }
  .footer_box .f_gov {
    font-size: 0.7em;
  }

  #homeLogo2 {
    height: 25px;
  }

  /* 课程产品 */
  .Teaching_system {
    height: 610px;
  }
  .com_lihjd {
    /* width: 150px; */
  }
  .lisjk_box {
    /* font-size: 0.7em; */
    /* padding-left: 0; */
    /* text-align: center; */
  }
  .lisjk_box i {
    font-size: 0.9em;
  }
  .Teaching_system .right_texts_box {
    justify-content: flex-end;
  }
  .left_imgs_box .h_bb {
    /* width: 484px; */
  }
  .planning {
    height: 600px;
  }
  .win1200,
  .h_w1200,
  .brand_cooperate .cooperate_com_box > img {
    width: 98%;
  }
  .product_left {
    width: 344px;
    left: 15px;
    bottom: -1px;
  }
  .product_box .bg_j {
    padding: 20px 15px 20px 0;
  }
  .lkd_box1 {
    width: 326px;
    height: 276px;
    left: 0;
    bottom: 47px;
  }
  .ll_box_nm2 {
    top: -20px;
    width: 294px;
  }
  .ll_box_nm {
    width: calc(100% - 155px);
  }
  .right_video_box {
    width: 362px;
    height: 170px;
  }
  .brand_culture .video_b {
    height: 201px;
  }
  .b_list_c {
    top: -13px;
  }
  .brand_scale {
    margin-top: 100px;
  }
  .brand_introduction {
    padding-bottom: 0;
  }

  .brand_introduction .in1 {
    width: 250px;
    height: 246px;
  }
  .brand_introduction .in2 {
    width: 284px;
    height: 262px;
    top: 0px;
  }
  .brand_introduction_texts {
    padding-right: 12px;
    padding-left: 40%;
    top: -69px;
  }
  .brand_introduction .this_type_titles {
    width: 69%;
    height: 56px;
    margin-top: 62px;
  }
  .public_data_title .p_t_name {
    font-size: 22px;
  }
  .public_data_title .p_t_name_en {
    font-size: 13px;
  }
  .brand_introduction .pors {
    bottom: 82px;
    left: 50%;
    height: 380px;
  }
  .brand_introduction .bg_box {
    height: 499px;
  }
  .b_list_item .title_its {
    line-height: 30px;
    padding: 0 10px;
    font-size: 17px;
  }
  .b_list_item {
    height: 186px;
    padding: 25px 55px 0 20px;
  }
  .b_list_item .cu_tips {
    font-size: 12px;
  }
  .brand_culture .cu_bottom_bg {
    height: 86px;
  }
  .brand_culture .brand_culture_title > img {
    width: 160px;
  }
  .brand_scale .st_box {
    margin-bottom: 10px;
  }
  .brand_scale .st_title {
    font-size: 14px;
    margin-top: 12px;
  }
  .brand_scale .m_coms {
    width: 85px;
    height: 35px;
  }
  .brand_scale .history .history_item .date_box {
    font-size: 19px;
  }
  .brand_scale .history .history_item .data_mk {
    margin-top: 13px;
  }
  .brand_scale .history .history_item .data_mk p {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .brand_scale .history .history_item {
    height: 144px;
    width: 150px !important;
    padding: 15px 10px;
  }
  .brand_honor .brand_honor_t {
    height: 45px;
    display: block;
  }
  .brand_honor .Honor_introduction {
    margin-top: 14px;
  }
  .brand_honor .Honor_introduction li {
    font-size: 13px;
    margin-bottom: 12px;
    padding-left: 9px;
  }
  .brand_honor .Honor_introduction2 {
    width: 310px;
    min-height: 150px;
    margin-top: 25px;
    padding: 13px 14px;
    font-size: 12px;
    line-height: 1.75;
  }
  .brand_honor_img {
    max-width: 320px;
    left: -11px;
  }
  .brand_honor .lin_ms {
    margin-top: 39px;
  }
  .brand_honor .left_ho {
    height: 420px;
  }
  .brand_honor .bottom_hb {
    height: 48px;
  }
  .brand_cooperate .cooperate_com_box {
    bottom: 4%;
  }

  .plate1 .right_text_t .plate1_slogan {
    font-size: 29px;
  }
  .plate1 .left_text_t .di_title {
    font-size: 24px;
  }
  .plate1 .left_text_t .di_tips {
    font-size: 13px;
  }
  .plate2 .top_imgs .s_2 > img {
    width: 240px;
    height: 240px;
  }
  .plate2 .plate2_bg {
    min-height: 387px;
  }
  .news_data_box {
    margin-top: 32px;
  }
  .new_list_box {
    margin-top: 26px;
  }
  .new_list_box .lis {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
  .new_list_box .lis .new_cover {
    height: 159px;
  }
  .new_list_box .lis .new_introduce {
    padding: 10px;
  }
  .new_name,
  .new_introduction {
    font-size: 14px;
    line-height: 21px;
  }
  #new_list_box2 .lis .new_cover {
    height: 200px;
  }
  .pay_btns {
    width: 130px;
    height: 43px;
    bottom: 12px;
    padding: 4px 5px;
  }
  .pay_btns i {
    font-size: 34px;
  }
  .pay_btns span {
    font-size: 14px;
  }

  .s1_l_t {
    width: 65%;
    font-size: 13px;
  }
  .s1_t_b_svg {
    width: 30px;
  }

  .teacher_standard {
    margin-top: 0;
  }
  .standard_title {
    top: 14px;
    right: 68px;
    height: 44px;
  }
  .standard_b {
    right: 65px;
    bottom: 64px;
    width: 150px;
  }
  .li_adds {
    height: 255px;
  }
  .tt_img {
    height: 46px;
  }
  .tt_tip {
    font-size: 12px;
  }
  .c4_t {
    top: 45px;
    right: 35px;
    height: 43px;
  }
  .c4_tt {
    bottom: 48px;
    right: 35px;
    width: 200px;
  }
  .comminicate .new_list_box .lis .new_cover {
    height: 225px;
  }
  .news_data_box {
    margin-top: 13px;
  }
  .w_lins {
    padding: 3px;
  }
  .teacher_list .t_right_box {
    font-size: 12px;
    line-height: 15px;
  }
  .teacher_list .teacher_list_title {
    height: 50px;
  }
  .teacher_list .t_comsf {
    padding-top: 32px;
  }
  .teacher_list {
    padding-bottom: 35px;
  }
  .chswipes {
    margin-top: 35px;
  }

  .environment .fix_ens {
    display: block;
  }
  .environment .fix_ens .l_kpl {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .environment .fix_ens .b1_tips {
    margin-top: 0;
  }
  .fix_ens .r_kpl {
    width: 100%;
    margin-top: 25px;
  }
  .equipment .swiper-slide {
    width: 425px;
    height: 211px;
  }
  .equipment .fix_box1 .m2,
  .equipment .fix_box1 .m1 {
    height: 60px;
  }
  .Serve .tt_img {
    height: 55px;
  }
  .Serve .tt_tip {
    margin-top: 38px;
    line-height: 15px;
  }
  .SchoolAddress .sc_img_box {
    height: 330px;
  }
  .SchoolAddress .reserve_btns {
    width: 145px;
    height: 40px;
    line-height: 39px;
    font-size: 17px;
    bottom: 93px;
  }
  .SchoolAddress .sc_list_box {
    top: -80px;
    min-height: 115px;
    padding: 20px 0px 10px 10px;
  }
  .SchoolAddress .school_name {
    font-size: 0.7em;
    margin-bottom: 10px;
  }
  .SchoolAddress .sc_cons {
    min-height: auto;
  }

  .brand_scale .history .history_item .date_box > img {
    height: 20px;
  }
  .product_box .bg_j_com .ai > img {
    height: 70px;
  }
  .product_box .bg_j_com {
    padding-left: 38%;
  }
}
