/* 背景图 */
.new-container .image {
  background: url(../images/news-bg.jpg) no-repeat center center;
  background-size: cover;
}
.main {
  max-width: 1200px;
  margin: 40px auto;
}
/* detail */

.detail .img {
  text-align: center;
  margin: 30px 0;
}
.detail .img > img {
  width: 800px;
}
.detail .dynamic-tit {
  text-align: center;
  margin-bottom: 30px;
}
.detail .dynamic-tit h3 {
  font-size: 26px;
}
.detail .dynamic-tit > p {
  font-size: 22px;
}
.detail .dynamic-con {
  margin-bottom: 20px;
  font-size: 20px;
  color: #666666;
}
.detail .dynamic-con p {
  line-height: 1.5em;
  /* text-indent: 2em; */
}
.detail .dynamic-img {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
/* 返回 */
.back {
  font-size: 20px;
  text-align: center;
  margin: 30px 0;
  cursor: pointer;
}
.back:hover {
  color: #d2251d;
}
/* 上一条 , 下一条 */
.prev-next {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dotted #ccc;
  font-size: 16px;
  line-height: 2em;
}
/* detail */

@media screen and (max-width:480px) {
  .detail .dynamic-tit h3 {
    font-size: 1.5rem;
    margin: 0 1rem;
  }
  .dynamic-con{
    padding: 0 1rem;
  }
  .dynamic-con  img {
    width: 100% !important;
    height: auto !important;
    /* margin-left: -2rem !important; */
  }
  .detail .dynamic-tit > p {
    font-size: 1rem;
    margin-top: 1rem;
  }
}