.page-content {
    width: 100%;
    background-image: url(../images/bg/xsbg_bg.png),
        url(../images/bg/left_top_bg.png), url(../images/kxyj_twlb/bg_bottom.png);
    background-size: 1654px 597px, 1093px 630px, 1002px 487px;
    background-position: top right, top left, bottom right;
    background-repeat: no-repeat, no-repeat, no-repeat;
    padding-bottom: 20px;
    position: relative;
}

.page-content-container-top {
  position: relative;
  width: 100%;
  height: 300px;
  border-bottom: 5px solid var(--primary-color);
}

.page-content-container-top-title {
  position: absolute;
  bottom: -4px;
  left: 25px;
  background-image: url(../images/kxyj_twlb/title_bg.png);
  background-size: 305px 186px;
  width: 305px;
  height: 186px;
  background-repeat: no-repeat;
  background-position: center;
}

.page-content-container-top-title-text {
  margin-top: 20px;
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.page-content-container-top-title-text-path {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  text-align: center;
  color: #fff;
  padding-left: 40px;
  margin-top: 10px;
  opacity: 0.8;
}

.page-content-container-content {
  display: flex;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(239, 87, 87, 0.1);
  padding-bottom: 20px;
  min-height: 400px;
}

.page-content-container-content-title-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: 297px;
  margin-left: 29px;
}

.page-content-container-content-title-list-item {
  display: flex;
  align-items: center;
  background: #ececec; /* 非active背景 */
  color: #808080; /* 非active字体色 */
  position: relative;
  transition: background 0.3s, color 0.3s;
  height: 50px;
}

.page-content-container-content-title-list-item-title {
  flex: 1;
  padding: 0 20px;
  font-size: 20px;
  font-weight: 500;
}

.page-content-container-content-title-list-item-line {
  width: 170px;
  height: 1px;
  background: #808080; /* 非active线色 */
  transition: background 0.3s, left 0.3s, right 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0; /* 默认在右边 */
  left: auto;
}

/* active 状态 */
.page-content-container-content-title-list-item.active {
  background: var(--primary-color); /* 主题色背景 */
  color: #fff; /* 主题色字体 */
  text-align: right;
}

.page-content-container-content-title-list-item.active
  .page-content-container-content-title-list-item-line {
  background: #fff; /* 主题色线色 */
  left: 0; /* 线在左边 */
  right: auto;
}

.page-content-left {
  width: 1075px;
}

.page-content-left-time-title {
  width: 991px;
  height: 49px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin: 0 auto;
}

.page-content-left-time-title-text {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.page-content-left-time-title-box {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.year-selector-container {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 999999;
}

.year-selector-container:hover {
  transform: translateY(-2px);
}

/* 悬浮年份选择器样式 */
.year-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 120px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999999;
}

.year-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.year-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
}

.year-dropdown-content {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  background-color: #ffffff;
  border-radius: 8px;
}

.year-dropdown-content::-webkit-scrollbar {
  width: 6px;
}

.year-dropdown-content::-webkit-scrollbar-track {
  background: transparent;
}

.year-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.year-dropdown-content::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}

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

.year-item {
  padding: 8px 16px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
  background-color: #ffffff;
}

.year-item:last-child {
  border-bottom: none;
}

.year-item:hover {
  background-color: #f8f8f8;
  color: var(--primary-color);
  padding-left: 20px;
}

.year-item.active {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-content-left-time-con {
  width: 1009px;
  height: 150px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  padding-top: 10px;
  margin-bottom: 20px;
}

.month_selector_container {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 18px;
  font-weight: bold;
}
.month_selector_item {
  width: 48px;
  height: 34px;
  background-color: #fff;
  text-align: center;
  line-height: 34px;
  cursor: pointer;
}

.month_selector_item.active {
  background-color: #e6ae53;
  color: #fff;
}

.day_selector_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 980px;
  height: 86px;
  margin: 10px auto;
}
.day_selector_container .img {
  width: 20px;
  height: 34px;
  text-align: center;
  line-height: 34px;
}

.day_selector_item {
  position: relative;
  width: 45px;
  height: 86px;
  cursor: pointer;
}

.day_selector_item_title {
  text-align: center;
  font-size: 16px;
  color: #979797;
  font-weight: 500;
}

.day_selector_item_day {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #000;
}
.day_selector_item.active > div {
  color: var(--primary2-color);
}
.day_selector_item.active > div.day_selector_item_title {
  color: var(--primary3-color);
}
.day_status {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.day_status_gq {
  background-color: #e6ae53;
}
.day_status_yg {
  background-color: #4061f4;
}

.page-content-left-list {
  width: 1026px;
  margin: 0 auto;
}

.page-content-left-list-item {
  margin-top: 3px;
}
.page-content-left-list-item-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 1026px;
  height: 46px;
  background-color: #f8f8f8;
}

.page-content-left-list-item-time-title {
  font-weight: 500;
  color: var(--primary-color);
}

.page-content-left-list-item-time-left {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 4px;
}

.page-content-left-list-item-time-left:hover {
  background-color: rgba(137, 59, 144, 0.1);
  color: var(--primary-color);
}

.page-content-left-list-item-time-left img {
  transition: transform 0.3s ease;
}

.page-content-left-list-item.open .page-content-left-list-item-time-left img {
  transform: rotate(180deg);
}

.page-content-left-list-item.open .page-content-left-list-item-time-left span {
  width: 35px;
}

.page-content-left-list-item-time-left:active {
  transform: scale(0.95);
}

.page-content-left-list-item-time-left:active img {
  transform: scale(0.9);
}
.page-content-left-list-item.open .page-content-left-list-item-time-left {
  display: flex;
}

.page-content-left-list-item-con {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.page-content-left-list-item.open .page-content-left-list-item-con {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.page-content-left-list-item-con-text {
  width: 32%;
  height: 360px;
  padding: 0 10px;
  border-left: 1px solid black;
  font-weight: 500;
}

.page-content-left-list-item-con-text > .title {
  font-weight: bold;
  font-size: 20px;
  max-height: 100px;
}

.page-content-left-list-item-con-text > .report > .title {
  font-size: 16px;
  color: var(--primary1-color);
  margin-bottom: 8px;
  margin-top: 16px;
}

.page-content-left-list-item-con-text > .text {
  font-size: 16px;
  font-weight: 500;
  max-height: 134px;
}

.page-content-left-list-item-con-text > .time,
.page-content-left-list-item-con-text > .location {
  color: var(--primary1-color);
  margin-top: 5px;
  font-weight: 400;
}

.page-content-left-list-item-con-text > .time {
  margin-top: 16px;
}
