/**
 * 查手机 — 模拟手机 UI
 * 黑白简约 · 线条图标 · 零 emoji
 */

/* ═══════ 角色选择列表（联系人风格） ═══════ */

#phoneCheckApp .pc-selector-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px 6px;
  position: relative;
}
#phoneCheckApp .pc-selector-title {
  font-size: 12px;
  color: var(--ink-subtle);
  font-weight: 300;
  letter-spacing: 2px;
}
#phoneCheckApp .pc-selector-refresh {
  position: absolute;
  right: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-light);
  border: none;
  background: transparent;
}
#phoneCheckApp .pc-selector-refresh:active {
  background: var(--surface-page);
}

#phoneCheckApp .pc-friend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  background: var(--surface-card);
  border-bottom: 0.5px solid var(--border-separator);
}
#phoneCheckApp .pc-friend-item:active {
  background: var(--surface-page);
}
#phoneCheckApp .pc-friend-avatar {
  width: 44px; height: 44px;
  border-radius: 6px;
  flex-shrink: 0;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-input);
  border: 1px solid var(--border-light);
  overflow: hidden;
}
#phoneCheckApp .pc-friend-avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
#phoneCheckApp .pc-friend-info {
  flex: 1; min-width: 0;
}
#phoneCheckApp .pc-friend-name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--ink);
}
#phoneCheckApp .pc-friend-role {
  font-size: 11px;
  color: var(--ink-subtle);
  font-weight: 300;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#phoneCheckApp .pc-friend-arrow {
  color: var(--ink-subtle);
  font-size: 16px;
  flex-shrink: 0;
}

/* ═══════ 模拟手机外框 ═══════ */

#phoneCheckApp .pc-frame-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  overflow: hidden;
}

#phoneCheckApp .pc-device {
  width: 100%;
  max-width: 380px;
  height: 100%;
  max-height: calc(100vh - 100px);
  background: #F4F4F4;
  border-radius: 24px;
  border: 1px solid #D0D0D0;
  box-shadow:
    0 0 0 3px #1a1a1a,
    0 0 0 4px #333,
    0 12px 40px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

/* ─── 模拟状态栏 ─── */

#phoneCheckApp .pc-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 2px;
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  background: #F4F4F4;
}
#phoneCheckApp .pc-status-icons {
  display: flex;
  align-items: center;
  gap: 3px;
}
#phoneCheckApp .pc-status-icons svg {
  width: 12px; height: 12px;
  stroke: #1a1a1a;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── 桌面视图 ─── */

#phoneCheckApp .pc-home-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #F4F4F4;
}

/* ─── 时间卡片 ─── */

#phoneCheckApp .pc-time-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  margin: 8px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
}
#phoneCheckApp .pc-time-time {
  font-size: 34px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 2px;
  line-height: 1;
}
#phoneCheckApp .pc-time-date {
  font-size: 10px;
  color: #999;
  font-weight: 300;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ─── APP 桌面网格 ─── */

#phoneCheckApp .pc-home {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 14px;
}
#phoneCheckApp .pc-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 10px;
  justify-items: center;
}
#phoneCheckApp .pc-app-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: transform 0.12s;
}
#phoneCheckApp .pc-app-icon:active {
  transform: scale(0.86);
}
#phoneCheckApp .pc-app-icon-bg {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
#phoneCheckApp .pc-app-icon-bg svg {
  width: 22px; height: 22px;
  stroke: #1a1a1a;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#phoneCheckApp .pc-app-icon-label {
  font-size: 10px;
  color: #333;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ─── 底部机主名 ─── */

#phoneCheckApp .pc-owner-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 0 10px;
}
#phoneCheckApp .pc-owner-label {
  text-align: center;
  font-size: 10px;
  color: #999;
  font-weight: 300;
  letter-spacing: 0.8px;
}
#phoneCheckApp .pc-home-refresh {
  width: 22px;
  height: 22px;
  border: 0.5px solid #E0E0E0;
  background: rgba(255,255,255,0.82);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #999;
}
#phoneCheckApp .pc-home-refresh svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

