/* 免费代理页 256:3132。固定示例数据用于设计验收，不连接旧版或实时代理服务。 */
.v2-free-page {
    position: relative;
    min-height: 944px;
    color: var(--color-text-primary);
    background: var(--color-page);
}

.v2-free-page__inner {
    position: relative;
    display: grid;
    grid-template-columns: 814px 366px;
    column-gap: 20px;
    width: var(--content-width);
    margin: 0 auto;
    padding: 327px 0 71px;
    box-sizing: border-box;
}

.v2-free-breadcrumbs,
.v2-free-purchase-link {
    position: absolute;
    top: 122px;
    margin: 0;
    font-size: 14px;
    line-height: 21px;
}

.v2-free-breadcrumbs { left: 0; display: flex; gap: 8px; color: #69736e; white-space: nowrap; }
.v2-free-purchase-link { right: 0; color: var(--color-text-primary); }

.v2-free-regions {
    position: absolute;
    top: 173px;
    left: 0;
    width: 1196px;
    height: 66px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.v2-free-regions__row { display: flex; align-items: center; gap: 6px; height: 30px; }
.v2-free-region {
    width: 50px;
    height: 30px;
    padding: 3px 10px 4px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text-secondary);
    background: transparent;
    font-size: 14px;
    line-height: 21px;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}
.v2-free-region[data-region="全国"] { width: 48px; }
.v2-free-region.is-wide { width: 64px; }
.v2-free-region.is-active {
    color: var(--color-on-dark);
    background: var(--color-ink);
    border-color: var(--color-ink);
    font-weight: var(--font-weight-medium);
}
.v2-free-region:not(.is-active):hover { background: #e9e8ef; }

.v2-free-notice {
    position: absolute;
    top: 259px;
    left: 0;
    width: 1200px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--color-surface-muted);
}
.v2-free-notice__icon {
    position: absolute;
    top: 16px;
    left: 18px;
    display: block;
    width: 16px;
    height: 16px;
}
.v2-free-notice p {
    position: absolute;
    top: 14px;
    left: 45px;
    margin: 0;
    color: var(--color-text-primary);
    font-size: 13px;
    line-height: 20px;
    white-space: nowrap;
}
.v2-free-notice .v2-button {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 76px;
    height: 31px;
    padding: 5px 10px;
    font-size: 13px;
    line-height: 19px;
    border-radius: 6px;
}

.v2-free-table {
    position: relative;
    grid-column: 1 / -1;
    width: 1200px;
    height: 493px;
    border-radius: var(--radius-card);
    background: var(--color-card);
    box-shadow: var(--shadow-panel);
    font-variant-numeric: tabular-nums;
}
.v2-free-table__head,
.v2-free-table__row {
    display: grid;
    grid-template-columns: 192.86px 151px 154px 144px 130px 170.14px 223.71px;
    width: 1165.71px;
    margin-left: 17.14px;
    align-items: center;
    font-size: 13px;
}
.v2-free-table__head {
    height: 43px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-primary);
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    line-height: 20px;
}
.v2-free-table__head > span { transform: translateY(-1px); }
.v2-free-table__body { display: block; }
.v2-free-table__row {
    height: 45px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 13px;
    line-height: 20px;
}
.v2-free-table__row:last-child { border-bottom: 0; }
.v2-free-table__head > span,
.v2-free-table__row > span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.v2-free-table__ip { width: 160px; line-height: 18px; }
.v2-free-table__anonymity { font-size: 12px; line-height: 18px; }
.v2-free-table__location { max-width: 112px; }
.v2-free-table__response { display: flex; align-items: center; gap: 6px; }
.v2-free-table__response i { flex: 0 0 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--color-brand); }
.v2-free-table__empty { display: none; margin: 0; color: var(--color-text-secondary); text-align: center; }
.v2-free-table.is-empty .v2-free-table__head,
.v2-free-table.is-empty .v2-free-table__row { display: none; }
.v2-free-table.is-empty .v2-free-table__empty { display: block; padding-top: 210px; }
.v2-free-table__loading {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: inherit;
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 150ms ease;
}
.v2-free-table__spinner {
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-border);
    border-top-color: var(--color-brand);
    border-radius: 50%;
    box-sizing: border-box;
    animation: v2-free-spin 700ms linear infinite;
}
.v2-free-page.is-loading .v2-free-table__loading {
    visibility: visible;
    opacity: 1;
}
.v2-free-page.is-loading .v2-free-regions,
.v2-free-page.is-loading .v2-free-pagination {
    opacity: .62;
    pointer-events: none;
}

