/* ==========================================
   业主投票系统 - 手机端样式
   支持：SMS验证码 + 多选复选框
   ========================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f5f5f5;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* 底部导航 */
.tab-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  display: flex;
  border-top: 1px solid #eee;
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom);
}
.tab-item {
  flex: 1;
  text-align: center;
  padding: 10px 0 6px;
  color: #999;
  cursor: pointer;
}
.tab-item.active { color: #1989fa; }
.tab-icon { display: block; font-size: 22px; }
.tab-text { display: block; font-size: 11px; margin-top: 2px; }

/* 页面容器 */
.page { display: none; padding-bottom: 60px; min-height: 100vh; }
.page.active { display: block; }
.page-content { padding: 15px; }

/* 登录页 */
.login-bg {
  min-height: 100vh;
  background: linear-gradient(180deg, #1989fa 0%, #66b1ff 100%);
  padding: 60px 20px 30px;
}
.login-header { text-align: center; margin-bottom: 30px; }
.login-emoji { font-size: 60px; display: block; }
.login-header h1 { color: #fff; font-size: 26px; margin: 10px 0 6px; }
.login-header p { color: rgba(255,255,255,0.85); font-size: 14px; }

.login-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.info-box { background: #f0f7ff; border-radius: 10px; padding: 16px; margin-bottom: 20px; }
.info-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; border-bottom: 1px solid #e0edff; }
.info-row:last-child { border-bottom: none; }
.info-label { color: #999; }
.info-val { color: #333; font-weight: 500; text-align: right; flex: 1; margin-left: 10px; }

.login-tip { text-align: center; color: #666; font-size: 13px; margin-bottom: 16px; line-height: 1.5; }

.phone-input-wrap {
  display: flex; align-items: center; border: 1px solid #ddd;
  border-radius: 12px; overflow: hidden; margin-bottom: 12px;
}
.phone-prefix {
  background: #f5f5f5; padding: 14px 12px; font-size: 15px; color: #666; border-right: 1px solid #ddd;
}
.phone-input {
  flex: 1; min-width: 0; padding: 14px 12px; border: none; font-size: 16px; outline: none;
}
.phone-input.full {
  border: 1px solid #ddd; border-radius: 12px; width: 100%; margin-bottom: 12px; box-sizing: border-box;
}

/* 短信验证码行 */
.sms-row {
  display: flex; gap: 6px; margin-bottom: 16px;
}
.sms-input {
  flex: 1; min-width: 0; padding: 14px 8px; border: 1px solid #ddd;
  border-radius: 12px; font-size: 16px; outline: none; width: 0;
}
.btn-sms {
  max-width: 80px; padding: 14px 4px; border: 1px solid #1989fa; border-radius: 12px;
  background: #fff; color: #1989fa; font-size: 12px; cursor: pointer; white-space: nowrap;
  flex-shrink: 0; text-align: center;
}
.btn-sms:active { background: #e8f4ff; }
.btn-sms:disabled { border-color: #ccc; color: #ccc; cursor: not-allowed; }

.btn-primary {
  width: 100%; padding: 14px; border: none; border-radius: 12px;
  background: #1989fa; color: #fff; font-size: 16px; cursor: pointer;
}
.btn-primary:active { opacity: 0.8; }

.error-text { color: #e74c3c; font-size: 13px; text-align: center; margin-top: 10px; min-height: 20px; }

.welcome-text { font-size: 22px; font-weight: bold; text-align: center; margin: 10px 0 6px; color: #333; }
.user-detail { text-align: center; color: #666; font-size: 14px; }
.user-phone { text-align: center; color: #999; font-size: 13px; margin-bottom: 12px; }
.status-tag { text-align: center; margin-bottom: 16px; }

/* 多房产展示 */
.welcome-room-info { text-align: center; color: #666; font-size: 14px; margin: 4px 0; }
.welcome-room-info .welcome-label { color: #999; }
.multi-rooms-box { 
  background: #f0f7ff; border: 1px solid #b3d8ff; border-radius: 10px; 
  padding: 12px; margin: 8px 0; text-align: left;
}
.multi-rooms-title { font-size: 13px; color: #333; font-weight: bold; margin-bottom: 6px; }
.multi-room-item { 
  display: flex; align-items: center; gap: 8px; padding: 4px 0; 
  font-size: 12px; color: #555; border-bottom: 1px dashed #d0e5ff;
}
.multi-room-item:last-child { border-bottom: none; }
.multi-room-item .room-num { 
  background: #1989fa; color: #fff; width: 18px; height: 18px; 
  border-radius: 50%; display: flex; align-items: center; justify-content: center; 
  font-size: 11px; flex-shrink: 0;
}
.multi-room-item .room-owner { color: #999; font-size: 11px; margin-left: auto; }
.multi-rooms-warn { 
  margin-top: 8px; padding: 6px 8px; background: #fff3cd; border-radius: 6px; 
  font-size: 12px; color: #856404; text-align: center;
}
.btn-logout-sm {
  display: block; width: 100%; margin-top: 10px; padding: 8px;
  background: none; border: 1px solid #ddd; border-radius: 8px;
  color: #999; font-size: 13px; cursor: pointer;
}
.tag-wait { background: #e3f2fd; color: #1989fa; padding: 8px 16px; border-radius: 8px; display: inline-block; font-size: 14px; }
.tag-end { background: #f5f5f5; color: #999; padding: 8px 16px; border-radius: 8px; display: inline-block; font-size: 14px; }
.tag-done { background: #e8f8e8; color: #07c160; padding: 8px 16px; border-radius: 8px; display: inline-block; font-size: 14px; }
.tag-go { background: #e8f8e8; color: #07c160; padding: 8px 16px; border-radius: 8px; display: inline-block; font-size: 14px; }

.admin-entry { text-align: center; margin-top: 25px; color: rgba(255,255,255,0.7); font-size: 14px; cursor: pointer; }
.admin-entry span { border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 2px; }

/* 投票页 */
.card {
  background: #fff; border-radius: 14px; padding: 20px; margin-bottom: 14px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.center-box {
  display: flex; flex-direction: column; align-items: center;
  padding: 60px 20px; text-align: center;
}
.big-emoji { font-size: 50px; margin-bottom: 16px; }
.center-box p { color: #666; font-size: 15px; margin-bottom: 20px; }
.small-text { font-size: 13px; color: #999; margin-top: 8px; }

.vote-status-card { text-align: center; }
.status-banner { margin-bottom: 14px; }
.banner-wait { background: #e3f2fd; color: #1989fa; padding: 12px; border-radius: 10px; font-size: 14px; }
.banner-end { background: #f5f5f5; color: #999; padding: 12px; border-radius: 10px; font-size: 14px; }
.banner-done { background: #e8f8e8; color: #07c160; padding: 12px; border-radius: 10px; font-size: 14px; }
.banner-go { background: #e8f8e8; color: #07c160; padding: 12px; border-radius: 10px; font-size: 14px; }

.count-row { margin-top: 8px; text-align: center; }
.count-num { display: block; font-size: 16px; font-weight: 500; color: #333; }

/* 候选人列表 */
.candidate-list { margin-top: 10px; padding-bottom: 80px; }
.c-item {
  display: flex; align-items: center; background: #fff; padding: 16px;
  margin-bottom: 10px; border-radius: 14px; cursor: pointer;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04); transition: all 0.2s;
}
.c-item.selected {
  background: #e8f4ff; border: 2px solid #1989fa;
  box-shadow: 0 2px 12px rgba(25,137,250,0.15);
}
.c-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #1989fa, #66b1ff);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-right: 14px; flex-shrink: 0;
}
/* 候选人照片 */
.c-photo-wrap {
  width: 52px; height: 52px; border-radius: 12px; overflow: hidden;
  margin-right: 14px; flex-shrink: 0; position: relative;
  background: #f0f2f5;
}
.c-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.c-avatar-fallback {
  width: 100%; height: 100%; border-radius: 12px;
  background: linear-gradient(135deg, #1989fa, #66b1ff);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: bold; position: absolute; top: 0; left: 0;
}
.c-info { flex: 1; }
.c-name { display: block; font-size: 16px; color: #333; font-weight: 500; }
.c-name small { font-weight: 400; color: #999; font-size: 12px; margin-left: 4px; }
.c-desc { display: block; font-size: 12px; color: #666; margin-top: 2px; }
.c-desc-sub { display: block; font-size: 11px; color: #999; margin-top: 1px; }

/* 多选复选框（替代单选） */
.c-checkbox { margin-left: 10px; flex-shrink: 0; }
.checkbox-empty {
  width: 26px; height: 26px; border-radius: 6px; border: 2px solid #ddd;
}
.checkbox-checked {
  width: 26px; height: 26px; border-radius: 6px; background: #1989fa;
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: bold;
}

/* 提交按钮 */
.submit-bar {
  position: fixed; bottom: 60px; left: 0; right: 0; max-width: 480px; margin: 0 auto;
  padding: 12px 15px; background: #fff; box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
.btn-submit {
  width: 100%; padding: 14px; border: none; border-radius: 14px;
  font-size: 16px; background: #ddd; color: #999; cursor: pointer;
}
.btn-submit.active { background: linear-gradient(135deg, #1989fa, #07c160); color: #fff; }

/* 结果页 */
.result-header h3 { font-size: 17px; margin-bottom: 14px; color: #333; }
.stats-grid {
  display: flex; justify-content: space-around; background: #f8f9ff;
  border-radius: 10px; padding: 14px 0; margin-bottom: 12px;
}
.stats-grid.three .stat-box { flex: 1; padding: 10px 4px; }
.stats-grid.three .stat-num { font-size: 28px; }
.stats-grid.four { flex-wrap: wrap; }
.stats-grid.four .stat-box { width: 50%; padding: 12px; }
.stat-box { text-align: center; }
.stat-num { display: block; font-size: 30px; font-weight: bold; color: #1989fa; }
.stat-num.green { color: #07c160; }
.stat-num.orange { color: #ff9800; }
.stat-num.blue { color: #1989fa; }
.stat-num.gray { color: #999; }
.stats-grid.five { flex-wrap: wrap; }
.stats-grid.five .stat-box { width: 33.33%; padding: 10px 4px; }
.stats-grid.five .stat-num { font-size: 22px; }
.stats-grid.six { flex-wrap: wrap; }
.stats-grid.six .stat-box { width: 33.33%; padding: 10px 4px; }
.stats-grid.six .stat-num { font-size: 20px; }
.stats-detail { background: #f8f9ff; border-radius: 8px; padding: 10px; }
.stat-label { display: block; font-size: 11px; color: #999; margin-top: 2px; }
.refresh-row {
  display: flex; justify-content: space-between; align-items: center;
}
.update-time { font-size: 12px; color: #999; }
.btn-sm {
  padding: 6px 16px; border: 1px solid #1989fa; border-radius: 8px;
  background: #fff; color: #1989fa; font-size: 13px; cursor: pointer;
}

/* 排名列表 */
.r-item {
  display: flex; align-items: center; background: #fff; padding: 14px;
  margin-bottom: 8px; border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.r-item.elected { border-left: 4px solid #07c160; background: #f8fff8; }
.r-badge {
  width: 36px; height: 36px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 14px;
  font-weight: bold; margin-right: 12px; flex-shrink: 0;
  background: #f0f0f0; color: #999;
}
.r-badge.in11 { background: #e8f8e8; color: #07c160; }
.r-badge.top3 { background: linear-gradient(135deg, #ffd700, #ffaa00); color: #fff; font-size: 18px; }
.r-info { flex: 1; min-width: 0; }
.r-name-row { display: flex; align-items: center; margin-bottom: 6px; }
.r-name { font-size: 15px; font-weight: 500; color: #333; margin-right: 8px; }
.r-tag { font-size: 11px; padding: 2px 8px; border-radius: 4px; }
.tag-win { background: #e8f8e8; color: #07c160; }
.tag-lose { background: #f0f0f0; color: #999; }
.r-bar-bg { height: 8px; background: #f0f0f0; border-radius: 4px; overflow: hidden; margin-bottom: 4px; }
.r-bar { height: 100%; background: linear-gradient(90deg, #1989fa, #66b1ff); border-radius: 4px; transition: width 0.5s; }
.r-count-row { display: flex; justify-content: space-between; font-size: 12px; color: #999; }

/* 我的页 */
.user-card {
  display: flex; align-items: center;
  background: linear-gradient(135deg, #1989fa, #66b1ff);
  padding: 24px 20px; border-radius: 16px; margin-bottom: 16px;
}
.avatar-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.3); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: bold; margin-right: 16px; flex-shrink: 0;
}
.user-info { flex: 1; }
.user-name { display: block; font-size: 20px; font-weight: bold; color: #fff; }
.user-room { display: block; font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 2px; }
.user-phone-masked { display: block; font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }

.info-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; border-bottom: 1px solid #f5f5f5; }
.info-row:last-child { border-bottom: none; }
.bold { font-weight: 500; }
.green { color: #07c160; }
.orange { color: #ff9800; }

h4 { font-size: 15px; color: #333; margin-bottom: 10px; }

.btn-logout {
  width: 100%; padding: 14px; margin-top: 30px; border: 1px solid #e74c3c;
  border-radius: 14px; background: #fff; color: #e74c3c; font-size: 15px; cursor: pointer;
}

/* 管理员弹窗 */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); z-index: 200;
  display: flex; align-items: center; justify-content: center;
  max-width: 480px; margin: 0 auto;
}
.modal-card {
  background: #fff; border-radius: 16px; padding: 24px; width: 90%;
  overflow: hidden;
}
.modal-card h3 { font-size: 18px; margin-bottom: 8px; text-align: center; }
.modal-desc { text-align: center; color: #999; font-size: 13px; margin-bottom: 16px; }
.modal-btns { display: flex; gap: 12px; margin-top: 12px; }
.btn-cancel {
  flex: 1; padding: 12px; border: 1px solid #ddd; border-radius: 10px;
  background: #fff; color: #666; font-size: 15px; cursor: pointer;
}
.modal-btns .btn-primary { flex: 1; }

/* 管理后台 */
.admin-top {
  display: flex; align-items: center; padding: 12px 0; margin-bottom: 14px;
}
.admin-top h3 { font-size: 18px; margin-left: 12px; color: #333; }
.btn-back {
  padding: 6px 12px; border: 1px solid #ddd; border-radius: 8px;
  background: #fff; font-size: 14px; cursor: pointer;
}
.tab-row { display: flex; margin-bottom: 14px; }
.tab-btn {
  flex: 1; padding: 10px; border: none; background: #f0f0f0;
  color: #666; font-size: 14px; cursor: pointer;
}
.tab-btn:first-child { border-radius: 8px 0 0 8px; }
.tab-btn:last-child { border-radius: 0 8px 8px 0; }
.tab-btn.active { background: #1989fa; color: #fff; }

.a-row {
  display: flex; align-items: center; background: #fff; padding: 12px;
  margin-bottom: 6px; border-radius: 10px; gap: 10px;
}
.a-row.win { border-left: 3px solid #07c160; background: #f8fff8; }
.a-rank { width: 26px; text-align: center; font-weight: bold; color: #999; font-size: 13px; }
.a-name { flex: 1; font-size: 14px; font-weight: 500; }
.a-bar-wrap { flex: 2; height: 6px; background: #f0f0f0; border-radius: 3px; overflow: hidden; }
.a-bar { height: 100%; background: #1989fa; border-radius: 3px; }
.a-count { width: 40px; text-align: right; font-size: 13px; color: #666; }
.a-tag { font-size: 11px; padding: 2px 6px; border-radius: 4px; }
.a-tag.green { background: #e8f8e8; color: #07c160; }
.a-tag.gray { background: #f0f0f0; color: #999; }

.v-record {
  background: #fff; padding: 14px; margin-bottom: 8px; border-radius: 10px;
}
.v-header { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 4px; }
.v-header span:first-child { font-weight: 500; }
.v-header span:last-child { color: #999; font-size: 12px; }
.v-sub { display: flex; justify-content: space-between; font-size: 12px; color: #999; }

.u-item {
  background: #fff; padding: 14px; margin-bottom: 8px; border-radius: 10px;
}
.u-name { font-size: 15px; font-weight: 500; display: block; margin-bottom: 4px; }
.u-sub { display: flex; justify-content: space-between; font-size: 12px; color: #999; }

.empty-tip { text-align: center; padding: 40px; color: #999; font-size: 14px; }

/* 候选人投票明细 */
.c-vote-group {
  background: #fff; border-radius: 10px; margin-bottom: 10px; overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.c-vote-group.no-vote { opacity: 0.5; }
.cvg-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px; background: #f0f7ff; border-bottom: 1px solid #e0edff;
}
.cvg-name { font-size: 15px; font-weight: bold; color: #333; }
.cvg-count { font-size: 14px; font-weight: bold; color: #1989fa; }
.cvg-count.gray { color: #999; }
.cvg-voter {
  display: flex; align-items: center; padding: 10px 14px;
  border-bottom: 1px solid #f5f5f5; font-size: 13px;
}
.cvg-voter:last-child { border-bottom: none; }
.cvg-voter-name { font-weight: 500; color: #333; width: 70px; flex-shrink: 0; }
.cvg-voter-room { color: #666; flex: 1; }
.cvg-voter-time { color: #999; font-size: 11px; flex-shrink: 0; }

/* Toast */
.toast {
  position: fixed; top: 40%; left: 50%; transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.75); color: #fff; padding: 12px 24px;
  border-radius: 8px; font-size: 14px; z-index: 999; opacity: 0;
  transition: opacity 0.3s; pointer-events: none; max-width: 480px;
}
.toast.show { opacity: 1; }

/* ============ 文件表决页 ============ */
.doc-list { margin-bottom: 20px; }
.doc-item {
  background: #fff; border-radius: 14px; padding: 16px; margin-bottom: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.doc-header { display: flex; align-items: center; margin-bottom: 12px; gap: 8px; }
.doc-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: #1989fa; color: #fff; display: flex;
  align-items: center; justify-content: center;
  font-size: 13px; font-weight: bold; flex-shrink: 0;
}
.doc-title { flex: 1; font-size: 14px; font-weight: 500; color: #333; }
.btn-doc-preview {
  padding: 4px 10px; border: 1px solid #1989fa; border-radius: 6px;
  background: #fff; color: #1989fa; font-size: 12px; cursor: pointer;
  flex-shrink: 0;
}
.doc-options { display: flex; gap: 10px; }
.doc-opt {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 10px 0; border: 1.5px solid #e0e0e0; border-radius: 10px;
  cursor: pointer; transition: all 0.2s;
}
.doc-opt:has(input:checked) { border-color: #1989fa; background: #e8f4ff; }
.doc-opt input { display: none; }
.doc-opt span { font-size: 14px; color: #333; font-weight: 500; }

.doc-done-header { font-size: 18px; font-weight: bold; text-align: center; color: #07c160; margin-bottom: 16px; }
.doc-done-list { background: #fff; border-radius: 14px; padding: 16px; margin-bottom: 16px; }
.doc-done-item {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid #f0f0f0; font-size: 14px;
}
.doc-done-item:last-child { border-bottom: none; }

/* 文档预览弹窗 */
.doc-preview-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7); z-index: 300; display: none;
  align-items: center; justify-content: center;
  max-width: 480px; margin: 0 auto;
}
.doc-preview-box {
  background: #fff; border-radius: 12px; width: 95%; max-height: 90vh;
  overflow: auto;
}
.doc-preview-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; border-bottom: 1px solid #eee; font-size: 16px; font-weight: bold;
}
.doc-preview-header button {
  background: none; border: none; font-size: 20px; cursor: pointer; color: #999;
}
.btn-doc-download {
  display: inline-block; padding: 8px 16px; background: #1989fa; color: #fff;
  border-radius: 8px; text-decoration: none; font-size: 13px;
}

/* 管理员文件表决统计 */
.doc-stats-header { text-align: center; font-size: 15px; font-weight: bold; color: #333; margin-bottom: 14px; }
.doc-stat-group {
  background: #fff; border-radius: 12px; padding: 0; margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); overflow: hidden;
}
.dsg-title { font-size: 15px; font-weight: bold; padding: 14px 14px 4px; color: #333; }
.dsg-total { font-size: 12px; color: #999; padding: 0 14px 10px; border-bottom: 1px solid #f0f0f0; }
.dsg-option { border-bottom: 1px solid #f5f5f5; }
.dsg-option:last-child { border-bottom: none; }
.dsg-opt-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; font-size: 14px; font-weight: 500;
}
.dsg-opt-header.agree { background: #f0fff4; color: #07c160; }
.dsg-opt-header.oppose { background: #fff5f5; color: #e74c3c; }
.dsg-opt-header.abstain { background: #f5f5f5; color: #666; }
.dsg-voter {
  display: flex; align-items: center; padding: 8px 14px 8px 28px;
  border-top: 1px solid #fafafa; font-size: 13px;
}
.dsg-voter.empty { color: #ccc; font-size: 12px; padding: 6px 14px 6px 28px; }
.dsg-voter-name { font-weight: 500; color: #333; width: 70px; flex-shrink: 0; }
.dsg-voter-room { color: #666; flex: 1; }
.dsg-voter-time { color: #999; font-size: 11px; flex-shrink: 0; }

/* 管理员投票设置 */
.setting-card {
  background: #fff; border-radius: 12px; padding: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.setting-item { margin-bottom: 14px; }
.setting-label { display: block; font-size: 14px; font-weight: 500; color: #333; margin-bottom: 6px; }
.setting-input {
  width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 8px;
  font-size: 15px; color: #333; box-sizing: border-box; background: #fafafa;
}
.setting-input:focus { outline: none; border-color: #1989fa; background: #fff; }
.setting-hint { text-align: center; color: #999; font-size: 12px; margin-top: 8px; }
