/* ============================================
 * 成都薇薇网络 - 全站公共样式
 * vv-common.css (被 header.htm 全局引入)
 * ============================================ */

/* ===== 全局基础 Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {scroll-behavior: smooth;}
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
form, input, select, textarea, button {
  font-size: 14px;
  font-family: inherit;
}
ul, ol {list-style: none;}
a {text-decoration: none; color: inherit;}
a:hover {color: inherit;}
img {border: none; max-width: 100%; height: auto;}
table {border-collapse: collapse;}

/* ===== 全局居中容器 ===== */
.container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1240px) {
  .container {width: 100%; max-width: 1200px;}
}

/* ===== 通用按钮 ===== */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all .2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #1a56db, #3b82f6);
  color: #fff;
}
.btn-primary:hover {opacity: .9; transform: translateY(-1px);}
.btn-outline {
  background: transparent;
  color: #1a56db;
  border: 1px solid #1a56db;
}
.btn-outline:hover {background: #1a56db; color: #fff;}
.btn-lg {padding: 14px 36px; font-size: 15px;}
.btn-block {display: block; width: 100%; text-align: center;}

/* ===== 通用 Section ===== */
.section {padding: 60px 0;}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #1a56db;
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 15px;
  color: #64748b;
}

/* ===== 页面顶栏（非首页）===== */
.vv-page-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1a56db 100%);
  padding: 50px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vv-page-banner::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
  border-radius: 50%;
}
.vv-page-banner .container {position: relative; z-index: 2;}
.vv-page-banner h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.vv-page-banner p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
}

/* ===== 2. 面包屑（非首页）===== */
.vv-breadcrumb {
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 0;
  font-size: 13px;
  color: #6b7280;
}
.vv-breadcrumb .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.vv-breadcrumb a {
  color: #6b7280;
  transition: color .2s;
}
.vv-breadcrumb a:hover {color: #1a56db;}
.vv-breadcrumb .sep {
  margin: 0 8px;
  color: #9ca3af;
}
.vv-breadcrumb .current {
  color: #374151;
  font-weight: 500;
}

/* ===== 3. 主体双栏布局 ===== */
.vv-page-main {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  padding: 30px 15px 60px;
}

/* ===== 4. 侧栏通用卡片 ===== */
.vv-side-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}
.vv-side-card .card-title {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  border-bottom: 1px solid #e5e7eb;
  background: #fafbfc;
}
.vv-side-list {
  padding: 8px 0;
}
.vv-side-list li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #4b5563;
  border-left: 3px solid transparent;
  transition: all .2s;
}
.vv-side-list li a:hover {
  color: #1a56db;
  background: #f8fafc;
  border-left-color: #1a56db;
}

