/**
 * 控制台样式 - 火山引擎风格
 * 基于 Vue3 + Arco Design Vue
 */

/* ===== 基础样式重置 ===== */
.console-wrapper * {
    box-sizing: border-box;
}

.console-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    background: #f2f3f5;
    min-height: 100vh;
}

/* ===== 顶部导航栏 ===== */
.console-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: #fff;
    border-bottom: 1px solid #e5e6eb;
    height: 48px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

/* ===== 汉堡菜单按钮 ===== */
.index-module__toggle--26haC {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    color: #4E5969;
    transition: all 0.2s;
    position: relative;
    border-radius: 0;
    border-right: 1px solid #E5E6EB;
    margin-left: -16px;
    flex-shrink: 0;
}

.index-module__toggle--26haC:hover {
    color: #1664FF;
    background: #F7F8FA;
}

.index-module__toggle--26haC.active {
    color: #1664FF;
    background: #F7F8FA;
}

.index-module__toggle--26haC .menu-icon {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.index-module__toggle--26haC .menu-line {
    width: 18px;
    height: 2px;
    background-color: #4E5969;
    border-radius: 1px;
    position: absolute;
    transition: all 0.3s ease;
}

.index-module__toggle--26haC .menu-line:nth-child(1) {
    top: 4px;
}

.index-module__toggle--26haC .menu-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.index-module__toggle--26haC .menu-line:nth-child(3) {
    bottom: 4px;
}

/* hover和active时变成X */
.index-module__toggle--26haC:hover .menu-line,
.index-module__toggle--26haC.active .menu-line {
    background-color: #1664FF;
}

.index-module__toggle--26haC:hover .menu-line:nth-child(1),
.index-module__toggle--26haC.active .menu-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.index-module__toggle--26haC:hover .menu-line:nth-child(2),
.index-module__toggle--26haC.active .menu-line:nth-child(2) {
    opacity: 0;
}

.index-module__toggle--26haC:hover .menu-line:nth-child(3),
.index-module__toggle--26haC.active .menu-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ===== Logo ===== */
.console-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    border-right: 1px solid #e5e6eb;
    padding-right: 16px;
}

.console-logo img {
    height: 22px;
}

/* ===== 导航项 ===== */
.header-nav {
    display: flex;
    gap: 4px;
}

