
    /* 顶部左侧logo+文字布局 */
    .header-left-wrap {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 20px;
        height: 110px;
    }
    .header-left-wrap .logo-link {
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }
    .header-left-wrap .logo-link img {
        height: 80px;
        width: auto;
        display: block;
    }
    .header-left-wrap .header-text {
        color: #ffffff;
        font-size: 24px;
        font-weight: bold;
        letter-spacing: 2px;
        margin-left: 30px;
        white-space: nowrap;
        line-height: 110px;
    }
    /* 覆盖原logo居中样式 */
    .header .logo {
        padding: 0;
        text-align: left;
    }
    /* 响应式：小屏幕时文字缩小 */
    @media screen and (max-width: 1024px) {
        .header-left-wrap .header-text {
            font-size: 16px;
            letter-spacing: 1px;
            margin-left: 15px;
        }
        .header-left-wrap .logo-link img {
            height: 60px;
        }
    }
    @media screen and (max-width: 768px) {
        .header-left-wrap {
            height: auto;
            padding: 10px 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .header-left-wrap .header-text {
            font-size: 14px;
            line-height: 1.5;
            margin-left: 0;
            margin-top: 8px;
            white-space: normal;
            text-align: center;
            width: 100%;
        }
        .header-left-wrap .logo-link img {
            height: 50px;
        }
    }
    /* 移动端 m-head logo+文字布局：上下两行，居中 */
    .m-header-left-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 15px;
        text-align: center;
    }
    .m-header-left-wrap .m-logo-link {
        display: flex;
        align-items: center;
    }
    .m-header-left-wrap .m-logo-link img {
        height: 45px;
        width: auto;
        display: block;
    }
    .m-header-left-wrap .m-header-text {
        color: #ffffff;
        font-size: 15px;
        font-weight: bold;
        letter-spacing: 1px;
        margin-top: 8px;
        line-height: 1.5;
    }
    @media screen and (max-width: 480px) {
        .m-header-left-wrap .m-header-text {
            font-size: 13px;
        }
        .m-header-left-wrap .m-logo-link img {
            height: 38px;
        }
    }
