@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

.banner {
  height: 700px;
  background-image: url(../../images/overview/banner.png);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner .white-logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.banner .banner-card {
  margin-top: 48px;
}
.banner .banner-card .stat-list {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.banner .banner-card .stat-item {
  width: 170.67px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  background: rgba(251, 252, 248, 0.9);
  border-radius: 16px;
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}
.banner .banner-card .stat-item .stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 0;
  line-height: 36px;
}
.banner .banner-card .stat-item .stat-number .stat-value {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 30px;
  font-weight: 700;
  color: #1b5236;
}
.banner .banner-card .stat-item .stat-number .stat-unit {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 14px;
  font-weight: 400;
  color: #6b7d70;
}
.banner .banner-card .stat-item .stat-title {
  margin: 12px 0 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #1c2b22;
}
.banner .banner-card .stat-item .stat-desc {
  margin: 4px 0 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #6b7d70;
}
.banner .banner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  gap: 58px;
}
.banner .banner-btn .banner-btn-item {
  padding: 16px 48px;
  border-radius: 36px;
  color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
}

.title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.title .english-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4.2px;
  color: #0d62bd;
}
.title .english-title::before, .title .english-title::after {
  content: "";
  width: 32px;
  height: 1px;
  background: #0d62bd;
}
.title .large-title {
  font-size: 36px;
  font-weight: 500;
  color: #1c2b22;
  text-align: center;
}
.title .sub-title {
  font-size: 20px;
  color: #333333;
  text-align: center;
}

.white-title {
  color: #fff;
}
.white-title .english-title {
  color: #fff;
}
.white-title .english-title::before, .white-title .english-title::after {
  background: #fff;
}
.white-title .large-title {
  color: #fff;
}

.part_1 {
  background-image: url(../../images/overview/part_1_bg.png);
  background-size: cover;
  padding: 80px 0;
}
.part_1 .part_1-content {
  width: 1112px;
  margin: 0 auto;
}
.part_1 .part_1-content .feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 40px;
}
.part_1 .part_1-content .feature-item {
  width: 357px;
  height: 310px;
  perspective: 1000px;
}
.part_1 .part_1-content .feature-item:hover .feature-inner {
  transform: rotateY(180deg);
}
.part_1 .part_1-content .feature-link {
  display: block;
  height: 100%;
  text-decoration: none;
}
.part_1 .part_1-content .feature-inner {
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
.part_1 .part_1-content .feature-face {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.part_1 .part_1-content .feature-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
}
.part_1 .part_1-content .feature-front .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c4dcfe 0%, #e6f0fe 100%);
}
.part_1 .part_1-content .feature-front .feature-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.part_1 .part_1-content .feature-front .feature-text .feature-spark {
  font-size: 16px;
  line-height: 24px;
  color: #0d62bd;
}
.part_1 .part_1-content .feature-front .feature-text .feature-title {
  margin: 10px 0 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  color: #0d62bd;
}
.part_1 .part_1-content .feature-front .feature-more {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 28px;
  color: #333333;
}
.part_1 .part_1-content .feature-back {
  padding: 30px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #c4dcfe 0%, #e6f0fe 100%);
  outline: 1px solid #0d62bd;
  outline-offset: -1px;
  transform: rotateY(180deg);
}
.part_1 .part_1-content .feature-back .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  outline: 1px solid #0d62bd;
  outline-offset: -1px;
}
.part_1 .part_1-content .feature-back .feature-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.part_1 .part_1-content .feature-back .feature-heading .feature-subtitle {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #0d62bd;
}
.part_1 .part_1-content .feature-back .feature-heading .feature-spark {
  font-size: 16px;
  line-height: 24px;
  color: #045afe;
}
.part_1 .part_1-content .feature-back .feature-desc {
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #333333;
}

