@charset "UTF-8";
/*
 * @Description: 通用二级页
 * @Author: 程姣姣
 * @Date: 2025-07-31 
 */
.banner {
  position: relative;
  min-width: 1200px;
  height: 280px;
  overflow: hidden;
  z-index: 5;
}
.banner .banner-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
}
.banner .description {
  color: #fff;
  display: flex;
  align-items: flex-end;
  margin-top: 102px;
}
.banner .description h5 {
  font-size: 50px;
  font-weight: bold;
}
.banner .description span {
  font-size: 20px;
  margin: 0 0 6px 25px;
}
.banner .description span::before {
  content: "/";
  padding-right: 20px;
}

.page-content {
  margin-bottom: 30px;
}
.page-content .info-content {
  width: 960px;
  padding: 8px 24px 24px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

/* 二级标题 */
.sec-hd {
  position: relative;
  height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.sec-hd::before {
  position: absolute;
  left: -7px;
  top: 9px;
  content: "";
  width: 22px;
  height: 22px;
  background: url("../images/secondarypage/title_icon.png");
}
.sec-hd .header-search {
  width: 248px;
  height: 34px;
}
.sec-hd .header-search .header-search-icon {
  width: 40px;
  background: url("../images/search-icon.png") no-repeat center center;
}
.sec-name {
  font-size: 20px;
  font-weight: bolder;
  line-height: 30px;
}
.sec-name i {
  font-style: normal;
  color: rgba(186, 196, 206, 0.5);
  font-weight: normal;
  font-size: 14px;
  vertical-align: text-top;
}

.info-list {
  background: url("../images/secondarypage/list-icon.png") no-repeat left center;
}
.info-list > a {
  display: flex;
  justify-content: space-between;
  height: 46px;
  padding-left: 25px;
  line-height: 45px;
  border-bottom: 1px solid #e6e6e6;
  transition: border-color 0.3s;
}
.info-list > a:hover {
  color: #c8000a;
  border-color: #c8000a;
}
.info-list > a:hover .info-date {
  color: #1f6de8;
}
.info-date {
  width: 82px;
  text-align: right;
  color: #646464;
}
.info-text {
  max-width: 688px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.condition {
  margin: 24px 0 5px 0;
}
.condition-line {
  display: flex;
}
.condition-line.expand .condition-more {
  background-image: url("../images/secondarypage/condition_more_icon_expand.png");
}
.condition-line + .condition-line {
  margin-top: 6px;
}
.condition-label {
  height: 26px;
  color: #666;
  text-align: right;
  line-height: 26px;
}
.condition-con {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  flex: 1;
  margin-right: -6px;
  height: 32px;
  overflow: hidden;
}
.condition-item {
  box-sizing: border-box;
  margin: 0 6px 6px 0;
  padding: 0 12px;
  height: 26px;
  color: #666;
  line-height: 26px;
  border-radius: 13px;
  background-color: #f7f7f7;
  transition: background-color 0.3s;
  cursor: pointer;
  user-select: none;
}
.condition-item.current {
  color: #fff;
  font-weight: bold;
  background-color: #c8000a;
}
.condition-date {
  display: flex;
}
.condition-date-item {
  position: relative;
  box-sizing: border-box;
  width: 120px;
  height: 26px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.condition-date-item:focus-within {
  border-color: #1f6de8;
}
.condition-date-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 14px;
  height: 14px;
  background: url("../images/secondarypage/condition_date_icon.png") no-repeat center;
  transform: translateY(-50%);
}
.condition-date-item + .condition-date-item {
  margin-left: 24px;
}
.condition-date-item + .condition-date-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 12px;
  height: 1px;
  background-color: #e6e6e6;
  transform: translateY(-50%);
}
.condition-date-item input {
  box-sizing: border-box;
  padding: 0 38px 0 12px;
  width: 100%;
  height: 100%;
  font-size: 13px;
  border-radius: 4px;
}
.condition-date-item input::placeholder {
  color: #bac4ce;
}
.condition-more {
  box-sizing: border-box;
  margin-left: 12px;
  padding-right: 18px;
  height: 26px;
  color: #c8000a;
  line-height: 26px;
  background: url("../images/secondarypage/condition_more_icon.png") no-repeat right center;
  cursor: pointer;
  user-select: none;
}