/* ==========================================================================
   同城分类信息网 - 页面专属样式表 (pages.css)
   支持 首页、列表页、详情页、发布页、会员中心、登录注册页
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. 首页 (index.html) 样式
   -------------------------------------------------------------------------- */

/* 分类信息大方块矩阵 (经典58/百姓网三列/四列矩阵) */
.index-category-box {
  background: #fff;
  border: 1px solid var(--border-color);
  border-top: 2px solid var(--primary-color);
  margin-top: 15px;
  box-shadow: var(--shadow-sm);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  divide-x: 1px solid #f0f0f0;
}

.category-column {
  padding: 18px 15px;
  border-right: 1px solid #eee;
}

.category-column:last-child {
  border-right: none;
}

.category-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.category-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.bg-house { background: linear-gradient(135deg, #ff7e5f, #feb47b); }
.bg-job { background: linear-gradient(135deg, #42e695, #3bb2b8); }
.bg-goods { background: linear-gradient(135deg, #f857a6, #ff5858); }
.bg-service { background: linear-gradient(135deg, #56ccf2, #2f80ed); }
.bg-car { background: linear-gradient(135deg, #f2994a, #f2c94c); }

.category-head h3 {
  font-size: 16px;
  font-weight: bold;
}

.category-head h3 a {
  color: #222;
}

.category-head h3 a:hover {
  color: var(--primary-color);
}

.category-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.category-links-list a {
  font-size: 13px;
  color: #444;
  white-space: nowrap;
}

.category-links-list a.hot {
  color: var(--primary-color);
  font-weight: bold;
}

.category-links-list a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* 首页公告 & 热点条 */
.index-banner-row {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.notice-box {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notice-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notice-badge {
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: bold;
}

.notice-list {
  display: flex;
  gap: 20px;
  font-size: 13px;
}

/* 首页推荐楼层 (模块面板) */
.section-panel {
  background: #fff;
  border: 1px solid var(--border-color);
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}

.section-header {
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafafa;
}

.section-header .title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-header h2 {
  font-size: 18px;
  color: #222;
  font-weight: bold;
}

.section-header .more-link {
  color: #666;
  font-size: 13px;
}

.section-header .more-link:hover {
  color: var(--primary-color);
}

/* 经典列表卡片网格 */
.items-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 20px;
}

.item-card {
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition: all 0.2s;
  position: relative;
}

.item-card:hover {
  border-color: #ffaa80;
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.12);
  transform: translateY(-2px);
}

.item-card .card-img-wrap {
  position: relative;
  height: 160px;
  background: #f0f0f0;
  overflow: hidden;
}

.item-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.items-grid-4 .item-card .card-img-wrap {
  height: 118px !important;
  max-height: 118px;
}

.items-grid-4 .item-card .card-img-wrap img {
  display: block;
  object-fit: cover;
}

.item-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.item-card .card-cat-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 2px;
}

.item-card .card-content {
  padding: 12px;
}

.item-card .card-title {
  font-size: 14px;
  font-weight: bold;
  color: #222;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.item-card .card-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 12px;
  color: #888;
}

.item-card .card-price {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: bold;
}

.item-card .card-location {
  color: #777;
}


/* --------------------------------------------------------------------------
   2. 列表页 (list.html) 样式
   -------------------------------------------------------------------------- */

.list-page-layout {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.list-main-col {
  flex: 1;
}

.list-sidebar-col {
  width: 270px;
}

/* 多维筛选器面板 (多条件组合选择) */
.filter-panel {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  margin-bottom: 15px;
}

.filter-row {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  font-size: 13px;
}

.filter-row:last-child {
  border-bottom: none;
}

.filter-label {
  width: 70px;
  color: #888;
  font-weight: bold;
  padding-top: 4px;
}

.filter-options {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.filter-item {
  padding: 3px 10px;
  border-radius: 3px;
  color: #444;
  cursor: pointer;
}

.filter-item:hover {
  color: var(--primary-color);
}

.filter-item.active {
  background: var(--primary-color);
  color: #fff !important;
  font-weight: bold;
}

/* 排序控制条 */
.sort-bar {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 13px;
}

.sort-group {
  display: flex;
  gap: 15px;
  align-items: center;
}

.sort-item {
  color: #666;
  cursor: pointer;
  padding: 2px 6px;
}

.sort-item.active {
  color: var(--primary-color);
  font-weight: bold;
  border-bottom: 2px solid var(--primary-color);
}

/* 列表条目Row式布局 (经典58单条图文排版) */
.list-rows-container {
  background: #fff;
  border: 1px solid var(--border-color);
}

.list-row-item {
  display: flex;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  gap: 18px;
  transition: background 0.2s;
}

.list-row-item:hover {
  background: #fffdfb;
}

.list-row-item:last-child {
  border-bottom: none;
}

.list-item-thumb {
  width: 140px;
  height: 100px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.list-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.list-item-title {
  font-size: 16px;
  font-weight: bold;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.3;
}

.list-item-title a {
  color: #111;
}

.list-item-title a:hover {
  color: var(--primary-color);
}

.list-item-sub {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.list-item-tags {
  display: flex;
  gap: 6px;
}

.list-item-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 15px;
}

.list-item-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  min-width: 120px;
}

.list-item-price {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
}

.list-item-time {
  font-size: 12px;
  color: #999;
}

/* 分页控件 */
.pagination-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.pagination {
  display: inline-flex;
  gap: 4px;
}

.pagination a, .pagination span {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #ddd;
  color: #555;
  font-size: 13px;
  border-radius: 2px;
}

.pagination a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.pagination .active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  font-weight: bold;
}


/* --------------------------------------------------------------------------
   3. 详情页 (detail.html) 样式
   -------------------------------------------------------------------------- */

.detail-main-card {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 25px;
  margin-bottom: 20px;
}

.detail-header-title {
  font-size: 22px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.3;
}

.detail-header-meta {
  font-size: 12px;
  color: #888;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 20px;
}

.detail-body-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 30px;
  margin-top: 20px;
}

/* 大图轮播预览相册 */
.gallery-container {
  width: 100%;
}

.big-image-box {
  width: 100%;
  height: 320px;
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.big-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #f7f7f7;
}

.thumb-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumb-item {
  width: 70px;
  height: 52px;
  border: 2px solid transparent;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  background: #eee;
}

.thumb-item.active {
  border-color: var(--primary-color);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-gallery-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-gallery-photo {
  width: 100%;
  max-height: 360px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-gallery-photo img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .detail-gallery-photos {
    grid-template-columns: 1fr;
  }

  .detail-gallery-photo,
  .detail-gallery-photo img {
    max-height: 300px;
  }
}

/* 右侧价格 & 电话联系卡片 */
.price-highlight-box {
  background: #fff8f5;
  border: 1px solid #ffe3d5;
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.detail-price-num {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1;
}

.detail-specs-table {
  width: 100%;
  margin-bottom: 20px;
  font-size: 13px;
}

.detail-specs-table td {
  padding: 8px 0;
  color: #555;
}

.detail-specs-table td.label {
  color: #888;
  width: 80px;
}

.seller-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.seller-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.seller-info h4 {
  font-size: 15px;
  color: #222;
}

.seller-info p {
  font-size: 12px;
  color: #777;
}

/* 经典“点击查看完整电话”动作按钮 */
.phone-reveal-box {
  background: linear-gradient(135deg, #ff5500, #ff2200);
  color: #fff;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3);
  transition: all 0.2s;
}

.phone-reveal-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 85, 0, 0.4);
}

.phone-num-large {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 2px;
  display: block;
}

.phone-tip {
  font-size: 12px;
  opacity: 0.9;
  margin-top: 4px;
}

/* 详情描述 Tab 选项卡及评论 */
.detail-tab-container {
  background: #fff;
  border: 1px solid var(--border-color);
  margin-top: 20px;
}

.detail-tabs-header {
  background: #f8f9fa;
  border-bottom: 1px solid var(--border-color);
  display: flex;
}

.detail-tab-btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  border-right: 1px solid #eee;
}

.detail-tab-btn.active {
  background: #fff;
  color: var(--primary-color);
  border-top: 3px solid var(--primary-color);
  margin-top: -1px;
}

.detail-tab-content {
  padding: 25px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}


/* --------------------------------------------------------------------------
   4. 信息发布页 (publish.html) 样式
   -------------------------------------------------------------------------- */

.publish-container {
  background: #fff;
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--primary-color);
  padding: 30px 40px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.publish-step-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
  border-bottom: 2px solid #eee;
  padding-bottom: 20px;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  font-size: 15px;
  color: #888;
  font-weight: bold;
}

.step-item.active {
  color: var(--primary-color);
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ddd;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.step-item.active .step-num {
  background: var(--primary-color);
}

/* 分类大牌按钮选择器 */
.pub-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.pub-cat-card {
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  padding: 18px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}

.pub-cat-card:hover, .pub-cat-card.active {
  border-color: var(--primary-color);
  background: var(--primary-light);
}

.pub-cat-card .icon {
  font-size: 28px;
  margin-bottom: 6px;
}

.pub-cat-card .name {
  font-weight: bold;
  font-size: 15px;
  color: #222;
}

/* 表达单行元素排版 */
.form-group-row {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}

.form-label {
  width: 120px;
  text-align: right;
  padding-right: 18px;
  font-weight: bold;
  color: #333;
  font-size: 14px;
}

.form-label .req {
  color: var(--primary-color);
  margin-right: 4px;
}

.form-control-wrap {
  flex: 1;
  max-width: 600px;
}

.input-text {
  width: 100%;
  border: 1px solid #ccc;
  padding: 9px 12px;
  border-radius: 3px;
  font-size: 14px;
}

.input-text:focus {
  border-color: var(--primary-color);
}

.textarea-text {
  width: 100%;
  height: 120px;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 3px;
  resize: vertical;
}

/* 图片拖拽上传区 */
.upload-dropzone {
  border: 2px dashed #ccc;
  border-radius: 4px;
  padding: 25px;
  text-align: center;
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.2s;
}

.upload-dropzone:hover {
  border-color: var(--primary-color);
}

.upload-preview-list {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.upload-preview-item {
  width: 90px;
  height: 70px;
  border: 1px solid #ddd;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.upload-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-preview-item .remove-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
}


/* --------------------------------------------------------------------------
   5. 会员中心 (user.html) 样式
   -------------------------------------------------------------------------- */

.user-center-layout {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.user-sidebar {
  width: 220px;
  background: #fff;
  border: 1px solid var(--border-color);
}

.user-profile-summary {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.user-avatar-big {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.user-menu-list a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #444;
  border-left: 3px solid transparent;
}

.user-menu-list a:hover, .user-menu-list a.active {
  background: #fff8f5;
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  font-weight: bold;
}

.user-content-main {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 25px;
}

.user-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.stat-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
}

.stat-card .num {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

.stat-card .label {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

/* 我发布的信息数据表格 */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 13px;
}

.data-table th {
  background: #f5f5f5;
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  color: #555;
}

.data-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.table-thumb {
  width: 50px;
  height: 40px;
  object-fit: cover;
  border-radius: 2px;
}


/* --------------------------------------------------------------------------
   6. 登录 & 注册页 (login.html, register.html) 样式
   -------------------------------------------------------------------------- */

.auth-page-wrapper {
  background: #fff;
  border: 1px solid var(--border-color);
  margin-top: 30px;
  margin-bottom: 40px;
  display: flex;
  box-shadow: var(--shadow-sm);
  min-height: 480px;
}

.auth-left-banner {
  width: 420px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-left-banner h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #ffaa80;
}

.auth-left-banner p {
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5e1;
}

.auth-right-form {
  flex: 1;
  padding: 40px 50px;
}

.auth-tabs-header {
  display: flex;
  border-bottom: 2px solid #eee;
  margin-bottom: 30px;
}

.auth-tab-btn {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  position: relative;
}

.auth-tab-btn.active {
  color: var(--primary-color);
}

.auth-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
}

.auth-form-group {
  margin-bottom: 20px;
}

.auth-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.auth-input:focus {
  border-color: var(--primary-color);
}

.auth-code-row {
  display: flex;
  gap: 12px;
}

.captcha-img {
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

/* VIP说明 */
.vip-hero-panel {
  margin: 24px 0;
  padding: 36px;
  border: 1px solid #ffd7c2;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff7f2 0%, #fff 55%, #fff3e8 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: stretch;
}

.vip-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: bold;
  border: 1px solid #ffd7c2;
}

.vip-hero-copy h1 {
  margin: 16px 0 12px;
  font-size: 34px;
  color: #1f2937;
}

.vip-hero-copy p {
  max-width: 720px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.9;
}

.vip-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.vip-hero-actions .btn-primary,
.vip-hero-actions .btn-outline {
  min-width: 126px;
  text-align: center;
  padding: 10px 18px;
  border-radius: 6px;
}

.vip-hero-card {
  padding: 28px;
  border-radius: 10px;
  background: #ff5500;
  color: #fff;
  box-shadow: 0 18px 36px rgba(255, 85, 0, 0.22);
}

.vip-hero-card span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.vip-hero-card strong {
  display: block;
  margin: 12px 0;
  font-size: 36px;
  letter-spacing: 1px;
}

.vip-hero-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.vip-section-card {
  margin-bottom: 24px;
  padding: 28px;
  border: 1px solid #eee;
  background: #fff;
  border-radius: 8px;
}

.vip-section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 20px;
}

.vip-section-head h2 {
  font-size: 22px;
  color: #1f2937;
}

.vip-section-head p {
  color: #94a3b8;
  font-size: 13px;
}

.vip-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vip-plan-card {
  position: relative;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.vip-plan-card.featured {
  border-color: #ff5500;
  box-shadow: 0 12px 32px rgba(255, 85, 0, 0.16);
}

.vip-plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #ff5500;
  color: #fff;
  font-size: 12px;
}

.vip-plan-name {
  font-size: 18px;
  font-weight: bold;
  color: #1f2937;
}

.vip-plan-price {
  margin: 14px 0 16px;
  color: #ff5500;
  font-size: 34px;
  font-weight: bold;
}

.vip-plan-price span,
.vip-plan-price em {
  font-size: 14px;
  font-style: normal;
}

.vip-plan-card li {
  margin-top: 10px;
  color: #64748b;
}

.vip-rule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.vip-rule-card {
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.vip-rule-card h3 {
  margin-bottom: 10px;
  color: #1f2937;
}

.vip-rule-card p {
  color: #64748b;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .vip-hero-panel,
  .vip-plan-grid,
  .vip-rule-grid {
    grid-template-columns: 1fr;
  }
}
