.telecom-packages-container{
        width: 100%;
        max-width: 1200px;
        margin: 0px auto;
        font-family: 'Microsoft YaHei', Arial, sans-serif;
        box-sizing: border-box; 
    }.telecom-province-nav-wrapper{
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px 20px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    box-sizing: border-box; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }.telecom-province-nav-header{
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
  }.telecom-province-grid{
    display: grid;
    
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px; 
  }.telecom-province-link{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 10px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  }.telecom-province-link:hover{
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: #fff;
    border-color: #007BFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  }@media (max-width: 600px){.telecom-province-nav-wrapper{
      padding: 20px 15px;
      margin: 10px auto;
    }.telecom-province-grid{
      
      grid-template-columns: repeat(auto-fill, minmax(45%, 1fr)); 
      gap: 10px;
    }.telecom-province-link{
      font-size: 0.95rem;
      padding: 12px 5px;
    }.telecom-province-nav-header{
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
  }.telecom-packages-container, .telecom-packages-container *, .telecom-province-nav-wrapper, .telecom-province-nav-wrapper *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}