/*news*/
.inner-banner .title h1 {
  color: #282828;
}

/* 新闻列表 */
.news-list {
  overflow: hidden;
}

.news-list * {
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}

.news-list .news-box {
  width: calc(100% - 7.5rem);
  float: left;
  min-height: 350px;
}

.news-list .news-box li {
  margin-bottom: 1rem;
  position: relative;
}

.news-list .news-box li .img {
  width: 7.5rem;
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.news-list .news-box li .img img {
  display: block;
  width: 100%;
}

.news-list .news-box li .info-box {
  width: calc(100% - 7.5rem);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  box-sizing: border-box;
  padding: 0.5rem 0.75rem;
  font-size: 0.4rem;
}

.news-list .news-box li .info-box .title {
  color: #282828;
  line-height: 1.2;
  font-size: 0.55rem;
  margin-bottom: 0.2rem;
}

.news-list .news-box li .info-box .describe {
  margin: 0.25rem 0;
  line-height: 1.8;
  color: #39425f;
  color: #282828;
}

.news-list .news-box li .info-box .time {
  color: #a2a2a2;
}

.news-list .news-box li:hover .title {
  color: #e60212;
}

.news-list .news-box li:hover {
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}

.news-list .news-box li:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

/*新闻详情页*/
.news-detail {
  margin-top: 1rem;
}
.back-page {
  overflow: hidden;
  margin-bottom: 2rem;
}
.back-page .back {
  float: left;
  width: 2.7rem;
  box-sizing: border-box;
  text-align: center;
  background: url(../image/back.png) 0.35rem 0.22rem no-repeat transparent;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  padding-left: 0.3rem;
  color: #9c9c9c;
  font-size: 0.4rem;
  text-decoration: none;
  display: inline-block;
  line-height: 38px;
  margin-right: 1rem;
}

.back-page .back:hover {
  background: #e60012 url(../image/back-white.png) 0.35rem 0.22rem no-repeat;
  border: 1px solid #e60012;
  color: #fff;
}
.back-page .follow-us li a {
    width: 100%;
    height: 100%;
    display: block;
}
.back-page .follow-us li.mail,
.back-page .follow-us li.online {
  display: none;
}

.detail-title {
  color: #282828;
  font-weight: bold;
  font-size: 0.9rem;
}

.detail-time {
  color: #5d5d5d;
  margin: 0.5rem 0;
}
.latest-news {
  width: 6.25rem;
  float: right;
  background-color: #f1f1f1;
  padding: 0.7rem 0.5rem 0.5rem;
  margin-bottom: 0.5rem;
}
.latest-news h6 {
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede;
    color: #282828;
    font-size: 0.45rem;
}
.latest-news ul li {
  display: block;
  line-height: 1.5;
  margin-top: 20px;
  padding-left: 20px;
  background: url(../image/point-r.png) left 5px no-repeat transparent;
  background-size: 13px;
  font-size: 14px;
}
.latest-news ul li a {
  text-decoration: none;
  color: #5d5d5d;
}
.latest-news ul li a:hover {
  color: #e60012;
}
@media (max-width: 850px) {
  .news-list .news-box {
    width: 100%;
    float: none;
    min-height: auto;
  }

  .news-list .news-box li .img {
    width: 100%;
    float: none;
  }

  .news-list .news-box li .info-box {
    position: static;
    width: 100%;
    padding: 0.5rem 0;
    font-size: .7rem;

  }

  .news-list .news-box li .info-box .title {
    font-size: 0.8rem;
  }

  .news-list .news-box li .info-box .describe {
    line-height: 1.2rem;
  }

  .sidebar-submt,
  .latest-news {
    display: none;
  }
  .back-page {
    margin-bottom: 1rem;
  }
  .back-page .back {
    width: 4.5rem;
    background: url(../image/back.png) 0.7rem 0.4rem no-repeat transparent;
    padding-left: 0.8rem;
    font-size: 0.65rem;
    line-height: 1.75rem;
    margin-right: 1rem;
  }
  .detail-title {
    font-size: 1rem;
  }
  .detail-time {
    font-size: 0.7rem;
  }
}