/* ========== base reset ========== */
body {
  margin: 0;
  font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei;
}
body * {
  box-sizing: border-box;
  flex-shrink: 0;
}
button {
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  outline: none;
  background-color: transparent;
}
button:active {
  opacity: 0.6;
}

/* ========== common.css - flexbox utilities ========== */
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.justify-start {
  display: flex;
  justify-content: flex-start;
}
.justify-center {
  display: flex;
  justify-content: center;
}
.justify-end {
  display: flex;
  justify-content: flex-end;
}
.justify-evenly {
  display: flex;
  justify-content: space-evenly;
}
.justify-around {
  display: flex;
  justify-content: space-around;
}
.justify-between {
  display: flex;
  justify-content: space-between;
}
.align-start {
  display: flex;
  align-items: flex-start;
}
.align-center {
  display: flex;
  align-items: center;
}
.align-end {
  display: flex;
  align-items: flex-end;
}

/* ========== banner carousel ========== */
.banner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.banner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-slide .image_0 {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* 左右箭头 */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 24px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  user-select: none;
  transition: background 0.3s;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

/* 指示器圆点 */
.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* ========== index.css - component styles ========== */
.page {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: auto;
  min-height: 100vh;
  overflow: visible;
}
.block_1 {
  position: relative;
  width: 1920px;
}
/* ══════════════════════════════════════
   全局标题样式 titlebox
   ══════════════════════════════════════ */
.titlebox{
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 80px 0 50px;
}
.titleimg {
  display: inline-block;
  width: 385px;
  height: 53px;
}

/* 法考概览标题 */
.Overview {
  min-height:790px;
  padding-top: 60px;
}
.Overview .titlebox{
  text-align: center;
  padding: 0 0 50px;
}
.Overview .titlebox .image_2{
  display: inline-block;
}
.Overview .box_1{
  position: relative;
  background-color: rgba(24, 48, 172, 1);
  border-radius: 109px;
  width: 1383px;
  height: 218px;
  margin: 67px 0 0 260px;
  text-align: center;
}
.Overview .box_1 .paragraph_1 {
  display: inline-block;
  width: 1146px;
  height: 88px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-family: PingFang-SC-Regular;
  font-weight: normal;
  text-align: left;
  line-height: 34px;
  margin: 38px 0 0 124px;
}

.Overview .box_1 .box_2 {
  background-color: rgba(5, 27, 142, 1);
  border-radius: 6px;
  width: 1226px;
  height: 12px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.Overview .box_1 .box_25 {
  height: 386px;
  background: url(../img/8967a83da3c09e2161e79f47370c5d79.png)
    0px 0px no-repeat;
  background-size: 1199px 391px;
  width: 1199px;
  position: absolute;
  bottom: -516px;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* 法考概览 - 4个功能卡片 */
.Overview .box_1 .box_25 .list_1 {
  width: 1151px;
  height: 294px;
  margin: 60px 0 0 23px;
  display: flex;
  justify-content: space-between;
}

.Overview .box_1 .box_25 .list_1 .list-items{
  position: relative;
  width: 277px;
  height: 294px;
  background: linear-gradient(180deg, rgba(66, 103, 224, 1) 0%, rgba(24, 48, 172, 1) 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 8px 24px rgba(24, 48, 172, 0.2);
}
.Overview .box_1 .box_25 .list_1 .list-items:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(24, 48, 172, 0.35);
}

/* 虚线圆圈容器 */
.Overview .box_1 .box_25 .list_1 .list-items .image-wrapper_12 {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed rgba(193, 202, 245, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

/* 白色实心圆背景 */
.Overview .box_1 .box_25 .list_1 .list-items .box_26 {
  position: absolute;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  z-index: 1;
}

/* 图标图片 */
.Overview .box_1 .box_25 .list_1 .list-items .icon-image {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* 文字标题 */
.Overview .box_1 .box_25 .list_1 .list-items .text_33 {
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 26px;
  font-family: PingFang-SC-Bold;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  line-height: 1.3;
  letter-spacing: 1px;
}

/* 移除旧的 image_23 规则 */
.Overview .box_1 .box_25 .list_1 .list-items .image_23 {
  display: none;
}
/* 考试时间区块 */
.timebox {
  min-height: 450px;
  background-color: rgba(255, 255, 255, 0.5);
  padding-top: 60px;
}
.timebox .titlebox {
  padding: 0 0 50px;
}

.timebox .itembox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 322px;
  background-color: rgba(255, 255, 255, 0.8);
  background: url(../img/32bf9696e674e2dbf8dfbe86e3753bb2.png) no-repeat center center;
  background-size: cover;
}
.timebox .itembox .box_4{
  background-color: rgba(255, 255, 255, 0.5);
  background: url(../img/556afde2099ee57a3ba1a52c884e87d3.png) no-repeat center center;
  background-size: 1200px 10px;
  position: relative;
  width: 1200px;
  height: 322px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
 
}
.timebox .box_4 .timeitem{
  width: 180px;
  position: relative;
  height: 230px;
  float: left;
  margin-right: 80px;
}
.timebox .box_4 .timeitem:last-child{
  margin-right: 0px;
}
/* 顶部蓝色标签 */
.timebox .box_4 .timeitem .text-wrapper_1{
  width: 172px;
  height: 44px;
  background-color: rgba(54, 83, 230, 1);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top:55px;
  left:50%;
  transform: translate(-50%,-50%);
}
.timebox .box_4 .timeitem .text-wrapper_1 .text_2 {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
}
/* 上竖线 */
.timebox .box_4 .timeitem .image_5 {
  width: 1px;
  height: 134px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%,-50%);
}
/* 中间蓝色圆点 */
.timebox .box_4 .timeitem .block_4 {
  width: 16px;
  height: 16px;
  background-color: rgba(54, 83, 230, 1);
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 2px rgba(54, 83, 230, 0.5);
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

/* 下竖线 */
.timebox .box_4 .timeitem .thumbnail_3 {
  width: 15px;
  height: 15px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  bottom:57px;
  transform: translate(-50%,-50%);
}

/* 底部虚线框 */
.timebox .box_4 .timeitem .text-wrapper_5 {
   height: 37px;
  border: 1px dashed rgba(24, 48, 172, 1);
  width: 173px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 10px;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translate(-50%, 50%);  
}

.timebox .box_4 .timeitem .text-wrapper_5 .text_6 {
 width: 69px;
  height: 20px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 20px;
}

/* 服务保障区块 */
.servebox{
  min-height: 553px;
  padding-top: 60px;
}
.servebox .titlebox{
  padding: 0 0 50px;
}
.servebox .itembox{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 1200px;
  margin: 40px auto 0;
}
.servebox .itembox .serveitem{
  width: 387px;
}









/* 教师团队区块 */
.teacherbox{
  padding-top: 60px;
}
.teacherbox .titlebox {
  padding: 0 0 50px;
}
.section_1 {
  background-image: linear-gradient(
    67deg,
    rgba(255, 197, 98, 0.18) 0,
    rgba(255, 197, 98, 0.18) 0,
    rgba(255, 120, 60, 0.18) 100%,
    rgba(255, 120, 60, 0.18) 100%
  );
  width: 15px;
  height: 15px;
  margin-top: 22px;
}

.text_1 {
  width: 182px;
  height: 45px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 48px;
  font-family: PingFang-SC-Heavy;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 43px;
  margin-left: 14px;
}

.section_2 {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(51, 51, 51, 1);
  margin: 18px 0 0 23px;
}

.image-wrapper_1 {
  width: 118px;
  height: 21px;
  margin: 4px 0 0 1px;
}

.thumbnail_1 {
  width: 17px;
  height: 11px;
  margin-left: 39px;
}

.image_3 {
  width: 118px;
  height: 3px;
  margin-top: 7px;
}

.block_2 {
  width: 1072px;
  height: 44px;
  margin: 47px 0 0 426px;
}

.text-wrapper_1 {
  box-shadow: 4px 6px 8px 0px rgba(54, 83, 230, 0.32);
  background-color: rgba(54, 83, 230, 1);
  border-radius: 22px;
  height: 44px;
  width: 173px;
}


.text-wrapper_2 {
  box-shadow: 4px 6px 8px 0px rgba(54, 83, 230, 0.32);
  background-color: rgba(54, 83, 230, 1);
  border-radius: 22px;
  height: 44px;
  margin-left: 127px;
  width: 173px;
}

.text_3 {
  width: 117px;
  height: 23px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin: 11px 0 0 28px;
}

.text-wrapper_3 {
  box-shadow: 4px 6px 8px 0px rgba(54, 83, 230, 0.32);
  background-color: rgba(54, 83, 230, 1);
  border-radius: 22px;
  height: 44px;
  margin-left: 126px;
  width: 173px;
}

.text_4 {
  width: 115px;
  height: 23px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin: 11px 0 0 29px;
}

.text-wrapper_4 {
  box-shadow: 4px 6px 8px 0px rgba(54, 83, 230, 0.32);
  background-color: rgba(54, 83, 230, 1);
  border-radius: 22px;
  height: 44px;
  margin-left: 127px;
  width: 173px;
}

.text_5 {
  width: 117px;
  height: 23px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin: 11px 0 0 30px;
}

.image_4 {
  width: 1202px;
  height: 12px;
  margin: 50px 0 0 358px;
}

.image-wrapper_2 {
  width: 914px;
  height: 15px;
  margin: 55px 0 0 505px;
}





.thumbnail_4 {
  width: 15px;
  height: 15px;
  margin-left: 284px;
}

.thumbnail_5 {
  width: 15px;
  height: 15px;
  margin-left: 285px;
}

.block_3 {
  width: 1073px;
  height: 37px;
  margin: 8px 0 54px 426px;
}





.text-wrapper_6 {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 10px;
  height: 37px;
  border: 1px dashed rgba(24, 48, 172, 1);
  margin-left: 125px;
  width: 173px;
}

.text_7 {
  width: 91px;
  height: 16px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin: 12px 0 0 42px;
}

.text-wrapper_7 {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 10px;
  height: 37px;
  border: 1px dashed rgba(24, 48, 172, 1);
  margin-left: 127px;
  width: 173px;
}

.paragraph_2 {
  width: 130px;
  height: 20px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin: 10px 0 0 22px;
}

.text-wrapper_8 {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 10px;
  height: 37px;
  border: 1px dashed rgba(24, 48, 172, 1);
  margin-left: 129px;
  width: 173px;
}

.text_8 {
  width: 50px;
  height: 16px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin: 12px 0 0 61px;
}



.block_4 {
  box-shadow: 4px 6px 21px 0px rgba(54, 83, 230, 1);
  background-color: rgba(54, 83, 230, 1);
  border-radius: 50%;
  position: absolute;
  left: 500px;
  top: 133px;
  width: 35px;
  height: 35px;
  border: 5px solid rgba(255, 255, 255, 1);
}

.image_6 {
  position: absolute;
  left: 812px;
  top: 89px;
  width: 1px;
  height: 134px;
}

.block_5 {
  box-shadow: 4px 6px 21px 0px rgba(54, 83, 230, 1);
  background-color: rgba(54, 83, 230, 1);
  border-radius: 50%;
  position: absolute;
  left: 800px;
  top: 133px;
  width: 35px;
  height: 35px;
  border: 5px solid rgba(255, 255, 255, 1);
}

.image_7 {
  position: absolute;
  left: 1110px;
  top: 89px;
  width: 1px;
  height: 134px;
}

.block_6 {
  box-shadow: 4px 6px 21px 0px rgba(54, 83, 230, 1);
  background-color: rgba(54, 83, 230, 1);
  border-radius: 50%;
  position: absolute;
  left: 1098px;
  top: 133px;
  width: 35px;
  height: 35px;
  border: 5px solid rgba(255, 255, 255, 1);
}

.image_8 {
  position: absolute;
  left: 1410px;
  top: 89px;
  width: 1px;
  height: 134px;
}

.block_7 {
  box-shadow: 4px 6px 21px 0px rgba(54, 83, 230, 1);
  background-color: rgba(54, 83, 230, 1);
  border-radius: 50%;
  position: absolute;
  left: 1398px;
  top: 133px;
  width: 35px;
  height: 35px;
  border: 5px solid rgba(255, 255, 255, 1);
}

.box_5 {
  width: 363px;
  height: 46px;
  margin: 125px 0 0 790px;
}

.section_3 {
  background-image: linear-gradient(
    67deg,
    rgba(255, 197, 98, 0.18) 0,
    rgba(255, 197, 98, 0.18) 0,
    rgba(255, 120, 60, 0.18) 100%,
    rgba(255, 120, 60, 0.18) 100%
  );
  width: 15px;
  height: 15px;
  margin-top: 22px;
}

.text_9 {
  width: 185px;
  height: 46px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 48px;
  font-family: PingFang-SC-Heavy;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 43px;
  margin-left: 14px;
}

.section_4 {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(51, 51, 51, 1);
  margin: 18px 0 0 20px;
}

.image-wrapper_3 {
  width: 118px;
  height: 21px;
  margin: 4px 0 0 1px;
}

.thumbnail_6 {
  width: 17px;
  height: 11px;
  margin-left: 39px;
}

.image_9 {
  width: 118px;
  height: 3px;
  margin-top: 7px;
}

.box_6 {
  background-color: rgba(24, 48, 172, 1);
  border-radius: 100px 0px 0px 0px;
  height: 764px;
  width: 1732px;
  margin: 64px 0 0 188px;
}

.section_5 {
  width: 1200px;
  height: 304px;
  margin: 64px 0 0 172px;
}

.group_1 {
  background-color: rgba(255, 255, 255, 1);
  width: 387px;
  height: 304px;
}

.box_7 {
  width: 357px;
  height: 91px;
  margin: 24px 0 0 -4px;
}

.box_8 {
  width: 286px;
  height: 91px;
}

.image-wrapper_4 {
  box-shadow: 3px 4px 2px 0px rgba(54, 83, 230, 0.78);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  height: 36px;
  border: 1px solid rgba(54, 83, 230, 1);
  margin-left: 26px;
  width: 36px;
  position: relative;
}

.thumbnail_7 {
  width: 12px;
  height: 12px;
  margin: 17px 0 0 19px;
}

.thumbnail_8 {
  position: absolute;
  left: 9px;
  top: 9px;
  width: 20px;
  height: 20px;
}

.text-wrapper_9 {
  box-shadow: 6px 0px 5px 0px rgba(54, 83, 230, 0.32);
  background-image: linear-gradient(
    90deg,
    rgba(54, 83, 230, 1) 0,
    rgba(54, 83, 230, 1) 0,
    rgba(24, 48, 172, 1) 99.023438%,
    rgba(24, 48, 172, 1) 100%
  );
  border-radius: 0px 0px 22px 22px;
  height: 44px;
  margin-top: 11px;
  width: 286px;
}

.text_10 {
  width: 163px;
  height: 23px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin: 10px 0 0 26px;
}

.text_11 {
  width: 37px;
  height: 18px;
  overflow-wrap: break-word;
  color: rgba(24, 48, 172, 1);
  font-size: 24px;
  font-family: DIN-Black;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 29px;
  margin: 20px 0 0 4px;
}

.text_12 {
  width: 19px;
  height: 42px;
  overflow-wrap: break-word;
  color: rgba(24, 48, 172, 1);
  font-size: 57px;
  font-family: DIN-Black;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 29px;
  margin: 19px 0 0 11px;
}

.paragraph_3 {
  width: 294px;
  height: 54px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  line-height: 34px;
  margin: 24px 0 111px 44px;
}

.group_2 {
  background-color: rgba(255, 255, 255, 1);
  height: 304px;
  margin-left: 20px;
  width: 387px;
}

.section_6 {
  width: 363px;
  height: 91px;
  margin: 24px 0 0 -3px;
}

.block_8 {
  width: 327px;
  height: 91px;
}

.box_9 {
  width: 301px;
  height: 38px;
  margin-left: 26px;
}

.image-wrapper_5 {
  box-shadow: 3px 4px 2px 0px rgba(54, 83, 230, 0.78);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  height: 36px;
  border: 1px solid rgba(54, 83, 230, 1);
  width: 36px;
  position: relative;
}

.thumbnail_9 {
  width: 12px;
  height: 12px;
  margin: 16px 0 0 18px;
}

.thumbnail_10 {
  position: absolute;
  left: 9px;
  top: 10px;
  width: 19px;
  height: 18px;
}

.text_13 {
  width: 37px;
  height: 18px;
  overflow-wrap: break-word;
  color: rgba(24, 48, 172, 1);
  font-size: 24px;
  font-family: DIN-Black;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 29px;
  margin-top: 20px;
}

.text-wrapper_10 {
  box-shadow: 6px 0px 5px 0px rgba(54, 83, 230, 0.32);
  background-image: linear-gradient(
    90deg,
    rgba(54, 83, 230, 1) 0,
    rgba(54, 83, 230, 1) 0,
    rgba(24, 48, 172, 1) 99.023438%,
    rgba(24, 48, 172, 1) 100%
  );
  border-radius: 0px 0px 22px 22px;
  height: 44px;
  margin-top: 9px;
  width: 310px;
}

.paragraph_4 {
  width: 211px;
  height: 23px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin: 10px 0 0 25px;
}

.text_14 {
  width: 28px;
  height: 42px;
  overflow-wrap: break-word;
  color: rgba(24, 48, 172, 1);
  font-size: 57px;
  font-family: DIN-Black;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 29px;
  margin-top: 19px;
}

.text-wrapper_11 {
  width: 281px;
  height: 88px;
  margin: 24px 0 77px 45px;
}

.paragraph_5 {
  width: 281px;
  height: 88px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  line-height: 34px;
}

.group_3 {
  background-color: rgba(255, 255, 255, 1);
  width: 387px;
  height: 304px;
  margin-left: 19px;
}

.box_10 {
  width: 337px;
  height: 61px;
  margin: 24px 0 0 23px;
}

.image-wrapper_6 {
  box-shadow: 3px 4px 2px 0px rgba(54, 83, 230, 0.78);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  height: 36px;
  border: 1px solid rgba(54, 83, 230, 1);
  width: 36px;
  position: relative;
}

.thumbnail_11 {
  width: 12px;
  height: 12px;
  margin: 16px 0 0 20px;
}

.image_10 {
  position: absolute;
  left: 10px;
  top: 7px;
  width: 20px;
  height: 22px;
}

.text_15 {
  width: 37px;
  height: 18px;
  overflow-wrap: break-word;
  color: rgba(24, 48, 172, 1);
  font-size: 24px;
  font-family: DIN-Black;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 29px;
  margin: 20px 0 0 228px;
}

.text_16 {
  width: 28px;
  height: 42px;
  overflow-wrap: break-word;
  color: rgba(24, 48, 172, 1);
  font-size: 57px;
  font-family: DIN-Black;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 29px;
  margin: 19px 0 0 8px;
}

.text-wrapper_12 {
  box-shadow: 6px 0px 5px 0px rgba(54, 83, 230, 0.32);
  background-image: linear-gradient(
    90deg,
    rgba(54, 83, 230, 1) 0,
    rgba(54, 83, 230, 1) 0,
    rgba(24, 48, 172, 1) 99.023438%,
    rgba(24, 48, 172, 1) 100%
  );
  border-radius: 0px 0px 22px 22px;
  height: 44px;
  width: 362px;
  margin: -14px 0 0 -3px;
}

.text_17 {
  width: 316px;
  height: 23px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin: 10px 0 0 25px;
}

.paragraph_6 {
  width: 293px;
  height: 122px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  line-height: 34px;
  margin: 24px 0 43px 45px;
}

.section_7 {
  width: 1200px;
  height: 304px;
  margin: 20px 0 72px 172px;
}

.group_4 {
  background-color: rgba(255, 255, 255, 1);
  width: 387px;
  height: 304px;
}

.box_11 {
  width: 364px;
  height: 90px;
  margin: 26px 0 0 -4px;
}

.box_12 {
  width: 286px;
  height: 90px;
}

.image-wrapper_7 {
  box-shadow: 3px 4px 2px 0px rgba(54, 83, 230, 0.78);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  height: 36px;
  border: 1px solid rgba(54, 83, 230, 1);
  margin-left: 26px;
  width: 36px;
  position: relative;
}

.thumbnail_12 {
  width: 12px;
  height: 12px;
  margin: 12px 0 0 19px;
}

.thumbnail_13 {
  position: absolute;
  left: 10px;
  top: 7px;
  width: 17px;
  height: 18px;
}

.text-wrapper_13 {
  box-shadow: 6px 0px 5px 0px rgba(54, 83, 230, 0.32);
  background-image: linear-gradient(
    90deg,
    rgba(54, 83, 230, 1) 0,
    rgba(54, 83, 230, 1) 0,
    rgba(24, 48, 172, 1) 99.023438%,
    rgba(24, 48, 172, 1) 100%
  );
  border-radius: 0px 0px 22px 22px;
  height: 44px;
  margin-top: 10px;
  width: 286px;
}

.paragraph_7 {
  width: 235px;
  height: 23px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin: 10px 0 0 25px;
}

.text_18 {
  width: 37px;
  height: 18px;
  overflow-wrap: break-word;
  color: rgba(24, 48, 172, 1);
  font-size: 24px;
  font-family: DIN-Black;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 29px;
  margin: 19px 0 0 4px;
}

.text_19 {
  width: 30px;
  height: 42px;
  overflow-wrap: break-word;
  color: rgba(24, 48, 172, 1);
  font-size: 57px;
  font-family: DIN-Black;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 29px;
  margin: 18px 0 0 7px;
}

.paragraph_8 {
  width: 294px;
  height: 123px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  line-height: 34px;
  margin: 26px 0 39px 44px;
}

.group_5 {
  background-color: rgba(255, 255, 255, 1);
  height: 304px;
  margin-left: 20px;
  width: 387px;
}

.section_8 {
  width: 363px;
  height: 90px;
  margin: 26px 0 0 -3px;
}

.group_6 {
  width: 327px;
  height: 90px;
}

.box_13 {
  width: 301px;
  height: 37px;
  margin-left: 26px;
}

.image-wrapper_8 {
  box-shadow: 3px 4px 2px 0px rgba(54, 83, 230, 0.78);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  height: 36px;
  border: 1px solid rgba(54, 83, 230, 1);
  width: 36px;
  position: relative;
}

.thumbnail_14 {
  width: 12px;
  height: 12px;
  margin: 15px 0 0 18px;
}

.image_11 {
  position: absolute;
  left: 10px;
  top: 6px;
  width: 21px;
  height: 20px;
}

.text_20 {
  width: 37px;
  height: 18px;
  overflow-wrap: break-word;
  color: rgba(24, 48, 172, 1);
  font-size: 24px;
  font-family: DIN-Black;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 29px;
  margin-top: 19px;
}

.text-wrapper_14 {
  box-shadow: 6px 0px 5px 0px rgba(54, 83, 230, 0.32);
  background-image: linear-gradient(
    90deg,
    rgba(54, 83, 230, 1) 0,
    rgba(54, 83, 230, 1) 0,
    rgba(24, 48, 172, 1) 99.023438%,
    rgba(24, 48, 172, 1) 100%
  );
  border-radius: 0px 0px 22px 22px;
  height: 44px;
  margin-top: 9px;
  width: 310px;
}

.paragraph_9 {
  width: 210px;
  height: 23px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin: 10px 0 0 26px;
}

.text_21 {
  width: 28px;
  height: 42px;
  overflow-wrap: break-word;
  color: rgba(24, 48, 172, 1);
  font-size: 57px;
  font-family: DIN-Black;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 29px;
  margin-top: 18px;
}

.text-wrapper_15 {
  width: 280px;
  height: 87px;
  margin: 26px 0 75px 45px;
}

.paragraph_10 {
  width: 280px;
  height: 87px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  line-height: 34px;
}

.group_7 {
  background-color: rgba(255, 255, 255, 1);
  height: 304px;
  margin-left: 19px;
  width: 387px;
}

.box_14 {
  width: 363px;
  height: 90px;
  margin: 26px 0 0 -3px;
}

.box_15 {
  width: 251px;
  height: 90px;
}

.image-wrapper_9 {
  box-shadow: 3px 4px 2px 0px rgba(54, 83, 230, 0.78);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  height: 36px;
  border: 1px solid rgba(54, 83, 230, 1);
  margin-left: 26px;
  width: 36px;
  position: relative;
}

.thumbnail_15 {
  width: 12px;
  height: 12px;
  margin: 8px 0 0 17px;
}

.thumbnail_16 {
  position: absolute;
  left: 9px;
  top: 7px;
  width: 18px;
  height: 19px;
}

.text-wrapper_16 {
  box-shadow: 6px 0px 5px 0px rgba(54, 83, 230, 0.32);
  background-image: linear-gradient(
    90deg,
    rgba(54, 83, 230, 1) 0,
    rgba(54, 83, 230, 1) 0,
    rgba(24, 48, 172, 1) 99.023438%,
    rgba(24, 48, 172, 1) 100%
  );
  border-radius: 0px 0px 22px 22px;
  height: 44px;
  margin-top: 10px;
  width: 251px;
}

.text_22 {
  width: 93px;
  height: 23px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin: 10px 0 0 25px;
}

.text_23 {
  width: 37px;
  height: 18px;
  overflow-wrap: break-word;
  color: rgba(24, 48, 172, 1);
  font-size: 24px;
  font-family: DIN-Black;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 29px;
  margin: 19px 0 0 39px;
}

.text_24 {
  width: 28px;
  height: 42px;
  overflow-wrap: break-word;
  color: rgba(24, 48, 172, 1);
  font-size: 57px;
  font-family: DIN-Black;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 29px;
  margin: 18px 0 0 8px;
}

.text-wrapper_17 {
  width: 195px;
  height: 88px;
  margin: 26px 0 74px 45px;
}

.paragraph_11 {
  width: 195px;
  height: 88px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  line-height: 34px;
}

.image_12 {
  width: 1920px;
  height: 196px;
  margin-top: 118px;
}

.box_16 {
  width: 363px;
  height: 45px;
  margin: 125px 0 0 790px;
}

.section_9 {
  background-image: linear-gradient(
    67deg,
    rgba(255, 197, 98, 0.18) 0,
    rgba(255, 197, 98, 0.18) 0,
    rgba(255, 120, 60, 0.18) 100%,
    rgba(255, 120, 60, 0.18) 100%
  );
  width: 15px;
  height: 15px;
  margin-top: 22px;
}

.text_25 {
  width: 184px;
  height: 45px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 48px;
  font-family: PingFang-SC-Heavy;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 43px;
  margin-left: 14px;
}

.section_10 {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(51, 51, 51, 1);
  margin: 18px 0 0 21px;
}

.image-wrapper_10 {
  width: 118px;
  height: 21px;
  margin: 4px 0 0 1px;
}

.thumbnail_17 {
  width: 17px;
  height: 11px;
  margin-left: 39px;
}

.image_13 {
  width: 118px;
  height: 3px;
  margin-top: 7px;
}

.box_17 {
  width: 363px;
  height: 46px;
  margin: 191px 0 0 790px;
}

.group_8 {
  background-image: linear-gradient(
    67deg,
    rgba(255, 197, 98, 0.18) 0,
    rgba(255, 197, 98, 0.18) 0,
    rgba(255, 120, 60, 0.18) 100%,
    rgba(255, 120, 60, 0.18) 100%
  );
  width: 15px;
  height: 15px;
  margin-top: 22px;
}

.text_26 {
  width: 181px;
  height: 46px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 48px;
  font-family: PingFang-SC-Heavy;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 43px;
  margin-left: 16px;
}

.group_9 {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(51, 51, 51, 1);
  margin: 18px 0 0 22px;
}

.image-wrapper_11 {
  width: 118px;
  height: 21px;
  margin: 4px 0 0 1px;
}

.thumbnail_18 {
  width: 17px;
  height: 11px;
  margin-left: 39px;
}

.image_14 {
  width: 118px;
  height: 3px;
  margin-top: 7px;
}

.box_18 {
  position: relative;
  width: 1920px;
  height: 819px;
  background: url(../img/d25b2a1eb6c1c0001f2b6a3ce8abc878.png)
    100% no-repeat;
  background-size: 100% 100%;
  margin: 100px 0 70px 0;
}

.block_9 {
  background-color: rgba(255, 255, 255, 1);
  width: 1200px;
  min-height: 542px;
  height: auto;
  margin: 110px 0 0 360px;
  overflow: visible; /* 允许图片向上溢出白色卡片 */
}

.box_19 {
  position: relative;
  display: block;
  width: 1161px;
  height: auto;
  min-height: 422px;
  margin: -22px 0 0 40px;
  overflow: visible;
}

.group_10 {
  width: 720px;          /* 固定左侧文字区宽度，为右侧370px图片让出空间 */
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.group_10 .teacher-info{
  width: 100%;
}
.group_10 .teacher-info .section_11{
  margin-bottom: 10px;
}

.section_11 {
  width: 269px;
  height: 34px;
  margin-left: 3px;
}

.text_27 {
  width: 67px;
  height: 28px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 30px;
  font-family: PingFang-SC-Heavy;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin-top: 3px;
}

.text-wrapper_18 {
  background-image: linear-gradient(
    90deg,
    rgba(255, 196, 98, 1) 0,
    rgba(255, 196, 98, 1) 0,
    rgba(255, 122, 61, 1) 100%,
    rgba(255, 122, 61, 1) 100%
  );
  border-radius: 17px;
  height: 34px;
  width: 143px;
}

.text_28 {
  width: 117px;
  height: 23px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin: 6px 0 0 14px;
}

.image_15 {
  width: 786px;
  height: 1px;
  margin: 28px 0 0 3px;
}

.section_12 {
  width: 100%;
  height: auto;
  margin-top: 26px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

/* 圆点列：竖向排列，跟随文字行高自动间距 */
.section_13 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  /* 第一个圆点与第一行文字中线对齐：line-height=34px，圆点6px，偏移 (34-6)/2=14px */
  padding-top: 14px;
  width: 6px;
  flex-shrink: 0;
}

.section_14 {
  background-color: rgba(24, 48, 172, 1);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

/* 第二个圆点：与第二段文字首行对齐；两段文字之间有一个空行（34px），每段约2行(68px)，共68+34=102px间距 */
.section_15 {
  background-color: rgba(24, 48, 172, 1);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin-top: 96px;
}

.paragraph_12 {
  width: 100%;
  height: auto;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  line-height: 34px;
}

.group_11 {
  background-image: linear-gradient(
    180deg,
    rgba(255, 196, 98, 1) 0,
    rgba(255, 196, 98, 1) 0,
    rgba(255, 122, 61, 1) 100%,
    rgba(255, 122, 61, 1) 100%
  );
  width: 369px;
  height: 422px;
}

/* 将 block_9 设为定位容器，使 group_11 可绝对定位 */
.block_9 { position: relative; }

/* group_11 右侧图片区：绝对定位紧贴 block_9 右侧，图片向上溢出 */
.block_9 .teacher-carousel .paragraph_12,
.block_9 .paragraph_12 {
  width: 100% !important;
  max-width: 680px;
  flex: 1;
  min-width: 0;
  color: rgba(51,51,51,1);
  line-height: 34px;
  font-size: 20px;
}

/* group_11 右侧图片区：绝对定位紧贴 block_9 右侧，图片向上溢出 */
.block_9 .group_11 {
  position: absolute;
  right: 0;
  top: 0;               /* 从 block_9 顶部开始，高度占满整个卡片 */
  bottom: 0;
  width: 370px;
  overflow: visible;    /* 允许图片向上溢出 */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: none;
}

/* 梯形背景：左边斜切（上窄下宽），右边垂直；用伪元素实现，不裁剪图片 */
.block_9 .group_11::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg,
    rgba(255, 196, 98, 1) 0%,
    rgba(255, 122, 61, 1) 100%
  );
  /* 左上缩进80px → 左下全宽 → 右边垂直：左侧斜边梯形 */
  clip-path: polygon(80px 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

/* 图片向上溢出，超出白色卡片顶部 */
.block_9 .image_22 {
  position: relative;
  z-index: 1;
  width: 340px;
  height: auto;
  object-fit: cover;
  object-position: top;
  margin-bottom: 0;
  transform: translateY(-23px);  /* 向上溢出白色卡片顶部 */
}

.box_20 {
  width: 1200px;
  height: 140px;
  margin-top: 2px;
  position: relative;
  z-index: 2;
}

.box_21 {
  position: relative;
  width: 291px;
  height: 140px;
  background: url(../img/73cdab333516db12f04d6a7eca68200b.png)
    0px 0px no-repeat;
  background-size: 292px 140px;
}

.image_16 {
  width: 101px;
  height: 131px;
  margin: 8px 0 0 7px;
}

.text-group_1 {
  width: 156px;
  height: 93px;
  margin: 21px 7px 0 0;
}

.text_29 {
  width: 73px;
  height: 25px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 25px;
  font-family: PingFang-SC-Heavy;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 36px;
  margin-left: 3px;
}

.paragraph_13 {
  width: 156px;
  height: 54px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  line-height: 34px;
  margin-top: 14px;
}

.image_17 {
  position: absolute;
  left: 0;
  top: 136px;
  width: 291px;
  height: 4px;
}

.box_22 {
  width: 291px;
  height: 140px;
  background: url(../img/789d6c27b6a41aae7c1d9c672effa320.png) -1px
    0px no-repeat;
  background-size: 293px 140px;
  margin-left: 12px;
}

.image_18 {
  width: 118px;
  height: 126px;
  margin-top: 14px;
}

.text-group_2 {
  width: 137px;
  height: 93px;
  margin: 21px 26px 0 10px;
}

.text_30 {
  width: 48px;
  height: 25px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 25px;
  font-family: PingFang-SC-Heavy;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 36px;
  margin-left: 4px;
}

.paragraph_14 {
  width: 137px;
  height: 54px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  line-height: 34px;
  margin-top: 14px;
}

.box_23 {
  width: 291px;
  height: 140px;
  background: url(../img/32bf9696e674e2dbf8dfbe86e3753bb2.png) -1px
    0px no-repeat;
  background-size: 293px 140px;
  margin-left: 12px;
}

.image_19 {
  width: 129px;
  height: 126px;
  margin: 14px 0 0 -1px;
}

.text-group_3 {
  width: 136px;
  height: 92px;
  margin: 22px 26px 0 1px;
}

.text_31 {
  width: 74px;
  height: 24px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 25px;
  font-family: PingFang-SC-Heavy;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 36px;
  margin-left: 2px;
}

.paragraph_15 {
  width: 136px;
  height: 54px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  line-height: 34px;
  margin-top: 14px;
}

.box_24 {
  width: 291px;
  height: 140px;
  background: url(../img/1b171d6f7b1eb862f2faaffa14f2ebec.png) -1px
    0px no-repeat;
  background-size: 292px 140px;
  margin-left: 12px;
}

.image-text_1 {
  width: 269px;
  height: 131px;
  margin: 9px 0 0 -1px;
}

.image_20 {
  width: 132px;
  height: 131px;
}

.text-group_4 {
  width: 137px;
  height: 110px;
  margin-top: 13px;
}

.text_32 {
  width: 49px;
  height: 24px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 25px;
  font-family: PingFang-SC-Heavy;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 36px;
  margin-left: 2px;
}

.text-wrapper_19 {
  width: 137px;
  height: 77px;
  overflow-wrap: break-word;
  font-size: 0;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  line-height: 34px;
  margin-top: 9px;
}

.paragraph_16 {
  width: 137px;
  height: 77px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  line-height: 34px;
}

.paragraph_17 {
  width: 137px;
  height: 77px;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: normal;
  text-align: left;
  line-height: 29px;
}

.image_21 {
  width: 1194px;
  height: 13px;
  margin: 15px 0 139px 363px;
}

/* legacy image_22 rules removed to avoid conflicting absolute placement */

/* 修复 teacher block 中图片与布局被覆盖的问题：使用更高优先级选择器覆盖内联/全局样式 */
.block_9 .teacher-carousel .image_15,
.block_9 .image_15 {
  width: 420px !important;
  height: auto !important;
  margin: 28px 0 0 3px !important;
  display: block;
}

.block_9 .teacher-carousel .paragraph_12,
.block_9 .paragraph_12 {
  width: 100% !important;
  max-width: 680px;
  flex: 1;
  min-width: 0;
  color: rgba(51,51,51,1);
}

/* ══════════════════════════════════════
   教师缩略图底栏 box_20 · teacher-thumbs-bar
   ══════════════════════════════════════ */

/* 整体容器：品牌深蓝底色，宽度撑满 block_9 */
.box_20.teacher-thumbs-bar {
  position: relative;
  width: 1200px;
  margin-left: -0px;          /* 从 block_9 左边缘开始 */
  background-color: rgba(24, 48, 172, 1);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  z-index: 2;
}

/* 箭头 + 卡片的横排 */
.teacher-thumbs-bar .thumb-arrow {
  position: absolute;
  top: 0;
  bottom: 28px;               /* 底部留出指示条高度 */
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: color .2s, background .2s;
  user-select: none;
}
.teacher-thumbs-bar .thumb-arrow:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.teacher-thumbs-bar .thumb-prev { left: 0; }
.teacher-thumbs-bar .thumb-next { right: 0; }

/* 卡片列表：两侧各留 40px 给箭头 */
.teacher-thumbs-bar .thumb-list {
  display: flex;
  flex-direction: row;
  margin: 0 40px;
  flex: 1;
}

/* 单个教师卡片 */
.teacher-thumbs-bar .thumb {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background .2s;
}
.teacher-thumbs-bar .thumb:last-child {
  border-right: none;
}
.teacher-thumbs-bar .thumb:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* 激活卡片：顶部橙色高亮线 */
.teacher-thumbs-bar .thumb.active {
  background: rgba(255, 255, 255, 0.1);
}
.teacher-thumbs-bar .thumb.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 196, 98, 1), rgba(255, 122, 61, 1));
}

/* 教师照片 */
.teacher-thumbs-bar .thumb img {
  width: 72px;
  height: 92px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  flex-shrink: 0;
}

/* 姓名 + 简介 */
.teacher-thumbs-bar .thumb .text-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.teacher-thumbs-bar .thumb .thumb-name {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  line-height: 1.3;
}
.teacher-thumbs-bar .thumb .thumb-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

/* 底部进度指示条 */
.teacher-thumbs-bar .thumb-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 7px 0 9px;
}
.teacher-thumbs-bar .thumb-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background .3s, width .3s;
}
.teacher-thumbs-bar .thumb-dot.active {
  width: 44px;
  background: linear-gradient(90deg, rgba(255, 196, 98, 1), rgba(255, 122, 61, 1));
}





.text-wrapper_20 {
  height: 143px;
  background-size: 100% 100%;
  width: 143px;
  position: absolute;
  left: 41px;
  top: 83px;
}

.text_34 {
  width: 93px;
  height: 23px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 34px;
  margin: 112px 0 0 -242px;
}

.text-wrapper_21 {
  background-image: linear-gradient(
    67deg,
    rgba(255, 197, 98, 1) 0,
    rgba(255, 197, 98, 1) 0,
    rgba(255, 120, 60, 1) 100%,
    rgba(255, 120, 60, 1) 100%
  );
  height: 29px;
  width: 29px;
  position: absolute;
  left: 768px;
  top: 1330px;
}

.text_35 {
  width: 21px;
  height: 15px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 43px;
  margin: 6px 0 0 5px;
}

.image_24 {
  position: absolute;
  left: 1071px;
  top: 1322px;
  width: 23px;
  height: 15px;
}

.text-wrapper_22 {
  background-image: linear-gradient(
    67deg,
    rgba(255, 197, 98, 1) 0,
    rgba(255, 197, 98, 1) 0,
    rgba(255, 120, 60, 1) 100%,
    rgba(255, 120, 60, 1) 100%
  );
  height: 29px;
  width: 29px;
  position: absolute;
  left: 768px;
  top: 1887px;
}

.text_36 {
  width: 21px;
  height: 15px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 43px;
  margin: 6px 0 0 5px;
}

.image_25 {
  position: absolute;
  left: 1071px;
  top: 1879px;
  width: 23px;
  height: 15px;
}

.text-wrapper_23 {
  background-image: linear-gradient(
    67deg,
    rgba(255, 197, 98, 1) 0,
    rgba(255, 197, 98, 1) 0,
    rgba(255, 120, 60, 1) 100%,
    rgba(255, 120, 60, 1) 100%
  );
  height: 29px;
  width: 29px;
  position: absolute;
  left: 768px;
  top: 3200px;
}

.text_37 {
  width: 21px;
  height: 15px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 43px;
  margin: 6px 0 0 5px;
}

.image_26 {
  position: absolute;
  left: 1071px;
  top: 3192px;
  width: 23px;
  height: 15px;
}

.text-wrapper_24 {
  background-image: linear-gradient(
    67deg,
    rgba(255, 197, 98, 1) 0,
    rgba(255, 197, 98, 1) 0,
    rgba(255, 120, 60, 1) 100%,
    rgba(255, 120, 60, 1) 100%
  );
  height: 29px;
  width: 29px;
  position: absolute;
  left: 768px;
  top: 3436px;
}

.text_38 {
  width: 21px;
  height: 15px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-family: PingFang-SC-Bold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 43px;
  margin: 6px 0 0 5px;
}

.image_27 {
  position: absolute;
  left: 1071px;
  top: 3428px;
  width: 23px;
  height: 15px;
}

/* ══════════════════════════════════════
   课程推荐 coursebox & coureritem
   ══════════════════════════════════════ */

/* 外层容器 */
.coursebox {
  width: 1200px;
  margin: 0 auto 80px;
  box-sizing: border-box;
  padding-top: 60px;
}
.coursebox .titlebox {
  padding: 0 0 50px;
}

/* 4列 × 2行 网格 */
.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0;
  margin-top: 40px;
}

/* 单个课程卡片 */
.coureritem {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.coureritem:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

/* 封面图区域 */
.coureritem-cover {
  width: 100%;
  aspect-ratio: 270 / 180;
  overflow: hidden;
}
.coureritem-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.coureritem:hover .coureritem-cover img {
  transform: scale(1.04);
}

/* 底部文字信息 */
.coureritem-info {
  padding: 16px 18px 18px;
}

/* 课程名称 */
.coureritem-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0 0 12px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 价格行 */
.coureritem-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #e63a1e;
}
.coureritem-price .price-symbol {
  font-size: 16px;
  font-weight: 700;
}
.coureritem-price .price-num {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-family: 'DIN Alternate', 'PingFang-SC-Heavy', sans-serif;
}
