* {
    margin: 0;
    padding: 0;
}
.raise {
    height: 120px;
}
.section_banner{
  width: 100%;
  padding: 30px 0;
  background-color: #F0F2F4;
}
.w1400{
  width: 1400px;
  margin: 0 auto;
}
.input_content{
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 4px 6px -1px rgba(0,0,0,0.1), 0px 2px 4px -2px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
}
.input_link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.select_box {
  width: 120px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 10px;
  outline: none;
  font-size: 14px;
  background-color: #fff;
  box-sizing: border-box;
}

.search_box {
  display: flex;
  align-items: center;
  height: 42px;
  border: 1px solid #E4E4E4;
  border-radius: 50px;
  box-sizing: border-box;
}
.search_input {
  width: 280px;
  height: 40px;
  border: unset;
  border-right: unset;
  border-radius: 50px;
  padding: 0 12px;
  outline: none;
  box-sizing: border-box;
  font-size: 14px;
}
.search_btn {
  width: 100px;
  height: 40px;
  padding: 0 20px;
  border: 1px solid #ddd;
  border-radius: 50px;
  background-color: #172B84;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}
.search_btn:hover {
  background-color: #0069d9;
}
.section_title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.section_text{
  font-weight: 400;
  font-size: 24px;
  color: #333333;
}
.more_btn{
  font-weight: 400;
  font-size: 18px;
  color: #1D508D;
}
.area_ul{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
}
.area_li{
  padding: 8px 30px;
  font-weight: 400;
  font-size: 16px;
  color: #444444;
  border-radius: 50px;
  background-color: #fff;
  cursor: pointer;
  transition: all .2s;
}
.area_li:not(:first-child){
  margin-left: 20px;
}
.area_li.active {
  background: #172B84;
  color: #fff;
}
.school_banner{
  width: 100%;
  margin-top: 30px;
}
.school_title{
  display: flex;
  align-items: center;
}
.school_title .icon{
  width: 32px;
  height: 32px;
  display: block;
}
.school_title .icon img{
  width: 100%;
  height: 100%;
  display: block;
}
.school_title .title{
  font-weight: 400;
  font-size: 20px;
  color: #444444;
  margin: 0 10px;
}
.school_title .tip{
  font-weight: 400;
  font-size: 16px;
  color: #9E9E9E;
}
.school_ul{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row-gap: 20px;
  grid-column-gap: 50px;
  box-sizing: border-box;
  margin-top: 30px;
}

.school_li{
  width: 100%;
  height: 170px;
  background-color: #fff;
  border: 1px solid #E5E6EB;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.school_li img{
  width: 100%;
  height: 100%;
  display: block;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.page-item {
  min-width: 32px;
  height: 32px;
  border: 1px solid #E5E6EB;
  background: #fff;
  color: #444444;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
}

.page-item.active {
  background: #172B84;
  border-color: #172B84;
  color: #fff;
}

.page-item.disabled {
  color: #C9CDD4;
  cursor: not-allowed;
}
.page-summary {
  text-align: right;
  padding: 10px 0;
  color: #999;
}
.empty-data {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 0;
  color: #777;
  font-size: 14px;
}

.nav_list{
  background: #FFFFFF;
  box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
  border-radius: 6px;
  position: fixed;
  right: 10px;
  top: 180px;
}
.nav-li{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 16px 5px;
  box-sizing: border-box;
  cursor: pointer;
  min-width: 88px;
}
.nav-icon{
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
}
.nav-icon img{
  width: 100%;
  display: block;
}
.nav-name{
  font-weight: 500;
  font-size: 14px;
  color: #444444;
}
.nav-li:hover{
  background: linear-gradient( 225deg, #2A47CA 0%, #172B84 100%);
  border-radius: 6px;
}
.nav-li:hover .nav-name{
  color: #FFFFFF;
}
.nav-li.active{
  background: linear-gradient(225deg, #2A47CA 0%, #172B84 100%);
  border-radius: 6px;
}
.nav-li.active .nav-name{
  color: #FFFFFF;
}
.li-link{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}