* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 12px;
    --color-surface: #ffffff;
    --content-padding: 20px;
    --report-label-size: 16.8px;
    --report-value-size: 16.8px;
    --report-section-size: 16.8px;
    --report-table-size: 14px;
    --report-tab-size: 21px;
    --report-note-size: 12px;
    --report-line-height: 28px;
    --report-label-color: #626571;
    --report-value-color: #222222;
}

html,
body {
    width: 100%;
    min-height: 100vh;
}

body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: #0a1630;
    color: rgb(51, 51, 51);
    font-size: 1.5rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.page-wrap {
    width: 100%;
    margin: 0;
    min-height: 100vh;
}

/* ===== 顶部 Banner + 标题凸起 ===== */
.header-stage {
    position: relative;
    width: 100%;
}

/* 主内容区：100% 通栏；标题卡 90% 居中凸起，内容白底铺满 */
.page-main {
    position: relative;
    z-index: 3;
    width: 100%;
    margin: -64px 0 0;
    box-sizing: border-box;
    background: transparent;
}

.page-header {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 200px;
    background: #0a1630;
}

.hero {
    width: 100%;
    height: 100%;
    background-color: #0a1630;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

/* 与目标站 .zfbg-btn 一致：右贴齐、左侧圆角、深蓝底 */
.btn-forward {
    position: absolute;
    top: 52px;
    right: 0;
    z-index: 5;
    width: 11rem;
    height: 4rem;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 20px 0 0 20px;
    background-color: #00113c;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 4rem;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
}

/* 标题卡：90% 宽、上圆角 + 阴影，压入蓝色区形成凸起 */
.title-card {
    position: relative;
    z-index: 4;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #ffffff;
    min-height: 72px;
    border-radius: 10px 10px 0 0;
    box-shadow: none;
}

.company-title {
    width: 100%;
    text-align: center;
    font-size: 27.6px;
    font-weight: 700;
    padding: 12px 20px 0;
    color: #222;
    line-height: 48px;
    background: transparent;
}

.content-body {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: -1px;
    background: #ffffff;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Tab ===== */
.tabs {
    display: flex;
    width: 100%;
    background: #ffffff;
    padding: 28px 5px 0;
    box-sizing: border-box;
}

.tab-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 56px;
    padding: 0;
    font-size: var(--report-tab-size);
    color: #626571;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    border: none;
    background: transparent;
    font-family: inherit;
    line-height: 1.2;
    appearance: none;
    outline: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.tab-item.active {
    color: #000;
}

.tab-item:focus,
.tab-item:focus-visible,
.tab-item:active {
    outline: none;
    background: transparent;
}

.tab-item.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #e85d7a;
}

.tab-panel {
    display: none;
    padding: 18px 5px 0;
    font-size: 1.5rem;
    box-sizing: border-box;
}

.tab-panel.active {
    display: block;
}

.tab-panel-box {
    border: 1px solid #f0f0f0;
    padding: 0 10px 18px;
    background: #ffffff;
    overflow: visible;
}

.tab-panel-box .metric-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 22px;
    row-gap: 0;
}

.tab-panel-box .section-title.with-icon {
    font-size: var(--report-section-size);
    font-weight: 700;
    color: #222222;
    min-height: 44px;
    padding: 12px 0 10px;
    line-height: var(--report-line-height);
}

.tab-panel-box .sub-section:first-child .section-title.with-icon {
    padding-top: 4px;
}

.tab-panel-box .section-title.with-icon::before {
    content: "";
    width: 3px;
    height: 14px;
    background: #4a9ff5;
    border-radius: 1px;
    flex-shrink: 0;
}

.tab-panel-box .metric-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 0;
    padding: 12px 0 10px;
    border-bottom: none;
    gap: 2px;
}

.tab-panel-box .metric-label {
    width: 100%;
    color: #999999;
    font-size: var(--report-label-size);
    line-height: 1.45;
    flex: none;
    word-break: break-word;
}

.tab-panel-box .metric-value {
    width: 100%;
    max-width: 100%;
    color: var(--report-value-color);
    font-size: var(--report-value-size);
    font-weight: 400;
    line-height: var(--report-line-height);
    text-align: left;
    flex-shrink: 1;
    word-break: break-word;
}

.tab-panel-box .divider-note {
    display: table;
    width: 100%;
    margin: 14px 0 8px;
    table-layout: fixed;
    border-collapse: collapse;
}

