@charset "utf-8";
/* CSS Document */
html,body,a,address,b,big,blockquote,center,cite,code,dd,del,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,i,iframe,img,ins,label,legend,li,ol,p,pre,small,span,strong,u,ul,input,var {margin:0;padding:0;}
html,body{width: 100%;min-width: 1440px;min-height: 100%;font-family: Inter, "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: 0;}
article,aside,details,figcaption,figure,footer,header,main,nav,section,summary {display: block;}
hr{box-sizing: content-box;height: 0;}
ol,ul,li {list-style: none;}
img{border:0;vertical-align: middle;}
i,u,address {font-style: normal;}
html,body{margin: 0;padding: 0;height: auto;font-family: Inter, "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color:#333;font-size: 14px;background: #fff; letter-spacing: 0;}
a:link,a:visited{color:#333333; text-decoration:none;}

/*  form  CSS standard  */
input, textarea{outline: none;border: 1px solid #d9d9d9;box-sizing: border-box;color: #333;font-size: 14px;font-family: Inter, "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: 0;}
input::-webkit-input-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder{color: #666;font-size: 12px;}
input:focus, textarea:focus{border-color: var(--brand, #1f5f99);color: #333;font-size: 14px;}

/*  button  CSS standard  */
button{padding:8px 15px;font-size:14px;background: #fff;outline:none;border: none;cursor: pointer;}

/*  table  CSS standard  */
table{width:100%;border-collapse: collapse;font-size:14px;border-spacing: 0;}
table, td, th{border-bottom:1px solid #e8e8e8; }

h1, h2, h3 {
	line-height: 1.15;
	font-weight: normal;
}







/**
 * 万象云系列 Web 产品设计 Token
 * 基于 DESIGN.md v0.1.1-internal
 * 适用于所有万象云系列产品的前端样式变量
 */

:root {
  color-scheme: light;
  font-family:
    Inter, "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC",
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

.wanxiangyun-theme {
  /* 基础色彩 */
  --page-bg: #f7fafc;
  --page-bg-soft: #f7fafc;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --text: #16201f;
  --muted: color-mix(in srgb, var(--text) 68%, transparent);
  --muted-strong: color-mix(in srgb, var(--text) 70%, transparent);
  --border: #d9e3ec;
  --shadow: rgba(23, 47, 83, 0.12);

  /* 品牌色 - 能力工具基准 */
  --brand: #1f5f99;
  --brand-dark: #17456f;
  --brand-soft: #e6f0fa;
  --brand-subtle: #f0f6fc;

  /* 布局宽度 */
  --layout-reading: 960px;
  --layout-standard: 1280px;
  --layout-dense: 1540px;
  --layout-wide: 1740px;
  --layout-gutter: 32px;
  --layout-gutter-pair: 64px;

  /* 状态色 */
  --success: #0f766e;
  --success-bg: #ecfdf5;
  --success-border: #a7f3d0;
  --info: #1d4ed8;
  --info-bg: #eff6ff;
  --info-border: #bfdbfe;
  --warning: #b7791f;
  --warning-bg: #fffbeb;
  --warning-border: #fde68a;
  --danger: #b42318;
  --danger-bg: #fef2f2;
  --danger-border: #fecaca;

  /* 圆角 */
  --radius-control: 6px;
  --radius-panel: 8px;
  --radius-pill: 999px;

  /* 按钮高度分档（DESIGN.md §9.1，按用途/位置取档） */
  --btn-h-cta: 40px; /* 页面级主动作：登录/注册、生成报告、搜索、提交 */
  --btn-h-md: 36px;  /* 顶栏操作、弹窗确认/取消、工具栏常规按钮 */
  --btn-h-sm: 28px;  /* 筛选区/表单内紧凑工具按钮（§8.4 允许更紧凑） */
  --btn-radius: 6px; /* 按钮统一圆角 */

  /* 阴影 */
  --shadow-soft: 0 16px 40px rgba(22, 32, 31, 0.08);
  --shadow-panel: 0 18px 50px rgba(23, 32, 29, 0.08);
  --shadow-blue: 0 16px 40px rgba(23, 47, 83, 0.12);

  min-height: 100vh;
  background: var(--page-bg);
  color: var(--text);
}

/* 响应式安全边距 */
@media (max-width: 1399px) {
  .wanxiangyun-theme {
    --layout-gutter: 24px;
    --layout-gutter-pair: 48px;
  }
}

@media (max-width: 767px) {
  .wanxiangyun-theme {
    --layout-gutter: 20px;
    --layout-gutter-pair: 40px;
  }
}

/* 容器组件 */
.wy-container {
  width: min(calc(100% - var(--layout-gutter-pair)), var(--layout-width, var(--layout-standard)));
  margin-inline: auto;
}

.wy-container[data-width="reading"] {
  --layout-width: var(--layout-reading);
}

.wy-container[data-width="standard"] {
  --layout-width: var(--layout-standard);
}

.wy-container[data-width="dense"] {
  --layout-width: var(--layout-dense);
}

.wy-container[data-width="wide"] {
  --layout-width: var(--layout-wide);
}

/* 按钮基础样式 */
.wy-button {
  display: inline-flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-control);
  padding: 0 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.wy-button[data-variant="primary"] {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

.wy-button[data-variant="primary"]:hover {
  background: var(--brand-dark);
}

.wy-button[data-variant="secondary"]:hover {
  background: var(--surface-soft);
}

/* 输入框基础样式 */
.wy-field {
  height: 40px;
  width: 100%;
  border-radius: var(--radius-control);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0 12px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
}

.wy-field:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 14%, transparent);
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}
.clearfix {*zoom: 1;}


.body-bg{padding-bottom:80px;background:#f7fafc;}
.common-w{width:80%;margin:0 auto;}
.common-list{width:90%;min-width:1440px;margin:0 auto;}
/*小图标  悬停显示提示内容*/
/* .det-hint{position:relative;display:inline-block;width:14px;height:14px;background:url(../imgs/icons-list.png) no-repeat -38px 0;}
.det-hint-text{display:none;position:absolute;top:20px;left:-90px;width:180px;line-height:20px;padding:5px 10px;background:rgba(0, 0, 0, 0.8);border-radius:5px;color:#fff;font-size:12px;white-space:normal;}
.det-hint:hover .det-hint-text{display:block;} */

.w{width: 1200px;margin: 0 auto;}









@font-face {
  font-family: "iconfont"; /* Project id 4236012 */
  src: url(/wxy/assets/fonts/iconfont.57aed580.woff2) format('woff2'),
       url(/wxy/assets/fonts/iconfont.4813040e.woff) format('woff'),
       url(/wxy/assets/fonts/iconfont.61f60a60.ttf) format('truetype');
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-shujudaping:before {
  content: "\e67e";
}

.icon-shujudaping1:before {
  content: "\e629";
}

.icon-denglurizhi:before {
  content: "\e679";
}

.icon-wodedingdan:before {
  content: "\e628";
}

.icon-fenleixuanzhong:before {
  content: "\e6c9";
}

.icon-duibi:before {
  content: "\e7fb";
}

.icon-xiugaimima:before {
  content: "\e626";
}

.icon-xiangzuoxuanzhuan-xiangzuoxuanzhuan:before {
  content: "\e665";
}

.icon-xiangzuozhankai:before {
  content: "\e67a";
}

.icon-xiangyoudanchu-xiangyoudanchu:before {
  content: "\e65b";
}

.icon-xiangyouxuanzhuan-xiangyouxuanzhuan:before {
  content: "\e66f";
}

.icon-shouqi:before {
  content: "\e7f4";
}

.icon-shouqi1:before {
  content: "\eadb";
}

.icon-a-sunny:before {
  content: "\e632";
}

.icon-shuanglan:before {
  content: "\e7f3";
}

.icon-zhankailiebiao:before {
  content: "\e7ef";
}

.icon-shouqiliebiao:before {
  content: "\e7f1";
}

.icon-guding-xian:before {
  content: "\e684";
}

.icon-zhankai1:before {
  content: "\e786";
}

.icon-zhankai2:before {
  content: "\e624";
}

.icon-gerenzhongxin-changjianwenti-:before {
  content: "\e631";
}

.icon-zhuzhuangtu1:before {
  content: "\e8ea";
}

.icon-tubiaoshuju_bingtu:before {
  content: "\e617";
}

.icon-shishiqushi:before {
  content: "\e61d";
}

.icon-database:before {
  content: "\e940";
}

.icon-shouye1:before {
  content: "\e61c";
}

.icon-tongzhi:before {
  content: "\e62d";
}

.icon-gongju:before {
  content: "\e695";
}

.icon-taiyang:before {
  content: "\e613";
}

.icon-yueliang:before {
  content: "\e6cc";
}

.icon-fangxiang-copy:before {
  content: "\e614";
}

.icon-fangxiang-copy1:before {
  content: "\e616";
}

.icon-xiaoxi1:before {
  content: "\e6a4";
}

.icon-weixin:before {
  content: "\e698";
}

.icon-dianhua1:before {
  content: "\e694";
}

.icon-youxiang2:before {
  content: "\e69a";
}

.icon-weixinzhifu1:before {
  content: "\e63a";
}

.icon-zhifubaozhifux:before {
  content: "\e6ae";
}

.icon-wancheng5:before {
  content: "\e683";
}

.icon-kefu:before {
  content: "\ec2e";
}

.icon-fankuijilu:before {
  content: "\e677";
}

.icon-mulu2:before {
  content: "\e67b";
}

.icon-liebiao1:before {
  content: "\e67c";
}

.icon-suosou:before {
  content: "\e668";
}

.icon-yanzhengfanghu:before {
  content: "\e66a";
}

.icon-fuhao_yuyin_wenti:before {
  content: "\e96b";
}

.icon-wenjianbangong_shuji_dushubiji:before {
  content: "\e9f1";
}

.icon-biaoqianA01_shouye-16:before {
  content: "\ea9a";
}

.icon-wangluo:before {
  content: "\e6e7";
}

.icon-shejiao_tuan_xingxing_1:before {
  content: "\e661";
}

.icon-dakaitupianwenjian:before {
  content: "\e650";
}

.icon-file_pdf:before {
  content: "\e65a";
}

.icon-zhuzhuangtu:before {
  content: "\e690";
}

.icon-xinxi:before {
  content: "\e64a";
}

.icon-fenxiang1:before {
  content: "\e623";
}

.icon-wenjianbangong_tiaowen:before {
  content: "\e654";
}

.icon-shangbiao:before {
  content: "\e6c8";
}

.icon-renwu-chenggong:before {
  content: "\e657";
}

.icon-shuyi_ppt:before {
  content: "\e658";
}

.icon-yishoukuan:before {
  content: "\e659";
}

.icon-ditu:before {
  content: "\e6fd";
}

.icon-ditu3-xianxing:before {
  content: "\e697";
}

.icon-shanchu1:before {
  content: "\e611";
}

.icon-shanchu3:before {
  content: "\e612";
}

.icon-shanchu:before {
  content: "\e644";
}

.icon-ditu01:before {
  content: "\e61b";
}

.icon-03:before {
  content: "\e610";
}

.icon-24gf-star:before {
  content: "\e8c6";
}

.icon-xingxing-kong:before {
  content: "\e649";
}

.icon-star1:before {
  content: "\e9a1";
}

.icon-star:before {
  content: "\e63f";
}

.icon-xingxing2:before {
  content: "\e622";
}

.icon-xingxing3:before {
  content: "\e646";
}

.icon-xingxing4:before {
  content: "\e627";
}

.icon-zhankai:before {
  content: "\e60d";
}

.icon-shenpigaizhang:before {
  content: "\e756";
}

.icon-gaizhang-xian:before {
  content: "\e7b7";
}

.icon-qiye3:before {
  content: "\e68b";
}

.icon-qiye4:before {
  content: "\e6f7";
}

.icon-qiyegaikuang:before {
  content: "\e60b";
}

.icon-qiye5:before {
  content: "\e6b8";
}

.icon-qiye6:before {
  content: "\e8db";
}

.icon-shoucang:before {
  content: "\e602";
}

.icon-geren:before {
  content: "\e607";
}

.icon-biaoxingfill:before {
  content: "\e732";
}

.icon-fenxiang:before {
  content: "\e739";
}

.icon-geren1:before {
  content: "\e653";
}

.icon-xingxing:before {
  content: "\e642";
}

.icon-zoushi:before {
  content: "\e620";
}

.icon-lianjie:before {
  content: "\e605";
}

.icon-zaixianzixun:before {
  content: "\e62f";
}

.icon-jiaoyi:before {
  content: "\e60e";
}

.icon-tijianxinxi:before {
  content: "\e638";
}

.icon-geren2:before {
  content: "\e608";
}

.icon-jiaoyi1:before {
  content: "\e60a";
}

.icon-medals:before {
  content: "\e655";
}

.icon-qiye:before {
  content: "\e71c";
}

.icon-shebei_diqiuyi:before {
  content: "\e705";
}

.icon-App_shuji_shoucang:before {
  content: "\e773";
}

.icon-qiye1:before {
  content: "\e60f";
}

.icon-shebei_diqiuyi1:before {
  content: "\e9b8";
}

.icon-shuzihuobi:before {
  content: "\e6b1";
}

.icon-airplane:before {
  content: "\e9d5";
}

.icon-weizhi:before {
  content: "\e71d";
}

.icon-zaixianzixun1:before {
  content: "\e6cb";
}

.icon-qiye2:before {
  content: "\e60c";
}

.icon-a-fenxiang2:before {
  content: "\e621";
}

.icon-fuzhi:before {
  content: "\e61a";
}

.icon-fuzhi1:before {
  content: "\e8b0";
}

.icon-shuaxin2:before {
  content: "\e625";
}

.icon-bianji:before {
  content: "\e609";
}

.icon-x-octagon:before {
  content: "\e779";
}

.icon-wenjianjia:before {
  content: "\e662";
}

.icon-benyuanbaogaochaxun:before {
  content: "\e619";
}

.icon-chartpie:before {
  content: "\e606";
}

.icon-wenjian1:before {
  content: "\e69f";
}

.icon-baocun1:before {
  content: "\e936";
}

.icon-shanchu2:before {
  content: "\e6ba";
}

.icon-shrink-s:before {
  content: "\e603";
}

.icon-unfolded-s:before {
  content: "\e604";
}

.icon-sanjiao:before {
  content: "\e61e";
}

.icon-jjiao:before {
  content: "\e600";
}

.icon-shangsanjiao:before {
  content: "\e61f";
}

.icon-up-copy-copy:before {
  content: "\e693";
}

.icon-sanjiao1:before {
  content: "\e601";
}

.icon-xiajiantou:before {
  content: "\e615";
}

.icon-guanbi:before {
  content: "\e639";
}

.icon-qiyerenzheng:before {
  content: "\e6a1";
}

.icon-xiangshangjiantou:before {
  content: "\e65d";
}

.icon-xiangxiajiantou:before {
  content: "\e65e";
}

.icon-jiantou_liebiaoshouqi:before {
  content: "\eb03";
}

.icon-jiantou_liebiaozhankai:before {
  content: "\eb04";
}

.icon-jiantou_liebiaoshouqi_o:before {
  content: "\eb8a";
}

.icon-jiantou_liebiaozhankai_o:before {
  content: "\eb8b";
}

.icon-jianhao1:before {
  content: "\e656";
}

.icon-jiahao:before {
  content: "\e666";
}

.icon-jianhao:before {
  content: "\e84f";
}

.icon-xianxingtubiaozhizuomoban-01:before {
  content: "\e618";
}


.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=SimSun]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=SimSun]::before {
  content: "宋体";
  font-family: "SimSun";
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=SimHei]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=SimHei]::before {
  content: "黑体";
  font-family: "SimHei";
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Microsoft-YaHei]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Microsoft-YaHei]::before {
  content: "微软雅黑";
  font-family: "Microsoft YaHei";
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=KaiTi]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=KaiTi]::before {
  content: "楷体";
  font-family: "KaiTi";
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=FangSong]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=FangSong]::before {
  content: "仿宋";
  font-family: "FangSong";
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Arial]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Arial]::before {
  content: "Arial";
  font-family: "Arial";
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Times-New-Roman]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Times-New-Roman]::before {
  content: "Times New Roman";
  font-family: "Times New Roman";
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=sans-serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=sans-serif]::before {
  content: "sans-serif";
  font-family: "sans-serif";
}

.ql-font-SimSun {
  font-family: "SimSun";
}

.ql-font-SimHei {
  font-family: "SimHei";
}

.ql-font-Microsoft-YaHei {
  font-family: "Microsoft YaHei";
}

.ql-font-KaiTi {
  font-family: "KaiTi";
}

.ql-font-FangSong {
  font-family: "FangSong";
}

.ql-font-Arial {
  font-family: "Arial";
}

.ql-font-Times-New-Roman {
  font-family: "Times New Roman";
}

.ql-font-sans-serif {
  font-family: "sans-serif";
}


/**
 * 个人中心公共样式 — DESIGN.md v0.1.1 合规
 * 方案五：品牌浅底头部式
 * 主色 --brand: #1f5f99，浅底 --brand-soft: #e6f0fa
 */

/* ===== Design Tokens（来自 DESIGN.md §14.1） ===== */
:root {
  --uc-page-bg: #f7fafc;
  --uc-surface: #ffffff;
  --uc-surface-soft: #f4f7fb;
  --uc-text: #16201f;
  --uc-muted: #5d6964;
  --uc-border: #d9e3ec;
  --uc-brand: #1f5f99;
  --uc-brand-dark: #17456f;
  --uc-brand-soft: #e6f0fa;
  --uc-brand-subtle: #f0f6fc;
  --uc-shadow: 0 2px 8px rgba(23, 47, 83, 0.08);
  --uc-radius-control: 6px;
  --uc-radius-panel: 8px;
}

/* ===== 页面外壳 ===== */
.uc-page.pagebox {
  margin: 0 auto;
  min-width: 1440px;
  min-height: 100vh;
  background: var(--uc-page-bg);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.uc-page .profile-page {
  width: 100%;
  min-width: 1440px;
  max-width: 1920px;
  margin: 0 auto;
  text-align: left;
  font-size: 14px;
  color: var(--uc-text);
  padding: 20px 30px;
  box-sizing: border-box;
  flex: 1;
}

.uc-page .profile-container {
  display: flex;
  gap: 20px;
  flex: 1;
}

/* ===== 右侧内容区 ===== */
.uc-page .profile-content {
  flex: 1;
  min-width: 0;
  background: var(--uc-page-bg);
  border-radius: var(--uc-radius-panel);
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== 左侧导航 ===== */
.uc-page .profile-sidebar {
  align-self: stretch;
  min-height: calc(100vh - 120px);
}

/* ===== 品牌浅底头部（Hero） ===== */
.uc-hero {
  background: var(--uc-brand-soft);
  border: 1px solid var(--uc-border);
  border-radius: var(--uc-radius-panel);
  padding: 20px 24px;
}

.uc-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.uc-hero-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.uc-hero-icon {
  width: 36px;
  height: 36px;
  background: var(--uc-brand);
  border-radius: var(--uc-radius-control);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.uc-hero-icon i {
  font-size: 18px;
  color: #fff;
}

.uc-hero-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--uc-text);
  line-height: 1.5;
}

.uc-hero-sub {
  font-size: 13px;
  color: var(--uc-muted);
  margin-top: 2px;
}

.uc-hero-stats {
  display: flex;
  gap: 32px;
}

.uc-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.uc-hero-stat-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--uc-brand);
  line-height: 1.4;
}

.uc-hero-stat-lbl {
  font-size: 12px;
  color: var(--uc-muted);
}

/* ===== 内容卡片 ===== */
.uc-card {
  background: var(--uc-surface);
  border: 1px solid var(--uc-border);
  border-radius: var(--uc-radius-panel);
  padding: 20px 24px;
}

.uc-card-header {
  font-size: 16px;
  font-weight: 600;
  color: var(--uc-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.uc-card-header i {
  font-size: 18px;
  color: var(--uc-brand);
}

.uc-card-header .uc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--uc-brand);
  flex-shrink: 0;
}

/* ===== Section 样式（兼容现有 .profile-section） ===== */
.uc-page .profile-section {
  background: var(--uc-surface);
  border: 1px solid var(--uc-border);
  border-radius: var(--uc-radius-panel);
  padding: 20px 24px;
  margin-bottom: 0;
}

.uc-page .section-header {
  font-size: 16px;
  font-weight: 600;
  color: var(--uc-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.uc-page .section-header i {
  font-size: 18px;
  color: var(--uc-brand);
}

.uc-page .section-header span {
  color: var(--uc-text);
}

/* ===== Element UI 表格覆盖 ===== */
.uc-page .el-table {
  border-radius: var(--uc-radius-control);
  overflow: hidden;
}

.uc-page .el-table th {
  background: var(--uc-surface-soft) !important;
  color: var(--uc-muted) !important;
  font-weight: 600;
  font-size: 13px;
}

.uc-page .el-table td {
  color: var(--uc-text);
  font-size: 14px;
}

.uc-page .el-table--border {
  border: 1px solid var(--uc-border);
}

.uc-page .el-table--border th,
.uc-page .el-table--border td {
  border-right: 1px solid var(--uc-border);
}

.uc-page .el-table::before,
.uc-page .el-table--border::after {
  background-color: var(--uc-border);
}

/* ===== 可编辑文本 ===== */
.uc-page .editable-text {
  cursor: pointer;
  color: var(--uc-brand);
}

.uc-page .editable-text:hover {
  color: var(--uc-brand-dark);
}

/* ===== 密码修改区域 ===== */
.uc-page .pwditem-label {
  color: var(--uc-text);
  font-weight: 500;
}

.uc-page .pwditem-hint {
  color: var(--uc-muted);
}

.uc-page .pwditem-error {
  color: #b42318;
}

.uc-page .pwdbtn-submitbtn {
  background: var(--uc-brand);
  border-color: var(--uc-brand);
  color: #fff;
  border-radius: var(--uc-radius-control);
}

.uc-page .pwdbtn-submitbtn:hover {
  background: var(--uc-brand-dark);
  border-color: var(--uc-brand-dark);
}

.uc-page .pwdbtn-cancelbtn {
  border-radius: var(--uc-radius-control);
}

/* ===== 折叠面板 ===== */
.uc-page .service-package-collapse {
  border: 1px solid var(--uc-border);
  border-radius: var(--uc-radius-panel);
  overflow: hidden;
}

.uc-page .el-collapse-item__header {
  background: var(--uc-surface);
  color: var(--uc-text);
  font-weight: 500;
  padding: 0 16px;
  border-bottom: 1px solid var(--uc-border);
}

.uc-page .el-collapse-item__content {
  padding: 16px;
  background: var(--uc-surface-soft);
}

.uc-page .service-package-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.uc-page .service-package-name span {
  font-weight: 500;
  color: var(--uc-text);
}

/* ===== 分页 ===== */
.uc-page .conbox-conpaginationbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.uc-page .conbox-paginationbox {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

/* ===== 空态 ===== */
.uc-page .el-empty__description p {
  color: var(--uc-muted);
  font-size: 14px;
}

/* ===== 订单说明 ===== */
.uc-page .ordercon-expcon {
  color: var(--uc-muted);
  font-size: 13px;
  line-height: 1.8;
}

.uc-page .ordercon-expcon p {
  margin-bottom: 6px;
}

.uc-page .cursor-pointer {
  color: var(--uc-brand);
  cursor: pointer;
}

.uc-page .cursor-pointer:hover {
  color: var(--uc-brand-dark);
}

/* ===== 订单单选按钮覆盖 ===== */
.uc-page .oradiobox-radiobtn .el-radio-button__inner {
  border: 1px solid var(--uc-border);
  background: var(--uc-surface);
  color: var(--uc-muted);
  border-radius: var(--uc-radius-control);
  font-weight: 500;
  font-size: 13px;
}

.uc-page .oradiobox-radiobtn .el-radio-button__inner::after {
  display: none;
}

.uc-page .oradiobox-radiobtn .el-radio-button__orig-radio:checked + .el-radio-button__inner {
  background: var(--uc-brand);
  border-color: var(--uc-brand);
  color: #fff;
  border-radius: var(--uc-radius-control);
  box-shadow: none;
}

/**
 * 我的空间公共样式 — DESIGN.md v0.1.1 合规
 * 方案一：品牌浅底头部式
 * 主色 --brand: #1f5f99，浅底 --brand-soft: #e6f0fa
 */

/* ===== Design Tokens（来自 DESIGN.md §14.1） ===== */
:root {
  --sc-page-bg: #f7fafc;
  --sc-surface: #ffffff;
  --sc-surface-soft: #f4f7fb;
  --sc-text: #16201f;
  --sc-muted: #5d6964;
  --sc-border: #d9e3ec;
  --sc-brand: #1f5f99;
  --sc-brand-dark: #17456f;
  --sc-brand-soft: #e6f0fa;
  --sc-brand-subtle: #f0f6fc;
  --sc-shadow: 0 2px 8px rgba(23, 47, 83, 0.08);
  --sc-radius-control: 6px;
  --sc-radius-panel: 8px;
}

/* ===== 页面外壳 ===== */
.sc-page.pagebox {
  margin: 0 auto;
  min-width: 1440px;
  min-height: 100vh;
  background: var(--sc-page-bg);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.sc-page .spacepage-spacemain {
  display: flex;
  padding: 20px 30px;
  box-sizing: border-box;
  flex: 1;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.sc-page .spacemain-spaceleftnav {
  width: 250px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: calc(100vh - 120px);
}

.sc-page .spacemain-spaceleftnav .spacenav-mainlist {
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-panel);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.sc-page .spacemain-historycon {
  flex: 1;
  min-width: 0;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== 品牌浅底头部（Hero） ===== */
.sc-hero {
  background: var(--sc-brand-soft);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-panel);
  padding: 20px 24px;
}

.sc-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sc-hero-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sc-hero-icon {
  width: 36px;
  height: 36px;
  background: var(--sc-brand);
  border-radius: var(--sc-radius-control);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.sc-hero-icon i {
  font-size: 18px;
  color: #fff;
}

.sc-hero-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--sc-text);
  line-height: 1.5;
}

.sc-hero-sub {
  font-size: 13px;
  color: var(--sc-muted);
  margin-top: 2px;
}

.sc-hero-stats {
  display: flex;
  gap: 32px;
}

.sc-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sc-hero-stat-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--sc-brand);
  line-height: 1.4;
}

.sc-hero-stat-lbl {
  font-size: 12px;
  color: var(--sc-muted);
}

/* ===== 内容卡片 ===== */
.sc-card {
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-panel);
  padding: 20px 24px;
}

/* ===== 筛选区 ===== */
.sc-page .historycon-searchinplist {
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-panel);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.sc-page .searchinplist-hisspainps .el-input__inner {
  height: 32px;
  line-height: 32px;
  border-color: var(--sc-border);
  border-radius: var(--sc-radius-control);
  color: var(--sc-text);
  font-size: 13px;
}

.sc-page .searchinplist-hisspainps .el-input__inner::-moz-placeholder {
  color: var(--sc-muted);
}

.sc-page .searchinplist-hisspainps .el-input__inner::placeholder {
  color: var(--sc-muted);
}

.sc-page .searchinplist-hisspainps .el-input__inner:focus {
  border-color: var(--sc-brand);
}

.sc-page .searchinplist-line {
  color: var(--sc-muted);
  font-size: 13px;
}

.sc-page .searchinplist-hisbtm {
  height: 32px;
  line-height: 30px;
  padding: 0 16px;
  border-radius: var(--sc-radius-control);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  box-sizing: border-box;
}

.sc-page .searchinplist-hisbtmreset {
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
  color: var(--sc-muted);
}

.sc-page .searchinplist-hisbtmreset:hover {
  border-color: var(--sc-brand);
  color: var(--sc-brand);
}

.sc-page .searchinplist-hisbtmscreen {
  background: var(--sc-brand);
  border: 1px solid var(--sc-brand);
  color: #fff;
}

.sc-page .searchinplist-hisbtmscreen:hover {
  background: var(--sc-brand-dark);
  border-color: var(--sc-brand-dark);
}

/* ===== 表格区 ===== */
.sc-page .spacemain-historytable {
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-panel);
  overflow: hidden;
  box-shadow: var(--sc-shadow);
}

/* 子组件内筛选区与表格区间距（子组件根 div 非直接 flex 子项） */
.sc-page .spacemain-historycon > div .spacemain-historytable {
  margin-top: 16px;
}

.sc-page .spacemain-historytable .el-table {
  border-radius: var(--sc-radius-panel);
}

/* 表头 */
.sc-page .el-table th.el-table__cell {
  background: var(--sc-surface-soft) !important;
  color: var(--sc-muted) !important;
  font-weight: 600;
  font-size: 13px;
  padding: 14px 0 !important;
}

.sc-page .el-table th.el-table__cell .cell {
  padding: 0 16px;
  line-height: 1.5;
}

/* 单元格 */
.sc-page .el-table td.el-table__cell {
  color: var(--sc-text);
  font-size: 14px;
  padding: 13px 0 !important;
}

.sc-page .el-table td.el-table__cell .cell {
  padding: 0 16px;
  line-height: 1.6;
  min-height: 1.6em;
}

/* 斑马纹（偶数行浅底） */
.sc-page .el-table__body tr:nth-child(even) > td {
  background: var(--sc-brand-subtle) !important;
}

/* 行悬停效果 */
.sc-page .el-table__body tr:hover > td {
  background: var(--sc-brand-soft) !important;
}

.sc-page .el-table--border {
  border: 1px solid var(--sc-border);
}

.sc-page .el-table--border th,
.sc-page .el-table--border td {
  border-right: 1px solid var(--sc-border);
}

.sc-page .el-table::before,
.sc-page .el-table--border::after {
  background-color: var(--sc-border);
}

.sc-page .el-table .el-table__cell {
  border-bottom: 1px solid var(--sc-border);
}

/* 空态最小高度 */
.sc-page .el-table__empty-block {
  min-height: 200px;
}

/* ===== 搜索策略链接色 ===== */
.sc-page .historytable-searchqstyle {
  color: var(--sc-brand);
  cursor: pointer;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
  overflow: hidden;
}

.sc-page .historytable-searchqstyle:hover {
  color: var(--sc-brand-dark);
}

.sc-page .historytable-bluetextbtn {
  color: var(--sc-brand);
  cursor: pointer;
}

.sc-page .historytable-bluetextbtn:hover {
  color: var(--sc-brand-dark);
}

/* ===== 过滤标签 ===== */
.sc-page .pliscreen-limitcolor {
  color: var(--sc-brand);
}

.sc-page .pliscreen-filtrcolor {
  color: #b42318;
}

.sc-page .tickbox-noneUnfold .el-tag {
  background: var(--sc-surface-soft);
  border-color: var(--sc-border);
  border-radius: var(--sc-radius-control);
}

.sc-page .filter-fconbox {
  display: flex;
  align-items: center;
  gap: 2px;
}

.sc-page .fconbox-tagname {
  font-size: 12px;
  font-weight: 600;
}

.sc-page .fconbox-tagtext {
  font-size: 12px;
  color: var(--sc-text);
}

/* ===== Radio 切换组 ===== */
.sc-page .historycon-radiostyle {
  display: flex;
  align-items: center;
}

.sc-page .historycon-radiostyle .el-radio-group {
  display: flex;
  gap: 8px;
}

.sc-page .historycon-radiostyle .el-radio-button {
  margin-left: 0 !important;
}

.sc-page .historycon-radiostyle .el-radio-button__inner {
  border: 1px solid var(--sc-border);
  background: var(--sc-surface);
  color: var(--sc-muted);
  border-radius: var(--sc-radius-control);
  font-weight: 500;
  font-size: 13px;
  padding: 0 16px;
  min-width: 80px;
  height: 32px;
  line-height: 30px;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.2s;
}

.sc-page .historycon-radiostyle .el-radio-button__inner:hover {
  border-color: var(--sc-brand);
  color: var(--sc-brand);
}

.sc-page .historycon-radiostyle .el-radio-button__inner::after {
  display: none;
}

.sc-page .historycon-radiostyle .el-radio-button__orig-radio:checked + .el-radio-button__inner {
  background: var(--sc-brand);
  border-color: var(--sc-brand);
  color: #fff;
  border-radius: var(--sc-radius-control);
  box-shadow: none;
}

.sc-page .historycon-radiostyle .el-radio-button__orig-radio:checked + .el-radio-button__inner:hover {
  background: var(--sc-brand-dark);
  border-color: var(--sc-brand-dark);
  color: #fff;
}

/* ===== 分页 ===== */
.sc-page .content-pagetionbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid var(--sc-border);
  margin-top: 0 !important;
}

.sc-page .content-pagetionbox > span {
  font-size: 13px;
  color: var(--sc-muted);
}

/* ===== 空态 ===== */
.sc-page .el-empty__description p {
  color: var(--sc-muted);
  font-size: 14px;
}

/* ===== Element UI 日期选择器覆盖 ===== */
.sc-page .searchinplist-datestyle .el-input__inner {
  height: 32px;
  line-height: 32px;
  padding-left: 15px;
  padding-right: 30px;
}

.sc-page .searchinplist-datestyle .el-input__prefix {
  left: 8px;
}

.sc-page .searchinplist-daystyle .el-input__inner {
  height: 32px;
  line-height: 32px;
}

/* ===== 下载历史图标 ===== */
.sc-page .dlexcel-historyicon,
.sc-page .batchpdf-historyicon,
.sc-page .dlpdf-historyicon {
  vertical-align: middle;
  margin-right: 4px;
}

/* ===== SpaceNavItems 配色覆盖 ===== */
.sc-page .spacenav-mainlist.el-menu {
  color: var(--sc-text);
}

.sc-page .spacenav-mainlist.el-menu :deep(.el-submenu__title),
.sc-page .spacenav-mainlist.el-menu :deep(.el-submenu__title i) {
  color: var(--sc-text);
}

.sc-page .spacenav-mainlist.el-menu :deep(.el-menu-item.is-active) {
  background: var(--sc-brand-soft);
  color: var(--sc-brand);
}

.sc-page .spacenav-mainlist.el-menu :deep(.el-menu-item:focus),
.sc-page .spacenav-mainlist.el-menu :deep(.el-menu-item:hover) {
  background: var(--sc-brand-subtle);
  color: var(--sc-brand);
}

.sc-page .spacenav-mainlist .navcon-navtle {
  color: var(--sc-text);
}

.sc-page .spacenav-mainlist .iconfont {
  color: var(--sc-text);
}

.sc-page .spacenav-mainlist .icon-file {
  color: var(--sc-text) !important;
}

/* 滚动条 */
.sc-page .spacenav-mainlist.el-menu::-webkit-scrollbar-thumb {
  background: var(--sc-border);
  border-radius: 4px;
}

.sc-page .spacenav-mainlist.el-menu::-webkit-scrollbar-track {
  background: var(--sc-surface-soft);
}


.chat-index[data-v-630680de] {
  text-align: left;
  /* padding: 30px; */
  font-size: 14px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-panel, 0 18px 50px rgba(23, 32, 29, 0.08));
  border: 1px solid var(--border, #d9e3ec);
  background: var(--surface, #ffffff);
}
.custom-name[data-v-630680de] {
  width: 100%;
  height: 60px;
  background: var(--brand, #1f5f99);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  box-sizing: border-box;
}
.flex[data-v-630680de] {
  display: flex;
  align-items: center;
}
.custom-name p[data-v-630680de] {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.custom-img[data-v-630680de] {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}
.custom-img img[data-v-630680de] {
  width: 30px;
}
.right-img[data-v-630680de] {
  margin-left: 10px;
  cursor: pointer;
}

/* 内容区 */
/* 问答列表 */
.content-resultlist[data-v-630680de] {
  margin: 0 auto;
  padding: 10px 15px;
  box-sizing: border-box;
  background: var(--page-bg, #f7fafc);
}

/* 隐藏问答区滚动条 */
.content-resultlist[data-v-630680de]::-webkit-scrollbar {
  display: none;
}
.resultlist-listitem[data-v-630680de] {
  margin-bottom: 10px;
}
.resultlist-listitem[data-v-630680de]:last-child {
  margin-bottom: 0;
}

/* 时间显示 */
.listitem-time[data-v-630680de] {
  height: 20px;
  font-size: 10px;
  color: var(--muted, #5d6964);
  text-align: center;
}

/* 提示信息 */
.problem-tip[data-v-630680de] {
  font-size: 12px;
  text-align: center;
}
.listitem-itembox[data-v-630680de] {
  display: flex;
  /* align-items: center; */
  line-height: 30px;
}

/* 输入的问题 */
.problem-pcon[data-v-630680de] {
  /* font-weight: 700; */
  white-space: pre-line;
  padding: 8px 12px;
  box-sizing: border-box;
  border-radius: 6px;
  color: var(--text, #16201f);
  display: block;
  max-width: 100%;
  word-wrap: break-word;
}
.problem-pcon a[data-v-630680de] {
  cursor: pointer;
}

/* 接收气泡：白底 + line 描边（与卡片语言一致） */
.listitem-result .problem-pcon[data-v-630680de] {
  border: 1px solid var(--border, #d9e3ec);
}

/* 发送气泡：品牌浅底 + 同色系浅描边 */
.listitem-itembox:not(.listitem-result) .problem-pcon[data-v-630680de] {
  border: 1px solid rgba(31, 95, 153, 0.16);
}

/* 文件 */
.problem-file[data-v-630680de] {
  display: flex;
  align-items: center;
}
.problem-file img[data-v-630680de] {
  margin-right: 5px;
}

/* 发送 */
/* 输入问题的部分 */
.content-sendbox[data-v-630680de] {
  position: relative;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  /* width: 100%; */
  height: 150px;
  max-width: 1440px;
  border-top: 1px solid var(--border, #d9e3ec);
}
.dropzone[data-v-630680de] {
  width: 100%;
  height: 100%;
  background: var(--surface, #ffffff);
}
.dropzone textarea[data-v-630680de] {
  width: 100%;
  height: 70%;
  resize: none;
  padding: 15px;
  box-sizing: border-box;
  outline: none;
  border-color: transparent;
  color: var(--text, #16201f);
}

/* 宽度 */
[data-v-630680de] .dropzone textarea::-webkit-scrollbar {
  width: 6px;
}

/* 背景色 */
[data-v-630680de] .dropzone textarea::-webkit-scrollbar-track {
  background: #fff;
}

/* 滑块颜色 */
[data-v-630680de] .dropzone textarea::-webkit-scrollbar-thumb {
  background: #f5f6f7;
}

/* 上传按钮 */
.content-upload[data-v-630680de] {
  width: 50px;
  height: 24px;
  position: absolute;
  left: 15px;
  bottom: 15px;
  display: flex;
  justify-content: space-between;
}

/* 发送按钮 */
.content-sendbtn[data-v-630680de] {
  width: 70px;
  height: 30px;
  position: absolute;
  right: 15px;
  bottom: 15px;
  background: var(--brand, #1f5f99);
  border-color: var(--brand, #1f5f99);
  color: #fff;
  border-radius: 6px;
  line-height: 0;
  font-size: 14px;
}
.content-sendbtn[data-v-630680de]:hover {
  background: var(--brand-dark, #17456f);
  border-color: var(--brand-dark, #17456f);
}


[data-v-c1dd7f2a] .el-dialog__wrapper {
  z-index: 30000 !important;
}
[data-v-c1dd7f2a] .el-dialog {
  border-radius: 8px;
  border: 1px solid var(--border, #d9e3ec);
  box-shadow: 0 16px 40px rgba(22, 32, 31, 0.08);
  text-align: left;
}
[data-v-c1dd7f2a] .el-dialog__header {
  display: none;
}
[data-v-c1dd7f2a] .el-dialog__body {
  padding: 30px 30px 15px 30px;
}
[data-v-c1dd7f2a] .el-dialog__footer {
  padding: 0 30px 30px;
}
.dialog-header[data-v-c1dd7f2a] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-title[data-v-c1dd7f2a] {
  font-size: 16px;
  font-weight: 600;
  color: var(--text, #16201f);
}
.header-close[data-v-c1dd7f2a] {
  cursor: pointer;
}
.dialog-body[data-v-c1dd7f2a] {}
.dialog-body p[data-v-c1dd7f2a] {
  margin-top: 5px;
}
.dialog-body p[data-v-c1dd7f2a]:first-child {
  margin-top: 0;
}
.dialog-body a[data-v-c1dd7f2a] {
  color: var(--brand, #1f5f99);
  cursor: pointer;
}
.dialog-body .el-button[data-v-c1dd7f2a] {
  color: var(--brand, #1f5f99);
  height: 16px;
  line-height: 0;
  margin: 0;
  font-weight: 400;
}
.dialog-body .el-button.openvip-textbtn[data-v-c1dd7f2a] {
  color: var(--warning, #b7791f);
}
.dialog-body .el-button[data-v-c1dd7f2a]:hover {
  text-decoration: underline;
}
.dialog-body .el-button.buyservice-textbtn[data-v-c1dd7f2a] {
  color: var(--brand, #1f5f99);
}
.dialog-footer[data-v-c1dd7f2a] .el-button {
  background: var(--surface, #ffffff);
  color: var(--muted, #5d6964);
  border: 1px solid var(--border, #d9e3ec);
  border-radius: 6px;
  height: 36px;
  line-height: 0;
  padding: 0 16px;
}
.dialog-footer[data-v-c1dd7f2a] .el-button.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.dialog-footer .footer-btnstyle[data-v-c1dd7f2a] {
  padding: 0 16px;
  height: 36px;
  border-radius: 6px;
  box-sizing: border-box;
  color: #fff;
}
.dialog-footer .bg-F08200[data-v-c1dd7f2a] {
  background: var(--warning, #b7791f);
  border: 1px solid var(--warning, #b7791f);
}
.dialog-footer .bg-0070C0[data-v-c1dd7f2a] {
  background: var(--brand, #1f5f99);
  border: 1px solid var(--brand, #1f5f99);
}
.dialog-footer .btn-enter[data-v-c1dd7f2a] {
  background: var(--brand, #1f5f99);
  color: #fff;
  border: 1px solid var(--brand, #1f5f99);
  border-radius: 6px;
}
.dialog-footer .btn-vip[data-v-c1dd7f2a] {
  background: var(--warning, #b7791f);
  color: #fff;
  border: 1px solid var(--warning, #b7791f);
  border-radius: 6px;
}
.mt20[data-v-c1dd7f2a] {
  margin-top: 20px;
}
.mb20[data-v-c1dd7f2a] {
  margin-bottom: 20px;
}
.p-0[data-v-c1dd7f2a] {
  padding: 0;
}
.bold[data-v-c1dd7f2a] {
  font-weight: bold;
}
.color-red[data-v-c1dd7f2a] {
  color: #d8001b;
}
.hover-underlin[data-v-c1dd7f2a]:hover {
  text-decoration: underline;
}
a[data-v-c1dd7f2a]:hover {
  text-decoration: underline;
}

/* a:link{
    text-decoration: underline;
  } */


/* 弹窗遮罩色 - DESIGN.md 9.5: rgba(22,32,31,0.35) */
.v-modal {
  background: rgba(22, 32, 31, 0.35) !important;
}

/* 已发送/已删除-提示 */
.successhint {
  top: 50% !important;
  padding: 15px;
  min-width: 80px !important;
  background: #eeeeee;
  border-color: #eee;
}
.successhint .el-message__icon {
  margin-right: 5px;
}
.successhint .el-icon-success {
  color: #000000 !important;
}
.successhint .el-icon-info {
  color: #000000 !important;
}
.successhint .el-icon-error {
  color: #000000 !important;
}
.successhint .el-message__content {
  color: #000000 !important;
  font-weight: 700;
  font-size: 16px;
}


#app {
  font-family: "微软雅黑", Arial, Helvetica, sans-serif;
  /* font-family: Microsoft YaHei, Microsoft YaHei-Bold; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  /* color: #2c3e50; */
  color: #000000;
}
nav {
  padding: 30px;
}
nav a {
  font-weight: bold;
  color: #2c3e50;
}
nav a.router-link-exact-active {
  color: #42b983;
}
:root {
  --primary-color: #0d3b9b;
}
:root {
  --wxy-color: #009dff;
}

/* 解决浏览器报错：Blocked aria-hidden on an element because its descendant retained focus */
input[aria-hidden="true"] {
  display: none !important;
}
.el-button {
  font-weight: 400;
}

/* ::-webkit-scrollbar {
    display: none;
  } */

/* .el-loading-spinner {
  background-image: url('./assets/images/abc.gif');
  background-repeat: no-repeat;
  background-size: 260px 195px;
  height: 195px;
  width: 100%;
  background-position: center;
  top: 40%;
}

.el-loading-spinner .circular {
  display: none;
} */

/* .el-loading-spinner .el-loading-text {
  display: none !important;
}

.el-loading-spinner .el-icon-loading {
  display: none !important;
} */

/* 客服 */
.custom-service {
  position: fixed;
  right: 0;
  top: 68%;
  z-index: 100;
}

/* 在线客服 */
.series-code-kefu {
  display: none;
  position: absolute;
  right: 36px;
  top: 0;
  width: 210px;
  height: 75px;
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #d9e3ec);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(23, 47, 83, 0.12);
  padding: 15px 15px 5px 15px;
  box-sizing: border-box;
}

/* 二维码 */
.series-code-weixin {
  display: none;
  position: absolute;
  right: 36px;
  top: 0;
  width: 130px;
  height: 140px;
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #d9e3ec);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(23, 47, 83, 0.12);
  padding: 15px 15px 5px 15px;
  box-sizing: border-box;
}

/* 电话 */
.series-code-dianhua {
  display: none;
  position: absolute;
  right: 36px;
  top: 0;
  /* width: 130px; */
  /* height: 120px; */
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #d9e3ec);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(23, 47, 83, 0.12);
  padding: 15px 15px 10px 15px;
  box-sizing: border-box;
}

/* 邮箱 */
.series-code-youxiang {
  display: none;
  position: absolute;
  right: 36px;
  bottom: 0;
  width: 210px;
  height: 75px;
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #d9e3ec);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(23, 47, 83, 0.12);
  padding: 15px 15px 5px 15px;
  box-sizing: border-box;
}
.series-icon {
  width: 40px;
  height: 30px;
  position: relative;
}

/* 未读小红点：--danger 语义色 */
.red-icon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--danger, #b42318);
  position: absolute;
  right: 3px;
  top: 3px;
}
.lastradiu {
  border-radius: 0 0 0 8px;
}
.series-icon:hover {
  color: #fff;
}

/* 图标条：品牌色 + 图标间 1px 半透明分隔线 */
.series-icon>div {
  width: 30px;
  height: 100%;
  background: var(--brand, #1f5f99);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: absolute;
  right: 0;
}

/* 第一个图标：左上角圆角，不带顶部分隔线 */
.series-icon:first-child>div,
.series-icon>div.oneradiu {
  border-radius: 8px 0 0 0;
  border-top: none;
}
.series-code:hover {
  display: block;
}

/* 在线客服悬浮显示 */
.series-kefu:hover+.series-code-kefu {
  display: block;
}

/* 微信悬浮显示二维码 */
.series-weixin:hover+.series-code-weixin {
  display: block;
  /* color: #ccc; */
}

/* 电话悬浮显示 */
.series-dianhua:hover+.series-code-dianhua {
  display: block;
  /* color: #ccc; */
}

/* 邮箱悬浮显示 */
.series-youxiang:hover+.series-code-youxiang {
  display: block;
}
.code-img {
  width: 100px;
  height: 100px;
  background: var(--surface-soft, #f4f7fb);
  border: 1px solid var(--border, #d9e3ec);
  border-radius: 6px;
  margin-bottom: 3px;
}
.code-phone {
  min-width: 100px;
  /* height: 80px; */
  margin-bottom: 10px;
  color: var(--brand-dark, #17456f);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.code-email {
  min-width: 180px;
  /* height: 35px; */
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--brand, #1f5f99);
  cursor: pointer;
}
.code-email a {
  color: var(--brand, #1f5f99);
  text-decoration: underline;
}
.code-tip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted, #5d6964);
}

/* 客服框位置 */
.right-custom {
  width: 500px;
  height: 600px;
  position: fixed;
  right: 35px;
  bottom: 35px;
  /* background: pink; */
  text-align: center;
  z-index: 999;
}

/* 右侧导航悬浮图标 */
.tooltip-tipnavbox {
  position: fixed;
  right: 0;
  top: 40%;
  margin-top: -105px;
  height: 210px;
}
.tipnavbox-tipitem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 30px;
}
.tipitem-tiptagbox {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #333333;
  cursor: pointer;
}

/* 第一个左上角圆角 */
.tipnavbox-tipitem:first-child .tipitem-tiptagbox {
  border-top-left-radius: 10px;
}

/* 第一个左上角圆角 */
.tipnavbox-tipitem:last-child .tipitem-tiptagbox {
  border-bottom-left-radius: 10px;
}

/* 搜索 */
.tipnavbox-tipsearch:hover {}
.tipitem-tiplevelbox {
  display: none;
  position: absolute;
  top: 0;
  right: 35px;
  /* display: flex; */
  flex-direction: column;
  justify-content: flex-end;
  padding: 5px;
  width: 90px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .3);
  text-align: right;
}
.tipnavbox-tipIndex .tipitem-tiplevelbox {
  width: 30px;
}
.tipnavbox-tipsearch .tipitem-tiplevelbox {
  width: 80px;
}
.tipnavbox-tipworkspace .tipitem-tiplevelbox {
  width: 60px;
}
.tipnavbox-tipreport .tipitem-tiplevelbox {
  width: 30px;
}
.tipnavbox-tiptool .tipitem-tiplevelbox {
  width: 160px;
}
.tipnavbox-tiphelp .tipitem-tiplevelbox {
  width: 80px;
}
.tipnavbox-tipdatabase .tipitem-tiplevelbox {
  width: 140px;
  /* display: flex; */
  /* height: 20px; */
}
.tipnavbox-tipdatabase .tipitem-tiplevelbox>span {
  position: relative;
  width: 140px;
  height: 20px;
}
.tipnavbox-tipdatabase .tipitem-tiplevel-box {}
.tipnavbox-tipcontrolpanel .tipitem-tiplevelbox {
  width: 60px;
}
.tipnavbox-tipnotification .tipitem-tiplevelbox {
  width: 30px;
}
.tipnavbox-tipitem:hover .tipitem-tiplevelbox {
  display: flex;
}
.tiplevelbox-activestyle {
  line-height: 24px;
  font-size: 12px;
  cursor: pointer;
}
.tiplevelbox-activestyle:hover {
  /* background: ; */
  color: rgba(0, 153, 255, 1);
}
.icon-database {
  transform: rotate(180deg);
}
.color-fff {
  color: #ffffff;
}
.tipnavbox-tipitem:hover .iconfont {
  color: rgba(0, 153, 255, 1);
}

/* 数据库 */
.mt5 {
  margin-top: 5px;
}
.tiplevelbox-database {
  position: absolute !important;
  top: 10px !important;
  right: 0 !important;
  width: 140px;
  height: 20px;
  background: none !important;
  padding: 6px;
  box-shadow: none;
  box-sizing: border-box;
  border: none;
}
.tiplevelbox-database .popper__arrow {
  background: none !important;
  border-bottom: none !important;
  display: none;
}
.database-dbsearch {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 10px 10px 20px;
  width: 300px;
  max-height: 335px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 3px 6px #999;
}
.database-dbsearch .el-input .el-input__inner {
  padding: 0 20px 0 10px;
  height: 25px;
  line-height: 25px;
  border: 1px solid #e4e2e2 !important;
  font-size: 14px;
  border-radius: 0;
}
.database-dblist {
  width: 100%;
  max-height: 245px;
  overflow-y: scroll;
}
.database-dblist::-webkit-scrollbar {
  width: 4px;
}
.dblist-dbtitle {
  cursor: pointer;
}
.database-dbname {
  width: 100%;
  overflow: hidden;
  /* 隐藏超出部分 */
  white-space: nowrap;
  /* 防止换行 */
  text-overflow: ellipsis;
  /* 显示省略号 */
  cursor: pointer;
}

