/* 短线量化复盘 - 全局样式 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 13px;
  color: #333;
  background: #f5f5f5;
  min-width: 1200px;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* 顶部导航 */
.top-nav {
  background: #2b2b2b;
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: bold; font-size: 16px;
  margin-right: 8px;
}
.logo-text { font-size: 18px; font-weight: bold; }
.logo-sub { font-size: 10px; color: #999; margin-top: -2px; }
.nav-menu { display: flex; gap: 4px; flex: 1; }
.nav-item {
  padding: 0 14px;
  height: 44px;
  line-height: 44px;
  cursor: pointer;
  color: #ccc;
  font-size: 14px;
  position: relative;
  transition: all 0.2s;
}
.nav-item:hover { color: #fff; background: #3a3a3a; }
.nav-item.active { color: #fff; background: #3a3a3a; }
.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #e74c3c;
}
.nav-item .arrow { font-size: 10px; margin-left: 2px; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 44px; left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  min-width: 120px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 200;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  color: #333;
  font-size: 13px;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: #f5f5f5; color: #e74c3c; }
.nav-right { display: flex; gap: 12px; align-items: center; }
.nav-right a { color: #ccc; font-size: 13px; }
.nav-right a:hover { color: #fff; }

/* 搜索栏 */
.search-bar {
  background: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #eee;
}
.search-title {
  font-size: 20px;
  font-weight: bold;
  color: #e74c3c;
  white-space: nowrap;
}
.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  border: 2px solid #e74c3c;
  border-radius: 4px;
  overflow: hidden;
  max-width: 500px;
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 13px;
}
.search-box button {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}
.hot-lists { display: flex; gap: 20px; }
.hot-list { width: 180px; }
.hot-list-title {
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hot-list-title .icon { font-size: 14px; }
.hot-item {
  display: flex;
  align-items: center;
  padding: 2px 0;
  font-size: 12px;
  cursor: pointer;
}
.hot-item:hover { color: #e74c3c; }
.hot-rank {
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px;
  margin-right: 6px;
  font-size: 11px;
  color: #fff;
  font-weight: bold;
}
.hot-rank.r1 { background: #e74c3c; }
.hot-rank.r2 { background: #e67e22; }
.hot-rank.r3 { background: #f39c12; }
.hot-rank.r4, .hot-rank.r5 { background: #bbb; }
.hot-name { flex: 1; }
.hot-val { color: #999; font-size: 11px; }

/* 主内容区 */
.main-content { padding: 12px 20px; }

/* 指数条 */
.index-bar {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}
.index-item {
  flex: 1;
  padding: 10px 12px;
  border-right: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.2s;
}
.index-item:hover { background: #fafafa; }
.index-item:last-child { border-right: none; }
.index-name { font-size: 12px; color: #666; margin-bottom: 4px; }
.index-value { font-size: 16px; font-weight: bold; }
.index-change { font-size: 12px; margin-top: 2px; }
.up { color: #e74c3c; }
.down { color: #2ecc71; }

/* 情绪指标区 */
.sentiment-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.sentiment-card {
  background: #fff;
  border-radius: 4px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sentiment-label {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
}
.sentiment-label.orange { background: #f39c12; }
.sentiment-label.red { background: #e74c3c; }
.sentiment-label.green { background: #27ae60; }
.sentiment-label.darkgreen { background: #1e8449; }
.sentiment-value { font-size: 22px; font-weight: bold; }

/* 数据指标条 */
.metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.metric-card {
  background: #fff;
  border-radius: 4px;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.metric-label { color: #666; font-size: 13px; }
.metric-value { font-size: 16px; font-weight: bold; }

/* 内容网格 */
.content-grid {
  display: grid;
  grid-template-columns: 260px 1fr 380px;
  gap: 12px;
  margin-bottom: 12px;
}

/* 通用卡片 */
.card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.card-header {
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-title { font-size: 14px; font-weight: bold; }
.card-body { padding: 10px; }

/* 涨停梯队 */
.ladder-list { padding: 6px 0; }
.ladder-row {
  display: flex;
  align-items: center;
  padding: 3px 8px;
  font-size: 12px;
}
.ladder-label {
  width: 50px;
  color: #666;
  text-align: right;
  margin-right: 8px;
}
.ladder-bar-wrap { flex: 1; display: flex; align-items: center; }
.ladder-bar {
  height: 18px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  min-width: 20px;
}
.ladder-bar.red { background: #e74c3c; }
.ladder-bar.green { background: #2ecc71; }
.ladder-bar.gray { background: #999; }

/* 情绪曲线图 */
.chart-container { position: relative; height: 280px; }
.chart-container canvas { width: 100%; height: 100%; }

/* 涨停股列表 */
.stock-tabs {
  display: flex;
  border-bottom: 2px solid #eee;
  padding: 0 10px;
}
.stock-tab {
  padding: 8px 16px;
  cursor: pointer;
  font-size: 13px;
  color: #666;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.stock-tab.active {
  color: #e74c3c;
  border-bottom-color: #e74c3c;
  font-weight: bold;
}
.stock-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.stock-table th {
  background: #f9f9f9;
  padding: 8px 6px;
  text-align: left;
  color: #666;
  font-weight: normal;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}
.stock-table td {
  padding: 7px 6px;
  border-bottom: 1px solid #f5f5f5;
  white-space: nowrap;
}
.stock-table tr:hover { background: #fafafa; }
.stock-name { color: #333; font-weight: 500; }
.stock-code { color: #999; font-size: 11px; }
.tag {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 2px;
  font-size: 10px;
  margin-left: 4px;
}
.tag.red { background: #fde8e8; color: #e74c3c; }
.tag.green { background: #e8f8ef; color: #27ae60; }
.tag.blue { background: #e8f0fe; color: #3498db; }
.tag.orange { background: #fef3e8; color: #e67e22; }

/* 异动播报 */
.news-list { max-height: 300px; overflow-y: auto; }
.news-item {
  padding: 8px 10px;
  border-bottom: 1px solid #f5f5f5;
  font-size: 12px;
  display: flex;
  gap: 8px;
}
.news-time { color: #999; white-space: nowrap; width: 50px; }
.news-tag {
  padding: 1px 5px;
  border-radius: 2px;
  font-size: 10px;
  white-space: nowrap;
  height: fit-content;
}
.news-tag.zhangting { background: #fde8e8; color: #e74c3c; }
.news-tag.fengzhang { background: #fef3e8; color: #e67e22; }
.news-tag.chonggao { background: #e8f0fe; color: #3498db; }
.news-content { flex: 1; color: #333; }
.news-stock { color: #e74c3c; font-weight: 500; }

/* 板块强度 */
.sector-list { padding: 4px 0; }
.sector-item {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 3px;
}
.sector-item:hover { background: #f9f9f9; }
.sector-item input { margin-right: 8px; }
.sector-name { flex: 1; font-size: 13px; }
.sector-count {
  background: #fde8e8;
  color: #e74c3c;
  padding: 1px 8px;
  border-radius: 10px;
  font-size: 11px;
}
.sector-chart { height: 220px; position: relative; }
.sector-chart canvas { width: 100%; height: 100%; }

/* 涨停统计 */
.zt-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 10px;
}
.zt-stat {
  text-align: center;
  padding: 8px 4px;
  border-radius: 4px;
  color: #fff;
}
.zt-stat.red { background: #e74c3c; }
.zt-stat.darkred { background: #c0392b; }
.zt-stat.orange { background: #e67e22; }
.zt-stat.green { background: #27ae60; }
.zt-stat.darkgreen { background: #1e8449; }
.zt-stat-num { font-size: 20px; font-weight: bold; }
.zt-stat-label { font-size: 11px; opacity: 0.9; }
.zt-stat-sub { font-size: 10px; opacity: 0.8; margin-top: 2px; }

/* 涨停股票池 */
.pool-section { margin-bottom: 16px; }
.pool-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  background: #f9f9f9;
  border-radius: 4px 4px 0 0;
}
.pool-progress { font-size: 13px; font-weight: bold; color: #333; width: 60px; }
.pool-rate { font-size: 12px; color: #666; width: 80px; }
.pool-title {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.pool-share {
  background: #e74c3c;
  color: #fff;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
}
.pool-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #eee;
  border-top: none;
}
.pool-col {
  padding: 10px;
  border-right: 1px solid #f0f0f0;
}
.pool-col:last-child { border-right: none; }
.pool-col-title {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
  text-align: center;
}
.pool-stock {
  display: flex;
  align-items: center;
  padding: 4px 0;
  font-size: 12px;
  gap: 6px;
}
.pool-stock .market { color: #999; font-size: 10px; }
.pool-stock .name { color: #333; flex: 1; }
.pool-stock .result {
  padding: 1px 5px;
  border-radius: 2px;
  font-size: 10px;
}
.pool-stock .result.cheng { background: #fde8e8; color: #e74c3c; }
.pool-stock .result.bai { background: #fef3e8; color: #e67e22; }
.pool-stock .result.fu { background: #e8f8ef; color: #27ae60; }
.pool-stock .change { font-weight: bold; }

/* 竞价页面 */
.jj-container { padding: 12px 20px; }
.jj-dates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.jj-date-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.jj-date-header {
  background: #e74c3c;
  color: #fff;
  padding: 10px 14px;
  text-align: center;
}
.jj-date-title { font-size: 15px; font-weight: bold; }
.jj-date-sub { font-size: 11px; opacity: 0.9; margin-top: 2px; }
.jj-date-body { padding: 8px; max-height: 500px; overflow-y: auto; }
.jj-stock {
  display: flex;
  align-items: center;
  padding: 5px 4px;
  border-bottom: 1px solid #f5f5f5;
  font-size: 12px;
  gap: 6px;
}
.jj-stock .time { color: #999; width: 36px; }
.jj-stock .name { flex: 1; color: #333; }
.jj-stock .tag { font-size: 10px; }
.jj-stock .amount { color: #e74c3c; font-weight: 500; }
.jj-stock .change { font-weight: bold; width: 55px; text-align: right; }

/* 龙虎榜页面 */
.lh-container { padding: 12px 20px; }
.lh-header {
  background: #e74c3c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lh-title { font-size: 16px; font-weight: bold; }
.lh-date-nav { display: flex; align-items: center; gap: 10px; }
.lh-date-nav button {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 24px; height: 24px;
  border-radius: 3px;
  cursor: pointer;
}
.lh-date-nav span { font-size: 14px; }
.lh-tabs {
  display: flex;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0 10px;
}
.lh-tab {
  padding: 10px 18px;
  cursor: pointer;
  font-size: 13px;
  color: #666;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.lh-tab.active { color: #e74c3c; border-bottom-color: #e74c3c; font-weight: bold; }
.lh-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  background: #fff;
  min-height: 600px;
}
.lh-stock-list {
  border-right: 1px solid #eee;
  max-height: 700px;
  overflow-y: auto;
}
.lh-stock-item {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  gap: 10px;
}
.lh-stock-item:hover { background: #fafafa; }
.lh-stock-item.active { background: #fef5f5; border-left: 3px solid #e74c3c; }
.lh-rank {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}
.lh-rank.r1 { background: #e74c3c; }
.lh-rank.r2 { background: #e67e22; }
.lh-rank.r3 { background: #f39c12; }
.lh-rank.other { background: #bbb; }
.lh-stock-info { flex: 1; }
.lh-stock-name { font-size: 13px; color: #333; }
.lh-stock-change { font-size: 12px; font-weight: bold; }
.lh-detail { padding: 16px; }
.lh-detail-table { width: 100%; border-collapse: collapse; font-size: 12px; margin-bottom: 16px; }
.lh-detail-table th {
  background: #f9f9f9;
  padding: 8px;
  text-align: center;
  color: #666;
  border: 1px solid #eee;
  font-weight: normal;
}
.lh-detail-table td {
  padding: 8px;
  text-align: center;
  border: 1px solid #eee;
}
.lh-kchart { height: 250px; position: relative; margin-bottom: 16px; }
.lh-kchart canvas { width: 100%; height: 100%; }
.lh-reason {
  background: #f9f9f9;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: #666;
  margin-bottom: 12px;
}
.lh-amount-bar {
  display: flex;
  height: 24px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.lh-amount-buy { background: #e74c3c; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: bold; }
.lh-amount-sell { background: #27ae60; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: bold; }
.lh-yyb-section { margin-bottom: 16px; }
.lh-yyb-title {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lh-yyb-title .icon { color: #e74c3c; }
.lh-yyb-title.sell .icon { color: #27ae60; }
.lh-yyb-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.lh-yyb-table th {
  background: #f9f9f9;
  padding: 8px;
  text-align: left;
  color: #666;
  border-bottom: 1px solid #eee;
  font-weight: normal;
}
.lh-yyb-table td {
  padding: 8px;
  border-bottom: 1px solid #f5f5f5;
}
.lh-yyb-name { color: #333; }
.lh-yyb-amount { font-weight: bold; text-align: right; }

/* 页脚 */
.footer {
  text-align: center;
  padding: 20px;
  color: #999;
  font-size: 12px;
  border-top: 1px solid #eee;
  margin-top: 20px;
}

/* 页面切换 */
.page { display: none; }
.page.active { display: block; }

/* 量能图 */
.volume-chart { height: 180px; position: relative; }
.volume-chart canvas { width: 100%; height: 100%; }
.volume-info {
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  font-size: 13px;
}
.volume-info .label { color: #666; }
.volume-info .value { font-weight: bold; color: #333; }

/* 滚动条 */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #aaa; }

/* 响应式最小宽度 */
@media (max-width: 1200px) {
  body { min-width: 100%; }
  .content-grid { grid-template-columns: 220px 1fr 320px; }
}

/* ========== 登录注册弹窗 ========== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modal-overlay.show { display: flex; }
.modal {
  background: #fff;
  border-radius: 8px;
  width: 380px;
  max-width: 90%;
  overflow: hidden;
  animation: modalIn 0.2s ease;
}
.modal-small { width: 320px; }
@keyframes modalIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}
.modal-close {
  font-size: 22px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: #333; }
.modal-body { padding: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus { border-color: #e74c3c; }
.form-error {
  color: #e74c3c;
  font-size: 12px;
  margin-bottom: 12px;
  min-height: 16px;
}
.btn-primary {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: #c0392b; }
.btn-block { width: 100%; padding: 12px; font-size: 15px; }
.modal-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #666;
}
.modal-footer a { color: #e74c3c; }

/* 用户信息 */
.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 13px;
}
.user-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: bold;
}
.user-name { color: #fff; }
.vip-badge {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: bold;
}
.user-logout {
  color: #999;
  cursor: pointer;
  font-size: 12px;
}
.user-logout:hover { color: #fff; }

/* ========== VIP会员弹窗 ========== */
.modal-vip { width: 520px; }
.vip-header {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #fff;
  border: none;
}
.vip-tip {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}
.vip-plans {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.vip-plan {
  flex: 1;
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.vip-plan:hover { border-color: #f39c12; }
.vip-plan.selected {
  border-color: #f39c12;
  background: #fef9f0;
}
.vip-plan.recommended {
  border-color: #f39c12;
}
.plan-tag {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: #f39c12;
  color: #fff;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 11px;
}
.plan-name { font-size: 14px; color: #333; margin-bottom: 8px; }
.plan-price { font-size: 24px; font-weight: bold; color: #e74c3c; margin-bottom: 4px; }
.plan-price span { font-size: 28px; }
.plan-desc { font-size: 11px; color: #999; margin-bottom: 12px; }
.btn-vip {
  background: #f39c12;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  width: 100%;
}
.btn-vip:hover { background: #e67e22; }
.vip-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 6px;
}
.vip-feature { font-size: 12px; color: #666; }
.pay-methods {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #666;
}
.pay-methods label { cursor: pointer; }
.btn-pay { margin-bottom: 10px; }
.pay-note {
  text-align: center;
  font-size: 11px;
  color: #999;
}

/* ========== 权限遮罩 ========== */
.vip-lock {
  display: none;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.95);
  z-index: 10;
  justify-content: center;
  align-items: center;
}
.vip-lock.show { display: flex; }
.vip-lock-content {
  text-align: center;
  padding: 40px;
}
.vip-lock-icon { font-size: 56px; margin-bottom: 16px; }
.vip-lock-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.vip-lock-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}
.vip-lock-login {
  margin-top: 16px;
  font-size: 13px;
  color: #999;
}
.vip-lock-login a { color: #e74c3c; }

.jj-container, .lh-container { position: relative; }
