
/* 核心框架样式 - 强化对比度版本 */
:root {
  --primary: #0A1E45; /* 更深的品牌蓝 */
  --primary-alt: #15356F;
  --primary-soft: #EEF3FF;
  --accent: #B71C1C; /* 更深的品牌红 */
  --ink: #000000;   /* 纯黑保证可读性 */
  --muted: #4B5563; /* 更深的灰色 */
  --bg-alt: #F8F9FB;
  --border: #D1D5DB; /* 更深的边框 */
}

.verify-page { padding: 80px 0 100px; background: var(--bg-alt); position: relative; }

/* 修正 Section Head - 移除透明度，增强对比 */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.sec-head__l { max-width: 800px; }
.sec-head .eyebrow { font-size: 13px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; display: block; }
.sec-head h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 900; line-height: 1.1; letter-spacing: -1px; color: var(--primary); margin: 10px 0; }
.sec-head p { font-size: 18px; color: var(--muted); font-weight: 600; line-height: 1.6; margin: 0; }

.verify-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 50px; align-items: start; position: relative; z-index: 1; }

/* 左侧：专业查询门户 */
.verify-portal { display: flex; flex-direction: column; gap: 32px; }

/* 重要提醒 - 品牌标准风格 */
.notice-bar { 
  background: #FFF8F1; 
  border: 1px solid #FED7AA; 
  border-radius: var(--radius-md); 
  padding: 24px 30px; 
  display: flex; 
  gap: 20px; 
  align-items: center;
  box-shadow: 0 4px 12px rgba(229,57,53,0.03);
}
.notice-bar__icon { 
  width: 48px; height: 48px; background: var(--accent); color: #fff; 
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(229,57,53,0.15);
}
.notice-bar__body h4 { font-size: 18px; font-weight: 900; color: var(--primary); margin-bottom: 4px; }
.notice-bar__body ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 5px 20px; }
.notice-bar__body li { font-size: 14px; color: var(--muted); line-height: 1.5; position: relative; padding-left: 15px; }
.notice-bar__body li::before { content: "•"; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

/* 步骤进度条 */
.verify-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 8px; }
.step { background: #fff; padding: 15px; border-radius: var(--radius-sm); border: 1px solid var(--border); display: flex; align-items: center; gap: 12px; transition: var(--dur-fast); }
.step.active { border-color: var(--primary); background: rgba(21,53,111,0.03); }
.step i { width: 28px; height: 28px; background: var(--border); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-num); font-style: normal; font-weight: 400; font-size: 16px; }
.step.active i { background: var(--primary); box-shadow: 0 4px 10px rgba(21,53,111,0.2); }
.step span { font-size: 14px; font-weight: 700; color: var(--muted); }
.step.active span { color: var(--primary); }

/* 主表单卡片 */
.verify-form-card, .bid-form-card { 
  background: #fff; 
  border-radius: var(--radius-lg); 
  padding: 60px; 
  box-shadow: var(--shadow-xl); 
  border: 1px solid var(--border);
  position: relative;
}
.verify-form-card, .bid-form-card::after { 
  content: "VERIFY SYSTEM"; position: absolute; right: 40px; top: 40px; 
  font-family: var(--font-num); font-size: 40px; color: rgba(21,53,111,0.03); pointer-events: none; 
}
.verify-form-card, .bid-form-card h3 { font-size: 26px; font-weight: 900; color: var(--primary); margin-bottom: 48px; display: flex; align-items: center; gap: 12px; }
.verify-form-card, .bid-form-card h3::before { content: ""; width: 6px; height: 26px; background: var(--primary); border-radius: 3px; }

.form-row { margin-bottom: 30px; display: grid; grid-template-columns: 140px 1fr; gap: 20px; align-items: flex-start; }
.form-row label { font-size: 15px; font-weight: 700; color: var(--ink); text-align: right; padding-top: 14px; }
.form-row .input-box { width: 100%; }

.form-input { 
  width: 100%; border: 2px solid var(--border); border-radius: var(--radius-xs); padding: 14px 20px; 
  font-size: 16px; background: var(--bg-alt); transition: all var(--dur-fast); outline: none; 
}
.form-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 5px rgba(21,53,111,0.06); }
.form-textarea { height: 130px; resize: none; }