/* ===== 5. 主列表通用 ===== */
.vv-main-col {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.vv-main-head {
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
  background: #fafbfc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vv-main-head h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
.vv-main-head .more {
  font-size: 13px;
  color: #1a56db;
}
.vv-main-head .more:hover {text-decoration: underline;}

/* ===== 6. Tag 子模板重写 - list-article（文字列表）===== */
.vv-main-col ul.vv-list {
  padding: 4px 0;
}
.vv-main-col ul.vv-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px dashed #e5e7eb;
  transition: background .2s;
}
.vv-main-col ul.vv-list li:last-child {
  border-bottom: none;
}
.vv-main-col ul.vv-list li:hover {
  background: #f8fafc;
}
.vv-main-col ul.vv-list li i.date-badge {
  flex-shrink: 0;
  width: 50px;
  text-align: center;
  font-size: 12px;
  color: #1a56db;
  font-weight: 600;
  background: #eff6ff;
  border-radius: 4px;
  padding: 3px 6px;
}
.vv-main-col ul.vv-list li a {
  flex: 1;
  font-size: 15px;
  color: #374151;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vv-main-col ul.vv-list li:hover a {
  color: #1a56db;
}

/* ===== 7. Tag 子模板 - list-rank 排行 ===== */
.vv-rank-list {
  padding: 8px 0;
}
.vv-rank-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  transition: background .2s;
}
.vv-rank-list li:hover {
  background: #f8fafc;
}
.vv-rank-list li i.num,
.vv-rank-list li em.num {
  width: 20px; height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  background: #f1f5f9;
  border-radius: 3px;
  flex-shrink: 0;
  font-style: normal;
}
.vv-rank-list li em.num {
  color: #fff;
  background: #1a56db;
  font-style: normal;
}
.vv-rank-list li em.num.first {background: #ef4444;}
.vv-rank-list li em.num.second {background: #f97316;}
.vv-rank-list li em.num.third {background: #eab308; color:#713f12;}
.vv-rank-list li a {
  flex: 1;
  font-size: 13px;
  color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vv-rank-list li:hover a {color: #1a56db;}
.vv-rank-list li span.f_r {
  font-size: 12px;
  color: #9ca3af;
}

/* ===== 8. list-thumb 图文 ===== */
.vv-thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  padding: 16px 24px;
}
.vv-thumb-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: all .3s;
}
.vv-thumb-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.vv-thumb-item a.img {
  display: block;
  overflow: hidden;
  background: #f1f5f9;
}
.vv-thumb-item a.img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform .4s;
}
.vv-thumb-item:hover a.img img {
  transform: scale(1.05);
}
.vv-thumb-item .info {
  padding: 14px;
}
.vv-thumb-item .info li a {
  display: block;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vv-thumb-item:hover .info li a {
  color: #1a56db;
}
.vv-thumb-item .info p {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 8px;
}

/* ===== 9. list-hl 头条 ===== */
.vv-headline {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 8px;
  padding: 18px 24px;
}
.vv-headline h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.vv-headline h2 a {
  color: #1e40af;
}
.vv-headline h2 a span {
  background: linear-gradient(135deg, #1a56db, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== 10. 分页 ===== */
.vv-pages {
  padding: 20px 24px;
  text-align: center;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}
.vv-pages a,
.vv-pages strong,
.vv-pages span {
  display: inline-block;
  min-width: 36px;
  height: 36px;
  line-height: 34px;
  padding: 0 12px;
  margin: 0 3px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-size: 14px;
  color: #374151;
  transition: all .2s;
}
.vv-pages a:hover {
  border-color: #1a56db;
  color: #1a56db;
}
.vv-pages strong {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}

/* ===== 11. 资讯模块首页 - 分类块 ===== */
.vv-cate-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}
.vv-cate-head {
  padding: 14px 20px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(90deg, #eff6ff, #fff);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vv-cate-head strong {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  padding-left: 12px;
  border-left: 4px solid #1a56db;
}
.vv-cate-head a.more {
  font-size: 13px;
  color: #1a56db;
}
.vv-cate-head a.more:hover {text-decoration: underline;}
.vv-cate-body {padding: 8px 0;}

/* ===== 12. 列表页分类筛选 ===== */
.vv-cat-nav {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vv-cat-nav a {
  padding: 6px 16px;
  font-size: 14px;
  color: #4b5563;
  background: #f8fafc;
  border-radius: 4px;
  transition: all .2s;
}
.vv-cat-nav a:hover,
.vv-cat-nav a.active {
  background: #1a56db;
  color: #fff;
}

/* ===== 13. CTA 咨询卡片 ===== */
.vv-side-cta {
  background: linear-gradient(135deg, #1a56db 0%, #2563eb 100%);
  border: none;
  color: #fff;
  text-align: center;
}
.vv-side-cta .card-title {
  background: rgba(255,255,255,.1);
  border-bottom-color: rgba(255,255,255,.15);
  color: #fff;
}
.vv-side-cta .cta-desc {
  padding: 16px 20px 8px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.9);
}
.vv-side-cta .btn-cta {
  display: block;
  margin: 8px 20px 20px;
  padding: 12px;
  background: #fff;
  color: #1a56db;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: all .3s;
}
.vv-side-cta .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}

/* ===== 14. 空状态 ===== */
.vv-empty {
  padding: 80px 20px;
  text-align: center;
  color: #9ca3af;
}
.vv-empty .icon {
  font-size: 48px;
  margin-bottom: 16px;
}

/* ===== 15. 操作工具栏（点赞/收藏/分享）===== */
.vv-article-tools {
  background: #fff;
  padding: 20px 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-radius: 0 0 8px 8px;
}
.tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 13px;
  color: #475569;
  cursor: pointer;
  transition: all .2s;
}
.tool-btn:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1a56db;
}
.tool-btn b {font-weight: 600;}

/* ===== 16. 企业信息表格 ===== */
.vv-company-info {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 30px;
}
.vv-company-info h1 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #1a56db;
  display: inline-block;
}
.vv-company-info .thumb-wrap {
  float: left;
  margin: 0 24px 16px 0;
}
.vv-company-info .thumb-wrap img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  object-fit: cover;
}
.vv-info-table {
  margin: 16px 0;
  clear: both;
}
.vv-info-table .row {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px dashed #e5e7eb;
  font-size: 14px;
}
.vv-info-table .row:last-child {border-bottom: none;}
.vv-info-table .label {
  width: 110px;
  color: #6b7280;
  flex-shrink: 0;
}
.vv-info-table .value {
  flex: 1;
  color: #1f2937;
}
.vv-company-desc {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  font-size: 15px;
  line-height: 2;
  color: #374151;
}

/* ===== 17. 站点地图 sitemap ===== */
.vv-sitemap-wrap {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 30px 36px;
}
.vv-sitemap-header {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}
.vv-sitemap-letter-bar {
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 6px;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.vv-sitemap-letter-label {
  font-size: 13px;
  color: #6b7280;
  margin-right: 8px;
  font-weight: 500;
}
.vv-sitemap-letter {
  display: inline-flex;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 13px;
  color: #4b5563;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-style: normal;
  transition: all .2s;
}
.vv-sitemap-letter:hover {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}
.vv-sitemap-letter.active {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}
.vv-sitemap-back {
  margin-left: auto;
  font-size: 13px;
  color: #1a56db;
  font-weight: 500;
}
.vv-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px 20px;
  padding: 8px 0;
}
.vv-sitemap-item {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #374151;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  transition: all .2s;
}
.vv-sitemap-item:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1a56db;
  transform: translateX(2px);
}
.vv-sitemap-name {
  font-weight: 500;
}
.vv-sitemap-count {
  font-size: 12px;
  color: #9ca3af;
}
.vv-sitemap-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed #e5e7eb;
}
.vv-sitemap-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.vv-sitemap-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid #1a56db;
}
.vv-sitemap-section-head h2 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}
.vv-sitemap-section-head h2 a {
  color: #111827;
}
.vv-sitemap-more {
  font-size: 13px;
  color: #1a56db;
  font-weight: 500;
}
.vv-sitemap-catalog {
  padding: 8px 0;
}

