.all {
  padding-top: 184px;
}

.news_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news_top .top_sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news_top .top_sort a {
  color: #999999;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.news_top .top_sort a:nth-child(n+2) {
  margin-left: 60px;
}
.news_top .top_sort a:hover {
  color: #333;
}
.news_top .top_sort .act {
  color: #333333;
}

.recommend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recommend > div {
  width: calc((100% - 60px) / 2);
}
.recommend .img {
  position: relative;
  height: 0;
  padding-bottom: 56%;
  overflow: hidden;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.recommend .img img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.recommend .img:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.recommend .time {
  line-height: 1;
  color: #999999;
}
.recommend .tit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.recommend .tit a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.recommend .tit a:hover {
  color: #0460A9;
}

.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list > div {
  width: calc((100% - 80px) / 3);
  margin-right: 40px;
}
.list > div:nth-child(3n) {
  margin-right: 0;
}
.list .img {
  position: relative;
  height: 0;
  padding-bottom: 56%;
  overflow: hidden;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.list .img img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.list .img:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.list .time {
  line-height: 1;
  color: #999999;
}
.list .tit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.list .tit a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.list .tit a:hover {
  color: #0460A9;
}

.store {
  height: 360px !important;
}

@media screen and (max-width: 1700px) {
  .all {
    padding-top: 12vw;
  }
  .news_top .top_sort a:nth-child(n+2) {
    margin-left: 3vw;
  }
  .recommend > div {
    width: calc((100% - 40px) / 2);
  }
  .list > div {
    width: calc((100% - 60px) / 3);
    margin-right: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .all {
    padding-top: 14vw;
  }
  .recommend > div {
    width: calc((100% - 30px) / 2);
  }
  .list > div {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .recommend {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .all {
    padding-top: 20vw;
  }
  .recommend > div {
    width: 100%;
  }
  .recommend > div:nth-child(n+2) {
    margin-top: 5vw;
  }
  .list > div {
    width: 100%;
    margin-right: 0px;
  }
}