#app::before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 80px;
  width: 706px;
  height: 290px;
  background-image: url(/static/image/lower_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
 
}

.consult {
  margin: 0 var(--px120);
}


.notification-container {
  position: relative;
  width: var(--px200); /* 设置宽度 */
  height: var(--px100); /* 设置高度 */
  background-color: #f0f0f0; /* 背景颜色 */
}
 
.notification-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4CAF50; /* 梯形颜色 */
  clip-path: polygon(00% 0%, 80% 0%, 100% 100%, 0% 100%); /* 创建梯形 */
}
/* 设置通知公告的文字样式 */
.notification-container h1 {
  margin: 0;
    font-size: 2em;
    color: white; /* 白色字体 */
    font-weight: bold; /* 加粗字体 */
    transform: skew(10deg); /* 反方向倾斜以保持文字正常 */
}

.app-main .content-main-consult {
  padding: 0;
  box-sizing: border-box;
}

.content-main-consult .consult-title {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap; /* 防止文字换行 */
  background: rgba(255,255,255,0.5);
  border: var(--px2) solid #fff;
  height: var(--px54);
  line-height: var(--px54);
  clip-path: polygon(00% 0%, 98% 0%, 100% 100%, 0% 100%); /* 创建梯形 */
  font-weight: 400;
  font-size: var(--px20);
  color: #79879C;
  overflow-x: auto; /* 允许水平滚动 */
  scrollbar-width: none; /* Firefox 隐藏滚动条 */
  -ms-overflow-style: none; /* IE/Edge 隐藏滚动条 */
}
/* WebKit 浏览器（Chrome/Safari）隐藏滚动条 */
.content-main-consult .consult-title::-webkit-scrollbar {
  display: none;
}
.content-main-consult .consult-title div {
  text-align: center;
  cursor: pointer;
  padding: 0 var(--px22) 0 var(--px10);
  flex: 0 0 auto;
  white-space: nowrap;
}
.content-main-consult .consult-title div.active {
  background: linear-gradient( 180deg, #D1F6F9 0%, #FFFFFF 100%);
  font-weight: 500;
  font-size: var(--px20);
  color: #00B3B3;
  clip-path: polygon(00% 0%, 90% 0%, 100% 100%, 0% 100%); /* 创建梯形 */
}
.content-main-consult .consult-content {
  background-color: #fff;
}
.listPage {
  display: block;
}
.noData {
  text-align: center;
  line-height: var(--px320);
}
.listPage-main-container {
  margin-bottom: var(--px20);
}

.listPage-main-container-item {
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 0.4rem 0 0.4rem var(--px40);
  line-height: 0.24rem;
}

.listPage-main-container-item:hover .listPage-main-container-item-date,
.listPage-main-container-item:hover .listPage-main-container-item-title {
  color: var(--color-base2);
}

.listPage-main-container-item ~ .listPage-main-container-item {
  border-top: var(--px1) solid #e5ebf3;
}

.listPage-main-container-item-date {
  font-family: "D-DIN-Regular";
  font-weight: 700;
  font-size: 0.24rem;
  color: #333333;
}

.listPage-main-container-item-years {
  font-family: D-DIN, D-DIN;
  font-weight: 400;
  font-size: 0.18rem;
  color: #93a2b8;
  margin: 0 0.4rem 0 0.16rem;
}

.listPage-main-container-item-title {
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 0.18rem;
  color: #000000;
  flex: 1;
  cursor: pointer;
}

.highlight {
  color: red;
}

.app-top {
  display: flex;
  justify-content: space-between;
  /* align-items: flex-end; */
  align-items: center;
  flex-wrap: wrap;
}

.app-top .app-title{
  margin-right: var(--px40);
  margin-bottom: var(--px50);
}

.app-top .search-input-container {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  position: relative;
  z-index: 2;
  max-width: var(--px600);
  flex: 1;
  min-width: var(--px320);
  border-bottom: var(--px1) solid #00b3b3;
  margin-bottom: 0;
}

.app-top .search-input-container .icon {
  background-image: url('/static/image/icon_search_color2.png');
}

/*!*移动端*!*/
@media screen and (max-width: 500px) {
  
  .consult {
    margin: 0 20px;
  }

  .listPage-main-container-item-date {
    font-size: 16px;
  }

  .listPage-main-container-item-title,
  .listPage-main-container-item-years {
    font-size: 12px;
  }
}
