@keyframes list-bounce {
  0%,
  80%,
  100% {
    transform: scale(0.4);
    opacity: 0.3;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #999;
  padding-top: 30px;
}
.breadcrumbs img {
  margin-right: 10px;
}
.breadcrumbs a {
  color: #999;
}
.breadcrumbs a:hover {
  color: #015293;
}
.headlines {
  display: flex;
  margin-top: 57px;
  padding: 0 18px;
}
.headlines .headlines_tilte {
  padding-top: 8px;
  text-align: center;
}
.headlines .headlines_inner {
  flex: 1;
  min-width: 0;
  margin-left: 43px;
}
.headlines .headlines_inner .inner_name {
  font-size: 36px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.headlines .headlines_inner .inner_name a {
  color: #015293;
}
.headlines .headlines_inner .inner_name a:hover {
  color: #cb0505;
}
.headlines .headlines_inner .inner_desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 这里控制显示几行，改成 3 就是三行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  color: #000;
  line-height: 28px;
  text-align: center;
}
.today {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  height: auto;
  background-color: #ffffff;
  box-shadow: 1px 3px 9px 0px rgba(103, 103, 103, 0.38);
}
.today .today_left {
  position: relative;
  width: 100%;
  height: 370px;
}
.today .today_left .swiper {
  width: 100%;
  height: 100%;
}
.today .today_left .swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.today .today_left .swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.today .today_left .swiper .swiper-slide a img {
  width: 100%;
  height: 100%;
}
.today .today_left .swiper .swiper-slide a .mask {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  color: #fff;
  padding-left: 30px;
}
.today .today_left .swiper .swiper-city-pagination {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 10px;
  padding-right: 20px;
}
.today .today_left .swiper .swiper-city-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: #fff;
  opacity: 1;
}
.today .today_left .swiper .swiper-city-pagination .swiper-pagination-bullet-active {
  background-color: #ff6c00;
}
.today .today_right {
  flex: 1;
  padding: 25px 30px;
}
.today .today_right .right_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.today .today_right .right_head .text {
  position: relative;
  font-size: 28px;
  color: #015293;
  font-weight: 700;
}
.today .today_right .right_head .text::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 35%;
  height: 3px;
  background-color: #015293;
  transform: translateX(-100%);
}
.today .today_right .right_head .text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 35%;
  height: 3px;
  background-color: #ff6c00;
}
.today .today_right .right_head .more {
  font-size: 16px;
  color: #666;
}
.today .today_right .right_head .more:hover {
  color: #015293;
}
.today .today_right .right_list {
  margin-top: 40px;
}
.today .today_right .right_list li {
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 20px;
}
.today .today_right .right_list li:last-child {
  border-bottom: 0;
}
.today .today_right .right_list li a {
  display: flex;
  align-items: center;
}
.today .today_right .right_list li a .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #607c84;
  margin-right: 30px;
}
.today .today_right .right_list li a .date .month {
  font-size: 18px;
}
.today .today_right .right_list li a .inner {
  flex: 1;
  color: #333;
  font-size: 18px;
}
.today .today_right .right_list li a .inner .inner_desc {
  font-size: 16px;
  margin-top: 5px;
}
.today .today_right .right_list li:hover a .date {
  color: #ff6c00;
}
.today .today_right .right_list li:hover a .inner .inner_title {
  color: #015293;
}
.dynamic {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 59px;
}
.dynamic .dynamic_item {
  width: 100%;
}
.dynamic .dynamic_item .dynamic_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dynamic .dynamic_item .dynamic_head .dynamic_head_nav {
  display: flex;
  align-items: center;
}
.dynamic .dynamic_item .dynamic_head .dynamic_head_nav .line {
  font-size: 30px;
  color: #666;
  margin: 0 36px;
}
.dynamic .dynamic_item .dynamic_head .dynamic_head_nav li {
  position: relative;
  font-size: 24px;
  color: #666;
  cursor: pointer;
}
.dynamic .dynamic_item .dynamic_head .dynamic_head_nav li::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 35%;
  height: 3px;
  background-color: transparent;
  transform: translateX(-100%);
}
.dynamic .dynamic_item .dynamic_head .dynamic_head_nav li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 35%;
  height: 3px;
  background-color: transparent;
}
.dynamic .dynamic_item .dynamic_head .dynamic_head_nav li.on {
  color: #015293;
  font-weight: 700;
}
.dynamic .dynamic_item .dynamic_head .dynamic_head_nav li.on::before {
  background-color: #015293;
}
.dynamic .dynamic_item .dynamic_head .dynamic_head_nav li.on::after {
  background-color: #ff6c00;
}
.dynamic .dynamic_item .dynamic_head .more {
  font-size: 16px;
  color: #666;
}
.dynamic .dynamic_item .dynamic_head .more:hover {
  color: #015293;
}
.dynamic .dynamic_item .list {
  margin-top: 10px;
}
.dynamic .dynamic_item .list li {
  position: relative;
  line-height: 54px;
  font-size: 18px;
  padding-left: 15px;
}
.dynamic .dynamic_item .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: #999;
  border-radius: 50%;
}
.dynamic .dynamic_item .list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
}
.dynamic .dynamic_item .list li a .date {
  display: flex;
  align-items: center;
}
.dynamic .dynamic_item .list li a .date .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 79px;
  height: 24px;
  border-radius: 10px;
  border: solid 1px #ff6c00;
  font-size: 16px;
  color: #ff6c00;
  margin-right: 5px;
}
.dynamic .dynamic_item .list li:hover::before {
  background-color: #015293;
}
.dynamic .dynamic_item .list li:hover a {
  color: #015293;
}
.dynamic .dynamic_item .list li:hover a .date {
  color: #015293;
}
.city {
  margin-top: 68px;
}
.city .city_banner {
  height: 150px;
  background-color: #015293;
}
.city .city_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -110px;
}
.city .city_inner .calendar_box {
  width: 100%;
  height: 509px;
  background: url(../images/dynamic_bg_calendar.png) no-repeat;
  background-size: 100% 100%;
}
.city .city_inner .calendar_box .calendar {
  height: 100%;
  padding: 44px 25px 0 25px;
}
.city .city_inner .calendar_box .calendar .calendar_header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  border-bottom: 1px solid #ced8ea;
}
.city .city_inner .calendar_box .calendar .calendar_header .calendar_nav {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.city .city_inner .calendar_box .calendar .calendar_header .calendar_title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #015293;
  margin: 0 36px;
}
.city .city_inner .calendar_box .calendar .calendar_body {
  height: calc(100% - 64px);
  padding: 20px 10px;
}
.city .city_inner .calendar_box .calendar .calendar_body .calendar_weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 25px;
  color: #333;
}
.city .city_inner .calendar_box .calendar .calendar_body .calendar_grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 15px;
  margin-top: 10px;
}
.city .city_inner .calendar_box .calendar .calendar_body .calendar_grid .calendar_cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  font-size: 25px;
  color: #8d9ab0;
}
.city .city_inner .calendar_box .calendar .calendar_body .calendar_grid .calendar_cell .calendar_cell_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50px;
}
.city .city_inner .calendar_box .calendar .calendar_body .calendar_grid .calendar_cell .calendar_cell_inner.is_today {
  background-color: #015293;
  color: #fff;
}
.city .city_inner .calendar_box .calendar .calendar_body .calendar_grid .calendar_cell .calendar_cell_inner.is_outside {
  border: 1px solid #f9b787;
}
.city .city_inner .calendar_box .calendar .calendar_body .calendar_grid .calendar_cell .calendar_cell_inner.is_selected {
  background-color: #f9b787;
  color: #8d9ab0;
}
.city .city_inner .calendar_box .calendar .calendar_body .calendar_grid .calendar_cell .calendar_cell_inner.is_disabled {
  color: #ccc;
}
.city .city_inner .city_inner_right {
  width: 100%;
}
.city .city_inner .city_inner_right .right_title {
  display: none;
  justify-content: center;
}
.city .city_inner .city_inner_right .right_list {
  margin-top: 30px;
}
.city .city_inner .city_inner_right .right_list li {
  height: 114px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(67, 92, 104, 0.13);
  margin-bottom: 20px;
}
.city .city_inner .city_inner_right .right_list li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 32px;
}
.city .city_inner .city_inner_right .right_list li a .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  color: #747474;
  margin-right: 36px;
}
.city .city_inner .city_inner_right .right_list li a .date .year {
  font-size: 36px;
  color: #607c84;
}
.city .city_inner .city_inner_right .right_list li a p {
  flex: 1;
  font-size: 18px;
  color: #333;
  line-height: 36px;
}
.city .city_inner .city_inner_right .right_list li:hover a .date {
  color: #015293;
}
.city .city_inner .city_inner_right .right_list li:hover a .date .year {
  color: #015293;
}
.city .city_inner .city_inner_right .right_list li:hover a p {
  color: #015293;
}
.city .city_inner .city_inner_right .list-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 375px;
  background-color: #fff;
  margin-top: 58px;
  font-size: 18px;
  color: #999;
}
.city .city_inner .city_inner_right .list-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 375px;
  background-color: #fff;
  margin-top: 58px;
  font-size: 18px;
  color: #999;
}
.city .city_inner .city_inner_right .list-loading .loading-spinner {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}
.city .city_inner .city_inner_right .list-loading .loading-text {
  font-size: 18px;
}
.city .city_inner .city_inner_right .list-loading .spinner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #016bb5;
  animation: list-bounce 1.4s infinite ease-in-out both;
}
.city .city_inner .city_inner_right .list-loading .spinner-dot:nth-child(1) {
  animation-delay: -0.32s;
}
.city .city_inner .city_inner_right .list-loading .spinner-dot:nth-child(2) {
  animation-delay: -0.16s;
}
.remind {
  margin-top: 40px;
}
.remind .remind_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.remind .remind_title .text {
  position: relative;
  font-size: 28px;
  color: #015293;
  font-weight: 700;
}
.remind .remind_title .text::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 35%;
  height: 3px;
  background-color: #015293;
  transform: translateX(-100%);
}
.remind .remind_title .text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 35%;
  height: 3px;
  background-color: #ff6c00;
}
.remind .remind_title .more {
  color: #333;
  font-size: 16px;
}
.remind .remind_title .more:hover {
  color: #015293;
}
.remind .remind_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}
.remind .remind_list li {
  position: relative;
  padding-left: 30px;
  width: 100%;
}
.remind .remind_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #015293;
  border-radius: 50%;
}
.remind .remind_list li a .date {
  font-size: 18px;
  color: #015293;
}
.remind .remind_list li a .title {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  margin: 2px 0;
}
.remind .remind_list li a .desc {
  font-size: 16px;
  color: #626262;
}
.remind .remind_list li:hover a .title {
  color: #015293;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
  margin-top: 58px;
  margin-bottom: 80px;
}
.cards li {
  width: 404px;
  height: 179px;
  transition: all 0.3s;
}
.cards li a {
  display: block;
  width: 100%;
  height: 100%;
}
.cards li a img {
  width: 100%;
  height: 100%;
}
.cards li:hover {
  transform: translateY(-5px);
}
