@import "../css/reset.css";
@import "../css/base.css";
@import "../css/menu.css";
@import "../css/bottom.css";
.home-container {
  background-color: #FFF;
}
.content .content-top {
  height: 378px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(7, 21, 53, 0.7), rgba(7, 21, 53, 0.7)), url("../../images/customer/bg.png") no-repeat;
}
.content .content-top .content-wrap {
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content .content-top .content-wrap .title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.57px;
}
.content .content-top .content-wrap .description {
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.57px;
  margin-top: 10px;
  opacity: 0.8;
}
.content .content-body {
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7;
  align-items: center;
  padding: 45px 0;
}
.content .content-body .news-container {
  width: 1200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.content .content-body .news-container .item {
  width: 282px;
  height: 362px;
  border-radius: 8px;
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 0px 0px 24px 0px rgba(75, 100, 141, 0.06);
  margin: 0 24px 24px 0;
  display: flex;
  flex-direction: column;
}
.content .content-body .news-container .item img {
  height: 200px;
  width: 282px;
}
.content .content-body .news-container .item .title {
  font-size: 16px;
  font-weight: 600;
  color: #262626;
  margin: 49px 10px 10px 10px;
  z-index: 10;
}
.content .content-body .news-container .item .detail {
  font-size: 14px;
  line-height: 20px;
  color: #595959;
  margin: 0 10px;
  word-break: break-all;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 22px;
}
.content .content-body .news-container .item .info {
  position: relative;
}
.content .content-body .news-container .item .info img {
  position: absolute;
  width: 150px;
  height: 150px;
  top: -70px;
  left: -20px;
}
.content .content-body .news-container .item:nth-child(4n) {
  margin-right: 0px !important;
}
.content .content-body .news-container .item:hover {
  box-shadow: 0px 0px 24px 0px rgba(75, 100, 141, 0.32);
}
