body {
  background-color: #f9f5f1;
}

.channel-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #014da1;
  padding-right: 2rem;
  position: relative;
}
.channel-name .name {
  padding: 10px 40px 10px 20px;
  font-size: 24px;
  font-weight: 600;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
.channel-name .more {
  color: #fff;
  display: flex;
  align-items: center;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
}
.channel-name .more:hover {
  transform: translateX(5px);
}
.channel-name .right-bg {
  position: absolute;
  right: 2rem;
  bottom: 0;
  height: 43px;
}

.hero-swiper {
  position: relative;
  height: 480px;
  transition: all 0.5s;
}
.hero-swiper .hero-article {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}
.hero-swiper .hero-article .title {
  width: 50%;
  color: #fff;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.47);
  padding: 1rem 2rem;
}
.hero-swiper .navigation-container {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.hero-swiper .navigation-container .container {
  position: relative;
}
.hero-swiper .navigation-container .hero-swiper-prev {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.hero-swiper .navigation-container .hero-swiper-next {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.hero-swiper .pagination-container {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.hero-swiper .pagination-container .container {
  position: relative;
}
.hero-swiper .pagination-container .hero-swiper-pagination {
  bottom: 15px !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-swiper .pagination-container .hero-swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.hero-swiper .pagination-container .hero-swiper-pagination .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: #fff;
}
@media screen and (min-width: 1920px) {
  .hero-swiper {
    height: 600px;
  }
}
@media screen and (max-width: 992px) {
  .hero-swiper {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .hero-swiper {
    height: 300px;
  }
  .hero-swiper .hero-article .title {
    width: 70%;
    font-size: 18px;
  }
}
@media screen and (max-width: 567px) {
  .hero-swiper {
    height: 250px;
  }
  .hero-swiper .hero-article .title {
    width: 80%;
    font-size: 16px;
    padding: 0.25rem 0.75rem;
  }
  .hero-swiper .pagination-container .hero-swiper-pagination {
    bottom: 10px !important;
  }
}

.news-swiper {
  height: 100%;
  min-height: 450px;
  position: relative;
  background-color: #fff;
}
.news-swiper .news-swiper-pagination {
  bottom: 25px !important;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-swiper .news-swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: rgba(1, 77, 161, 0.5);
  opacity: 1;
}
.news-swiper .news-swiper-pagination .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: #014da1;
}
.news-swiper .news-swiper-prev {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
}
.news-swiper .news-swiper-next {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
}
.news-swiper .item {
  display: block;
  height: calc(100% - 40px);
  position: relative;
}
.news-swiper .item .detail {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0 20px;
  color: #fff;
  display: flex;
  align-items: center;
}
.news-swiper .item .detail .title {
  font-size: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 567px) {
  .news-swiper {
    min-height: 320px;
  }
}

.news-list {
  display: flex;
  flex-direction: column;
}
.news-list .news {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transition: all 0.5s;
}
.news-list .news .header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-list .news .header .title {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list .news .header .common-calendar {
  border-left: 1px solid rgba(165, 165, 165, 0.5);
  flex-shrink: 0;
}
.news-list .news .summary {
  font-size: 12px;
  color: #a5a5a5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list .news:hover {
  transform: translateX(10px);
}

.notice-list .notice {
  background-color: #fff;
  display: block;
  position: relative;
  height: 100%;
  transition: all 0.5s;
}
.notice-list .notice .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 44px;
}
.notice-list .notice .summary {
  font-size: 12px;
  color: #a5a5a5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.notice-list .notice .arrow {
  width: 10px;
  height: 10px;
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
}
.notice-list .notice:hover {
  background-color: #014da1;
  transform: translateY(-5px);
}
.notice-list .notice:hover .title {
  color: #fff;
}
.notice-list .notice:hover .summary {
  color: rgba(255, 255, 255, 0.75);
}

.org-list .org {
  background-color: #fff;
  padding: 30px 20px;
  display: block;
  transition: all 0.5s;
}
.org-list .org-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dcdcdc;
}
.org-list .org-header .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.org-list .org-header .arrow {
  width: 10px;
  height: 16px;
}
.org-list .org-content {
  font-size: 14px;
  color: #a5a5a5;
  padding-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.org-list .org:hover {
  background-color: #014da1;
  transform: translateY(-5px);
}
.org-list .org:hover .name {
  color: #fff !important;
}
.org-list .org:hover .org-content {
  color: rgba(255, 255, 255, 0.75) !important;
}

.open-list .open {
  background-color: #fff;
  padding: 16px;
  display: block;
  transition: all 0.5s;
}
.open-list .open-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  padding-bottom: 16px;
}
.open-list .open-header .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.open-list .open-content {
  font-size: 14px;
  color: #a5a5a5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.open-list .open:hover {
  background-color: #014da1;
  transform: translateY(-5px);
}
.open-list .open:hover .name {
  color: #fff !important;
}
.open-list .open:hover .common-time {
  color: #fff !important;
}
.open-list .open:hover .open-content {
  color: rgba(255, 255, 255, 0.75) !important;
}

.link-list {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
}
.link-list .link {
  transition: all 0.5s;
}
.link-list .link:hover {
  color: #014da1;
}
/*# sourceMappingURL=index.css.map */
