.wzlb {
    margin-bottom: .8rem;
}

.wzlb .slick-list {
    overflow: inherit;
}

.slide-panel {
    display: grid!important;
    grid-template-columns: repeat(3 ,2fr);
    gap: .3rem;
}

.tab-bar {
    display: flex;
    gap: .6rem;
    justify-content: center;
    margin-bottom: .3rem;
  }

  .tab-btn {
    font-size: .25rem;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color .25s, border-color .25s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    position: relative;
  }

  .tab-btn.active {
    color: #257eb4;
    border-bottom-color: #257eb4;
  }

.tab-btn::before {
    content: "";
    position: absolute;
    left: -.35rem;
    top: -.11rem;
    height: 0.97rem;
    width: 100%;
    background: url(../images/tit-bg1.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}



  .tab-content {
  margin-top: 0.8rem;
  }

  /* 隐藏 slick 默认箭头/圆点 */
  .tab-content .slick-prev,
  .tab-content .slick-next { display: none !important; }
  .tab-content .slick-dots { display: none !important; }

  /* 列表项 */
  .list-item {
    display: flex;
    align-items: center;
    gap: .2rem;
    padding: .2rem .5rem;
    cursor: pointer;
    transition: background .2s;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.03);
    flex-direction: row-reverse;
    background: #eff6f9;
  }
  .list-item:last-child { border-bottom: none; }
  .list-item:hover { background: #257eb4; }
  .list-item:hover span{color:white;}
  .list-item:hover div{color:white;}
  .list-item .tag {
    flex-shrink: 0;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    display: none;
  }
  .tag-news { background: #667eea; }
  .tag-notice { background: #e8952e; }
  .tag-event { background: #2eaf7d; }
  .tag-all { background: #999; }

  .list-item .text {
    flex: 1;
    min-width: 0;
    font-size: .2rem;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .list-item .date {
    flex-shrink: 0;
    font-size: .18rem;
    color: #bbb;
  }

  .list-item .arrow {
    flex-shrink: 0;
    font-size: .14rem;
    color: #ccc;
    display: none;
  }


.date-time-day {
    font-size: .28rem;
    font-weight: bold;
    color: #257eb4;
    text-align: center;
}

.date-time-year {
    color: #333333;
    font-size: .14rem;
}


@media (max-width: 1024px){
    .slide-panel{grid-template-columns: repeat(2, 2fr);}
    .list-item{gap: .2rem;padding: .3rem;}
    .tab-btn{font-size: .3rem;}
    .date-time-day{font-size: .28rem;}
}

@media (max-width: 696px){
    .slide-panel{grid-template-columns: repeat(2, 2fr);gap:.15rem}
    .list-item{gap: .2rem;padding: .2rem .15rem;}
    .tab-btn{font-size: .25rem;font-weight:normal}
    .date-time-day{font-size: .28rem;}
    .date-time-year{font-size: .14rem;}
    .list-item .text{font-size: .18rem;}
}

@media (max-width: 496px){
    .tab-bar{gap:.3rem}
}