.pc {
  display: block;
}

.md {
  display: none;
}

/* banner */
.banner {
  position: relative;
  width: 100%;
}

.banner img {
  width: 100%;
}

.banner h2 {
  position: absolute;
  top: 50%;
  left: 11%;
  transform: translateY(-50%);
  width: 308px;
  color: #fff;
  font-size: 53px;
}

/* 列表 */
.news .item {
  width: 100%;
  padding: 54px 0;
  background-color: #fff;
}

.news .item:nth-child(2n) {
  background-color: #EBEBEB;
}

.news .item .w {
  display: flex;
  justify-content: space-between;
}

.news .item .content {
  width: 50%;
}

.news .item .title h3 {
  color: #262727;
  font-size: 25px;
  line-height: 1;
}

.news .item .title i {
  color: #262727;
  font-size: 16px;
  font-family: 'Locator-Light';
}

.news .item .back,
.news .item .in {
  display: block;
  width: 100%;
  color: #262727;
  font-size: 17px;
  margin: 18px 0 12px;
}

.news .item .back {
  font-family: 'z1';
  font-size: 18px;
}

.news .item .back:hover {
  color: #E85400;
}

.news .item .in strong {
  font-style: normal;
  font-family: 'SourceHanSansCN-Bold';
}

.news .item .content img {
  max-width: 100%;
}

.news .item .img {
  width: 48%;
}

.news .imgs {
  width: 100%;
  padding: 50px 0;
  box-sizing: border-box;
}

.news .imgs .w {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news .imgs img {
  width: 48%;
}

.news .imgs:nth-child(2n) {
  background-color: #EBEBEB;
}

@media screen and (max-width: 992px) {
  .pc {
    display: none;
  }
  
  .md {
    display: block;
  }

  .news .item {
    padding: 0 0 20px;
  }

  .news .item .w {
    display: block;
  }

  .news .item .content {
    width: 100%;
  }

  .news .item .img{
    width: 100%;
    margin: 20px 0;
  }
  
  .news .imgs .w {
    display: block;
  }

  .news .imgs img {
    width: 100%;
    margin-bottom: 10px;
  }
}