.header-nav-item {
    padding: 4px 12px;
    height: 32px;
    line-height: 24px;
    color: #4e5969;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    border-radius: 4px;
    white-space: nowrap;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav-item:hover {
    background: #f2f3f5;
}

.header-nav-item.active {
    background: #e8f3ff;
    color: #165dff;
}

/* ===== Header 中间和右侧 ===== */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 24px;
    max-width: 600px;
    margin: 0 auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.header-text-btn {
    font-size: 13px;
    color: #4e5969;
    cursor: pointer;
    padding: 6px 10px;
    transition: color 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.header-text-btn:hover {
    color: #165dff;
}

.header-icon-btn {
    font-size: 18px;
    color: #4e5969;
    cursor: pointer;
    padding: 6px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    position: relative;
}

.header-icon-btn:hover {
    background: #f2f3f5;
}

.header-icon-btn .badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: #f53f3f;
    border-radius: 50%;
    border: 2px solid #fff;
}

.divider {
    width: 1px;
    height: 20px;
    background: #e5e6eb;
    margin: 0 4px;
}

/* ===== 遮罩层 ===== */
.index-module__mask--uQGkp {
    display: none;
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.index-module__mask--uQGkp.index-module__expanded--2On_v {
    display: block;
}

/* ===== 产品菜单面板 ===== */
.index-module__menu--1TInY {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.index-module__detail--bSCgy {
    display: none;
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    height: calc(100vh - 48px);
    background: #fff;
    z-index: 1001;
    flex-direction: row;
}

.index-module__detail--bSCgy.index-module__expanded--2On_v {
    display: flex;
}

/* 左侧导航面板 */
.index-module__left-nav--panel {
    width: 240px;
    min-width: 240px;
    height: 100%;
    background: #fff;
    border-right: 1px solid #EAEDF1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.index-module__left-nav-header {
    padding: 12px 16px;
    border-bottom: 1px solid #EAEDF1;
}

.index-module__left-nav-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 12px;
    background: #E8F3FF;
    border-radius: 4px;
    color: #1664FF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.index-module__left-nav-section {
    padding: 12px 16px;
}

.index-module__left-nav-title {
    color: #86909c;
    font-size: 12px;
    margin-bottom: 8px;
}

.index-module__left-nav-item {
    display: block;
    padding: 8px 12px;
    color: #1D2129;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.index-module__left-nav-item:hover {
    background: #F2F3F5;
    color: #1664FF;
}

/* 右侧内容面板 */
.index-module__right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.index-module__bar--3Ct96 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 16px;
    background: #fff;
    border-bottom: 1px solid #EAEDF1;
}

.index-module__close--GEoS3 {
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
}

.index-module__close--GEoS3:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* 搜索输入框 */
.index-module__input-wrapper--3eWkQ {
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid #EAEDF1;
}

.index-module__input--34dx4 {
    width: 320px;
    max-width: 100%;
}

/* 产品列表 */
.index-module__list--2yerD {
    flex: 1;
    overflow: hidden;
}

.index-module__product-list--1a1nt {
    height: 100%;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    padding: 0 16px;
}

.index-module__inner-menu-container--2N5K6 {
    display: flex;
    gap: 24px;
    padding: 8px 0;
}

.index-module__inner-menu-container--2N5K6 .column-0,
.index-module__inner-menu-container--2N5K6 .column-1 {
    flex: 1;
    min-width: 0;
}

/* 分类样式 */
.index-module__general-category-container--tX3Mp {
    margin-bottom: 16px;
}

.index-module__general-category-title--2pfiZ {
    color: #0C0D0E;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #EAEDF1;
}

.index-module__category-container--2h9zD {
    margin-bottom: 8px;
}

.index-module__category-title--1PRkD {
    color: #86909c;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 4px;
}

.index-module__menu-item--2zJ5c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.index-module__menu-item--2zJ5c:hover {
    background: #f2f3f5;
}

.index-module__left--5fO7V {
    color: #1d2129;
    font-size: 13px;
    text-decoration: none;
    flex: 1;
}

.index-module__menu-item--2zJ5c:hover .index-module__left--5fO7V {
    color: #1664FF;
}

/* ===== 费用下拉菜单 ===== */
.finance-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.finance-dropdown-wrapper:hover .finance-dropdown-panel {
    display: block;
}

.finance-dropdown-wrapper:hover .finance-trigger {
    color: #1664FF;
}

.finance-dropdown-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 286px;
    background: #fff;
    border: 1px solid #EAEDF1;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 15px 15px -2px rgba(0,0,0,.05);
    z-index: 1001;
}

.finance-dropdown-balance {
    background-color: #F6F8FA;
    padding: 20px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.balance-info {
    display: flex;
    flex-direction: column;
}

.balance-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 22px;
    color: #42464E;
    margin-bottom: 4px;
}

.balance-value {
    color: #020814;
    font-size: 20px;
    font-weight: 700;
}

.balance-value .currency {
    font-size: 16px;
    margin-right: 4px;
}

.balance-recharge-btn {
    background: #1664FF;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    padding: 2px 12px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 0 0 1px #05f, 0 2px 1px 0 rgba(0,0,0,.15);
    transition: all 0.2s;
}

.balance-recharge-btn:hover {
    background: #387BFF;
}

.finance-dropdown-list {
    background: #fff;
    padding: 6px 6px 2px;
}

.finance-dropdown-list-item {
    display: flex;
    align-items: center;
    padding: 5px 12px;
    font-size: 13px;
    line-height: 22px;
    color: #0C0D0E;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 4px;
    transition: background 0.2s;
}

.finance-dropdown-list-item:hover {
    background: #F6F8FA;
}

/* ===== 用户头像下拉菜单 ===== */
.volcfe-nav-pc-user-icon-wrap {
    display: flex;
    height: 100%;
    align-items: center;
    cursor: pointer;
    margin-right: 8px;
    padding: 0 8px;
}

