.list-div {
  margin-top: 23px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 0;
  column-gap: 25px;
}

.list-div-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 30px;
  background: ;
  border-radius: 16px 16px 16px 16px;
  width: 100%;
}

.list-div-item-img {
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 58%;
}

.list-div-item-img img {
  border-radius: 16px 16px 0px 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-div-item-content {
  width: 100%;
  background: ;
  border-radius: 16px 16px 16px 16px;
}

.list-div-item-content-1 {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  padding: 0 11px;
  line-height: 21px;
  margin-top: 23px;
}

.list-div-item-content-2 {
  padding: 0 11px;
  margin-top: 7px;
  font-weight: 500;
  font-size: 16px;
  color: #B4BFBA;
  max-height: 40px;
  line-height: 20px;
  /* 标准属性 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 定义文本的行数 */
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 17px;
  word-wrap: break-word;
  /* 旧版浏览器支持 */
  overflow-wrap: break-word;
  /* 标准属性 */
}


@media only screen and (max-width:678px) {
  .list-div {
    margin-top: 23px;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 0;
    column-gap: 25px;
  }

  .list-div-item-content-2 {
    max-height: 120px;
    line-height: 20px;
    /* 标准属性 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    /* 定义文本的行数 */
  }

  /* .list-div-item {
    zoom: 0.4;
  } */
}







.blog-detail {
  width: 100%;

}

.blog-detail-title {
  font-weight: bold;
  font-size: 32px;
  color: #fff;
  line-height: 38px;
  margin-top: 50px;
  margin-bottom: 10px;
}

.blog-detail-time {
  font-weight: 500;
  font-size: 16px;
  color: #B4BFBA;
  margin-top: 10px;
  word-wrap: break-word;
  /* 旧版浏览器支持 */
  overflow-wrap: break-word;
  /* 标准属性 */
}

.blog-detail-content {

  width: 100%;
  overflow: hidden;
  word-wrap: break-word;
  /* 旧版浏览器支持 */
  overflow-wrap: break-word;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  /* padding-left: 10px;
  padding-right: 10px; */
  font-size: 16px;
  padding: 0 !important;
  /* 标准属性 */
}

.blog-detail-content img {
  max-width: 100%;
}

@media only screen and (max-width:678px) {
  .blog-detail-content {

    width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    /* 旧版浏览器支持 */
    overflow-wrap: break-word;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    /* padding-left: 10px;
    padding-right: 10px; */
    font-size: 16px;
    /* 标准属性 */
  }
}
