.category {
  margin-bottom: 30px;
}
#response .response_container {
  padding-bottom: 120px;
  /* 滚动条样式 */
}
#response .response_container #Dates {
  position: relative;
}
#response .response_container .selected-year {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: bold;
  position: relative;
  margin-right: 3px;
}
#response .response_container .selected-year.open:after {
  transform: translateY(-50%) rotate(180deg);
}
#response .response_container .selected-year:focus {
  outline: none;
}
#response .response_container .years-container {
  display: none;
  position: absolute;
  top: 80%;
  left: 0;
  width: 400px;
  background: white;
  box-shadow: 2px 2px 15px 2px #e3e3e3;
  border-top: none;
  border-radius: 0 0 10px 10px;
  max-height: 290px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#response .response_container .years-container .year-title {
  padding: 15px 0 10px;
  text-align: center;
}
#response .response_container #yearsContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
#response .response_container .years-container.open {
  animation: fadeIn 0.3s ease;
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#response .response_container .year-item {
  padding: 12px 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
  border-radius: 5px;
  margin: 3px 5px;
}
#response .response_container .year-item:hover,
#response .response_container .year-item:focus {
  background: #45C25B;
  color: white;
  outline: none;
}
#response .response_container .year-item.current {
  background: #45C25B;
  color: white;
  font-weight: 600;
}
#response .response_container .years-container::-webkit-scrollbar {
  width: 2px;
}
#response .response_container .years-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
#response .response_container .years-container::-webkit-scrollbar-thumb {
  background: #45C25B;
  border-radius: 4px;
}
#response .response_container .years-container::-webkit-scrollbar-thumb:hover {
  background: #45C25B;
}
#response .response_container .filter {
  background: #F6F9FB;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  color: #333333;
  position: relative;
}
#response .response_container .filter > span {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}
#response .response_container .filter > span::after {
  content: '';
  width: 1px;
  height: 14px;
  position: absolute;
  right: 0;
  top: calc(50% - 6px);
  background: #858282;
}
#response .response_container .filter .select-container {
  display: inline-flex;
  align-items: center;
  color: #333333;
}
#response .response_container #Dates #Date {
  background: none;
  width: max-content;
}
#response .response_container .down {
  transition: all 0.3s ease-in-out;
}
#response .response_container .rotate {
  transform: rotate(180deg);
}
#response .response_container .response_list .response_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E6E6E6;
  padding: 23px 0;
}
#response .response_container .response_list .response_item p {
  font-size: 20px;
  color: #333333;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  flex: none;
  width: calc(100% - 130px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#response .response_container .response_list .response_item span {
  font-size: 16px;
  color: #666;
  transition: all 0.3s ease-in-out;
}
#response .response_container .response_list .response_item:hover p,
#response .response_container .response_list .response_item:hover span {
  color: #45C25B;
}
#response .response_container .report {
  display: none;
}
#response_detail .response_detail {
  padding-top: 70px;
  padding-bottom: 30px;
}
#response_detail .response_detail .font30 {
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1024px) {
  .category {
    padding: 38px 0 0;
    margin-bottom: 0;
  }
  #response .response_container {
    padding-bottom: 50px;
    /* 移动端适配 */
  }
  #response .response_container .response_list .response_item {
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  #response .response_container .response_list .response_item p {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 30px;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
  }
  #response .response_container .response_list .response_item span {
    font-size: 16px;
  }
  #response .response_container .years-container #yearsContainer {
    grid-template-columns: repeat(3, 1fr);
  }
  #response .response_container .year-item {
    padding: 15px 5px;
    font-size: 16px;
  }
  #response_detail .response_detail {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #response_detail .response_detail .font30 {
    font-size: 21px;
    line-height: 35px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  #response .response_container .years-container {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) and (max-width: 400px) {
  #response .response_container #yearsContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}
