    .article__head__zl{
        font-size: 28px;
        font-weight: bold;
        color: #0e60aa;
        position: relative;
        height: 60px;
    }
    .article__head__zl>img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .article__head__zl>span {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .module__img__zl{
       width:100%;
       height:100%; 
    }
    .content__box__zl{
        background: #fff;
        padding-bottom: 20px;
        width: 1300px;
        margin: 0 auto;
    }
    .module__zl{
        display: flex;
        flex-wrap: wrap;
        justify-content: 
        space-between;
        width:100%;
        height:100%;
    }
    .module__box__zl{
       display: flex;
       width:305px;
       height:106px;
       margin-top: 20px;
    }
    .dh_zl{
        padding-top:20px;
    }
    .module__box__zl {
        /*overflow: hidden;*/ /* 确保放大后的图片不超出容器 */
        /*display: inline-block;*/
    }
    .module__box__zl img {
        transition: transform 0.3s ease; /* 平滑的放大效果 */
    }
    .module__box__zl:hover img {
        transform: scale(1.1); /* 放大至原来的1.1倍 */
    }
