  /* ===== 全局容器基础 ===== */
  .unicom-pricing-table-wrapper {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  }

  /* ===== 资费表格 ===== */
  .unicom-pricing-title {
    text-align: center;
    font-size: 24px;
    color: #e60012; /* 联通品牌红 */
    margin: 0 0 20px;
    font-weight: bold;
  }

  .unicom-pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 8px;
  }

  .unicom-pricing-table th {
    background-color: #ffebe9; /* 联通红的浅色背景 */
    color: #e60012;
    font-weight: bold;
    padding: 14px 12px;
    text-align: center;
    border-bottom: 2px solid #ffcccc;
  }

  .unicom-pricing-table td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: #333;
  }

  .unicom-pricing-table tr:last-child td {
    border-bottom: none;
  }

  .unicom-pricing-table tr:hover {
    background-color: #fff9f8;
  }

  .unicom-pricing-price {
    color: #e60012;
    font-weight: bold;
    font-size: 18px;
  }

  /* ===== 底部操作按钮 ===== */
  .unicom-pricing-cta {
    text-align: center;
    margin-top: 20px;
  }

  .unicom-view-detail-btn{
    background-color: #e60012;
    color: white;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 2px 6px rgba(230, 0, 18, 0.2);
    font-family: inherit;
  }
  .unicom-view-detail-btn a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .unicom-view-detail-btn:hover {
    background-color: #c20010;
    transform: translateY(-1px);
  }

  .unicom-view-detail-btn:active {
    transform: translateY(0);
  }

  /* ===== 移动端响应式（堆叠布局） ===== */
  @media (max-width: 600px) {
    .unicom-pricing-table-wrapper {
      margin: 20px auto;
    }

    .unicom-pricing-title {
      font-size: 20px;
      margin-bottom: 18px;
    }

    .unicom-pricing-table,
    .unicom-pricing-table thead,
    .unicom-pricing-table tbody,
    .unicom-pricing-table th,
    .unicom-pricing-table td,
    .unicom-pricing-table tr {
      display: block;
    }

    .unicom-pricing-table thead tr {
      position: absolute;
      top: -9999px;
      left: -9999px;
    }

    .unicom-pricing-table tr {
      border: 1px solid #ddd;
      margin-bottom: 15px;
      border-radius: 8px;
      background: transparent; /* ← 已去掉背景块 */
    }

    .unicom-pricing-table td {
      border: none;
      position: relative;
      padding-left: 50% !important;
      text-align: right;
      font-size: 15px;
    }

    .unicom-pricing-table td::before {
      content: attr(data-label) ": ";
      position: absolute;
      left: 12px;
      width: 48%;
      font-weight: bold;
      color: #e60012;
      text-align: left;
      white-space: nowrap;
    }

    /* 移动端按钮适配 */
    .unicom-view-detail-btn {
      width: 90%;
      padding: 14px;
      font-size: 17px;
    }
  }
    .unicom-notice-section {
    margin: 3px auto;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
  }

  .unicom-notice-title {
    color: #e60012; /* 联通品牌红 */
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 16px;
  }

  .unicom-notice-item {
    text-indent: -1.2em;
    margin-left: 1.2em;
    margin-bottom: 8px;
  }

  /* 城市列表容器：确保自动换行 */
  .unicom-city-list {
    display: inline;
    white-space: normal;
  }

  .unicom-city-list a {
    color: #333;
    text-decoration: none;
  }

  .unicom-city-list a:hover {
    text-decoration: underline;
  }

  .unicom-hotline {
    background-color: #fff9f8;
    border-left: 3px solid #e60012;
    padding: 14px 16px;
    margin-top: 1px;
    border-radius: 0 4px 4px 0;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: break-word; /* 防止长串数字/链接溢出 */
  }

  .unicom-hotline strong,
  .unicom-hotline [itemprop="servicePhone"] {
    color: #e60012;
    font-weight: bold;
  }

  .unicom-hotline a {
    color: #e60012;
    text-decoration: none;
  }

  .unicom-hotline a:hover {
    text-decoration: underline;
  }

  @media (max-width: 600px) {
    .unicom-notice-section {
      padding: 0 1px;
      font-size: 14px;
    }

    .unicom-notice-title {
      font-size: 15px;
    }

    .unicom-hotline {
      padding: 12px;
      font-size: 14px;
      line-height: 1.6;
      border-radius: 0 6px 6px 0;
    }

    /* 小屏下城市名更紧凑 */
    .unicom-city-list {
      display: inline;
    }
  }
    .unicom-policy-section {
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
  }

  .unicom-policy-title {
    color: #e60012;
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 23px;
    text-align: center;
  }

  .unicom-policy-item {
    margin-bottom: 18px;
    padding-left: 1.4em;
    position: relative;
  }

  /* 自定义序号样式 */
  .unicom-policy-item::before {
    content: attr(data-index) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #e60012;
    font-weight: bold;
    font-size: 15px;
  }

  /* 子项缩进（用于第4条中的①②③） */
  .unicom-sub-item {
    margin-top: 8px;
    padding-left: 1.8em;
    position: relative;
  }

  .unicom-sub-item::before {
    content: attr(data-sub);
    position: absolute;
    left: 0.4em;
    top: 0;
    color: #e60012;
    font-weight: bold;
  }

  @media (max-width: 600px) {
    .unicom-policy-section {
      padding: 0 12px;
      font-size: 14px;
    }

    .unicom-policy-title {
      font-size: 16px;
      margin-bottom: 14px;
    }

    .unicom-policy-item,
    .unicom-sub-item {
      line-height: 1.7;
    }
  }
    /* ===== 联通联系信息区块 ===== */
  .unicom-contact-info {
    margin: 25px auto;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
  }

  .unicom-contact-info p {
    margin: 0;
  }

  .unicom-contact-info a {
    color: #e60012;
    text-decoration: none;
    font-weight: bold;
  }

  .unicom-contact-info a:hover {
    text-decoration: underline;
  }

  /* ===== 其他说明区块（统一风格） ===== */
  .other-notes {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid #ffebe9; /* 联通浅红边框 */
    border-radius: 6px;
    background-color: #fff9f8; /* 联通浅红底 */
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    box-sizing: border-box;
  }

  .other-notes-title {
    margin: 0 0 12px;
    font-weight: bold;
    color: #e60012; /* 联通红标题 */
    font-size: 16px;
  }

  .other-notes p {
    margin: 8px 0;
    text-indent: -1.2em;
    padding-left: 1.2em;
  }

  .other-notes-warning {
    color: #e60012; /* 统一使用联通红，非纯红 */
    font-weight: bold;
  }
  /* ===== 小屏响应式 ===== */
  @media (max-width: 600px) {
    .unicom-contact-info,
    .other-notes {
      padding: 0 12px;
      font-size: 14px;
    }

    .other-notes {
      padding: 14px;
    }

    .other-notes-title {
      font-size: 15px;
    }
  }
    .unicom-activity-card {
    margin: 16px 0;
    width: 100%;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  }

  /* 标题：红底白字，居中 */
  .activity-header {
    text-align: center;
    margin-bottom: -10px;
    position: relative;
    z-index: 2;
  }

  .activity-title {
    display: inline-block;
    background-color: #e60012; /* 联通标准红 */
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 6px 20px;
    border-radius: 24px;
    box-shadow: 0 2px 5px rgba(230, 0, 18, 0.15);
  }

  /* 内容区：红边框 + 白底 */
  .activity-body {
    border: 2px solid #e60012;
    border-radius: 10px;
    background: #fff;
    padding: 24px 20px 20px;
    line-height: 1.65;
    color: #333;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .activity-body p {
    margin: 8px 0;
  }

  .activity-price {
    color: #e60012;
    font-weight: bold;
    font-size: 18px;
    margin: 12px 0;
  }

  /* 平板及以下：适度缩小 */
  @media (max-width: 768px) {
    .activity-body {
      padding: 20px 16px 16px;
      font-size: 14px;
    }
    .activity-price {
      font-size: 17px;
    }
  }

  /* 手机竖屏 */
  @media (max-width: 480px) {
    .activity-title {
      font-size: 15px;
      padding: 5px 16px;
    }
    .activity-body {
      padding: 18px 14px 14px;
    }
    .activity-price {
      font-size: 16px;
    }
  }

  /* 超窄屏（如旧款手机） */
  @media (max-width: 360px) {
    .activity-title {
      padding: 4px 12px;
      font-size: 14px;
    }
    .activity-body {
      padding: 16px 12px 12px;
      font-size: 13px;
    }
    .activity-price {
      font-size: 15px;
    }
  }
    .unicom-support-card {
    width: 100%;
    max-width: 640px;
    margin: 24px auto;
    padding: 24px;
    border: 2px solid #e60012; /* 联通标准红边框 */
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(230, 0, 18, 0.1);
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  }

  .support-title {
    color: #e60012;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e60012;
  }

  .support-content {
    color: #333;
    line-height: 1.6;
    font-size: 14px;
    text-align: center;
    margin: 0 0 16px;
  }

  .support-phone {
    color: #e60012;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    margin: 12px 0;
    letter-spacing: 1px;
    display: block;
  }

  .support-note {
    color: #666;
    font-size: 13px;
    text-align: center;
    margin-top: 18px;
    font-style: italic;
    border-top: 1px dashed #e60012;
    padding-top: 10px;
  }

  /* 响应式优化 */
  @media (max-width: 480px) {
    .unicom-support-card {
      padding: 20px 16px;
      margin: 20px auto;
    }
    
    .support-title {
      font-size: 16px;
      margin-bottom: 12px;
    }
    
    .support-phone {
      font-size: 15px;
    }
    
    .support-content {
      font-size: 13px;
    }
  }
    /* 唯一类名，防止冲突 */
  .responsive-unicom-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    color: #333;
  }

  .responsive-unicom-table caption {
    font-size: 20px;
    font-weight: bold;
    padding: 14px;
    background-color: #e60027;
    color: white;
    text-align: center;
  }

  .responsive-unicom-table th,
  .responsive-unicom-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
  }

  .responsive-unicom-table th {
    background-color: #f9f9f9;
    font-weight: 600;
  }

  /* ✅ 小屏自适应：转为卡片 */
  @media (max-width: 600px) {
    /* 隐藏表头 */
    .responsive-unicom-table thead {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }

    /* 每一行变为卡片 */
    .responsive-unicom-table tr {
      display: block !important;
      margin-bottom: 16px !important;
      padding: 16px !important;
      border: 1px solid #ddd !important;
      border-radius: 8px !important;
      background: #fff !important;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
    }

    /* 单元格变为 label + value 行 */
    .responsive-unicom-table td {
      display: flex !important;
      justify-content: space-between !important;
      padding: 8px 0 !important;
      border: none !important;
      text-align: right !important;
      position: relative !important;
    }

    /* 自动生成字段名 */
    .responsive-unicom-table td::before {
      content: attr(data-label) ": " !important;
      font-weight: bold !important;
      color: #555 !important;
      text-align: left !important;
      flex: 1 !important;
      margin-right: 8px !important;
    }
  }
    /* 唯一类名，避免冲突 */
  .unicom-plan-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    color: #333;
    margin: 1em 0;
    table-layout: fixed; /* 关键：控制列宽分布 */
  }

  .unicom-plan-table th,
  .unicom-plan-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
  }

  .unicom-plan-table th {
    background-color: #f5f5f5;
    font-weight: bold;
  }

  .unicom-plan-table caption {
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    background-color: #e60027;
    color: white;
    text-align: center;
    margin-bottom: 0;
  }

  .unicom-plan-table a {
    color: #e60027;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* 小屏优化：三列自动压缩 */
  @media (max-width: 480px) {
    .unicom-plan-table {
      font-size: 14px;
    }
    .unicom-plan-table th,
    .unicom-plan-table td {
      padding: 10px 4px;
    }
    /* 确保不出现横向滚动 */
    .table-container {
      overflow-x: hidden;
    }
  }
.unicom-packages-container {
        width: 100%;
        max-width: 1200px;
        margin: 20px auto;
        font-family: 'Microsoft YaHei', Arial, sans-serif;
    }
    
    .unicom-packages-title {
        text-align: center;
        color: #E60012; /* 联通品牌红色 */
        padding: 20px 0;
        font-size: 24px;
        font-weight: bold;
        text-shadow: 0 1px 2px rgba(230, 0, 18, 0.2);
    }
    
    .unicom-packages-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .unicom-header {
        background-color: #E60012; /* 联通品牌红色 */
        color: white;
        padding: 15px 10px;
        font-weight: bold;
        text-align: center;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .unicom-row {
        display: contents;
    }
    
    .unicom-cell {
        padding: 15px 10px;
        border-bottom: 1px solid #ddd;
        border-right: 1px solid #ddd;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .unicom-cell:last-child {
        border-right: none;
    }
    
    .unicom-packages-grid > .unicom-row:last-child .unicom-cell {
        border-bottom: none;
    }
    
    .unicom-highlight {
        background-color: #FFF0F0; /* 浅红色背景 */
        font-weight: bold;
        color: #E60012; /* 联通品牌红色 */
    }
    
    .gift-cell {
        color: #E60012;
        font-weight: bold;
    }
    
    /* 新增按钮样式 - 联通红色品牌设计 */
    .view-more-container {
        text-align: center;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    
    .view-more-btn {
        display: inline-block;
        padding: 12px 35px;
        background-color: #E60012; /* 联通品牌红色 */
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-size: 18px;
        font-weight: bold;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(230, 0, 18, 0.3);
        border: 2px solid #E60012;
    }
    
    .view-more-btn:hover {
        background-color: #CC0010; /* 深红色悬停效果 */
        border-color: #CC0010;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(230, 0, 18, 0.4);
    }
    
    .view-more-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 5px rgba(230, 0, 18, 0.3);
    }
    
    /* 移动端适配 */
    @media (max-width: 768px) {
        .unicom-packages-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .unicom-header:nth-child(4),
        .unicom-cell.gift-cell {
            display: none;
        }
        
        .unicom-cell {
            padding: 12px 8px;
            font-size: 14px;
        }
        
        .unicom-header {
            padding: 12px 8px;
            font-size: 14px;
        }
        
        .view-more-btn {
            padding: 10px 25px;
            font-size: 16px;
        }
    }.unicom-packages-container {
        width: 100%;
        max-width: 1200px;
        margin: 0px auto;
        font-family: 'Microsoft YaHei', Arial, sans-serif;
    }
    
    .unicom-packages-title {
        text-align: center;
        color: #E60012; /* 联通品牌红色 */
        padding: 20px 0;
        font-size: 24px;
        font-weight: bold;
        text-shadow: 0 1px 2px rgba(230, 0, 18, 0.2);
    }
    
    .unicom-packages-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .unicom-header {
        background-color: #E60012; /* 联通品牌红色 */
        color: white;
        padding: 15px 10px;
        font-weight: bold;
        text-align: center;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .unicom-row {
        display: contents;
    }
    
    .unicom-cell {
        padding: 15px 10px;
        border-bottom: 1px solid #ddd;
        border-right: 1px solid #ddd;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .unicom-cell:last-child {
        border-right: none;
    }
    
    .unicom-packages-grid > .unicom-row:last-child .unicom-cell {
        border-bottom: none;
    }
    
    .unicom-highlight {
        background-color: #FFF0F0; /* 浅红色背景 */
        font-weight: bold;
        color: #E60012; /* 联通品牌红色 */
    }
    
    .gift-cell {
        color: #E60012;
        font-weight: bold;
    }
    
    /* 新增按钮样式 - 联通红色品牌设计 */
    .view-more-container {
        text-align: center;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    
    .view-more-btn {
        display: inline-block;
        padding: 12px 35px;
        background-color: #E60012; /* 联通品牌红色 */
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-size: 18px;
        font-weight: bold;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(230, 0, 18, 0.3);
        border: 2px solid #E60012;
    }
    
    .view-more-btn:hover {
        background-color: #CC0010; /* 深红色悬停效果 */
        border-color: #CC0010;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(230, 0, 18, 0.4);
    }
    
    .view-more-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 5px rgba(230, 0, 18, 0.3);
    }
    
    /* 移动端适配 */
    @media (max-width: 768px) {
        .unicom-packages-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .unicom-header:nth-child(4),
        .unicom-cell.gift-cell {
            display: none;
        }
        
        .unicom-cell {
            padding: 12px 8px;
            font-size: 14px;
        }
        
        .unicom-header {
            padding: 12px 8px;
            font-size: 14px;
        }
        
        .view-more-btn {
            padding: 10px 25px;
            font-size: 16px;
        }
    }