.search{
  height: 40px;
  width: 400px;
  border: 1px solid #565f9a;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.search-label{
  color: #565f9a;
  font-size: 14px;
}
.search-input{
  flex: 1;
  border: none;
  line-height: 38px;
  margin: 0 15px;
}
.search-icon{
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.blog-list{
  width: 1200px;
  margin: 0 auto;
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
}
.blog-item-a{
  margin-right: 75px;
}
.blog-item{
  width: 350px; 
  margin-bottom: 50px;

}
.blog-item-a:nth-child(3n){
  margin-right: 0;
}
.blog-img{
  width: 350px;
  height: 350px;
  background-position: center;
  background-size: 100%;
  transition: background-size 1s;
}
.blog-img:hover{
  background-size: 110%;
}
.blog-title{
  text-align: center;
  font-family: textbold;
  color: #02101a;
  font-size: 20px;
  margin-top: 20px;
}
.blog-time{
  text-align: center;
  color: #02101a;
  font-size: 16px;
  margin: 10px 0;
}
.blog-info{
  text-align: center;
  border-top: 1px solid #02101a;
  padding-top: 15px; 
  color: #02101a;
  font-size: 16px;
}

.page-ctrl{
  margin-top: 35px;
  width: 830px;
  margin: 150px auto 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ctrl-item{
  color: #0e101a;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ctrl-item-a, .page-item:hover{
  background-color: #b0dde0;
}
.page-more{
  margin-right: 10px;
}
.prev,.next{
  border: 1px solid #565f9a;
  width: 60px;
  height: 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prev{
  margin-right: 125px;
}
.next{
  margin-left: 125px;
}
.page-btn-icon{
  width: 13px;
  height: 19px;
}