/* 宽屏顶栏集中展示当前工作方式与业务入口，把高度留给正文。 */
@media (min-width: 1500px) {
 .employee-workspace:has(.employee-ai-view:not([hidden])) {
  grid-template-columns:auto auto minmax(0,1fr) auto;
  grid-template-rows:40px minmax(0,1fr);
  align-items:center;
  column-gap:20px!important;
  row-gap:12px!important;
 }
 .employee-workspace:has(.employee-ai-view:not([hidden])) > div:first-child {display:contents!important;}
 .employee-workspace:has(.employee-ai-view:not([hidden])) > div:first-child > div:first-child {grid-column:1;grid-row:1;}
 .employee-workspace:has(.employee-ai-view:not([hidden])) > div:first-child > :not(:first-child) {grid-column:4;grid-row:1;gap:8px!important;}
 .employee-workspace:has(.employee-ai-view:not([hidden])) > [aria-label="工作方式"] {grid-column:2;grid-row:1;border-left:1px solid #e5e9ef;padding-left:20px;}
 .employee-workspace > .employee-ai-view:not([hidden]),
 .employee-workspace > .employee-ai-view:not([hidden]) > .integrated-ai-workspace {display:contents;}
 .employee-workspace .employee-ai-view:not([hidden]) .assistant-work-tools:not(:empty) {
  position:static;grid-column:3;grid-row:1;max-width:none;justify-content:flex-start;flex-wrap:nowrap;min-width:0;
 }
 .employee-workspace .employee-ai-view:not([hidden]) .assistant-work-tools .ant-btn {padding-inline:12px;}
 .employee-workspace .employee-ai-view:not([hidden]) .assistant-page {grid-column:1/-1;grid-row:2;height:100%!important;min-height:0!important;align-self:stretch;}
}
