  .telecom-packages-container {
        width: 100%;
        max-width: 1200px;
        margin: 0px auto;
        font-family: 'Microsoft YaHei', Arial, sans-serif;
    }
    
    .telecom-packages-title {
        text-align: center;
        color: #2A5CAA; /* 电信品牌蓝色 */
        padding: 0px 0;
        font-size: 24px;
        font-weight: bold;
        text-shadow: 0 1px 2px rgba(42, 92, 170, 0.2);
    }
    
    .telecom-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);
    }
    
    .telecom-header {
        background-color: #2A5CAA; /* 电信品牌蓝色 */
        color: white;
        padding: 15px 10px;
        font-weight: bold;
        text-align: center;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .telecom-row {
        display: contents;
    }
    
    .telecom-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;
    }
    
    .telecom-cell:last-child {
        border-right: none;
    }
    
    .telecom-packages-grid > .telecom-row:last-child .telecom-cell {
        border-bottom: none;
    }
    
    .telecom-highlight {
        background-color: #E8F0FF; /* 浅蓝色背景 */
        font-weight: bold;
        color: #2A5CAA; /* 电信品牌蓝色 */
    }
    
    .gift-cell {
        color: #2A5CAA;
        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: #2A5CAA; /* 蓝色 */
        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(42, 92, 170, 0.3);
        border: 2px solid #2A5CAA;
    }
    
    .view-more-btn:hover {
        background-color: #1E4A9A; /* 深蓝色悬停效果 */
        border-color: #1E4A9A;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(42, 92, 170, 0.4);
    }
    
    .view-more-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 5px rgba(42, 92, 170, 0.3);
    }
    
    /* 移动端适配 */
    @media (max-width: 768px) {
        .telecom-packages-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .telecom-header:nth-child(4),
        .telecom-cell.gift-cell {
            display: none;
        }
        
        .telecom-cell {
            padding: 12px 8px;
            font-size: 14px;
        }
        
        .telecom-header {
            padding: 12px 8px;
            font-size: 14px;
        }
        
        .view-more-btn {
            padding: 10px 25px;
            font-size: 16px;
        }
    }
    @media (max-width: 480px) {
        /* 如果在极小屏幕上，强制字体更小，防止换行 */
        div[role="table"] div[role="cell"],
        div[role="table"] div[role="columnheader"] {
            padding: 8px 4px !important;
            font-size: 0.85em !important;
        }
        /* 确保按钮在小屏下不会过大 */
        div[role="table"] a {
            font-size: 0.8em !important;
            padding: 3px 6px !important;
        }
    }