/* ===== 18. 专题分类列表 ===== */
.vv-special-type-list ul.vv-list {
  padding: 0;
}
.vv-special-type-list ul.vv-list li {
  padding: 8px 0;
  font-size: 13px;
}

/* ===== 19. sell 模块对比/询价提示条 ===== */
.vv-sell-tools {
  padding: 14px 20px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #fbbf24;
  border-radius: 6px;
  margin: 12px 16px 0;
  font-size: 13px;
  color: #78350f;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== 20. 错误页 404/403 ===== */
.vv-error-page {
  padding: 60px 20px 100px;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  min-height: 500px;
}
.vv-error-inner {
  max-width: 600px;
  margin: 0 auto;
}
.vv-error-code {
  font-size: 160px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #1a56db, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.vv-error-icon {
  font-size: 60px;
  margin-bottom: 16px;
}
.vv-error-inner h1 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.vv-error-inner > p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 28px;
}
.vv-error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.vv-error-actions .btn-home,
.vv-error-actions .btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
}
.vv-error-actions .btn-home {
  background: linear-gradient(135deg, #1a56db, #2563eb);
  color: #fff;
}
.vv-error-actions .btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,86,219,.3);
}
.vv-error-actions .btn-back {
  background: #fff;
  color: #374151;
  border: 1px solid #d1d5db;
}
.vv-error-actions .btn-back:hover {
  border-color: #1a56db;
  color: #1a56db;
}
.vv-error-tips {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px 28px;
  text-align: left;
  display: inline-block;
}
.vv-error-tips > span {
  display: block;
  font-size: 14px;
  color: #374151;
  font-weight: 600;
  margin-bottom: 10px;
}
.vv-error-tips ul {
  list-style: none;
}
.vv-error-tips ul li {
  font-size: 13px;
  color: #6b7280;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.vv-error-tips ul li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: #1a56db;
}

