.hero-swiper {
  height: 100vh;
  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: 100%;
  color: #fff;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #004EA2;
  padding: 1rem 2rem;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .hero-swiper {
    height: 800px;
  }
}
@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 {
    font-size: 18px;
  }
}
@media screen and (max-width: 567px) {
  .hero-swiper {
    height: 250px;
  }
  .hero-swiper .hero-article .title {
    font-size: 16px;
    padding: 0.25rem 0.75rem;
  }
}

.news-container,
.notice-container,
.event-container {
  padding: 80px 0;
}
@media screen and (max-width: 992px) {
  .news-container,
.notice-container,
.event-container {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .news-container,
.notice-container,
.event-container {
    padding: 40px 0;
  }
}

.news-container .news-swiper {
  height: 100%;
  max-height: 500px;
  position: relative;
}
.news-container .news-swiper .swiper {
  height: 100%;
}
.news-container .news-swiper .swiper .image {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-container .news-swiper .news-swiper-navigation {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #004EA2;
  z-index: 1;
  display: flex;
  border-radius: 16px 0px 0px 0px;
}
.news-container .news-swiper .news-swiper-navigation .item {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .news-container .news-swiper {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .news-container .news-swiper {
    height: 250px;
  }
}
.news-container .swiper-news .publish-time {
  font-family: DIN;
  position: relative;
}
.news-container .swiper-news .publish-time::after {
  content: "";
  width: 33px;
  height: 33px;
  background-color: #E3983F;
  border-radius: 50%;
  position: absolute;
  left: 30px;
  top: 0;
  z-index: 0;
}
.news-container .swiper-news .publish-time .year {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.news-container .swiper-news .publish-time .date-time {
  display: flex;
  align-items: flex-end;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.news-container .swiper-news .publish-time .date-time .date {
  font-size: 32px;
  font-weight: bold;
  margin-right: 4px;
}
.news-container .swiper-news .publish-time .date-time .time {
  font-size: 16px;
  font-weight: bold;
}
.news-container .swiper-news .title {
  font-size: 18px;
  margin-bottom: 15px;
  height: 54px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-container .swiper-news .summary {
  font-size: 14px;
  color: #C5C5C5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  min-height: 105px;
}
.news-container .swiper-news .link {
  border: 1px solid #004EA2;
  font-size: 14px;
  color: #004EA2;
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 50px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.news-container .swiper-news .link:hover {
  background-color: #004EA2;
  color: #fff;
}
.news-container .swiper-news .link .arrow-box {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #E3983F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-container .swiper-news .link .arrow-box .icon {
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 768px) {
  .news-container .swiper-news .title {
    height: auto;
  }
  .news-container .swiper-news .summary {
    min-height: auto;
  }
  .news-container .swiper-news .link {
    margin-top: 20px;
  }
}
.news-container .news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-container .news-list .news {
  background: #fff;
  box-shadow: 0px 17px 23px 0px rgba(119, 155, 192, 0.15);
  display: flex;
  gap: 20px;
  padding: 10px;
  transition: all 0.3s;
}
.news-container .news-list .news:hover {
  box-shadow: 0px 17px 23px 0px rgba(119, 155, 192, 0.3);
  transform: translateX(10px);
}
.news-container .news-list .news .cover {
  width: 96px;
  height: 96px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-container .news-list .news .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-container .news-list .news .content .title {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-container .news-list .news .content .time {
  font-size: 12px;
}

.notice-container {
  border-radius: 50px 0px 0px 0px;
  margin-top: -45px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.notice-container .notice {
  height: 190px;
  box-sizing: border-box;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  transition: all 0.3s;
}
.notice-container .notice:hover {
  background-color: #004EA2;
  color: #fff;
  transform: translateY(-10px);
}
.notice-container .notice:hover .time-box {
  color: #fff;
}
.notice-container .notice:hover .time-box .icon:last-child {
  display: inline;
}
.notice-container .notice:hover .time-box .icon:first-child {
  display: none;
}
.notice-container .notice .title {
  font-size: 18px;
}
.notice-container .notice .time-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #C5C5C5;
}
.notice-container .notice .time-box .icon:last-child {
  display: none;
}
@media screen and (max-width: 992px) {
  .notice-container {
    margin-top: -60px;
    padding-top: 80px;
  }
}

.event-container {
  overflow: hidden;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.event-container .event {
  display: flex;
}
.event-container .event .content {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f2f8ff;
  width: 288px;
  height: 429px;
  box-sizing: border-box;
  padding: 80px 48px;
}
.event-container .event .content .title {
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.event-container .event .content .time {
  color: #C5C5C5;
  font-size: 14px;
  margin: 10px 0;
}
.event-container .event .content .summary {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.event-container .event .content .link {
  border: 1px solid #004EA2;
  font-size: 14px;
  color: #004EA2;
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 50px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 130px;
}
.event-container .event .content .link:hover {
  background-color: #004EA2;
  color: #fff;
}
.event-container .event .content .link .arrow-box {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #E3983F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-container .event .content .link .arrow-box .icon {
  width: 8px;
  height: 8px;
}
.event-container .event .cover-box {
  flex: 1;
  flex-shrink: 0;
}
.event-container .event .cover-box .cover {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 429px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 992px) {
  .event-container .event {
    flex-direction: column;
  }
  .event-container .event .cover-box {
    order: 1;
  }
  .event-container .event .content {
    order: 2;
    width: 100%;
    height: auto;
    padding: 20px;
  }
  .event-container .event .content .link {
    margin-top: 20px;
  }
}
.event-container .event-list {
  position: relative;
}
.event-container .event-list .event-swiper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0;
}
.event-container .event-list .event-swiper .swiper {
  height: 100%;
}
.event-container .event-list .event-swiper .swiper .swiper-slide .image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 1s;
}
.event-container .event-list .event-swiper .next {
  width: 84px;
  height: 84px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
/*# sourceMappingURL=index.css.map */
