llms.txt Content
<!DOCTYPE html>
<html lang="zh-CN" style="background: #ffffff;">
<head>
<meta charset="UTF-8">
<script>
// 防首屏闪白:React 挂载前落 data-theme。key 与 STORAGE_KEYS.THEME 耦合
// (src/shared/services/constants.ts);无持久值 = 浅色(默认)。
try { document.documentElement.setAttribute('data-theme', localStorage.getItem('theme') === 'dark' ? 'dark' : 'light'); } catch (e) {}
</script>
<style>
html, body, #root { margin: 0; padding: 0; min-height: 100vh; background: #ffffff; }
html[data-theme='dark'], html[data-theme='dark'] body, html[data-theme='dark'] #root { background: #121214; }
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
@keyframes successScaleIn {
0% { opacity: 0; transform: scale(0.8); }
100% { opacity: 1; transform: scale(1); }
}
@keyframes fadeSlideUp {
0% { opacity: 0; transform: translateY(20px); }
100% { opacity: 1; transform: translateY(0); }
}
.account-settings .m3-table-row > td {
background: transparent !important;
color: #dce1fb !important;
border-bottom: 1px solid rgba(69,70,77,0.15) !important;
transition: background 0.15s ease;
}
.account-settings .m3-table-row:hover > td {
background: rgba(35,41,60,0.4) !important;
}
.account-settings .ant-table-thead > tr > th {
background: #151b2d !important;
color: #c6c6cd !important;
border-bottom: 1px solid rgba(69,70,77,0.15) !important;
}
.account-settings .ant-pagination .ant-pagination-item,
.account-settings .ant-pagination .ant-pagination-prev,
.account-settings .ant-pagination .ant-pagination-next {
background: #151b2d !important;
border-color: rgba(69,70,77,0.15) !important;
}
.account-settings .ant-pagination .ant-pagination-item a,
.account-settings .ant-pagination .a