/* ========== 文字列表页样式 ========== */
.wzlb-header {
  margin-bottom: 20px;
}

.wzlb-search {
  display: flex;
  margin-top: 16px;
  justify-content: flex-end;
}

.search-input {
  padding: 8px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  width: 250px;
  outline: none;
  transition: border-color 0.3s;
}

.search-input:focus {
  border-color: #1B3F6B;
}

.search-btn {
  padding: 8px 16px;
  background: #1B3F6B;
  color: #fff;
  border: 1px solid #1B3F6B;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.search-btn:hover {
  background: #2A5A8E;
}

/* 置顶公告 */
.notice-top {
  background: linear-gradient(135deg, #F5F6FA, #EBEDF2);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 24px;
  border-left: 4px solid #C4982F;
}

.notice-top-item {
  display: flex;
  align-items: flex-start;
}

.notice-top-tag {
  background: #C4982F;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  margin-right: 12px;
  margin-top: 4px;
}

.notice-top-content h4 {
  font-size: 16px;
  color: #1B3F6B;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.5;
}

.notice-top-content h4 a:hover {
  color: #C4982F;
}

.notice-top-content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
  #vsb_content
  a {word-wrap: break-word;}
    #vsb_content
  video,iframe {display:block;
  margin:0 auto;
  max-width:100%;}
    #vsb_content
  table {max-width:100%;
  overflow-x:auto;
  margin:0 auto;
  border-collapse: collapse;}
    #vsb_content
  table td p {text-indent:0 !important;
  padding:2px;}
  @media screen and (max-width: 750px) {
        #vsb_content table {display:block;}
     };
  #vsb_content
  a {word-wrap: break-word;}
    #vsb_content
  video,iframe {display:block;
  margin:0 auto;
  max-width:100%;}
    #vsb_content
  table {max-width:100%;
  overflow-x:auto;
  margin:0 auto;
  border-collapse: collapse;}
    #vsb_content
  table td p {text-indent:0 !important;
  padding:2px;}
  @media screen and (max-width: 750px) {
        #vsb_content table {display:block;}
     };
  
#vsb_content
  a {word-wrap: break-word;}
    #vsb_content
  video,iframe {display:block;
  margin:0 auto;
  max-width:100%;}
    #vsb_content
  table {max-width:100%;
  overflow-x:auto;
  margin:0 auto;
  border-collapse: collapse;}
    #vsb_content
  table td p {text-indent:0 !important;
  padding:2px;}
  @media screen and (max-width: 750px) {
        #vsb_content table {display:block;}
     };
}

/* 文字列表 */
.wzlb-list {
  background: #FFFFFF;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}

.wzlb-item {
  display: flex;
  align-items: flex-start;
  padding: 18px 24px;
  border-bottom: 1px dashed #E0E0E0;
  transition: background 0.3s;
}

.wzlb-item:last-child {
  border-bottom: none;
}

.wzlb-item:hover {
  background: #F5F6FA;
}

.wzlb-item-date {
  flex-shrink: 0;
  width: 70px;
  text-align: center;
  margin-right: 20px;
  padding-top: 4px;
}

.date-year {
  display: block;
  font-size: 14px;
  color: #888888;
  margin-bottom: 2px;
}

.date-full {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #1B3F6B;
  line-height: 1.2;
}

.wzlb-item-content {
  flex: 1;
  min-width: 0;
}

.wzlb-item-content h4 {
  font-size: 16px;
  color: #2D2D2D;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.5;
}

.wzlb-item-content h4 a:hover {
  color: #1B3F6B;
}

.wzlb-item-content p {
  font-size: 14px;
  color: #888888;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wzlb-item-actions {
  flex-shrink: 0;
  margin-left: 20px;
  padding-top: 8px;
}

.action-btn {
  display: inline-block;
  padding: 6px 16px;
  background: #1B3F6B;
  color: #fff !important;
  border-radius: 3px;
  font-size: 14px;
  transition: background 0.3s;

}

.action-btn:hover {
  background: #C4982F;
}

/* 响应式 */
@media (max-width: 1024px) {
  .wzlb-search {
    justify-content: flex-start;
  }
  .search-input {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .wzlb-item {
    flex-direction: column;
    padding: 14px 16px;
  }
  .wzlb-item-date {
    width: auto;
    text-align: left;
    margin-right: 0;
    margin-bottom: 6px;
  }
  .wzlb-item-actions {
    margin-left: 0;
    margin-top: 10px;
  }
  .search-input {
    width: 150px;
  }
}