.common-title{
  margin: 10px auto;
  border-bottom: 1px solid  #d7e3ef;
  padding-bottom: 18px;
  position: relative;
}
.common-title span{
  font-size: 30px;
  font-weight: bold;
  color: #2660a7;
  border-bottom: 4px solid #2660a7;
  padding-bottom: 16px;

}
.common-list{
  /* width: 100%; */
  margin-bottom: 30px;
}
.common-list .common-list-li{
  width: 100%;
  padding: 10px 0 ;
}
.common-list .common-list-li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.common-list .common-list-li a i{
  width: 5px;
  height: 5px;
  background-color: #333;
  border-radius: 3px;
  margin-right: 20px;
}
.common-list .common-list-li a p{
  width: 60%;
  margin-right: 20px;
  flex: 1;
}
.common-list .common-list-li a  span{
  width: 20%;
  color: #999999;
  text-align: right;
}
.common-list .common-list-li a:hover{
  color: #205da1;
}
.common-list .common-list-li a:hover i{
  background-color: #205da1;
}
/* 分页 */
.page-pag{
  margin: 30px 0;
  text-align: center;
}
/* 左导航列表页 */
.page-list-con{
  margin-top: 20px;
}
.page-list-right{
  width: 930px;
  float: right;
}
.list-box{
  margin-bottom: 30px;
}
/* 移动端 */
@media screen and (max-width: 1200px) {
  .page-list .page-content{
    padding:  0 10px;
  }
  .common-title span{
    font-size: 20px;
  }
  .common-list .common-list-li a span{
    width: 35%;
  }
  .page-list-right{
    width: 100%;
  }
  /* 导航 */
  .nav-mobile{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-mobile-ul{
    position: absolute;
    width: 160px;
    top: 40px;
    right: 0;
    display: none;
  }
  .nav-mobile-ul.show{
    display: block;
  }
  .nav-mobile-ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f5fafe;
    padding: 10px 15px;
    line-height: normal;

  }
  .nav-mobile-ul li a{

    color: #205da1;
    font-size: 18px;
    flex: 1;
    width: 90%;
    cursor: pointer;



  }
  .nav-mobile-ul li img{
    display: none;
  }
  .nav-mobile-ul li.current{
    font-weight: bold;
    background-color: #e7f2fc;
  }
  .nav-mobile-ul li.current img{
    display: block;
  }
  .nav-mobile-ul li:hover{
    font-weight: bold;
    background-color: #e7f2fc;
  }
  .nav-mobile-ul li:hover img{
    display: block;
  }
}