:root {
  --navy: #173d6b;
  --navy-dark: #102d50;
  --navy-soft: #eaf0f7;
  --red: #b8322b;
  --ink: #252a30;
  --muted: #6d737b;
  --line: #d8dce1;
  --line-light: #e8eaed;
  --surface: #ffffff;
  --page: #f2f3f5;
  --success: #2f7b50;
  --warning: #ad6b12;
  --campus-rainy: url("assets/campus-rainy.png");
  --campus-daylight: url("assets/campus-daylight.png");
  --font: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
}

/* Demo controls and investigation previews */
.reset-demo {
  position: fixed;
  right: 14px;
  bottom: 12px;
  z-index: 1200;
  border: 1px solid rgba(39, 52, 65, .28);
  border-radius: 4px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .82);
  color: #53606b;
  font-size: 12px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(24, 35, 48, .12);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.reset-demo:hover { color: #173d6b; background: #fff; }

.document-dialog[data-preview-type="image"] .document-body {
  overflow: auto;
  background: #303236;
}

.image-preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 38px;
  padding: 4px 14px;
  background: #f4f5f6;
  color: #59616a;
  font-size: 12px;
}

.image-preview-toolbar span { margin-right: auto; }
.image-preview-toolbar button {
  width: 28px;
  height: 28px;
  border: 1px solid #c8ccd1;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
}

.cloud-image-preview {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 480px;
  margin: 0;
  padding: 28px;
  overflow: hidden;
}

