 /* ========== 2. 医疗横幅样式（固定高度690px，无最大宽度限制，占满浏览器） ========== */
        

        /* ========== 3. 联系我们样式（保留lxwm-前缀，结构规整，完整保留专属样式） ========== */
        .lxwm-container {
            width: 80%;
            max-width: 1520px;
            margin: 0 auto;
            padding: 50px 0;
            background: #fff;
            /* 与页面上下保持轻微间距，提升呼吸感 */
        }

        .lxwm-title-section {
            margin-bottom: 30px;
        }

        .lxwm-title-english {
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 500;
            color: #47d1c3;
            margin: 0;
            line-height: 1;
            letter-spacing: 1px;
        }

        .lxwm-title-chinese {
            font-size: clamp(18px, 2vw, 25px);
            font-weight: 400;
            color: #333333;
            margin: 0;
            line-height: 1;
            letter-spacing: 0.5px;
            margin: 15px 0 35px 0;
        }

        .lxwm-contact-block {
            background-color: #f5f5f5;
            padding: 40px;
            margin-bottom: 25px;
        }

        .lxwm-contact-list {
            padding-left: 20px; 
        }

        .lxwm-contact-item {
            position: relative; 
            margin-bottom: 20px;
            color: #666;
            line-height: 1.6;
            /* 联系项文字响应式，确保同步缩小 */
            font-size: clamp(12px, 1vw, 14px);
        }

        .lxwm-contact-item::before {
            content: "";
            position: absolute;
            left: -20px;
            top: 15px;
            width: 8px;
            height: 8px;
            background-color: #47d1c3;
            border-radius: 50%;
        }

        .lxwm-contact-detail {
            color: #666;
            line-height: 1.8;
            margin-bottom: 16px; 
        }

        .lxwm-contact-detail:last-child {
            margin-bottom: 0;
        }

        /* 核心样式：联系我们模块内的h3（机构名称）- 加大、加粗 */
        .lxwm-contact-detail h3,
        .lxwm-contact-item h3 {
			font-size:16px;
            color: #666; /* 深色更醒目，提升层级 */
            line-height: 1.5; /* 行高舒适，避免文字拥挤 */
			font-weight:normal;
        }

        /* 补充：地址文本样式，与加粗h3形成区分 */
        .lxwm-contact-address {
			font-size:12px;
            color: #666;
            display: block;
        }

        .lxwm-text-emphasis {
            color: #333;
            display: inline-block;
            /* 强调文字响应式，替换固定20px */
            font-size: clamp(16px, 1.8vw, 20px);
            padding: 0 0 20px 0;
        }

        .lxwm-multi-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .lxwm-img-text-row {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .lxwm-text-part {
            width: 48%;
        }

        .lxwm-img-part {
            display: flex;
            justify-content: center;
            align-items: left;
            width: 35%;
            height: auto;
        }

        .lxwm-img-part img {
            width: 100%;
            height: auto;
            display: block;
            /* 内容图片响应式最大尺寸，同步缩放 */
            max-width: clamp(200px, 25vw, 500px);
            max-height: clamp(100px, 15vw, 264px);
        }

