.container-header {
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 600px;
  padding-top: 160px;
}

.container-header > img {
  width: 1920px;
  height: 600px;
}

.container-header-box {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  width: 1500px;
}

.container-header-box > span:nth-child(1) {
  height: 100px;
  line-height: 100px;
  font-size: 80px;
  font-weight: 600;
  color: #333333;
}

.container-header-box > span:nth-child(2) {
  height: 50px;
  line-height: 50px;
  font-size: 36px;
  font-family: PingFang SC-Regular, PingFang SC;
  font-weight: 400;
  color: #888888;
}

.container-body {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 60px 0 40px 0;
}

.container-body-box {
  position: relative;
  width: 1500px;
}

.container-list {
  display: flex;
  flex-wrap: wrap;
  width: 1500px;
}

.container-list > li {
  display: flex;
  width: 300px;
  height: 360px;
}

.container-item {
  display: flex;
  flex-direction: column;
  width: 280px;
  height: 340px;
  padding: 20px;
  background-color: #fff;
  transition: all 250ms linear;
  cursor: pointer;
}

.container-item:hover {
  background-color: #173f8f !important;
}

.container-item:hover > .container-item-title {
  color: #fff !important;
}

.container-item:hover > .container-item-text {
  color: #fff !important;
}

.container-item-img1 {
  overflow: hidden;
  position: relative;
  width: 240px;
  height: 180px;
  background-color: #f5f6f7;
}

.container-item-img1 > img {
  width: 180px;
  height: 130px;
}

.container-item-img2 {
  overflow: hidden;
  position: relative;
  width: 240px;
  height: 180px;
  background-color: #f5f6f7;
}

.container-item-img2 > img {
  width: 115px;
  height: 155px;
}

.container-item-title {
  width: 240px;
  height: 50px;
  line-height: 25px;
  font-size: 18px;
  font-weight: normal;
  color: #000000;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.container-item-text {
  width: 240px;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  font-weight: normal;
  color: #888888;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