.tab-panel-box .divider-note-line {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    border-top: 1px dashed #d9d9d9;
}

.tab-panel-box .divider-note-text {
    display: table-cell;
    width: 1%;
    vertical-align: middle;
    padding-left: 10px;
    white-space: nowrap;
    word-break: keep-all;
    color: #bbbbbb;
    font-size: var(--report-note-size);
    line-height: 1.2;
    background: #ffffff;
}

.tab-panel-box .late-fee-status {
    padding: 4px 0 0;
}

.tab-panel-box .section-dash-divider {
    margin: 16px 0 14px;
    border: none;
    border-top: 1px dashed #d9d9d9;
    height: 0;
}

.tab-panel-box .plain-text {
    font-size: var(--report-value-size);
    padding: 8px 0 6px;
    color: var(--report-value-color);
    line-height: var(--report-line-height);
}

/* ===== 供应商信息 Tab ===== */
.tab-panel-box .sub-section--partner .section-title.with-icon {
    padding: 4px 0 10px;
    margin-bottom: 0;
    border-bottom: 1px dashed #d9d9d9;
}

.tab-panel-box .sub-section--partner + .section-dash-divider {
    margin: 14px 0 10px;
}

.tab-panel-box .sub-section--partner .section-title.with-icon::before {
    width: 14px;
    height: 14px;
    border-radius: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a9ff5'%3E%3Cpath d='M12 12a5 5 0 100-10 5 5 0 000 10zm-7 9a7 7 0 0114 0H5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.tab-panel-box .data-table.partner-table {
    margin-top: 0;
}

.tab-panel-box .data-table.partner-table th,
.tab-panel-box .data-table.partner-table td {
    padding: 12px 6px;
    text-align: center;
    font-size: var(--report-table-size);
    line-height: 1.45;
}

.tab-panel-box .data-table.partner-table th {
    background: #f8faff;
    color: #636571;
    font-weight: 400;
}

.tab-panel-box .data-table.partner-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

.tab-panel-box .data-table.partner-table tbody tr:nth-child(even) {
    background: #f8faff;
}

.tab-panel-box .data-table.partner-table .col-rank {
    width: 12%;
}

.tab-panel-box .data-table.partner-table .col-amount {
    width: 18%;
}

.tab-panel-box .data-table.partner-table .col-ratio {
    width: 16%;
}

.tab-panel-box .data-table.partner-table .col-related {
    width: 14%;
}

.tab-panel-box .data-table.partner-table .ratio-orange {
    color: #f39800;
    font-weight: 400;
}

.tab-panel-box .view-more {
    padding: 16px 0 2px;
}

.tab-panel-box .view-more a {
    color: #4a9ff5;
    font-size: var(--report-table-size);
}

/* ===== 基本信息：左标签 + 右数值（左对齐，贴近目标站） ===== */
.info-list {
    padding: 0;
}

.info-row {
    display: flex;
    align-items: flex-start;
    min-height: auto;
    padding: 13px 0;
    border-bottom: none;
}

.info-label {
    flex: 0 0 43%;
    max-width: 43%;
    padding-right: 12px;
    color: var(--report-label-color);
    font-size: var(--report-label-size);
    line-height: var(--report-line-height);
    text-align: left;
}

.info-value {
    flex: 1;
    min-width: 0;
    color: var(--report-value-color);
    text-align: left;
    font-size: var(--report-value-size);
    line-height: var(--report-line-height);
    word-break: break-all;
}

.copy-link {
    color: #00008b;
    font-size: 16px;
    margin-left: 4px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.score-row .info-label {
    display: inline-flex;
    align-items: center;
}

.score-row .info-value {
    display: block;
}

.score-value {
    font-size: var(--report-value-size);
    font-weight: 700;
    color: #222;
}

.score-help {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-left: 6px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #4a9ff5;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

/* ===== 经营分进度条 ===== */
.score-bar-wrap {
    padding: 8px var(--content-padding) 20px;
    margin-top: 0;
    border-top: none;
    box-sizing: border-box;
}

.score-track {
    position: relative;
    padding-top: 20px;
}

.score-indicator {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
    pointer-events: none;
}

.score-number {
    font-size: 1.4rem;
    font-weight: 400;
    color: #222222;
    line-height: 1;
    white-space: nowrap;
}

.score-pointer-mark {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 10px;
    height: 14px;
    margin-top: 0;
    transform: translateX(-50%);
}

.score-pointer-mark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 8px;
    height: 2px;
    margin-left: -4px;
    background: #222222;
}

.score-pointer-mark::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 14px;
    margin-left: -1px;
    background: #222222;
}

.score-bar {
    position: relative;
    height: 14px;
    border-radius: 7px;
    overflow: hidden;
    background: linear-gradient(90deg, #4eaaff 0%, #60cfff 52%, #22c55e 100%);
}

.score-bar-tick {
    position: absolute;
    top: 1px;
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.65);
    pointer-events: none;
    transform: translateX(-50%);
}

.score-scale {
    position: relative;
    height: 36px;
    margin-top: 8px;
}

.score-scale-num,
.score-scale-text {
    position: absolute;
    font-size: 1.2rem;
    color: #999999;
    line-height: 1;
    white-space: nowrap;
    transform: translateX(-50%);
    text-align: center;
}

.score-scale-num {
    top: 0;
}

.score-scale-text {
    top: 16px;
}

.score-bar-tick.pos-20,
.score-scale-num.pos-20 {
    left: 20%;
}

.score-bar-tick.pos-40,
.score-scale-num.pos-40 {
    left: 40%;
}

.score-bar-tick.pos-60,
.score-scale-num.pos-60 {
    left: 60%;
}

.score-bar-tick.pos-80,
.score-scale-num.pos-80 {
    left: 80%;
}

.score-bar-tick {
    transform: translateX(-50%);
}

.score-scale-text.pos-20 {
    left: 30%;
}

.score-scale-text.pos-mid {
    left: 60%;
}

.score-scale-text.pos-80 {
    left: 86%;
}

.score-tip-panel {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 var(--content-padding) 18px;
    padding: 14px 16px;
    border: 1px solid #b8d9ff;
    border-radius: 8px;
    background: #ffffff;
    box-sizing: border-box;
}

.score-tip-panel.show {
    display: flex;
}

.score-tip-text {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-size: 1.3rem;
    color: #666;
    line-height: 1.65;
}

.score-tip-btn {
    flex-shrink: 0;
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    background: #4a9ff5;
    color: #ffffff;
    font-size: 1.3rem;
    font-family: inherit;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
}

/* ===== 区块标题 & 表格 ===== */
.report-table-section {
    margin: 0;
    padding: 0 var(--content-padding);
    box-sizing: border-box;
}

.report-table-section + .report-table-section {
    margin-top: 0;
    padding-top: 4px;
}

.report-table-section:not(:last-of-type) {
    padding-bottom: 14px;
    border-bottom: 1px dashed #d9d9d9;
}

.report-table-section:last-of-type {
    padding-bottom: 0;
}

.section-title {
    font-size: var(--report-section-size);
    font-weight: 700;
    padding: 14px 0 10px;
    color: #222222;
    line-height: var(--report-line-height);
}

.data-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    font-size: var(--report-table-size);
}

