.ball {
  display: none;
}

.modal-ball {
  display: none;
}

.modal-form {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index: 11;
}

.modal-form .mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal-form .mask .container {
  width: calc(100% - 2.83rem * 2);
  max-width: 19.73rem;
  padding: 2.67rem 1.83rem 2rem;
  box-sizing: border-box;
  background: linear-gradient(180deg, #ebefff 0%, #edefff 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-form .mask .container .icon {
  width: 2.91rem;
  height: 2.91rem;
}

.modal-form .mask .container .title {
  font-size: 0.73rem;
  color: #000000;
  line-height: 1rem;
  margin-top: 8px;
}

.modal-form .mask .container .content {
  font-size: 0.64rem;
  color: #666666;
  line-height: 0.91rem;
  margin-top: 9px;
}

.modal-form .mask .container .button {
  width: 11.95rem;
  height: 1.82rem;
  font-weight: 600;
  font-size: 0.64rem;
  color: #ffffff;
  line-height: 1.82rem;
  background: #1d2c5d;
  border-radius: 8px;
  text-align: center;
  margin-top: 1.5rem;
}

.navbar {
  width: 100%;
  height: 64px;
  padding: 0 7.92rem 0 8.33rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 10;
}

.navbar-light {
  background-color: rgba(255, 255, 255, 0.9);
}

.navbar .logo {
  display: flex;
  align-items: center;
}

.navbar .logo .icon {
  width: 5.42rem;
  height: 1.65rem;
  background: url("/assest/logo/logoWhite.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.navbar-light .logo .icon {
  width: 5.42rem;
  height: 1.65rem;
  background: url("/assest/logo/logoPurple.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.navbar .logo .line {
  width: 2px;
  height: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 46%,
    rgba(255, 255, 255, 0) 100%
  );
  margin-top: 0.3rem;
  margin-left: 12px;
}

.navbar-light .logo .line {
  width: 2px;
  height: 22px;
  background: linear-gradient(
    180deg,
    rgba(190, 190, 190, 0) 0%,
    #646464 46%,
    rgba(190, 190, 190, 0) 100%
  );
  margin-top: 0.3rem;
  margin-left: 12px;
}

.navbar .logo .content {
  font-size: 0.58rem;
  color: #ffffff;
  line-height: 0.67rem;
  margin-top: 0.32rem;
  margin-left: 12px;
}

.navbar-light .logo .content {
  font-size: 0.58rem;
  color: #333333;
  line-height: 0.67rem;
  margin-top: 0.32rem;
  margin-left: 12px;
}

.navbar .mobile {
  font-size: 0.67rem;
  color: #ffffff;
  line-height: 0.58rem;
  display: flex;
  align-items: center;
}

.navbar-light .mobile {
  font-size: 0.67rem;
  color: #1d2c5d;
  line-height: 0.58rem;
  display: flex;
  align-items: center;
}

.navbar .mobile .icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background: url("/assest/common/phoneWhite.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.navbar-light .mobile .icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background: url("/assest/common/phone.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.banner {
  width: 100%;
  aspect-ratio: 1440 / 680;
  position: relative;
}

.banner .swiper {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: hidden;
}

.banner .swiper .swiper-list {
  height: 100%;
  display: flex;
}

.banner .swiper .transition {
  transition: all 0.6s;
}

.banner .swiper .swiper-list .swiper-item {
  width: 100%;
  min-width: 100%;
  height: 100%;
  background-size: 100% 100%;
  display: flex;
  position: relative;
}

.banner .swiper .swiper-list .swiper-item .background {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}

.banner .swiper .swiper-list .swiper-item .background div {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.banner .swiper .swiper-list .swiper-item .background div:nth-child(2) {
  background: radial-gradient(
    0% 55% at 50% 51%,
    rgba(8, 10, 25, 0.61) 0%,
    rgba(18, 20, 41, 0.61) 42%,
    rgba(4, 6, 26, 0.69) 100%
  );
}

.banner .swiper .swiper-list .swiper-item .background div:nth-child(1) {
  background: linear-gradient(
    180deg,
    rgba(5, 7, 30, 0.7) 0%,
    rgba(17, 19, 41, 0.03) 35%,
    rgba(18, 20, 41, 0) 70%,
    rgba(5, 7, 30, 0.7) 100%
  );
}

.banner .swiper .swiper-list .swiper-item .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .swiper .swiper-list .swiper-item .content {
  left: 8.33rem;
  bottom: 7.25rem;
  position: absolute;
}

.banner .swiper .swiper-list .swiper-item .content div:nth-child(1) {
  font-size: 1.67rem;
  color: #ffffff;
  line-height: 2.67rem;
}

.banner .swiper .swiper-list .swiper-item .content div:nth-child(2) {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.33rem;
  margin-top: 4px;
}

.banner .guide {
  width: 100%;
  font-size: 0.58rem;
  color: #ffffff;
  text-align: center;
  line-height: 0.58rem;
  bottom: 1.33rem;
  position: absolute;
}

.banner .guide img {
  width: 0.67rem;
  height: 0.5rem;
  margin-top: 12px;
}

.banner .indicator {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  bottom: 3.13rem;
  right: 8.33rem;
  position: absolute;
}

.banner .indicator .indicator-list {
  display: flex;
}

.banner .indicator .indicator-list .indicator-item {
  width: 0.83rem;
  height: 0.83rem;
  border-radius: 50px;
  margin-left: 0.33rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .indicator .indicator-list .active {
  border: 1px solid #b8bec5;
  box-sizing: border-box;
}

.banner .indicator .indicator-list .indicator-item div {
  width: 0.25rem;
  height: 0.25rem;
  background: #b8bec5;
  border-radius: 50px;
}

.banner .indicator .indicator-index {
  font-size: 0.42rem;
  color: #ffffff;
  margin-top: 0.42rem;
}

.banner .indicator .indicator-index span {
  font-size: 0.67rem;
}

.mentor-mobile {
  display: none;
}

.mentor {
  width: 100%;
  padding: 4.91rem 0 0;
  box-sizing: border-box;
  background-color: #e0e5f3;
  position: relative;
  background-image: url("/assest/mentor/light.png");
  background-position: right top;
  background-repeat: no-repeat;
}

.mentor > .title {
  width: 100%;
  position: absolute;
  text-align: center;
}

.mentor > .title img {
  width: 10.91rem;
  height: 2.82rem;
}

.mentor .container {
  width: 100%;
  aspect-ratio: 1440 / 680;
  scale: 0.6;
  height: auto;
  position: relative;
  top: 64px;
  position: sticky;
  z-index: 9;
}

.mentor .container .background-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 680;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  position: absolute;
  overflow-y: hidden;
}

.mentor .container .background-image .background-image-list {
  width: 100%;
  height: 100%;
}

.mentor .container .background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.mentor .container .background-mask {
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 680;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  position: absolute;
  overflow-y: hidden;
}

.mentor .container .background-mask .background-mask-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mentor .container .background-mask img {
  width: 100%;
  height: 100%;
  z-index: 2;
}

.mentor .container .swiper {
  width: 45%;
  height: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: 10%;
  z-index: 3;
  overflow-y: hidden;
  position: relative;
}

.mentor .container .swiper .swiper-list {
  width: 100%;
  height: 100%;
}

.mentor .container .swiper .swiper-list .swiper-item {
  width: 100%;
  height: 100%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.82rem;
  -webkit-animation: swing_move_3 1s;
}

@-webkit-keyframes swing_move_3 {
  0% {
    -webkit-transform: translateY(200px);
    opacity: 0;
  }
}

.mentor .container .swiper .swiper-list .swiper-item .module {
  width: 100%;
}

.mentor .container .swiper .swiper-list .swiper-item .module .title {
  width: 100%;
  padding: 0.73rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
}

.mentor
  .container
  .swiper
  .swiper-list
  .swiper-item
  .module
  .title
  div:nth-child(1) {
  font-size: 0.91rem;
  color: #ffffff;
  line-height: 0.91rem;
}

.mentor
  .container
  .swiper
  .swiper-list
  .swiper-item
  .module
  .title
  div:nth-child(2) {
  flex: 1;
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 0.91rem;
  margin-left: 16px;
}

.mentor .container .swiper .swiper-list .swiper-item .module .content {
  width: 100%;
  margin-top: 0.55rem;
  display: flex;
  align-items: flex-start;
}

.mentor .container .swiper .swiper-list .swiper-item .module .content img {
  width: 1rem;
  height: 1rem;
  margin-right: 8px;
}

.mentor .container .swiper .swiper-list .swiper-item .module .content div {
  flex: 1;
  font-size: 0.64rem;
  color: #ffffff;
  line-height: 1rem;
}

/* 课程产品 */
.product {
  width: 100%;
  padding: 3.25rem 8.33rem 4.5rem;
  box-sizing: border-box;
  background-color: #e0e5f3;
  background-image: url("/assest/product/light.png");
  background-size: 29.17rem 29.17rem;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product .title {
  width: 10.9rem;
  height: 2.82rem;
}

.product .label {
  width: 100%;
  height: 3rem;
  font-size: 0.75rem;
  text-align: center;
  color: #202960;
  line-height: 3rem;
  border: 1px solid #c8d5ff;
  background-color: rgba(243, 246, 255, 0.84);
  border-radius: 8px;
  margin-top: 16px;
}

.product .product-item {
  width: 100%;
  height: 11.54rem;
  margin-top: 1rem;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.product .product-item .icon-vs {
  width: 12.5rem;
  height: 11.58rem;
  bottom: 0;
  left: calc(23.38rem - 3.75rem / 2 - 12.5rem / 2);
  /* left: 13.42rem; */
  position: absolute;
  z-index: 2;
}

.product .product-item .dark {
  /* width: 23.38rem; */
  width: 54%;
  height: 11.54rem;
  padding: 1.33rem 1.5rem;
  box-sizing: border-box;
  /* background: url("/assest/product/dark.png"); */
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.product .product-item .dark .logo1 {
  width: 5.48rem;
  height: 5.54rem;
  bottom: 0;
  right: 0;
  position: absolute;
}

.product .product-item .dark:nth-child(n) {
  background: url("/assest/product/dark.png");
  background-size: 100% 100%;
}

.product .product-item .dark:last-child {
  background: url("/assest/product/dark1.png");
  background-size: 100% 100%;
}

.product .product-item .dark .tag {
  width: 7rem;
  height: 2.27rem;
}

.product .product-item .dark .dark-item {
  width: 100%;
  margin-top: 1.13rem;
  display: flex;
  align-items: center;
}

.product .product-item .dark .dark-item img {
  width: 1.82rem;
  height: 1.82rem;
}

.product .product-item .dark .dark-item .content {
  flex: 1;
  margin-left: 16px;
}

.product .product-item .text1 {
  font-size: 0.67rem;
  color: #95a3ca;
  line-height: 0.67rem;
}

.product .product-item .text2 {
  font-size: 0.73rem;
  color: #ffffff;
  line-height: 1.27rem;
  /* margin-top: 8px; */
}

.product .product-item .text3 {
  font-size: 0.73rem;
  color: #273773;
  line-height: 0.91rem;
  font-weight: 600;
}

.product .product-item .text4 {
  font-size: 0.64rem;
  color: #9099b4;
  line-height: 0.91rem;
  margin-top: 4px;
}

.product .product-item .text5 {
  font-size: 0.67rem;
  color: #878dac;
  line-height: 0.75rem;
}

.product .product-item .text6 {
  max-width: 90%;
  font-size: 0.64rem;
  color: #505883;
  line-height: 1.27rem;
  /* margin-top: 8px; */
  margin-left: 12px;
}

.product .product-item .text7 {
  font-size: 0.77rem;
  color: #ffffff;
  line-height: 1.09rem;
}

.product .product-item .text7 span {
  font-size: 2.18rem;
  color: #ffffff;
  line-height: 2.18rem;
  border-bottom: 0.25rem solid #334274;
  margin: 0 0.67rem;
}

.product .product-item .text8 {
  font-size: 0.64rem;
  color: #8b96be;
  line-height: 1.09rem;
}

.product .product-item .light {
  /* width: 27.13rem; */
  /* width: 54%; */
  flex: 1;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.product .product-item .light .background-icon1 {
  width: 1rem;
  height: 1rem;
  bottom: 6.17rem;
  right: 1.33rem;
  position: absolute;
}

.product .product-item .light .background-icon2 {
  width: 1rem;
  height: 1rem;
  bottom: 1.5rem;
  right: 1.33rem;
  position: absolute;
}

.product .product-item .spec1 {
  /* height: 9.75rem; */
  padding: 1.5rem;
  margin-left: -25%;
  display: flex;
  align-items: flex-end;
}

.product .product-item .spec1 .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product .product-item .spec2 {
  /* height: 9.17rem; */
  padding: 1rem 1.5rem;
  margin-right: -25%;
  flex-direction: column;
}

.product .product-item .spec4 {
  height: 100%;
  padding: 1.5rem 0 2.42rem;
  box-sizing: border-box;
  justify-content: space-between;
}

.product .product-item .spec1 .light-item {
  /* width: 14.5rem; */
  /* flex: 1; */
  display: flex;
}

.product .product-item .spec1 .light-item .icon {
  width: 1.27rem;
  height: 1.27rem;
}

.product .product-item .spec1 .spaceContainer {
  width: 40%;
  height: 1px;
}

/* 咨询 */
.consult {
  width: 100%;
  height: 33.33rem;
  position: relative;
  background: url("/assest/consult/twoBg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.consult .background {
  width: 100%;
  height: 100%;
}

.consult .container {
  /* width: 25.83rem; */
  /* height: 16.33rem; */
  padding: 2.67rem 4.5rem 3.42rem;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(13px);
  display: flex;
  align-items: center;
  flex-direction: column;
  top: 8.5rem;
  left: 8.33rem;
  position: absolute;
}

.consult .container .background-icon {
  width: 9.21rem;
  height: 12.04rem;
  top: 2.58rem;
  left: 0;
  position: absolute;
}

.consult .container .title {
  width: 5.33rem;
  height: 2.08rem;
}

.consult .container .form {
  width: 100%;
  margin-top: 1.33rem;
  display: grid;
  grid-template-columns: repeat(2, 7.92rem);
  gap: 0.67rem 1rem;
  justify-content: space-between;
}

.consult .container .form .form-item {
  width: 7.92rem;
  height: 1.42rem;
  font-size: 0.58rem;
  padding: 0 12px;
  box-sizing: border-box;
  background-color: #ffffff;
  border: 1px solid rgba(29, 44, 93, 0.23);
  outline: none;
  display: flex;
  align-items: center;
  z-index: 1;
}

.consult .container .form .form-item select {
  width: 100%;
  height: 100%;
  font-size: 0.58rem;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
}

.consult .container .form .form-item select {
  /* -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("/assest/consult/more.png") no-repeat;
  background-position: 95% center;
  background-size: 10px; */
}

.consult .container .form .form-item input {
  width: calc(100% - 2.92rem);
  height: 100%;
  font-size: 0.58rem;
  background-color: transparent;
  border: none;
  outline: none;
}

.consult .container .form .form-item .form-button {
  width: 2.92rem;
  height: 1.42rem;
  line-height: 1.42rem;
  font-size: 0.58rem;
  color: #445eb3;
  text-align: right;
  cursor: default;
}

.consult .container .form .isError {
  border: 1px solid #c04343;
  position: relative;
}

.consult .container .form .form-item .error {
  display: none;
}

.consult .container .form .isError .error {
  font-size: 12px;
  color: #e4534e;
  line-height: 12px;
  display: block;
  top: 1.42rem;
  left: 0;
  position: absolute;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}
input[type="number"] {
  -moz-appearance: textfield;
}

.consult .container .button {
  width: 100%;
  height: 2rem;
  line-height: 2rem;
  font-size: 0.58rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  background-color: #1d2c5d;
  margin-top: 1.33rem;
  cursor: default;
}

.consult .container .location {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.consult .container .location-item {
  margin-top: 0.75rem;
}

.consult .container .location .name {
  font-size: 0.55rem;
  color: #1d2c5d;
  line-height: 0.55rem;
  display: flex;
  align-items: center;
}

.consult .container .location .name img {
  width: 0.55rem;
  height: 0.6rem;
  margin-right: 5px;
}

.consult .container .location .description {
  font-size: 0.55rem;
  color: #848999;
  line-height: 0.82rem;
  margin-top: 4px;
}

/* 课程特色 */
.special_container {
  padding: 4.5rem 2.25rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  background: #f2f5f9;
}

.special_container-position {
  /* position: absolute; */
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
}

.special {
  background-color: rgba(242, 245, 249, 1);
  text-align: center;
}

.special_title {
  width: 10.9rem;
  height: 2.82rem;
}

.special .special_title_text {
  background-image: linear-gradient(
    180deg,
    rgba(16, 32, 80, 1) 0,
    rgba(54, 83, 166, 1) 100%
  );
  overflow-wrap: break-word;
  color: rgba(39, 55, 115, 1);
  font-size: 1.166rem;
  font-family: SourceHanSansSC-Bold;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  line-height: 1.167rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.special .special_title_eng {
  overflow-wrap: break-word;
  color: rgba(39, 55, 115, 1);
  font-size: 0.5rem;
  letter-spacing: 0.0416rem;
  font-family: SourceHanSansSC-Light;
  font-weight: 300;
  text-align: center;
  white-space: nowrap;
  line-height: 11px;
  margin: 0.25rem 0 0 0.167rem;
}

.special .special_title_img {
  width: 0.417rem;
  height: 0.334rem;
  margin: 0.334rem auto 1.334rem;
  background-color: blue;
}

.special .content {
  background-color: cadetblue;
}

.special_list {
  margin-top: 1.33rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.special_list .special_list_item {
  padding: 1.82rem 1.18rem;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.special_list_item:hover {
  background-color: rgba(29, 44, 93, 1) !important;
}

.special_list_item:hover .title_red {
  color: rgba(255, 255, 255, 1);
}

.special_list_item:hover .title_default {
  color: rgba(255, 255, 255, 1);
}

.special_list_item:hover .description {
  color: rgba(114, 120, 156, 1);
}

.special_list .special_list_item_white {
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.special_list img {
  width: 2.91rem;
  height: 2.91rem;
}

.special_list .text_content {
  /* padding: 0.834rem 1.084rem 0; */
  margin-top: 0.91rem;
}

.special_list .title_red {
  color: #ad3c39;
}

.special_list .title_default {
  color: rgba(29, 44, 93, 1);
  font-size: 0.791rem;
  font-family: SourceHanSansSC-Medium;
  font-weight: 600;
  line-height: 1rem;
}

.special .description {
  overflow-wrap: break-word;
  color: #72789c;
  font-size: 0.583rem;
  font-family: SourceHanSansSC-Regular;
  text-align: center;
  line-height: 0.917rem;
  margin-top: 0.91rem;
}

/* 师资力量 */
.teacher {
  width: 100%;
  padding: 4.5rem 0;
  background: url("/assest/teacher/teBg.jpg");
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.teacher .title {
  width: 10.9rem;
  height: 2.82rem;
}

.teacher .tips {
  font-size: 0.82rem;
  color: #202960;
  line-height: 0.91rem;
  text-align: center;
  margin-top: 1.09rem;
}

.teacher .detail {
  /* width: 43.33rem; */
  /* height: 5.25rem; */
  /* padding: 1rem 2.68rem; */

  background: rgba(243, 246, 255, 0.84);
  border-radius: 0.33rem;
  border: 1px solid #c8d5ff;
  margin-top: 1.09rem;
}

.teacher .detail .detail-list {
  width: 100%;
  padding: 1rem 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.teacher .detail .detail-list .detail-item {
  /* width: 40%; */
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}

.teacher .detail .detail-list .detail-item:nth-child(1) {
  padding: 0 2.68rem;
  /* box-sizing: border-box; */
}

.teacher .detail .detail-list .detail-item:nth-child(2) {
  padding: 0 5.91rem;
  /* box-sizing: border-box; */
}

.teacher .detail .detail-list .detail-item:nth-child(3) {
  padding: 0 2.5;
  /* box-sizing: border-box; */
}

.teacher .detail .detail-list .detail-item .count {
  /* width: 40%; */
  /* height: 100%; */
  font-size: 1.09rem;
  color: #3d63df;
  line-height: 1.45rem;
  /* font-family: "MyCustomFont", serif; */
}

.teacher .detail .detail-list .detail-item .count span {
  font-size: 1.4rem;
  color: #3156cd;
  line-height: 2.09rem;
  margin-right: 8px;
}

.teacher .detail .detail-list .detail-item .content {
  font-size: 0.64rem;
  color: #202960;
  line-height: 0.91rem;
  margin-top: 8px;
}

.teacher .scroll {
  width: 100%;
  padding: 1rem 0 0.5rem;
  margin-top: 1.08rem;
  overflow-x: hidden;
}

.teacher .scroll .scroll-list {
  display: flex;
  justify-content: flex-start;
  transition: all 0.2s;
  gap: 2.92rem;
}

.teacher .scroll .scroll-list .scroll-item {
  width: 12.5rem;
  min-width: 12.5rem;
  /* height: 15.71rem; */
  background-color: #ffffff;
  box-shadow: 0rem 0rem 0.38rem 0.29rem #f0f2fd;
}

.teacher .scroll .scroll-list .active {
  transform: translateY(-1rem);
}

.teacher .scroll .scroll-list .scroll-item .teacher-avatar {
  width: 100%;
  height: 7.5rem;
  background-color: #d1d8e7;
  position: relative;
}

.teacher .scroll .scroll-list .scroll-item .teacher-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher .scroll .scroll-list .scroll-item .teacher-avatar span {
  /* width: 3.83rem; */
  height: 1.42rem;
  font-size: 0.75rem;
  padding: 0 0.67rem;
  background-image: linear-gradient(
      -11deg,
      #0096ff 0%,
      #176ec9 28%,
      #2d4693 73%
    ),
    linear-gradient(#2d4693, #2d4693);
  background-blend-mode: normal, normal;
  border-radius: 0rem 1rem 0rem 0rem;
  opacity: 0.9;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  bottom: 0;
  position: absolute;
}

.teacher .scroll .scroll-list .scroll-item .teacher-info {
  padding: 0.92rem 0.67rem 1.13rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.teacher .scroll .scroll-list .scroll-item .teacher-tag {
  height: 0.92rem;
  font-size: 0.58rem;
  color: #8e5f1c;
  line-height: 0.58rem;
  background: linear-gradient(133deg, #edd3b8 0%, #ffebd5 48%, #e8c8a7 100%);
  padding: 0 0.5rem 0 0.75rem;
  border-radius: 0 0.6rem 0.6rem 0;
  margin-left: 0.46rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.teacher .scroll .scroll-list .scroll-item .teacher-tag div {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.teacher .scroll .scroll-list .scroll-item .teacher-tag img {
  width: 0.92rem;
  height: 0.92rem;
  left: -0.46rem;
  position: absolute;
}

.teacher .scroll .scroll-list .scroll-item .teacher-info .teacher-content {
  width: 100%;
  font-size: 0.58rem;
  color: #666666;
  line-height: 0.92rem;
  white-space: pre-line;
  margin-top: 0.42rem;
  display: flex;
  flex-direction: column;
}

.teacher .scroll .scroll-list .scroll-item .teacher-info .teacher-content li {
  padding-left: 1.8em;
  text-indent: -1.4em;
}

.teacher
  .scroll
  .scroll-list
  .scroll-item
  .teacher-info
  .teacher-content
  li::marker {
  color: #5269b4;
}

/* 报名流程 */
.flow {
  width: 100%;
}

.flow .detail {
  width: 100%;
  /* height: 12rem; */
  padding: 2rem 0 3.46rem;
  background: url("/assest/flow/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow .detail .title {
  width: 10.91rem;
  height: 2.82rem;
}

.flow .detail .img {
  width: 37.09rem;
  height: 3.77rem;
  background: url("/assest/flow/process.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: 2.33rem;
}

.flow .tips {
  width: 100%;
  height: 3.5rem;
  background: linear-gradient(180deg, #0f193a 0%, #091b4c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow .tips .icon {
  width: 0.91rem;
  height: 1.09rem;
}

.flow .tips .text {
  font-size: 0.64rem;
  color: #ffffff;
  line-height: 1.09rem;
  margin-left: 8px;
  display: flex;
  align-items: center;
}

.flow .tips .text div {
  width: calc(28px + 12px);
  font-size: 1.27rem;
  color: #ff8c06;
  line-height: 1.27rem;
  text-align: center;
  padding-bottom: 4px;
  border-bottom: 4px solid #334274;
  margin: 0 6px;
}

.flow .form {
  padding: 1.17rem 0;
  background-color: #0f193a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow .form .form-item {
  width: 7.92rem;
  height: 1.42rem;
  font-size: 0.58rem;
  color: #ffffff;
  padding: 0 12px;
  box-sizing: border-box;
  background-color: #0f193a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  outline: none;
  margin-right: 0.67rem;
  display: flex;
  align-items: center;
}

.flow .form .form-item ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.flow .form .form-item select {
  width: 100%;
  height: 100%;
  font-size: 0.58rem;
  color: #ffffff;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  /* -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("/assest/product/lohoright.png") no-repeat;
  background-position: 95% center;
  background-size: 10px; */
  background-color: #0f193a;
}

.flow .form .form-item input {
  width: calc(100% - 2.92rem);
  height: 100%;
  font-size: 0.58rem;
  color: #ffffff;
  background-color: transparent;
  border: none;
  outline: none;
}

.flow .form .form-item .form-button {
  width: 2.92rem;
  height: 1.42rem;
  line-height: 1.42rem;
  font-size: 0.58rem;
  color: #ffffff;
  text-align: right;
  cursor: default;
}

.flow .form .button {
  width: 3.67rem;
  height: 1.33rem;
  line-height: 1.33rem;
  font-weight: 600;
  font-size: 0.58rem;
  color: #1d2c5d;
  text-align: center;
  background-color: #ffffff;
  cursor: default;
}

.flow .form .isError {
  border: 1px solid #c04343;
  position: relative;
}

.flow .form .form-item .error {
  display: none;
}

.flow .form .isError .error {
  font-size: 12px;
  color: #e4534e;
  line-height: 12px;
  display: block;
  top: 1.42rem;
  left: 0;
  position: absolute;
}

.score {
  width: 100%;
  padding: 4.42rem 0 3.67rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score .title {
  width: 10.9rem;
  height: 2.82rem;
}

.score .detail {
  background: rgba(243, 246, 255, 0.84);
  border-radius: 0.33rem;
  border: 1px solid #c8d5ff;
  margin-top: 0.67rem;
}

.score .detail .detail-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
}

.score .detail .detail-item {
  max-width: 14.42rem;
  height: 100%;
  box-sizing: border-box;
}

.score .detail .detail-item:nth-child(1) {
  padding: 1rem 1.63rem;
}

.score .detail .detail-item:nth-child(2) {
  padding: 1rem 0.5rem 1rem 1.42rem;
}

.score .detail .detail-item:nth-child(3) {
  padding: 1rem 2.33rem 1rem 2.79rem;
}

.score .detail .detail-item .count {
  font-size: 1rem;
  color: rgba(61, 99, 223, 0.36);
  line-height: 1.33rem;
  /* font-family: "MyCustomFont", serif; */
}

.score .detail .detail-item .count span {
  font-size: 1.4rem;
  color: #3156cd;
  line-height: 1.92rem;
  margin-right: 8px;
}

.score .detail .detail-item .content {
  font-size: 0.64rem;
  color: #202960;
  line-height: 0.91rem;
  margin-top: 8px;
}

.score .detail .detail-item .spec {
  font-size: 0.58rem;
  color: rgba(32, 41, 96, 0.38);
  line-height: 0.75rem;
  margin-top: 0.33rem;
}

.score .swiper {
  width: 100%;
  margin-top: 2.17rem;
  display: flex;
  overflow-x: hidden;
}

.score .swiper .swiper-list {
  display: flex;
}

.score .swiper .transition {
  transition: all 0.6s;
}

.score .swiper .swiper-list .swiper-item {
  width: 31.46rem;
  height: 17.5rem;
  margin-right: 1.33rem;
}

.score .indicators {
  width: 100%;
  padding-right: 8.33rem;
  box-sizing: border-box;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.score .indicators .indicator {
  width: 1.33rem;
  height: 1.33rem;
}

.score .indicators .count {
  font-size: 0.67rem;
  color: #666666;
  line-height: 0.67rem;
  margin: 0 20px;
}

.activity {
  width: 100%;
  padding: 3.79rem 0 4.5rem;
  box-sizing: border-box;
  background-color: #f2f5f9;
}

.activity .activity-container {
  width: 100%;
  padding: 0 8.24rem;
  box-sizing: border-box;
  background-color: #f2f5f9;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.activity .title {
  width: 10.9rem;
  height: 2.82rem;
}

.activity .swiper {
  width: 100%;
  margin-top: 2.38rem;
  position: relative;
  overflow-x: hidden;
}

.activity .swiper .swiper-list {
  display: flex;
}

.activity .swiper .transition {
  transition: all 0.2s;
}

.activity .swiper .swiper-list .swiper-item {
  width: 100%;
  min-width: 100%;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
}

.activity .swiper .swiper-list .swiper-item .detail {
  flex: 1;
  margin-right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.activity .swiper .swiper-list .swiper-item .detail .tag {
  font-size: 0.67rem;
  color: #ffffff;
  line-height: 0.67rem;
  padding: 0.5rem 0.67rem;
  background-color: #1d2c5d;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.activity .swiper .swiper-list .swiper-item .detail .content {
  font-size: 0.67rem;
  color: #1d2c5d;
  line-height: 1.17rem;
}

.activity .swiper .swiper-list .swiper-item .swiper-img {
  /* width: 19.15rem; */
  flex: 1;
  /* min-width: 100%; */
  /* height: 15rem; */
  overflow-x: hidden;
  position: relative;
}

.activity .swiper .swiper-list .swiper-item .swiper-img .swiper-img-list {
  display: flex;
}

.activity .swiper .swiper-list .swiper-item .swiper-img .swiper-img-list img {
  width: 100%;
  min-width: 100%;
  max-height: 15rem;
  border-radius: 8px;
  object-fit: cover;
  background-color: #dde4f0;
}

.activity .swiper .indicators-img {
  display: flex;
  gap: 0.5rem;
  bottom: 0.92rem;
  right: 1.25rem;
  position: absolute;
  z-index: 1;
}

.activity .swiper .indicators-img .indicator {
  width: 0.67rem;
  height: 0.67rem;
}

.activity .swiper .indicators {
  display: flex;
  gap: 1rem;
  /* bottom: 0; */
  /* left: 0; */
  /* position: absolute; */
}

.activity .swiper .indicators .indicator {
  width: 1.33rem;
  height: 1.33rem;
}

.evaluation {
  width: 100%;
  padding: 3.5rem 7.88rem 4.67rem 8.29rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.evaluation .title {
  width: 10.9rem;
  height: 2.82rem;
}

.evaluation .swiper {
  width: 100%;
  margin-top: 2.38rem;
  position: relative;
  overflow-x: hidden;
}

.evaluation .swiper .swiper-list {
  display: flex;
}

.evaluation .swiper .transition {
  transition: all 0.2s;
}

.evaluation .swiper .swiper-list .swiper-item {
  width: 100%;
  min-width: 100%;
  display: flex;
}

.evaluation .swiper .swiper-list .swiper-item .detail {
  display: flex;
  align-items: flex-start;
}

.evaluation .swiper .swiper-list .swiper-item .detail .detail-img {
  flex: 1;
}

.evaluation .swiper .swiper-list .swiper-item .detail .detail-img img {
  /* width: 19.17rem; */
  /* height: 15rem; */
  width: 100%;
  min-width: 100%;
  max-height: 15rem;
  border-radius: 8px;
  object-fit: cover;
  background-color: #f6f6f6;
}

.evaluation .swiper .swiper-list .swiper-item .detail .content {
  flex: 1;
  height: 100%;
  font-size: 0.67rem;
  color: #1d2c5d;
  line-height: 1.17rem;
  margin-left: 3.79rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.evaluation .swiper .swiper-list .swiper-item .detail .content img {
  width: 1.67rem;
  height: 1.67rem;
  margin-bottom: 20px;
}

.evaluation .swiper .indicators {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  /* bottom: 0; */
  /* right: 0; */
  /* position: absolute; */
  z-index: 1;
}

.evaluation .swiper .indicators .indicator {
  width: 1.33rem;
  height: 1.33rem;
}

/* 介绍 */
.aboutUs {
  width: 100%;
  padding: 2.33rem 8.33rem 3.42rem 8.29rem;
  box-sizing: border-box;
  background: url("/assest/aboutUs/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.aboutUs .contact {
  width: 100%;
  margin-bottom: calc(1.88rem - 7px);
  display: flex;
  justify-content: space-between;
}

.aboutUs .logo {
  width: 7.74rem;
  height: 2.36rem;
  margin-left: 4px;
  margin-bottom: 0.88rem;
}

.aboutUs .qrCode {
  width: 5.32rem;
  height: 6.27rem;
  font-size: 0.55rem;
  color: #000000;
  line-height: 0.55rem;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  bottom: 1.14rem;
  right: 9rem;
  position: absolute;
}

.aboutUs .qrCode img {
  width: 3.73rem;
  height: 3.7rem;
  margin-bottom: 10px;
}

.aboutUs .content {
  font-size: 0.67rem;
  color: #a2a6b9;
  line-height: 1rem;
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
}

.aboutUs .content .title {
  width: 4.6rem;
  font-size: 0.64rem;
  color: #ffffff;
  line-height: 1.09rem;
  text-align: justify;
  text-justify: inter-character;
  text-align-last: justify; /* 备用方案 */
}

.aboutUs .content .description {
  flex: 1;
  font-size: 0.64rem;
  color: #a2a6b9;
  line-height: 1.09rem;
}

.aboutUs .location {
  flex: 1;
  font-size: 0.75rem;
  color: #ffffff;
  line-height: 1.13rem;
}

.aboutUs .location .location-item {
  font-size: 0.58rem;
  color: #ffffff;
  line-height: 0.75rem;
  display: flex;
  align-items: center;
}

.aboutUs .location .location-item:nth-child(1) {
  margin-top: 1rem;
}

.aboutUs .location .location-item:nth-child(2) {
  margin-top: 8px;
}

.aboutUs .location img {
  width: 0.67rem;
  height: 0.67rem;
  margin-right: 8px;
}

.record {
  width: 100%;
  line-height: 1.75rem;
  height: 1.75rem;
  font-size: 0.5rem;
  color: rgba(209, 226, 236, 0.43);
  background-color: #16214d;
  text-align: center;
}

.bottom {
  width: 100%;
  height: 3rem;
}

.bottom .container {
  width: 100%;
  height: 3rem;
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 10;
}

.bottom .container .form {
  width: 100%;
  height: 100%;
  background-color: rgba(29, 44, 93, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom .container .form .title {
  font-size: 0.67rem;
  color: #ffffff;
  line-height: 1rem;
  margin-right: 2.25rem;
}

.bottom .container .form .form-item {
  width: 7.92rem;
  height: 1.42rem;
  font-size: 0.58rem;
  color: #ffffff;
  padding: 0 12px;
  box-sizing: border-box;
  background-color: rgba(29, 44, 93, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  outline: none;
  margin-right: 0.67rem;
  display: flex;
  align-items: center;
}

.bottom .container .form .form-item ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.bottom .container .form .form-item select {
  width: 100%;
  height: 100%;
  font-size: 0.58rem;
  color: #ffffff;
  padding: 0;
  background-color: rgba(29, 44, 93, 0.95);
  border: none;
  outline: none;
}

.bottom .container .form .form-item input {
  flex: 1;
  width: calc(100% - 2.92rem);
  height: 100%;
  font-size: 0.58rem;
  color: #ffffff;
  background-color: transparent;
  border: none;
  outline: none;
}

.bottom .container .form .form-item .form-button {
  width: 2.92rem;
  height: 1.42rem;
  line-height: 1.42rem;
  font-size: 0.58rem;
  color: #ffffff;
  text-align: right;
  cursor: default;
}

.bottom .container .form .button {
  width: 3.67rem;
  height: 1.33rem;
  line-height: 1.33rem;
  font-weight: 600;
  font-size: 0.58rem;
  color: #1d2c5d;
  text-align: center;
  background-color: #ffffff;
  cursor: default;
}

.bottom .container .form .isError {
  border: 1px solid #c04343;
  position: relative;
}

.bottom .container .form .form-item .error {
  display: none;
}

.bottom .container .form .isError .error {
  font-size: 12px;
  color: #e4534e;
  line-height: 12px;
  display: block;
  top: 1.42rem;
  left: 0;
  position: absolute;
}
