  * {
    margin: 0;
    padding: 0;
}
.raise {
    height: 120px;
}
.section_banner{
  width: 100%;
  padding: 30px 0;
  background: #FFFFFF;
}
.w1200{
  width: 1200px;
  margin: 0 auto;
}
.section_title{
  font-weight: 700;
  font-size: 28px;
  color: #2A4365;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section_ul{
  width: 100%;
  background: #F9FBFF;
  box-shadow: 0px 4px 20px 0px rgba(15,52,96,0.1);
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #D4D4D4;
  padding: 30px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 30px;
}
.section_li{
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid #D8D8D8;
}
.section_list{
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.setion_name{
  font-weight: 400;
  font-size: 18px;
  color: #253858;
}
.setion_btn{
  font-weight: 400;
  font-size: 16px;
  color: #4C8CC3;
  cursor: pointer;
}
.setion_btn .arrow {
  display: inline-block;
  margin-left: 8px;             /* 和文字保持距离 */
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #4C8CC3;
}
.setion_time{
  font-weight: 400;
  font-size: 14px;
  color: #444444;
  margin-top: 10px;
}
.section_li:not(:first-child){
  margin-top: 30px;
}
.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 {
  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;
}