.data-table th {
    background: #f5f8ff;
    color: #636571;
    font-weight: 400;
    padding: 11px 8px;
    text-align: center;
    border: none;
    font-size: var(--report-table-size);
    line-height: 1.45;
}

.data-table td {
    padding: 11px 8px;
    text-align: center;
    border: none;
    color: #333333;
    font-size: var(--report-table-size);
    line-height: 1.45;
    vertical-align: middle;
    white-space: normal;
    word-break: break-word;
}

.report-table-section .data-table td {
    padding-left: 6px;
    padding-right: 6px;
}

.data-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

.data-table tbody tr:nth-child(even) {
    background: #f5f8ff;
}

.data-table td.text-left {
    text-align: left;
}

.view-more {
    text-align: center;
    padding: 14px 0 0;
}

.view-more a {
    color: #4a9ff5;
    font-size: var(--report-table-size);
    text-decoration: none;
}

.list-toggle-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 14px;
    padding: 0 0 14px;
    border-top: none;
    border-bottom: 1px dashed #d9d9d9;
}

.list-toggle-wrap[hidden] {
    display: none !important;
}

.list-toggle-btn {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.list-toggle-icon {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #4a9ff5;
    border-bottom: 1.5px solid #4a9ff5;
    transform: rotate(-135deg);
}

.list-toggle-btn.is-collapsed .list-toggle-icon {
    transform: rotate(45deg);
}

.list-toggle-text {
    color: #4a9ff5;
    font-size: var(--report-table-size);
    line-height: 1;
}

#changeTableBody tr.is-hidden-row {
    display: none;
}