.part_2 {
  padding: 80px 0 100px;
  background-image: url(../../images/overview/part_2_bg.png);
  background-size: cover;
}
.part_2 .title {
  position: relative;
  width: 1104px;
  margin: 0 auto;
}
.part_2 .title .english-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4.2px;
  color: #0d62bd;
}
.part_2 .title .english-title::before, .part_2 .title .english-title::after {
  content: "";
  width: 32px;
  height: 1px;
  background: #0d62bd;
}
.part_2 .title .large-title {
  font-size: 36px;
  font-weight: 500;
  color: #333333;
}
.part_2 .title .sub-title {
  font-size: 20px;
  color: #333333;
}
.part_2 .map-wrapper {
  display: flex;
  gap: 50px;
  width: 1200px;
  margin: 40px auto 0;
}
.part_2 .map-wrapper .map-left {
  width: 643px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.part_2 .map-wrapper .map-left img {
  width: 438px;
  height: 435px;
}
.part_2 .map-wrapper .map-right {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: -1px;
}
.part_2 .map-wrapper .map-right .district-title {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  color: #333333;
}
.part_2 .map-wrapper .map-right .district-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
  grid-template-columns: repeat(2, 1fr);
}
.part_2 .map-wrapper .map-right .district-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #444b54;
  transition: all 0.3s ease;
}
.part_2 .map-wrapper .map-right .district-item .district-arrow {
  width: 18px;
  height: 17px;
  flex-shrink: 0;
  position: relative;
}
.part_2 .map-wrapper .map-right .district-item .district-arrow::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #faa810;
  border-right: 2px solid #faa810;
  transform: translateY(-50%) rotate(45deg);
}
.part_2 .map-wrapper .map-right .district-item .school-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2f7ec9;
  flex-shrink: 0;
}
.part_2 .map-wrapper .map-right .district-item.active {
  background: linear-gradient(180deg, #4b95dd 0%, #8fcaff 100%);
  color: #ffffff;
}
.part_2 .map-wrapper .map-right .district-item.active .district-arrow::before {
  border-color: #ffffff;
}
.part_2 .school-panel {
  width: 1200px;
  margin: 20px auto 0;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}
.part_2 .school-panel .school-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.part_2 .school-panel .school-header .school-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4b95dd 0%, #8fcaff 100%);
  flex-shrink: 0;
}
.part_2 .school-panel .school-header .school-badge .school-icon {
  position: relative;
  width: 18px;
  height: 16px;
}
.part_2 .school-panel .school-header .school-badge .school-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 6px solid #ffffff;
}
.part_2 .school-panel .school-header .school-badge .school-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2px;
  width: 14px;
  height: 8px;
  background: #ffffff;
  border-radius: 1px;
}
.part_2 .school-panel .school-header .school-title {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  color: #333333;
}
.part_2 .school-panel .map-swiper {
  overflow: hidden;
}
.part_2 .school-panel .school-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.part_2 .school-panel .school-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
}
.part_2 .school-panel .school-item .district-arrow {
  width: 18px;
  height: 17px;
  flex-shrink: 0;
  position: relative;
}
.part_2 .school-panel .school-item .district-arrow::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #faa810;
  border-right: 2px solid #faa810;
  transform: translateY(-50%) rotate(45deg);
}
.part_2 .school-panel .school-item .school-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2f7ec9;
  flex-shrink: 0;
}
.part_2 .school-panel .school-note {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  color: #999999;
  line-height: 21px;
}
.part_2 .school-panel .school-note .note-label {
  flex-shrink: 0;
}
.part_2 .school-panel .school-note .note-text {
  margin: 0;
}

.map_box {
  width: 552px;
  height: 552px;
  background: url("//www.bjhdedu.cn/zxgk/images/gk_map.png") no-repeat top center;
  position: relative;
  transform: scale(0.8);
}

.map_box .map_box_bg {
  background: url("//www.bjhdedu.cn/zxgk/images/wqsjt_map.png") no-repeat -500px -500px;
}

.map_box .map_box_01 {
  width: 320px;
  height: 282px;
  background-position: 0px 0px;
  position: absolute;
  left: -23px;
  top: 64px;
}

.map_box .map_box_02 {
  width: 254px;
  height: 350px;
  background-position: -332px 10px;
  position: absolute;
  left: 157px;
  top: -13px;
}

.map_box .map_box_03 {
  width: 234px;
  height: 257px;
  background-position: -592px 14px;
  position: absolute;
  left: 136px;
  top: 243px;
}

.map_box .map_box_04 {
  width: 197px;
  height: 220px;
  background-position: -825px 8px;
  position: absolute;
  left: 239px;
  top: 188px;
}

.map_box .map_box_05 {
  width: 152px;
  height: 198px;
  background-position: -1018px 8px;
  position: absolute;
  left: 310px;
  top: 179px;
}

.map_box .map_box_06 {
  width: 135px;
  height: 144px;
  background-position: -6px -277px;
  position: absolute;
  left: 354px;
  top: 176px;
}

.map_box .map_box_07 {
  width: 135px;
  height: 144px;
  background-position: -150px -277px;
  position: absolute;
  left: 397px;
  top: 161px;
}

.map_box .map_box_08 {
  width: 135px;
  height: 144px;
  background-position: -605px -237px;
  position: absolute;
  left: 227px;
  top: 400px;
}

.map_box .map_box_09 {
  width: 100px;
  height: 140px;
  background-position: -758px -253px;
  position: absolute;
  left: 310px;
  top: 354px;
}

.map_box .map_box_10 {
  width: 100px;
  height: 139px;
  background-position: -882px -253px;
  position: absolute;
  left: 322px;
  top: 319px;
}

.map_box .map_box_11 {
  width: 100px;
  height: 139px;
  background-position: -990px -253px;
  position: absolute;
  left: 360px;
  top: 317px;
}