@keyframes v2-free-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .v2-free-table__spinner { animation-duration: 1400ms; }
}

.v2-free-pagination {
    position: relative;
    grid-column: 1 / -1;
    justify-self: center;
    display: flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    height: 35px;
    margin-top: 30px;
    color: #616b66;
    font-size: 13px;
    line-height: 20px;
    font-variant-numeric: tabular-nums;
}
.v2-free-pagination button,
.v2-free-pagination a.v2-free-pagination__page,
.v2-free-pagination a.v2-free-pagination__prev,
.v2-free-pagination a.v2-free-pagination__next,
.v2-free-pagination a.v2-free-pagination__last {
    margin: 0;
    padding: 0 8px;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.v2-free-pagination button:disabled { opacity: 1; cursor: default; }
.v2-free-pagination__total { margin-right: 24px; white-space: nowrap; }
.v2-free-pagination__prev,
.v2-free-pagination__next { flex: 0 0 32px; width: 32px; height: 35px; font-size: 22px; line-height: 33px; }
.v2-free-pagination .v2-free-pagination__page {
    flex: 0 0 36px;
    width: 36px;
    height: 32px;
    margin-left: 2px;
    font-size: 13px;
    line-height: 30px;
}
.v2-free-pagination .v2-free-pagination__page.is-active {
    border: 1px solid var(--color-brand);
    border-radius: 4px;
    color: var(--color-brand);
    background: var(--color-card);
    font-weight: var(--font-weight-bold);
    width: 36px;
    height: 32px;
}
.v2-free-pagination__ellipsis,
.v2-free-pagination__last { min-width: 32px; white-space: nowrap; }
.v2-free-pagination__next { margin-left: 2px; font-size: 23px; line-height: 35px; }
.v2-free-pagination__jump-label { margin-left: 24px; white-space: nowrap; }
.v2-free-pagination__jump {
    flex: 0 0 52px;
    width: 52px;
    height: 32px;
    margin-left: 8px;
    padding: 5px 20px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: #1a1f1c;
    background: var(--color-card);
    font-size: 13px;
    line-height: 20px;
}
.v2-free-pagination__unit { margin-left: 8px; white-space: nowrap; }

.v2-free-guidance,
.v2-free-cta {
    position: relative;
    margin-top: 60px;
    height: 154px;
    border-radius: var(--radius-card);
}
.v2-free-guidance { width: 814px; background: var(--color-surface-muted); }
.v2-free-guidance h2 { margin: 0; color: #1a1f1c; font-size: 16px; font-weight: var(--font-weight-medium); line-height: 24px; }
.v2-free-guidance p { margin: 0; color: var(--color-text-secondary); font-size: 12px; line-height: 18px; }
.v2-free-guidance__tip { position: absolute; top: 24px; left: 24px; width: 300px; }
.v2-free-guidance__tip p { margin-top: 17px; white-space: nowrap; }
.v2-free-guidance__divider { position: absolute; top: 24px; left: 344px; width: 1px; height: 106px; background: var(--color-border); }
.v2-free-guidance__statement { position: absolute; top: 24px; left: 368px; width: 422px; }
.v2-free-guidance__statement p { margin-top: 10px; }

.v2-free-cta { width: 366px; color: var(--color-on-dark); background: var(--color-ink); }
.v2-free-cta__visual { position: absolute; top: 20px; left: 20px; width: 60px; height: 60px; overflow: hidden; }
.v2-free-cta__visual img { position: absolute; inset: 0; display: block; width: 60px; height: 60px; }
.v2-free-cta h2 { position: absolute; top: 20px; left: 100px; margin: 0; font-size: 17px; font-weight: var(--font-weight-bold); line-height: 26px; }
.v2-free-cta p { position: absolute; top: 54px; left: 100px; margin: 0; color: var(--color-on-dark-label); font-size: 13px; line-height: 20px; }
.v2-free-cta .v2-button { position: absolute; top: 98px; left: 100px; width: 108px; height: 32px; padding: 5px 11px 4px; font-size: 14px; line-height: 21px; }

/* Figma 256:3132 只覆盖上方内容区；共用 Footer 作为节点后的页面扩展，不上叠 CTA。 */
#main-content + .v2-footer {
    margin-top: 0;
    padding-top: 140px;
}
