@charset "UTF-8";
/**
* 详情页
* date:2023-4-19
* author: jgming;
 */
.common-mod {
  min-height: 798px;
  padding: 40px 24px;
}

.article-title {
  line-height: 24px;
  text-align: center;
  font-size: 28px;
}

.article-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 35px;
  padding: 10px 0;
  text-align: center;
  background-color: #f0f0f0;
}
.article-info .info-item {
  float: left;
  height: 20px;
  line-height: 20px;
  padding: 0 20px;
}
.article-info .info-item .info-lbl {
  color: #666;
}

/* 移动端 */
@media (max-width: 767px) {
  .article-title {
    font-size: 20px;
    line-height: 30px;
  }
  .article-info {
    margin-top: 12px;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.article-content {
  margin-top: 24px;
}

.paragraph {
  text-indent: 2em;
  font-size: 16px;
  line-height: 32px;
  text-align: justify;
}
.paragraph + .paragraph {
  margin-top: 10px;
}
.paragraph .img {
  display: block;
  width: 680px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}