.volcfe-nav-pc-user-icon {
    background: #E2EBFF;
    border-radius: 50%;
    color: #1759DD;
    font-family: Roboto;
    font-size: 13px;
    font-weight: 500;
    height: 24px;
    line-height: 24px;
    text-align: center;
    user-select: none;
    width: 24px;
}

.account-dropdown-wrap {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1001;
}

.account-dropdown-wrap[data-active="true"] {
    display: block;
}

.account-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    width: 368px;
    box-shadow: 0 15px 35px -2px rgba(0,0,0,.05), 0 5px 15px 0 rgba(0,0,0,.05);
    transform: scaleY(0.9) translateZ(0);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: transform .2s cubic-bezier(.34, .69, .1, 1), opacity .2s cubic-bezier(.34, .69, .1, 1);
    z-index: 1003;
    background: #fff;
    border: 1px solid #EAEDF1;
    border-radius: 0 0 8px 8px;
    max-height: calc(100vh - 48px);
    overflow: auto;
}

.account-dropdown-wrap[data-active="true"] .account-dropdown {
    transform: scaleY(1) translateZ(0);
    opacity: 1;
    pointer-events: auto;
}

.account-dropdown-info {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(287deg, rgba(232,241,255,.3) 11.07%, rgba(245,248,255,.3) 89%), linear-gradient(291deg, rgba(201,222,255,.3) 24.92%, rgba(245,248,255,.3) 88.01%);
    padding: 20px;
}

.account-info-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E2EBFF;
    border-radius: 50%;
    color: #1759DD;
    font-size: 19px;
    font-weight: 500;
    height: 48px;
    width: 48px;
    min-height: 48px;
    min-width: 48px;
    margin-right: 12px;
}

.account-info-data {
    flex: 1;
}

.account-info-name {
    display: flex;
    align-items: center;
    color: #0C0D0E;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

.account-info-id {
    display: flex;
    align-items: flex-start;
    color: #42464E;
    font-size: 13px;
    line-height: 22px;
    margin-top: 2px;
    margin-bottom: 8px;
}

.account-info-tags {
    display: flex;
    align-items: center;
}

.account-info-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F6F8FA;
    box-shadow: 0 0 0 1px #DDE2E9;
    border-radius: 4px;
    color: #42464E;
    font-size: 10px;
    font-weight: 500;
    height: 18px;
    line-height: 18px;
    padding: 2px 6px;
    margin-right: 4px;
}

.account-dropdown-content {
    padding: 16px 20px;
}

.module-links {
    border-bottom: 1px solid #EAEDF1;
    padding: 16px 0;
}

.module-links:first-child {
    padding-top: 0;
}

.module-links-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.module-links-title {
    color: #0C0D0E;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

.module-links-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 32px;
}

.module-links-item a {
    color: #42464E;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    text-decoration: none;
}

.module-links-item a:hover {
    color: #1664FF !important;
}

.account-dropdown-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 32px;
    background: #F6F8FA;
    border: none;
    border-radius: 4px;
    color: #41464F;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 16px;
}

.account-dropdown-logout:hover {
    background: #EAEDF1;
}

/* ===== 主内容区 ===== */
.console-main {
    display: flex;
    flex: 1;
    overflow: hidden;
    min-height: calc(100vh - 48px);
}

/* ===== 左侧菜单 ===== */
.console-sider {
    width: 200px;
    background: #fff;
    border-right: 1px solid #e5e6eb;
    transition: all 0.3s;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.console-sider .arco-menu {
    border-right: none !important;
    overflow: visible !important;
}

.console-sider .arco-menu-inner {
    overflow: visible !important;
}

.console-sider.collapsed {
    width: 48px;
}

/* ===== 主内容 ===== */
.console-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
    background: #f2f3f5;
}

/* ===== 首页样式 ===== */
.home-container {
    max-width: 1400px;
    margin: 0 auto;
}

.arco-custom-home-layout {
    display: flex;
    gap: 16px;
}

.arco-custom-home-left {
    flex: 1;
    min-width: 0;
}