.cloud-image-preview img {
  display: block;
  max-width: min(100%, 980px);
  max-height: 68vh;
  object-fit: contain;
  transform-origin: center;
  transition: transform .18s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

.cloud-image-preview figcaption {
  max-width: 760px;
  padding: 8px 12px;
  background: rgba(16, 18, 20, .82);
  color: #e6e8ea;
  font-size: 12px;
  line-height: 1.65;
}

.cloud-photo-grid figure[role="button"] { cursor: zoom-in; }
.cloud-photo-grid figure[role="button"]:focus-visible {
  outline: 3px solid #4a86d4;
  outline-offset: 2px;
}

.chapter-complete-dialog {
  width: min(680px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  border: 0;
  border-radius: 6px;
  padding: 0;
  color: #20262c;
  box-shadow: 0 22px 70px rgba(5, 12, 20, .38);
}

.chapter-complete-dialog::backdrop {
  background: rgba(9, 17, 25, .58);
  backdrop-filter: blur(3px);
}

.chapter-complete-dialog article { background: #f7f7f4; }
.chapter-complete-dialog header {
  padding: 26px 30px 20px;
  border-bottom: 1px solid #d7d8d4;
  background: #eceeea;
}
.chapter-complete-dialog header p {
  margin: 0 0 7px;
  color: #68716d;
  font-size: 12px;
}
.chapter-complete-dialog header h2 { margin: 0; font: 600 23px/1.3 var(--font); }
.chapter-complete-copy { padding: 22px 30px 8px; font-size: 14px; line-height: 1.85; }
.chapter-complete-copy ul { margin: 12px 0 18px; padding-left: 1.5em; }
.chapter-complete-copy li { margin: 5px 0; }
.chapter-complete-copy blockquote {
  margin: 20px 0;
  border-left: 3px solid #7e8f87;
  padding: 11px 16px;
  background: #ecefeb;
  color: #303934;
}
.chapter-last-note { color: #525a61; }
.session-trace-button {
  border: 0;
  border-bottom: 1px solid #87918c;
  padding: 2px 0;
  background: transparent;
  color: #68716d;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.session-trace-button:disabled { cursor: default; opacity: .55; }
.session-trace-result {
  margin-top: 12px;
  border: 1px solid #d1d6d2;
  padding: 10px 12px;
  background: #eef0ed;
  color: #3e4843;
  font: 12px/1.7 Consolas, "Microsoft YaHei", sans-serif;
}
.chapter-complete-dialog footer { display: flex; justify-content: flex-end; padding: 12px 30px 24px; }

@media (max-width: 680px) {
  .reset-demo { right: 8px; bottom: 8px; opacity: .72; }
  .cloud-image-preview { min-height: 320px; padding: 14px; }
  .cloud-image-preview img { max-height: 56vh; }
  .chapter-complete-dialog header { padding: 20px 20px 16px; }
  .chapter-complete-copy { padding: 17px 20px 6px; font-size: 13px; line-height: 1.72; }
  .chapter-complete-dialog footer { padding: 10px 20px 20px; }
}

* { box-sizing: border-box; }
html { min-width: 320px; }
body { margin: 0; color: var(--ink); background: var(--page); font-family: var(--font); font-size: 14px; letter-spacing: 0; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, dl, dd, ul, ol { margin-top: 0; }
.hidden { display: none !important; }
.portal-container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

.login-screen { min-height: 100vh; position: relative; display: grid; grid-template-rows: 78px 1fr auto; overflow: hidden; background: #dfe5e8; }
.login-photo { position: absolute; inset: 0; overflow: hidden; background: #728990 var(--campus-rainy) center 53% / cover no-repeat; }
.login-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12, 30, 43, .52) 0%, rgba(16, 37, 52, .26) 46%, rgba(14, 34, 47, .12) 100%); }
.campus-sky, .campus-building, .campus-trees { display: none; }
.campus-sky { position: absolute; inset: 0 0 39%; background: #bfd7e2; }
.campus-building { position: absolute; bottom: 12%; background: #d7d1c6; border-top: 8px solid #c3b7a6; box-shadow: inset 0 -26px 0 rgba(128, 119, 104, .12), 0 12px 28px rgba(30, 40, 43, .18); }
.campus-building::before { content: ""; position: absolute; width: 42px; height: 30px; left: 24px; top: 24px; background: #9eb5bb; box-shadow: 68px 0 #9eb5bb, 136px 0 #9eb5bb, 204px 0 #9eb5bb, 272px 0 #9eb5bb, 340px 0 #9eb5bb, 0 58px #9eb5bb, 68px 58px #9eb5bb, 136px 58px #9eb5bb, 204px 58px #9eb5bb, 272px 58px #9eb5bb, 340px 58px #9eb5bb, 0 116px #9eb5bb, 68px 116px #9eb5bb, 136px 116px #9eb5bb, 204px 116px #9eb5bb, 272px 116px #9eb5bb, 340px 116px #9eb5bb; }
.campus-building-left { width: 38%; height: 34%; left: -3%; transform: perspective(700px) rotateY(8deg); }
.campus-building-main { width: 46%; height: 42%; left: 27%; bottom: 10%; }
.campus-building-main::after { content: ""; position: absolute; width: 84px; height: 96px; left: calc(50% - 42px); bottom: 0; background: #526975; border: 12px solid #d7d1c6; border-bottom: 0; }
.campus-building-right { width: 35%; height: 30%; right: -4%; transform: perspective(700px) rotateY(-8deg); }
.campus-trees { position: absolute; left: -3%; right: -3%; bottom: 0; height: 18%; background: #446554; box-shadow: 0 -25px 0 rgba(53, 90, 67, .55), 0 -47px 0 rgba(69, 105, 77, .38); }
.login-header { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 0 max(34px, calc((100vw - 1200px) / 2)); color: rgba(255, 255, 255, .96); background: transparent; border-bottom: 0; text-shadow: 0 1px 3px rgba(0, 0, 0, .34); }
.university-identity { display: flex; align-items: center; gap: 13px; }
.university-seal-image { width: 54px; height: 54px; flex: none; border-radius: 50%; object-fit: cover; box-shadow: 0 1px 4px rgba(0, 0, 0, .22); }
.seal, .portal-seal { display: grid; place-items: center; color: #fff; background: var(--navy); border: 2px solid #fff; outline: 1px solid var(--navy); font-family: SimSun, serif; font-weight: 700; }
.seal { width: 44px; height: 44px; font-size: 22px; }
.university-identity strong, .university-identity small { display: block; }
.university-identity strong { font-family: SimSun, "Songti SC", serif; font-size: 25px; letter-spacing: 3px; }
.university-identity small { margin-top: 2px; color: rgba(255, 255, 255, .82); font-family: Arial, sans-serif; font-size: 9px; letter-spacing: 1.4px; }
.login-header nav { display: flex; gap: 24px; color: rgba(255, 255, 255, .92); font-size: 13px; }
.login-header nav a:hover { color: #fff; text-decoration: underline; }
.login-stage { position: relative; z-index: 1; display: flex; align-items: center; justify-content: flex-end; width: min(1200px, calc(100% - 48px)); margin: 0 auto; padding: 44px 0; }
.login-panel { width: 386px; background: rgba(255, 255, 255, .98); border-top: 4px solid var(--navy); box-shadow: 0 18px 46px rgba(18, 35, 48, .25); }
.login-panel-title { padding: 25px 30px 17px; }
.login-panel-title h1 { margin-bottom: 7px; font-size: 23px; font-weight: 500; }
.login-panel-title p { margin-bottom: 0; color: var(--muted); font-size: 12px; }
.login-tabs { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line); }
.login-tabs button { position: relative; border: 0; background: #f7f7f7; padding: 12px; color: #666; }
.login-tabs button.active { color: var(--navy); background: #fff; font-weight: 700; }
.login-tabs button.active::after { content: ""; position: absolute; left: 34%; right: 34%; bottom: -1px; height: 2px; background: var(--navy); }
.login-panel form { padding: 22px 30px 8px; }
.login-field { display: grid; grid-template-columns: 62px 1fr; align-items: center; margin-bottom: 15px; border: 1px solid #cfd4da; background: #fff; }
.login-field span { text-align: center; color: #4f565e; font-size: 13px; border-right: 1px solid #dde0e4; }
.login-field input { width: 100%; height: 42px; padding: 0 11px; border: 0; outline: 0; color: #333; }
.login-field:focus-within { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(23, 61, 107, .1); }
.login-options { display: flex; justify-content: space-between; align-items: center; margin: 4px 0 16px; color: #666; font-size: 12px; }
.login-options label { display: flex; align-items: center; gap: 5px; }
.login-options input { accent-color: var(--navy); }
.login-options a { color: var(--navy); }
.primary-button, .secondary-button { min-height: 34px; border: 1px solid transparent; padding: 7px 17px; }
.primary-button { color: #fff; background: var(--navy); border-color: var(--navy); }
.primary-button:hover { background: var(--navy-dark); }
.secondary-button { color: #34414f; background: #fff; border-color: #bdc4cc; }
.secondary-button:hover { color: var(--navy); border-color: var(--navy); }
.login-submit { width: 100%; height: 42px; font-size: 16px; letter-spacing: 6px; }
.login-help { display: flex; justify-content: center; gap: 11px; padding: 15px 20px 22px; color: #6b7278; font-size: 12px; }
.login-help span { color: #c6c9cc; }
.login-help a:hover { color: var(--navy); }
.login-footer { position: relative; z-index: 1; padding: 12px 20px; text-align: center; color: #e8eef1; background: rgba(13, 32, 47, .72); font-size: 11px; }
.login-footer p { margin: 2px 0; }

.portal { min-height: 100vh; display: flex; flex-direction: column; background: linear-gradient(180deg, rgba(242, 243, 245, .34) 0%, rgba(242, 243, 245, .56) 42%, rgba(242, 243, 245, .78) 100%), var(--campus-daylight) center 30% / cover fixed; }
.utility-bar { height: 32px; color: #eef5f8; background: rgba(16, 45, 80, .88); font-size: 12px; }
.utility-content { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.utility-content nav { display: flex; height: 100%; }
.utility-content a { display: grid; place-items: center; padding: 0 10px; border-left: 1px solid rgba(255, 255, 255, .12); }
.utility-content a:last-child { border-right: 1px solid rgba(255, 255, 255, .12); }
.portal-header { background: rgba(255, 255, 255, .83); box-shadow: 0 1px 8px rgba(24, 38, 51, .14); backdrop-filter: blur(7px); }
.header-content { height: 86px; display: grid; grid-template-columns: 300px minmax(280px, 1fr) auto; gap: 34px; align-items: center; }
.portal-brand { border: 0; background: transparent; display: flex; align-items: center; gap: 14px; text-align: left; padding: 0; }
.portal-seal { width: 48px; height: 48px; font-size: 24px; }
.portal-name { display: flex; align-items: baseline; gap: 14px; white-space: nowrap; }
.portal-name strong { font-family: SimSun, "Songti SC", serif; font-size: 27px; letter-spacing: 3px; }
.portal-name small { color: #4f5c69; font-size: 17px; }
.header-search > label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.header-search > div { display: flex; max-width: 430px; margin-left: auto; }
.header-search input { flex: 1; min-width: 0; height: 36px; border: 1px solid #b9c2cb; border-right: 0; padding: 0 12px; outline: 0; }
.header-search input:focus { border-color: var(--navy); }
.header-search button { width: 62px; border: 1px solid var(--navy); color: #fff; background: var(--navy); }
.account-area { display: grid; grid-template-columns: 38px auto 24px; gap: 9px; align-items: center; min-width: 188px; }
.account-avatar { width: 36px; height: 36px; display: grid; place-items: center; color: #fff; background: #60798f; font-weight: 700; }
.account-area strong, .account-area small { display: block; }
.account-area strong { margin-bottom: 3px; font-size: 13px; }
.account-area small { color: var(--muted); font-size: 10px; }
.account-area button { border: 0; color: #687582; background: transparent; }
.main-nav { height: 44px; background: rgba(23, 61, 107, .94); }
.main-nav { scrollbar-width: none; }
.main-nav::-webkit-scrollbar { display: none; }
.main-nav .portal-container { height: 100%; display: flex; }
.nav-item { position: relative; min-width: 124px; height: 100%; border: 0; color: #fff; background: transparent; font-size: 15px; }
.nav-item:hover, .nav-item.active { background: rgba(0, 0, 0, .2); }
.nav-item.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: #f0c15c; }
.nav-badge { display: inline-grid; place-items: center; width: 16px; height: 16px; margin-left: 3px; color: #fff; background: var(--red); border-radius: 50%; font-size: 10px; vertical-align: 1px; }
.portal-main { flex: 1; }
.view { display: none; }
.view.active { display: block; }
.portal-location { padding: 14px 0 11px; color: #7a8087; font-size: 12px; }
.portal-location span { color: #4f565e; }
.home-notice { height: 42px; display: flex; align-items: center; margin-bottom: 14px; border: 1px solid rgba(212, 192, 139, .84); background: rgba(255, 250, 240, .84); backdrop-filter: blur(3px); }
.home-notice > strong { align-self: stretch; display: grid; place-items: center; width: 88px; color: #fff; background: #a76e19; font-size: 13px; }
.home-notice button { flex: 1; min-width: 0; display: flex; justify-content: space-between; gap: 20px; border: 0; padding: 0 14px; color: #4e4432; background: transparent; text-align: left; }
.home-notice button span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-notice time { color: #8a806d; font-size: 12px; white-space: nowrap; }
.portal-columns { display: grid; grid-template-columns: 1.1fr 1fr 280px; gap: 14px; align-items: start; }
.portlet { background: rgba(255, 255, 255, .86); border: 1px solid rgba(216, 220, 225, .92); backdrop-filter: blur(4px); }
.portlet > header { height: 45px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; border-bottom: 1px solid var(--line); }
.portlet > header h2 { position: relative; margin: 0; padding-left: 11px; font-size: 16px; font-weight: 600; }
.portlet > header h2::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 3px; background: var(--navy); }
.portlet > header button { border: 0; color: #6b727a; background: transparent; font-size: 12px; }
.application-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 8px 5px 12px; }
.application-grid button { min-width: 0; height: 82px; display: grid; place-items: center; align-content: center; gap: 7px; border: 0; color: #343b42; background: rgba(255, 255, 255, .66); font-size: 12px; }
.application-grid button:hover { background: rgba(242, 247, 251, .92); color: var(--navy); }
.application-icon { width: 34px; height: 34px; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 16px; }
.application-icon.blue { background: #396fa6; }
.application-icon.green { background: #45825d; }
.application-icon.orange { background: #c17a2d; }
.application-icon.cyan { background: #3e8191; }
.application-icon.red { background: #a64f4b; }
.application-icon.violet { background: #786396; }
.application-icon.slate { background: #5f7286; }
.application-icon.teal { background: #397d75; }
.tab-row { height: 38px; display: flex; border-bottom: 1px solid var(--line-light); }
.tab-row button { min-width: 95px; border: 0; border-right: 1px solid var(--line-light); color: #626970; background: rgba(247, 248, 249, .74); }
.tab-row button.active { color: var(--navy); background: rgba(255, 255, 255, .74); font-weight: 700; }
.tab-row span { color: var(--red); }
.todo-row { width: 100%; min-height: 78px; display: grid; grid-template-columns: 66px minmax(0, 1fr) 42px; gap: 10px; align-items: start; border: 0; border-bottom: 1px solid var(--line-light); padding: 13px; background: rgba(255, 255, 255, .7); text-align: left; }
.todo-row:hover { background: rgba(245, 248, 251, .92); }
.todo-source { padding: 3px 4px; border: 1px solid #c7d2de; color: var(--navy); text-align: center; font-size: 11px; }
.todo-copy strong, .todo-copy small { display: block; }
.todo-copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.todo-copy small { margin-top: 8px; color: #7a8086; font-size: 11px; }
.todo-row time { color: #848a90; font-size: 11px; }
.todo-empty { padding: 28px 12px; color: #999fa4; text-align: center; font-size: 12px; }
.right-column { display: grid; gap: 14px; }
.calendar-summary { display: flex; align-items: center; gap: 12px; padding: 15px 17px 8px; }
.calendar-summary strong { min-width: 52px; color: var(--red); font-size: 39px; line-height: 1; font-weight: 400; }
.calendar-summary span { color: #5d646b; font-size: 13px; line-height: 1.65; }
.schedule-portlet > p { margin: 4px 17px 16px; padding-top: 10px; border-top: 1px dashed #d8dadd; color: #989da2; font-size: 12px; text-align: center; }
.service-portlet dl { margin: 0; padding: 8px 15px; }
.service-portlet dl div { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dotted #d9dce0; font-size: 12px; }
.service-portlet dl div:last-child { border-bottom: 0; }
.service-portlet dt { color: #747a81; }
.service-portlet dd { margin: 0; }
.service-portlet dd.normal { color: var(--success); }
.news-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.list-portlet ul { margin: 0; padding: 8px 15px 10px 30px; }
.list-portlet li { padding: 8px 0; color: #8a9096; }
.list-portlet li::marker { color: #8a97a4; }
.list-portlet li a { display: inline-block; max-width: calc(100% - 62px); overflow: hidden; color: #343a40; text-overflow: ellipsis; white-space: nowrap; vertical-align: middle; }
.list-portlet li a:hover { color: var(--navy); text-decoration: underline; }
.list-portlet time { float: right; color: #92979c; font-size: 11px; }
.faculty-news-feature { position: relative; display: block; min-height: 118px; margin: 12px 15px 2px; overflow: hidden; color: #fff; background: #344b5d; }
.faculty-news-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20, 35, 46, .88), rgba(20, 35, 46, .08) 72%); }
.faculty-news-feature img { display: block; width: 100%; height: 118px; object-fit: cover; object-position: center 44%; }
.faculty-news-feature span { position: absolute; z-index: 1; right: 12px; bottom: 9px; left: 12px; display: grid; gap: 3px; }
.faculty-news-feature strong { font-size: 13px; font-weight: 600; }
.faculty-news-feature small { color: #dce5eb; font-size: 10px; }
.faculty-news-brief { display: grid; grid-template-columns: 54px minmax(0, 1fr) 35px; align-items: center; gap: 8px; min-height: 48px; margin: 7px 15px 0; color: #343a40; font-size: 11px; }
.faculty-news-brief img { width: 54px; height: 38px; object-fit: cover; }
.faculty-news-brief span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.faculty-news-brief time { color: #92979c; text-align: right; }

.page-heading { display: flex; align-items: end; gap: 16px; padding: 3px 0 14px; }
.page-heading h1, .file-service-heading h1 { margin: 0; font-size: 23px; font-weight: 500; }
.page-heading p, .file-service-heading p { margin: 0 0 2px; color: var(--muted); font-size: 12px; }
.message-shell { display: grid; grid-template-columns: 170px minmax(0, 1fr); min-height: 620px; margin-bottom: 24px; border: 1px solid var(--line); background: #fff; }
.message-folders { border-right: 1px solid var(--line); background: #f7f8f9; }
.compose-button { width: calc(100% - 28px); height: 36px; margin: 16px 14px; border: 1px solid var(--navy); color: #fff; background: var(--navy); }
.message-folders nav { display: grid; }
.message-folders nav button { height: 42px; display: flex; justify-content: space-between; border: 0; border-top: 1px solid transparent; border-bottom: 1px solid transparent; padding: 0 20px; color: #4f565d; background: transparent; text-align: left; }
.message-folders nav button.active { color: var(--navy); background: #fff; border-color: var(--line); font-weight: 700; }
.message-folders nav span { color: var(--red); }
.message-content { min-width: 0; }
.message-toolbar { height: 45px; display: flex; align-items: center; gap: 8px; padding: 0 14px; border-bottom: 1px solid var(--line); background: #fafafa; }
.message-toolbar label { display: flex; align-items: center; gap: 5px; margin-right: 4px; }
.message-toolbar button { border: 1px solid #c8ccd1; padding: 5px 10px; color: #4f565d; background: #fff; }
.message-toolbar span { margin-left: auto; color: #777e84; font-size: 12px; }
.message-table-heading, .message-row { display: grid; grid-template-columns: 140px minmax(0, 1fr) 110px; align-items: center; }
.message-table-heading { height: 32px; padding: 0 14px; color: #7b8188; background: #f5f6f7; border-bottom: 1px solid var(--line); font-size: 11px; }
.message-row { width: 100%; min-height: 45px; border: 0; border-bottom: 1px solid var(--line); padding: 0 14px; background: #fff; text-align: left; }
.message-row.selected { background: #eef4fa; }
.message-row > span { display: flex; align-items: center; gap: 8px; }
.message-row i { width: 7px; height: 7px; background: var(--red); border-radius: 50%; }
.message-row strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.message-row time { color: #70777e; font-size: 11px; }
.message-reader { margin: 18px; border: 1px solid var(--line); }
.message-folder-empty { display: grid; min-height: 290px; place-content: center; padding: 24px; color: #6f7880; background: #fff; text-align: center; }
.message-folder-empty strong { color: #46515b; font-size: 14px; }
.message-folder-empty p { margin: 8px 0 0; font-size: 12px; }
.message-reader > header { padding: 18px 22px 14px; border-bottom: 1px solid var(--line); background: #fafafa; }
.message-reader h2 { margin-bottom: 14px; font-size: 19px; font-weight: 500; }
.message-reader dl { margin: 0; color: #6b7279; font-size: 12px; }
.message-reader dl div { display: flex; margin-top: 5px; }
.message-reader dt { width: 62px; color: #4b5259; }
.message-reader dd { margin: 0; }
.message-copy { max-width: 820px; padding: 24px 28px 14px; line-height: 1.9; color: #30363b; }
.message-copy p { margin-bottom: 16px; }
.message-copy ol { margin: -2px 0 16px; padding-left: 27px; }
.message-signature { margin-top: 28px; color: #565e65; }
.message-actions { display: flex; gap: 8px; padding: 14px 28px 22px; }

.file-service-heading { display: flex; justify-content: space-between; align-items: end; padding: 3px 0 14px; }
.file-service-heading h1 { margin-bottom: 5px; }
.storage-summary { min-width: 210px; color: #747b82; font-size: 11px; text-align: right; }
.storage-summary span, .storage-summary strong { display: block; }
.storage-summary strong { margin-top: 4px; color: #4e555c; font-weight: 500; }
.file-service-tabs { display: flex; height: 42px; border: 1px solid var(--line); border-bottom: 0; background: #f6f7f8; }
.file-service-tabs button { position: relative; min-width: 125px; border: 0; border-right: 1px solid var(--line); color: #5a6168; background: transparent; }
.file-service-tabs button.active { color: var(--navy); background: #fff; font-weight: 700; }
.file-service-tabs button.active::after { content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 3px; background: var(--navy); }
.share-summary { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 17px; border: 1px solid var(--line); background: #fff; }
.share-summary > div { display: flex; align-items: center; min-width: 0; gap: 13px; }
.share-folder-icon { width: 44px; height: 44px; display: grid; place-items: center; color: #fff; background: #4e7797; font-size: 19px; font-weight: 700; }
.share-summary h2 { margin-bottom: 7px; font-size: 16px; font-weight: 600; }
.share-summary p { margin: 0; color: #737a81; font-size: 11px; }
.share-summary dl { display: flex; gap: 28px; margin: 0; white-space: nowrap; }
.share-summary dl div { border-left: 1px solid var(--line); padding-left: 18px; }
.share-summary dt { color: #858b91; font-size: 10px; }
.share-summary dd { margin: 5px 0 0; color: #4e555b; font-size: 12px; }
.research-task { margin-top: 12px; border: 1px solid #cbd5df; background: #fff; }
.research-task > header { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 17px; border-bottom: 1px solid #d8e0e7; background: #f2f6fa; }
.research-task > header p { margin-bottom: 4px; color: #56718b; font-size: 11px; }
.research-task > header h2 { margin: 0; color: #263748; font-size: 16px; font-weight: 600; }
#task-progress { min-width: 75px; padding: 5px 8px; color: var(--navy); border: 1px solid #aebdcb; background: #fff; font-size: 12px; text-align: center; white-space: nowrap; }
.task-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; }
.task-list li { min-height: 166px; display: grid; grid-template-columns: 31px minmax(0, 1fr); gap: 10px; padding: 17px 15px; border-right: 1px solid #e1e5e8; color: #777f86; background: #fbfbfb; }
.task-list li:last-child { border-right: 0; }
.task-list li.active { color: #313b44; background: #fff; }
.task-list li.completed { color: #4a626e; background: #f5f9f7; }
.task-number { width: 27px; height: 27px; display: grid; place-items: center; color: #fff; background: #a5adb5; font-size: 13px; font-weight: 700; }
.task-list li.active .task-number { background: var(--navy); }
.task-list li.completed .task-number { background: var(--success); }
.task-list h3 { margin: 2px 0 7px; color: #4f5961; font-size: 14px; }
.task-list li.active h3, .task-list li.completed h3 { color: #263748; }
.task-list p { min-height: 40px; margin: 0 0 10px; font-size: 12px; line-height: 1.65; }
.task-actions { display: flex; flex-wrap: wrap; gap: 6px; }
.task-action { border: 1px solid #9fb2c4; padding: 6px 9px; color: var(--navy); background: #fff; font-size: 12px; }
.task-action:hover:not(:disabled) { border-color: var(--navy); background: #edf4fa; }
.task-action:disabled { color: #9ba3aa; border-color: #d5d9dd; background: #f4f5f6; cursor: default; }
.task-result { display: block; margin-top: 9px; color: #858d94; font-size: 11px; line-height: 1.5; }
.task-list li.completed .task-result { color: var(--success); }
.task-completion, .task-followup { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 17px; border-top: 1px solid #dce6df; background: #f5f9f7; }
.task-completion p, .task-followup { margin: 0; color: #415650; font-size: 12px; line-height: 1.6; }
.task-followup { border-color: #d6dde4; color: #465766; background: #f4f7fa; }
.task-followup span { flex: 1; }
.task-followup .secondary-button { white-space: nowrap; }
.file-row.task-target { outline: 2px solid #bd7c22; outline-offset: -2px; background: #fff8eb; }
.file-row.task-target::after { content: "下一步"; justify-self: end; padding: 3px 5px; color: #8c570c; border: 1px solid #d9b879; background: #fff; font-size: 10px; }
.file-readonly { min-width: 30px; padding: 3px 4px; border: 1px solid #9baebd; color: #47657c; background: #f5f8fa; font-size: 10px; text-align: center; }
.selection-brief { margin-top: 12px; border: 1px solid #cbd5df; background: #fff; }
.selection-brief > header { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 17px 10px; border-bottom: 1px solid #d8e0e7; background: #f2f6fa; }
.selection-brief > header p { margin: 0 0 4px; color: #56718b; font-size: 11px; }
.selection-brief h2 { margin: 0; color: #263748; font-size: 16px; font-weight: 600; }
.selection-brief > p { margin: 12px 17px 6px; color: #4e575f; font-size: 12px; line-height: 1.7; }
.selection-brief small { display: block; min-height: 30px; padding: 7px 17px; color: #75818b; font-size: 11px; }
#timeline-progress { min-width: 72px; padding: 5px 8px; color: var(--navy); border: 1px solid #aebdcb; background: #fff; font-size: 12px; text-align: center; white-space: nowrap; }
.followup-message { margin-top: 14px; border-top: 3px solid #466b8d; }
.file-toolbar { height: 45px; display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding: 0 10px; border: 1px solid var(--line); border-bottom: 0; background: #f7f8f9; }
.toolbar-actions, .toolbar-view { display: flex; align-items: center; gap: 6px; }
.file-toolbar button { height: 29px; border: 1px solid #c6cbd1; padding: 0 10px; color: #51585f; background: #fff; }
.file-toolbar label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.file-toolbar input { width: 190px; height: 29px; border: 1px solid #c6cbd1; padding: 0 9px; outline: 0; }
.file-toolbar input:focus { border-color: var(--navy); }
.file-service-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); min-height: 535px; margin-bottom: 24px; border: 1px solid var(--line); background: #fff; }
.folder-panel { padding: 16px 10px; border-right: 1px solid var(--line); background: #fafafa; }
.tree-root, .tree-branch, .tree-project { overflow: hidden; padding: 5px 8px; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; }
.tree-root { color: #333b42; font-weight: 700; }
.tree-branch { margin-left: 10px; color: #535b62; }
.tree-project { margin-left: 20px; color: var(--navy); font-weight: 700; }
.folder-panel nav { display: grid; margin-top: 7px; }
.folder-item { height: 35px; border: 0; padding: 0 7px 0 28px; color: #50575e; background: transparent; text-align: left; font-size: 12px; }
.folder-item span { display: inline-block; width: 14px; color: #8b9197; }
.folder-item:hover { background: #edf1f5; }
.folder-item.selected { color: #fff; background: #466b8d; }
.folder-item.selected span { color: #dce8f2; }
.permission-note { margin: 22px 8px 0; padding: 12px; border: 1px solid #dddfe2; color: #737980; background: #fff; font-size: 11px; line-height: 1.7; }
.permission-note strong { color: #4e555b; }
.permission-note p { margin: 5px 0 0; }
.file-panel { min-width: 0; display: flex; flex-direction: column; }
.file-path { min-height: 58px; padding: 12px 15px; border-bottom: 1px solid var(--line); }
.file-path span, .file-path small { display: block; }
.file-path span { color: #3e454c; font-size: 13px; font-weight: 700; }
.file-path small { margin-top: 6px; color: #83898f; font-size: 11px; }
.file-table-heading, .file-row { display: grid; grid-template-columns: minmax(250px, 1fr) 110px 125px 72px; align-items: center; gap: 10px; }
.file-table-heading { height: 34px; padding: 0 13px; border-bottom: 1px solid var(--line); color: #737a81; background: #f5f6f7; font-size: 11px; }
.file-list { flex: 1; }
.file-row { width: 100%; min-height: 54px; border: 0; border-bottom: 1px solid var(--line-light); padding: 7px 13px; color: #343b42; background: #fff; text-align: left; }
.file-row:hover { background: #f2f6fa; }
.file-primary { min-width: 0; display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 9px; align-items: center; }
.file-open { min-width: 0; display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 10px; align-items: center; border: 0; padding: 0; color: inherit; background: transparent; text-align: left; }
.file-open:not(:disabled) { cursor: pointer; }
.file-open:not(:disabled):hover .file-name { color: var(--navy); text-decoration: underline; }
.file-open:disabled { cursor: default; opacity: .68; }
.timeline-slot { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid #a9b8c4; padding: 0; color: #597185; background: #fff; cursor: pointer; font-family: Consolas, "Courier New", monospace; font-size: 13px; line-height: 1; }
.timeline-slot:hover { border-color: #466b8d; color: #2d587d; background: #eef4f8; }
.timeline-slot.selected { border-color: #466b8d; color: #fff; background: #466b8d; font-weight: 700; }
.file-lock { width: 18px; height: 18px; display: grid; place-items: center; color: #7c858d; font-size: 0; }
.file-lock::before { content: "锁"; font-size: 10px; font-weight: 700; }
.file-row-locked { color: #727980; background: #fbfbfb; }
.file-row-locked:hover { background: #fbfbfb; }
.file-row-locked .file-icon { filter: grayscale(.72); }
.file-row.personal-space-reference { box-shadow: inset 3px 0 0 #9a7b43; background: #fdfcf9; }
.file-row.personal-space-reference:hover { background: #f9f6ee; }
.file-row.personal-space-reference .file-open:not(:disabled) { cursor: pointer; }
.file-row.personal-space-reference .file-open:not(:disabled):hover .file-name { color: #72531d; }
.file-row-authorized { box-shadow: inset 3px 0 0 #6d90ab; }
.file-icon { width: 31px; height: 34px; display: grid; place-items: center; border: 1px solid #bdc5cd; color: #fff; background: #677c8d; font-size: 9px; font-weight: 700; }
.file-icon.pdf { background: #a74b47; border-color: #93413d; }
.file-icon.doc { background: #3d6f9d; border-color: #356187; }
.file-icon.xls { background: #3b7857; border-color: #346b4d; }
.file-icon.txt { color: #48525b; background: #f6f6f6; border-color: #aeb5bc; }
.file-icon.link { color: #435e78; background: #e8f0f8; border-color: #9fb4c7; }
.file-name, .file-subtitle { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-name { color: #2e353b; font-size: 12px; }
.file-subtitle { margin-top: 4px; color: #858b90; font-size: 10px; }
.file-row > span:not(.file-primary), .file-row > time { color: #70777e; font-size: 11px; }
.file-footer { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 7px 13px; border-top: 1px solid var(--line); color: #7c8288; background: #fafafa; font-size: 11px; }
.file-footer > span:nth-child(2) { flex: 1; }
.file-footer .primary-button { white-space: nowrap; }

.collaborator-access-shell { max-width: 760px; margin: 32px auto 48px; border: 1px solid #bdc8d1; background: #fff; box-shadow: 0 6px 20px rgba(24, 43, 58, .1); }
.collaborator-access-shell > header { position: relative; padding: 26px 30px; color: #fff; background: #334f68; }
.collaborator-access-shell > header p { margin: 0 0 7px; color: #d4e0ea; font-size: 12px; }
.collaborator-access-shell > header h1 { margin: 0; font-family: SimSun, "Songti SC", serif; font-size: 25px; font-weight: 500; }
.collaborator-access-shell > header span { position: absolute; right: 25px; bottom: 28px; padding: 4px 8px; border: 1px solid #91aaba; color: #e5eef4; font-size: 11px; }
.access-panel { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 18px; padding: 32px 38px; }
.access-panel-icon { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: #53758e; font-size: 18px; font-weight: 700; }
.access-panel h2 { margin: 3px 0 9px; color: #263947; font-size: 18px; font-weight: 600; }
.access-panel > div > p { margin: 0 0 18px; color: #626d75; font-size: 13px; line-height: 1.8; }
.access-panel dl { margin: 0 0 20px; border-top: 1px solid #dde3e8; }
.access-panel dl div { display: grid; grid-template-columns: 86px 1fr; padding: 7px 0; border-bottom: 1px solid #e3e7eb; font-size: 12px; }
.access-panel dt { color: #77818a; }
.access-panel dd { margin: 0; color: #45505a; }
.access-panel label { display: block; margin: 0 0 7px; color: #4d5760; font-size: 12px; font-weight: 700; }
.passcode-entry { display: flex; }
.passcode-entry input { flex: 1; min-width: 0; height: 38px; border: 1px solid #adb9c4; padding: 0 11px; outline: 0; text-transform: uppercase; }
.passcode-entry input:focus { border-color: #466b8d; }
.passcode-entry .primary-button { min-width: 72px; }
.passcode-feedback { min-height: 20px; margin-top: 9px !important; color: #78838c !important; font-size: 11px !important; }
.access-links { display: flex; gap: 14px; margin-top: 8px; }
.access-links button { border: 0; padding: 0; color: #466b8d; background: transparent; font-size: 12px; }
.access-links button:hover { text-decoration: underline; }

.workspace-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 22px 24px; color: #fff; background: #314b61; }
.workspace-heading p { margin: 0 0 8px; color: #d1dde6; font-size: 11px; }
.workspace-heading h1 { margin: 0; font-family: SimSun, "Songti SC", serif; font-size: 25px; font-weight: 500; }
.workspace-heading small { display: block; margin-top: 9px; color: #d1dde6; font-size: 11px; }
.workspace-heading .secondary-button { border-color: #9db2c2; color: #fff; background: transparent; }
.workspace-task { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 18px; padding: 16px 19px; border: 1px solid #cbd5dd; background: #fff; }
.workspace-task p { margin: 0 0 5px; color: #58728a; font-size: 11px; }
.workspace-task h2 { margin: 0; color: #293b49; font-size: 16px; font-weight: 600; }
.workspace-task > p { max-width: 370px; margin: 0; color: #626b72; font-size: 12px; line-height: 1.7; }
#workspace-progress { min-width: 76px; padding: 5px 8px; border: 1px solid #aab8c4; color: #3a5d78; background: #f7fafc; text-align: center; font-size: 12px; white-space: nowrap; }
.workspace-files { margin-bottom: 18px; border: 1px solid #ccd4db; border-top: 0; background: #fff; }
.workspace-file-heading, .workspace-file { display: grid; grid-template-columns: minmax(260px, 1fr) 130px 145px; align-items: center; gap: 12px; }
.workspace-file-heading { height: 36px; padding: 0 14px; border-top: 1px solid #ccd4db; border-bottom: 1px solid #dce2e7; color: #747d84; background: #f5f7f8; font-size: 11px; }
.workspace-file { width: 100%; min-height: 62px; border: 0; border-bottom: 1px solid #e2e6e9; padding: 8px 14px; color: #3d4850; background: #fff; text-align: left; }
.workspace-file:last-child { border-bottom: 0; }
.workspace-file .file-primary { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; }
.workspace-file:not(:disabled):hover { background: #f1f6fa; }
.workspace-file.locked { color: #8b9298; background: #fbfbfb; cursor: default; }
.workspace-file.locked .file-icon { filter: grayscale(.85); }
.workspace-file time, .workspace-file > span:last-child { color: #717a82; font-size: 11px; }
.workspace-submit, .workspace-submitted { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 28px; padding: 16px 18px; border: 1px solid #c9d8cc; background: #f7fbf8; }
.workspace-submitted { border-color: #cdd6dc; background: #f8fafb; }
.workspace-submit p, .workspace-submitted p { max-width: 500px; margin: 0; color: #4c5a55; font-size: 12px; line-height: 1.7; }
.workspace-submitted p { color: #52606b; }
.document-inline-action { margin-left: 6px; border: 0; padding: 0; color: #446b8b; background: transparent; font-size: 11px; text-decoration: underline; }
.document-page .document-note hr { border: 0; border-top: 1px solid #aaa; margin: 12px 0; }
.clouddesk-shell { max-width: 720px; margin: 34px auto 50px; border: 1px solid #aeb9c1; background: rgba(255, 255, 255, .97); box-shadow: 0 6px 20px rgba(24, 39, 50, .14); }
#view-clouddesk { position: relative; isolation: isolate; min-height: 610px; padding-top: 1px; }
#view-clouddesk::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(239, 243, 246, .42), rgba(239, 243, 246, .82)), url("assets/clouddesk-wallpaper.png") center / cover no-repeat; }
.clouddesk-shell > header { display: flex; align-items: center; justify-content: space-between; padding: 20px 25px; color: #f3f6f8; background: #303d49; }
.clouddesk-shell > header > div { display: flex; align-items: center; gap: 11px; }
.clouddesk-mark { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #8b9ca9; color: #dce6ec; font-size: 11px; font-weight: 700; }
.clouddesk-shell p { margin: 0 0 4px; color: #c9d4db; font-size: 11px; }
.clouddesk-shell h1 { margin: 0; font-size: 18px; font-weight: 500; }
.clouddesk-shell > header > span { color: #c3ced5; font-size: 11px; }
.clouddesk-copy { padding: 30px 34px; }
.clouddesk-copy > p { margin: 0 0 20px; color: #56616a; font-size: 13px; line-height: 1.7; }
.clouddesk-copy dl { margin: 0 0 22px; border-top: 1px solid #dfe4e7; }
.clouddesk-copy dl div { display: grid; grid-template-columns: 110px 1fr; padding: 9px 0; border-bottom: 1px solid #e3e7ea; font-size: 12px; }
.clouddesk-copy dt { color: #75808a; }
.clouddesk-copy dd { margin: 0; color: #46525c; }
.clouddesk-copy .secondary-button { margin-left: 8px; }
.clouddesk-entry-actions { display: flex; gap: 8px; }
.clouddesk-copy .clouddesk-privacy-note { margin: 18px 0 0; padding-top: 13px; border-top: 1px solid #e0e4e7; color: #7b848b; font-size: 11px; }
.clouddesk-boot { position: relative; min-height: 560px; display: grid; align-content: center; justify-items: center; overflow: hidden; color: #eef3f6; background: #263641 url("assets/clouddesk-wallpaper.png") center / cover no-repeat; text-align: center; }
.clouddesk-boot::before { content: ""; position: absolute; inset: 0; background: rgba(28, 42, 52, .72); }
.clouddesk-boot > * { position: relative; }
.boot-mark { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 18px; border: 1px solid rgba(255, 255, 255, .55); background: rgba(27, 54, 70, .6); font-size: 18px; font-weight: 700; }
.clouddesk-boot h1 { margin: 0 0 9px; font-size: 21px; font-weight: 500; }
.clouddesk-boot p { margin: 0 0 20px; color: #d5dee4; font-size: 12px; }
.clouddesk-boot small { margin-top: 15px; color: #b6c2c9; font-size: 10px; }
.boot-progress { width: min(360px, 72vw); height: 4px; overflow: hidden; background: rgba(255, 255, 255, .22); }
.boot-progress span { display: block; width: 8%; height: 100%; background: #dce8ee; transition: width .42s ease; }
.cloud-desktop { position: relative; min-height: 680px; overflow: hidden; color: #edf3f6; background: #314552 url("assets/clouddesk-wallpaper.png") center / cover no-repeat; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28); }
.cloud-desktop::before { content: ""; position: absolute; inset: 38px 0 42px; pointer-events: none; background: linear-gradient(90deg, rgba(22, 39, 49, .16), transparent 38%); }
.desktop-topbar { position: relative; z-index: 4; height: 38px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 13px; color: #e8eef2; background: rgba(29, 42, 51, .88); font-size: 11px; }
.desktop-topbar > button { justify-self: start; border: 0; padding: 5px 8px; color: inherit; background: transparent; }
.desktop-topbar > button:hover { background: rgba(255, 255, 255, .1); }
.desktop-topbar time { justify-self: end; }
.cloud-logo { display: inline-grid; width: 23px; height: 23px; place-items: center; margin-right: 5px; border: 1px solid #91a6b3; font-size: 8px; }
.desktop-icons { position: relative; z-index: 2; width: 92px; display: grid; grid-auto-rows: 82px; padding: 17px 9px; }
.desktop-icons button { width: 74px; display: grid; justify-items: center; align-content: center; gap: 5px; border: 1px solid transparent; color: #fff; background: transparent; text-shadow: 0 1px 3px #18232b; }
.desktop-icons button:hover { border-color: rgba(255, 255, 255, .36); background: rgba(38, 67, 84, .34); }
.desktop-icons strong { max-width: 72px; overflow: hidden; font-size: 11px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.desktop-icon { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .36); color: #fff; background: rgba(41, 72, 90, .9); box-shadow: 0 2px 5px rgba(13, 29, 39, .28); font-size: 13px; font-weight: 700; text-shadow: none; }
.folder-icon { background: #b28a3f; }.mail-icon { background: #477694; }.chat-icon { background: #3f806c; }.photo-icon { background: #755f82; }.download-icon { background: #536f84; }.trash-icon { background: #69737a; }
.desktop-taskbar { position: absolute; right: 0; bottom: 0; left: 0; z-index: 6; height: 42px; display: flex; align-items: center; gap: 2px; padding: 0 8px; background: rgba(25, 37, 45, .9); }
.desktop-taskbar button { height: 33px; border: 0; padding: 0 11px; color: #e9eef1; background: transparent; font-size: 11px; }
.desktop-taskbar button:hover { background: rgba(255, 255, 255, .1); }
.desktop-taskbar button span { margin-right: 5px; }
#desktop-return { margin-left: auto; color: #cbd6dc; }
.cloud-window { position: absolute; top: 54px; right: 18px; bottom: 58px; left: 108px; z-index: 5; min-width: 0; overflow: hidden; border: 1px solid #4d5d67; color: #273139; background: #fff; box-shadow: 0 12px 35px rgba(10, 23, 31, .38); }
.cloud-window-titlebar { height: 38px; display: flex; align-items: center; justify-content: space-between; padding-left: 11px; color: #edf2f5; background: #344651; }
.cloud-window-titlebar > div { display: flex; align-items: center; gap: 8px; }
#cloud-window-mark { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid #8297a4; font-size: 9px; }
#cloud-window-title { font-size: 12px; font-weight: 500; }
.window-controls { height: 100%; gap: 0 !important; }
.window-controls button { width: 42px; height: 100%; border: 0; color: #e4ebef; background: transparent; font-size: 17px; }
.window-controls button:hover { background: rgba(255, 255, 255, .1); }
#cloud-window-close:hover { background: #a74742; }
.cloud-window-content { height: calc(100% - 38px); overflow: auto; background: #f4f5f6; }
.cloud-browser { position: relative; height: 100%; display: grid; grid-template-rows: 37px 43px minmax(0, 1fr); background: #fff; }
.browser-tabs { min-width: 0; display: flex; align-items: end; gap: 1px; padding: 5px 7px 0; overflow: hidden; background: #dfe3e6; }
.browser-tab-wrap { width: 168px; height: 32px; display: grid; grid-template-columns: minmax(0, 1fr) 24px; align-items: center; color: #535c63; background: #cdd3d7; }
.browser-tab-wrap.active { color: #28343c; background: #fff; }
.browser-tab { min-width: 0; height: 100%; border: 0; padding: 0 2px 0 9px; color: inherit; background: transparent; font-size: 10px; text-align: left; }
.browser-tab span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.browser-tab-close { width: 22px; height: 22px; border: 0; color: #7b8389; background: transparent; }
.browser-tab-close:hover { color: #303b42; background: rgba(60, 72, 80, .1); }
.browser-new-tab { width: 31px; height: 30px; border: 0; color: #4e5961; background: transparent; font-size: 18px; }
.browser-toolbar { display: grid; grid-template-columns: 31px 31px minmax(100px, 1fr) auto auto auto; align-items: center; gap: 5px; padding: 5px 8px; border-bottom: 1px solid #d8dde0; background: #fff; }
.browser-toolbar button { height: 30px; border: 0; padding: 0 7px; color: #58636b; background: #f1f3f4; font-size: 11px; }
.browser-toolbar > button:nth-child(-n+2) { padding: 0; font-size: 20px; }
.browser-toolbar input { height: 31px; border: 1px solid #d4dadd; border-radius: 3px; padding: 0 10px; color: #4c565d; background: #f5f6f7; font-size: 11px; }
.browser-viewport { min-height: 0; overflow: auto; background: #fff; }
.browser-recovery { position: absolute; inset: 80px 0 0; z-index: 10; display: grid; place-items: center; padding: 22px; background: rgba(239, 242, 244, .94); }
.browser-recovery > div { width: min(440px, 100%); padding: 28px 30px; border: 1px solid #bfc8ce; background: #fff; box-shadow: 0 8px 25px rgba(34, 49, 59, .15); text-align: center; }
.recovery-browser-mark { width: 48px; height: 48px; display: grid; place-items: center; margin: 0 auto 15px; color: #fff; background: #3e6e8c; font-size: 16px; font-weight: 700; }
.browser-recovery h2 { margin: 0 0 10px; font-size: 18px; font-weight: 600; }
.browser-recovery p { margin: 0 0 20px; color: #68727a; font-size: 12px; line-height: 1.75; }
.browser-recovery .secondary-button { margin-left: 6px; }
.webpage { width: min(880px, 100%); min-height: 100%; margin: 0 auto; color: #333; background: #fff; }
.webpage section { padding: 20px 25px; }
.webpage h1 { letter-spacing: 0; }
.cache-strip { padding: 7px 14px; color: #675c3d; background: #fff5d7; border-bottom: 1px solid #e3d4a4; font-size: 10px; }
.cached-project-page > header, .academic-page > header { padding: 20px 25px; color: #fff; background: #49657a; }
.cached-project-page > header p, .academic-page > header p { margin: 0 0 5px; color: #d9e4eb; font-size: 11px; }
.cached-project-page > header h1, .academic-page > header h1 { margin: 0 0 8px; font-family: SimSun, serif; font-size: 21px; font-weight: 500; }
.cached-project-page > header span { font-size: 10px; }
.webpage-lead { display: block; width: 100%; max-height: 240px; object-fit: cover; }
.webpage h2 { margin: 0 0 9px; font-size: 15px; }
.webpage section p { font-size: 12px; line-height: 1.8; }
.webpage table { width: 100%; border-collapse: collapse; font-size: 11px; }
.webpage td { border: 1px solid #d5d9dc; padding: 8px; }
.webpage-note { padding: 9px 11px; color: #687078; background: #f4f5f6; }
.map-page { height: 100%; display: grid; grid-template-rows: 40px minmax(0, 1fr); grid-template-columns: minmax(0, 1fr) 170px; background: #e4e7e1; }
.map-toolbar { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; color: #44525b; background: #fff; border-bottom: 1px solid #cdd4d7; font-size: 11px; }
.map-canvas { position: relative; min-height: 400px; overflow: hidden; }
.map-canvas > img { width: 100%; height: 100%; object-fit: cover; }
.map-page aside { padding: 15px; color: #56636b; background: rgba(255, 255, 255, .94); font-size: 11px; line-height: 1.8; }
.map-pin { position: absolute; border: 1px solid #fff; border-radius: 2px; padding: 4px 6px; color: #fff; background: #3f6d88; box-shadow: 0 2px 6px rgba(0, 0, 0, .3); font-size: 9px; }
.pin-village { left: 43%; bottom: 25%; }.pin-wall { left: 54%; top: 46%; }.pin-a { right: 22%; top: 22%; background: #826b43; }
.map-measure { position: absolute; padding: 2px 4px; color: #2f4e61; background: rgba(255, 255, 255, .82); font-size: 9px; }.measure-one { left: 48%; top: 35%; }.measure-two { right: 29%; top: 39%; }
.forum-page { color: #333; background: #eef0e7; font-family: Arial, sans-serif; }
.forum-page > header { display: flex; justify-content: space-between; padding: 14px 18px; color: #fff; background: #54705d; font-size: 11px; }
.forum-user { display: flex; align-items: center; gap: 13px; padding: 18px; background: #fff; border-bottom: 1px solid #cfd5cc; }
.forum-avatar { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: #789080; font-size: 18px; }
.forum-user h1 { margin: 0 0 4px; font-size: 17px; }.forum-user p { margin: 0; color: #777; font-size: 10px; }
.forum-login-note { color: #7b5e36; }.deleted-topic { color: #999; text-decoration: line-through; }
.company-page > header { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; color: #fff; background: #3f5260; font-size: 10px; }
.company-logo { font-family: SimSun, serif; font-size: 18px; }
.company-banner { position: relative; height: 235px; overflow: hidden; }.company-banner img { width: 100%; height: 100%; object-fit: cover; }.company-banner::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(27, 38, 44, .86)); }
.company-banner div { position: absolute; z-index: 1; right: 22px; bottom: 17px; left: 22px; color: #fff; }.company-banner p { margin: 0 0 3px; font-size: 10px; }.company-banner h1 { margin: 0; font-size: 20px; font-weight: 500; }
.webpage-date { color: #888; }.archive-scan { display: block; width: min(520px, 100%); margin: 15px 0; border: 1px solid #bbb; }
.academic-page dl { margin: 12px 0; font-size: 11px; }.academic-page dl div { display: grid; grid-template-columns: 80px 1fr; padding: 6px 0; border-bottom: 1px solid #ddd; }.academic-page dd { margin: 0; }
.transit-page > header { padding: 20px 24px; color: #fff; background: #376d83; }.transit-page > header h1 { margin: 0 0 5px; font-size: 19px; }.transit-page > header p { margin: 0; font-size: 11px; }
.ticket-row { display: grid; grid-template-columns: 75px 1fr auto; align-items: center; padding: 15px 10px; border-bottom: 1px solid #ddd; }.ticket-row time { font-size: 20px; }.ticket-row span { font-size: 12px; line-height: 1.5; }.ticket-row strong { color: #2f765b; font-size: 11px; }.ticket-row.muted { color: #777; }
.web-search-page { padding: 42px 45px; }.search-brand { margin-bottom: 20px; color: #356c8a; font-family: SimSun, serif; font-size: 32px; }.web-search-page form, .browser-newtab form { display: flex; }.web-search-page form input, .browser-newtab form input { flex: 1; min-width: 0; height: 40px; border: 1px solid #9eb0bc; padding: 0 12px; }.web-search-page form button, .browser-newtab form button { width: 76px; border: 0; color: #fff; background: #3e718f; }
.web-results { max-width: 680px; margin-top: 22px; }.web-results > p { color: #888; font-size: 10px; }.web-results article { margin: 0 0 18px; }.web-results h2 { margin: 0 0 3px; color: #315f7c; font-size: 15px; font-weight: 500; }.web-results small { color: #547b4d; }.web-results article p { margin: 5px 0 0; color: #555; font-size: 11px; }
.browser-newtab { height: 100%; display: grid; align-content: center; justify-items: center; padding: 25px; background: #f3f5f6; }.newtab-clock { color: #415966; font-size: 44px; font-weight: 300; }.browser-newtab > p { margin: 4px 0 26px; color: #7a858c; font-size: 11px; }.browser-newtab form { width: min(520px, 100%); }.newtab-shortcuts { display: flex; gap: 9px; margin-top: 17px; }.newtab-shortcuts button { border: 1px solid #c8d0d5; padding: 8px 11px; color: #4c5b64; background: #fff; font-size: 10px; }
.browser-manager { min-height: 100%; padding: 24px 30px; background: #fff; }.browser-manager > header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 13px; border-bottom: 1px solid #d8dde0; }.browser-manager h2 { margin: 0; font-size: 18px; font-weight: 500; }.browser-manager header span { color: #7b848a; font-size: 10px; }
.browser-history-list { list-style: none; margin: 0; padding: 9px 0; }.browser-history-list li { display: grid; grid-template-columns: 55px 1fr; align-items: center; min-height: 39px; border-bottom: 1px solid #edf0f1; font-size: 11px; }.browser-history-list time { color: #8b9297; }.browser-history-list button { justify-self: start; border: 0; padding: 0; color: #3c6680; background: transparent; text-align: left; }
.recent-tabs-list, .browser-download-list { display: grid; }.recent-tabs-list > button { display: grid; gap: 3px; border: 0; border-bottom: 1px solid #e2e6e8; padding: 10px 4px; color: #37454e; background: #fff; text-align: left; }.recent-tabs-list small { color: #859098; }.recent-tabs-list .restore-all-row { margin-top: 12px; border: 1px solid #9fb2be; padding: 9px; color: #355d76; background: #f5f8fa; text-align: center; }
.browser-download-list > div { display: grid; gap: 4px; padding: 13px 4px; border-bottom: 1px solid #e0e4e6; font-size: 11px; }.browser-download-list span { color: #788188; }
.cloud-file-app, .cloud-mail-app, .cloud-chat-app { height: 100%; display: grid; grid-template-columns: 165px minmax(0, 1fr); background: #fff; }
.cloud-file-app aside, .cloud-mail-app aside, .cloud-chat-app aside { padding: 14px 9px; border-right: 1px solid #d8dde0; background: #f2f4f5; }
.cloud-file-app aside strong { display: block; padding: 4px 9px 9px; color: #747e85; font-size: 10px; }
.cloud-file-app aside button, .cloud-mail-app aside > button { width: 100%; border: 0; padding: 8px 9px; color: #52606a; background: transparent; text-align: left; font-size: 11px; }.cloud-file-app aside button.active, .cloud-mail-app aside button.active { color: #fff; background: #4d7086; }
.cloud-file-app main, .cloud-mail-app main { min-width: 0; overflow: auto; }.cloud-file-app main > header { display: flex; justify-content: space-between; padding: 17px; border-bottom: 1px solid #ddd; }.cloud-file-app h2 { margin: 0; font-size: 17px; }.cloud-file-app main > header span { color: #7b848a; font-size: 10px; }
.cloud-file-heading, .cloud-file-row { display: grid; grid-template-columns: minmax(180px, 1fr) 115px 130px; align-items: center; min-height: 38px; padding: 0 13px; border-bottom: 1px solid #e3e6e8; font-size: 10px; }.cloud-file-heading { color: #727b82; background: #f5f6f7; }.cloud-file-row strong { overflow: hidden; font-size: 11px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }.cloud-file-row time, .cloud-file-row span { color: #768087; }.cloud-file-row.muted { opacity: .58; }
.compose-cloud-mail { margin-bottom: 12px; color: #fff !important; background: #3f6e8a !important; text-align: center !important; }.cloud-mail-app main > header { padding: 10px; border-bottom: 1px solid #ddd; }.cloud-mail-app main > header input { width: 100%; height: 31px; border: 1px solid #d0d6da; padding: 0 10px; }.cloud-mail-row { display: grid; grid-template-columns: 90px minmax(0, 1fr) 45px; min-height: 41px; align-items: center; padding: 0 12px; border-bottom: 1px solid #e4e7e9; font-size: 10px; }.cloud-mail-row.unread { background: #eef4f7; }.cloud-mail-row span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.cloud-mail-row time { color: #81898f; text-align: right; }.cloud-mail-reader { padding: 20px 24px; }.cloud-mail-reader h2 { margin: 0 0 7px; font-size: 17px; }.mail-meta { color: #7a8389; font-size: 10px; }.cloud-mail-reader p:not(.mail-meta) { font-size: 12px; line-height: 1.8; }
.cloud-chat-app { grid-template-columns: 205px minmax(0, 1fr); }.cloud-chat-app aside { padding: 0; }.cloud-chat-app aside > header { padding: 14px; border-bottom: 1px solid #d8dde0; font-size: 14px; }.cloud-chat-app aside button { width: 100%; display: grid; grid-template-columns: 34px 1fr; gap: 8px; align-items: center; border: 0; border-bottom: 1px solid #e1e5e7; padding: 9px; color: #46525a; background: transparent; text-align: left; }.cloud-chat-app aside button.active { background: #dce7ed; }.cloud-chat-app aside button > span { width: 32px; height: 32px; display: grid; place-items: center; color: #fff; background: #55788d; }.cloud-chat-app aside button div { min-width: 0; display: grid; gap: 3px; }.cloud-chat-app aside small { overflow: hidden; color: #788188; text-overflow: ellipsis; white-space: nowrap; }.cloud-chat-app main { min-width: 0; display: grid; grid-template-rows: 47px 1fr 48px; }.cloud-chat-app main > header { display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border-bottom: 1px solid #d9dee1; }.cloud-chat-app main > header span { color: #7e888f; font-size: 10px; }.chat-thread { overflow: auto; padding: 15px; background: #f3f5f6; }.chat-time, .chat-system { color: #899198; font-size: 9px; text-align: center; }.chat-bubble { max-width: 72%; margin: 8px 0; padding: 9px 11px; font-size: 11px; line-height: 1.6; }.chat-bubble.incoming { background: #fff; }.chat-bubble.outgoing { margin-left: auto; background: #dcebf2; }.cloud-chat-app footer { display: flex; padding: 8px; border-top: 1px solid #d9dee1; }.cloud-chat-app footer input { flex: 1; border: 1px solid #d0d6da; padding: 0 9px; }.cloud-chat-app footer button { width: 60px; border: 0; color: #fff; background: #6e858f; }
.cloud-photos-app { min-height: 100%; padding: 18px; background: #f3f4f5; }.cloud-photos-app > header, .cloud-trash-app > header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }.cloud-photos-app h2, .cloud-trash-app h2 { margin: 0 0 4px; font-size: 18px; }.cloud-photos-app header p { margin: 0; color: #798188; font-size: 10px; }.cloud-photos-app header button, .cloud-trash-app header button { border: 1px solid #bdc6cc; padding: 6px 9px; color: #53626b; background: #fff; font-size: 10px; }.cloud-photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }.cloud-photo-grid figure { margin: 0; background: #fff; }.cloud-photo-grid img { width: 100%; aspect-ratio: 4 / 3; display: block; object-fit: cover; }.cloud-photo-grid figcaption { padding: 7px; color: #5e686f; font-size: 9px; }
.cloud-trash-app { min-height: 100%; padding: 18px; background: #fff; }
.history-copy { padding: 22px 25px; }
.history-meta { margin: 0 0 14px; color: #7a838a; font-size: 11px; }
.history-message { padding: 15px; border-left: 3px solid #64819a; background: #f5f8fa; }
.history-message strong { color: #334b60; font-size: 13px; }
.history-message p { margin: 9px 0 0; color: #3d474e; font-size: 13px; line-height: 1.8; }
.history-message code { padding: 1px 4px; color: #273d4f; background: #e5edf3; font-family: Consolas, monospace; }
#file-footer-note { color: #737f89; }

.library-header { position: relative; isolation: isolate; display: flex; align-items: end; justify-content: space-between; min-height: 150px; padding: 22px 24px; overflow: hidden; color: #fff; background: #314b61 url("assets/history-archive-reading-room.png") center 48% / cover no-repeat; }
.library-header::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(25, 47, 65, .94) 0%, rgba(25, 47, 65, .77) 48%, rgba(25, 47, 65, .42) 100%); }
.library-header p { margin-bottom: 7px; color: #d6e0e9; font-size: 12px; }
.library-header h1 { margin: 0; font-family: SimSun, "Songti SC", serif; font-size: 26px; font-weight: 500; }
.library-header nav { display: flex; gap: 20px; font-size: 12px; }
.library-header a:hover { text-decoration: underline; }
.library-search { display: flex; margin-top: 18px; padding: 22px; border: 1px solid var(--line); background: #fff; }
.library-search select { width: 118px; border: 1px solid #b9c0c8; border-right: 0; padding: 0 8px; color: #50575e; background: #f7f8f9; }
.library-search input { flex: 1; min-width: 0; height: 42px; border: 1px solid #b9c0c8; padding: 0 13px; outline: 0; }
.library-search input:focus { border-color: var(--navy); }
.library-search button { width: 88px; }
.library-tips { padding: 11px 22px; color: #767d84; background: #fff; border: 1px solid var(--line); border-top: 0; font-size: 12px; }
.library-tips button { border: 0; margin-right: 7px; padding: 0; color: var(--navy); background: transparent; }
.library-tips button:hover { text-decoration: underline; }
.search-hint { margin: 15px 0; padding: 12px 15px; border-left: 3px solid #8b9cac; color: #687078; background: #fff; font-size: 12px; }
.search-results { margin-bottom: 28px; }
.result-summary { padding: 9px 13px; border: 1px solid var(--line); color: #686f76; background: #f6f7f8; font-size: 12px; }
.result-row { display: grid; grid-template-columns: 42px minmax(0, 1fr) 160px; gap: 15px; padding: 17px 15px; border: 1px solid var(--line); border-top: 0; background: #fff; }
.result-index { color: #888f95; font-size: 13px; text-align: center; }
.result-row h3 { margin-bottom: 8px; color: var(--navy); font-size: 15px; font-weight: 600; }
.result-row p { margin-bottom: 0; color: #535b62; font-size: 12px; line-height: 1.7; }
.result-meta { color: #747b82; font-size: 11px; line-height: 1.7; }
.result-image { float: left; width: 168px; aspect-ratio: 4 / 3; margin: 0 14px 8px 0; border: 1px solid #ccd1d5; object-fit: cover; background: #e8eaec; }
.result-row.has-result-image > div:nth-child(2)::after { content: ""; display: block; clear: both; }
.search-task-complete { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 12px; padding: 13px 15px; border: 1px solid #c9dbd0; color: #3e5c4b; background: #f4f9f6; font-size: 12px; }
.search-task-complete .secondary-button { white-space: nowrap; }
.application-directory { margin-bottom: 24px; }
.application-grid.large { grid-template-columns: repeat(6, 1fr); padding: 18px; }

.document-dialog, .access-dialog { padding: 0; border: 0; box-shadow: 0 22px 70px rgba(14, 27, 39, .32); }
.document-dialog { width: min(920px, calc(100% - 32px)); }
.access-dialog { width: min(520px, calc(100% - 32px)); }
.document-dialog::backdrop, .access-dialog::backdrop { background: rgba(18, 27, 35, .58); }
.document-dialog > article, .access-dialog > article { background: #fff; }
.document-dialog-header, .access-dialog header { display: flex; justify-content: space-between; gap: 20px; padding: 17px 21px; border-bottom: 1px solid var(--line); background: #f7f8f9; }
.document-dialog-header p { margin-bottom: 4px; color: #747b82; font-size: 11px; }
.document-dialog-header h2, .access-dialog h2 { margin: 0 0 5px; font-size: 17px; font-weight: 600; }
#document-meta { margin-bottom: 0; }
.document-dialog-header > button, .access-dialog header > button { width: 30px; height: 30px; border: 0; color: #626970; background: transparent; font-size: 23px; line-height: 1; }
.document-body { max-height: min(68vh, 720px); overflow: auto; padding: 28px 36px; background: #e9ebee; }
.document-page { width: min(760px, 100%); min-height: 850px; margin: 0 auto; padding: 56px 60px 64px; color: #111; background: #fff; box-shadow: 0 2px 9px rgba(39, 48, 56, .18); font-family: SimSun, "Songti SC", serif; font-size: 14px; line-height: 1.85; }
.document-page h1 { margin-bottom: 24px; text-align: center; font-size: 22px; line-height: 1.55; }
.document-page .document-kicker { margin-bottom: 8px; text-align: center; font-size: 13px; }
.document-page .document-number { margin-bottom: 18px; text-align: right; font-size: 12px; }
.document-page h2 { margin: 20px 0 7px; font-size: 16px; }
.document-page h3 { margin: 15px 0 6px; font-size: 14px; }
.document-page p { margin-bottom: 10px; text-align: justify; text-indent: 2em; }
.document-page p.no-indent, .document-page .document-note p, .document-page td p { text-indent: 0; }
.document-page ol, .document-page ul { margin: 8px 0 12px; padding-left: 26px; }
.document-page li { margin-bottom: 5px; }
.document-page table { width: 100%; margin: 12px 0 18px; border-collapse: collapse; font-family: var(--font); font-size: 11px; line-height: 1.55; }
.document-page th, .document-page td { border: 1px solid #444; padding: 6px 7px; vertical-align: top; }
.document-page th { background: #f1f1f1; font-weight: 700; text-align: center; }
.document-page .clue-row td { background: #fff9ea; }
.document-page .clue-row td:first-child { border-left: 3px solid #9a722d; }
.document-page .clue-term { color: inherit; font-weight: 400; border-bottom: 1px solid #a87d37; }
.mail-clue { font-weight: 400; border-bottom: 1px solid #8b6a34; }
.passcode-source-note { margin: 14px 0; padding: 9px 11px; border-left: 2px solid #9da9b3; color: #59636c; background: #f6f7f8; font-size: 12px; line-height: 1.65; }
.document-page .document-note { margin: 15px 0; padding: 10px 12px; border: 1px solid #888; font-size: 12px; }
.document-page .document-signature { margin: 34px 10px 0 auto; width: 260px; text-align: center; line-height: 1.9; }
.document-page .sheet-title { margin-bottom: 18px; font-size: 20px; text-align: left; }
.document-page .sheet-meta { margin-bottom: 14px; font-family: var(--font); color: #555; font-size: 11px; }
.document-page .sheet-meta p { margin: 3px 0; text-indent: 0; }
.document-page .log-block { padding: 14px; border: 1px solid #aaa; background: #fafafa; font-family: Consolas, "Courier New", monospace; font-size: 12px; white-space: pre-wrap; }
.evidence-photo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 20px 0 24px; font-family: var(--font); }
.evidence-photo-grid figure { margin: 0; border: 1px solid #b8bdc2; background: #f8f8f7; }
.evidence-photo-grid img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #ddd; }
.evidence-photo-grid figcaption { display: grid; gap: 4px; min-height: 70px; padding: 9px 10px 10px; color: #343a3f; font-size: 11px; line-height: 1.55; }
.evidence-photo-grid figcaption strong { font-size: 12px; }
.evidence-photo-grid figcaption span { color: #697078; }
.evidence-photo-grid .low-detail-preview img { filter: saturate(.82) contrast(.92) blur(.35px); }
.evidence-photo-grid .unsafe-text-preview { grid-column: 1 / -1; }
.evidence-photo-grid .unsafe-text-preview img { height: 220px; aspect-ratio: auto; object-position: center 72%; filter: saturate(.75) contrast(.9); }
.document-map-reference { margin: 18px 0 22px; border: 1px solid #aeb4b9; background: #f6f7f7; }
.document-map-reference img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.document-map-reference figcaption { padding: 8px 10px; color: #697078; font-family: var(--font); font-size: 10px; line-height: 1.6; }
.status-mark { padding: 1px 4px; color: inherit; background: #fff1bd; }
.document-page .locked-reference { display: grid; grid-template-columns: 52px 1fr; gap: 14px; margin-top: 20px; padding: 18px; border: 1px solid #b4bbc2; background: #f6f7f8; font-family: var(--font); }
.document-page .locked-reference span { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; background: #758696; font-weight: 700; }
.document-page .locked-reference h3 { margin-top: 0; }
.document-page .locked-reference p { margin-bottom: 4px; text-indent: 0; }
.document-dialog > article > footer, .access-dialog footer { min-height: 57px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 20px; border-top: 1px solid var(--line); background: #f8f9fa; }
#document-status { color: #747b82; font-size: 11px; }
.document-dialog footer > div { display: flex; gap: 8px; }
.access-copy { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 15px; padding: 24px; }
.access-lock { width: 44px; height: 44px; display: grid; place-items: center; color: #fff; background: #b26c20; font-size: 23px; font-weight: 700; }
.access-copy p { line-height: 1.7; }
.access-copy dl { margin: 18px 0 0; font-size: 12px; }
.access-copy dl div { display: grid; grid-template-columns: 78px 1fr; padding: 7px 0; border-top: 1px solid var(--line-light); }
.access-copy dt { color: #747b82; }
.access-copy dd { margin: 0; }
.access-dialog footer { justify-content: flex-end; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 20; max-width: min(440px, calc(100% - 30px)); padding: 11px 17px; color: #fff; background: rgba(32, 39, 45, .94); box-shadow: 0 4px 16px rgba(0, 0, 0, .25); opacity: 0; pointer-events: none; transform: translate(-50%, 10px); transition: opacity .18s ease, transform .18s ease; }
.toast.visible { opacity: 1; transform: translate(-50%, 0); }
.mail-notification { position: fixed; right: 24px; bottom: 24px; z-index: 25; display: grid; grid-template-columns: 34px minmax(0, 1fr) auto 22px; align-items: center; gap: 10px; width: min(390px, calc(100% - 32px)); padding: 13px; border: 1px solid #9fb1c1; color: #263747; background: #fff; box-shadow: 0 8px 28px rgba(21, 38, 54, .24); }
.mail-notification-mark { width: 32px; height: 32px; display: grid; place-items: center; color: #fff; background: #466b8d; font-size: 12px; font-weight: 700; }
.mail-notification strong { display: block; color: #263747; font-size: 13px; }
.mail-notification p { overflow: hidden; margin: 4px 0 0; color: #66727c; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.mail-notification button { border: 1px solid #a6b6c5; padding: 5px 9px; color: #355a7a; background: #f7fafc; font-size: 12px; }
.mail-notification button:last-child { border: 0; padding: 4px; color: #73808a; background: transparent; font-size: 18px; line-height: 1; }
.portal-footer { margin-top: auto; color: #bfc9d3; background: #273a4b; font-size: 11px; }
.portal-footer .portal-container { min-height: 54px; display: flex; align-items: center; justify-content: space-between; }
.portal.cloud-session-mode .utility-bar,
.portal.cloud-session-mode .portal-header,
.portal.cloud-session-mode .portal-footer { display: none; }
.portal.cloud-session-mode .portal-main { padding: 0; background: #263641; }
.portal.cloud-session-mode #view-clouddesk { width: 100%; max-width: none; min-height: 100vh; }
.portal.cloud-session-mode #view-clouddesk > .portal-location { display: none; }
.portal.cloud-session-mode .cloud-desktop { min-height: 100vh; }

@media (max-width: 1050px) {
  .header-content { grid-template-columns: 280px 1fr auto; gap: 18px; }
  .account-area { min-width: 150px; }
  .portal-columns { grid-template-columns: 1fr 1fr; }
  .right-column { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .application-grid.large { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 800px) {
  .portal-container { width: min(100% - 20px, 1200px); }
  .login-header { padding: 0 18px; }
  .university-seal-image { width: 46px; height: 46px; }
  .login-header nav { display: none; }
  .login-stage { width: calc(100% - 28px); justify-content: center; }
  .login-panel { width: min(386px, 100%); }
  .utility-content > span, .header-search, .account-area small { display: none; }
  .utility-content { justify-content: flex-end; }
  .header-content { height: 68px; grid-template-columns: 1fr auto; }
  .portal-name strong { font-size: 22px; }
  .portal-name small { font-size: 14px; }
  .portal-seal { width: 39px; height: 39px; font-size: 19px; }
  .account-area { min-width: auto; grid-template-columns: 34px auto 18px; }
  .main-nav { height: auto; overflow-x: auto; }
  .main-nav .portal-container { width: max-content; min-width: 100%; }
  .nav-item { min-width: 104px; height: 42px; font-size: 13px; }
  .portal-columns, .news-columns { grid-template-columns: 1fr; }
  .right-column { grid-column: auto; grid-template-columns: 1fr; }
  .message-shell { grid-template-columns: 1fr; }
  .message-folders { border-right: 0; border-bottom: 1px solid var(--line); }
  .message-folders nav { grid-template-columns: repeat(5, minmax(90px, 1fr)); overflow-x: auto; }
  .message-folders nav button { padding: 0 13px; }
  .compose-button { width: 110px; }
  .message-table-heading, .message-row { grid-template-columns: 90px minmax(0, 1fr) 85px; }
  .message-reader { margin: 10px; }
  .message-copy { padding: 20px 18px 10px; }
  .file-service-heading { align-items: start; }
  .storage-summary { min-width: auto; }
  .share-summary { align-items: flex-start; flex-direction: column; }
  .share-summary dl { width: 100%; }
  .task-list { grid-template-columns: 1fr; }
  .task-list li { min-height: 0; border-right: 0; border-bottom: 1px solid #e1e5e8; }
  .task-list li:last-child { border-bottom: 0; }
  .file-service-layout { grid-template-columns: 1fr; }
  .folder-panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .folder-panel nav { grid-template-columns: 1fr 1fr; }
  .folder-item { padding-left: 12px; }
  .permission-note { display: none; }
  .file-table-heading, .file-row { grid-template-columns: minmax(210px, 1fr) 95px 65px; }
  .file-table-heading span:nth-child(2), .file-row > span:nth-child(2) { display: none; }
  .library-header { align-items: flex-start; flex-direction: column; gap: 18px; }
  .library-header nav { flex-wrap: wrap; }
  .result-row { grid-template-columns: 30px minmax(0, 1fr); }
  .result-meta { grid-column: 2; }
  .result-image { width: 145px; }
  .application-grid.large { grid-template-columns: repeat(3, 1fr); }
  .document-body { padding: 12px; }
  .document-page { min-height: 0; padding: 34px 25px; }
  .evidence-photo-grid { grid-template-columns: 1fr; }
  #view-clouddesk { width: 100%; }
  .cloud-desktop { min-height: 760px; }
  .desktop-icons { width: 100%; grid-template-columns: repeat(7, minmax(66px, 1fr)); grid-auto-rows: 76px; padding: 8px; overflow-x: auto; }
  .desktop-icons button { width: 66px; }
  .cloud-window { top: 124px; right: 9px; bottom: 52px; left: 9px; }
  .browser-tab-wrap { width: 142px; }
  .map-page { grid-template-columns: 1fr; }
  .map-page aside { display: none; }
  .cloud-file-app, .cloud-mail-app { grid-template-columns: 135px minmax(0, 1fr); }
  .cloud-chat-app { grid-template-columns: 175px minmax(0, 1fr); }
  .cloud-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .login-screen { grid-template-rows: 68px 1fr auto; }
  .university-identity strong { font-size: 21px; }
  .login-panel-title { padding-left: 22px; padding-right: 22px; }
  .login-panel form { padding-left: 22px; padding-right: 22px; }
  .portal-name { gap: 8px; }
  .portal-name strong { font-size: 20px; letter-spacing: 1px; }
  .portal-name small { font-size: 12px; }
  .account-area strong { max-width: 42px; overflow: hidden; white-space: nowrap; }
  .home-notice > strong { width: 72px; }
  .home-notice time { display: none; }
  .application-grid { grid-template-columns: repeat(3, 1fr); }
  .page-heading { display: block; }
  .page-heading p { margin-top: 5px; }
  .message-table-heading, .message-row { grid-template-columns: 82px minmax(0, 1fr); }
  .message-table-heading span:last-child, .message-row time { display: none; }
  .message-reader dl div { display: block; margin-top: 8px; }
  .message-reader dt { width: auto; margin-bottom: 2px; }
  .message-actions { flex-wrap: wrap; padding-left: 18px; }
  .file-service-heading { display: block; }
  .storage-summary { margin-top: 10px; text-align: left; }
  .file-service-tabs { overflow-x: auto; }
  .file-service-tabs button { min-width: 108px; }
  .share-summary dl { display: grid; gap: 8px; }
  .share-summary dl div { border-left: 0; padding-left: 0; }
  .research-task > header, .task-completion, .task-followup { align-items: flex-start; flex-direction: column; }
  .task-list li { padding: 14px 12px; }
  .task-list p { min-height: 0; }
  .task-followup .secondary-button { width: 100%; }
  .file-toolbar { height: auto; align-items: stretch; gap: 7px; flex-direction: column; padding: 7px; }
  .toolbar-view input { flex: 1; width: auto; min-width: 0; }
  .tree-root, .tree-branch { display: none; }
  .tree-project { margin-left: 0; }
  .folder-panel nav { grid-template-columns: 1fr 1fr; }
  .file-table-heading, .file-row { grid-template-columns: minmax(170px, 1fr) 58px; }
  .file-table-heading span:nth-child(3), .file-row > time { display: none; }
  .file-primary { grid-template-columns: 29px minmax(0, 1fr); gap: 7px; }
  .file-icon { width: 27px; height: 31px; }
  .library-search { padding: 13px; }
  .library-search select { display: none; }
  .library-search input { height: 39px; }
  .library-search button { width: 68px; }
  .result-image { float: none; width: 100%; max-height: 230px; margin: 0 0 10px; object-fit: cover; }
  .application-grid.large { grid-template-columns: repeat(2, 1fr); }
  .document-dialog > article > footer { align-items: flex-start; flex-direction: column; }
  .document-dialog footer > div { width: 100%; }
  .document-dialog footer button { flex: 1; }
  .collaborator-access-shell { margin: 16px 0 28px; }
  .collaborator-access-shell > header { padding: 22px 19px; }
  .collaborator-access-shell > header span { position: static; display: inline-block; margin-top: 12px; }
  .access-panel { grid-template-columns: 1fr; padding: 24px 19px; }
  .workspace-heading, .workspace-task, .workspace-submit, .workspace-submitted { align-items: flex-start; flex-direction: column; }
  .workspace-heading { padding: 19px; }
  .workspace-task > p { max-width: none; }
  .workspace-file-heading, .workspace-file { grid-template-columns: minmax(0, 1fr) 72px; }
  .workspace-file-heading span:last-child, .workspace-file > span:last-child { display: none; }
  .clouddesk-copy { padding: 24px 19px; }
  .clouddesk-entry-actions { align-items: stretch; flex-direction: column; }
  .clouddesk-copy .secondary-button, .browser-recovery .secondary-button { margin-left: 0; }
  .cloud-desktop { min-height: 740px; }
  .desktop-topbar { grid-template-columns: 1fr auto; }
  .desktop-topbar > span { display: none; }
  .desktop-icons { grid-template-columns: repeat(4, minmax(64px, 1fr)); grid-auto-rows: 72px; }
  .desktop-taskbar button { padding: 0 8px; }
  .desktop-taskbar button:not(#desktop-return) { font-size: 0; }
  .desktop-taskbar button span { margin: 0; font-size: 11px; }
  .cloud-window { top: 190px; }
  .browser-toolbar { grid-template-columns: 28px 28px minmax(80px, 1fr) auto; }
  .browser-toolbar button[data-browser-tool="history"], .browser-toolbar button[data-browser-tool="recent"] { display: none; }
  .browser-tabs { overflow-x: auto; }
  .browser-tab-wrap { min-width: 128px; }
  .browser-recovery { padding: 12px; }
  .browser-recovery > div { padding: 22px 17px; }
  .browser-recovery > div > div { display: grid; gap: 7px; }
  .web-search-page { padding: 28px 18px; }
  .cached-project-page > header, .academic-page > header { padding: 17px; }
  .webpage section { padding: 17px; }
  .company-page > header nav, .forum-page > header nav { display: none; }
  .cloud-file-app, .cloud-mail-app, .cloud-chat-app { grid-template-columns: 1fr; }
  .cloud-file-app aside, .cloud-mail-app aside, .cloud-chat-app aside { display: none; }
  .cloud-file-heading, .cloud-file-row { grid-template-columns: minmax(150px, 1fr) 90px; }
  .cloud-file-heading span:last-child, .cloud-file-row span:last-child { display: none; }
  .cloud-mail-reader { padding: 16px; }
  .cloud-photo-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Refined CloudDesk: macOS, Chrome, WeChat and period web references */
.cloud-desktop {
  min-height: 100vh;
  color: #1d1d1f;
  background-color: #557168;
  background-image: url("assets/clouddesk-wallpaper.png");
  background-position: center;
  background-size: cover;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  box-shadow: none;
}
.cloud-desktop::before { inset: 29px 0 0; background: rgba(22, 42, 47, .05); }
.desktop-topbar {
  height: 29px;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  color: #111;
  background: rgba(242, 244, 243, .78);
  border-bottom: 1px solid rgba(34, 48, 48, .18);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 1px 8px rgba(16, 34, 38, .1);
  font-size: 12px;
}
.mac-menu-left, .mac-menu-right { height: 100%; display: flex; align-items: center; gap: 2px; }
.mac-menu-left button, .mac-menu-right button { height: 24px; border: 0; border-radius: 4px; padding: 0 8px; color: inherit; background: transparent; font-size: 12px; }
.mac-menu-left button:hover, .mac-menu-right button:hover { background: rgba(20, 27, 29, .08); }
.mac-menu-left strong { margin: 0 7px 0 4px; font-weight: 650; }
.mac-menu-left .apple-menu { width: 27px; padding: 0; font-size: 12px; }
.mac-menu-right { gap: 9px; font-weight: 550; }
.mac-menu-right span { min-width: 16px; text-align: center; }
.mac-menu-right time { margin-left: 1px; font-size: 12px; }
.desktop-icons {
  position: absolute;
  top: 41px;
  right: 12px;
  width: 92px;
  display: grid;
  grid-auto-rows: 96px;
  gap: 7px;
  padding: 0;
  overflow: visible;
}
.desktop-icons button { width: 86px; height: 92px; gap: 7px; border-radius: 5px; padding: 5px 3px; text-shadow: 0 1px 3px rgba(0, 0, 0, .75); }
.desktop-icons button:hover { border-color: rgba(255, 255, 255, .35); background: rgba(45, 79, 85, .22); }
.desktop-icons strong { max-width: 84px; color: #fff; font-size: 11px; font-weight: 500; white-space: normal; text-align: center; }
.desktop-file-icon { position: relative; width: 50px; height: 47px; display: block; filter: drop-shadow(0 2px 3px rgba(10, 28, 34, .35)); }
.folder-stack { height: 40px; margin-top: 7px; border-radius: 5px; background: #6fb7ee; }
.folder-stack::before { content: ""; position: absolute; top: -6px; left: 2px; width: 23px; height: 11px; border-radius: 4px 4px 0 0; background: #8bc9f5; }
.folder-stack i { position: absolute; inset: 5px 3px 3px; border-radius: 3px; background: rgba(255,255,255,.18); }
.download-stack { display: grid; place-items: center; border-radius: 6px; color: #fff; background: #5ca8dc; font-size: 27px; }
.drive-stack { border-radius: 6px; background: #d9dcde; box-shadow: inset 0 -8px 0 #bfc4c7, inset 0 0 0 1px #9aa2a7; }
.drive-stack::before { content: ""; position: absolute; right: 7px; bottom: 4px; width: 4px; height: 4px; border-radius: 50%; background: #58be68; }
.desktop-dock {
  position: absolute;
  right: auto;
  bottom: 8px;
  left: 50%;
  z-index: 12;
  height: 70px;
  display: flex;
  align-items: end;
  gap: 7px;
  padding: 7px 9px 6px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 18px;
  background: rgba(232, 235, 234, .42);
  -webkit-backdrop-filter: blur(22px) saturate(1.45);
  backdrop-filter: blur(22px) saturate(1.45);
  box-shadow: 0 9px 28px rgba(12, 31, 36, .28), inset 0 1px rgba(255,255,255,.35);
  transform: translateX(-50%);
}
.desktop-dock button { position: relative; width: 53px; height: 57px; display: grid; place-items: center; border: 0; padding: 0; color: #222; background: transparent; }
.desktop-dock button:hover { background: transparent; transform: translateY(-7px) scale(1.08); }
.desktop-dock button small { position: absolute; top: -34px; left: 50%; display: none; padding: 5px 8px; border-radius: 6px; color: #fff; background: rgba(38,38,40,.88); font-size: 10px; white-space: nowrap; transform: translateX(-50%); }
.desktop-dock button:hover small { display: block; }
.dock-icon { position: relative; width: 49px; height: 49px; display: grid; place-items: center; overflow: hidden; border-radius: 11px; box-shadow: 0 2px 6px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.22); font-size: 23px; font-weight: 600; }
.finder-dock { background: #69b9ec; }
.finder-dock::before, .finder-dock::after { content: ""; position: absolute; top: 0; bottom: 0; width: 50%; }
.finder-dock::before { left: 0; background: #5badde; }
.finder-dock::after { right: 0; background: #d7eefc; }
.finder-dock i { position: relative; z-index: 2; width: 25px; height: 29px; border-bottom: 2px solid #183b57; }
.finder-dock i::before { content: ""; position: absolute; top: 6px; left: 2px; width: 4px; height: 5px; border-left: 2px solid #193e5b; border-right: 2px solid #193e5b; }
.finder-dock i::after { content: ""; position: absolute; right: 1px; bottom: 7px; left: 1px; height: 8px; border-bottom: 2px solid #193e5b; border-radius: 50%; }
.chrome-dock { border-radius: 50%; background: conic-gradient(#e84b3c 0 33%, #eac33d 33% 66%, #4fac62 66%); }
.chrome-dock i { width: 21px; height: 21px; border: 4px solid #eef5f8; border-radius: 50%; background: #3f8ed3; }
.mail-dock { color: #fff; background: #4f9eea; }
.wechat-dock { background: #31c85a; }
.wechat-dock i, .wechat-dock b { position: absolute; border-radius: 50%; background: #fff; }
.wechat-dock i { width: 26px; height: 21px; left: 8px; top: 11px; }.wechat-dock b { width: 21px; height: 17px; right: 7px; bottom: 9px; }
.wechat-dock i::before, .wechat-dock i::after, .wechat-dock b::before, .wechat-dock b::after { content: ""; position: absolute; top: 7px; width: 3px; height: 3px; border-radius: 50%; background: #31c85a; }
.wechat-dock i::before, .wechat-dock b::before { left: 6px; }.wechat-dock i::after, .wechat-dock b::after { right: 6px; }
.photos-dock { background: #fff; }
.photos-dock i { width: 39px; height: 39px; border-radius: 50%; background: conic-gradient(#ef5350, #ffb74d, #ffee58, #66bb6a, #42a5f5, #7e57c2, #ec407a, #ef5350); }
.photos-dock i::after { content: ""; position: absolute; inset: 13px; border-radius: 50%; background: #fff; }
.downloads-dock { color: #2879bb; background: rgba(239,246,251,.92); }
.trash-dock { border-radius: 5px 5px 10px 10px; background: rgba(223,231,234,.92); box-shadow: inset 0 0 0 2px rgba(89,108,118,.35); }
.trash-dock::before { content: ""; position: absolute; top: -3px; width: 42px; height: 5px; border-radius: 3px; background: #d7e0e3; box-shadow: inset 0 0 0 1px rgba(89,108,118,.35); }
.trash-dock i { width: 23px; height: 28px; background: repeating-linear-gradient(90deg, transparent 0 5px, rgba(82,113,127,.35) 5px 7px); }
.exit-dock { color: #fff; background: #6d7880; }
.dock-divider { width: 1px; height: 47px; margin: 0 2px; background: rgba(52, 62, 66, .3); }
.cloud-window {
  top: 48px;
  right: 120px;
  bottom: 94px;
  left: 54px;
  overflow: hidden;
  border: 1px solid rgba(49, 57, 62, .28);
  border-radius: 12px;
  color: #1f2428;
  background: rgba(247, 247, 248, .97);
  box-shadow: 0 26px 70px rgba(12, 27, 32, .38), 0 3px 12px rgba(12, 27, 32, .18);
}
.cloud-window-titlebar {
  position: relative;
  height: 38px;
  justify-content: center;
  padding: 0;
  color: #26282a;
  background: rgba(244, 244, 245, .92);
  border-bottom: 1px solid #d0d0d1;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.cloud-window-titlebar > strong { font-size: 12px; font-weight: 600; }
.cloud-window-titlebar .window-controls { position: absolute; left: 13px; height: 100%; display: flex; align-items: center; gap: 8px !important; }
.window-controls button { width: 12px; height: 12px; border: 1px solid rgba(0,0,0,.14); border-radius: 50%; padding: 0; }
.traffic-close { background: #ff5f57 !important; }.traffic-minimize { background: #febc2e !important; }.traffic-zoom { background: #28c840 !important; }
.window-controls button:hover { box-shadow: inset 0 0 0 1px rgba(0,0,0,.14); }
#cloud-window-mark { position: absolute; right: 13px; width: 22px; height: 22px; border: 0; border-radius: 6px; color: #fff; background: #4c8fc0; }
.cloud-window-content { height: calc(100% - 38px); background: #f7f7f8; }

/* Chrome on macOS */
.cloud-window[data-app="browser"] .cloud-window-titlebar { display: none; }
.cloud-window[data-app="browser"] .cloud-window-content { height: 100%; }
.chrome-browser { grid-template-rows: 40px 42px 28px minmax(0, 1fr); background: #fff; }
.browser-tabs { height: 40px; align-items: end; padding: 8px 8px 0 82px; background: #dfe1e4; }
.browser-tabs::before { content: ""; position: absolute; top: 14px; left: 14px; width: 12px; height: 12px; border-radius: 50%; background: #ff5f57; box-shadow: 20px 0 #febc2e, 40px 0 #28c840; }
.chrome-tab-strip { min-width: 0; display: flex; align-items: end; gap: 1px; overflow: hidden; }
.browser-tab-wrap { position: relative; width: 184px; min-width: 92px; height: 32px; grid-template-columns: 18px minmax(0, 1fr) 25px; border-radius: 9px 9px 0 0; background: #cfd2d6; }
.browser-tab-wrap.active { background: #f8f9fa; }
.browser-tab-wrap.active::before, .browser-tab-wrap.active::after { content: ""; position: absolute; bottom: 0; width: 10px; height: 10px; }
.tab-favicon { display: grid; width: 16px; height: 16px; place-items: center; margin-left: 7px; border-radius: 3px; color: #fff; background: #4e87a8; font-size: 8px; }
.browser-tab { padding: 0 2px; font-size: 10px; }
.browser-tab-close { margin-right: 4px; border-radius: 50%; }
.browser-new-tab { min-width: 30px; margin: 0 3px 3px; border-radius: 50%; }
.browser-new-tab:hover { background: rgba(61,69,75,.1); }
.chrome-window-actions { margin-left: auto; }
.chrome-window-actions button { width: 28px; height: 28px; border: 0; border-radius: 50%; background: transparent; }
.browser-toolbar { grid-template-columns: 29px 29px 29px minmax(180px, 1fr) 30px 30px 30px; gap: 3px; padding: 5px 8px; border-bottom: 0; background: #f8f9fa; }
.browser-toolbar > button { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; padding: 0; color: #4b5156; background: transparent; font-size: 17px; }
.browser-toolbar > button:hover { background: #e9ebed; }
.browser-address-wrap { height: 31px; display: grid; grid-template-columns: 23px minmax(0, 1fr) 28px; align-items: center; border: 1px solid transparent; border-radius: 16px; background: #e9ebed; }
.browser-address-wrap:focus-within { border-color: #4f8fd2; background: #fff; box-shadow: 0 0 0 1px #4f8fd2; }
.browser-address-wrap input { height: 29px; border: 0; padding: 0 4px; background: transparent; font-size: 11px; }
.browser-address-wrap input:focus { outline: 0; }
.browser-address-wrap > span { color: #657078; text-align: center; font-size: 11px; }
.browser-address-wrap > button { border: 0; color: #606970; background: transparent; font-size: 17px; }
.chrome-profile { color: #fff !important; background: #5778a9 !important; font-size: 10px !important; }
.browser-bookmarks { height: 28px; display: flex; align-items: center; gap: 3px; padding: 0 10px; border-bottom: 1px solid #dfe2e4; background: #fff; }
.browser-bookmarks button { height: 23px; border: 0; border-radius: 4px; padding: 0 7px; color: #3f464b; background: transparent; font-size: 10px; }
.browser-bookmarks button:hover { background: #eef0f1; }
.browser-bookmarks i { display: inline-grid; width: 14px; height: 14px; place-items: center; margin-right: 4px; border-radius: 3px; color: #fff; background: #477d9c; font-size: 7px; font-style: normal; }
.browser-bookmarks > span { margin-left: auto; color: #656e74; font-size: 10px; }
.browser-recovery { inset: 82px 12px auto auto; width: 330px; padding: 0; background: transparent; place-items: start end; }
.browser-recovery > div { width: 330px; padding: 20px; border: 1px solid #d3d7da; border-radius: 9px; background: #fff; box-shadow: 0 10px 32px rgba(33,42,48,.22); text-align: left; }
.recovery-browser-mark { width: 36px; height: 36px; margin: 0 0 12px; border-radius: 50%; background: #4d87c1; font-size: 18px; }
.browser-recovery h2 { font-size: 15px; }.browser-recovery p { font-size: 11px; }
.chrome-action-primary, .chrome-action-secondary { min-width: 70px; height: 30px; border-radius: 4px; padding: 0 13px; font-size: 11px; }
.chrome-action-primary { border: 1px solid #3977be; color: #fff; background: #3977be; }.chrome-action-secondary { border: 1px solid #c8cdd1; color: #3e464c; background: #fff; }

/* Baidu-style search result */
.baidu-results-page { width: 100%; max-width: none; min-height: 100%; padding: 0; }
.baidu-results-page > header { position: sticky; top: 0; z-index: 3; padding: 17px 30px 0; border-bottom: 1px solid #eceff1; background: rgba(255,255,255,.97); }
.baidu-results-page > header { display: grid; grid-template-columns: 94px minmax(320px, 650px) 1fr; align-items: center; }
.baidu-mini-logo { color: #315efb; font-family: SimHei, sans-serif; font-size: 28px; font-weight: 700; }
.baidu-results-page form { display: flex; height: 38px; }
.baidu-results-page form input { flex: 1; min-width: 0; border: 2px solid #315efb; border-radius: 7px 0 0 7px; padding: 0 12px; font-size: 13px; }
.baidu-results-page form button { width: 92px; border: 0; border-radius: 0 7px 7px 0; color: #fff; background: #315efb; }
.baidu-results-page > header nav { grid-column: 2 / -1; display: flex; align-items: center; gap: 22px; height: 39px; font-size: 11px; }
.baidu-results-page > header nav a { color: #555; }.baidu-results-page > header nav a.active { color: #315efb; }
.baidu-results-page > header nav span { color: #777; }
.public-search-scope { display:flex; align-items:center; gap:12px; min-height:35px; padding:0 30px 0 124px; color:#626675; background:#f7f8fa; border-bottom:1px solid #eceff1; font-size:10px; }
.public-search-scope strong { color:#315efb; font-size:11px; font-weight:600; }
.baidu-results-layout { display: grid; grid-template-columns: minmax(0, 690px) 250px; gap: 35px; padding: 18px 0 50px 124px; }
.baidu-results-layout .web-results { margin: 0; }
.result-count { color: #9195a3; font-size: 10px; }
.baidu-results-layout .web-results article { margin-bottom: 21px; }
.baidu-results-layout .web-results h2 { color: #2440b3; font-size: 16px; text-decoration: underline; }
.public-result-link { display:inline; padding:0; border:0; color:#2440b3; background:transparent; font:inherit; text-align:left; text-decoration:underline; cursor:pointer; }
.public-result-link:hover { color:#315efb; }
.public-search-result.is-noise { opacity:.7; }
.noise-result-title { color:#555 !important; text-decoration:none !important; font-weight:500; cursor:default; }
.baidu-results-layout .web-results h2 em { color: #c00; font-style: normal; }
.baidu-results-layout .web-results article p { color: #333; font-size: 12px; line-height: 1.65; }
.baidu-results-layout .web-results article small { color: #008000; }
.baidu-result-with-image { display: grid; grid-template-columns: 112px 1fr; gap: 10px; align-items: start; }
.baidu-result-with-image img { width: 112px; height: 70px; object-fit: cover; }
.baidu-results-layout aside { padding-top: 25px; }
.baidu-results-layout aside section { margin-bottom: 15px; padding: 13px; border: 1px solid #edf0f2; border-radius: 5px; }
.baidu-results-layout aside h3 { margin: 0 0 9px; font-size: 14px; }.baidu-results-layout aside img { width: 100%; height: 110px; object-fit: cover; }.baidu-results-layout aside p, .baidu-results-layout aside dl { font-size: 10px; line-height: 1.6; }.baidu-results-layout aside dl div { display: grid; grid-template-columns: 60px 1fr; }.baidu-results-layout aside dd { margin: 0; }.baidu-results-layout aside a { margin-right: 10px; color: #2440b3; font-size: 10px; }
.related-search { border-top: 1px solid #eee; padding-top: 15px; }.related-search h3 { font-size: 13px; }.related-search div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }.related-search button { padding:0; border:0; color:#2440b3; background:transparent; font-size:11px; text-align:left; cursor:pointer; }.baidu-results-layout aside button { display:block; margin:7px 0; padding:0; border:0; color:#2440b3; background:transparent; font-size:10px; text-align:left; cursor:pointer; }.baidu-pages { display: flex; gap: 6px; margin-top: 24px; }.baidu-pages span, .baidu-pages a { min-width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid #e3e5e7; color: #2440b3; font-size: 11px; }.baidu-pages span { color: #fff; background: #315efb; }.baidu-results-page > footer { padding: 14px 124px; color: #9195a3; background: #f5f5f6; font-size: 10px; }
.newtab-search-note { margin:12px 0 0; color:#7a7f87; font-size:10px; }

/* Chrome new tab */
.chrome-newtab { position: relative; background: #fff; }
.google-wordmark { margin-bottom: 26px; color: #4285f4; font-family: Arial, sans-serif; font-size: 56px; font-weight: 500; }
.chrome-newtab form { width: min(570px, 82%); height: 44px; grid-template-columns: 38px 1fr 35px 35px; align-items: center; border: 1px solid #d9dce0; border-radius: 23px; background: #fff; box-shadow: 0 1px 5px rgba(32,33,36,.18); }
.chrome-newtab form span { text-align: center; }.chrome-newtab form input { height: 40px; border: 0; padding: 0; }.chrome-newtab form button { width: 34px; color: #5f6368; background: transparent; }
.chrome-newtab .newtab-shortcuts { display: grid; grid-template-columns: repeat(5, 82px); gap: 6px; }.chrome-newtab .newtab-shortcuts button { width: 82px; height: 92px; display: grid; place-items: center; gap: 5px; border: 0; border-radius: 5px; padding: 9px; background: transparent; }.chrome-newtab .newtab-shortcuts button:hover { background: #f0f2f4; }.chrome-newtab .newtab-shortcuts i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #4d7f9a; font-style: normal; }.chrome-newtab .newtab-shortcuts span { font-size: 10px; }.newtab-customize { position: absolute; right: 18px; bottom: 18px; border: 1px solid #d7dce0; border-radius: 16px; padding: 6px 10px; color: #1a73e8; background: #fff; font-size: 10px; box-shadow: 0 1px 4px rgba(0,0,0,.13); }

/* Map */
.realistic-map { height: 100%; grid-template-columns: 300px minmax(0,1fr); grid-template-rows: 1fr; }
.map-search-panel { z-index: 3; overflow: auto; background: #fff; box-shadow: 3px 0 12px rgba(32,45,50,.18); }
.map-search-panel > header { display: grid; grid-template-columns: 55px 1fr; align-items: center; gap: 7px; padding: 12px; }.map-brand { color: #2c69d1; font-size: 20px; font-weight: 700; }.map-search-panel > header div { display: flex; height: 34px; }.map-search-panel input { flex: 1; min-width: 0; border: 1px solid #b7c7d7; padding: 0 8px; }.map-search-panel header button { width: 50px; border: 0; color: #fff; background: #3385ff; }.map-search-panel > nav { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #e5e8ea; border-bottom: 1px solid #e5e8ea; }.map-search-panel > nav button { height: 35px; border: 0; color: #657078; background: #f7f8f9; }.map-search-panel > nav button.active { color: #2672d8; background: #fff; border-bottom: 2px solid #2672d8; }.map-search-panel > section { padding: 16px; }.map-search-panel h2 { margin: 0 0 3px; font-size: 17px; }.map-search-panel section > p { margin: 0 0 11px; color: #78848b; font-size: 10px; }.map-search-panel dl { font-size: 10px; }.map-search-panel dl div { display: grid; grid-template-columns: 50px 1fr; padding: 4px 0; }.map-search-panel dd { margin: 0; }.map-search-panel h3 { margin: 17px 0 8px; font-size: 11px; }.saved-place { width: 100%; display: grid; grid-template-columns: 15px 1fr; align-items: center; border: 0; border-top: 1px solid #edf0f2; padding: 9px 2px; background: #fff; text-align: left; }.saved-place i { width: 8px; height: 8px; border-radius: 50%; }.brown-dot { background: #a86f38; }.blue-dot { background: #3278c7; }.gray-dot { background: #7a8389; }.saved-place span { display: grid; }.saved-place small { color: #879097; }.map-distance-card { display: grid; gap: 5px; margin-top: 14px; padding: 10px; background: #f4f6f7; font-size: 10px; }.map-canvas { min-height: 100%; }.map-layer-switch { position: absolute; top: 12px; right: 12px; z-index: 2; display: flex; box-shadow: 0 2px 8px rgba(0,0,0,.22); }.map-layer-switch button { border: 0; padding: 7px 10px; background: #fff; }.map-layer-switch button.active { color: #fff; background: #3478c8; }.map-zoom { position: absolute; right: 13px; bottom: 36px; z-index: 2; display: grid; box-shadow: 0 2px 8px rgba(0,0,0,.22); }.map-zoom button { width: 31px; height: 31px; border: 0; border-bottom: 1px solid #ddd; background: #fff; font-size: 18px; }.realistic-map .map-pin { display: grid; justify-items: center; border: 0; color: #2f3c43; background: transparent; box-shadow: none; }.realistic-map .map-pin i { width: 16px; height: 16px; border: 3px solid #fff; border-radius: 50% 50% 50% 0; background: #2677c9; box-shadow: 0 2px 5px rgba(0,0,0,.32); transform: rotate(-45deg); }.realistic-map .map-pin span { margin-top: 2px; padding: 2px 4px; border-radius: 2px; background: rgba(255,255,255,.9); font-size: 9px; }.map-route-lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }.map-route-lines path { fill: none; stroke: #2d73bb; stroke-width: .8; stroke-dasharray: 2 1; vector-effect: non-scaling-stroke; }.map-copyright { position: absolute; right: 6px; bottom: 4px; padding: 2px 4px; background: rgba(255,255,255,.76); font-size: 8px; }

/* Discuz forum */
.discuz-page { width: 100%; max-width: none; min-height: 100%; padding: 0 14px; color: #444; background: #eef3f6; font-family: Arial, "Microsoft YaHei", sans-serif; font-size: 10px; }
.discuz-page > * { width: min(1080px, 100%); margin-right: auto; margin-left: auto; }
.discuz-top { height: 34px; display: flex; align-items: center; justify-content: space-between; color: #6d7880; }.discuz-top > div { display: flex; align-items: center; gap: 5px; }.discuz-top input { width: 110px; height: 23px; border: 1px solid #c5cdd2; padding: 0 5px; }.discuz-top button { height: 24px; border: 1px solid #8ca8bb; color: #fff; background: #4d88b0; }.discuz-top a { margin-left: 4px; color: #3a6e94; }
.discuz-header { height: 86px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; background: #fff url("assets/yanmen-aerial-base.png") right 58% / 50% auto no-repeat; }.forum-logo { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 9px; }.forum-logo > span { grid-row: 1 / 3; color: #3479a5; font-family: SimSun, serif; font-size: 34px; font-weight: 700; }.forum-logo strong { font-size: 22px; }.forum-logo small { color: #83939e; }.forum-banner-copy { padding: 8px 13px; color: #fff; background: rgba(43,88,116,.78); font-size: 13px; }
.discuz-nav { height: 40px; display: flex; align-items: stretch; background: #256ca0; }.discuz-nav a { min-width: 88px; display: grid; place-items: center; color: #fff; border-right: 1px solid rgba(255,255,255,.16); font-size: 12px; font-weight: 600; }.discuz-nav a.active { color: #1b5d8e; background: #fff; }.discuz-subnav { height: 34px; display: flex; align-items: center; gap: 22px; padding: 0 14px; color: #336b91; background: #fff; border-bottom: 1px solid #d7e0e6; }.discuz-subnav span { margin-left: auto; }.discuz-search { height: 48px; display: flex; align-items: center; padding: 0 13px; background: #e5edf2; }.discuz-search select, .discuz-search input, .discuz-search button { height: 29px; border: 1px solid #b7c7d2; }.discuz-search input { width: 320px; padding: 0 8px; }.discuz-search button { width: 58px; color: #fff; background: #4281a9; }.discuz-search span { margin-left: 14px; color: #687983; }.discuz-crumb { padding: 10px 12px; color: #657782; }.discuz-stats { display: flex; gap: 17px; padding: 9px 12px; border: 1px solid #d4dee4; background: #fff; }.discuz-stats strong { margin-left: auto; color: #30759f; }
.forum-profile-layout { display: grid; grid-template-columns: 205px minmax(0,1fr); gap: 10px; margin-top: 10px; }.forum-profile-card { padding: 18px 16px; border: 1px solid #d2dde3; background: #f7fafb; text-align: center; }.forum-profile-card .forum-avatar { width: 92px; height: 92px; margin: 0 auto 10px; border: 4px solid #fff; box-shadow: 0 1px 5px rgba(0,0,0,.18); font-size: 34px; }.forum-profile-card h1 { margin: 0; font-size: 16px; }.user-level { color: #8a969d; }.forum-profile-card dl { display: grid; grid-template-columns: repeat(3,1fr); margin: 14px 0; border-top: 1px solid #dce3e7; border-bottom: 1px solid #dce3e7; }.forum-profile-card dl div { padding: 8px 2px; }.forum-profile-card dt { color: #87949b; }.forum-profile-card dd { margin: 3px 0 0; font-weight: 700; }.forum-profile-card > p { margin: 6px 0; color: #6f7e86; }.forum-profile-card > button { margin: 8px 3px 0; border: 1px solid #9fb3bf; padding: 5px 8px; color: #356b8e; background: #fff; }
.forum-profile-layout > main { border: 1px solid #d2dde3; background: #fff; }.forum-profile-layout > main > header { height: 45px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; border-bottom: 1px solid #d4dee4; }.forum-profile-layout h2 { margin: 0; font-size: 14px; }.forum-profile-layout main header button { border: 0; padding: 7px 10px; color: #657782; background: transparent; }.forum-profile-layout main header button.active { color: #2876a7; border-bottom: 2px solid #2876a7; }.forum-thread-table { width: 100%; border-collapse: collapse; }.forum-thread-table th { height: 32px; color: #77858d; background: #f4f7f8; font-weight: 400; }.forum-thread-table th:first-child { text-align: left; padding-left: 12px; }.forum-thread-table td { padding: 9px 8px; border-top: 1px solid #e5eaed; vertical-align: middle; }.forum-thread-table td:first-child { display: grid; grid-template-columns: 24px 1fr auto; align-items: center; }.forum-thread-table td i { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 3px; color: #fff; background: #65a5c8; font-style: normal; }.forum-thread-table td a { color: #2f668a; }.forum-thread-table td small { color: #9a713c; }.deleted-thread { color: #a0a7ab; background: #fafafa; }.forum-pagination { display: flex; gap: 4px; padding: 13px; }.forum-pagination span, .forum-pagination a { min-width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid #cbd6dc; }.forum-pagination span { color: #fff; background: #397ca6; }.forum-login-note { margin: 0 13px 14px; padding: 9px; color: #856328; background: #fff8df; border: 1px solid #ead9a4; }.discuz-footer { margin-top: 14px; padding: 17px; color: #74848d; border-top: 1px solid #cad6dc; text-align: center; line-height: 1.8; }

/* Baidu Tieba investigation chain */
.tieba-page{width:100%;max-width:none;min-height:100%;padding:0;color:#333;background:#f2f4f7;font-family:Arial,"Microsoft YaHei",sans-serif;font-size:11px}.tieba-global{height:54px;display:grid;grid-template-columns:155px minmax(330px,560px) 1fr;align-items:center;gap:18px;padding:0 max(24px,calc((100% - 1080px)/2));border-bottom:1px solid #d8dce2;background:#fff}.tieba-logo{display:flex;align-items:baseline;gap:4px;font-size:20px}.tieba-logo span{color:#2932e1;font-weight:700}.tieba-logo strong{color:#1d6fe8;font-size:22px}.tieba-global form{display:flex;height:32px}.tieba-global form input{flex:1;min-width:0;border:1px solid #b8c0cc;padding:0 10px;outline:0}.tieba-global form button{border:0;padding:0 14px;color:#fff;background:#3b78e7;font-size:10px}.tieba-global form button+button{margin-left:5px;color:#3b6eb7;background:#e8eef8}.tieba-global nav{justify-self:end;color:#606b79;white-space:nowrap}
.tieba-cover{position:relative;width:min(1080px,100%);height:155px;display:flex;align-items:flex-end;gap:16px;margin:auto;padding:0 25px 20px;overflow:hidden;color:#fff;background:#41536a}.tieba-cover>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(.56)}.tieba-cover>div,.tieba-cover>button{position:relative;z-index:1}.tieba-cover>div{display:grid;grid-template-columns:58px 1fr;column-gap:14px;align-items:end}.tieba-badge{grid-row:1/4;width:58px;height:58px;display:grid;place-items:center;border:3px solid #fff;color:#245994;background:#eaf1f8;font-size:25px;font-weight:700}.tieba-cover h1{margin:0;font-size:22px}.tieba-cover p{margin:4px 0 0}.tieba-cover span{grid-column:2;margin-top:4px;color:#e6eaf0}.tieba-cover>button{margin-left:auto;border:1px solid rgba(255,255,255,.7);padding:7px 16px;color:#fff;background:rgba(30,90,175,.8)}.tieba-board-nav{width:min(1080px,100%);height:44px;display:flex;align-items:center;margin:auto;padding:0 20px;border:1px solid #d8dce2;border-top:0;background:#fff}.tieba-board-nav a{height:44px;display:grid;place-items:center;min-width:70px;color:#586474}.tieba-board-nav a.active{color:#245ea9;border-bottom:3px solid #3478dc;font-weight:700}.tieba-board-nav span{margin-left:auto;color:#8a94a2}
.tieba-board-layout{width:min(1080px,100%);display:grid;grid-template-columns:minmax(0,1fr) 250px;gap:12px;margin:12px auto 0}.tieba-feed{border:1px solid #dce0e6;background:#fff}.tieba-feed-head{height:42px;display:flex;align-items:center;justify-content:space-between;padding:0 18px;border-bottom:1px solid #e0e3e8}.tieba-feed-head strong{font-size:14px}.tieba-feed-head span{color:#8a94a2}.tieba-topic{min-height:76px;display:grid;grid-template-columns:54px minmax(0,1fr) 42px;align-items:start;gap:12px;padding:15px 15px 12px 8px;border-bottom:1px solid #e8eaee}.tieba-topic:hover{background:#f8fafc}.tieba-reply-count{justify-self:center;min-width:32px;height:24px;display:grid;place-items:center;margin-top:2px;color:#758398;background:#eef1f5}.tieba-topic h2{margin:0 0 7px;color:#2e3d50;font-size:14px;font-weight:500}.tieba-topic p{margin:0 0 8px;color:#737d89;line-height:1.55}.tieba-topic small{color:#98a1ad}.tieba-topic>i{justify-self:end;border:1px solid #d3b477;padding:2px 5px;color:#9b752d;background:#fff8e8;font-style:normal}.tieba-topic-link{display:block;margin:0 0 7px;padding:0;border:0;color:#254f91;background:transparent;font-size:15px;font-weight:600;text-align:left;cursor:pointer}.tieba-topic-link:hover{text-decoration:underline}.tieba-inline-author{padding:0;border:0;color:#537bb3;background:transparent;cursor:pointer}.tieba-topic.anomaly{border-left:3px solid #b78638;background:#fffdf8}.tieba-history-divider{height:38px;display:flex;align-items:center;padding:0 18px;color:#8a6c37;background:#f5f2ec}.tieba-page-numbers{display:flex;gap:5px;padding:16px}.tieba-page-numbers span,.tieba-page-numbers a{min-width:27px;height:27px;display:grid;place-items:center;border:1px solid #d7dce3}.tieba-page-numbers span{color:#fff;background:#3b78e7}.tieba-board-layout>aside section{margin-bottom:10px;padding:15px;border:1px solid #dce0e6;background:#fff}.tieba-board-layout>aside h3{margin:0 0 10px;font-size:13px}.tieba-board-layout>aside p{margin:7px 0;color:#727d89;line-height:1.6}.tieba-member-row{display:flex;gap:8px}.tieba-member-row i{width:34px;height:34px;display:grid;place-items:center;border-radius:3px;color:#fff;background:#7a8e9f;font-style:normal}.tieba-footer{width:min(1080px,100%);margin:18px auto 0;padding:20px;color:#8d96a3;border-top:1px solid #d8dce2;text-align:center}
.tieba-thread-bar{width:min(980px,100%);height:42px;display:flex;align-items:center;justify-content:space-between;margin:auto}.tieba-thread-bar button{border:0;color:#3d6ea8;background:transparent}.tieba-thread-bar span{color:#8a94a2}.tieba-thread-shell{width:min(980px,100%);margin:auto;border:1px solid #d9dde4;background:#fff}.tieba-thread-shell>header{height:58px;display:flex;align-items:center;justify-content:space-between;padding:0 20px;border-bottom:1px solid #d9dde4}.tieba-thread-shell>header h1{margin:0;font-size:17px}.tieba-thread-shell>header span{margin-left:12px;color:#68778a}.tieba-floor{display:grid;grid-template-columns:145px minmax(0,1fr);min-height:145px;border-bottom:1px solid #dfe3e8}.tieba-floor>aside{display:flex;flex-direction:column;align-items:center;padding:20px 10px;border-right:1px solid #dfe3e8;background:#f5f7fa}.tieba-user-avatar{width:58px;height:58px;display:grid;place-items:center;border-radius:4px;color:#fff;background:#617f9b;font-size:20px}.tieba-user-avatar.muted{background:#8796a2}.tieba-user-avatar.tang{background:#596f7a}.tieba-avatar-button,.tieba-user-link{padding:0;border:0;background:transparent;cursor:pointer}.tieba-user-link{margin-top:9px;color:#3469a8}.tieba-floor aside strong{margin-top:9px;font-weight:500}.tieba-floor aside small{margin-top:5px;color:#929ca7}.tieba-floor>section{position:relative;padding:24px 25px 38px;font-size:13px;line-height:1.8}.tieba-floor>section p{margin:0 0 13px}.tieba-floor-meta{position:absolute;right:18px;bottom:12px;display:flex;gap:12px;color:#9aa2ac;font-size:10px}.tieba-floor.owner-reply{background:#fffdf7}.tieba-old-thread-gap{padding:12px;color:#8f98a3;background:#f1f3f6;text-align:center}.tieba-floor.recent-bump{border-top:3px solid #d7dce3}.tieba-reply-box{display:grid;grid-template-columns:1fr 76px;gap:8px;padding:18px 25px;background:#f6f7f9}.tieba-reply-box strong,.tieba-reply-box span{grid-column:1/-1}.tieba-reply-box textarea{height:70px;resize:none;border:1px solid #ccd2da;padding:9px}.tieba-reply-box button{border:0;color:#fff;background:#9cb4d4}.tieba-reply-box span{color:#929ba7}
.tieba-floor.witness-reply > section { background:#fffdf8; box-shadow:inset 3px 0 #b78638; }
.tieba-profile-cover{width:min(980px,100%);min-height:150px;display:flex;align-items:center;gap:18px;margin:16px auto 0;padding:24px 30px;border:1px solid #d8dde4;background:linear-gradient(#e6edf5,#fff)}.tieba-profile-avatar{width:92px;height:92px;display:grid;place-items:center;border:4px solid #fff;border-radius:5px;color:#fff;background:#617f9b;box-shadow:0 1px 5px rgba(0,0,0,.18);font-size:32px}.tieba-profile-cover h1{margin:0 0 8px;font-size:20px}.tieba-profile-cover p{margin:0 0 8px;color:#596677}.tieba-profile-cover span{color:#8b95a2}.tieba-profile-cover>button{border:1px solid #9fb5d2;padding:7px 15px;color:#356ba8;background:#fff}.tieba-profile-cover>button:first-of-type{margin-left:auto;color:#fff;background:#3b78e7}.tieba-profile-tabs{width:min(980px,100%);height:44px;display:flex;align-items:center;margin:auto;padding:0 20px;border:1px solid #d8dde4;border-top:0;background:#fff}.tieba-profile-tabs a{height:44px;display:grid;place-items:center;min-width:82px}.tieba-profile-tabs a.active{color:#2869b5;border-bottom:3px solid #3b78e7}.tieba-profile-layout{width:min(980px,100%);display:grid;grid-template-columns:minmax(0,1fr) 245px;gap:12px;margin:12px auto}.tieba-profile-layout>section,.tieba-profile-layout>aside section{border:1px solid #d8dde4;background:#fff}.tieba-profile-layout>section>header{height:45px;display:flex;align-items:center;justify-content:space-between;padding:0 16px;border-bottom:1px solid #e1e4e9}.tieba-profile-layout h2{margin:0;font-size:14px}.tieba-profile-layout header span{color:#929ba7}.profile-post{padding:15px 18px;border-bottom:1px solid #e6e9ed}.profile-post>div{display:flex;justify-content:space-between;color:#72849a}.profile-post time{color:#9aa2ac}.profile-post h3,.profile-post>button{margin:8px 0 6px;padding:0;border:0;color:#35475c;background:transparent;font-size:13px;font-weight:600;text-align:left}.profile-post.active-post>button{color:#2d64a5;cursor:pointer}.profile-post p{margin:0;color:#7c8591}.tieba-profile-layout>aside section{margin-bottom:10px;padding:15px}.tieba-profile-layout>aside h3{margin:0 0 12px}.tieba-profile-layout dl div{display:grid;grid-template-columns:68px 1fr;margin:7px 0}.tieba-profile-layout dd{margin:0;color:#687689}.tieba-profile-layout>aside span{display:inline-block;margin:3px;padding:4px 6px;color:#607892;background:#eef2f6}
.tieba-message-page>main{width:min(980px,100%);height:calc(100vh - 130px);min-height:560px;display:grid;grid-template-columns:270px minmax(0,1fr);margin:16px auto;border:1px solid #d8dde4;background:#fff}.tieba-message-page>main>aside{border-right:1px solid #d8dde4;background:#f5f6f8}.tieba-message-page>main>aside>header{height:52px;display:flex;align-items:center;gap:12px;padding:0 14px;border-bottom:1px solid #d8dde4}.tieba-message-page>main>aside>header button{border:0;background:transparent;font-size:18px}.message-contact{min-height:68px;display:grid;grid-template-columns:42px minmax(0,1fr) 34px;align-items:center;gap:9px;padding:10px 12px}.message-contact.active{background:#dfe7f2}.message-contact>span{width:40px;height:40px;display:grid;place-items:center;border-radius:4px;color:#fff;background:#617f9b}.message-contact.muted{opacity:.65}.message-contact div{min-width:0}.message-contact p{overflow:hidden;margin:5px 0 0;color:#7d8793;text-overflow:ellipsis;white-space:nowrap}.message-contact time{align-self:start;color:#9aa2ad;font-size:9px}.tieba-chat{min-width:0;display:grid;grid-template-rows:58px minmax(0,1fr) 95px}.tieba-chat>header{display:flex;align-items:center;justify-content:space-between;padding:0 18px;border-bottom:1px solid #d8dde4}.tieba-chat>header button{display:flex;align-items:center;gap:9px;border:0;background:transparent;text-align:left}.tiny-profile-avatar{width:34px;height:34px;display:grid;place-items:center;border-radius:3px;color:#fff;background:#617f9b}.tieba-chat>header small{display:block;margin-top:3px;color:#929ba7}.tieba-chat-scroll{overflow:auto;padding:18px 28px;background:#f0f2f5}.tieba-chat-date{margin:14px 0;color:#919aa5;text-align:center}.tieba-message{max-width:72%;margin:12px 0}.tieba-message p{margin:0 0 6px;padding:10px 12px;border:1px solid #d8dde4;border-radius:4px;background:#fff;line-height:1.65}.tieba-message time{display:block;color:#9aa2ad;font-size:9px}.tieba-message.outgoing{margin-left:auto}.tieba-message.outgoing p{border-color:#aec7eb;background:#dceaff}.tieba-message.outgoing time{text-align:right}.tieba-message.important p{border-left:3px solid #6b86a6}.tieba-chat-system{margin:20px 0;color:#9099a5;text-align:center}.tieba-chat>footer{display:grid;grid-template-columns:1fr 70px;gap:8px;padding:12px 16px;border-top:1px solid #d8dde4}.tieba-chat>footer textarea{resize:none;border:1px solid #ccd2da;padding:8px}.tieba-chat>footer button{border:0;color:#fff;background:#9cb4d4}

/* 2014 company site */
.company-2014-site { width: 100%; max-width: none; color: #444; background: #ececec; font-family: Arial, "Microsoft YaHei", sans-serif; font-size: 11px; }.company-2014-site > * { width: min(1000px,100%); margin-right: auto; margin-left: auto; }.company-topline { height: 30px; display: flex; align-items: center; justify-content: space-between; color: #777; }.company-2014-site > header { height: 90px; display: flex; align-items: center; justify-content: space-between; padding: 0 23px; background: #fff; }.company-logo-2014 { display: flex; align-items: center; gap: 11px; }.company-logo-2014 > span { width: 55px; height: 55px; display: grid; place-items: center; color: #fff; background: #2d7087; font-family: SimSun,serif; font-size: 20px; }.company-logo-2014 div { display: grid; }.company-logo-2014 strong { color: #235d72; font-size: 21px; }.company-logo-2014 small { color: #8a969b; font-size: 8px; }.company-hotline { display: grid; text-align: right; }.company-hotline small { color: #888; }.company-hotline strong { color: #d06b33; font-size: 18px; }.company-main-nav { height: 42px; display: flex; background: #2e7188; }.company-main-nav a { flex: 1; display: grid; place-items: center; color: #fff; border-right: 1px solid rgba(255,255,255,.16); font-size: 12px; }.company-main-nav a.active { background: #d77a38; }.company-hero-2014 { position: relative; height: 250px; overflow: hidden; background: #1e576d; }.company-hero-2014 > img { width: 100%; height: 100%; object-fit: cover; opacity: .82; }.company-hero-2014::after { content: ""; position: absolute; inset: 0 45% 0 0; background: linear-gradient(90deg, rgba(20,60,76,.9), transparent); }.company-hero-2014 > div:not(.hero-dots) { position: absolute; z-index: 2; left: 58px; top: 73px; color: #fff; }.company-hero-2014 h1 { margin: 0 0 9px; font-size: 25px; font-weight: 500; }.company-hero-2014 p { font-size: 14px; }.hero-dots { position: absolute; z-index: 3; right: 20px; bottom: 12px; display: flex; gap: 5px; }.hero-dots i { width: 21px; height: 4px; background: rgba(255,255,255,.55); }.hero-dots i.active { background: #e5853e; }.company-breadcrumb { padding: 10px 15px; color: #777; background: #fff; border-bottom: 1px solid #ddd; }.company-content-layout { display: grid; grid-template-columns: 210px minmax(0,1fr); gap: 18px; padding: 18px; background: #fff; }.company-content-layout > aside > h2 { margin: 0; padding: 14px; color: #fff; background: #31738a; font-size: 17px; }.company-content-layout > aside > a { display: block; padding: 10px 13px; border: 1px solid #ddd; border-top: 0; background: #f6f6f6; }.company-content-layout > aside > a.active { color: #d06c2d; background: #fff; border-left: 3px solid #d06c2d; }.company-content-layout aside section { margin-top: 14px; padding: 11px; border: 1px solid #ddd; }.company-content-layout aside h3 { margin: -11px -11px 9px; padding: 9px; color: #356d82; background: #f1f5f6; font-size: 13px; }.company-content-layout aside p { margin: 5px 0; font-size: 10px; }.company-related img { width: 100%; height: 80px; object-fit: cover; }.company-content-layout > main { padding: 0 7px; }.company-content-layout main > header { border-bottom: 1px solid #ddd; text-align: center; }.company-content-layout main > header h1 { margin: 8px 0 9px; color: #333; font-size: 20px; }.company-content-layout main > header p { color: #999; font-size: 10px; }.company-article-tools { padding: 8px; color: #888; background: #fafafa; text-align: right; }.company-content-layout main > p { margin: 15px 8px; font-size: 12px; line-height: 2; text-indent: 2em; }.company-content-layout figure { margin: 18px auto; width: 75%; text-align: center; }.company-content-layout figure img { width: 100%; max-height: 300px; object-fit: cover; }.company-content-layout figcaption { margin-top: 5px; color: #888; font-size: 10px; }.company-article-links { margin-top: 22px; padding: 10px; border-top: 1px dashed #ccc; border-bottom: 1px dashed #ccc; }.company-article-links p { margin: 5px 0; }.related-news { padding: 14px 0; }.related-news h2 { padding-bottom: 7px; border-bottom: 2px solid #33768c; font-size: 14px; }.related-news ul { margin: 0; padding: 0; list-style: none; }.related-news li { padding: 7px 4px; border-bottom: 1px dotted #ccc; }.related-news li span { float: right; color: #999; }.company-2014-site > footer { padding: 18px; color: #bfc8cc; background: #29424c; text-align: center; line-height: 1.8; }.company-2014-site > footer div { margin-bottom: 8px; }.company-2014-site > footer a { margin: 0 10px; color: #dfe5e7; }

.company-site-search{width:270px;height:32px;display:flex;margin-left:auto}.company-site-search input{flex:1;min-width:0;border:1px solid #aebbc1;padding:0 9px}.company-site-search button{width:52px;border:0;color:#fff;background:#2e7188}.company-site-search+.company-hotline{margin-left:18px}.company-breadcrumb button{border:0;padding:0;color:#397489;background:transparent;cursor:pointer}
.company-search-layout{width:min(1000px,100%);display:grid;grid-template-columns:minmax(0,1fr) 210px;gap:20px;margin:auto;padding:22px;background:#fff}.company-search-layout>section>header{padding-bottom:13px;border-bottom:2px solid #31738a}.company-search-layout h1{margin:0 0 8px;font-size:20px}.company-search-layout header p{margin:0;color:#888}.company-search-result{position:relative;padding:17px 90px 15px 4px;border-bottom:1px dotted #c8c8c8}.company-search-result time{position:absolute;right:4px;top:17px;color:#999}.company-search-result h2,.company-search-result>button{margin:0 0 8px;padding:0;border:0;color:#3b4b50;background:transparent;font-size:14px;font-weight:600;text-align:left}.company-search-result>button{color:#236a84;cursor:pointer}.company-search-result>button:hover{text-decoration:underline}.company-search-result p{margin:0 0 7px;color:#777;line-height:1.65}.company-search-result span{color:#87969c}.company-search-result.relevant{border-left:3px solid #d77a38;padding-left:12px;background:#fffcf8}.company-search-result.unavailable{opacity:.72;background:#f7f7f7}.company-search-layout>aside{padding:15px;border-left:1px solid #ddd;background:#f7f8f8}.company-search-layout>aside h3{margin:0 -15px 10px;padding:9px 15px;color:#356d82;background:#e9eff1}.company-search-layout>aside p{margin:8px 0}
.company-material-table{width:calc(100% - 16px);margin:18px 8px;border-collapse:collapse}.company-material-table th,.company-material-table td{border:1px solid #d6dcdf;padding:9px;text-align:left}.company-material-table th{color:#356a7c;background:#edf3f5}.company-transfer-note{margin:18px 8px;padding:13px 15px;border-left:4px solid #d77a38;background:#fff6ed}.company-transfer-note p{margin:7px 0 0;line-height:1.7}.company-next-action{display:flex;align-items:center;justify-content:space-between;margin:20px 8px;padding:13px;border:1px solid #cbd9de;background:#f1f6f7}.company-next-action button{border:0;color:#236a84;background:transparent;font-weight:600;cursor:pointer}.company-next-action span{color:#89949a}
.company-gallery-shell,.company-photo-shell{width:min(1000px,100%);margin:auto;padding:24px;background:#fff}.company-gallery-shell>header,.company-photo-shell>header{padding-bottom:13px;border-bottom:2px solid #31738a}.company-gallery-shell h1,.company-photo-shell h1{margin:0 0 8px;font-size:20px}.company-gallery-shell header p,.company-photo-shell header p{margin:0;color:#888}.company-gallery-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:20px}.company-gallery-grid figure{margin:0;border:1px solid #d9dee1;background:#fafafa}.company-gallery-grid img{width:100%;aspect-ratio:4/3;display:block;object-fit:cover}.company-gallery-grid figcaption{min-height:42px;padding:9px;color:#626f75;line-height:1.5}.company-key-photo{border:2px solid #d28a4d!important}.company-key-photo button{position:relative;display:block;width:100%;border:0;padding:0;background:transparent;cursor:pointer}.company-key-photo button span{position:absolute;right:7px;bottom:7px;padding:4px 7px;color:#fff;background:rgba(36,93,116,.88)}.company-gallery-note{margin-top:18px;padding:10px;color:#777;background:#f1f2f2}.company-photo-shell{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:24px}.company-photo-shell>header{grid-column:1/-1}.company-photo-shell>img{width:100%;max-height:520px;object-fit:contain;background:#e7eaeb}.company-photo-shell>section{padding:16px;border:1px solid #d8dddf;background:#f7f8f8}.company-photo-shell h2{margin:0 0 14px;color:#315f70;font-size:16px}.company-photo-shell dl div{display:grid;grid-template-columns:74px 1fr;gap:8px;padding:8px 0;border-bottom:1px solid #dde1e3}.company-photo-shell dt{color:#7a858a}.company-photo-shell dd{margin:0;line-height:1.6}.company-photo-shell section>p{margin:16px 0 0;color:#7a858a;line-height:1.7}

/* Archived 2014 county government information site */
.old-gov-site { width: 100%; max-width: none; min-height: 100%; color: #333; background: #e9edf0; font-family: SimSun, serif; }
.old-gov-site .cache-strip { height: 34px; display: flex; align-items: center; gap: 10px; padding: 0 max(18px, calc((100% - 980px) / 2)); color: #665d3d; background: #fff4c9; border-bottom: 1px solid #e5d58b; font-family: Arial, sans-serif; font-size: 10px; }
.old-gov-site .cache-strip strong { padding: 3px 6px; color: #fff; background: #9a8740; }
.old-gov-site .cache-strip button { margin-left: auto; border: 1px solid #bba96d; padding: 3px 8px; background: #fffdf3; font-size: 9px; }
.old-site-utility { width: min(980px, 100%); height: 29px; display: flex; align-items: center; justify-content: space-between; margin: auto; color: #777; font-size: 10px; }
.old-site-utility nav { color: #555; }
.old-site-banner { width: min(980px, 100%); height: 116px; display: flex; align-items: center; gap: 15px; margin: auto; padding: 0 28px; color: #fff; background: linear-gradient(90deg, #2d6488, #6b96af); border-top: 5px solid #1f5276; }
.old-site-seal { width: 58px; height: 58px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.8); border-radius: 50%; font-size: 27px; font-weight: 700; }
.old-site-banner h1 { margin: 0; font-size: 28px; font-weight: 400; letter-spacing: 0; }
.old-site-banner p { margin: 6px 0 0; color: #d9e8f0; font-family: Arial, sans-serif; font-size: 10px; }
.old-site-weather { margin-left: auto; padding: 10px 13px; border-left: 1px solid rgba(255,255,255,.38); font-size: 12px; }
.old-site-nav { width: min(980px, 100%); height: 39px; display: grid; grid-template-columns: repeat(7, 1fr); margin: auto; background: #164f77; border-bottom: 3px solid #d59a33; }
.old-site-nav a { display: grid; place-items: center; color: #fff; border-right: 1px solid rgba(255,255,255,.18); font-size: 13px; }
.old-site-nav a.active { background: #d18a22; }
.old-site-crumb { width: min(980px, 100%); margin: auto; padding: 11px 13px; color: #6d7478; background: #fff; border-right: 1px solid #d4dade; border-left: 1px solid #d4dade; font-size: 10px; }
.old-site-layout { width: min(980px, 100%); display: grid; grid-template-columns: 205px minmax(0,1fr); margin: auto; background: #fff; border: 1px solid #d4dade; border-top: 0; }
.old-site-layout > aside { padding: 0 12px 18px; background: #f4f6f7; border-right: 1px solid #d8dde0; }
.old-site-layout aside h2 { margin: 0 -12px 8px; padding: 12px 15px; color: #fff; background: #37759d; font-size: 15px; }
.old-site-layout aside > a { display: block; padding: 9px 12px; color: #4d5960; border-bottom: 1px dotted #bdc6cb; font-size: 11px; }
.old-site-layout aside > a.active { color: #a65e15; font-weight: 700; background: #fff; }
.old-site-layout aside section { margin-top: 16px; padding: 10px; border: 1px solid #d8dde0; background: #fff; }
.old-site-layout aside section strong { display: block; margin-bottom: 8px; color: #2d6385; font-size: 12px; }
.old-site-layout aside input { width: calc(100% - 45px); height: 25px; border: 1px solid #bfc8cd; padding: 0 5px; }
.old-site-layout aside button { width: 42px; height: 25px; border: 0; color: #fff; background: #39779f; font-size: 10px; }
.old-site-layout aside p { margin: 7px 0; color: #59666d; font-size: 10px; }
.old-site-layout > main { min-width: 0; padding: 24px 30px; }
.old-site-layout main > header { padding-bottom: 14px; border-bottom: 1px solid #dce1e4; text-align: center; }
.old-site-layout main > header h1 { margin: 0 0 10px; color: #244d67; font-size: 21px; font-weight: 700; }
.old-site-layout main > header p { margin: 0; color: #888; font-size: 10px; }
.old-project-photo { width: 360px; max-width: 52%; float: left; margin: 19px 20px 12px 0; border: 1px solid #bbb; padding: 4px; background: #fff; }
.old-site-layout main > p { margin: 17px 0; font-size: 13px; line-height: 2; text-indent: 2em; }
.old-content-heading { clear: both; margin: 24px 0 9px; padding: 7px 10px; color: #285f82; background: #edf3f6; border-left: 4px solid #3e7ba1; font-size: 14px; }
.old-attachment-table { width: 100%; border-collapse: collapse; font-size: 10px; }
.old-attachment-table th, .old-attachment-table td { border: 1px solid #cfd7dc; padding: 8px; text-align: left; }
.old-attachment-table th { color: #fff; background: #4d7f9d; }
.old-attachment-table tbody tr:nth-child(even) { background: #f5f7f8; }
.old-attachment-table a { color: #1d6694; text-decoration: underline; }
.old-attachment-table .dead-link { color: #a45d42; }
.old-site-layout main > footer { margin-top: 22px; padding-top: 10px; color: #888; border-top: 1px dashed #c7cdd0; text-align: right; font-size: 9px; }
.old-site-footer { width: min(980px, 100%); margin: auto; padding: 20px; color: #bdcbd4; background: #34566b; text-align: center; font-size: 9px; line-height: 1.7; }
.old-site-footer p { margin: 2px; }

/* Library record and coach ticket */
.library-record-page { width: 100%; max-width: none; background: #f4f5f6; }.library-record-page > header { height: 85px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; color: #fff; background: #254b68; }.library-record-brand { display: flex; align-items: center; gap: 10px; }.library-record-brand > span { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; font-family: SimSun,serif; font-size: 20px; }.library-record-brand div { display: grid; }.library-record-brand strong { font-family: SimSun,serif; font-size: 19px; }.library-record-brand small { color: #bdceda; }.library-record-page header nav { font-size: 11px; }.library-record-search { display: flex; padding: 15px 8%; background: #fff; border-bottom: 1px solid #ddd; }.library-record-search select, .library-record-search input, .library-record-search button { height: 36px; border: 1px solid #aebac3; }.library-record-search select { width: 105px; }.library-record-search input { flex: 1; padding: 0 9px; }.library-record-search button { width: 75px; color: #fff; background: #2e6389; }.library-record-search a { display: grid; place-items: center; margin-left: 13px; color: #376a8e; font-size: 10px; }.library-record-crumb { padding: 10px 8%; color: #748088; font-size: 10px; }.library-record-layout { width: 84%; margin: 0 auto 25px; display: grid; grid-template-columns: 180px minmax(0,1fr); border: 1px solid #d3d9dd; background: #fff; }.library-record-layout > aside { padding: 16px; border-right: 1px solid #d9dee1; background: #f8f9fa; }.library-record-layout aside h2 { margin: 0 -16px 8px; padding: 8px 16px; color: #4b5d68; background: #e9eef1; font-size: 11px; }.library-record-layout aside a, .library-record-layout aside p { display: block; margin: 7px 0; color: #376a8e; font-size: 10px; }.library-record-layout > main { padding: 22px 28px; }.record-type { color: #8a969d; font-size: 10px; }.library-record-layout main > h1 { margin: 7px 0; color: #213d51; font-family: SimSun,serif; font-size: 22px; }.record-subtitle { color: #68767f; }.library-record-layout dl { margin: 19px 0; border-top: 1px solid #e0e4e6; }.library-record-layout dl div { display: grid; grid-template-columns: 90px 1fr; padding: 8px 0; border-bottom: 1px solid #e6eaec; font-size: 11px; }.library-record-layout dt { color: #7a858c; }.library-record-layout dd { margin: 0; }.reading-only { color: #a75b2b; }.library-holdings h2, .library-preview h2 { padding-bottom: 6px; border-bottom: 2px solid #3c708f; font-size: 13px; }.library-holdings table { width: 100%; border-collapse: collapse; font-size: 10px; }.library-holdings th, .library-holdings td { border: 1px solid #d5dbde; padding: 7px; }.library-holdings th { background: #f1f4f5; }.library-preview { margin-top: 18px; }.library-preview .archive-scan { width: 310px; }.library-preview p { color: #737f86; font-size: 10px; }.library-record-page > footer { padding: 18px; color: #a8b6bf; background: #263f50; text-align: center; font-size: 10px; }
.coach-ticket-page { width: 100%; max-width: none; background: #f4f6f8; }.coach-ticket-page > header { height: 67px; display: flex; align-items: center; gap: 28px; padding: 0 32px; color: #fff; background: #247ca5; }.coach-brand { display: grid; grid-template-columns: 40px 1fr; align-items: center; column-gap: 8px; }.coach-brand i { grid-row: 1 / 3; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid #fff; border-radius: 50%; font-style: normal; }.coach-brand strong { font-size: 16px; }.coach-brand small { color: #c5e2ed; font-size: 7px; }.coach-ticket-page header nav { flex: 1; font-size: 11px; }.coach-ticket-page header > span { font-size: 10px; }.coach-query { display: grid; grid-template-columns: 1fr 34px 1fr 155px 90px; gap: 8px; padding: 18px 5%; background: #fff; box-shadow: 0 2px 6px rgba(30,60,75,.12); }.coach-query > div { display: grid; grid-template-columns: 55px 1fr; align-items: center; border: 1px solid #c6d0d6; }.coach-query label { padding-left: 9px; color: #7b878e; font-size: 10px; }.coach-query input { min-width: 0; height: 36px; border: 0; padding: 0 7px; }.swap-city { border: 0; color: #4387a7; background: transparent; font-size: 18px; }.coach-search { border: 0; color: #fff; background: #ef8b37; }.coach-crumb { padding: 11px 5%; color: #7e8990; font-size: 10px; }.coach-ticket-page > main { width: 90%; margin: 0 auto 25px; display: grid; grid-template-columns: 190px minmax(0,1fr); gap: 14px; }.coach-ticket-page main > aside { padding: 15px; background: #fff; border: 1px solid #dde2e5; }.coach-ticket-page aside h2 { margin: 0 0 12px; font-size: 13px; }.coach-ticket-page aside label { display: block; padding: 7px 0; font-size: 10px; }.coach-ticket-page aside section { margin-top: 16px; padding: 10px; color: #6e797f; background: #f5f7f8; font-size: 9px; line-height: 1.6; }.coach-ticket-page main > section { background: #fff; border: 1px solid #dce2e5; }.coach-ticket-page main > section > header { display: flex; align-items: center; justify-content: space-between; padding: 15px; }.coach-ticket-page main h1 { margin: 0; font-size: 15px; }.coach-ticket-page main header span { color: #7b858b; font-size: 10px; }.coach-date-strip { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid #e1e5e7; border-bottom: 1px solid #e1e5e7; }.coach-date-strip button { height: 44px; border: 0; border-right: 1px solid #e1e5e7; color: #59666e; background: #f7f8f9; }.coach-date-strip button.active { color: #247ca5; background: #fff; border-top: 2px solid #247ca5; }.coach-table-head, .coach-row { display: grid; grid-template-columns: 85px minmax(150px,1fr) 85px 75px 80px 75px; align-items: center; }.coach-table-head { height: 34px; padding: 0 12px; color: #768188; background: #f3f5f6; font-size: 9px; }.coach-row { min-height: 78px; padding: 0 12px; border-bottom: 1px solid #e2e6e8; font-size: 10px; }.coach-row time { color: #246f96; font-size: 20px; }.coach-row > div { display: grid; gap: 3px; }.coach-row > div span { color: #69767d; }.coach-row > div small { color: #9aa2a7; }.coach-row > button { border: 1px solid #e17c2d; padding: 6px; color: #fff; background: #ef8b37; }.coach-row.purchased { background: #fffaf4; }.coach-row.purchased > button { color: #d46f28; background: #fff; }.coach-order-note { display: grid; grid-template-columns: 90px 1fr; padding: 12px; color: #74664e; background: #fff7e8; font-size: 10px; }.coach-ticket-page > footer { padding: 16px; color: #a4b2ba; background: #2e4653; text-align: center; font-size: 9px; }

/* Finder */
.cloud-window[data-app="files"], .cloud-window[data-app="downloads"], .cloud-window[data-app="trash"] { background: rgba(245,245,246,.94); }
.finder-app { height: 100%; display: grid; grid-template-columns: minmax(0,1fr); grid-template-rows: 45px minmax(0,1fr); background: rgba(250,250,251,.98); }
.finder-toolbar { display: flex; align-items: center; gap: 8px; padding: 0 11px; border-bottom: 1px solid #d4d4d5; background: rgba(244,244,245,.94); }.finder-toolbar button { min-width: 28px; height: 27px; border: 0; border-radius: 5px; color: #4c4e50; background: transparent; }.finder-toolbar button:hover, .finder-toolbar button.active { background: #dedfe1; }.finder-nav, .finder-view-controls { display: flex; }.finder-view-controls { margin-left: 15px; border: 1px solid #d0d1d2; border-radius: 6px; overflow: hidden; }.finder-view-controls button { border-radius: 0; border-right: 1px solid #d0d1d2; }.finder-view-controls button.active { color: #fff; background: #74777a; }.finder-search { width: 180px; height: 28px; display: grid; grid-template-columns: 25px 1fr; align-items: center; margin-left: auto; border: 1px solid #d0d1d2; border-radius: 6px; background: #fff; }.finder-search span { text-align: center; }.finder-search input { min-width: 0; border: 0; outline: 0; background: transparent; }.finder-body { min-height: 0; display: grid; grid-template-columns: 190px minmax(0,1fr); }.finder-body > aside { overflow: auto; padding: 13px 10px; border-right: 1px solid #d5d5d6; background: rgba(235,235,237,.86); }.finder-body aside section { margin-bottom: 13px; }.finder-body aside strong { display: block; margin: 0 8px 5px; color: #86888a; font-size: 10px; }.finder-body aside button { width: 100%; height: 29px; display: grid; grid-template-columns: 20px 1fr; align-items: center; border: 0; border-radius: 5px; padding: 0 7px; color: #424446; background: transparent; text-align: left; font-size: 11px; }.finder-body aside button.active { color: #fff; background: #7c9cb1; }.finder-side-icon { width: 15px; height: 15px; display: grid; place-items: center; color: #5595bf; font-style: normal; }.tag-dot { width: 9px; height: 9px; border-radius: 50%; }.tag-dot.red { background:#ef625f; }.tag-dot.orange { background:#efa641; }.tag-dot.blue { background:#5498dc; }.finder-body > main { min-width: 0; display: grid; grid-template-rows: 46px 29px repeat(7, 38px) 1fr 27px; overflow: auto; background: #fff; }.finder-body main > header { display: flex; align-items: center; justify-content: space-between; padding: 0 15px; }.finder-body h2 { margin: 0; font-size: 18px; }.finder-body main > header button { border: 0; background: transparent; }.finder-columns, .finder-body .cloud-file-row { grid-template-columns: 30px minmax(210px,1fr) 120px 75px 135px; }.finder-columns span:first-child { grid-column: 1 / 3; }.finder-columns span:nth-child(2) { grid-column: 3; }.finder-columns span:nth-child(3) { grid-column: 4; }.finder-columns span:nth-child(4) { grid-column: 5; }.finder-body .cloud-file-row { min-height: 38px; padding: 0 10px; }.finder-body .cloud-file-row:hover { background: #eaf3fb; }.finder-file-icon { width: 21px; height: 25px; display: grid; place-items: center; border-radius: 3px; color: #fff; font-size: 7px; font-weight: 700; }.finder-file-icon.excel { background:#2f8b57; }.finder-file-icon.word { background:#3e75b5; }.finder-file-icon.text { color:#555; background:#f2f2f2; border:1px solid #bbb; }.finder-file-icon.image { background:#7d6597; }.finder-file-icon.folder { background:#65b0e7; }.finder-file-icon.zip { background:#d8a145; }.finder-file-icon.pdf { background:#b94d49; }.finder-file-icon.partial { color:#777; background:#e5e5e5; }.finder-body main > footer { display:flex; align-items:center; justify-content:space-between; padding:0 12px; border-top:1px solid #ddd; color:#888; font-size:9px; }.downloads-finder .finder-body > main, .trash-finder .finder-body > main { grid-template-rows:46px 29px repeat(5,38px) 1fr 27px; }.trash-finder .finder-body > main { grid-template-rows:46px 29px repeat(3,38px) 1fr 27px; }.empty-trash-button { margin-left:auto; color:#2572b0 !important; }

/* Apple Mail */
.apple-mail-app { height:100%; display:grid; grid-template-rows:44px minmax(0,1fr); background:#fff; }.mail-toolbar { display:flex; align-items:center; gap:5px; padding:0 10px; border-bottom:1px solid #d4d4d5; background:#f3f3f4; }.mail-toolbar button { min-width:31px; height:28px; border:0; border-radius:5px; color:#4f5153; background:transparent; }.mail-toolbar button:hover { background:#e1e1e2; }.mail-toolbar > span { width:1px; height:24px; margin:0 5px; background:#d1d1d2; }.mail-search { width:190px; height:28px; display:grid; grid-template-columns:25px 1fr; align-items:center; margin-left:auto; border:1px solid #d0d1d2; border-radius:6px; background:#fff; }.mail-search span { text-align:center; }.mail-search input { min-width:0; border:0; outline:0; }.mail-main { min-height:0; display:grid; grid-template-columns:155px 285px minmax(0,1fr); }.mail-main > aside { padding:12px 8px; border-right:1px solid #d5d5d6; background:#ededee; }.mail-main aside > strong { display:block; margin:8px 8px 5px; color:#85878a; font-size:10px; }.mail-main aside button { width:100%; height:28px; display:grid; grid-template-columns:20px 1fr auto; align-items:center; border:0; border-radius:5px; padding:0 7px; color:#46484a; background:transparent; text-align:left; }.mail-main aside button.active { color:#fff; background:#7f9fb4; }.mail-main aside button i { font-style:normal; }.mail-list { overflow:auto; border-right:1px solid #d8d8d9; background:#fafafa; }.mail-list > header { height:43px; display:flex; align-items:center; justify-content:space-between; padding:0 11px; border-bottom:1px solid #ddd; }.mail-list header span { color:#888; font-size:9px; }.mail-list article { min-height:78px; display:grid; grid-template-columns:35px minmax(0,1fr) 38px; gap:8px; padding:10px; border-bottom:1px solid #ddd; }.mail-list article.selected { background:#dfeaf1; }.mail-list article.unread strong { font-weight:700; }.mail-avatar { width:33px; height:33px; display:grid; place-items:center; border-radius:50%; color:#fff; background:#66879b; font-size:10px; }.mail-avatar.lu{background:#697b91}.mail-avatar.wang{background:#527a93}.mail-avatar.cloud{background:#707b83}.mail-avatar.ticket{background:#3d8790}.mail-avatar.school{background:#934f4f}.mail-list article div { min-width:0; }.mail-list h3 { overflow:hidden; margin:3px 0; font-size:11px; text-overflow:ellipsis; white-space:nowrap; }.mail-list p { overflow:hidden; margin:0; color:#73777a; font-size:9px; text-overflow:ellipsis; white-space:nowrap; }.mail-list time { color:#85898c; font-size:9px; text-align:right; }.apple-mail-app .cloud-mail-reader { overflow:auto; padding:0; }.cloud-mail-reader > header { display:flex; justify-content:space-between; padding:20px 23px 16px; border-bottom:1px solid #e2e2e3; }.cloud-mail-reader header h2 { margin:0 0 9px; font-size:17px; }.cloud-mail-reader header p { margin:2px 0; color:#7b7e81; font-size:9px; }.cloud-mail-reader header button { align-self:start; border:1px solid #ccc; border-radius:5px; padding:5px 9px; background:#fff; }.mail-message-body { padding:22px 27px; font-size:12px; line-height:1.9; }.mail-attachment { width:260px; display:grid; grid-template-columns:38px 1fr 25px; align-items:center; gap:8px; margin-top:22px; padding:9px; border:1px solid #d4d4d5; border-radius:7px; background:#fafafa; }.mail-attachment > span { width:36px; height:42px; display:grid; place-items:center; border-radius:3px; color:#555; background:#eee; font-size:8px; }.mail-attachment div { display:grid; }.mail-attachment small { color:#888; }.mail-attachment button { border:0; background:transparent; }

/* New macOS app shells must reset the legacy two-column app grid. */
.apple-mail-app { grid-template-columns: minmax(0,1fr); }

/* WeChat macOS */
.cloud-window[data-app="chat"] .cloud-window-titlebar { display:none; }.cloud-window[data-app="chat"] .cloud-window-content { height:100%; }.wechat-app { height:100%; display:grid; grid-template-columns:58px 260px minmax(0,1fr); background:#f5f5f5; }.wechat-rail { display:flex; flex-direction:column; align-items:center; padding:25px 0 13px; color:#aaa; background:#2e2e2e; }.wechat-owner-avatar { width:36px; height:36px; display:grid; place-items:center; border-radius:4px; color:#fff; background:#607d8b; }.wechat-rail nav { width:100%; display:grid; gap:21px; margin-top:30px; }.wechat-rail button { position:relative; width:100%; height:28px; border:0; color:#aaa; background:transparent; }.wechat-rail button.active { color:#07c160; }.wechat-rail nav button > span { position:absolute; top:-5px; right:8px; min-width:15px; height:15px; display:grid; place-items:center; border-radius:8px; color:#fff; background:#fa5151; font-size:8px; }.wechat-rail > div:last-child { width:100%; display:grid; gap:11px; margin-top:auto; }.wechat-chat-symbol { display:block; width:21px; height:17px; margin:auto; border:2px solid currentColor; border-radius:50%; }.wechat-contact-symbol { display:block; width:19px; height:19px; margin:auto; border:2px solid currentColor; border-radius:50%; }.wechat-collection-symbol,.wechat-files-symbol { font-style:normal; font-size:22px; }.wechat-conversation-list { min-width:0; border-right:1px solid #d7d7d7; background:#ececec; }.wechat-conversation-list > header { height:62px; display:grid; grid-template-columns:1fr 28px; align-items:center; gap:8px; padding:0 10px; }.wechat-search { height:28px; display:grid; grid-template-columns:25px 1fr; align-items:center; border-radius:5px; background:#dbdbdb; }.wechat-search span { text-align:center; }.wechat-search input { min-width:0; border:0; outline:0; background:transparent; font-size:10px; }.wechat-conversation-list > header > button { width:28px; height:28px; border:0; border-radius:4px; background:#d7d7d7; font-size:17px; }.wechat-list-scroll { height:calc(100% - 62px); overflow:auto; }.wechat-list-scroll > button { width:100%; min-height:65px; display:grid; grid-template-columns:42px minmax(0,1fr) 34px; align-items:center; gap:9px; border:0; padding:9px 10px; color:#333; background:transparent; text-align:left; }.wechat-list-scroll > button:hover { background:#dedede; }.wechat-list-scroll > button.active { background:#c9c9c9; }.wechat-avatar { width:40px; height:40px; display:grid; place-items:center; border-radius:4px; color:#fff; background:#66859a; font-size:12px; flex:none; }.wechat-avatar.lu{background:#657788}.wechat-avatar.zhao{background:#886d79}.wechat-avatar.group{background:#4c8f76}.wechat-avatar.file{background:#5d8daf}.wechat-avatar.service{background:#4096a0}.wechat-avatar.cloud{background:#656f76}.wechat-avatar.self{background:#596f7a}.wechat-list-scroll button div { min-width:0; }.wechat-list-scroll strong { font-size:12px; font-weight:500; }.wechat-list-scroll p { overflow:hidden; margin:5px 0 0; color:#888; font-size:9px; text-overflow:ellipsis; white-space:nowrap; }.wechat-list-scroll time { align-self:start; margin-top:2px; color:#999; font-size:8px; text-align:right; }.wechat-chat-panel { min-width:0; display:grid; grid-template-rows:62px minmax(0,1fr) 125px; background:#f5f5f5; }.wechat-chat-panel > header { display:flex; align-items:center; justify-content:space-between; padding:0 20px; border-bottom:1px solid #ddd; }.wechat-chat-panel header div { display:grid; gap:3px; }.wechat-chat-panel header strong { font-size:13px; }.wechat-chat-panel header small { color:#999; font-size:8px; }.wechat-chat-panel header button { border:0; background:transparent; font-size:18px; }.wechat-thread { overflow:auto; padding:20px 25px; background:#f5f5f5; }.wechat-message { display:flex; align-items:flex-start; gap:9px; margin:12px 0; }.wechat-message.outgoing { justify-content:flex-end; }.wechat-message .chat-bubble { position:relative; max-width:68%; margin:0; padding:9px 11px; border:1px solid #e2e2e2; border-radius:3px; background:#fff; font-size:11px; line-height:1.65; }.wechat-message.outgoing .chat-bubble { border-color:#91d36b; background:#95ec69; }.wechat-message.failed i { align-self:center; width:17px; height:17px; display:grid; place-items:center; border-radius:50%; color:#fff; background:#fa5151; font-style:normal; font-size:10px; }.wechat-thread .chat-time { margin:15px 0; color:#aaa; font-size:9px; }.wechat-thread .chat-system { margin:12px 0; color:#aaa; font-size:9px; }.wechat-chat-panel > footer { display:grid; grid-template-rows:34px 1fr 28px; padding:0 16px 10px; border-top:1px solid #ddd; background:#fff; }.wechat-editor-tools { display:flex; align-items:center; gap:4px; }.wechat-editor-tools button { width:27px; height:27px; border:0; background:transparent; font-size:17px; }.wechat-editor-tools span { flex:1; }.wechat-chat-panel textarea { resize:none; border:0; outline:0; font:12px/1.5 inherit; }.wechat-chat-panel footer > button { justify-self:end; width:64px; border:1px solid #ddd; color:#777; background:#f5f5f5; }

.wechat-rail { position: relative; padding-top: 38px; }
.wechat-rail::before { content: ""; position: absolute; top: 12px; left: 11px; width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; box-shadow: 18px 0 #febc2e, 36px 0 #28c840; }

/* macOS Photos */
.mac-photos-app { height:100%; display:grid; grid-template-rows:44px minmax(0,1fr); padding:0; background:#fff; }.photos-toolbar { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; padding:0 10px; border-bottom:1px solid #d4d4d5; background:#f4f4f5; }.photos-toolbar > div { display:flex; gap:5px; }.photos-toolbar > div:last-child { justify-content:flex-end; }.photos-toolbar button { height:27px; border:0; border-radius:5px; padding:0 8px; background:transparent; }.photos-toolbar button:hover { background:#e1e1e2; }.photos-toolbar input { width:135px; height:27px; border:1px solid #ccc; border-radius:6px; padding:0 8px; }.photos-body { min-height:0; display:grid; grid-template-columns:175px minmax(0,1fr); }.photos-body > aside { overflow:auto; padding:12px 9px; border-right:1px solid #d5d5d6; background:#ededee; }.photos-body aside strong { display:block; margin:8px 8px 4px; color:#85878a; font-size:9px; }.photos-body aside button { width:100%; height:27px; border:0; border-radius:5px; padding:0 8px; background:transparent; text-align:left; }.photos-body aside button.active { color:#fff; background:#7d9eb3; }.photos-body > main { overflow:auto; padding:18px; }.photos-body main > header { display:flex; align-items:center; justify-content:space-between; }.photos-body h2 { margin:0 0 3px; font-size:22px; }.photos-body header p { margin:0; color:#888; font-size:9px; }.photos-segment { display:flex; border:1px solid #ccc; border-radius:6px; overflow:hidden; }.photos-segment button { height:25px; border:0; border-right:1px solid #ccc; padding:0 9px; background:#fff; font-size:9px; }.photos-segment button.active { color:#fff; background:#777; }.photos-date { display:flex; justify-content:space-between; margin:20px 0 8px; }.photos-date span { color:#888; font-size:9px; }.mac-photos-app .cloud-photo-grid { grid-template-columns:repeat(4,minmax(0,1fr)); gap:4px; }.mac-photos-app .cloud-photo-grid figure { position:relative; overflow:hidden; }.mac-photos-app .cloud-photo-grid img { aspect-ratio:1; }.mac-photos-app .cloud-photo-grid figcaption { position:absolute; right:0; bottom:0; left:0; opacity:0; padding:5px; color:#fff; background:rgba(0,0,0,.55); }.mac-photos-app .cloud-photo-grid figure:hover figcaption { opacity:1; }

/* Campus portal: restrained, institutional information-workbench styling. */
.portal:not(.cloud-session-mode) { background: #eef1f4; }
.portal:not(.cloud-session-mode) .utility-bar { background: #153b66; }
.portal:not(.cloud-session-mode) .portal-header { background: #fff; border-bottom: 1px solid #cfd6de; box-shadow: 0 1px 4px rgba(29,45,62,.1); -webkit-backdrop-filter: none; backdrop-filter: none; }
.portal:not(.cloud-session-mode) .main-nav { background: #1d4f82; }
.portal:not(.cloud-session-mode) .portal-location { padding: 12px 0 9px; }
.portal:not(.cloud-session-mode) .home-notice { border-color: #e2d3aa; background: #fffaf0; -webkit-backdrop-filter: none; backdrop-filter: none; }
.portal:not(.cloud-session-mode) .portlet { border-color: #d5dce3; background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }
.portal:not(.cloud-session-mode) .portlet > header { background: #f7f9fb; }
.portal:not(.cloud-session-mode) .application-grid button,
.portal:not(.cloud-session-mode) .todo-row { background: #fff; }
.portal:not(.cloud-session-mode) .application-grid button:hover,
.portal:not(.cloud-session-mode) .todo-row:hover { background: #f1f6fa; }
.portal:not(.cloud-session-mode) .tab-row button { background: #f5f7f9; }
.portal:not(.cloud-session-mode) .tab-row button.active { background: #fff; }
.portal:not(.cloud-session-mode) .portal-footer { margin-top: 30px; }
.application-icon { border-radius: 5px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }

.workspace-owner-note { display: grid; grid-template-columns: 115px minmax(0,1fr) 110px; align-items: start; gap: 14px; margin: 0 0 14px; padding: 15px 18px; border: 1px solid #d6dce2; border-left: 4px solid #587994; background: #f7f9fb; }
.workspace-owner-note strong { color: #36566e; font-size: 13px; }
.workspace-owner-note p { margin: 0; color: #424a51; font-size: 12px; line-height: 1.75; }
.workspace-owner-note small { color: #818990; text-align: right; white-space: nowrap; }

.external-link-warning { width: min(760px,100%); display: grid; grid-template-columns: 52px minmax(0,1fr); gap: 18px; margin: 70px auto; padding: 28px 30px; border: 1px solid #d6dce2; border-top: 4px solid #d18a2c; background: #fff; box-shadow: 0 8px 24px rgba(35,50,65,.1); }
.external-warning-icon { width: 46px; height: 46px; display: grid; place-items: center; border: 2px solid #d18a2c; border-radius: 50%; color: #b66c15; font-size: 24px; font-weight: 700; }
.external-link-warning h1 { margin: 2px 0 9px; font-size: 20px; font-weight: 500; }
.external-link-warning p { margin-bottom: 18px; color: #59636d; font-size: 13px; line-height: 1.7; }
.external-link-warning dl { margin: 0 0 20px; border-top: 1px solid #e1e5e8; }
.external-link-warning dl div { display: grid; grid-template-columns: 85px 1fr; padding: 8px 0; border-bottom: 1px solid #e8ebed; font-size: 12px; }
.external-link-warning dt { color: #7b848c; }.external-link-warning dd { margin: 0; color: #38434c; }
#view-clouddesk::before { background: #eef1f4; }
.portal.cloud-session-mode #view-clouddesk::before { display: none; }

/* Make all three traffic-light controls real for every application. */
.cloud-window.maximized { top: 28px; right: 8px; bottom: 72px; left: 8px; border-radius: 9px; }
.cloud-window[data-app="browser"] .cloud-window-titlebar,
.cloud-window[data-app="chat"] .cloud-window-titlebar { position: absolute; top: 0; left: 0; z-index: 20; width: 78px; height: 40px; display: flex; border: 0; background: transparent; box-shadow: none; pointer-events: none; }
.cloud-window[data-app="browser"] .cloud-window-titlebar .window-controls,
.cloud-window[data-app="chat"] .cloud-window-titlebar .window-controls { pointer-events: auto; }
.cloud-window[data-app="browser"] .cloud-window-titlebar > strong,
.cloud-window[data-app="browser"] #cloud-window-mark,
.cloud-window[data-app="chat"] .cloud-window-titlebar > strong,
.cloud-window[data-app="chat"] #cloud-window-mark { display: none; }
.browser-tabs::before, .wechat-rail::before { content: none; }
.downloads-finder .finder-body aside button,
.trash-finder .finder-body aside button { display: flex; grid-template-columns: none; align-items: center; gap: 8px; }
.downloads-finder .finder-body aside button i,
.trash-finder .finder-body aside button i { flex: none; }
.wechat-app { grid-template-columns: 64px 270px minmax(0,1fr); }
.wechat-rail { padding-top: 51px; }
.wechat-owner-avatar { flex: none; }
.wechat-rail nav { margin-top: 24px; }
.wechat-rail button { overflow: visible; }
.wechat-rail nav button > span { right: 10px; }

/* 2014 local newspaper archive, modeled on early-2010s regional news portals. */
.ycwb-page { width: 100%; min-height: 100%; color: #292929; background: #fff; font: 12px/1.7 Arial, "Microsoft YaHei", sans-serif; }
.ycwb-top { height: 31px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(18px, calc((100% - 1080px) / 2)); color: #666; background: #f3f3f3; border-bottom: 1px solid #ddd; font-size: 10px; }
.ycwb-header { width: min(1080px, calc(100% - 32px)); height: 92px; display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 20px; margin: auto; }
.ycwb-wordmark { display: grid; color: #bd1d25; font-family: SimSun, serif; }
.ycwb-wordmark strong { font-size: 38px; line-height: 1; letter-spacing: 2px; }
.ycwb-wordmark small { margin-top: 5px; color: #777; font: 8px Arial, sans-serif; letter-spacing: 2px; }
.ycwb-site-name { padding-left: 18px; border-left: 1px solid #ddd; color: #333; font: 22px SimSun, serif; }
.ycwb-header form { justify-self: end; width: 300px; height: 34px; display: grid; grid-template-columns: 1fr 58px; }
.ycwb-header input { min-width: 0; padding: 0 10px; border: 1px solid #bbb; outline: 0; }
.ycwb-header button { border: 0; color: #fff; background: #a91e24; }
.ycwb-nav { height: 40px; display: flex; justify-content: center; background: #b51f27; border-bottom: 3px solid #8c151b; }
.ycwb-nav a { min-width: 72px; display: grid; place-items: center; color: #fff; border-right: 1px solid rgba(255,255,255,.18); font-size: 13px; }
.ycwb-nav a.active { background: #8f171d; font-weight: 700; }
.ycwb-crumb { width: min(1080px, calc(100% - 32px)); margin: auto; padding: 12px 0; color: #777; border-bottom: 1px solid #ddd; font-size: 10px; }
.ycwb-layout { width: min(1080px, calc(100% - 32px)); display: grid; grid-template-columns: minmax(0, 730px) 280px; gap: 38px; margin: 0 auto; padding: 23px 0 42px; }
.ycwb-article > header { padding-bottom: 17px; border-bottom: 1px solid #ddd; text-align: center; }
.ycwb-kicker { margin: 0 0 5px; color: #9d1e24; font-size: 12px; }
.ycwb-article h1 { margin: 0 0 8px; font-family: SimSun, serif; font-size: 30px; font-weight: 700; letter-spacing: 0; }
.ycwb-article h2 { margin: 0 0 15px; color: #666; font-size: 15px; font-weight: 400; letter-spacing: 0; }
.ycwb-byline { display: flex; justify-content: center; gap: 22px; color: #999; font-size: 10px; }
.ycwb-article > p { margin: 19px 4px; font-family: SimSun, "Songti SC", serif; font-size: 15px; line-height: 2; text-indent: 2em; }
.ycwb-article .ycwb-lead { padding: 12px 15px; color: #555; background: #f7f7f7; border-left: 3px solid #bbb; font-size: 14px; }
.ycwb-article figure { width: 86%; margin: 22px auto; text-align: center; }
.ycwb-article figure img { width: 100%; max-height: 430px; object-fit: cover; border: 1px solid #ddd; }
.ycwb-article figcaption { margin-top: 7px; color: #888; font-size: 10px; }
.ycwb-editor { margin-top: 30px; padding: 12px 0; color: #888; border-top: 1px solid #ddd; text-align: right; font-size: 10px; }
.ycwb-share { display: flex; justify-content: flex-end; gap: 7px; }
.ycwb-share button { border: 1px solid #ccc; padding: 5px 10px; color: #666; background: #fafafa; }
.ycwb-sidebar section { margin-bottom: 18px; border-top: 3px solid #a91e24; }
.ycwb-sidebar h3 { margin: 0; padding: 10px 9px; border-bottom: 1px solid #ddd; font: 16px SimSun, serif; }
.ycwb-sidebar p, .ycwb-sidebar section > button { width: 100%; display: block; margin: 0; padding: 9px 7px; border: 0; border-bottom: 1px dotted #ccc; color: #444; background: transparent; text-align: left; font-size: 11px; }
.ycwb-sidebar p::before { content: "·"; margin-right: 6px; color: #a91e24; }
.ycwb-photo-topic img { width: 100%; height: 145px; object-fit: cover; margin-top: 10px; }
.ycwb-footer { padding: 24px; color: #888; background: #f3f3f3; border-top: 1px solid #ddd; text-align: center; font-size: 10px; }

/* County procurement and historical performance query. */
.procurement-page { width: 100%; min-height: 100%; color: #333; background: #eef2f6; font: 11px/1.65 Arial, "Microsoft YaHei", sans-serif; }
.procurement-utility { height: 29px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(18px, calc((100% - 1040px) / 2)); color: #697683; background: #f7f8fa; border-bottom: 1px solid #d7dde3; font-size: 9px; }
.procurement-page > header { width: min(1040px,100%); height: 92px; display: flex; align-items: center; gap: 15px; margin: auto; padding: 0 20px; color: #194f7d; background: #fff; }
.procurement-emblem { width: 56px; height: 56px; display: grid; place-items: center; border: 2px solid #1e5d91; border-radius: 50%; font: 26px SimSun, serif; }
.procurement-page > header h1 { margin: 0; font-size: 23px; font-weight: 500; letter-spacing: 0; }
.procurement-page > header p { margin: 3px 0 0; color: #82909c; font-size: 10px; letter-spacing: 1px; }
.procurement-page > nav { height: 42px; display: flex; justify-content: center; background: #1f5f95; }
.procurement-page > nav a { width: 145px; display: grid; place-items: center; color: #fff; border-right: 1px solid rgba(255,255,255,.15); font-size: 12px; }
.procurement-page > nav a.active { background: #174a75; }
.procurement-crumb { width: min(1040px,100%); margin: auto; padding: 10px 15px; color: #75818b; background: #fff; border-bottom: 1px solid #dbe0e4; }
.procurement-crumb button { border: 0; padding: 0; color: #1d6397; background: transparent; }
.procurement-page > main { width: min(1040px, calc(100% - 28px)); margin: 18px auto; }
.procurement-query, .procurement-help { margin-bottom: 15px; padding: 18px 20px; background: #fff; border: 1px solid #d5dce2; }
.procurement-query h2, .procurement-help h2 { margin: -18px -20px 16px; padding: 11px 16px; color: #254f73; background: #f4f7f9; border-bottom: 1px solid #d9dfe4; font-size: 15px; }
.procurement-query form { display: grid; grid-template-columns: 1fr 1fr 150px auto auto; align-items: end; gap: 12px; }
.procurement-query label { display: grid; gap: 5px; color: #66727c; }
.procurement-query input, .procurement-query select { height: 34px; min-width: 0; padding: 0 9px; border: 1px solid #bfc8d0; background: #fff; }
.procurement-query button { height: 34px; border: 1px solid #1f5f95; padding: 0 18px; color: #fff; background: #1f5f95; }
.procurement-query button:last-of-type { color: #555; border-color: #c7cdd2; background: #f7f7f7; }
.procurement-query > p { margin: 13px 0 0; color: #89929a; }
.procurement-help div { display: grid; grid-template-columns: repeat(6,1fr); text-align: center; }
.procurement-help span { padding: 11px 4px; border-right: 1px solid #ddd; color: #2e638e; }
.procurement-page > footer { padding: 20px; color: #7d8993; background: #e5eaf0; border-top: 1px solid #d2d9df; text-align: center; }
.procurement-results { display: grid; grid-template-columns: 190px minmax(0,1fr); gap: 16px; }
.procurement-results > aside { padding: 14px; background: #fff; border: 1px solid #d3dbe2; }
.procurement-results aside h2 { margin: -14px -14px 12px; padding: 11px 13px; color: #fff; background: #3b6e98; font-size: 14px; }
.procurement-results aside h3 { margin: 17px 0 7px; color: #536574; font-size: 11px; }
.procurement-results aside label { display: block; margin: 7px 0; }
.procurement-results > section { background: #fff; border: 1px solid #d3dbe2; }
.procurement-results > section > header { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; background: #f4f7f9; border-bottom: 1px solid #d7dde2; }
.procurement-results header h2, .procurement-results header p { margin: 0; }
.procurement-results > section > article { position: relative; padding: 15px 125px 15px 18px; border-bottom: 1px dotted #bdc7cf; }
.procurement-results article time { position: absolute; top: 16px; right: 15px; color: #8a949c; }
.procurement-results article h3, .procurement-results article button { margin: 0 0 7px; border: 0; padding: 0; color: #2b5f88; background: transparent; text-align: left; font-size: 13px; font-weight: 700; }
.procurement-results article p { margin: 0; color: #6b747c; }
.procurement-results article > span { display: inline-block; margin-top: 7px; color: #87929b; }
.procurement-results article.relevant { background: #fffdf7; }
.procurement-detail > main { max-width: 900px; padding: 25px 34px; background: #fff; border: 1px solid #d3dbe2; }
.procurement-detail main > header { padding-bottom: 16px; border-bottom: 1px solid #ddd; text-align: center; }
.procurement-detail main > header h1 { margin: 0 0 10px; font: 21px/1.6 SimSun, serif; }
.procurement-detail main > header p { margin: 0; color: #888; font-size: 10px; }
.procurement-meta { display: grid; grid-template-columns: 1fr 1fr; margin: 18px 0; border-top: 1px solid #d6dce1; border-left: 1px solid #d6dce1; }
.procurement-meta div { display: grid; grid-template-columns: 90px 1fr; border-right: 1px solid #d6dce1; border-bottom: 1px solid #d6dce1; }
.procurement-meta dt, .procurement-meta dd { margin: 0; padding: 8px 10px; }
.procurement-meta dt { color: #607282; background: #f3f6f8; }
.procurement-detail table { width: 100%; border-collapse: collapse; }
.procurement-detail th, .procurement-detail td { padding: 9px 8px; border: 1px solid #cbd4dc; text-align: left; }
.procurement-detail th { color: #405c72; background: #edf3f7; }
.procurement-detail main > p { margin: 17px 0; font-size: 12px; line-height: 1.9; text-indent: 2em; }
.procurement-note { margin-top: 18px; padding: 13px 15px; background: #f8f7f1; border: 1px solid #ded9c7; }
.procurement-note p { margin: 7px 0 0; }
.procurement-note button { border: 0; padding: 0; color: #1c5f92; background: transparent; text-decoration: underline; }
.procurement-detail main > footer { display: flex; justify-content: space-between; margin-top: 24px; padding-top: 12px; color: #84909a; border-top: 1px solid #ddd; }
.archive-catalogue-page { width: 100%; min-height: 100%; color: #34434d; background: #edf1f3; font: 11px/1.65 Arial, "Microsoft YaHei", sans-serif; }
.archive-catalogue-page > header { width: min(1040px,100%); height: 88px; display: flex; align-items: center; justify-content: space-between; margin: auto; padding: 0 20px; color: #35566b; background: #fff; border-bottom: 1px solid #d5dde2; }
.archive-catalogue-page > header > div { display: flex; align-items: center; gap: 12px; }
.archive-catalogue-page > header > div > span { width: 52px; height: 52px; display: grid; place-items: center; color: #fff; background: #607d90; font: 25px SimSun, serif; }
.archive-catalogue-page > header > div > div { display: grid; }
.archive-catalogue-page > header strong { font-size: 19px; font-weight: 500; }
.archive-catalogue-page > header small { color: #8b999f; font-size: 8px; letter-spacing: 1px; }
.archive-catalogue-page > header nav { color: #536b79; word-spacing: 9px; white-space: nowrap; }
.archive-search { width: min(1040px,100%); height: 58px; display: grid; grid-template-columns: 120px minmax(0,520px) 70px; align-content: center; margin: auto; padding: 0 20px; background: #f7f9fa; border-bottom: 1px solid #d2dbe1; }
.archive-search select, .archive-search input, .archive-search button { height: 34px; border: 1px solid #b9c6ce; }
.archive-search select, .archive-search input { min-width: 0; padding: 0 9px; background: #fff; }
.archive-search button { color: #fff; border-color: #5c7c90; background: #5c7c90; }
.archive-catalogue-page > main { width: min(1040px, calc(100% - 28px)); display: grid; grid-template-columns: 190px minmax(0,1fr); gap: 16px; margin: 18px auto; }
.archive-catalogue-page > main > aside { padding: 14px; background: #f8fafb; border: 1px solid #d1dae0; }
.archive-catalogue-page > main > aside h2 { margin: -14px -14px 13px; padding: 11px 13px; color: #fff; background: #617f91; font-size: 14px; }
.archive-catalogue-page > main > aside p { margin: 17px 0 7px; color: #6c7c86; font-weight: 700; }
.archive-catalogue-page > main > aside label { display: block; margin: 7px 0; }
.archive-catalogue-page > main > section { min-width: 0; padding: 18px 22px; background: #fff; border: 1px solid #d1dae0; }
.archive-catalogue-page > main > section > header { display: flex; align-items: center; justify-content: space-between; margin: -18px -22px 0; padding: 13px 18px; background: #f4f7f8; border-bottom: 1px solid #d8e0e4; }
.archive-catalogue-page > main > section > header h1 { margin: 0; font-size: 16px; }
.archive-catalogue-page > main > section > article { padding: 15px 3px; border-bottom: 1px dotted #bfcbd2; }
.archive-catalogue-page > main > section > article h2 { margin: 0 0 8px; color: #355f79; font-size: 14px; }
.archive-catalogue-page > main > section > article dl { margin: 0; }
.archive-catalogue-page > main > section > article dl div { display: grid; grid-template-columns: 90px 1fr; margin: 3px 0; }
.archive-catalogue-page > main > section > article dt { color: #7c8991; }
.archive-catalogue-page > main > section > article dd { margin: 0; }
.archive-catalogue-page > footer { padding: 20px; color: #7c8991; background: #e2e8ec; border-top: 1px solid #ccd6dc; text-align: center; }
.archive-catalogue-page section > article > button, .archive-related-records button, .archive-record-detail aside button { width: 100%; border: 0; padding: 0; color: #2c648f; background: transparent; text-align: left; }
.archive-catalogue-page section > article > button h2 { color: inherit; }
.archive-result-relevant { background: #fffdf6; }
.archive-record-detail main > section > h1 { margin: 8px 0 18px; font: 22px/1.5 SimSun, serif; }
.archive-record-type { display: inline-block; padding: 3px 8px; color: #fff; background: #647e91; }
.archive-record-detail main > section > dl { border-top: 1px solid #d4dde3; }
.archive-record-detail main > section > dl div { display: grid; grid-template-columns: 125px 1fr; border-bottom: 1px solid #dce3e8; }
.archive-record-detail main > section > dl dt, .archive-record-detail main > section > dl dd { margin: 0; padding: 9px 10px; }
.archive-record-detail main > section > dl dt { color: #667987; background: #f3f6f8; }
.archive-restriction { margin-top: 18px; padding: 13px; color: #605a49; background: #faf7eb; border: 1px solid #ddd4b8; }
.archive-restriction p { margin: 6px 0 0; }
.archive-related-records { margin-top: 22px; }
.archive-related-records h2 { padding-bottom: 8px; border-bottom: 2px solid #5b7b91; font-size: 14px; }
.archive-related-records button { padding: 8px 2px; border-bottom: 1px dotted #cbd4da; }

/* Interactive Mail list and attachment groups. */
.mail-list-item { width: 100%; min-height: 78px; display: grid; grid-template-columns: 35px minmax(0,1fr) 42px; align-items: start; gap: 8px; border: 0; border-bottom: 1px solid #ddd; padding: 10px; color: #333; background: transparent; text-align: left; }
.mail-list-item:hover { background: #eef3f6; }
.mail-list-item.selected { background: #dfeaf1; }
.mail-list-item.unread strong { font-weight: 700; }
.mail-list-item div { min-width: 0; }
.mail-list-item h3 { overflow: hidden; margin: 3px 0; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.mail-list-item p { overflow: hidden; margin: 0; color: #73777a; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.mail-list-item time { color: #85898c; font-size: 9px; text-align: right; }
.mail-attachment-stack { display: grid; gap: 8px; margin-top: 22px; }
.mail-attachment-stack .mail-attachment { margin-top: 0; }
.mail-attachment i { color: #5580a0; font-style: normal; font-size: 9px; }
.ticket-mail-detail { max-width: 520px; border-top: 1px solid #ddd; }
.ticket-mail-detail div { display: grid; grid-template-columns: 110px 1fr; border-bottom: 1px solid #e3e3e3; }
.ticket-mail-detail dt, .ticket-mail-detail dd { margin: 0; padding: 8px; }
.ticket-mail-detail dt { color: #777; background: #f7f7f7; }
.mail-muted-note { color: #888; font-size: 10px; }

@media (max-width: 760px) {
  .ycwb-top span:first-child, .ycwb-header form, .ycwb-site-name, .ycwb-sidebar { display: none; }
  .ycwb-header { height: 72px; grid-template-columns: 1fr; }
  .ycwb-wordmark strong { font-size: 30px; }
  .ycwb-nav { justify-content: flex-start; overflow-x: auto; }
  .ycwb-nav a { min-width: 64px; }
  .ycwb-layout { grid-template-columns: 1fr; gap: 0; }
  .ycwb-article h1 { font-size: 24px; }
  .ycwb-article h2 { font-size: 13px; line-height: 1.7; }
  .ycwb-byline { display: grid; gap: 3px; }
  .ycwb-article > p { font-size: 14px; }
  .ycwb-article figure { width: 100%; }
  .procurement-utility span:last-child { display: none; }
  .procurement-page > header { height: 72px; }
  .procurement-page > header h1 { font-size: 16px; }
  .procurement-emblem { width: 44px; height: 44px; font-size: 20px; }
  .procurement-page > nav { justify-content: flex-start; overflow-x: auto; }
  .procurement-page > nav a { min-width: 95px; }
  .procurement-query form { grid-template-columns: 1fr; }
  .procurement-help { display: none; }
  .procurement-results { grid-template-columns: 1fr; }
  .procurement-results > aside { display: none; }
  .procurement-results > section > header { display: block; }
  .procurement-results > section > article { padding-right: 15px; }
  .procurement-results article time { position: static; display: block; margin-bottom: 5px; }
  .procurement-detail > main { padding: 18px 13px; overflow-x: auto; }
  .procurement-meta { grid-template-columns: 1fr; }
  .procurement-detail table { min-width: 650px; }
  .procurement-detail main > footer { display: grid; gap: 4px; }
  .archive-record-detail main > section > dl div { grid-template-columns: 100px 1fr; }
  .archive-catalogue-page > header { height: 70px; padding: 0 12px; }
  .archive-catalogue-page > header > div > span { width: 42px; height: 42px; font-size: 20px; }
  .archive-catalogue-page > header strong { font-size: 15px; }
  .archive-catalogue-page > header nav { display: none; }
  .archive-search { grid-template-columns: 90px minmax(0,1fr) 55px; padding: 0 10px; }
  .archive-catalogue-page > main { grid-template-columns: 1fr; }
  .archive-catalogue-page > main > aside { display: none; }
  .archive-catalogue-page > main > section { padding: 15px 12px; }
}

/* Office/WPS document preview */
.document-dialog { width:min(1120px,calc(100% - 26px)); border-radius:8px; overflow:hidden; }.document-dialog > article { background:#f1f2f3; }.document-dialog-header { min-height:45px; align-items:center; padding:8px 14px; color:#fff; background:#2f6ca5; border-bottom:0; }.document-dialog[data-preview-type="xls"] .document-dialog-header { background:#217346; }.document-dialog[data-preview-type="pdf"] .document-dialog-header { background:#4f555a; }.document-dialog[data-preview-type="txt"] .document-dialog-header { color:#333; background:#e9eaeb; border-bottom:1px solid #ccc; }.document-dialog-header p { color:rgba(255,255,255,.78); }.document-dialog[data-preview-type="txt"] .document-dialog-header p { color:#747b82; }.document-dialog-header h2 { font-size:14px; font-weight:500; }.document-dialog-header > button { color:inherit; }.document-toolbar { background:#fff; border-bottom:1px solid #cfd2d4; }.office-app-tabs { height:30px; display:flex; align-items:end; gap:2px; padding:0 8px; }.office-app-tabs button { height:28px; border:0; padding:0 11px; color:#444; background:transparent; font-size:10px; }.office-app-tabs button.active { color:#1f5b8f; border-bottom:2px solid #2f6ca5; }.document-dialog[data-preview-type="xls"] .office-app-tabs button.active { color:#217346; border-color:#217346; }.office-file-tab { color:#fff !important; background:#2f6ca5 !important; }.document-dialog[data-preview-type="xls"] .office-file-tab { background:#217346 !important; }.office-ribbon { height:62px; display:flex; align-items:stretch; padding:5px 9px; border-top:1px solid #eceeef; background:#fafafa; }.office-ribbon > div { min-width:105px; display:grid; align-content:center; gap:7px; padding:0 12px; border-right:1px solid #ddd; }.office-ribbon strong { color:#333; font-size:10px; font-weight:500; }.office-ribbon span { color:#777; font-size:9px; }.office-ribbon .office-zoom { min-width:130px; margin-left:auto; border-right:0; color:#777; font-size:9px; }.pdf-preview-toolbar,.text-preview-toolbar { height:38px; display:flex; align-items:center; gap:5px; padding:0 10px; background:#f5f6f7; }.pdf-preview-toolbar button,.text-preview-toolbar button { height:27px; border:0; border-radius:4px; padding:0 8px; background:transparent; }.pdf-preview-toolbar button:hover,.text-preview-toolbar button:hover { background:#e2e4e6; }.pdf-preview-toolbar i { width:1px; height:22px; background:#d3d5d6; }.text-preview-toolbar span { flex:1; }.document-body { max-height:min(67vh,760px); padding:32px 42px 55px; background:#d9dcdf; }.document-page { width:min(794px,100%); min-height:1123px; padding:72px 78px 88px; color:#111; background:#fff; box-shadow:0 2px 10px rgba(35,44,51,.23); font-family:SimSun,"Songti SC",serif; font-size:14px; line-height:1.85; }.document-dialog[data-preview-type="xls"] .document-body { padding:0 0 34px; background:#fff; }.document-dialog[data-preview-type="xls"] .document-page { width:100%; min-height:650px; margin:0; padding:34px 38px 55px 56px; box-shadow:none; font-family:"Microsoft YaHei",Arial,sans-serif; font-size:11px; }.document-dialog[data-preview-type="xls"] .document-page::before { content:"A　　　B　　　　　　　　　C　　　　　　　　D　　　　　　　　E"; display:block; margin:-34px -38px 18px -56px; padding:5px 13px 5px 63px; color:#555; background:#f3f4f5; border-bottom:1px solid #c8cbcd; white-space:pre; }.document-dialog[data-preview-type="xls"] .document-page table { font-size:10px; }.document-dialog[data-preview-type="xls"] .document-page th,.document-dialog[data-preview-type="xls"] .document-page td { border-color:#c7cbce; }.document-dialog[data-preview-type="xls"] .document-page th { background:#f3f5f4; }.excel-sheet-tabs { position:absolute; right:0; bottom:0; left:0; height:34px; display:flex; align-items:center; gap:2px; padding:0 8px; border-top:1px solid #c9ccce; background:#f5f6f7; font-family:"Microsoft YaHei",sans-serif; }.document-body:has(.excel-sheet-tabs) { position:relative; }.excel-sheet-tabs button { height:28px; border:0; padding:0 13px; background:transparent; font-size:10px; }.excel-sheet-tabs button.active { color:#217346; border-bottom:2px solid #217346; }.excel-sheet-tabs span { flex:1; }.excel-sheet-tabs small { color:#777; }.document-dialog > article > footer { min-height:38px; padding:5px 12px; }

@media (max-width: 900px) {
  .cloud-window { right:18px; left:18px; }
  .desktop-icons { display:none; }
  .browser-tab-wrap { min-width:135px; }
  .public-search-scope { padding-left:35px; padding-right:35px; }.baidu-results-layout { grid-template-columns:1fr; padding-left:35px; padding-right:35px; }.baidu-results-layout aside { display:none; }.baidu-results-page > footer { padding-left:35px; }
  .forum-profile-layout { grid-template-columns:170px minmax(0,1fr); }.forum-thread-table th:nth-child(3),.forum-thread-table td:nth-child(3){display:none;}
  .tieba-global{grid-template-columns:120px minmax(280px,1fr)}.tieba-global nav{display:none}.tieba-board-layout{grid-template-columns:minmax(0,1fr) 210px}.tieba-profile-layout{grid-template-columns:minmax(0,1fr) 210px}.tieba-message-page>main{margin:0;width:100%;height:100%;min-height:0}
  .company-content-layout { grid-template-columns:170px minmax(0,1fr); }
  .company-site-search{width:230px}.company-site-search+.company-hotline{display:none}.company-search-layout{grid-template-columns:minmax(0,1fr) 170px}.company-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.company-photo-shell{grid-template-columns:1fr}
  .mail-main { grid-template-columns:135px 240px minmax(0,1fr); }
  .wechat-app { grid-template-columns:54px 220px minmax(0,1fr); }
  .mac-photos-app .cloud-photo-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .desktop-topbar .mac-menu-left button:not(.apple-menu),.mac-menu-left strong,.mac-menu-right span { display:none; }
  .desktop-dock { bottom:5px; height:58px; gap:3px; padding:5px; border-radius:14px; }.desktop-dock button { width:42px; height:48px; }.dock-icon { width:40px; height:40px; border-radius:9px; }.dock-divider { height:38px; }
  .cloud-window { top:36px; right:5px; bottom:70px; left:5px; border-radius:9px; }
  .browser-tabs { padding-left:70px; }.browser-tab-wrap { min-width:120px; }.browser-bookmarks { display:none; }.chrome-browser { grid-template-rows:40px 42px minmax(0,1fr); }
  .browser-toolbar { grid-template-columns:27px 27px minmax(100px,1fr) 27px 27px; }.browser-toolbar > button:nth-child(2),.browser-toolbar > button:nth-child(3){display:none;}.chrome-profile{display:grid!important;}
  .browser-recovery { inset:72px 8px auto 8px; width:auto; }.browser-recovery > div { width:100%; }
  .baidu-results-page > header { grid-template-columns:66px 1fr; padding:12px 12px 0; }.baidu-mini-logo { font-size:21px; }.baidu-results-page form button { width:70px; }.baidu-results-page > header nav { gap:13px; overflow:hidden; }.public-search-scope { padding:8px 15px; align-items:flex-start; }.baidu-results-layout { padding:15px; }.baidu-result-with-image { grid-template-columns:90px 1fr; }.baidu-results-page > footer { padding:12px 15px; }
  .realistic-map { grid-template-columns:1fr; }.map-search-panel { display:none; }
  .discuz-page { padding:0; }.discuz-top,.discuz-header,.discuz-subnav,.discuz-search,.discuz-stats { display:none; }.discuz-nav { overflow-x:auto; }.discuz-nav a { min-width:80px; }.forum-profile-layout { grid-template-columns:1fr; }.forum-profile-card { display:none; }.forum-thread-table td:nth-child(2),.forum-thread-table th:nth-child(2),.forum-thread-table td:nth-child(4),.forum-thread-table th:nth-child(4){display:none;}
  .tieba-global{height:48px;grid-template-columns:90px 1fr;gap:8px;padding:0 10px}.tieba-logo{font-size:15px}.tieba-logo strong{font-size:17px}.tieba-global form button:nth-of-type(2){display:none}.tieba-cover{height:120px;padding:0 12px 14px}.tieba-cover>button,.tieba-board-nav span{display:none}.tieba-board-nav{overflow-x:auto;padding:0}.tieba-board-layout{grid-template-columns:1fr;margin-top:0}.tieba-board-layout>aside{display:none}.tieba-topic{grid-template-columns:40px minmax(0,1fr) 35px;padding-left:3px}.tieba-thread-shell>header div{display:none}.tieba-floor{grid-template-columns:82px minmax(0,1fr)}.tieba-floor>aside{padding:14px 5px}.tieba-user-avatar{width:44px;height:44px}.tieba-floor>section{padding:18px 14px 36px;font-size:11px}.tieba-profile-cover{margin:0;padding:16px}.tieba-profile-avatar{width:66px;height:66px}.tieba-profile-cover>button:last-of-type,.tieba-profile-tabs a:nth-child(n+3){display:none}.tieba-profile-layout{grid-template-columns:1fr;margin:0}.tieba-profile-layout>aside{display:none}.tieba-message-page>main{grid-template-columns:1fr}.tieba-message-page>main>aside{display:none}.tieba-message{max-width:88%}.tieba-chat-scroll{padding:12px}
  .company-topline,.company-hotline,.company-hero-2014,.company-content-layout > aside { display:none; }.company-2014-site > header { height:65px; }.company-logo-2014 strong{font-size:15px}.company-main-nav{overflow-x:auto}.company-main-nav a{min-width:78px}.company-content-layout{grid-template-columns:1fr;padding:13px}.company-content-layout figure{width:100%}
  .company-2014-site>header{gap:10px;padding:0 12px}.company-logo-2014>span{width:42px;height:42px;font-size:15px}.company-logo-2014 small{display:none}.company-site-search{width:min(210px,48vw)}.company-search-layout{grid-template-columns:1fr;padding:13px}.company-search-layout>aside{display:none}.company-search-result{padding-right:4px}.company-search-result time{position:static;display:block;margin-bottom:6px}.company-gallery-shell,.company-photo-shell{padding:13px}.company-gallery-grid{grid-template-columns:1fr 1fr;gap:8px}.company-gallery-grid figcaption{font-size:9px}.company-next-action{align-items:flex-start;gap:8px}.company-next-action span{display:none}
  .library-record-page header nav,.library-record-layout > aside { display:none; }.library-record-layout { width:94%; grid-template-columns:1fr; }.library-record-search { padding:10px; }.library-record-layout > main { padding:17px; }
  .coach-ticket-page > header nav,.coach-ticket-page header > span,.coach-ticket-page > main > aside { display:none; }.coach-query { grid-template-columns:1fr 1fr 70px; padding:10px; }.coach-query > div:nth-of-type(3),.swap-city { display:none; }.coach-ticket-page > main { width:96%; grid-template-columns:1fr; }.coach-table-head,.coach-row { grid-template-columns:65px minmax(120px,1fr) 60px 60px; }.coach-table-head span:nth-child(3),.coach-table-head span:nth-child(5),.coach-row > span:nth-child(3),.coach-row > span:nth-child(5){display:none;}
  .finder-body { grid-template-columns:1fr; }.finder-body > aside { display:none; }.finder-columns,.finder-body .cloud-file-row { grid-template-columns:28px minmax(150px,1fr) 90px; }.finder-columns span:first-child{grid-column:1/3}.finder-columns span:nth-child(2){grid-column:3}.finder-columns span:nth-child(n+3),.finder-body .cloud-file-row span:nth-last-child(-n+2){display:none}.finder-search{width:120px}
  .mail-main { grid-template-columns:1fr; }.mail-main > aside,.mail-list { display:none; }.wechat-app { grid-template-columns:48px minmax(0,1fr); }.wechat-conversation-list { display:none; }.wechat-chat-panel { grid-column:2; }.wechat-chat-panel { grid-template-rows:55px minmax(0,1fr) 105px; }
  .photos-body { grid-template-columns:1fr; }.photos-body > aside { display:none; }.mac-photos-app .cloud-photo-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }.photos-toolbar input{display:none}
  .office-ribbon{height:48px;overflow:hidden}.office-ribbon>div:nth-child(n+3){display:none}.document-body{padding:15px}.document-page{min-height:0;padding:38px 25px}.document-dialog[data-preview-type="xls"] .document-page{padding:28px 12px 50px 35px}
}

/* Excel sheet tabs are a sibling of the scrollable worksheet, never an overlay. */
.document-dialog[data-preview-type="xls"] .document-body { padding-bottom: 0; }
.excel-sheet-tabs { position: static; right: auto; bottom: auto; left: auto; width: 100%; flex: none; z-index: 1; }

/* Restricted archival previews stay legible as catalogue objects, not full evidence. */
.library-preview-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.library-preview-grid figure { margin:0; border:1px solid #d7d7d2; background:#f7f7f3; }
.library-copy-preview { grid-column:1 / -1; }
.library-copy-preview .archive-scan { max-height:310px; object-fit:contain; background:#ecece8; }
.library-preview-grid .archive-scan { width:100%; margin:0; aspect-ratio:3 / 2; object-fit:cover; }
.library-preview-grid figcaption { padding:9px 11px; color:#666; font-size:11px; line-height:1.65; }
.restricted-drawing-preview img { filter:grayscale(.18) contrast(.88) blur(.35px); }
@media (max-width: 680px) { .library-preview-grid { grid-template-columns:1fr; } }
