/* 核心布局容器 */
.content {
    width: 1200px;
    margin: 0 auto;
}

/* 下方列表容器 */
.zxlb-1n-ts-01-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
    width: 100%;
}

/* 列表卡片样式 */
.zxlb-1n-ts-01-list dl {
    border: 1px solid #dedede;
    width: 100%;
    margin: 0;
    padding: 15px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.zxlb-1n-ts-01-list dl:hover {
    border-color: #B20405;
}

.zxlb-1n-ts-01-list dt {
    width: 100%;
    margin: 0 0 10px 0;
}

.zxlb-1n-ts-01-list dt img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

.zxlb-1n-ts-01-list h4 {
    font-weight: normal;
    font-size: 16px;
    font-weight: 600;
    color: #6e6d6d;
    line-height: 1.4;
    height: auto;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px
}

.zxlb-1n-ts-01-list h4 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    color: inherit;
    text-decoration: none;
}

.zxlb-1n-ts-01-list img:hover {
    transform: scale(1.05);
}

.zxlb-1n-ts-01-list dl:hover h4 a {
    color: #B20405;
}

.zxlb-1n-ts-01-list-desc,
.zxlb-1n-ts-01-list-deta,
.zxlb-1n-ts-01-list dd {
    display: none;
}

/* 分页样式 */
.p12-pagination-1 {
    text-align: center;
    padding: 20px 0;
}

/* 响应式适配 */
@media (max-width: 1199px) {
    .content {
        width: 96%;
        padding: 0 2%;
    }

    /* 平板端：顶部布局改为堆叠 */
    .top-layout {
        flex-direction: column;
    }

    .left-nav,
    .right-map {
        width: 100%;
    }

    .zxlb-1n-ts-01-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .zxlb-1n-ts-01-list {
        grid-template-columns: 1fr;
    }

    .map-card {
        height: 300px;
        /* 手机端地图高度减小 */
    }

    .zxlb-1n-ts-01-list h4 {
        font-size: 14px;
    }
}