/* ============================================
   Pricing 页面样式（pricing22）
   ============================================ */
.pricing22-page {
    width: 1350px;
    margin: 18px auto 0;
}

.pricing22-hero {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 60%, var(--primary-green-light) 100%);
    color: #fff;
    border-radius: 16px;
    padding: 44px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .pricing22-hero::before {
        content: '';
        position: absolute;
        top: -40%;
        right: -30%;
        width: 60%;
        height: 120%;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .pricing22-hero::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -10%;
        width: 40%;
        height: 80%;
        background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
        pointer-events: none;
    }

    .pricing22-hero h1 {
        font-size: 44px;
        font-weight: 900;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .pricing22-hero p {
        font-size: 17px;
        color: rgba(255,255,255,0.88);
        position: relative;
        z-index: 1;
    }

.pricing22-toolbar {
    margin-top: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pricing22-search-wrap {
    display: flex;
    align-items: center;
    background: #f5f7fa;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    padding: 0 14px;
    transition: border-color 0.25s, box-shadow 0.25s;
    flex: 1;
    max-width: 400px;
}

    .pricing22-search-wrap:focus-within {
        border-color: var(--primary-green);
        box-shadow: 0 0 0 3px rgba(82,163,32,0.12);
    }

.pricing22-search-icon {
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}

.pricing22-search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    padding: 10px 0;
    width: 100%;
    color: #333;
}

    .pricing22-search-input::placeholder {
        color: #aaa;
    }

.pricing22-total {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

    .pricing22-total i {
        color: var(--primary-green);
        font-size: 16px;
    }

    .pricing22-total strong {
        color: var(--primary-green);
    }

.pricing22-table-section {
    margin-top: 16px;
}

.pricing22-tablewrap {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.pricing22-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    color: #333;
}

    .pricing22-table thead th {
        background: #f8faf6;
        border-bottom: 2px solid #dce8cf;
        padding: 14px 12px;
        text-align: center;
        font-weight: 700;
        font-size: 13px;
        color: #4a5f2b;
        letter-spacing: 0.02em;
    }

        .pricing22-table thead th.col-tld {
            text-align: left;
            padding-left: 20px;
        }

    .pricing22-table tbody tr {
        transition: background 0.15s;
    }

        .pricing22-table tbody tr:hover {
            background: #f8fff1;
        }

        .pricing22-table tbody tr:not(:last-child) td {
            border-bottom: 1px solid #eef2ec;
        }

    .pricing22-table tbody td {
        padding: 11px 12px;
        text-align: center;
    }

        .pricing22-table tbody td.col-tld {
            text-align: left;
            padding-left: 20px;
        }

.pricing22-tld-badge {
    display: inline-block;
    background: #f0f6ea;
    color: #2f6b18;
    font-weight: 700;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.01em;
}

.pricing22-price {
    color: #333;
    font-weight: 600;
    font-size: 13px;
}

.pricing22-old-price {
    color: #bbb;
    text-decoration: line-through;
    font-size: 12px;
    margin-right: 6px;
}

@media (max-width: 1024px) {
    .pricing22-hero h1 {
        font-size: 34px;
    }

    .pricing22-hero p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .pricing22-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing22-search-wrap {
        max-width: none;
    }

    .pricing22-hero {
        padding: 28px 18px;
    }

        .pricing22-hero h1 {
            font-size: 28px;
        }

        .pricing22-hero p {
            font-size: 14px;
        }
}
