
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* ================================================
       PC端样式（完全不变）
    ================================================ */
    .contact-module {
        position: relative;
        width: 100%;
        aspect-ratio: 1920 / 300;
        min-height: 200px;
        padding: 40px 20px;
        background-image: url('//ueeshop.ly200-cdn.com/u_file/UPBA/UPBA911/2606/01/photo/-PC11.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-family: Arial, "Microsoft YaHei", sans-serif;
        text-align: center;
        overflow: hidden;
    }

    /* 主标题 */
    .contact-module .title {
        color: #004599;
        font-size: 55px;
        font-weight: bold;
        line-height: 1;
        margin-bottom: 20px;
    }

    /* 副标题 */
    .contact-module .subtitle {
        color: #004599;
        font-size: 29px;
        font-weight: bold;
        line-height: 1;
        margin-bottom: 55px;
    }

    /* 内容 */
    .contact-module .content {
        color: #000000;
        font-size: 20px;
        line-height: 38px;
    }

    .contact-module .content p {
        margin: 0;
    }

    /* ================================================
       移动端图片区域：PC端完全隐藏
    ================================================ */
    .mobile-img-area {
        display: none; /* PC端不显示 */
    }


    /* ================================================
       ★ 移动端专属样式（≤768px） ★
       PC端不受任何影响
    ================================================ */
    @media (max-width: 768px) {

        /* 移动端：整体改为纵向排列，去掉背景图，改为白色背景 */
        .contact-module {
            aspect-ratio: auto;             /* 取消固定比例，高度由内容撑开 */
            min-height: auto;
            padding: 0;                     /* 内边距交给内部文字区域控制 */
            background-image: none;         /* 移动端不显示背景图 */
            background-color: #ffffff;      /* 白色背景 */
            flex-direction: column;
            align-items: stretch;           /* 子元素横向撑满 */
            justify-content: flex-start;
            overflow: visible;
        }

        /* ── 文字内容区域 ── */
        .contact-module .text-area {
            width: 100%;
            background-color: #ffffff;      /* 白色底 */
            text-align: center;
            /* 文字上下各 25px 间距 */
            padding: 25px 20px;
        }

        /* 主标题 */
        .contact-module .title {
            font-size: 32px;
            margin-bottom: 14px;
        }

        /* 副标题 */
        .contact-module .subtitle {
            font-size: 18px;
            margin-bottom: 20px;            /* 副标题与正文之间留白 */
            line-height: 1.5;
        }

        /* 内容正文 */
        .contact-module .content {
            font-size: 15px;
            line-height: 30px;
            color: #000000;
        }

        /* ── 移动端图片区域：显示并铺满宽度 ── */
        .mobile-img-area {
            display: block;                 /* 移动端显示 */
            width: 100%;
            line-height: 0;                 /* 消除图片底部间隙 */
        }

        .mobile-img-area img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

    }
