body {
  background: #12110f url("../images/bg.jpg") center 0 no-repeat fixed;
  background-size: cover;
}

.topNav {
  position: relative;
  width: 1440px;
  margin: 0 auto;
  margin-top: 160px;
  margin-bottom: 20px;
}

/* .tit{
    font-size: 40px;
    text-align: center;
    margin: 100px auto 80px;
    line-height: 1;
    text-transform: uppercase;
} */
.tabs {
  float: left;
  font-size: 24px;
  color: #666;
  vertical-align: middle;
}
.tabs a {
  display: inline-block;
  font-size: 24px;
  margin: 0 5px;
  padding: 6px 15px;
  color: #666;
}
.tabs a:hover {
  color: #fff;
}
.tabs a.active {
  background: url("../images/news-tab-activebg.png") center no-repeat;
  background-size: contain;
}
.tabs a.active:hover {
  color: #666;
}

.breadcrumb {
  float: right;
  font-size: 16px;
  color: #999;
  vertical-align: middle;
  margin-top: 15px;
}
.breadcrumb a {
  color: #999;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span {
  color: #fff;
}

.back {
  position: relative;
  float: left;
  width: 140px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  color: #999;
  text-align: center;
  text-indent: 9px;
  border: 1px solid #999;
  transition: all 0.3s;
}
.back::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 11px;
  width: 7px;
  height: 13px;
  background: url("../images/icon-back.png") 0 0 no-repeat;
}
.back:hover {
  color: #fff;
  border-color: #fff;
}
.back:hover::before {
  background-position: 0 -20px;
}

.list {
  width: 1440px;
  min-height: 400px;
  margin: 0 auto 60px auto;
}
.list li {
  position: relative;
  border-top: 2px solid #333;
  padding: 40px 30px 30px 50px;
  height: 145px;
  overflow: hidden;
  box-sizing: border-box;
}
.list li:last-child {
  border-bottom: 2px solid #333;
}
.list .tag {
  font-size: 32px;
  color: #7e6d4d;
  float: left;
  margin-right: 60px;
  margin-top: 4px;
}
.list h2 {
  width: 1030px;
  font-size: 20px;
  height: 24px;
  line-height: 24px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 13px;
}
.list h2 a {
  color: #ccc;
}
.list h2 a:hover {
  color: #fff;
}
.list p {
  width: 1030px;
  height: 16px;
  line-height: 16px;
  color: #999;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.list .date {
  position: absolute;
  top: 35px;
  right: 30px;
  color: #999;
}
.list .date em,
.list .date i {
  display: block;
  font-style: normal;
}
.list .date em {
  font-weight: normal;
  font-size: 30px;
  margin-bottom: 20px;
}
.newsdetail {
  position: relative;
  width: 1440px;
  margin: 0 auto 50px;
}
.newsdetail .tit {
  font-size: 24px;
  color: #ccc;
  margin-bottom: 20px;
  padding-top: 30px;
  border-top: 2px solid #333;
  text-align: center;
}
.newsdetail .date {
  display: block;
  color: #999;
  border-bottom: 2px solid #333;
  padding-bottom: 30px;
  text-align: center;
}
.newsdetail .newscont {
  padding: 60px 40px;
  color: #999;
}
.newsdetail .newscont p {
  line-height: 1.8;
}
.newsdetail .newscont img {
  margin: 20px 0;
}
.newsdetail .newscont a {
  color: #0084ff;
  text-decoration: underline;
}

.pagebox {
  text-align: center;
  color: #999;
  font-size: 16px;
}
.pagebox a {
  display: inline-block;
  vertical-align: middle;
}
.pagebox .pagerg,
.pagebox .pagelf {
  width: 68px;
  height: 68px;
  background: url("../images/swiper2-pn.png") 0 0 no-repeat;
}
.pagebox .pagelf:hover {
  background-position: 0 -100px;
}
.pagebox .pagerg {
  background-position: -68px 0;
}
.pagebox .pagerg:hover {
  background-position: -68px -100px;
}
.pagebox .page {
  color: #999;
  margin: 0 25px;
}
.pagebox .page:hover, .pagebox .page.cur {
  color: #bea886;
}
.pagebox img {
  vertical-align: middle;
}/*# sourceMappingURL=list.css.map */


/* 平板适配 ≤1440px */
@media screen and (max-width: 1440px) {
  .topNav,
  .list,
  .newsdetail {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .list h2,
  .list p {
    width: calc(100% - 180px);
  }
}

/* 手机适配 ≤768px */
@media screen and (max-width: 768px) {
  body {
    background-size: cover;
  }
  .topNav {
    margin-top: 80px;
    margin-bottom: 30px;
  }
  .tabs {
    float: none;
    text-align: center;
    margin-bottom: 15px;
  }
  .tabs a {
    font-size: 18px;
    padding: 4px 10px;
  }
  .breadcrumb {
    float: none;
    text-align: center;
    margin-top: 0;
  }

  /* 新闻列表单条适配 */
  .list li {
    height: auto;
    padding: 25px 15px 25px 15px;
  }
  .list .tag {
    font-size: 20px;
    float: none;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .list h2,
  .list p {
    width: 100%;
    white-space: normal;
    text-overflow: unset;
    overflow: visible;
  }
  .list h2 {
    font-size: 16px;
    height: auto;
  }
  .list p {
    font-size: 14px;
    height: auto;
    margin-bottom: 15px;
  }
  .list .date {
    position: static;
    margin-top: 10px;
  }
  .list .date em {
    font-size: 22px;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 0;
  }

  /* 新闻详情 */
  .newsdetail .tit {
    font-size: 20px;
  }
  .newsdetail .newscont {
    padding: 30px 10px;
    font-size: 14px;
  }

  /* 分页按钮缩小 */
  .pagebox .pagerg,
  .pagebox .pagelf {
    width: 44px;
    height: 44px;
    background-size: 44px auto;
  }
  .pagebox .pagelf {
    background-position: 0 0;
  }
  .pagebox .pagelf:hover {
    background-position: 0 -64px;
  }
  .pagebox .pagerg {
    background-position: -44px 0;
  }
  .pagebox .pagerg:hover {
    background-position: -44px -64px;
  }
  .pagebox .page {
    margin: 0 10px;
  }
}