 p {
            padding: 0;
            margin: 0;
        }

        .hdjl_list {
            display: flex;
            width: 100%;
            justify-content: flex-start;
            flex-wrap: wrap;
            /* border: 1px solid #eee; */
            gap: 10px;
        }

        .dataCard {
            width: calc(33.333% - 10px);
            box-sizing: border-box;
            padding: 10px 10px 0 10px;
        }

        .imgItem {
            height: 200px;
        }

        .cardTitle {
            background: url(https://file.henan.gov.cn/4500000039/newimg/icon14.png) no-repeat left center;
            /* no-repeat：禁止重复；left center：图标在左侧、垂直居中 */
            border-bottom: 4px solid #3f63bb;
            font-weight: bold;
            font-size: 20px;
            color: #3f63bb;
            height: 47px;
            line-height: 42px;
            padding-left: 34px;
            margin-bottom: 20px;
            /* 给文字留图标位置，避免重叠 */
        }

        .titleItem {
            display: -webkit-box;
            /* 将元素作为弹性伸缩盒子模型显示 */
            -webkit-box-orient: vertical;
            /* 设置伸缩盒子的子元素排列方式为垂直 */
            -webkit-line-clamp: 2;
            /* 限制最多显示2行 */
            overflow: hidden;
            /* 超出部分隐藏 */
            text-overflow: ellipsis;
            /* 溢出时显示省略号（部分浏览器需要） */
            /* margin: 10px 0; */
        }
        .imgSelf{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