/* ===== 银税 & 推广 ===== */
.bank-record {
    padding: 14px var(--content-padding);
    font-size: 1.5rem;
    color: rgb(51, 51, 51);
    border-top: 1px dashed #d9d9d9;
}

.bank-record span {
    color: rgb(99, 101, 113);
}

.promo-section {
    margin: 12px var(--content-padding) 0;
    padding: 0;
    border: none;
    background: none;
    line-height: 0;
    box-sizing: border-box;
}

.promo-section img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ===== 其他 Tab ===== */
.sub-section {
    padding: 0;
}

.metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 11px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 1.4rem;
    gap: 8px;
}

.metric-label {
    color: rgb(99, 101, 113);
    flex: 1;
    line-height: 1.45;
}

.metric-value {
    color: rgb(51, 51, 51);
    text-align: right;
    flex-shrink: 0;
    max-width: 42%;
    word-break: break-all;
}

.section-title.with-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 0 8px;
    font-size: 1.4rem;
}

.section-title.with-icon::before {
    content: "";
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a9ff5'%3E%3Cpath d='M12 12a5 5 0 100-10 5 5 0 000 10zm-7 9a7 7 0 0114 0H5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.plain-text {
    font-size: 1.4rem;
    padding: 10px 0;
    color: rgb(51, 51, 51);
}

.data-table.zebra {
    width: 100%;
    margin: 0;
}

.data-table.zebra tbody tr:nth-child(odd) {
    background: #ffffff;
}

.data-table.zebra tbody tr:nth-child(even) {
    background: #f5f8ff;
}

.data-table.zebra .summary-row {
    background: #e8f2ff !important;
    font-weight: 600;
}

.data-table.zebra th {
    background: #f5f8ff;
}

.data-table.year-table th,
.data-table.year-table td {
    font-size: var(--report-table-size);
    padding: 8px 2px;
}

.link-view {
    color: rgb(74, 159, 245);
    text-decoration: none;
    font-size: 1.3rem;
}

.tip-box {
    margin: 12px 0;
    padding: 12px;
    border: 1px solid #b8d9ff;
    border-radius: 4px;
    background: #f5faff;
    font-size: 1.2rem;
    color: rgb(99, 101, 113);
    line-height: 1.65;
}

.btn-tip {
    margin-top: 8px;
    padding: 5px 12px;
    background: #fff;
    border: 1px solid rgb(74, 159, 245);
    color: rgb(74, 159, 245);
    border-radius: 3px;
    font-size: 1.2rem;
    cursor: pointer;
}

.data-note {
    text-align: center;
    color: rgb(187, 187, 187);
    font-size: 1.1rem;
    padding: 14px 0;
    position: relative;
}

.data-note::before,
.data-note::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    border-top: 1px dashed #e5e5e5;
}

.data-note::before { left: 0; }
.data-note::after { right: 0; }

.ratio-orange {
    color: #f5a623;
    font-weight: 500;
}

.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 1.4rem;
    display: none;
    z-index: 9999;
}

.toast.show {
    display: block;
}

/* ===== 经营分说明弹框 ===== */
.score-modal-mask {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: rgba(0, 0, 0, 0.45);
    box-sizing: border-box;
}

.score-modal-mask.show {
    display: flex;
}

.score-modal {
    width: 100%;
    max-width: 420px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    padding: 16px 16px 14px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    box-sizing: border-box;
}

.score-modal-body {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 8px;
    background: #f4f7fc;
}

.score-modal-card {
    margin-bottom: 10px;
    padding: 14px 16px;
    border: 1px solid #e4ebf5;
    border-radius: 8px;
    background: #ffffff;
    font-size: 1.4rem;
    line-height: 1.65;
    color: #333333;
}

.score-modal-card:last-child {
    margin-bottom: 0;
}

.score-modal-card p {
    margin: 0;
}

.score-modal-card .card-title {
    margin-bottom: 6px;
    color: #008585;
    font-weight: 700;
}

.score-modal-close {
    align-self: flex-start;
    padding: 8px 22px;
    border: none;
    border-radius: 4px;
    background: #4a9ff5;
    color: #ffffff;
    font-size: 1.4rem;
    font-family: inherit;
    line-height: 1.2;
    cursor: pointer;
}

/* ===== 税务处罚详情弹框 ===== */
.penalty-modal-mask {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: rgba(0, 0, 0, 0.45);
    box-sizing: border-box;
}