/* ===== 21. Quote 报价表 ===== */
.vv-quote-table {width:100%; overflow:hidden;}
.vv-quote-table table {width:100%; border-collapse:collapse;}
.vv-quote-table thead th {
  padding: 12px 16px;
  background: linear-gradient(90deg, #eff6ff, #dbeafe);
  font-size: 13px;
  font-weight: 600;
  color: #1e40af;
  text-align: left;
  border-bottom: 2px solid #bfdbfe;
}
.vv-quote-table tbody td {
  padding: 12px 16px;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #f1f5f9;
}
.vv-quote-table tbody tr:hover {background: #f8fafc;}
.vv-quote-table tbody td.f_price {color:#dc2626; font-weight:600;}
.vv-quote-table tbody td a {color:#1a56db;}
.vv-quote-table tbody td a:hover {text-decoration:underline;}

/* ===== 22. Resume 简历卡片 ===== */
.vv-resume-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.vv-resume-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-bottom: 1px solid #e5e7eb;
}
.vv-resume-avatar {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.vv-resume-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vv-resume-title h1 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}
.vv-resume-sub {
  font-size: 14px;
  color: #6b7280;
}
.vv-resume-section {
  padding: 24px 32px;
  border-bottom: 1px solid #f1f5f9;
}
.vv-resume-section:last-of-type {border-bottom: none;}
.vv-resume-section .section-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1a56db;
  display: inline-block;
}
.vv-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
}
.vv-info-grid .info-item {
  display: flex;
  font-size: 14px;
}
.vv-info-grid .info-item .label {
  width: 90px;
  flex-shrink: 0;
  color: #6b7280;
  font-weight: 500;
}
.vv-info-grid .info-item .value {
  color: #1f2937;
  flex: 1;
}
.vv-resume-card .content {
  font-size: 15px;
  line-height: 2;
  color: #374151;
}

/* ===== 23. Resume 侧栏用户卡 ===== */
.vv-user-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
}
.vv-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
}
.vv-user-detail .vv-user-name {
  font-size: 14px;
  color: #111827;
  margin-bottom: 4px;
}
.vv-user-detail .vv-user-name em {
  font-style: normal;
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
  margin-left: 6px;
}
.vv-user-detail .vv-user-links {
  font-size: 12px;
  color: #6b7280;
}
.vv-user-detail .vv-user-links a {color:#1a56db;}
.vv-resume-stats {
  display: flex;
  padding: 16px 20px;
  gap: 0;
}
.vv-resume-stats .stat-item {
  flex: 1;
  text-align: center;
}
.vv-resume-stats .stat-item i {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #1a56db;
}
.vv-resume-stats .stat-item span {
  font-size: 12px;
  color: #6b7280;
}
.vv-resume-stats .stat-item + .stat-item {
  border-left: 1px solid #e5e7eb;
}

/* ===== 24. Moment 三栏布局 ===== */
.vv-moment-wrap {
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  gap: 20px;
  padding: 24px 15px 60px;
}
.vv-moment-left,
.vv-moment-right {margin-top: 0;}
.vv-moment-main .vv-moment-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 16px;
  background: #fafbfc;
  border-radius: 8px 8px 0 0;
}
.vv-moment-main .vv-moment-tabs a span {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  color: #4b5563;
  border-radius: 4px;
  transition: all .2s;
}
.vv-moment-main .vv-moment-tabs a span.on {
  background: linear-gradient(135deg, #1a56db, #2563eb);
  color: #fff;
}
.vv-moment-main .mm-all {
  text-align: center;
  padding: 14px;
  font-size: 13px;
  color: #1a56db;
  border-top: 1px solid #f1f5f9;
  cursor: pointer;
}
.vv-moment-cate-group {
  padding: 10px 0;
  border-bottom: 1px dashed #e5e7eb;
}
.vv-moment-cate-group:last-child {border-bottom: none;}
.vv-moment-cate-group p {
  margin-bottom: 6px;
}
.vv-moment-cate-group p strong {
  font-size: 14px;
  color: #374151;
}
.vv-moment-cate-group p em {
  font-style: normal;
  font-size: 12px;
  color: #9ca3af;
  margin-left: 4px;
}
.vv-moment-cate-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.vv-moment-cate-sub a {
  font-size: 12px;
  color: #6b7280;
  padding: 2px 8px;
  background: #f1f5f9;
  border-radius: 3px;
}
.vv-moment-cate-sub a:hover {
  background: #eff6ff;
  color: #1a56db;
}
.vv-filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.vv-filter-row .filter-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  flex-shrink: 0;
}
.vv-filter-row .filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .vv-page-main {grid-template-columns: 1fr;}
  .vv-moment-wrap {grid-template-columns: 1fr;}
  .vv-resume-header {flex-direction: column; text-align: center;}
  .vv-info-grid {grid-template-columns: 1fr;}
}
@media (max-width: 768px) {
  .vv-page-banner {padding: 35px 0;}
  .vv-page-banner h2 {font-size: 24px;}
  .vv-main-col ul.vv-list li {padding: 12px 16px;}
  .vv-main-col ul.vv-list li a {font-size: 14px;}
  .vv-sitemap-wrap {padding: 20px;}
  .vv-sitemap-grid {grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));}
  .vv-error-page {padding: 40px 16px 80px;}
  .vv-error-code {font-size: 100px;}
  .vv-error-inner h1 {font-size: 22px;}
  .vv-error-actions .btn-home,
  .vv-error-actions .btn-back {padding: 10px 20px; font-size: 14px;}
  .vv-resume-header {padding: 20px;}
  .vv-resume-avatar {width: 90px; height: 90px;}
  .vv-resume-title h1 {font-size: 20px;}
  .vv-resume-section {padding: 18px 20px;}
  .vv-quote-table {overflow-x: auto;}
}

