 /* 重置基础样式 (使用更具体的前缀) */
    .ip-service-html {
      box-sizing: border-box;
      font-size: 16px;
      line-height: 1.6;
    }
    
    .ip-service-body {
      margin: 0;
      padding: 0;
      font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
      color: #333;
      background-color: #f5f7fa;
    }
    
    /* 咨询模块专用样式 (确保隔离) */
    .ip-consult-container {
      --ip-consult-primary: #1a3a8f;
      --ip-consult-secondary: #0d47a1;
      --ip-consult-accent: #ff9100;
      --ip-consult-wechat: #07C160;
      --ip-consult-light: #f8f9fa;
      --ip-consult-dark: #212529;
    }
    
    /* 固定咨询按钮 */
    .ip-consult-fixedWrap {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    
    .ip-consult-phoneBtn,
    .ip-consult-wechatBtn {
      display: inline-flex;
      align-items: center;
      padding: 12px 25px;
      color: white;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .ip-consult-phoneBtn {
      background: linear-gradient(135deg, var(--ip-consult-primary), var(--ip-consult-secondary));
    }
    
    .ip-consult-wechatBtn {
      background: linear-gradient(135deg, var(--ip-consult-wechat), #05A84E);
      position: relative;
    }
    
    .ip-consult-icon {
      width: 20px;
      height: 20px;
      margin-right: 8px;
      fill: currentColor;
    }
    
    /* 微信二维码弹出层 */
    .ip-consult-qrBox {
      position: absolute;
      bottom: calc(100% + 15px);
      right: 0;
      width: 180px;
      padding: 15px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.15);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }
    
    .ip-consult-qrImg {
      width: 100%;
      height: auto;
      margin-bottom: 10px;
      border: 1px solid #eee;
    }
    
    .ip-consult-qrText {
      color: #666;
      font-size: 13px;
      text-align: center;
      margin: 0;
    }
    
    /* 悬停效果 */
    .ip-consult-phoneBtn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(26, 58, 143, 0.3);
    }
    
    .ip-consult-wechatBtn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(7, 193, 96, 0.3);
    }
    
    .ip-consult-wechatBtn:hover .ip-consult-qrBox {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    /* 咨询横幅 */
    .ip-consult-banner {
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      padding: 40px 0;
      margin: 50px 0;
      border-radius: 8px;
    }
    
    .ip-consult-content {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .ip-consult-title {
      color: var(--ip-consult-primary);
      font-size: 28px;
      text-align: center;
      margin-bottom: 30px;
    }
    
    .ip-consult-methods {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }
    
    .ip-consult-method {
      flex: 1;
      min-width: 280px;
      max-width: 400px;
      background: white;
      padding: 25px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .ip-consult-methodIcon {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(26, 58, 143, 0.1);
      border-radius: 50%;
    }
    
    .ip-consult-methodIcon--wechat {
      background: rgba(7, 193, 96, 0.1);
    }
    
    .ip-consult-methodContent {
      flex-grow: 1;
    }
    
    .ip-consult-methodTitle {
      color: #333;
      font-size: 18px;
      margin-bottom: 8px;
    }
    
    .ip-consult-phoneNumber {
      color: var(--ip-consult-primary);
      font-size: 20px;
      font-weight: bold;
      display: block;
    }
    
    .ip-consult-qrSide {
      width: 120px;
      text-align: center;
    }
    
    .ip-consult-sideQr {
      width: 100%;
      height: auto;
      border: 1px solid #eee;
      margin-bottom: 8px;
    }
    
    .ip-consult-sideText {
      color: #666;
      font-size: 12px;
      margin: 0;
    }
    
    /* 响应式调整 */
    @media (max-width: 768px) {
      .ip-consult-fixedWrap {
        bottom: 20px;
        right: 20px;
      }
      
      .ip-consult-phoneBtn,
      .ip-consult-wechatBtn {
        padding: 10px 20px;
        font-size: 15px;
      }
      
      .ip-consult-title {
        font-size: 24px;
      }
      
      .ip-consult-method {
        flex-direction: column;
        text-align: center;
      }
      
      .ip-consult-methodIcon {
        width: 40px;
        height: 40px;
      }
      
      .ip-consult-phoneNumber {
        font-size: 18px;
      }
    }