.proxyip-card-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow: visible;
}

/* 覆盖父容器的宽度限制 */
.listMainContWrap {
    width: 100% !important;
    max-width: none !important;
    overflow: visible !important;
}

.listMainCont {
    width: 100% !important;
    overflow: visible !important;
}

.page-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.page-banner p {
    margin: 0;
    font-size: 16px;
}

.package-tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    padding: 0 20px;
    flex-wrap: nowrap;
}

.package-tab {
    padding: 12px 55px;
    border: 2px solid #667eea;
    background: #fff;
    color: #667eea;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    flex-shrink: 0;
    overflow: visible;
    width: auto;
}

.package-tab:hover {
    background: #f0f0ff;
}

.package-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}

.tips-info {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.tips-icon {
    color: #f59e0b;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.tips-content {
    flex: 1;
}

.tips-title {
    font-weight: 600;
    color: #92400e;
    margin-bottom: 5px;
}

.tips-desc {
    font-size: 14px;
    color: #78350f;
    line-height: 1.5;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.package-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.package-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-header {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 20px;
    text-align: center;
}

.card-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price-symbol {
    font-size: 24px;
    color: #ef4444;
    font-weight: 600;
}

.price-value {
    font-size: 48px;
    color: #ef4444;
    font-weight: 700;
    margin-left: 2px;
}

.price-value.price-error {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    white-space: normal;
    word-break: break-all;
    max-width: 100%;
    padding: 10px 0;
    text-align: center;
}

.card-body {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.config-item {
    margin-bottom: 15px;
}

.config-item:last-child {
    margin-bottom: 0;
}

.config-label {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.config-input-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.config-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 4px;
    font-size: 18px;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.config-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.config-input {
    flex: 1;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #1f2937;
}

.config-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.config-select {
    width: 100%;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    color: #1f2937;
    background: #fff;
    cursor: pointer;
}

.config-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.duration-tabs {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
}

.duration-btn {
    flex: 1;
    padding: 6px 4px;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 4px;
    font-size: 12px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 0;
}

.duration-btn:hover {
    background: #f3f4f6;
}

.duration-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}

.card-features {
    padding: 15px 20px;
    background: #f9fafb;
}

.feature-item {
    font-size: 12px;
    color: #4b5563;
    padding: 6px 0;
    border-bottom: 1px solid #e5e7eb;
}

.feature-item:last-child {
    border-bottom: none;
}

.card-footer {
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-confirm {
    flex: 1;
    max-width: 140px;
    padding: 10px 20px;
    border: none;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-confirm:active {
    transform: translateY(0);
}

.btn-trial {
    flex: 1;
    max-width: 100px;
    padding: 10px 20px;
    border: none;
    background: linear-gradient(135deg, #4A90D9 0%, #3A7BC8 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-trial:hover {
    background: linear-gradient(135deg, #3A7BC8 0%, #2D6BB3 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 217, 0.4);
}

.btn-trial:active {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .package-tabs {
        flex-wrap: wrap;
    }
    
    .package-tab {
        padding: 10px 20px;
    }
}