/* ═══════ APP 内页通用 ═══════ */

#phoneCheckApp .pc-app-view {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #F4F4F4;
  border-radius: 24px;
  overflow: hidden;
  z-index: 10;
}
#phoneCheckApp .pc-app-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
#phoneCheckApp .pc-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: #fff;
  border-bottom: 0.5px solid #E5E5E5;
  flex-shrink: 0;
  min-height: 38px;
}
#phoneCheckApp .pc-app-back {
  width: 30px; height: 28px;
  border: none;
  background: transparent;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
#phoneCheckApp .pc-app-back:active {
  background: #F0F0F0;
}
#phoneCheckApp .pc-app-title {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 1px;
}
#phoneCheckApp .pc-app-refresh {
  width: 30px; height: 28px;
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
#phoneCheckApp .pc-app-refresh:active {
  background: #F0F0F0;
}
#phoneCheckApp .pc-app-refresh svg {
  width: 15px; height: 15px;
}
#phoneCheckApp .pc-app-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#phoneCheckApp .pc-loading {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #999;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1px;
}
#phoneCheckApp .pc-loading-dots {
  display: flex;
  gap: 5px;
}
#phoneCheckApp .pc-loading-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #999;
  animation: pcDotBounce 1.2s infinite ease-in-out;
}
#phoneCheckApp .pc-loading-dot:nth-child(1) { animation-delay: 0s; }
#phoneCheckApp .pc-loading-dot:nth-child(2) { animation-delay: 0.16s; }
#phoneCheckApp .pc-loading-dot:nth-child(3) { animation-delay: 0.32s; }
@keyframes pcDotBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.3; }
  40% { transform: translateY(-6px); opacity: 1; }
}

/* ═══════ 微信 APP ═══════ */

#phoneCheckApp .pc-wechat-search {
  margin: 6px 10px;
  padding: 6px 10px;
  background: #EDEDED;
  border-radius: 6px;
  font-size: 11px;
  color: #999;
  text-align: center;
  letter-spacing: 0.5px;
}
#phoneCheckApp .pc-wechat-section-label {
  padding: 6px 12px 3px;
  font-size: 10px;
  color: #999;
  font-weight: 400;
  letter-spacing: 0.5px;
  background: #EDEDED;
}
#phoneCheckApp .pc-wechat-chat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 0.5px solid #F0F0F0;
  background: #fff;
  cursor: pointer;
}
#phoneCheckApp .pc-wechat-chat-item:active {
  background: #EDEDED;
}
#phoneCheckApp .pc-wechat-avatar {
  width: 40px; height: 40px;
  border-radius: 6px;
  flex-shrink: 0;
  background: #E8E8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #666;
  font-weight: 500;
}
#phoneCheckApp .pc-wechat-chat-info {
  flex: 1; min-width: 0;
}
#phoneCheckApp .pc-wechat-chat-name {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.3px;
}
#phoneCheckApp .pc-wechat-chat-msg {
  font-size: 11px;
  color: #999;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}
#phoneCheckApp .pc-wechat-chat-meta {
  text-align: right;
  flex-shrink: 0;
}
#phoneCheckApp .pc-wechat-chat-time {
  font-size: 10px;
  color: #BBB;
}
#phoneCheckApp .pc-wechat-pin-icon {
  font-size: 10px;
  color: #BBB;
  margin-right: 2px;
}

/* 微信聊天详情 */
#phoneCheckApp .pc-wechat-msgs {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #EDEDED;
  min-height: 100%;
}
#phoneCheckApp .pc-wechat-bubble {
  max-width: 78%;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.5;
  word-break: break-word;
}
#phoneCheckApp .pc-wechat-bubble.from-other {
  align-self: flex-start;
  background: #fff;
  color: #1a1a1a;
}
#phoneCheckApp .pc-wechat-bubble.from-user {
  align-self: flex-end;
  background: #95EC69;
  color: #1a1a1a;
}
#phoneCheckApp .pc-wechat-bubble-sender {
  font-size: 9px;
  color: #888;
  margin-bottom: 2px;
}

