@charset "utf-8";

body {
  background-color: #EDF7FF;
  color: #333;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.sec {
  padding: 48px 0;
}

.site-hero {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 26.04%;
  background-image: url(../img/hd.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.site-hero .container {
  position: relative;
}

.hero-logo {
  position: absolute;
  top: 24px;
  left: 15px;
  z-index: 2;
  display: block;
  height: 48px;
  width: auto;
}

.site-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
  background-image: linear-gradient(270deg, #46A5FF 35%, #0752FF 88%);
  box-shadow: 0 2px 10px rgba(7, 82, 255, .25);
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  height: 70px;
  list-style: none;
}

.nav-menu li {
  -webkit-box-flex: 1;
  flex: 1 1 0;
  text-align: center;
}

.nav-menu a {
  position: relative;
  display: block;
  line-height: 70px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  opacity: .9;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: #fff;
  text-decoration: none;
  opacity: 1;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 32px;
  height: 3px;
  margin-left: -16px;
  border-radius: 2px;
  background-color: #fff;
}

.nav-menu a.is-active {
  opacity: 1;
}

.nav-menu a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 32px;
  height: 3px;
  margin-left: -16px;
  border-radius: 2px;
  background-color: #fff;
}

.sec-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 0 0 30px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #0a3d91;
}

.sec-title::after {
  content: "";
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  margin-left: 10px;
  background-image: url(../img/title_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.sec-speech .sec-title,
.sec-law .sec-title,
.sec-video .sec-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.speech-panel {
  padding: 20px;
  border-radius: 18px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .speech-panel .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.speech-swiper {
  overflow: hidden;
  border-radius: 4px;
}

.speech-swiper .swiper-wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
}

.speech-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.speech-swiper .swiper-button-prev,
.speech-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border-radius: 50%;
  background-color: rgba(7, 82, 255, .8);
  background-size: 16px 26px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  transition: opacity .3s ease, visibility .3s ease;
}

.speech-swiper:hover .swiper-button-prev,
.speech-swiper:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}

.speech-swiper .swiper-button-prev:hover,
.speech-swiper .swiper-button-next:hover {
  background-color: rgba(7, 82, 255, 1);
}

.speech-swiper .swiper-pagination {
  bottom: 12px;
}

.speech-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: .6;
}

.speech-swiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 5px;
  background-color: #fff;
  opacity: 1;
}

.speech-text {
  padding: 6px 6px 6px 16px;
}

.speech-text__title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  color: #0a3d91;
}

.speech-text__title a {
  color: inherit;
  text-decoration: none;
}

.speech-text__title a:hover,
.speech-text__title a:focus {
  color: #0752FF;
  text-decoration: none;
}

.speech-text__desc {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #4a5568;
}

.speech-text__date {
  display: block;
  margin-top: 18px;
  font-size: 15px;
  color: #93a3b8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(16px);
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.speech-text.is-anim {
  -webkit-animation: fadeIn .6s ease both;
  animation: fadeIn .6s ease both;
}

.news-list,
.hot-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-list li,
.hot-list li {
  display: block;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 14px;
  padding: 16px 20px;
  border-radius: 18px;
  background-color: #fff;
 white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.news-list li:last-child,
.hot-list li:last-child {
  margin-bottom: 0;
}

.news-list__date,
.hot-list__rank {
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  margin-right: 20px;
  font-size: 15px;
  font-weight: bold;
  color: #0752FF;
}

.news-list__title,
.hot-list__title {
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  overflow: hidden;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-list__title:hover,
.news-list__title:focus,
.hot-list__title:hover,
.hot-list__title:focus {
  color: #0752FF;
  text-decoration: none;
}

.hot-list__date {
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  margin-left: 16px;
  font-size: 14px;
  color: #93a3b8;
}

.law-list {
  padding: 0;
  list-style: none;
}

.law-card {
  position: relative;
  margin-bottom: 20px;
  padding: 24px 60px 24px 26px;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, .88);
  background-image: url(../img/grid.png);
  background-repeat: no-repeat;
  background-position: right 28px center;
  background-size: 20px 29px;
}

.law-card__name {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #0a3d91;
}

.law-card__meta {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.8;
  color: #5b6b7f;
}

.law-card__more {
  font-size: 15px;
  color: #0752FF;
  text-decoration: none;
}

.law-card__more:hover,
.law-card__more:focus {
  color: #46A5FF;
  text-decoration: none;
}

.video-list {
  padding: 0;
  list-style: none;
}

.video-card {
  margin-bottom: 20px;
  border-radius: 18px;
  background-color: #fff;
}

.video-card__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.video-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

.video-card__media::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, .2);
}

.video-card__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px 18px 14px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background-image: linear-gradient(to top, rgba(0, 0, 0, .45), transparent);
}

.crumb {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #6b7c93;
}

.crumb a {
  color: #0752FF;
  text-decoration: none;
}