.arco-custom-home-right {
    width: 320px;
    flex-shrink: 0;
}

/* 通用卡片样式 */
.arco-custom-card {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 0 1px rgba(0,0,0,0.08);
}

.arco-custom-card-header {
    padding: 20px 24px 0;
    font-size: 18px;
    font-weight: 500;
    color: #020814;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arco-custom-card-body {
    padding: 20px 24px 24px;
}

.arco-custom-link {
    color: #80838a;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.arco-custom-link:hover {
    color: #165dff;
}

/* 快捷导航卡片 */
.arco-custom-nav-section {
    margin-bottom: 20px;
}

.arco-custom-nav-section:last-child {
    margin-bottom: 0;
}

.arco-custom-nav-section-title {
    font-size: 12px;
    color: #80838a;
    font-weight: 500;
    margin-bottom: 12px;
}

.arco-custom-nav-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.arco-custom-nav-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f6f8fa;
    border: 1px solid #eaedf1;
    border-radius: 8px;
    color: #020814;
    text-decoration: none;
    font-size: 14px;
    min-width: 160px;
    transition: all 0.2s;
}

.arco-custom-nav-card:hover {
    box-shadow: 0 10px 35px -2px rgba(0,0,0,0.05), 0 2px 8px rgba(0,0,0,0.05);
    border-color: transparent;
}

.arco-custom-nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* 费用信息卡片 */
.arco-custom-finance-content {
    display: flex;
    gap: 24px;
}

.arco-custom-finance-left {
    width: 200px;
    flex-shrink: 0;
}

.arco-custom-finance-right {
    flex: 1;
    min-width: 0;
}