/* ===== 25. 通用按钮和表单 ===== */
.vv-btn-primary {display:inline-block;padding:10px 24px;background:linear-gradient(135deg,#1a56db,#2563eb);color:#fff;border:none;border-radius:6px;font-size:14px;cursor:pointer;text-decoration:none;transition:all .2s;font-weight:500;}
.vv-btn-primary:hover {background:linear-gradient(135deg,#1544b0,#1d4ed8);transform:translateY(-1px);box-shadow:0 4px 12px rgba(26,86,219,0.3);}
.vv-btn-secondary {display:inline-block;padding:10px 24px;background:#fff;color:#1a56db;border:1px solid #1a56db;border-radius:6px;font-size:14px;cursor:pointer;text-decoration:none;transition:all .2s;font-weight:500;}
.vv-btn-secondary:hover {background:#eff6ff;}
.vv-btn-outline {display:inline-block;padding:10px 24px;background:transparent;color:#4b5563;border:1px solid #d1d5db;border-radius:6px;font-size:14px;cursor:pointer;text-decoration:none;transition:all .2s;}
.vv-btn-outline:hover {border-color:#1a56db;color:#1a56db;}
.vv-link-primary {color:#1a56db;text-decoration:none;font-weight:500;}
.vv-link-primary:hover {text-decoration:underline;}

/* ===== 26. 表单通用样式 ===== */
.vv-form-input, .vv-form-textarea, .vv-form-select {
	width:100%;max-width:320px;padding:8px 12px;border:1px solid #d1d5db;border-radius:6px;font-size:14px;font-family:inherit;background:#fff;transition:border-color .2s;
}
.vv-form-input:focus, .vv-form-textarea:focus, .vv-form-select:focus {
	outline:none;border-color:#1a56db;box-shadow:0 0 0 3px rgba(26,86,219,0.1);
}
.vv-form-table {border-collapse:collapse;margin:0;}
.vv-form-table td {padding:10px 12px;vertical-align:top;border-bottom:1px solid #f3f4f6;}
.vv-form-table .tl {width:120px;color:#374151;font-weight:500;background:#fafbfc;}
.vv-form-row {display:flex;align-items:center;gap:10px;margin-bottom:12px;}
.vv-form-row label {width:100px;font-size:14px;color:#374151;flex-shrink:0;}
.vv-form-row .vv-form-input {flex:1;max-width:280px;}
.vv-form-select-mini {padding:6px 10px;border:1px solid #d1d5db;border-radius:4px;font-size:13px;}

/* ===== 27. Empty & Result ===== */
.vv-empty {text-align:center;padding:60px 20px;}
.vv-empty-icon {font-size:48px;margin-bottom:12px;}
.vv-empty-text {color:#6b7280;font-size:14px;margin-bottom:16px;}
.vv-result-card {text-align:center;padding:40px 24px;background:#fff;border-radius:10px;box-shadow:0 2px 12px rgba(0,0,0,0.06);margin-bottom:20px;}
.vv-result-ok {border-left:4px solid #10b981;}
.vv-result-fail {border-left:4px solid #dc2626;}
.vv-result-icon {font-size:40px;margin-bottom:10px;}
.vv-result-text {font-size:15px;color:#374151;margin-bottom:16px;}
.vv-result-actions {display:flex;gap:10px;justify-content:center;flex-wrap:wrap;}

/* ===== 28. Photo View 网格 ===== */
.vv-photo-view-info {display:flex;justify-content:space-between;align-items:center;margin-bottom:16px;padding:14px 18px;background:#fff;border-radius:8px;box-shadow:0 1px 4px rgba(0,0,0,0.04);}
.vv-back-btn {display:inline-block;padding:6px 14px;color:#1a56db;background:#eff6ff;border-radius:4px;text-decoration:none;font-size:13px;}
.vv-back-btn:hover {background:#dbeafe;}
.vv-photo-view-meta {display:flex;gap:14px;color:#6b7280;font-size:13px;}
.vv-photo-grid {display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:16px;padding:0;}
.vv-photo-grid-item {display:block;background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 1px 4px rgba(0,0,0,0.06);text-decoration:none;transition:all .2s;}
.vv-photo-grid-item:hover {transform:translateY(-2px);box-shadow:0 4px 16px rgba(0,0,0,0.12);}
.vv-photo-grid-item img {width:100%;height:160px;object-fit:cover;display:block;}
.vv-photo-grid-caption {padding:10px 12px;font-size:13px;color:#374151;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}

/* ===== 29. Private 隐私验证卡 ===== */
.vv-private-wrap {min-height:50vh;display:flex;align-items:center;justify-content:center;padding:40px 16px;}
.vv-private-card {background:#fff;border-radius:14px;box-shadow:0 8px 32px rgba(26,86,219,0.12);padding:44px 36px;text-align:center;max-width:440px;width:100%;}
.vv-private-icon {font-size:56px;margin-bottom:14px;}
.vv-private-card h1 {font-size:20px;font-weight:600;color:#1f2937;margin-bottom:10px;}
.vv-private-desc {color:#6b7280;font-size:14px;margin-bottom:24px;line-height:1.7;}
.vv-private-form {text-align:left;}
.vv-private-form label {display:block;font-size:13px;color:#374151;margin-bottom:6px;margin-top:12px;font-weight:500;}
.vv-private-form .vv-form-input {width:100%;}
.vv-form-error {color:#dc2626;font-size:13px;margin-top:6px;}
.vv-private-links {margin-top:20px;display:flex;gap:16px;justify-content:center;font-size:13px;}
.vv-private-links a {color:#6b7280;text-decoration:none;}
.vv-private-links a:hover {color:#1a56db;}

/* ===== 30. Quote Price 详情 ===== */
.vv-price-content {padding:20px 15px 40px;max-width:1200px;margin:0 auto;}
.vv-price-info-card {display:flex;justify-content:space-between;align-items:center;padding:16px 24px;background:#fff;border-radius:10px;box-shadow:0 1px 6px rgba(0,0,0,0.05);margin-bottom:20px;flex-wrap:wrap;gap:10px;}
.vv-price-info-left {display:flex;align-items:center;gap:16px;color:#374151;font-size:14px;}
.vv-price-tag {display:inline-block;padding:4px 12px;background:linear-gradient(135deg,#1a56db,#2563eb);color:#fff;border-radius:4px;font-size:12px;font-weight:500;}
.vv-price-info-right {font-size:13px;}
.vv-price-chart-area {display:flex;gap:20px;background:#fff;border-radius:10px;box-shadow:0 1px 6px rgba(0,0,0,0.05);padding:20px;margin-bottom:20px;flex-wrap:wrap;}
.vv-price-chart {flex:1;min-width:320px;}
.vv-price-add-form {width:280px;flex-shrink:0;padding:16px;background:#f8fafc;border-radius:8px;}
.vv-chart-empty {padding:40px;text-align:center;color:#9ca3af;background:#f9fafb;border-radius:8px;}
.vv-price-records {background:#fff;border-radius:10px;box-shadow:0 1px 6px rgba(0,0,0,0.05);padding:20px;margin-bottom:20px;}
.vv-price-filter-form {display:flex;flex-wrap:wrap;gap:10px;align-items:center;padding:12px 14px;background:#f8fafc;border-radius:8px;margin-bottom:16px;}
.vv-price-filter-form input[type=text], .vv-price-filter-form select {padding:6px 10px;border:1px solid #d1d5db;border-radius:4px;font-size:13px;}
.vv-price-desc {background:#fff;border-radius:10px;box-shadow:0 1px 6px rgba(0,0,0,0.05);padding:20px;}
.vv-price-desc-content {line-height:1.8;color:#374151;}

/* ===== 31. Topic 话题 ===== */
.vv-topic-show {background:#fff;border-radius:10px;box-shadow:0 1px 6px rgba(0,0,0,0.05);padding:24px;margin-bottom:16px;}
.vv-topic-title {font-size:22px;font-weight:700;color:#1f2937;margin-bottom:10px;}
.vv-topic-content {color:#4b5563;line-height:1.8;margin-bottom:14px;}
.vv-topic-info {display:flex;align-items:center;gap:18px;color:#6b7280;font-size:13px;padding-top:14px;border-top:1px solid #f1f5f9;flex-wrap:wrap;}
.vv-topic-list-head {margin-bottom:14px;}
.vv-type-active {background:linear-gradient(135deg,#1a56db,#2563eb) !important;}

/* ===== 32. eBook & Album ===== */
.vv-ebook-wrap {background:#f8fafc;border-radius:10px;padding:20px;margin-bottom:20px;}
.vv-ebook-info-bar {display:flex;gap:16px;color:#6b7280;font-size:13px;padding:12px 0;border-bottom:1px solid #e5e7eb;margin-bottom:16px;flex-wrap:wrap;}
.vv-album-section {background:#fff;border-radius:10px;padding:20px;margin-bottom:20px;box-shadow:0 1px 6px rgba(0,0,0,0.05);}
.vv-photo-desc {background:#fff;border-radius:10px;padding:20px;margin-bottom:20px;box-shadow:0 1px 6px rgba(0,0,0,0.05);line-height:1.8;color:#374151;}
.vv-photo-tool {display:flex;flex-wrap:wrap;gap:12px;padding:16px;background:#fff;border-radius:10px;margin-bottom:20px;box-shadow:0 1px 6px rgba(0,0,0,0.05);}
.vv-section-title-v2 {display:flex;justify-content:space-between;align-items:center;margin-bottom:14px;font-size:15px;color:#1f2937;font-weight:600;}

/* ===== 33. Poll / Form / Link ===== */
.vv-poll-detail, .vv-form-detail {background:#fff;border-radius:10px;padding:24px;box-shadow:0 1px 6px rgba(0,0,0,0.05);}
.vv-poll-title, .vv-form-title {font-size:20px;font-weight:700;color:#1f2937;margin-bottom:10px;}
.vv-poll-meta, .vv-form-meta {display:flex;gap:14px;font-size:13px;margin-bottom:16px;flex-wrap:wrap;}
.vv-poll-content, .vv-form-desc {color:#4b5563;line-height:1.8;margin-bottom:14px;}
.vv-form-notice, .vv-link-notice {padding:12px 16px;background:#eff6ff;border-radius:6px;color:#1a56db;font-size:13px;margin-bottom:16px;}

/* ===== 34. 错误页增强 ===== */
.vv-error-page {padding:80px 20px 120px;text-align:center;background:linear-gradient(135deg,#f0f4fa,#e8eef8);min-height:60vh;}
.vv-error-inner {max-width:520px;margin:0 auto;}
.vv-error-icon {font-size:64px;margin-bottom:16px;}
.vv-error-inner h1 {font-size:26px;color:#1f2937;margin-bottom:10px;font-weight:700;}
.vv-error-desc {font-size:14px;color:#6b7280;margin-bottom:28px;line-height:1.8;}
.vv-error-actions {display:flex;gap:12px;justify-content:center;flex-wrap:wrap;}
.vv-cta-card {text-align:center;background:linear-gradient(135deg,#1a56db,#2563eb) !important;color:#fff;}
.vv-cta-card h3 {color:#fff;font-size:16px;font-weight:600;margin-bottom:8px;}
.vv-cta-card p {color:rgba(255,255,255,0.85);font-size:13px;margin-bottom:14px;}
.vv-cta-card .vv-btn-primary {background:#fff;color:#1a56db;}
.vv-cta-card .vv-btn-primary:hover {background:#f3f4f6;}
.vv-section-title {font-size:16px;font-weight:600;color:#1f2937;margin-bottom:16px;padding-bottom:10px;border-bottom:2px solid #1a56db;display:inline-block;}

/* ===== 响应式补充 ===== */
@media (max-width: 1024px) {
  .vv-photo-grid {grid-template-columns:repeat(auto-fill,minmax(160px,1fr));}
  .vv-price-chart-area {flex-direction:column;}
  .vv-price-add-form {width:100%;}
  .vv-private-card {padding:30px 24px;}
}
@media (max-width: 768px) {
  .vv-photo-grid {grid-template-columns:repeat(2,1fr);}
  .vv-form-row {flex-direction:column;align-items:flex-start;}
  .vv-form-row label {width:auto;}
  .vv-price-info-card {flex-direction:column;align-items:flex-start;}
  .vv-price-info-left {flex-wrap:wrap;gap:10px;}
  .vv-poll-meta, .vv-form-meta {gap:10px;}
  .vv-error-page {padding:50px 16px 80px;}
  .vv-error-icon {font-size:48px;}
  .vv-error-inner h1 {font-size:22px;}
}