.map_box .map_box_12 {
  width: 100px;
  height: 139px;
  background-position: -1192px 0px;
  position: absolute;
  left: 408px;
  top: 251px;
}

.map_box .map_box_13 {
  width: 100px;
  height: 139px;
  background-position: -1330px -134px;
  position: absolute;
  left: 296px;
  top: 414px;
}

.map_box .map_box_14 {
  width: 100px;
  height: 139px;
  background-position: -1337px -260px;
  position: absolute;
  left: 367px;
  top: 428px;
}

.map_box .map_box_15 {
  width: 100px;
  height: 139px;
  background-position: -1336px 0px;
  position: absolute;
  left: 365px;
  top: 359px;
}

.map_box .map_box_16 {
  width: 100px;
  height: 139px;
  background-position: -1185px -235px;
  position: absolute;
  left: 391px;
  top: 331px;
}

.map_box .map_box_17 {
  width: 100px;
  height: 88px;
  background-position: -1182px -132px;
  position: absolute;
  left: 414px;
  top: 316px;
}

.map_box .xq_map {
  position: absolute;
  cursor: pointer;
  z-index: 5;
}

.map_box .sjtxq {
  width: 155px;
  height: 130px;
  top: 75px;
  left: 79px;
}

.map_box .szxbwxq {
  width: 95px;
  height: 145px;
  top: 81px;
  right: 96px;
}

.map_box .sjqxq {
  width: 100px;
  height: 120px;
  top: 75px;
  right: 50px;
}

.map_box .qlqxq {
  width: 80px;
  height: 43px;
  top: 82px;
  right: 63px;
}

.map_box .sdxq .sdxq_one1 {
  width: 30px;
  height: 53px;
  position: absolute;
  left: 51px;
  top: 45px;
}

.map_box .sdxq .sdxq_one2 {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 72px;
  top: 105px;
}

.map_box .qhxq {
  width: 20px;
  height: 59px;
  left: 51px;
  top: 38px;
}

.map_box .xsqxq {
  width: 60px;
  height: 72px;
  left: 42px;
  top: 28px;
}

.map_box .ydlxq {
  width: 46px;
  height: 40px;
  top: 40px;
  left: 61px;
}

.map_box .blzxq {
  width: 24px;
  height: 87px;
  top: 17px;
  left: 30px;
}

.map_box .hdxq {
  width: 47px;
  height: 44px;
  top: 16px;
  left: 28px;
}

.map_box .zgcxq {
  width: 28px;
  height: 30px;
  top: 20px;
  left: 41px;
}

.map_box .xylxq {
  width: 47px;
  height: 45px;
  top: 35px;
  left: 23px;
}

.map_box .wslxq {
  width: 65px;
  height: 25px;
  top: 63px;
  left: 12px;
}

.map_box .yfdxq {
  width: 47px;
  height: 25px;
  top: 50px;
  left: 12px;
}

.map_box .zzyxq {
  width: 36px;
  height: 76px;
  left: 15px;
  top: 33px;
}

.map_box .btpzxq {
  width: 66px;
  height: 41px;
  left: 20px;
  top: 49px;
}

.map_box .hylxq {
  width: 52px;
  height: 29px;
  left: 25px;
  top: 25px;
}