/* ═══════ 抖音 APP ═══════ */

#phoneCheckApp .pc-douyin-tabs {
  display: flex;
  border-bottom: 0.5px solid #E5E5E5;
  background: #fff;
  flex-shrink: 0;
}
#phoneCheckApp .pc-douyin-tab {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 500;
  color: #999;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.5px;
}
#phoneCheckApp .pc-douyin-tab.active {
  color: #1a1a1a;
  border-bottom-color: #1a1a1a;
}
#phoneCheckApp .pc-douyin-feed {
  flex: 1;
  overflow-y: auto;
  background: #1a1a1a;
}
#phoneCheckApp .pc-douyin-card {
  padding: 16px 12px;
  border-bottom: 0.5px solid #2a2a2a;
  color: #fff;
}
#phoneCheckApp .pc-douyin-card-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
#phoneCheckApp .pc-douyin-card-desc {
  font-size: 11px;
  color: #aaa;
  line-height: 1.5;
  font-weight: 300;
}
#phoneCheckApp .pc-douyin-card-stats {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  font-size: 10px;
  color: #888;
}

/* ═══════ 淘宝 APP ═══════ */

#phoneCheckApp .pc-taobao-search {
  margin: 8px;
  padding: 7px 12px;
  background: #FFF8F2;
  border-radius: 20px;
  font-size: 11px;
  color: #B98B68;
  text-align: center;
  border: 0.5px solid #F3E0CE;
}
#phoneCheckApp .pc-taobao-section {
  background: #fff;
  margin: 0 8px 8px;
  border-radius: 10px;
  overflow: hidden;
}
#phoneCheckApp .pc-taobao-section-title {
  padding: 10px 12px 6px;
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}
#phoneCheckApp .pc-taobao-order {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 0.5px solid #F5F5F5;
}
#phoneCheckApp .pc-taobao-order:last-child {
  border-bottom: none;
}
#phoneCheckApp .pc-taobao-order-img {
  width: 44px; height: 44px;
  border-radius: 6px;
  background: #F5F5F5;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CCC;
}
#phoneCheckApp .pc-taobao-order-info {
  flex: 1; min-width: 0;
}
#phoneCheckApp .pc-taobao-order-name {
  font-size: 12px;
  color: #1a1a1a;
  font-weight: 400;
}
#phoneCheckApp .pc-taobao-order-price {
  font-size: 12px;
  color: #FF5000;
  font-weight: 500;
}
#phoneCheckApp .pc-taobao-order-status {
  font-size: 10px;
  color: #999;
  margin-top: 1px;
}
#phoneCheckApp .pc-taobao-total {
  padding: 10px 12px;
  font-size: 12px;
  color: #FF5000;
  font-weight: 500;
  text-align: right;
}

/* ═══════ 日记 APP ═══════ */

#phoneCheckApp .pc-diary-paper {
  margin: 10px;
  padding: 16px 14px;
  background: #f4e4c1;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-family: KaiTi, STKaiti, serif;
  line-height: 2;
  color: #3d3226;
  font-size: 13px;
  background-image: repeating-linear-gradient(
    transparent,
    transparent 31px,
    #d4c4a1 31px,
    #d4c4a1 32px
  );
  background-position: 0 14px;
}
#phoneCheckApp .pc-diary-date {
  font-size: 11px;
  color: #8b7355;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-align: right;
}
#phoneCheckApp .pc-diary-text {
  white-space: pre-wrap;
  word-break: break-word;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* ═══════ 读书 APP ═══════ */