.form-more-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--primary); cursor: pointer; padding: 10px 20px; background: var(--primary-soft); border-radius: 30px; margin-bottom: 30px; transition: var(--dur-fast); }
.form-more-btn:hover { background: rgba(21,53,111,0.1); }
.form-optional-box { display: none; background: var(--bg-alt); padding: 30px; border-radius: var(--radius-md); border: 1px dashed var(--border); margin-bottom: 30px; }

.submit-btn { 
  width: 100%; height: 64px; background: var(--accent); color: #fff; border: none; border-radius: var(--radius-xs); 
  font-size: 18px; font-weight: 900; cursor: pointer; transition: all var(--dur-base) var(--ease);
  box-shadow: 0 12px 30px rgba(229,57,53,0.2); display: flex; align-items: center; justify-content: center; gap: 12px;
}
.submit-btn:hover { background: #9A1616; transform: translateY(-3px); box-shadow: 0 18px 40px rgba(229,57,53,0.3); }

.submit-msg { display: none; animation: slideDown 0.4s var(--ease); margin-top: 30px; padding: 20px 24px; border-radius: var(--radius-xs); font-size: 15px; line-height: 1.6; }
.submit-msg.ok { background: #E6F4EA; color: #1E7E34; border: 1px solid #C3E6CB; }
.submit-msg.err { background: #FCE8E6; color: #C5221F; border: 1px solid #FAD2CF; }

/* 右侧：侧边栏 */
.verify-sidebar { display: flex; flex-direction: column; gap: 32px; }

.holo-card { 
  background: linear-gradient(165deg, var(--primary), var(--primary-alt)); 
  border-radius: var(--radius-lg); padding: 48px 40px; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.holo-card::after {
  content: ""; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-25deg); animation: scan 4s infinite linear;
}
@keyframes scan { to { left: 150%; } }

.holo-card .label { font-size: 12px; font-weight: 900; letter-spacing: 3px; color: #fff; opacity: 0.8; text-transform: uppercase; margin-bottom: 15px; display: block; }
.holo-card .title { font-size: 26px; font-weight: 900; margin-bottom: 10px; }
.holo-card .phone { font-family: var(--font-num); font-size: 38px; margin-bottom: 32px; letter-spacing: 1px; }
.holo-card .phone a { color: inherit; }
.holo-card .btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.holo-card .btn-sub { 
  height: 46px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); 
  color: #fff; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--dur-fast);
}
.holo-card .btn-sub:hover { background: #fff; color: var(--primary); }

.rule-card { 
  background: #fff; border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); 
}
.rule-card h4 { font-size: 20px; font-weight: 900; color: var(--primary); margin-bottom: 24px; border-left: 4px solid var(--accent); padding-left: 15px; }
.rule-list { list-style: none; padding: 0; margin: 0; }
.rule-list li { position: relative; padding-left: 30px; margin-bottom: 18px; font-size: 15px; color: var(--muted); line-height: 1.6; }
.rule-list li::before { content: ""; position: absolute; left: 0; top: 6px; width: 20px; height: 20px; background: var(--primary-soft); border-radius: 50%; }
.rule-list li::after { content: "✓"; position: absolute; left: 5px; top: 5px; font-size: 13px; color: var(--primary); font-weight: 900; }

.quick-card { background: var(--primary-soft); padding: 40px; border-radius: var(--radius-lg); border: 1px solid rgba(21,53,111,0.1); text-align: center; }
.quick-card h4 { font-size: 20px; font-weight: 900; color: var(--primary); margin-bottom: 15px; }

@media (max-width: 991px) {
  .verify-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row label { text-align: left; padding-top: 0; }
  .verify-steps { grid-template-columns: 1fr; }
  .verify-form-card, .bid-form-card, .contract-card { padding: 40px 24px; }
}

.m-mask { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: var(--z-modal); backdrop-filter: blur(10px); }
.m-pop { 
  display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); 
  background: #fff; width: 90%; max-width: 500px; border-radius: var(--radius-lg); z-index: calc(var(--z-modal) + 1); 
  padding: 50px 40px; text-align: center;
}
.m-close { position: absolute; top: 24px; right: 24px; font-size: 32px; color: var(--muted); cursor: pointer; }

@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
