@charset "UTF-8";

.i-icon {
  display: inline-block;
}

.app-page-banner {
  position: relative;
  height: calc(var(--app-basis-ratio) * 424px);
}

.app-page-banner-pic,
.app-page-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-page-banner-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--app-fs-24) 0;
}

.app-page-banner-container .bread-crumb {
  font-size: var(--app-fs-16);
  color: var(--app-white-color);
}

.app-page-banner-container .bread-crumb .icon {
  display: block;
  line-height: 1;
  margin: 0 10px;
}

.app-page-banner-container .bread-crumb a {
  font-size: var(--app-fs-16);
}

.app-page-banner-container .bread-crumb a:hover {
  color: var(--app-primary-color);
}

.app-page-banner-container .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--app-fs-48);
  color: var(--app-white-color);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .app-page-banner {
    height: 320px;
  }
}

.app-page-news {
  padding: var(--app-fs-82) 0;
  background: #F3F3F4;
}

.app-page-news .hot-news {
  padding: var(--app-fs-28);
  border-radius: var(--app-border-radius);
  background: var(--app-white-color);
}

.app-page-news .hot-news .img-wrap {
  width: calc(var(--app-basis-ratio) * 450px);
}

.app-page-news .hot-news .img-box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.3%;
  border-radius: var(--app-border-radius);
  overflow: hidden;
}

.app-page-news .hot-news .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-page-news .hot-news .text-wrap {
  flex: 1;
  flex-shrink: 0;
  padding-left: var(--app-fs-90);
}

.app-page-news .hot-news .text-wrap .title {
  font-size: var(--app-fs-24);
  color: #333;
}

.app-page-news .hot-news .text-wrap .desc {
  height: calc(1em * 1.5 * 2);
  margin-top: 10px;
  font-size: var(--app-fs-18);
  line-height: 1.5;
  color: #666;
}

.app-page-news .hot-news .text-wrap .time {
  margin-top: 1em;
  font-size: var(--app-fs-18);
  color: #666;
}

.app-page-news .notice-wrap {
  margin-top: var(--app-fs-28);
  padding: 0 var(--app-fs-44);
  border-radius: var(--app-border-radius);
  background: var(--app-white-color);
}

.app-page-news .notice-wrap .news-list {
  position: relative;
}

.app-page-news .notice-wrap .news-list::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: calc(100% - var(--app-fs-56));
  background: #E5E5E5;
  transform: translate(-50%, -50%);
}


.app-page-news .notice-wrap .news-list li {
  width: 46%;
  margin-right: 8%;
}

.app-page-news .notice-wrap .news-list li:nth-child(2n) {
  margin-right: 0;
}

.app-page-news .notice-wrap .news-list li a {
  position: relative;
  display: block;
  padding: var(--app-fs-28) 0;
  border-bottom: 1px solid #E5E5E5;
}

.app-page-news .notice-wrap .news-list li:nth-last-child(2) a,
.app-page-news .notice-wrap .news-list li:last-child a {
  border-bottom: none;
}

.app-page-news .notice-wrap .news-list li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--app-primary-color);
  transition: all .3s;
}

.app-page-news .notice-wrap .news-list li:nth-last-child(2) a::before,
.app-page-news .notice-wrap .news-list li:last-child a::before {
  display: none;
}

.app-page-news .notice-wrap .news-list .point {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: var(--app-fs-18);
  border-radius: 50%;
  background: var(--app-primary-color);
}

.app-page-news .notice-wrap .news-list .title {
  font-size: var(--app-fs-18);
  color: #666;
}

.app-page-news .notice-wrap .news-list .txt {
  flex: 1;
  flex-shrink: 0;
}

.app-page-news .notice-wrap .news-list .time {
  padding-left: calc(1em + 4px);
  font-size: var(--app-fs-18);
  color: #999;
}

.app-page-news .notice-wrap .news-list li a:hover .title {
  color: var(--app-primary-color);
}

.app-page-news .notice-wrap .news-list li a:hover::before {
  width: 100%;
}

.app-page-news .app-pagination {
  margin-top: var(--app-fs-42);
}

@media screen and (max-width: 768px) {
  .app-page-news .hot-news {
    flex-direction: column;
  }

  .app-page-news .hot-news .img-wrap {
    width: 100%;
  }

  .app-page-news .hot-news .text-wrap {
    padding-left: 0;
    margin-top: var(--app-fs-28);
  }

  .app-page-news .notice-wrap .news-list {
    flex-direction: column;
  }

  .app-page-news .notice-wrap .news-list::before {
    display: none;
  }

  .app-page-news .notice-wrap .news-list li {
    width: 100%;
    margin-right: 0;
  }

  .app-page-news .notice-wrap .news-list li a {
    padding: var(--app-fs-28) 0;
    border-bottom: none;
  }
}

.app-page-news-detail {
  padding: var(--app-fs-64) 0 var(--app-fs-150);
  overflow: hidden;
}

