#section2 {
  background-color: #eff1f5;
}
#section2 .case-list-container {
  height: 100%;
  width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
}

#section2 .case-list-container .case-item {
  box-sizing: border-box;
  width: 295px;
  height: 285px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.4s;  
  display: flex;
  flex-direction: column;
  padding: 10px 7px 0 7px;
}

#section2 .case-list-container .case-item:hover {
  background-color: #ffffff;
	box-shadow: 0px 4px 6px 1px 
		rgba(68, 78, 221, 0.21);
}

#section2 .case-item .img-box {
  width: 100%;
  height: 210px;
  /* background-color: orange; */
  border-radius: 6px;
}

#section2 .case-item .img-box img {
  width: 100%;
  height: 100%;
}

#section2 .case-item .title-box {
	font-family: SourceHanSansCN-Bold;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 33px;
	letter-spacing: 0px;
	color: #3f43e0;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

#section2 .case-item .desc-box {
  display: flex;
  justify-content: space-between;
	font-family: SourceHanSansCN-Regular;
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 33px;
	letter-spacing: 0px;
	color: #696a7b;
}

#pagination {
  margin: 30px 0;
  display: flex;
  color: #7b7b7b;
  display: flex;
  justify-content: center;
}

#pagination .pagination-item-box {
  display: flex;
}

#pagination .block {
  min-width: 33px;
  height: 33px;
  line-height: 33px;
  text-align: center;
  box-sizing: border-box;
  background-color: #eff1f5;
  border-radius: 4px;
  border: solid 1px #d2d2d2;
  margin-right: 8px;
  cursor: pointer;
}

#pagination .block a:hover {
  color: #3f43e0;
}

#pagination .active-pagination-item{
  background-color: #3f43e0;
}

#pagination .active-pagination-item a {
  color: #fff;
}

#pagination .active-pagination-item a:hover {
  color: #fff;
}


@media screen and (max-width: 768px) {
  #section2 .case-list-container {
    padding: 20px;
    width: 100%;
  }
  #section2 .case-list-container .case-item {
    width: 100%;
  }
  .pager-box .page-num, .special-page-num, .head-page, .foot-page {
    padding: 3px 8px;
  }
}