.crumb a:hover,
.crumb a:focus {
  color: #46A5FF;
  text-decoration: none;
}

.crumb__sep {
  margin: 0 8px;
  color: #b9c6d8;
}

.crumb .crumb__current {
  color: inherit;
  pointer-events: none;
}

.page-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-list__item {
  margin-bottom: 16px;
  padding: 22px 26px;
  border-radius: 18px;
  background-color: #fff;
  -webkit-transition: box-shadow .25s ease, -webkit-transform .25s ease;
  transition: box-shadow .25s ease, transform .25s ease;
}

.page-list__item:hover {
  box-shadow: 0 8px 24px rgba(7, 82, 255, .12);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.page-list__title {
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  color: #0a3d91;
  text-decoration: none;
}

.page-list__title:hover,
.page-list__title:focus {
  color: #0752FF;
  text-decoration: none;
}

.page-list__desc {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: #5b6b7f;
}

.page-list__info {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #e2ecf8;
  font-size: 14px;
  color: #93a3b8;
}

.page-list__info > * {
  margin-right: 18px;
}

.pager-wrap {
  margin-top: 30px;
  text-align: center;
}

.pager-wrap .pagination {
  margin: 0;
}

.pager-wrap .pagination > li > a,
.pager-wrap .pagination > li > span {
  margin: 0 4px;
  border: none;
  border-radius: 8px;
  color: #0752FF;
  background-color: #fff;
}

.pager-wrap .pagination > li > a:hover,
.pager-wrap .pagination > li > a:focus {
  color: #fff;
  background-color: #46A5FF;
}

.pager-wrap .pagination > .active > a,
.pager-wrap .pagination > .active > a:hover,
.pager-wrap .pagination > .active > a:focus {
  color: #fff;
  background-color: #0752FF;
}

.pager-wrap .pagination > .disabled > a,
.pager-wrap .pagination > .disabled > span {
  color: #b9c6d8;
  background-color: #f3f7fd;
}

.article {
  padding: 40px 56px 44px;
  border-radius: 18px;
  background-color: #fff;
}

.article__title {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  color: #0a3d91;
  text-align: center;
}

.article__meta {
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaf1fa;
  font-size: 14px;
  color: #93a3b8;
  text-align: center;
}

.article__meta > * {
  margin: 0 10px;
}

.article__content {
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.article__content p {
  margin: 0 0 18px;
  text-indent: 2em;
}

.article__content h2 {
  margin: 28px 0 14px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  color: #0a3d91;
}

.article__content figure {
  margin: 24px 0;
}

.article__content img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
}

.article__content figcaption {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: #93a3b8;
  text-align: center;
}

.article__content blockquote {
  margin: 22px 0;
  padding: 16px 22px;
  border-left: 4px solid #0752FF;
  border-radius: 0 12px 12px 0;
  background-color: #f4f9ff;
  text-indent: 0;
  color: #3f5a80;
}

.article__pager {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #eaf1fa;
  font-size: 15px;
  line-height: 2;
}

.article__pager a {
  display: block;
  color: #5b6b7f;
  text-decoration: none;
}

.article__pager a:hover,
.article__pager a:focus {
  color: #0752FF;
  text-decoration: none;
}

@media (max-width: 991px) {
  .speech-text {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .sec {
    padding: 32px 0;
  }

  .site-hero {
    height: 50vw;
    min-height: 150px;
    max-height: 240px;
    padding-bottom: 0;
    background-size: cover;
    background-position: center center;
  }

  .nav-menu a {
    padding: 0;
    line-height: 70px;
    font-size: 13px;
  }

  .nav-menu a:hover::after,
  .nav-menu a:focus::after {
    left: 50%;
    bottom: 12px;
    width: 22px;
    margin-left: -11px;
  }

  .sec-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .sec-news .sec-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sec-title::after {
    width: 56px;
    height: 56px;
    margin-left: 8px;
  }

  .speech-panel {
    padding: 12px;
  }

  .speech-text {
    padding: 0;
    margin-top: 20px;
  }

  .news-list li,
  .hot-list li {
    margin-bottom: 12px;
    padding: 14px 16px;
  }

  .news-list__date,
  .hot-list__rank {
    margin-right: 14px;
  }

  .news-list__title,
  .hot-list__title {
    font-size: 15px;
  }

  .hot-list__date {
    margin-left: 10px;
    font-size: 13px;
  }

  .law-card {
    padding: 16px 52px 16px 18px;
  }

  .crumb {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .page-list__item {
    margin-bottom: 12px;
    padding: 16px 18px;
  }

  .page-list__title {
    font-size: 16px;
  }

  .page-list__desc {
    font-size: 14px;
  }

  .article {
    padding: 24px 20px 28px;
  }

  .article__title {
    font-size: 22px;
  }

  .article__content {
    font-size: 15px;
  }

  .article__pager {
    font-size: 14px;
  }
}

@media (max-width: 374px) {
  .nav-menu a {
    font-size: 12px;
  }
}
