
.newsDetail_content .titleBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.newsDetail_content .shareBtn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #3f6dc4;
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 4px;
  margin-left: 12px;
  cursor: pointer;
}
.newsDetail_content .shareBtn::before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  margin-right: 6px;
  background-size: 100%;
  background-image: url(../images/icon_share.png);
}
.newsDetail_content .title {
  /* text-align: center; */
  font-size: 20px;
  line-height: 32px;
  color: #004A8E;
  font-weight: bold;
}
.newsDetail_content .date {
  display: inline-block;
  font-size: 12px;
  line-height: 24px;
  /* text-align: left; */
  color: #808080;
  padding-top: 0px;
  /* padding-bottom: 10px; */
  margin-right: 28px;
}
.newsDetail_content .hitNumbs {
  display: inline-block;
  font-size: 12px;
  line-height: 24px;
  /* text-align: right; */
  color: #808080;
  padding-top: 0px;
  /* padding-bottom: 10px; */
}
.newsDetail_content .date::before {
  content: "";
  display: inline-block;
  height: 21px;
  width: 20px;
  background-size: 100%;
  vertical-align: middle;
  background-image: url(../images/icon_time.png);
}
.newsDetail_content .hitNumbs::before {
  content: "";
  display: inline-block;
  height: 21px;
  width: 20px;
  background-size: 100%;
  vertical-align: middle;
  background-image: url(../images/icon_look.png);
}
.newsDetail_content .tags {
  display: flex;
  align-items: center;
  padding: 10px 0px 16px 0px;
}
.newsDetail_content .tags .tags-item{
  font-size: 12px;
  line-height: 18px;
  color: #5a81d3;
  border-radius: 4px;
  padding: 3px 8px;
  margin-right: 8px;
  background-color: #e1eeff;
}
.newsDetail_content .content_text {
  height: auto;
  width: 100%;
  text-align: left;
  font-size: 12px;
  line-height: 24px;
  word-break: break-all;
  margin-bottom: 30px;
}
.newsDetail_content .plist > div{
  font-size: 12px;
  line-height: 24px;
}
.newsDetail_content .plist  .plist_one {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.newsDetail_content .plist span{
  color: #000;
}
.newsDetail_content .plist a{
  font-size: 12px;
  line-height: 24px;
  color: #333;
  text-decoration: none;
}
.newsDetail_content .plist a:hover{
  color: #004A8E;
}

@media (max-width: 768px) {
  .newsDetail_content .title {
    font-size: 16px;
    line-height: 26px;
  }
  .toptitle {
    display: none!important;
  }
  .newsDetail_content img {
    width: 100%!important;
    height: auto!important;
  }
}

@media (max-width: 1440px) {
  .newsDetail_content .shareBtn {
    display: none;
  }
}