.app-page-news-detail .news-info {
  width: calc(var(--app-basis-ratio) * 920px);
}

.app-page-news-detail .news-info .title {
  font-size: var(--app-fs-48);
  font-weight: normal;
  line-height: 1.2;
  color: #333;
}

.app-page-news-detail .news-info .info {
  margin-top: var(--app-fs-40);
  font-size: var(--app-fs-16);
  color: #7f7f7f;
}

.app-page-news-detail .news-info .info .i-icon {
  margin-right: var(--app-fs-14);
}

.app-page-news-detail .news-info .info .source {
  margin-left: var(--app-fs-70);
}

.app-page-news-detail .news-content {
  margin-top: var(--app-fs-54);
}

.app-page-news-detail .news-content .wrapper {
  width: calc(var(--app-basis-ratio) * 920px);
  margin-right: var(--app-fs-86);
  padding-top: var(--app-fs-44);
  border-top: 1px solid #DFDFDF;
}

.app-page-news-detail .news-content .prev-next-return {
  margin-top: var(--app-fs-80);
  padding: var(--app-fs-44) var(--app-fs-54);
  background: #F2F2F2;
}

.app-page-news-detail .news-content .prev-next-return .prev-next {
  flex: 1;
  flex-shrink: 0;
}

.app-page-news-detail .news-content .prev-next-return .link {
  padding-right: 4em;
  font-size: var(--app-fs-16);
  color: #333;
}

.app-page-news-detail .news-content .prev-next-return .link+.link {
  margin-top: 1em;
}

.app-page-news-detail .news-content .prev-next-return .return {
  display: block;
  padding: var(--app-fs-20) var(--app-fs-40);
  border-radius: 99px;
  border: 1px solid var(--app-primary-color);
  font-size: var(--app-fs-14);
  color: var(--app-white-color);
  background: var(--app-primary-color);
}

.app-page-news-detail .news-content .prev-next-return .link:hover {
  color: var(--app-primary-color);
}

.app-page-news-detail .news-content .prev-next-return .return:hover {
  color: var(--app-primary-color);
  background: var(--app-white-color);
}

.app-page-news-detail .news-content .related-news {
  flex: 1;
  flex-shrink: 0;
}

.app-page-news-detail .news-content .related-news .title {
  font-weight: normal;
  font-size: var(--app-fs-22);
  color: #333;
}

.app-page-news-detail .news-content .related-news li .img-wrap {
  width: calc(var(--app-basis-ratio) * 106px);
}

.app-page-news-detail .news-content .related-news li .img-box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 62.2%;
  overflow: hidden;
}

.app-page-news-detail .news-content .related-news li .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-page-news-detail .news-content .related-news li {
  padding: var(--app-fs-26) 0;
}

.app-page-news-detail .news-content .related-news li+li {
  border-top: 1px solid #DFDFDF;
}

.app-page-news-detail .news-content .related-news li .text-wrap {
  flex: 1;
  flex-shrink: 0;
  padding-left: var(--app-fs-20);
}

.app-page-news-detail .news-content .related-news li .text-wrap .tit {
  max-height: calc(1em * 1.5 * 2);
  font-size: var(--app-fs-16);
  line-height: 1.5;
  color: #333;
}

.app-page-news-detail .news-content .related-news li .text-wrap .time {
  margin-top: var(--app-fs-10);
  font-size: var(--app-fs-14);
  color: #999;
}

.app-page-news-detail .news-content .related-news li a:hover .tit {
  color: var(--app-primary-color);
}

@media screen and (max-width: 1200px) {
  .app-page-news-detail .news-info {
    width: 100%;
  }

  .app-page-news-detail .news-content {
    flex-direction: column;
  }

  .app-page-news-detail .news-content .wrapper {
    width: 100%;
    margin-right: 0;
  }

  .app-page-news-detail .news-content .related-news {
    width: 100%;
    margin-top: var(--app-fs-44);
  }
}

@media screen and (max-width: 992px) {
  .app-page-news-detail .news-content .prev-next-return {
    padding: var(--app-fs-28);
    flex-direction: column;
  }

  .app-page-news-detail .news-content .prev-next-return .prev-next {
    flex: none;
    width: 100%;
  }

  .app-page-news-detail .news-content .prev-next-return .link {
    padding-right: 0;
    font-size: 14px;
  }

  .app-page-news-detail .news-content .prev-next-return .return {
    margin-top: var(--app-fs-28);
  }

  .app-page-news-detail .news-content .related-news .title {
    font-size: 28px;
  }

  .app-page-news-detail .news-content .related-news li a {
    flex-direction: column;
  }

  .app-page-news-detail .news-content .related-news li .img-wrap {
    width: 100%;
  }

  .app-page-news-detail .news-content .related-news li .text-wrap {
    flex: none;
    width: 100%;
    padding-left: 0;
    margin-top: var(--app-fs-28);
  }

  .app-page-news-detail .news-content .related-news li .text-wrap .tit {
    font-size: 14px;
  }
}