
    /* 防止 Ueeshop 全局样式干扰 */
    .jh-contact-wrapper *, 
    .jh-contact-wrapper *::before, 
    .jh-contact-wrapper *::after {
        box-sizing: border-box;
    }

    /* 外部大容器（彻底去掉背景图，透明底色） */
    .jh-contact-wrapper {
        width: 100%;
        padding: 40px 20px;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        background: transparent !important; /* 强制透明，融入您的网站原有背景 */
        display: block !important; 
    }

    /* 居中的白色商务展示卡片 */
    .jh-solid-card {
        background: #ffffff; /* 纯白底色 */
        border: 1px solid #eaeaea;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08); /* 柔和的高级阴影 */
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        padding: 45px;
        display: table; /* 使用 table 布局，在所有建站系统中最为稳定 */
    }

    /* 左侧：Logo / 头像 */
    .jh-board-left {
        display: table-cell;
        vertical-align: middle;
        width: 220px;
        padding-right: 40px;
        text-align: center;
    }
    .jh-profile-img {
        width: 160px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: inline-block;
    }

    /* 右侧：联系信息区 */
    .jh-board-right {
        display: table-cell;
        vertical-align: middle;
    }
    .jh-person-name {
        font-size: 36px;
        font-weight: 700;
        margin: 0 0 5px 0 !important;
        letter-spacing: 1px;
        color: #222222 !important; /* 深黑色名字 */
        line-height: 1.2 !important;
    }
    .jh-person-title {
        font-size: 15px;
        color: #007bff !important; /* 品牌蓝色 */
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 30px !important;
        display: block;
    }

    /* --- 核心：单行且不变形的联系条目 --- */
    .jh-contact-line {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important; /* 强制垂直居中 */
        
        text-decoration: none !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid #f0f0f0 !important; /* 浅灰色分割线 */
        transition: transform 0.2s ease;
    }
    
    a.jh-contact-line:hover {
        transform: translateX(6px);
    }

    /* 强制锁定图标尺寸，绝对防止变形 */
    .jh-icon-wrapper {
        width: 35px !important;
        min-width: 35px !important;
        max-width: 35px !important;
        height: 35px !important;
        font-size: 22px !important; 
        color: #007bff !important; /* 蓝色图标 */
        margin-right: 12px !important;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        flex-shrink: 0 !important; /* 不允许被挤压变形 */
    }
    
    .jh-icon-wrapper i {
        display: inline-block !important;
        line-height: 1 !important;
    }

    /* 文本组合容器 */
    .jh-text-group {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important; /* 让标签和号码基于文字底部对齐 */
        flex-wrap: wrap; 
        gap: 8px;
    }

    /* 标签文字 (WhatsApp:, Email:) */
    .jh-item-label {
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #666666 !important; /* 深灰色标签 */
    }

    /* 醒目的放大号码 */
    .jh-item-value {
        font-size: 24px !important; /* 加大字号 */
        font-weight: 700 !important;
        color: #111111 !important; /* 最深的黑色，突出号码 */
        letter-spacing: 0.5px !important;
    }

    /* 手机端响应式适配 */
    @media (max-width: 767px) {
        .jh-solid-card {
            display: block;
            padding: 30px 20px;
        }
        .jh-board-left {
            display: block;
            width: 100%;
            padding-right: 0;
            margin-bottom: 25px;
        }
        .jh-board-right {
            display: block;
            width: 100%;
        }
        .jh-person-name { font-size: 28px !important; text-align: center; }
        .jh-person-title { text-align: center; margin-bottom: 20px !important; }
        .jh-profile-img { width: 140px; }
        
        .jh-item-value { font-size: 18px !important; }
        .jh-item-label { font-size: 15px !important; }
    }