.part_3 {
  padding: 76px 0 76px;
  background-image: url(../../images/overview/part_3_bg.png);
  background-size: cover;
}
.part_3 .part_3-content {
  display: flex;
  gap: 40px;
  width: 1200px;
  margin: 40px auto 0;
}
.part_3 .part_3-content .rank-card {
  width: 580px;
  border-radius: 16px;
  background: #fbfcf8;
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  outline: 1px solid rgba(0, 0, 0, 0.05);
  outline-offset: -1px;
  overflow: hidden;
}
.part_3 .part_3-content .rank-header {
  position: relative;
  height: 128px;
  overflow: hidden;
}
.part_3 .part_3-content .rank-header .rank-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.part_3 .part_3-content .rank-header .rank-header-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 20, 16, 0.7) 0%, rgba(11, 25, 19, 0.45) 50%, rgba(15, 43, 30, 0.2) 100%);
}
.part_3 .part_3-content .rank-header .rank-header-info {
  position: absolute;
  left: 20px;
  bottom: 15px;
}
.part_3 .part_3-content .rank-header .rank-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.part_3 .part_3-content .rank-header .rank-header-title .rank-header-icon {
  font-size: 18px;
  font-weight: 700;
  color: #d8b968;
}
.part_3 .part_3-content .rank-header .rank-header-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #f5f7f0;
}
.part_3 .part_3-content .rank-header .rank-header-period {
  margin: 0;
  font-size: 11px;
  line-height: 21px;
  color: rgba(245, 247, 240, 0.7);
}
.part_3 .part_3-content .rank-list {
  margin: 0;
  padding: 0 20px;
  list-style: none;
}
.part_3 .part_3-content .rank-list .rank-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.part_3 .part_3-content .rank-list .rank-item:last-child {
  border-bottom: none;
}
.part_3 .part_3-content .rank-list .rank-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.part_3 .part_3-content .rank-list .rank-num-1 {
  background: #c70915;
}
.part_3 .part_3-content .rank-list .rank-num-2 {
  background: #2f7ec9;
}
.part_3 .part_3-content .rank-list .rank-num-3 {
  background: #62bdb4;
}
.part_3 .part_3-content .rank-list .rank-info {
  flex: 1;
  min-width: 0;
}
.part_3 .part_3-content .rank-list .rank-info .rank-name {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  color: #1c2b22;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.part_3 .part_3-content .rank-list .rank-info .rank-meta {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 19px;
  color: #6b7d70;
}
.part_3 .part_3-content .rank-list-site .rank-item {
  height: 74px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.part_3 .part_3-content .rank-list-site .rank-item:last-child {
  border-bottom: none;
}
.part_3 .part_3-content .rank-list-site .rank-item .rank-name {
  flex: 1;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  color: #1c2b22;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.part_3 .part_3-content .rank-list-site .rank-item .rank-bar {
  width: 90px;
  height: 6px;
  border-radius: 999px;
  background: rgba(63, 138, 95, 0.15);
  flex-shrink: 0;
  overflow: hidden;
}
.part_3 .part_3-content .rank-list-site .rank-item .rank-bar .rank-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: rgba(63, 138, 95, 0.4);
}

.part_4 {
  padding: 80px 0 100px;
  background-image: url(../../images/overview/part_4_bg.png);
  background-size: cover;
}
.part_4 .title {
  width: 1104px;
  margin: 0 auto;
}
.part_4 .title .english-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4.2px;
  color: #0d62bd;
}
.part_4 .title .english-title::before, .part_4 .title .english-title::after {
  content: "";
  width: 32px;
  height: 1px;
  background: #0d62bd;
}
.part_4 .title .large-title {
  font-size: 36px;
  font-weight: 500;
  color: #1c2b22;
}
.part_4 .school-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1104px;
  margin: 20px auto 0;
}
.part_4 .school-filter .filter-tags {
  display: flex;
  gap: 8px;
}
.part_4 .school-filter .filter-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 17px;
  border-radius: 999px;
  background: #fbfcf8;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  font-size: 14px;
  color: #1c2b22;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.part_4 .school-filter .filter-tag.active {
  background: #62bdb4;
  outline-color: #62bdb4;
  color: #f5f7f0;
}
.part_4 .school-filter .filter-tag.active .icon {
  width: 24px;
  height: 24px;
  overflow: hidden; /* 隐藏原图 */
}
.part_4 .school-filter .filter-tag.active .icon img {
  width: 24px;
  height: 24px;
  transform: translateY(-100%); /* 把原图移出视野 */
  filter: drop-shadow(0 24px 0 #fff); /* 生成一个红色的影子，偏移距离与图片高度一致 */
}
.part_4 .school-filter .filter-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 17px;
  border-radius: 999px;
  background: #fbfcf8;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}
.part_4 .school-filter .filter-search .search-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.part_4 .school-filter .filter-search .search-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: 9px;
  height: 9px;
  border: 1.25px solid #6b7d70;
  border-radius: 50%;
}
.part_4 .school-filter .filter-search .search-icon::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 6px;
  height: 1.25px;
  background: #6b7d70;
  transform: rotate(45deg);
  transform-origin: right center;
}
.part_4 .school-filter .filter-search input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #333333;
  width: 140px;
}
.part_4 .school-filter .filter-search input::-moz-placeholder {
  color: #6b7d70;
}
.part_4 .school-filter .filter-search input::placeholder {
  color: #6b7d70;
}
.part_4 .school-grid {
  width: 1200px;
  margin: 0 auto;
}
.part_4 .school-grid .school-swiper {
  overflow: hidden;
  margin-top: 20px;
}
.part_4 .school-grid .school-swiper .swiper-wrapper .swiper-slide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-bottom: 24px;
}
.part_4 .school-grid .school-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-radius: 12px;
  background: #fbfcf8;
  outline: 1px solid rgba(0, 0, 0, 0.05);
  outline-offset: -1px;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}
.part_4 .school-grid .school-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.part_4 .school-grid .school-card .school-card-info {
  min-width: 0;
}
.part_4 .school-grid .school-card .school-card-info .school-card-name {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #1c2b22;
}
.part_4 .school-grid .school-card .school-card-info .school-card-type {
  margin: 0;
  font-size: 11px;
  line-height: 19px;
  color: #6b7d70;
}