.container {
  overflow-x: hidden;
  min-height: 100vh;
  background-color: #f2f3f5;
}

.container .header {
  background-color: #ffffff;
}

.container .banner {
  position: relative;
}
.container .banner img[alt="contact"] {
  width: 100%;
}
.container .banner .title {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.container .banner .title .text {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  color: #1d2129;
  font-size: 46px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

/* 新闻列表 */
.container .news-wrapper {
  padding: 70px 0;
  background-color: #fff;
  margin-bottom: 60px;
}
.container .news-list {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}
.container .news-list .news-list-item {
  padding-bottom: 48px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 48px;
}
.container .news-list .news-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.container .news-list .news-list-item a {
  width: 100%;
  height: 100%;
  display: flex;
  color: #1d2129;
}
.container .news-list .news-list-item .image {
  width: 390px;
  height: 220px;
  position: relative;
  overflow: hidden;
}
.container .news-list .news-list-item .image div {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.container .news-list .news-list-item:hover .image div {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  transform: scale(1.5);
}
.container .news-list .news-list-item .description {
  flex: 1;
  align-self: center;
  margin-left: 50px;
  line-height: 1;
}
.container .news-list .news-list-item .description .title {
  font-size: 18px;
  font-weight: bold;
}
.container .news-list .news-list-item .description .date {
  color: #939599;
  font-size: 12px;
  margin-top: 20px;
}
.container .news-list .news-list-item .description .text {
  margin-top: 35px;
  font-size: 14px;
  word-break: break-all;
  text-align: justify;
  line-height: 1.5;
}