.arco-custom-finance-balance {
    background: rgba(209, 227, 255, 0.45);
    border: 1px solid rgba(162, 193, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.arco-custom-finance-label {
    font-size: 12px;
    color: #80838a;
    font-weight: 500;
    margin-bottom: 4px;
}

.arco-custom-finance-value {
    font-size: 24px;
    font-weight: 600;
    color: #020814;
    line-height: 32px;
    margin-bottom: 16px;
}

.arco-custom-finance-value .currency {
    font-size: 16px;
    line-height: 24px;
    vertical-align: top;
}

.arco-custom-finance-buttons {
    display: flex;
    gap: 12px;
}

.arco-custom-finance-info {
    background: #f6f8fa;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.arco-custom-finance-info:last-child {
    margin-bottom: 0;
}

.arco-custom-finance-info:hover {
    box-shadow: 0 10px 35px -2px rgba(0,0,0,0.05), 0 2px 8px rgba(0,0,0,0.05);
}

.arco-custom-finance-value-sm {
    font-size: 24px;
    font-weight: 600;
    color: #020814;
    line-height: 32px;
}

/* 账号信息卡片 */
.arco-custom-account-card .arco-custom-card-body {
    padding: 0;
}

.arco-custom-account-header {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
    position: relative;
}

.arco-custom-avatar-wrapper {
    position: relative;
}

.arco-custom-avatar {
    width: 64px;
    height: 64px;
    background: #165dff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
}

.arco-custom-badge {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: #165dff;
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

.arco-custom-account-info {
    flex: 1;
}

.arco-custom-account-name {
    font-size: 16px;
    font-weight: 500;
    color: #020814;
    margin-bottom: 2px;
}

.arco-custom-account-id {
    font-size: 13px;
    color: #80838a;
    margin-bottom: 8px;
}

.arco-custom-tags {
    display: flex;
    gap: 6px;
}

.arco-custom-tag-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.arco-custom-tag-icon.arco-custom-tag-green {
    background: #e8ffea;
    color: #00b42a;
}

.arco-custom-tag-icon.arco-custom-tag-blue {
    background: #e8f3ff;
    color: #165dff;
}

.arco-custom-account-link {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #80838a;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.arco-custom-account-link:hover {
    color: #165dff;
}

.arco-custom-stats {
    display: flex;
    border-top: 1px solid #eaedf1;
}

.arco-custom-stat-item {
    flex: 1;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    border-right: 1px solid #eaedf1;
    transition: background 0.2s;
}

.arco-custom-stat-item:last-child {
    border-right: none;
}

.arco-custom-stat-item:hover {
    background: #f6f8fa;
}

.arco-custom-stat-item .arco-custom-stat-label {
    font-size: 12px;
    color: #80838a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.arco-custom-stat-item .arco-custom-stat-value {
    font-size: 24px;
    font-weight: 600;
    color: #020814;
}

/* 服务统计卡片 */
.arco-custom-service-stats {
    display: flex;
    margin-bottom: 16px;
}

.arco-custom-service-item {
    flex: 1;
    text-align: center;
    text-decoration: none;
}

.arco-custom-service-item .arco-custom-service-label {
    font-size: 12px;
    color: #80838a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.arco-custom-service-item .arco-custom-service-value {
    font-size: 24px;
    font-weight: 600;
    color: #020814;
}

.arco-custom-service-item:hover .arco-custom-service-label {
    color: #165dff;
}

.arco-custom-service-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* 热门服务卡片 */
.arco-custom-promo-card .arco-custom-card-header {
    font-size: 16px;
}

.arco-custom-promo-desc {
    font-size: 13px;
    color: #80838a;
    margin-bottom: 16px;
    line-height: 1.6;
}

.arco-custom-promo-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.arco-custom-promo-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.arco-custom-promo-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.arco-custom-promo-content {
    flex: 1;
}

.arco-custom-promo-title {
    font-size: 14px;
    font-weight: 500;
    color: #020814;
    margin-bottom: 2px;
}

.arco-custom-promo-text {
    font-size: 12px;
    color: #80838a;
    line-height: 1.5;
}

/* ===== 滚动条 ===== */
.console-wrapper ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.console-wrapper ::-webkit-scrollbar-track {
    background: #f2f3f5;
}

.console-wrapper ::-webkit-scrollbar-thumb {
    background: #c9cdd4;
    border-radius: 4px;
}

.console-wrapper ::-webkit-scrollbar-thumb:hover {
    background: #a9aeb8;
}

/* ===== 响应式布局 ===== */
@media (max-width: 1200px) {
    .arco-custom-home-layout {
        flex-direction: column;
    }

    .arco-custom-home-right {
        width: 100%;
    }

    .arco-custom-finance-content {
        flex-direction: column;
    }

    .arco-custom-finance-left {
        width: 100%;
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .arco-custom-finance-left > div {
        flex: 1;
        min-width: 180px;
    }

    .arco-custom-finance-balance {
        flex: 2;
        min-width: 100%;
    }

    .arco-custom-nav-card {
        min-width: 140px;
    }
}

@media (max-width: 992px) {
    .arco-custom-stats {
        flex-wrap: wrap;
    }

    .arco-custom-stat-item {
        flex: 1 1 calc(50% - 1px);
        min-width: 100px;
    }

    .arco-custom-service-stats {
        flex-wrap: wrap;
    }

    .arco-custom-service-item {
        flex: 1 1 calc(50% - 1px);
        min-width: 80px;
    }

    .arco-custom-service-actions {
        flex-wrap: wrap;
    }

    .arco-custom-service-actions .arco-btn {
        flex: 1 1 calc(50% - 6px);
        min-width: 80px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .header-text-btn {
        display: none;
    }

    .header-center {
        display: none;
    }

    .console-sider {
        position: fixed;
        left: -200px;
        top: 48px;
        height: calc(100vh - 48px);
        z-index: 99;
    }

    .console-sider.show {
        left: 0;
    }

    .console-content {
        padding: 12px;
    }

    .arco-custom-card-header {
        padding: 16px 16px 0;
        font-size: 16px;
    }

    .arco-custom-card-body {
        padding: 16px;
    }

    .console-header {
        padding: 0 12px;
        height: 44px;
    }

    .index-module__toggle--26haC {
        width: 44px;
        height: 44px;
        margin-left: -12px;
    }

    .arco-custom-nav-list {
        flex-direction: column;
    }

    .arco-custom-nav-card {
        min-width: 100%;
    }

    .arco-custom-finance-left {
        flex-direction: column;
    }

    .arco-custom-finance-left > div {
        min-width: 100%;
    }

    .arco-custom-account-header {
        flex-wrap: wrap;
        padding: 16px;
    }

    .arco-custom-account-link {
        position: static;
        width: 100%;
        margin-top: 12px;
        justify-content: center;
    }

    .arco-custom-stats {
        flex-direction: column;
    }

    .arco-custom-stat-item {
        border-right: none;
        border-bottom: 1px solid #eaedf1;
        padding: 12px;
    }

    .arco-custom-stat-item:last-child {
        border-bottom: none;
    }

    /* 头像下拉菜单移动端适配 */
    .account-dropdown-wrap {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1001;
    }
    
    .account-dropdown-wrap[data-active="true"] {
        display: flex;
        align-items: flex-end;
    }
    
    .account-dropdown {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-height: 85vh;
        border-radius: 16px 16px 0 0;
        transform: translateY(100%);
        transform-origin: bottom center;
        animation: slideUp 0.3s ease forwards;
    }
    
    .account-dropdown-wrap[data-active="true"] .account-dropdown {
        transform: translateY(0);
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .account-dropdown::before {
        content: '';
        display: block;
        width: 36px;
        height: 4px;
        background: #E5E6EB;
        border-radius: 2px;
        margin: 12px auto 8px;
    }
    
    .account-dropdown-info {
        padding: 16px;
        flex-wrap: wrap;
    }
    
    .account-info-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        font-size: 16px;
        margin-right: 10px;
    }
    
    .account-info-name {
        font-size: 16px;
        flex-wrap: wrap;
    }
    
    .account-info-name-text {
        max-width: 120px;
    }
    
    .account-info-link {
        margin-left: 8px;
    }
    
    .account-info-id {
        font-size: 12px;
    }
    
    .account-info-tags {
        margin-top: 8px;
        width: 100%;
    }
    
    .account-dropdown-content {
        padding: 12px 16px;
    }
    
    .module-links {
        padding: 12px 0;
    }
    
    .module-links-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .module-links-title-slot {
        width: 100%;
    }
    
    .cost-balance {
        width: 100%;
        justify-content: space-between;
    }
    
    .module-links-content {
        gap: 8px 16px;
    }
    
    .module-links-item a {
        font-size: 13px;
    }
    
    .todo {
        padding: 10px;
        margin: 12px 0;
    }
    
    .todo-item {
        padding: 0 8px;
    }
    
    .todo-item span:first-child {
        font-size: 11px;
    }
    
    .todo-item span:last-child {
        font-size: 12px;
    }
    
    .account-dropdown-logout {
        margin-bottom: 20px;
    }

    /* 产品菜单面板移动端 */
    .index-module__detail--bSCgy {
        top: 44px;
        height: calc(100vh - 44px);
        flex-direction: column;
    }
    
    .index-module__left-nav--panel {
        width: 100%;
        min-width: 100%;
        height: auto;
        max-height: 180px;
        border-right: none;
        border-bottom: 1px solid #EAEDF1;
    }
    
    .index-module__left-nav-section {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px;
    }
    
    .index-module__left-nav-title {
        width: 100%;
        margin-bottom: 4px;
    }
    
    .index-module__left-nav-item {
        padding: 6px 12px;
        background: #F2F3F5;
        border-radius: 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .arco-custom-avatar {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .arco-custom-badge {
        font-size: 9px;
        padding: 1px 6px;
    }

    .arco-custom-account-name {
        font-size: 14px;
    }

    .arco-custom-account-id {
        font-size: 12px;
    }

    .arco-custom-finance-value {
        font-size: 20px;
    }

    .arco-custom-finance-value-sm {
        font-size: 20px;
    }
}

@media (max-width: 375px) {
    .console-header {
        padding: 0 8px;
    }

    .header-left {
        gap: 4px;
    }

    .logo {
        padding-right: 4px;
    }

    .logo img {
        height: 16px;
    }

    .index-module__toggle--26haC {
        width: 28px;
        height: 28px;
    }

    .volcfe-nav-pc-user-icon {
        width: 22px;
        height: 22px;
        font-size: 12px;
        line-height: 22px;
    }
}

/* ===== 侧边菜单样式补充 ===== */
.console-sider .sider-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.console-sider .arco-menu-item,
.console-sider .arco-menu-inline-header {
    height: 40px !important;
    line-height: 40px !important;
    padding: 0 12px !important;
}

.console-sider .arco-menu-item .arco-menu-icon,
.console-sider .arco-menu-inline-header .arco-menu-icon {
    margin-right: 8px;
}

.console-sider .arco-menu-item a,
.console-sider .arco-menu-item a:hover {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
}

.console-sider .arco-menu-item:hover a {
    color: inherit;
}

.console-sider .arco-menu-selected a {
    color: rgb(var(--primary-6)) !important;
}

.sider-collapse-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-top: 1px solid #e5e6eb;
    cursor: pointer;
    color: #4e5969;
    transition: all 0.2s;
}

.sider-collapse-btn:hover {
    background: #f2f3f5;
    color: #165dff;
}

/* ===== console-body 样式 ===== */
body.console-body {
    background: #f2f3f5;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

body.console-body .console-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* ===== Arco 菜单自定义样式 ===== */
.console-sider .arco-menu-light {
    background: #fff;
}

.console-sider .arco-menu-pop {
    background: #fff;
}

/* ===== 图表容器 ===== */
.arco-custom-chart-title {
    font-size: 12px;
    color: #80838a;
    font-weight: 500;
    margin-bottom: 12px;
}

.arco-custom-chart {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    min-height: 200px;
}

/* ===== 用户下拉菜单补充样式 ===== */
.copy-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-left: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.copy-icon-wrapper:hover {
    background: #EAEDF1;
}

.account-info-link {
    margin-left: 4px;
}

.account-info-link a {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #42464E;
    text-decoration: none;
}

.account-info-link a:hover {
    color: #1664FF;
}

.account-info-realname {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    text-decoration: none;
}

.account-info-realname:hover {
    color: #1664FF;
}

.cost-balance {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cost-balance-title {
    font-size: 12px;
    color: #80838a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cost-balance-value {
    font-size: 14px;
    font-weight: 600;
    color: #020814;
}

.cost-balance-link {
    display: flex;
}

.cost-balance-link a {
    font-size: 12px;
    color: #1664FF;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.cost-balance-link a:hover {
    color: #387BFF;
}

.todo {
    border-top: 1px solid #EAEDF1;
    padding-top: 16px;
    margin-top: 16px;
}

.todo-title {
    font-size: 14px;
    font-weight: 500;
    color: #0C0D0E;
    margin-bottom: 12px;
}

.todo-content {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.todo-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #1664FF;
    text-decoration: none;
}

.todo-item:hover {
    color: #387BFF;
}

.todo-item span:last-child {
    font-weight: 600;
}

.finance-dropdown-info {
    display: flex;
    padding: 16px;
    gap: 16px;
    border-bottom: 1px solid #EAEDF1;
}

.finance-info-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    color: inherit;
}

.finance-info-item:hover {
    color: #1664FF;
}

.finance-info-item-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #42464E;
}

.finance-info-tag {
    font-size: 10px;
    background: #E8F3FF;
    color: #1664FF;
    padding: 2px 6px;
    border-radius: 4px;
}

.finance-info-item-title {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #80838a;
}

.finance-info-divider {
    width: 1px;
    background: #EAEDF1;
}

.balance-label img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

/* ===== Arco 表格样式优化 ===== */
.arco-table-th {
    background-color: #f7f8fa !important;
    white-space: nowrap;
}

.arco-table-td {
    white-space: nowrap;
}

.arco-table {
    font-size: 14px;
}

.arco-table-stripe .arco-table-tr:nth-child(even) .arco-table-td {
    background-color: #fafbfc;
}



.arco-card-header {
    border-bottom: 1px solid #e5e6eb;
}

.arco-card-header-title {
    font-size: 16px;
    font-weight: 500;
}

/* ===== 波纹结束符号 ===== */


.console-header .logo img {
    height: 30px;
}