| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973 |
- /* ==================== Tailwind CSS 配置 ==================== */
- @layer tailwind-base, semi, tailwind-components, tailwind-utils;
- @layer tailwind-base {
- @tailwind base;
- }
- @layer tailwind-components {
- @tailwind components;
- }
- @layer tailwind-utils {
- @tailwind utilities;
- }
- /* ==================== 全局基础样式 ==================== */
- :root {
- --sidebar-width: 180px;
- --sidebar-width-collapsed: 60px;
- --sidebar-current-width: var(--sidebar-width);
- }
- body.sidebar-collapsed {
- --sidebar-current-width: var(--sidebar-width-collapsed);
- }
- body {
- font-family: Lato, 'Helvetica Neue', Arial, Helvetica, 'Microsoft YaHei',
- sans-serif;
- color: var(--semi-color-text-0);
- background-color: var(--semi-color-bg-0);
- }
- .app-layout {
- height: 100vh;
- height: 100dvh;
- }
- .app-sider {
- height: calc(100vh - 64px);
- height: calc(100dvh - 64px);
- }
- code {
- font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
- monospace;
- }
- /* ==================== 布局相关样式 ==================== */
- .semi-layout::-webkit-scrollbar,
- .semi-layout-content::-webkit-scrollbar,
- .semi-sider::-webkit-scrollbar {
- display: none;
- width: 0;
- height: 0;
- }
- .semi-layout,
- .semi-layout-content,
- .semi-sider {
- -ms-overflow-style: none;
- scrollbar-width: none;
- }
- /* ==================== 导航和侧边栏样式 ==================== */
- .semi-navigation-item {
- margin-bottom: 4px !important;
- padding: 4px 12px !important;
- }
- .semi-navigation-sub-title {
- padding: 0 !important;
- }
- .semi-navigation-item-icon {
- justify-items: center;
- align-items: center;
- }
- .semi-navigation-item-icon-info {
- margin-right: 0;
- }
- .sidebar-nav .semi-navigation-item-text {
- flex: 1;
- min-width: 0;
- }
- .semi-navigation-item,
- .semi-navigation-sub-title {
- height: 100% !important;
- }
- .semi-navigation-item-collapsed {
- height: 44px !important;
- }
- #root
- > section
- > header
- > section
- > div
- > div
- > div
- > div.semi-navigation-header-list-outer
- > div.semi-navigation-list-wrapper
- > ul
- > div
- > a
- > li
- > span {
- font-weight: 600 !important;
- }
- /* 自定义侧边栏样式 */
- .sidebar-container {
- height: 100%;
- display: flex;
- flex-direction: column;
- min-height: 0;
- transition: width 0.3s ease;
- background: var(--semi-color-bg-0);
- }
- .sidebar-nav {
- flex: 1;
- width: 100%;
- background: var(--semi-color-bg-0);
- height: 100%;
- overflow-x: hidden;
- border-right: none;
- overflow-y: auto;
- min-height: 0;
- -webkit-overflow-scrolling: touch;
- scrollbar-width: none;
- -ms-overflow-style: none;
- }
- .sidebar-nav::-webkit-scrollbar {
- display: none;
- }
- /* 侧边栏导航项样式 */
- .sidebar-nav-item {
- border-radius: 6px;
- margin: 3px 8px;
- transition: all 0.15s ease;
- padding: 8px 12px;
- }
- .sidebar-nav-item:hover {
- background-color: rgba(var(--semi-blue-0), 0.08);
- color: var(--semi-color-primary);
- }
- .sidebar-nav-item-selected {
- background-color: rgba(var(--semi-blue-0), 0.12);
- color: var(--semi-color-primary);
- font-weight: 500;
- }
- /* 图标容器样式 */
- .sidebar-icon-container {
- width: 22px;
- height: 22px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 10px;
- transition: all 0.2s ease;
- }
- .sidebar-sub-icon-container {
- width: 18px;
- height: 18px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 10px;
- margin-left: 1px;
- transition: all 0.2s ease;
- }
- /* 分割线样式 */
- .sidebar-divider {
- margin: 4px 8px;
- opacity: 0.15;
- }
- /* 分组标签样式 */
- .sidebar-group-label {
- padding: 4px 15px 8px;
- color: var(--semi-color-text-2);
- font-size: 12px;
- text-transform: uppercase;
- letter-spacing: 0.5px;
- opacity: 0.8;
- }
- /* 底部折叠按钮 */
- .sidebar-collapse-button {
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 12px;
- margin-top: auto;
- cursor: pointer;
- background-color: var(--semi-color-bg-0);
- position: sticky;
- bottom: 0;
- z-index: 10;
- box-shadow: 0 -10px 10px -5px var(--semi-color-bg-0);
- backdrop-filter: blur(4px);
- border-top: 1px solid rgba(var(--semi-grey-0), 0.08);
- }
- .sidebar-collapse-button-inner {
- width: 28px;
- height: 28px;
- border-radius: 9999px;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: var(--semi-color-fill-0);
- transition: all 0.2s ease;
- }
- .sidebar-collapse-icon-container {
- display: inline-block;
- transition: transform 0.3s ease;
- }
- /* 侧边栏区域容器 */
- .sidebar-section {
- padding-top: 12px;
- }
- @media (max-width: 767px) {
- .sidebar-container {
- background: var(--semi-color-bg-1);
- border-right: 1px solid var(--semi-color-border);
- }
- .sidebar-nav {
- background: var(--semi-color-bg-1);
- }
- .sidebar-collapse-button {
- background-color: var(--semi-color-bg-1);
- box-shadow: 0 -10px 10px -5px var(--semi-color-bg-1);
- }
- }
- /* ==================== 聊天界面样式 ==================== */
- .semi-chat {
- padding-top: 0 !important;
- padding-bottom: 0 !important;
- height: 100%;
- max-width: 100% !important;
- width: 100% !important;
- overflow: hidden !important;
- }
- .semi-chat-chatBox {
- max-width: 100% !important;
- overflow: hidden !important;
- }
- .semi-chat-chatBox-wrap {
- max-width: 100% !important;
- overflow: hidden !important;
- }
- .semi-chat-chatBox-content {
- min-width: auto;
- word-break: break-word;
- max-width: 100% !important;
- overflow-wrap: break-word !important;
- }
- .semi-chat-content {
- max-width: 100% !important;
- overflow: hidden !important;
- }
- .semi-chat-list {
- max-width: 100% !important;
- overflow-x: hidden !important;
- }
- .semi-chat-container {
- overflow-x: hidden !important;
- }
- .semi-chat-chatBox-action {
- column-gap: 0 !important;
- }
- .semi-chat-inputBox-clearButton.semi-button .semi-icon {
- font-size: 20px !important;
- }
- /* 隐藏所有聊天相关区域的滚动条 */
- .semi-chat::-webkit-scrollbar,
- .semi-chat-chatBox::-webkit-scrollbar,
- .semi-chat-chatBox-wrap::-webkit-scrollbar,
- .semi-chat-chatBox-content::-webkit-scrollbar,
- .semi-chat-content::-webkit-scrollbar,
- .semi-chat-list::-webkit-scrollbar,
- .semi-chat-container::-webkit-scrollbar {
- display: none;
- }
- .semi-chat,
- .semi-chat-chatBox,
- .semi-chat-chatBox-wrap,
- .semi-chat-chatBox-content,
- .semi-chat-content,
- .semi-chat-list,
- .semi-chat-container {
- -ms-overflow-style: none;
- scrollbar-width: none;
- }
- /* ==================== 组件特定样式 ==================== */
- /* SelectableButtonGroup */
- .sbg-button .semi-button-content {
- min-width: 0 !important;
- }
- .sbg-content {
- display: flex;
- align-items: center;
- gap: 4px;
- width: 100%;
- min-width: 0;
- }
- .sbg-ellipsis {
- flex: 1;
- min-width: 0;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- /* Badge for count/multiplier in filter buttons */
- .sbg-badge {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- min-width: 18px;
- height: 18px;
- padding: 0 6px;
- border-radius: 9px;
- font-size: 11px;
- font-weight: 600;
- font-variant-numeric: tabular-nums;
- line-height: 1;
- background-color: var(--semi-color-fill-0);
- color: var(--semi-color-text-2);
- transition: background-color 0.15s ease, color 0.15s ease;
- }
- .sbg-badge-active {
- background-color: var(--semi-color-primary-light-active);
- color: var(--semi-color-primary);
- }
- /* ---- SelectableButtonGroup color variants ---- */
- .sbg-variant-violet {
- --semi-color-primary: #6d28d9;
- --semi-color-primary-light-default: rgba(124, 58, 237, 0.08);
- --semi-color-primary-light-hover: rgba(124, 58, 237, 0.15);
- --semi-color-primary-light-active: rgba(124, 58, 237, 0.22);
- }
- .sbg-variant-teal {
- --semi-color-primary: #0f766e;
- --semi-color-primary-light-default: rgba(20, 184, 166, 0.08);
- --semi-color-primary-light-hover: rgba(20, 184, 166, 0.15);
- --semi-color-primary-light-active: rgba(20, 184, 166, 0.22);
- }
- .sbg-variant-amber {
- --semi-color-primary: #b45309;
- --semi-color-primary-light-default: rgba(245, 158, 11, 0.08);
- --semi-color-primary-light-hover: rgba(245, 158, 11, 0.15);
- --semi-color-primary-light-active: rgba(245, 158, 11, 0.22);
- }
- .sbg-variant-rose {
- --semi-color-primary: #be123c;
- --semi-color-primary-light-default: rgba(244, 63, 94, 0.08);
- --semi-color-primary-light-hover: rgba(244, 63, 94, 0.15);
- --semi-color-primary-light-active: rgba(244, 63, 94, 0.22);
- }
- .sbg-variant-green {
- --semi-color-primary: #047857;
- --semi-color-primary-light-default: rgba(16, 185, 129, 0.08);
- --semi-color-primary-light-hover: rgba(16, 185, 129, 0.15);
- --semi-color-primary-light-active: rgba(16, 185, 129, 0.22);
- }
- /* Dark mode: lighter text, slightly stronger backgrounds */
- html.dark .sbg-variant-violet {
- --semi-color-primary: #a78bfa;
- --semi-color-primary-light-default: rgba(139, 92, 246, 0.14);
- --semi-color-primary-light-hover: rgba(139, 92, 246, 0.22);
- --semi-color-primary-light-active: rgba(139, 92, 246, 0.3);
- }
- html.dark .sbg-variant-teal {
- --semi-color-primary: #2dd4bf;
- --semi-color-primary-light-default: rgba(45, 212, 191, 0.14);
- --semi-color-primary-light-hover: rgba(45, 212, 191, 0.22);
- --semi-color-primary-light-active: rgba(45, 212, 191, 0.3);
- }
- html.dark .sbg-variant-amber {
- --semi-color-primary: #fbbf24;
- --semi-color-primary-light-default: rgba(251, 191, 36, 0.14);
- --semi-color-primary-light-hover: rgba(251, 191, 36, 0.22);
- --semi-color-primary-light-active: rgba(251, 191, 36, 0.3);
- }
- html.dark .sbg-variant-rose {
- --semi-color-primary: #fb7185;
- --semi-color-primary-light-default: rgba(251, 113, 133, 0.14);
- --semi-color-primary-light-hover: rgba(251, 113, 133, 0.22);
- --semi-color-primary-light-active: rgba(251, 113, 133, 0.3);
- }
- html.dark .sbg-variant-green {
- --semi-color-primary: #34d399;
- --semi-color-primary-light-default: rgba(52, 211, 153, 0.14);
- --semi-color-primary-light-hover: rgba(52, 211, 153, 0.22);
- --semi-color-primary-light-active: rgba(52, 211, 153, 0.3);
- }
- /* Tabs组件样式 */
- .semi-tabs-content {
- padding: 0 !important;
- height: calc(100% - 40px) !important;
- flex: 1 !important;
- }
- .semi-tabs-content .semi-tabs-pane {
- height: 100% !important;
- overflow: hidden !important;
- }
- .semi-tabs-content .semi-tabs-pane > div {
- height: 100% !important;
- }
- /* 表格样式 */
- .tableShow {
- display: revert;
- }
- .tableHiddle {
- display: none !important;
- }
- /* 页脚样式 */
- .custom-footer {
- font-size: 1.1em;
- }
- /* 卡片内容容器通用样式 */
- .card-content-container {
- position: relative;
- }
- .card-content-fade-indicator {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- height: 30px;
- background: linear-gradient(transparent, var(--semi-color-bg-1));
- pointer-events: none;
- z-index: 1;
- opacity: 0;
- transition: opacity 0.3s ease;
- }
- /* ==================== 调试面板特定样式 ==================== */
- .debug-panel .semi-tabs {
- height: 100% !important;
- display: flex !important;
- flex-direction: column !important;
- }
- .debug-panel .semi-tabs-bar {
- flex-shrink: 0 !important;
- }
- .debug-panel .semi-tabs-content {
- flex: 1 !important;
- overflow: hidden !important;
- }
- /* ==================== 滚动条样式统一管理 ==================== */
- /* 通用隐藏滚动条工具类 */
- .scrollbar-hide {
- -ms-overflow-style: none;
- /* IE and Edge */
- scrollbar-width: none;
- /* Firefox */
- }
- .scrollbar-hide::-webkit-scrollbar {
- width: 0 !important;
- height: 0 !important;
- display: none !important;
- /* Chrome, Safari, Opera */
- }
- /* 表格滚动条样式 */
- .semi-table-body::-webkit-scrollbar {
- width: 6px;
- height: 6px;
- }
- .semi-table-body::-webkit-scrollbar-thumb {
- background: rgba(var(--semi-grey-2), 0.3);
- border-radius: 2px;
- }
- .semi-table-body::-webkit-scrollbar-thumb:hover {
- background: rgba(var(--semi-grey-2), 0.5);
- }
- .semi-table-body::-webkit-scrollbar-track {
- background: transparent;
- }
- /* 侧边抽屉滚动条样式 */
- .semi-sidesheet-body::-webkit-scrollbar {
- width: 6px;
- height: 6px;
- }
- .semi-sidesheet-body::-webkit-scrollbar-thumb {
- background: rgba(var(--semi-grey-2), 0.3);
- border-radius: 2px;
- }
- .semi-sidesheet-body::-webkit-scrollbar-thumb:hover {
- background: rgba(var(--semi-grey-2), 0.5);
- }
- .semi-sidesheet-body::-webkit-scrollbar-track {
- background: transparent;
- }
- /* 隐藏内容区域滚动条 */
- .pricing-scroll-hide,
- .model-test-scroll,
- .card-content-scroll,
- .model-settings-scroll,
- .thinking-content-scroll,
- .custom-request-textarea .semi-input,
- .custom-request-textarea textarea,
- .notice-content-scroll {
- -ms-overflow-style: none;
- scrollbar-width: none;
- }
- .pricing-scroll-hide::-webkit-scrollbar,
- .model-test-scroll::-webkit-scrollbar,
- .card-content-scroll::-webkit-scrollbar,
- .model-settings-scroll::-webkit-scrollbar,
- .thinking-content-scroll::-webkit-scrollbar,
- .custom-request-textarea .semi-input::-webkit-scrollbar,
- .custom-request-textarea textarea::-webkit-scrollbar,
- .notice-content-scroll::-webkit-scrollbar {
- display: none;
- }
- /* 图片列表滚动条样式 */
- .image-list-scroll::-webkit-scrollbar {
- width: 6px;
- height: 6px;
- }
- .image-list-scroll::-webkit-scrollbar-thumb {
- background: var(--semi-color-tertiary-light-default);
- border-radius: 3px;
- }
- .image-list-scroll::-webkit-scrollbar-thumb:hover {
- background: var(--semi-color-tertiary);
- }
- .image-list-scroll::-webkit-scrollbar-track {
- background: transparent;
- }
- /* ==================== 同步倍率 - 渠道选择器 ==================== */
- .components-transfer-source-item,
- .components-transfer-selected-item {
- display: flex;
- align-items: center;
- padding: 8px;
- }
- .semi-transfer-left-list,
- .semi-transfer-right-list {
- -ms-overflow-style: none;
- scrollbar-width: none;
- }
- .semi-transfer-left-list::-webkit-scrollbar,
- .semi-transfer-right-list::-webkit-scrollbar {
- display: none;
- }
- .components-transfer-source-item .semi-checkbox,
- .components-transfer-selected-item .semi-checkbox {
- display: flex;
- align-items: center;
- width: 100%;
- }
- .components-transfer-source-item .semi-avatar,
- .components-transfer-selected-item .semi-avatar {
- margin-right: 12px;
- flex-shrink: 0;
- }
- .components-transfer-source-item .info,
- .components-transfer-selected-item .info {
- flex: 1;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .components-transfer-source-item .name,
- .components-transfer-selected-item .name {
- font-weight: 500;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .components-transfer-source-item .email,
- .components-transfer-selected-item .email {
- font-size: 12px;
- color: var(--semi-color-text-2);
- display: flex;
- align-items: center;
- }
- .components-transfer-selected-item .semi-icon-close {
- margin-left: 8px;
- cursor: pointer;
- color: var(--semi-color-text-2);
- }
- .components-transfer-selected-item .semi-icon-close:hover {
- color: var(--semi-color-text-0);
- }
- /* ==================== 未读通知闪光效果 ==================== */
- @keyframes sweep-shine {
- 0% {
- background-position: 200% 0;
- }
- 100% {
- background-position: -200% 0;
- }
- }
- .shine-text {
- background: linear-gradient(
- 90deg,
- currentColor 0%,
- currentColor 40%,
- rgba(255, 255, 255, 0.9) 50%,
- currentColor 60%,
- currentColor 100%
- );
- background-size: 200% 100%;
- -webkit-background-clip: text;
- background-clip: text;
- -webkit-text-fill-color: transparent;
- animation: sweep-shine 4s linear infinite;
- }
- .dark .shine-text {
- background: linear-gradient(
- 90deg,
- currentColor 0%,
- currentColor 40%,
- #facc15 50%,
- currentColor 60%,
- currentColor 100%
- );
- background-size: 200% 100%;
- -webkit-background-clip: text;
- background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- /* ==================== ScrollList 定制样式 ==================== */
- .semi-scrolllist,
- .semi-scrolllist * {
- -ms-overflow-style: none;
- /* IE, Edge */
- scrollbar-width: none;
- /* Firefox */
- background: transparent !important;
- }
- .semi-scrolllist::-webkit-scrollbar,
- .semi-scrolllist *::-webkit-scrollbar {
- width: 0 !important;
- height: 0 !important;
- display: none !important;
- }
- .semi-scrolllist-body {
- padding: 1px !important;
- }
- .semi-scrolllist-list-outer {
- padding-right: 0 !important;
- }
- /* ==================== Banner 背景模糊球 ==================== */
- .blur-ball {
- position: absolute;
- width: 360px;
- height: 360px;
- border-radius: 50%;
- filter: blur(120px);
- pointer-events: none;
- z-index: -1;
- }
- .blur-ball-indigo {
- background: #6366f1;
- /* indigo-500 */
- top: 40px;
- left: 50%;
- transform: translateX(-50%);
- opacity: 0.5;
- }
- .blur-ball-teal {
- background: #14b8a6;
- /* teal-400 */
- top: 200px;
- left: 30%;
- opacity: 0.4;
- }
- /* 浅色主题下让模糊球更柔和 */
- html:not(.dark) .blur-ball-indigo {
- opacity: 0.25;
- }
- html:not(.dark) .blur-ball-teal {
- opacity: 0.2;
- }
- /* ==================== 卡片马卡龙模糊球(类封装) ==================== */
- /* 使用方式:给容器加上 with-pastel-balls 类即可,无需在 JSX 中插入额外节点 */
- .with-pastel-balls {
- position: relative;
- overflow: hidden;
- /* 默认变量(明亮模式) */
- --pb1: #ffd1dc;
- /* 粉 */
- --pb2: #e5d4ff;
- /* 薰衣草 */
- --pb3: #d1fff6;
- /* 薄荷 */
- --pb4: #ffe5d9;
- /* 桃 */
- --pb-opacity: 0.55;
- --pb-blur: 60px;
- }
- .with-pastel-balls::before {
- content: '';
- position: absolute;
- inset: 0;
- pointer-events: none;
- z-index: 0;
- background: radial-gradient(
- circle at -5% -10%,
- var(--pb1) 0%,
- transparent 60%
- ),
- radial-gradient(circle at 105% -10%, var(--pb2) 0%, transparent 55%),
- radial-gradient(circle at 5% 110%, var(--pb3) 0%, transparent 55%),
- radial-gradient(circle at 105% 110%, var(--pb4) 0%, transparent 50%);
- filter: blur(var(--pb-blur));
- opacity: var(--pb-opacity);
- transform: translateZ(0);
- }
- /* 暗黑模式下更柔和的色彩和透明度 */
- html.dark .with-pastel-balls {
- /* 使用与明亮模式一致的“刚才那组”马卡龙色,但整体更柔和 */
- --pb1: #ffd1dc;
- /* 粉 */
- --pb2: #e5d4ff;
- /* 薰衣草 */
- --pb3: #d1fff6;
- /* 薄荷 */
- --pb4: #ffe5d9;
- /* 桃 */
- --pb-opacity: 0.36;
- --pb-blur: 65px;
- }
- /* 暗黑模式下用更柔和的混合模式避免突兀的高亮 */
- html.dark .with-pastel-balls::before {
- mix-blend-mode: screen;
- }
- /* ==================== 表格卡片滚动设置 ==================== */
- .table-scroll-card {
- display: flex;
- flex-direction: column;
- height: calc(100vh - 110px);
- max-height: calc(100vh - 110px);
- }
- .table-scroll-card .semi-card-body {
- flex: 1 1 auto;
- overflow-y: auto;
- }
- .table-scroll-card .semi-card-body::-webkit-scrollbar {
- width: 6px;
- }
- .table-scroll-card .semi-card-body::-webkit-scrollbar-thumb {
- background: rgba(var(--semi-grey-2), 0.3);
- border-radius: 2px;
- }
- .table-scroll-card .semi-card-body::-webkit-scrollbar-thumb:hover {
- background: rgba(var(--semi-grey-2), 0.5);
- }
- .table-scroll-card .semi-card-body::-webkit-scrollbar-track {
- background: transparent;
- }
- @media (max-width: 767px) {
- .table-scroll-card {
- height: calc(100vh - 77px);
- max-height: calc(100vh - 77px);
- }
- }
- /* ==================== 模型定价页面布局 ==================== */
- .pricing-layout {
- height: calc(100vh - 60px);
- overflow: hidden;
- margin-top: 60px;
- }
- .pricing-sidebar {
- width: clamp(280px, 24vw, 520px) !important;
- min-width: clamp(280px, 24vw, 520px) !important;
- max-width: clamp(280px, 24vw, 520px) !important;
- height: calc(100vh - 60px);
- background-color: var(--semi-color-bg-0);
- overflow: auto;
- }
- .pricing-content {
- height: calc(100vh - 60px);
- background-color: var(--semi-color-bg-0);
- display: flex;
- flex-direction: column;
- }
- .pricing-pagination-divider {
- border-color: var(--semi-color-border);
- }
- .pricing-content-mobile {
- height: 100%;
- display: flex;
- flex-direction: column;
- overflow: auto;
- }
- .pricing-search-header {
- padding: 0.5rem;
- background-color: var(--semi-color-bg-0);
- flex-shrink: 0;
- position: sticky;
- top: 0;
- z-index: 5;
- }
- .pricing-view-container {
- flex: 1;
- overflow: auto;
- }
- .pricing-view-container-mobile {
- flex: 1;
- overflow: auto;
- min-height: 0;
- }
- /* ==================== semi-ui 组件自定义样式 ==================== */
- .semi-card-header,
- .semi-card-body {
- padding: 10px !important;
- }
- /* ==================== 使用日志: channel affinity tag ==================== */
- .semi-tag.channel-affinity-tag {
- border: 1px solid rgba(var(--semi-cyan-5), 0.35);
- background-color: rgba(var(--semi-cyan-5), 0.15);
- color: rgba(var(--semi-cyan-9), 1);
- cursor: help;
- transition:
- background-color 120ms ease,
- border-color 120ms ease,
- box-shadow 120ms ease;
- }
- .semi-tag.channel-affinity-tag:hover {
- background-color: rgba(var(--semi-cyan-5), 0.22);
- border-color: rgba(var(--semi-cyan-5), 0.6);
- box-shadow: 0 0 0 2px rgba(var(--semi-cyan-5), 0.18);
- }
- .semi-tag.channel-affinity-tag:active {
- background-color: rgba(var(--semi-cyan-5), 0.28);
- }
- .semi-tag.channel-affinity-tag .channel-affinity-tag-content {
- display: inline-flex;
- align-items: center;
- gap: 0.25rem;
- }
- /* ==================== 自定义圆角样式 ==================== */
- .semi-radio,
- .semi-tagInput,
- .semi-input-textarea-wrapper,
- .semi-navigation-sub-title,
- .semi-chat-inputBox-sendButton,
- .semi-page-item,
- .semi-navigation-item,
- .semi-tag-closable,
- .semi-input-wrapper,
- .semi-tabs-tab-button,
- .semi-select,
- .semi-button,
- .semi-datepicker-range-input {
- border-radius: 10px !important;
- }
|