.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%);
  color: #fff;
  font-size: 53px;
}

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

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

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

.work .item .content,
.work .item .img {
  width: 48%;
}

.work .item .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work .item .title img {
  max-width: 100%;
  margin-bottom: 20px;
}

.work .item .title h3 {
  color: #262727;
  font-size: 40px;
  letter-spacing: 4px;
  font-family: 'Locator-Light', 'z1';
  line-height: 1;
}

.work .item .title h3 strong {
  font-family: 'Locator-Medium' !important;
}

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

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

.work .item .back {
  font-family: 'Locator-Medium', 'z1';
  font-size: 18px;
}

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

.work .item .more {
  display: block;
  width: 120px;
  height: 34px;
  line-height: 34px;
  font-size: 16px;
  text-align: center;
  margin-bottom: 2px;
  border: 1px solid #474645;
  transition: all .3s;
}

.work .item .more:hover {
  color: #fff;
  border-color: #E85400;
  background-color: #E85400;
}

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

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

.work .imgs img {
  width: 50%;
}

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

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

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

  .work .item .w {
    display: block;
    padding-top: 10px;
  }

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

  .work .item .img{
    width: 100%;
    margin: 20px 0;
  }

  .work .item .title h3 {
    font-size: 35px;
  }
  
  .work .imgs .w {
    display: block;
  }

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