* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  outline: none;
  border: none;
}

.breadcrumb {
  padding-left: 0 !important;
}

.content {
  width: 100%;
  padding: 17px min(9.375vw, 140px) 65px;
}

.news-details-header .title {
  font-family: NotoSansHans;
  font-weight: bold;
  font-size: 32px;
  color: #232323;
  line-height: 46px;
  margin-bottom: 36px;
  text-align: center;
}

.news-details-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-details-info span {
  font-family: NotoSansHans;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
}

.news-details-info-left {
  display: flex;
  align-items: center;
  gap: 35px;
}

.news-details-content {
  display: flex;
  margin-top: 44px;
}

.news-details-content-left {
  width: 85px;
  height: 286px;
  background: #f4f8fc;
  position: sticky;
  top: 20px;
  left: 0;
  flex-shrink: 0;
}

.news-details-content-left .share {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.news-details-content-left .share span {
  font-family: SourceHanSansCN;
  font-weight: 400;
  font-size: 14px;
  color: #525252;
  margin-bottom: 16px;
}

.news-details-content-left .share .share-icon {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 23px;
}

.news-details-content-left .share-icon div img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  cursor: pointer;
}

.news-details-content-right {
  width: calc(100% - 85px - 32px);
  margin-left: 32px;
}

.news-details-content-right-info {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 84px;
  background: #f4f8fc;
  padding: 0 57px 0 61px;
  position: relative;
  margin-bottom: 27px;
}

.colon {
  height: 19px;
  width: 21px;
  position: absolute;
  left: 24px;
  top: 17px;
}

.news-details-content-right-title {
  width: 100%;
  flex-shrink: 0;
  font-family: NotoSansHans;
  font-weight: 400;
  font-size: 16px;
  color: #6590cc;
  line-height: 28px;
}

.news-details-content-text {
  width: 100%;
  padding: 0 60px;
  font-family: NotoSansHans;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  white-space: pre-line;
  word-wrap: break-word;
}

.news-details-content-text img {
  max-width: 100%;
  max-width: -webkit-fill-available;
  max-width: -moz-available;
  max-width: fill-available;
}

.news-details-content-text span {
  text-wrap-mode: wrap !important;
}

@media screen and (max-width: 768px) {
  .news-details-info {
    flex-wrap: wrap;
  }


  .news-details-info-left {
    flex-wrap: wrap;
    gap: 10px;
  }

  .news-details-content-left {
    display: none;
  }

  .news-details-content-right {
    margin-left: 0;
    width: 100% !important;
  }

  .news-details-content-right-info {
    margin-bottom: 0;
  }

  .news-details-content-text {
    padding: 0;
  }
}