main .banner {
  width: 100%;
  height: 100%;
  font-size: 0;
  position: relative;
}
main .banner img.bannerImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .banner .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
}
main .banner .content h4.title {
  font-size: 42px;
  font-family: PingFang SC-Semibold, PingFang SC;
  font-weight: 600;
  color: #FFFFFF;
  position: relative;
}
main .banner .content h4.title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(360deg, #2673DD 0%, rgba(61, 115, 214, 0) 100%);
}
main .banner .content p.desc {
  font-size: 20px;
  font-family: PingFang SC-Medium, PingFang SC;
  font-weight: 500;
  color: #CCCCCC;
  margin: 30px 0 75px;
}
main .banner .content .create {
  width: 162px;
  height: 50px;
  background: #2673DD;
  font-size: 18px;
  font-family: PingFang SC-Medium, PingFang SC;
  font-weight: 500;
  color: #FFFFFF;
}
main .news_list .container {
  margin: 30px auto;
}
main .news_list .container .newsType {
  justify-content: space-around;
  border-bottom: 1px solid #D7D7D7;
}
main .news_list .container .newsType .item {
  font-size: 18px;
  font-family: PingFang SC-Semibold, PingFang SC;
  font-weight: 600;
  color: #999999;
  padding-bottom: 9px;
  cursor: pointer;
  border-bottom: 5px solid #fff;
}
main .news_list .container .newsType .item.active {
  color: #000000;
  border-bottom: 5px solid #055CFF;
}
main .news_list .container .outerLayer {
  margin-top: 50px;
  min-height: 400px;
  position: relative;
}
main .news_list .container .outerLayer .module {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 5;
  display: none;
}
main .news_list .container .outerLayer .module .tips {
  width: 100%;
  height: 100%;
  font-size: 36px;
  color: #055CFF;
}
main .news_list .container .outerLayer .module .tips .iconfont {
  font-size: 36px;
}
main .news_list .container .outerLayer .module.show {
  display: block !important;
}
main .news_list .container .outerLayer .list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
main .news_list .container .outerLayer .list .item {
  width: 376px;
  height: 310px;
  background: #FFFFFF;
  box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.16);
  border-radius: 15px 15px 15px 15px;
  margin-bottom: 50px;
  overflow: hidden;
}
main .news_list .container .outerLayer .list .item .news_img {
  width: 100%;
  height: 196px;
  font-size: 0;
}
main .news_list .container .outerLayer .list .item .news_img img {
  width: 100%;
  height: 100%;
}
main .news_list .container .outerLayer .list .item .news_info {
  padding: 12px 26px;
  justify-content: space-between;
  align-items: flex-start;
  height: 110px;
  box-sizing: border-box;
}
main .news_list .container .outerLayer .list .item .news_info .news_title {
  width: 100%;
  line-height: 1.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 18px;
  font-family: PingFang SC-Medium, PingFang SC;
  font-weight: 500;
  color: #666666;
  text-align: left;
}
main .news_list .container .outerLayer .list .item .news_info .news_title:hover {
  color: #2673DD;
  cursor: pointer;
}
main .news_list .container .outerLayer .list .item .news_info .time {
  font-size: 18px;
  font-family: PingFang SC-Semibold, PingFang SC;
  font-weight: 600;
  color: #CCCCCC;
}
main .news_list .container .outerLayer .list .item:nth-child(3n+1),
main .news_list .container .outerLayer .list .item:nth-child(3n+2) {
  margin-right: 36px;
}
main .news_list .container .outerLayer .flooer_tips {
  width: 100%;
  height: 60px;
  display: none;
}
main .news_list .container .outerLayer .flooer_tips .iconfont {
  font-size: 36px;
  color: #055CFF;
}
main .news_list .container .outerLayer .flooer_tips.show {
  display: flex;
}