#phoneCheckApp .pc-reading-section-title {
  padding: 10px 12px 6px;
  font-size: 11px;
  color: #999;
  font-weight: 500;
  letter-spacing: 1px;
}
#phoneCheckApp .pc-reading-book {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border-bottom: 0.5px solid #F0F0F0;
}
#phoneCheckApp .pc-reading-book-cover {
  width: 44px; height: 60px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
#phoneCheckApp .pc-reading-book-info {
  flex: 1; min-width: 0;
}
#phoneCheckApp .pc-reading-book-title {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.3px;
}
#phoneCheckApp .pc-reading-book-author {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}
#phoneCheckApp .pc-reading-book-progress {
  font-size: 10px;
  color: var(--monet-blue);
  margin-top: 2px;
}
#phoneCheckApp .pc-reading-quote {
  padding: 10px 12px;
  margin: 0 12px 8px;
  background: #fff;
  border-radius: 8px;
  border-left: 3px solid #D0D0D0;
  font-size: 11px;
  color: #666;
  font-style: italic;
  line-height: 1.6;
}

/* ═══════ 日程 APP ═══════ */

#phoneCheckApp .pc-schedule-day {
  margin: 8px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
#phoneCheckApp .pc-schedule-day-title {
  padding: 8px 12px 4px;
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  border-bottom: 0.5px solid #F0F0F0;
}
#phoneCheckApp .pc-schedule-item {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 0.5px solid #F8F8F8;
  align-items: flex-start;
}
#phoneCheckApp .pc-schedule-item:last-child {
  border-bottom: none;
}
#phoneCheckApp .pc-schedule-time {
  font-size: 10px;
  color: #999;
  font-weight: 500;
  min-width: 36px;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}
#phoneCheckApp .pc-schedule-text {
  font-size: 11px;
  color: #333;
  font-weight: 300;
  line-height: 1.5;
}
#phoneCheckApp .pc-schedule-memo {
  padding: 8px 12px;
  font-size: 10px;
  color: #999;
  font-weight: 300;
  letter-spacing: 0.3px;
}
#phoneCheckApp .pc-schedule-memo::before {
  content: '· ';
  color: #CCC;
}

/* ═══════ 相册 APP ═══════ */

#phoneCheckApp .pc-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
}
#phoneCheckApp .pc-photos-item {
  aspect-ratio: 1;
  background: #E8E8E8;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
#phoneCheckApp .pc-photos-item svg {
  width: 24px; height: 24px;
  stroke: #CCC;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#phoneCheckApp .pc-photos-desc {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 4px 6px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* ═══════ 备忘录 APP ═══════ */

#phoneCheckApp .pc-note-item {
  padding: 12px;
  background: #fff;
  border-bottom: 0.5px solid #F0F0F0;
}
#phoneCheckApp .pc-note-item:active {
  background: #F8F8F8;
}
#phoneCheckApp .pc-note-title {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.3px;
}
#phoneCheckApp .pc-note-preview {
  font-size: 11px;
  color: #999;
  font-weight: 300;
  margin-top: 3px;
  line-height: 1.45;
}
#phoneCheckApp .pc-note-time {
  font-size: 10px;
  color: #CCC;
  margin-top: 4px;
}

/* ═══════ 相册 / 备忘录空细节 ═══════ */

#phoneCheckApp .pc-photos-detail {
  padding: 12px;
  font-size: 12px;
  color: #666;
  line-height: 1.8;
}

/* 20260624b 查手机体验修正 */
#phoneCheckApp .pc-friend-avatar {
  background: #ECECEC;
  border: none;
}
#phoneCheckApp .pc-friend-role {
  display: none;
}
#phoneCheckApp .pc-wechat-avatar {
  color: transparent;
  font-size: 0;
}
#phoneCheckApp .pc-wechat-feed-empty {
  color: #888;
}
#phoneCheckApp .pc-wechat-bubble.from-other {
  align-self: flex-start;
  background: #fff;
  color: #1a1a1a;
}
#phoneCheckApp .pc-wechat-bubble.from-user {
  align-self: flex-end;
  background: #95EC69;
  color: #1a1a1a;
}
#phoneCheckApp .pc-douyin-feed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 2px;
  align-content: start;
}
#phoneCheckApp .pc-douyin-card {
  min-height: 0;
  padding: 8px;
  border-bottom: none;
  background: #101010;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
