 
.news-detail-banner{
}
.news-detail-banner > img{
  display: block;
  width: 100%;
  height: 180px;
}

.news-info{
  padding: 18px 16px;
  border-bottom: 1px solid #D1D1D1;
}
.news-title{
  text-align: center;
  margin-bottom: 5px;
  font-size: 16px;
  color: #111;
}

.news-detail{
  display: flex;
  justify-content: center;
  font-size: 12px;
  color: #666666;

}
.news-detail  img{
  width: 15px;
  margin-right: 6px;
}
.news-detail>div{
  display: flex;
  align-items: center;
}
.watch-num{
  margin-right: 30px;
}
.article-content{
  width: 100vw;
  padding: 20px 16px 30px;
  box-sizing: border-box;
  letter-spacing: 1px;
  text-align: justify;
  overflow: hidden;
}
.article-content img{
  max-width: 100%;
  height: auto; 
}



/* 文章标题样式 一共四类*/
.top-desc {
  padding: 20px;
  box-shadow: 3px 3px 0px #F46043;
  border-radius: 8px;
  border: 1px solid #F46043;
  box-sizing: border-box;
  margin: 20px auto;
}

.first-point{
  color: #C26238;
  position: relative;
  margin: 10px 0px;
}
.first-point>*:first-child ::before{
  content: "";
  width: 4px;
  height: 20px;
  background-color: #FDD27D;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.second-point{
  position: relative;
  overflow: hidden;
  padding-bottom: 10px;
  color: #B06450;
  text-align: justify;
  margin: 15px 0px;
}
.second-point::after{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0px;
  background-color: #F1B5B3;
}
.third-point{
  border: 1px solid #333;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: -3px -3px 0px #FCD639;
  margin: 15px auto;
  text-indent: 0em!important;
}
.fourth-point{
  text-indent: 0em!important;
  color: #614E54;
  text-align: center;
  border: 1px solid #614E54;
  margin: 10px auto;
  letter-spacing: 2px;
  padding: 5px 20px ;
  box-sizing: border-box;
  position: relative;
}
.fourth-point>span:first-child{
  /* display: none; */
}
.fourth-point::before{
  content:'';
  display: block;
  width: 6px;
  height: 6px;
  background-color: #614E54;
  border-radius: 8px;
  border: 5px solid #FFF;
  position: absolute;
  left: 0px;
  top:50%;
  transform: translate(-50% , -50%);
  box-sizing: content-box;
}
.fourth-point::after{
  content:'';
  display: block;
  width: 6px;
  height: 6px;
  background-color: #614E54;
  border-radius: 8px;
  border: 5px solid #FFF;
  position: absolute;
  right: 0px;
  top:50%;
  transform: translate(50% , -50%);
  box-sizing: content-box;
}