/* ========== 加载动画样式 ========== */
.list-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  min-height: 200px;
}
.loading-spinner {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.spinner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #016bb5;
  animation: loadingBounce 1.4s ease-in-out infinite both;
}
.spinner-dot:nth-child(1) {
  animation-delay: -0.32s;
}
.spinner-dot:nth-child(2) {
  animation-delay: -0.16s;
}
.spinner-dot:nth-child(3) {
  animation-delay: 0s;
}
@keyframes loadingBounce {
  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.loading-text {
  color: #999;
  font-size: 14px;
  letter-spacing: 2px;
}
/* ========== 空状态样式 ========== */
.list-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  min-height: 200px;
}
.empty-icon {
  margin-bottom: 20px;
  animation: emptyFadeIn 0.5s ease-out;
}
@keyframes emptyFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.empty-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
}
.empty-subtext {
  font-size: 14px;
  color: #999;
}
/* ========== 日历加载动画样式 ========== */
.calendar-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  min-height: 120px;
}
.calendar-loading-spinner {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.cal-spinner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #016bb5;
  animation: calLoadingBounce 1.4s ease-in-out infinite both;
}
.cal-spinner-dot:nth-child(1) {
  animation-delay: -0.32s;
}
.cal-spinner-dot:nth-child(2) {
  animation-delay: -0.16s;
}
.cal-spinner-dot:nth-child(3) {
  animation-delay: 0s;
}
@keyframes calLoadingBounce {
  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.calendar-loading-text {
  color: #999;
  font-size: 13px;
  letter-spacing: 1px;
}
.container {
  position: relative;
  background: url(../images/city_bg_body.png) no-repeat;
  background-position: bottom;
  margin-top: -80px;
  z-index: 999999;
}
.container .main {
  background-color: rgba(244, 248, 255, 0.32);
  box-shadow: 0px 5px 10px 0px rgba(1, 82, 147, 0.16), inset 0px 2px 6px 0px rgba(255, 255, 255, 0.32);
  border: solid 1px rgba(255, 255, 255, 0.32);
  padding: 58px 40px;
  margin-bottom: 80px;
}
.container .main .city_top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.container .main .city_top .top_left {
  width: 100%;
  height: 353px;
  background: url(../images/city_bg_top_left.png) no-repeat;
  background-size: 483px 311px;
  background-position: 0 center;
  padding-left: 112px;
}
.container .main .city_top .top_left .calendar {
  width: 100%;
  height: 100%;
  background-color: #015293;
  border-radius: 10px;
  padding: 6px;
}
.container .main .city_top .top_left .calendar .calendar_header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
}
.container .main .city_top .top_left .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;
}
.container .main .city_top .top_left .calendar .calendar_header .calendar_nav:hover {
  background: rgba(255, 255, 255, 0.15);
}
.container .main .city_top .top_left .calendar .calendar_header .calendar_title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 20px;
}
.container .main .city_top .top_left .calendar .calendar_body {
  height: calc(100% - 56px);
  border-radius: 10px;
  background: url(../images/city_bg_calendar_top.png) no-repeat;
  background-position: top;
  background-color: #fff;
  padding: 20px 10px;
}
.container .main .city_top .top_left .calendar .calendar_body .calendar_weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 20px;
  color: #333;
  font-weight: 700;
}
.container .main .city_top .top_left .calendar .calendar_body .calendar_weekdays .is_weekend {
  color: #d61201;
}
.container .main .city_top .top_left .calendar .calendar_body .calendar_grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 3px;
}
.container .main .city_top .top_left .calendar .calendar_body .calendar_grid .calendar_cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  font-size: 18px;
}
.container .main .city_top .top_left .calendar .calendar_body .calendar_grid .calendar_cell .calendar_cell_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50px;
}
.container .main .city_top .top_left .calendar .calendar_body .calendar_grid .calendar_cell .calendar_cell_inner.is_today {
  background-color: #ff6c00;
  color: #fff;
}
.container .main .city_top .top_left .calendar .calendar_body .calendar_grid .calendar_cell .calendar_cell_inner.is_outside {
  border: 1px solid #015293;
}
.container .main .city_top .top_left .calendar .calendar_body .calendar_grid .calendar_cell .calendar_cell_inner.is_selected {
  background-color: #015293;
  color: #fff;
}
.container .main .city_top .top_left .calendar .calendar_body .calendar_grid .calendar_cell .calendar_cell_inner.is_disabled {
  color: #ccc;
}
.container .main .city_top .top_right {
  position: relative;
  display: flex;
  align-items: start;
  width: 100%;
  height: 354px;
  background: url(../images/city_bg_wlss.png) no-repeat;
  background-size: 483px 311px;
  background-position: right center;
  margin-top: 50px;
}
.container .main .city_top .top_right .wlss {
  width: 584px;
  height: 100%;
  border-radius: 11px;
  overflow: hidden;
  background-color: #fff;
}
.container .main .city_top .top_right .wlss .swiper {
  position: relative;
  width: 100%;
  height: 100%;
}
.container .main .city_top .top_right .wlss .swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.container .main .city_top .top_right .wlss .swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.container .main .city_top .top_right .wlss .swiper .swiper-slide a img {
  width: 100%;
  height: 100%;
}
.container .main .city_top .top_right .wlss .swiper .swiper-slide a .mask {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background-color: rgba(0, 0, 0, 0.28);
  padding-left: 35px;
  color: #fff;
  font-size: 20px;
}
.container .main .city_top .top_right .wlss .swiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  height: 55px;
  padding-right: 24px;
}
.container .main .city_top .top_right .wlss .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: #fff;
  opacity: 1;
}
.container .main .city_top .top_right .wlss .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff6c00;
}
.container .main .city_top .top_right .right_link {
  position: absolute;
  right: 0;
  width: 82px;
  height: 100%;
}
.container .main .city_main {
  margin-top: 60px;
}
.container .main .city_main .city_tab {
  display: flex;
  justify-content: space-around;
  font-size: 26px;
  color: #333;
  border-bottom: 1px solid #015293;
}
.container .main .city_main .city_tab li {
  border-bottom: 3px solid transparent;
  padding-bottom: 10px;
  cursor: pointer;
}
.container .main .city_main .city_tab li:hover,
.container .main .city_main .city_tab li.active {
  border-bottom: 3px solid #015293;
  color: #015293;
  font-weight: 700;
}
.container .main .city_main .list li {
  margin-top: 60px;
}
.container .main .city_main .list li a {
  font-size: 20px;
  color: #333;
}
.container .main .city_main .list li a h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-size: 24px;
  color: #333;
  padding-left: 21px;
  margin-bottom: 25px;
}
.container .main .city_main .list li a h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 23px;
  background-color: #ff6c00;
}
.container .main .city_main .list li a h3 .date {
  font-size: 18px;
  color: #999;
  font-weight: normal;
}
.container .main .city_main .list li a p {
  line-height: 40px;
}
.container .main .city_main .list li a .source {
  font-size: 18px;
  color: #999;
  margin-top: 25px;
}
.container .main .city_main .list li:hover a h3 {
  color: #015293;
}