#phoneCheckApp .pc-douyin-cover {
  position: relative;
  aspect-ratio: 9 / 12;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 7px;
  border-radius: 6px;
  color: rgba(255,255,255,0.72);
  background: linear-gradient(145deg, #2a2a2a, #050505);
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
  word-break: break-word;
}
#phoneCheckApp .pc-douyin-card-title {
  font-size: 12px;
  font-weight: 500;
  color: #eee;
  margin: 3px 0 2px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
  overflow-wrap: break-word;
}
#phoneCheckApp .pc-douyin-card-desc {
  font-size: 10px;
  color: #999;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#phoneCheckApp .pc-douyin-card-stats {
  font-size: 10px;
  color: #777;
  margin-top: 4px;
}
#phoneCheckApp .pc-taobao-order {
  align-items: flex-start;
}
#phoneCheckApp .pc-taobao-order-desc {
  font-size: 10px;
  color: #777;
  line-height: 1.45;
  margin-top: 2px;
}
#phoneCheckApp .pc-diary-paper {
  background: #f1dfb9;
  background-image: none;
  box-shadow: inset 0 0 36px rgba(94,66,34,0.12), 0 2px 8px rgba(0,0,0,0.08);
}
#phoneCheckApp .pc-reading-book-cover {
  color: transparent;
  font-size: 0;
  background: linear-gradient(135deg, #5f6470, #a8a095) !important;
}
#phoneCheckApp .pc-reading-mini-quote {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.45;
  color: #777;
  white-space: normal;
}

#phoneCheckApp .pc-note-detail {
  padding: 18px 16px;
  color: #2b2418;
}
#phoneCheckApp .pc-note-detail-time {
  font-size: 10px;
  color: rgba(43,36,24,0.48);
  margin-bottom: 10px;
}
#phoneCheckApp .pc-note-detail-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 14px;
}
#phoneCheckApp .pc-note-detail-content {
  font-size: 13px;
  line-height: 1.8;
  white-space: pre-wrap;
}
#phoneCheckApp .pc-photos-section-title {
  padding: 8px 8px 4px;
  font-size: 11px;
  color: #777;
  letter-spacing: 0.8px;
}
#phoneCheckApp .pc-photos-grid.locked-grid {
  grid-template-columns: 1fr 1fr;
}
#phoneCheckApp .pc-photos-item.locked {
  background: linear-gradient(135deg, #2c2c2c, #111);
}
#phoneCheckApp .pc-photo-lock {
  position: absolute;
  top: 8px;
  right: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 8px;
  letter-spacing: 1px;
  border: 0.5px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  padding: 2px 4px;
}

