.left-section {
    height: 542px;
    flex: 1 1 0;
}
.right-section {
    height: 542px;
    flex: 1 1 0;
    overflow: hidden;
}
/* 板块标题样式 */
.section-heading {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-heading-title {
    display: flex;
    justify-content: center;
    align-content: center;
}
.section-heading-title span {
    color:#009944;
    font-family: "PingFang SC";
    font-size: 24px;
}
.more-link {
    font-family: "PingFang SC";
    font-size: 14px;
    color: #999999;
}
.zsdt-list{
    width: 100%;
    height: 463px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #009944;
}
/* 导航栏样式 */
.tab-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #009933; /* 绿色导航栏 */
    height: 44px;
}
.tab-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.tab-nav ul li {
    width: 96px;
    padding: 8px 16px 12px 16px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
    
    position: relative
}
.tab-nav ul li span{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}
.tab-nav ul li.active,
.tab-nav ul li:hover {
    background-color: #008236; /* 深色 hover 效果 */
}
.tab-nav ul li.active:after{
    content: ''; 
  position: absolute; /* 绝对定位，相对于父元素 */
  bottom: 0; 
  left: 50%; /* 水平居中 */
  transform: translateX(-50%); /* 精确居中 */
  
  /* 箭头样式（宽高为0，通过边框实现三角形） */
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #ffffff; /* 箭头颜色与父元素一致 */
}
.tab-nav .more-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* 项目表格样式 */

/* 表格容器样式 */
.project-table {
    width: 100%;
    padding: 12px;
    border-collapse: collapse; /* 模拟表格边框合并效果 */
}

/* 表头样式 */
.table-header {
    display: flex;
    width: 100%;
    background-color: #f5f5f5;
    height: 32px;
    padding: 4px 0px 4px 8px ;
    gap: 8px;
}

.table-header .table-cell:nth-child(2) {
    width: 60px;
    text-align: center;
}
.table-row:hover{
    background-color: #fff;
    cursor: pointer;
}

/* 数据行的属地列同步右移，保持对齐 */

/* 表头所有单元格居中 */
.table-header .table-cell {
    text-align: left;
    padding: 0;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}


/* 滚动容器 - 负责裁剪超出内容 */
.table-scroll-wrapper {
    height: 378px; /* 固定高度，控制可见区域 */
    overflow: hidden; /* 隐藏超出部分 */
    position: relative;
}

/* 动画容器 - 负责滚动 */
.table-croll-container {
    width: 100%;
    animation: tableScrollUp 15s linear infinite;
}

/* 内容容器 */
.table-croll-content {
    width: 100%;
}
.table-croll-container:has(.table-croll-content:hover) {
    animation-play-state: paused; /* 暂停动画 */
}
/* 行样式 */
.table-row {
    display: flex;
    width: 100%;
    border-top: 1px solid #eee;
    gap: 8px;
}
.table-cell-name {
    font-family: "PingFang SC";
    font-size: 16px;
}
.table-row.hidden {
    display: none;
}
/* 单元格样式 */
.table-cell {
    padding: 10px;
    white-space: nowrap; /* 防止内容换行 */
    overflow: hidden; /* 隐藏单元格内超出内容 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */
}

.table-cell.table-title{
    flex: 1 1 0;
}
.table-cell.table-location{
    width: 60px;
}
.table-cell.table-price{
    width: 90px;
    text-align: center;
}
.table-cell.table-endtime{
    width: 90px;
    text-align: center;
}
.table-row .table-cell{
    /* height: 48px; */
    font-size: 16px;
    line-height: 24px;
    padding: 12px 0;
}
.table-row .table-title{
    color: #1e1e1e;
    text-align: left;
}
.table-row:hover .table-title{
    color: #009944;
}
.table-row .table-location{
    font-size: 14px;
    line-height: 24px;
    color: #666;
    text-align: center;
}
.table-row .table-price{
    font-size: 14px;
    line-height: 24px;
    color: #F74A35;
}
.table-row .table-endtime{
    text-align: right;
    font-size: 14px;
    line-height: 24px;
    color: #999;
}
/* 从下到上滚动动画 */
@keyframes tableScrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%); /* 滚动高度为内容的一半（因为复制了一份数据） */
    }
}

/* 自动滚动公告栏样式 */
.auto-scroll-container {
    height: 463px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    
}
.auto-scroll-container .project-cardlist{
    animation: gydtConent 15s linear infinite;
}

/* 优质项目卡片布局 */
.project-cardlist{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}
/*悬停暂停动画*/
.project-cardlist:has(.card-zstj:hover) {
    animation-play-state: paused; /* 暂停动画 */
}
.card-zstj {
    position: relative;
    /* width: calc(33.333% - 20px); */
    width: 227px;
    /* height: 278px; */
    box-sizing: border-box;
    border-radius: 4px;
    overflow: hidden;
    border-style: solid;
    border-color: transparent;
    border-width: 1px;
    cursor: pointer;
    background-color: #ffffff;
}
.card-zstj:hover {
    cursor: pointer;
    border: 1px solid #009944;
}
.card-zstj .card-img {
    width: 100%;
    height: 158px;
    overflow: hidden;
}
.card-zstj .card-img .fill-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-zstj .card-content{
    padding: 8px;
    box-sizing: border-box;
}
.card-zstj .card-content p {
    font-size: 16px;
    line-height: 24px;
    color: #1e1e1e;
    width: 100%;
    height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
