.photoList-container{
  width: 1232px;
  margin: 0 auto 85px auto;
}

.photoList-container .left{
  flex: 1;
}
.photoList-container .left ul{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.photoList-container .left li:nth-child(2n-1){
  margin-right: 16px;
}
.photoList-container .left li{
  margin-bottom: 16px;
  width: 392px;
  break-inside: avoid;
}
.photoList-container .left li .img{
  width: 100%;
  height: 262px;
  font-size: 0;
}
.photoList-container .left li .img img{
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.photoList-container .left li .title{
  font-family: "Microsoft Sans Serif";
  color: #4b4b4b;
  font-size: 18px;
  line-height: 26px;
  height: 52px;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}

.photoList-container .right{
  width: 416px;
  margin-left: 16px;
}

.photoList-container .right .hotNewsBox{
  border: 1px solid #DDD;
  padding: 20px 10px 16px 10px;
  box-sizing: border-box;
}

.photoList-container .right .hotNewsBox .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #4b4b4b;
  font-family: Tahoma;
  padding-left: 10px;
}
.photoList-container .right .hotNewsBox .more {
  text-align: right;
  color: #9a9a9a;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 20px;
  padding-right: 10px;
}

.photoList-container .right .newsList .newsList-item{
  margin-bottom: 20px;
}
.photoList-container .right .newsList .newsList-item:last-child{
  margin-bottom: 0;
}
.photoList-container .right .newsList .newsList-item .newsImg{
  width: 130px;
  height: 87px;
  margin-right: 10px;
}
.photoList-container .right .newsList .newsList-item .newsImg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.photoList-container .right .newsList .newsList-item .newsTitle{
  color: #4b4b4b;
  font-size: 16px;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 40px;
  margin-bottom: 25px;
}
.photoList-container .right .newsTagList li{
  font-size: 12px;
}


@media screen and (max-width: 767px) {
  .photoList-container{
    background: #F8F8F8;
    width: 100%;
    margin: 0 auto;
  }
  .photoList-container .crumb{
    display: none;
  }
  .photoList-container .left{
    padding: .08rem;
    min-height: 90vh;
  }
  
  .photoList-container .left li{
    background: #fff;
    border-radius: .08rem;
    margin-bottom: .08rem;
    padding: .08rem;
    break-inside: avoid;
    box-sizing: border-box;
    width: calc((100% - .07rem) / 2);
  }
  .photoList-container .left li:nth-child(2n-1){
    margin-right: .07rem;
  }
  .photoList-container .left li .img{
    height: 1.07rem;
  }
  .photoList-container .left li .title{
    font-size: .14rem;
    line-height: .2rem;
    height: .4rem;
    margin-top: .08rem;
  }

  .photoList-container .right{
    display: none;
  }
}