/* ═══════ 查手机弹窗（AI申请） ═══════ */
.pc-request-overlay {
  position: fixed; inset: 0; z-index: 10010;
  background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  animation: pcOverlayFadeIn 0.25s ease;
}
@keyframes pcOverlayFadeIn {
  from { background: rgba(0,0,0,0); }
  to { background: rgba(0,0,0,0.35); }
}
.pc-request-overlay.intensity-2 { background: rgba(0,0,0,0.55); }
.pc-request-overlay.intensity-3 { background: rgba(0,0,0,0.75); animation: pcOverlayPulse 1.5s ease-in-out infinite; }
@keyframes pcOverlayPulse {
  0%,100% { background: rgba(0,0,0,0.7); }
  50% { background: rgba(30,10,10,0.8); }
}
.pc-request-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 20px;
  width: min(300px, 88vw);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 1px solid rgba(0,0,0,0.08);
  animation: pcCardShake 0.5s ease;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.pc-request-card.intensity-2 {
  background: #2a2a2a;
  border-color: rgba(200,100,80,0.3);
  box-shadow: 0 0 40px rgba(200,80,60,0.2), 0 20px 60px rgba(0,0,0,0.4);
  animation: pcCardShake 0.3s ease;
}
.pc-request-card.intensity-3 {
  background: #0f0f0f;
  border: 2px solid rgba(220,60,40,0.6);
  box-shadow: 0 0 80px rgba(220,60,40,0.35), 0 20px 80px rgba(0,0,0,0.6);
  animation: pcCardShakeHard 0.2s ease infinite;
}
.pc-request-card .pc-request-name {
  font-size: 15px; font-weight: 600;
  margin-bottom: 8px; letter-spacing: 0.8px;
  color: #1a1a1a;
  transition: color 0.3s;
}
.pc-request-card.intensity-2 .pc-request-name { color: #ddd; }
.pc-request-card.intensity-3 .pc-request-name { color: #ff6b6b; font-size: 16px; }
.pc-request-card .pc-request-subtitle {
  font-size: 13px; color: #888;
  margin-bottom: 22px; line-height: 1.5;
  transition: color 0.3s;
}
.pc-request-card.intensity-2 .pc-request-subtitle { color: #aaa; }
.pc-request-card.intensity-3 .pc-request-subtitle { color: #bbb; }
.pc-request-actions {
  display: flex; gap: 12px;
}
.pc-request-btn {
  flex: 1; padding: 12px 0; border-radius: 14px;
  font-size: 15px; font-weight: 500; letter-spacing: 1px;
  cursor: pointer; border: none; transition: transform 0.12s, background 0.3s, color 0.3s;
}
.pc-request-btn:active { transform: scale(0.95); }
.pc-request-btn.accept {
  background: var(--monet-blue, #8FAFBF); color: #fff;
}
.pc-request-btn.reject {
  background: #f0f0f0; color: #888;
}
.pc-request-card.intensity-2 .pc-request-btn.reject {
  background: #444; color: #aaa;
}
.pc-request-card.intensity-3 .pc-request-btn.reject {
  background: #333; color: #777;
  font-size: 13px;
}
.pc-request-card.intensity-3 .pc-request-btn.accept {
  background: #c0392b; color: #fff;
  font-size: 16px;
  animation: pcBtnPulse 0.8s ease-in-out infinite;
}
@keyframes pcBtnPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); }
  50% { box-shadow: 0 0 20px 8px rgba(192,57,43,0.2); }
}
/* 整体页面抖动 */
body.pc-shaking {
  animation: pcBodyShake 0.3s ease infinite;
}
@keyframes pcBodyShake {
  0%,100% { transform: translate(0,0); }
  10% { transform: translate(-2px,1px); }
  30% { transform: translate(2px,-1px); }
  50% { transform: translate(-1px,-2px); }
  70% { transform: translate(1px,2px); }
  90% { transform: translate(-2px,0); }
}
@keyframes pcCardShake {
  0%,100% { transform: translateX(0) rotate(0deg); }
  10%,50%,90% { transform: translateX(-3px) rotate(-0.3deg); }
  30%,70% { transform: translateX(3px) rotate(0.3deg); }
}
@keyframes pcCardShakeHard {
  0%,100% { transform: translateX(0) rotate(0deg); }
  10%,30%,50%,70%,90% { transform: translateX(-8px) rotate(-1deg); }
  20%,40%,60%,80% { transform: translateX(8px) rotate(1deg); }
}

/* 查手机系统消息样式（类似"撤回了一条消息"） */
.message-system {
  text-align: center;
  padding: 6px 16px;
  font-size: 11px;
  color: #999;
  letter-spacing: 0.5px;
  font-weight: 300;
  margin: 4px 0;
}
