.pictureProClient {
  display: flex;
  flex-wrap: wrap;
  .copyText {
    cursor: pointer;
    color: #1890ff;
  }
}
  
.pictureProBox {
  position: relative;
  display: flex;
  width: 280px;
  height: 105px;
  padding: 8px;
  margin-bottom: 8px;
  margin-right: 8px;
  border-radius: 5px;
  background-color: rgba(240,241,242,0.72);
  .pictureProLeft {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    margin-right: 8px;
    flex:none;
  }

  .pictureProText {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    &:hover {
      color: #1890ff;
    }
  }
  .pictureProOperate {
    position: absolute;
    right: 8px;
    bottom: 8px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 8px;
    .downloadIcon {
      color: #1890ff;
    }
  }
}

.pictruePc {
  .downloadIcon {
    visibility: hidden;
  }
  &:hover {
    color: #1890ff;
    .downloadIcon {
      visibility: visible;
    }
  }
}