.penalty-modal-mask.show {
    display: flex;
}

.penalty-modal {
    width: 100%;
    max-width: 420px;
    padding: 20px 20px 16px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    box-sizing: border-box;
}

.penalty-modal-title {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    line-height: 1.2;
}

.penalty-detail-list {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.85;
    color: #333333;
}

.penalty-detail-list p {
    margin: 0;
}

.penalty-detail-label {
    color: #333333;
}

.penalty-modal-close {
    padding: 8px 22px;
    border: none;
    border-radius: 4px;
    background: #4a9ff5;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.2;
    cursor: pointer;
}

@media (max-width: 480px) {
    html {
        --report-label-size: 12px;
        --report-value-size: 14px;
        --report-section-size: 15px;
        --report-table-size: 12px;
        --report-tab-size: 15px;
        --report-note-size: 11px;
        --report-line-height: 22px;
    }

    .page-header {
        height: 200px;
    }

    .page-main {
        width: 100%;
        margin-top: -64px;
    }

    .content-body,
    .tabs,
    .tab-panel,
    .bank-record,
    .company-title {
        --content-padding: 16px;
    }

    .btn-forward {
        top: 52px;
        right: 0;
        width: 9rem;
        height: 3.2rem;
        padding: 0;
        font-size: 13px;
        line-height: 3.2rem;
        border-radius: 16px 0 0 16px;
    }

    .title-card {
        width: 90%;
        min-height: 56px;
        border-radius: 10px 10px 0 0;
    }

    .company-title {
        font-size: 18px;
        line-height: 26px;
        padding: 10px 16px 0;
    }

    .tabs {
        padding: 18px 5px 0;
    }

    .tab-item {
        font-size: var(--report-tab-size);
        height: 44px;
    }

    .tab-panel {
        padding: 12px 5px 0;
        font-size: var(--report-value-size);
    }

    .tab-panel-box {
        padding: 0 10px 14px;
    }

    .tab-panel-box .metric-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 10px;
    }

    .tab-panel-box .metric-item {
        padding: 10px 0 8px;
        gap: 2px;
    }

    .tab-panel-box .metric-label {
        font-size: 12px;
        line-height: 18px;
        color: #999999;
    }

    .tab-panel-box .metric-value {
        font-size: 14px;
        line-height: 22px;
    }

    .tab-panel-box .section-title.with-icon {
        min-height: auto;
        padding: 10px 0 6px;
        font-size: 15px;
        line-height: 22px;
    }

    .section-title {
        font-size: 15px;
        line-height: 22px;
        min-height: auto;
        padding: 10px 0 6px;
    }

    .info-row {
        padding: 10px 0;
    }

    .info-label {
        flex: 0 0 43%;
        max-width: 43%;
        padding-right: 8px;
        font-size: 14px;
        line-height: 22px;
    }

    .info-value {
        font-size: 14px;
        line-height: 22px;
    }

    .tab-panel-box .plain-text {
        font-size: 14px;
        line-height: 22px;
        padding: 6px 0 4px;
    }

    .copy-link {
        font-size: 12px;
    }

    .data-table,
    .data-table th,
    .data-table td,
    .tab-panel-box .data-table.partner-table th,
    .tab-panel-box .data-table.partner-table td {
        font-size: var(--report-table-size);
        padding: 9px 4px;
    }

    .tab-panel-box .divider-note-text {
        font-size: var(--report-note-size);
    }

    .score-value {
        font-size: var(--report-value-size);
    }

    .score-number {
        font-size: 14px;
    }

    .score-scale-num,
    .score-scale-text {
        font-size: 11px;
    }

    .score-scale {
        height: 34px;
        margin-top: 6px;
    }

    .score-scale-text {
        top: 15px;
    }

    .promo-section {
        margin: 10px var(--content-padding) 0;
    }

    .list-toggle-wrap {
        margin-top: 14px;
    }

    .score-tip-text,
    .score-tip-btn {
        font-size: 12px;
    }

    .bank-record {
        font-size: 14px;
        line-height: 22px;
    }

    .view-more a,
    .list-toggle-text {
        font-size: var(--report-table-size);
    }

    .score-tip-panel.show {
        flex-direction: column;
        align-items: stretch;
    }

    .score-tip-btn {
        align-self: flex-end;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .tab-panel-box .sub-section--partner {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab-panel-box .data-table.partner-table {
        min-width: 100%;
    }
}
