.transtion {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.inner_content_right {
  padding: 48px 33px 50px 33px;
  min-height: 600px;
}

/* 图片列表 */
/* 滑动添加的样式 */
.pic_list_active {
  box-shadow: 0px 2px 32px 0px rgba(133, 139, 144, 0.3);
}

/* 图片变大 */
.picture_img {
  transform: scale(1.2);
}

.pic_list #news_list a {
  display: block;
  margin-right: 10px;
  margin-bottom: 30px;
}

.picture_list_cn_single {
  width: 340px;
  padding-bottom: 20px;
  background: #ffffff;
}

.picture_list_img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.picture_list_img > img {
  width: 100%;
  height: 100%;
}

.picture_list_cn_single > h4 {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin-top: 22px;
  padding: 0 10px;
}

.picture_line {
  width: 288px;
  height: 1px;
  background: #f3f3f3;
  margin: 18px 0 14px 0;
}

.picture_details {
  width: 80px;
  height: 29px;
  line-height: 29px;
  margin-left: 10px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}

.picture_details > span {
  margin-left: 20px;
}

.picture_details > img {
  margin-left: 7px;
}

/* 移动端适配 */
@media (max-width: 900px) {
  .pic_list {
    padding: 0.24rem !important;
  }

  .pic_list #news_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.2rem;
  }

  .pic_list #news_list a {
    width: 48%;
    margin-right: 0;
    margin-bottom: 0.3rem;
    display: block;
  }

  .picture_list_cn_single {
    width: 100%;
    padding-bottom: 0.2rem;
    background: #ffffff;
    border-radius: 0.1rem;
    overflow: hidden;
    box-shadow: 0 0.02rem 0.1rem rgba(0, 0, 0, 0.1);
  }

  .picture_list_img {
    width: 100%;
    height: 2rem;
    overflow: hidden;
  }

  .picture_list_img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .picture_list_cn_single > h4 {
    font-size: 0.28rem;
    font-weight: 400;
    color: #333333;
    margin-top: 0.15rem;
    padding: 0 0.15rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* 移动端悬停效果调整 */
  .pic_list #news_list a:active .picture_list_cn_single {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  /* 移动端隐藏不必要的元素 */
  .picture_line,
  .picture_details {
    display: none;
  }
}
