*{
  margin: 0;
  padding: 0;
}
/* banner图 */
.banner{
  height: 80vh;
  background: url(../../images/newsInformation/banner.png) no-repeat;
  background-size:100% 100%;
}
.banner div{
 text-align: center;
 position: relative;
 top:30vh;
}
.banner div h2{
  height: 28px;
  font-size: calc(100vw * 60 / 2310);
  font-weight: 400;
  line-height: 56px;
  color: #fff;
}
.banner div p{
  font-size: calc(100vw * 30 / 2310);
  letter-spacing: 2px;
  font-family: SourceHanSansCN-Regular, SourceHanSansCN;
  color: #fff;
  padding-top: 50px;
}
/* route */
.route_box {
  height: 60px;
  background-color: #fff;
  display: flex;
  align-items: center;
  margin-left: 10%;
}

.route {
  display: flex;
  align-items: center;
}



/* 研究内容 */
.con_box{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  width: 85%;
  height: auto;
  margin: 0 auto;
  padding: 6vh 0 10vh;
}
.con{
  width: 100%;
  height: 44vh;
  box-shadow: 0px 0px 5px 1px rgba(35,24,21,0.25);
  cursor: pointer;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.con .top-image{
  height: 24vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: none;
}
.con .center{
  font-size: calc(100vw * 30 / 2310);
  line-height: 1.5;
  padding: 12px 4% 0;
  min-height: 3em;
  max-height: 3em;
  height: 3em;
  letter-spacing: 0.1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.con .bottom{
  margin-top: auto;
  padding: 0 4% 12px;
  font-size: calc(100vw * 25 / 2310);
  line-height: 1.3;
  letter-spacing: 0.1rem;
  color: #6a6a6a;
}
.pagination{
  width: 85%;
  margin: 0 auto 8vh;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.page-btn{
  min-width: 34px;
  height: 34px;
  border: 1px solid #d0d7e6;
  background: #fff;
  color: #2759A7;
  border-radius: 4px;
  cursor: pointer;
}
.page-btn.active{
  background: #2759A7;
  color: #fff;
  border-color: #2759A7;
}

@media screen and (max-width: 376px){
  #header{
    display: none;
  }
  #footer{
    display: none;
  }
  /* banner */
  .banner{
    height: 35vh;
    background-size:100% 100%;
  }
  .banner div{
    padding: 10vh 0 0 9vw;
  }
  .banner div h2{
    width: 80vw;
    font-size: calc(100vw * 150 / 2310);
    font-family: SourceHanSansCN-Regular, SourceHanSansCN;
    color: #fff;
    position: relative;
    bottom: 25vh;
  }
  .banner div p{
    width: 80vw;
    text-align: left;
    font-size: calc(100vw * 90 / 2310);
    letter-spacing: 2px;
    font-family: SourceHanSansCN-Regular, SourceHanSansCN;
    color: #fff;
    position: relative;
    bottom: 25vh;
  }
  /* route */
  .route_box {
    height: 7vh;
    background-color: #fff;
    display: flex;
    align-items: center;
    margin-left: 5%;
    font-size: calc(100vw * 25 / 2310);
  }
  .img_box{
    width: 3vw;
    height: 2vh;
  }

  /* 标题 */
  .title_top{
    font-size: 1rem;
    font-weight: 550;
    letter-spacing: 5px;
  }
  .title_bottom{
    font-size: calc(100vw * 25 / 2310);
    color: #888888;
  }
  .title{
    text-align: center;
    padding: 10% 0;
  }
  /* 研究内容 */
  .con_box{
    display: block;
    margin: 0 auto;
    padding: 3vh 0 6vh;
    height: auto;
    cursor: pointer;
  }
  .con{
    width: 100%;
    height: 42vh;
    margin-top: 5vh;
    cursor: pointer;
  }
  .con .top-image{
    height: 20vh;
  }
  .con .center{
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 6% 4% 0;
    height: 3em;
    min-height: 3em;
    max-height: 3em;
    -webkit-line-clamp: 2;
  }
  .pagination{
    width: 90%;
    margin: 2vh auto 6vh;
  }
  .code img{
    width: 35%;
  }
}