
    :root {
      --primary: #09D57C;
      --primary-dark: #07b068;
      --primary-light: #e6faf3;
      --text: #333;
      --text-secondary: #666;
      --text-muted: #999;
      --border: #eee;
      --bg: #f5f5f5;
      --white: #fff;
      --shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.5;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }

    /* Header */
    .header {
      background: var(--white);
      box-shadow: var(--shadow);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-top {
      border-bottom: 1px solid var(--border);
      padding: 10px 0;
    }

    .header-top-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }


    .logo{
      width: 38px;
      height: 38px;
      background: var(--primary);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: bold;
      font-size: 13px;
    }

    .logo-group {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }

    .logo-icon {
      width: 38px;
      height: 38px;
      background: var(--primary);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: bold;
      font-size: 11px;
    }

    .logo-text {
      font-size: 22px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -1px;
    }

    .location {
      display: flex;
      align-items: center;
      gap: 4px;
      color: var(--text-secondary);
      font-size: 14px;
      cursor: pointer;
      flex-shrink: 0;
    }

    .location svg {
      width: 16px;
      height: 16px;
      color: var(--primary);
    }

    .header-nav {
      display: flex;
      gap: 24px;
      font-size: 14px;
    }

    .header-nav a {
      color: var(--text-secondary);
      transition: color 0.2s;
    }

    .header-nav a:hover,
    .header-nav a.active {
      color: var(--primary);
    }

    .nav-fullscreen-header {
      display: none;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .header-actions a {
      background: var(--primary);
      color: var(--white);
      font-size: 14px;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 20px;
      white-space: nowrap;
      transition: background 0.2s;
    }

    .header-actions a:hover {
      background: var(--primary-dark);
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .header-order-btn {
      display: none;
    }

    .header-mobile-actions {
      display: none;
    }

    /* Search bar */
    .search-section {
      background: var(--white);
      padding: 16px 0;
    }

    .search-wrapper {
      max-width: 700px;
      margin: 0 auto;
      position: relative;
    }

    .search-box {
      display: flex;
      border: 2px solid var(--primary);
      border-radius: 30px;
      overflow: hidden;
    }

    .search-input-wrap {
      flex: 1;
      position: relative;
      display: flex;
      align-items: center;
    }

    .search-input {
      flex: 1;
      border: none;
      padding: 12px 20px;
      font-size: 14px;
      outline: none;
    }

    /* Clear button */
    .search-clear {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      display: none;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border: none;
      border-radius: 50%;
      background: #d0d0d0;
      color: var(--white);
      cursor: pointer;
      padding: 0;
      line-height: 1;
      transition: background 0.2s;
    }

    .search-clear:hover {
      background: #b0b0b0;
    }

    .search-clear.show {
      display: inline-flex;
    }

    .search-btn {
      background: var(--primary);
      color: var(--white);
      border: none;
      padding: 0 32px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      position: relative;
      z-index: 61;
    }

    .search-btn:hover {
      background: var(--primary-dark);
    }

    /* Search suggestions dropdown */
    .search-suggest {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      right: 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      overflow: hidden;
      display: none;
      z-index: 60;
      max-height: 286px;
      overflow-y: auto;
    }

    .search-suggest.show {
      display: block;
    }

    .suggest-group + .suggest-group {
      border-top: 1px solid var(--border);
    }

    .suggest-group-title {
      padding: 8px 16px 4px;
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 600;
    }

    .suggest-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 16px;
      cursor: pointer;
      transition: background 0.15s;
    }

    .suggest-item:hover,
    .suggest-item.highlight {
      background: var(--primary-light);
    }

    .suggest-name {
      font-size: 14px;
      color: var(--text);
    }

    .suggest-name em {
      color: var(--primary);
      font-style: normal;
      font-weight: 600;
    }

    .suggest-meta {
      font-size: 12px;
      color: var(--text-muted);
      flex-shrink: 0;
      margin-left: 12px;
    }

    .suggest-empty {
      padding: 22px 16px;
      text-align: center;
      font-size: 13px;
      color: var(--text-muted);
    }

    a.suggest-item {
      text-decoration: none;
      color: inherit;
    }

    a.suggest-item:hover,
    a.suggest-item.highlight {
      background: var(--primary-light);
    }

    /* Main layout */
    .main-section {
      padding: 0 0 15px;
    }

    .main-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      align-items: start;
    }

    /* Service filter */
    .service-filter {
      background: var(--white);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 12px 20px;
      margin-bottom: 20px;
    }

    .filter-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px dashed var(--border);
    }

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

    .filter-label {
      flex-shrink: 0;
      font-size: 14px;
      color: var(--text-secondary);
      font-weight: 500;
      line-height: 28px;
      min-width: 70px;
    }

    .filter-options {
      display: flex;
      flex: 1;
      min-width: 0;
      flex-wrap: nowrap;
      gap: 6px;
      overflow-x: auto;
      white-space: nowrap;
      scrollbar-width: none;
      -ms-overflow-style: none;
      -webkit-overflow-scrolling: touch;
    }

    /* 隐藏滚动条，保留横向滑动 */
    .filter-options::-webkit-scrollbar {
      display: none;
    }

    .filter-options a {
      display: inline-block;
      text-decoration: none;
      font-size: 13px;
      color: var(--text);
      padding: 4px 12px;
      border-radius: 4px;
      transition: all 0.2s;
      cursor: pointer;
      user-select: none;
    }

    .filter-options a:hover,
    .filter-options a.active {
      color: var(--primary);
      background: var(--primary-light);
    }

    .filter-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      background: var(--primary-light);
      border: none;
      color: var(--primary);
      font-size: 11px;
      padding: 4px 8px;
      border-radius: 4px;
      cursor: pointer;
      margin-left: auto;
      flex-shrink: 0;
      transition: transform 0.2s, background 0.2s;
    }

    .filter-toggle:hover {
      background: #c8f5e3;
    }

    /* 内容超出可视宽度时显示下拉箭头（所有屏幕尺寸） */
    .filter-row.has-overflow .filter-toggle {
      display: inline-flex;
    }

    .filter-row.open .filter-toggle {
      transform: rotate(180deg);
    }

    /* 展开时选项换行铺满 */
    .filter-row.open .filter-options {
      white-space: normal;
      flex-wrap: wrap;
      overflow: visible;
    }

    /* Right content */
    .content-area {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* Promo section (below filter) - 上下间距由相邻板块控制保持一致 */
    .promo-section {
      padding: 0;
      margin: 0 0 15px;
    }

    /* Promo banners */
    .promo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .promo-card {
      border-radius: 8px;
      padding: 16px;
      color: var(--white);
      min-height: 110px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .promo-card:nth-child(1) { background: linear-gradient(135deg, #09D57C, #06a85f); }
    .promo-card:nth-child(2) { background: linear-gradient(135deg, #10e08a, #09D57C); }
    .promo-card:nth-child(3) { background: linear-gradient(135deg, #20c997, #0dba6e); }

    .promo-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .promo-desc {
      font-size: 13px;
      opacity: 0.95;
    }

    .promo-icon {
      position: absolute;
      right: 12px;
      bottom: 8px;
      font-size: 48px;
      opacity: 0.15;
    }

    /* Section title */
    .section-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .section-title::before {
      content: "";
      width: 4px;
      height: 18px;
      background: var(--primary);
      border-radius: 2px;
    }

    /* Technician list */
    .master-list {
      background: var(--white);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 16px;
    }

    .master-item {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
    }

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

    .master-info {
      min-width: 0;
    }

    .master-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      flex-wrap: wrap;
    }

    .master-name {
      display: block;
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
    }

    .master-salary {
      display: block;
      font-size: 15px;
      font-weight: 700;
      color: #e8302a;
    }

    .master-company {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--text-light);
      margin-top: 8px;
    }

    .master-company-left {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .master-badge {
      background: var(--primary-light);
      color: var(--primary);
      font-size: 12px;
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 600;
    }

    .master-area {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .master-area strong {
      color: var(--text-secondary);
      font-weight: 600;
    }

    .master-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 10px;
    }

    .tag {
      border: 1px solid #b8f0d6;
      color: var(--primary);
      font-size: 12px;
      padding: 3px 10px;
      border-radius: 4px;
      background: var(--primary-light);
    }

    a.tag {
      text-decoration: none;
      display: inline-block;
    }

    .tag.hot {
      background: #fff1f0;
      border-color: #ffccc7;
      color: #ff4d4f;
    }

    .tag.purple {
      background: #f9f0ff;
      border-color: #d3adf7;
      color: #722ed1;
    }

    .tag.blue {
      background: #f0f5ff;
      border-color: #adc6ff;
      color: #2f54eb;
    }

    .tag.verified {
      background: var(--primary-light);
      border-color: var(--primary-light);
      color: var(--primary);
    }

    .tag.recent {
      background: #e6f4ff;
      border-color: #b3d7ff;
      color: #2f7ae6;
    }

    .seeker-area {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
      margin-bottom: 10px;
      font-size: 12px;
    }

    .seeker-area-label {
      color: #999;
      flex-shrink: 0;
    }

    .seeker-area-tag {
      color: #555;
    }

    .seeker-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 10px;
      font-size: 12px;
    }

    .seeker-meta-tag {
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 12px;
      line-height: 1.5;
    }

    .seeker-meta-tag.green {
      background: #e6f7e6;
      color: #2f9a2f;
      border: 1px solid #b3e6b3;
    }

    .seeker-meta-tag.gray {
      background: #f5f5f5;
      color: #666;
      border: 1px solid #e0e0e0;
    }

    .seeker-meta-tag.blue {
      background: #e6f4ff;
      color: #2f7ae6;
      border: 1px solid #b3d7ff;
    }

    .seeker-avatar-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
      align-self: start;
    }

    .seeker-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: visible;
    }

    .seeker-avatar img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
    }

    .seeker-gender {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      position: absolute;
      bottom: -2px;
      right: -2px;
      border: 2px solid #fff;
    }

    .seeker-gender svg {
      width: 11px;
      height: 11px;
      fill: #fff;
    }

    .seeker-gender.male {
      background: #2f7ae6;
    }

    .seeker-gender.female {
      background: #ff4d94;
    }

    .seeker-desc {
      font-size: 12px;
      color: #999;
      margin-top: 6px;
      line-height: 1.5;
    }

    .seeker-list .master-name {
      line-height: 1;
    }

    .master-desc {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    .master-action {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: space-between;
      gap: 8px;
      flex-shrink: 0;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--white);
      border: none;
      padding: 10px 22px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(9,213,124,0.25);
    }

    a.btn-primary {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    /* Merchant list */
    .merchant-list {
      background: var(--white);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 16px;
      margin-bottom: 15px;
    }

    .merchant-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .merchant-item {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 16px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--white);
      transition: box-shadow 0.2s, transform 0.2s;
      cursor: pointer;
    }

    .merchant-item:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      transform: translateY(-2px);
    }

    .merchant-name {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.4;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
    }

    .merchant-category {
      font-size: 12px;
      color: var(--text-muted);
      background: #f5f5f5;
      padding: 3px 8px;
      border-radius: 4px;
      display: inline-block;
      width: fit-content;
    }

    .merchant-jobs-row {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 4px;
      font-size: 12px;
    }

    .merchant-job-label {
      color: #e8302a;
      font-weight: 600;
      flex-shrink: 0;
    }

    .merchant-job-divider {
      color: var(--text-muted);
      flex-shrink: 0;
    }

    .merchant-job-name {
      color: #2f54eb;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      min-width: 0;
    }

    .merchant-job-salary {
      color: var(--text);
      font-weight: 500;
      flex-shrink: 0;
    }

    /* Article list */
    .article-list {
      background: var(--white);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 16px;
      margin-top: 20px;
    }

    .article-item {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
      align-items: start;
    }

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

    .article-info {
      min-width: 0;
    }

    .article-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .article-summary {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .article-meta span {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .article-meta svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
    }

    .article-btn {
      background: var(--primary);
      color: var(--white);
      border: none;
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
      flex-shrink: 0;
      align-self: center;
    }

    .article-btn:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    a.article-btn {
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }

    /* Shop detail */
    .shop-detail {
      background: var(--white);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 16px;
      margin-top: 20px;
    }

    .shop-header {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 16px;
    }

    .shop-logo {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }

    .shop-logo svg {
      width: 34px;
      height: 34px;
      color: var(--primary);
    }

    .shop-header-info {
      min-width: 0;
      flex: 1;
    }

    .shop-name {
      font-size: 17px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }

    .shop-address {
      font-size: 13px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .shop-address svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .shop-products {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 14px;
    }

    .shop-product {
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s;
      cursor: pointer;
    }

    .shop-product:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
      transform: translateY(-2px);
    }

    .shop-product-img {
      width: 100%;
      aspect-ratio: 1 / 1;
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .shop-product-img svg {
      width: 50%;
      height: 50%;
      color: var(--text-muted);
    }

    .shop-product-info {
      padding: 10px 12px;
    }

    .shop-product-name {
      font-size: 13px;
      color: var(--text);
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .shop-product-price {
      font-size: 16px;
      font-weight: 700;
      color: var(--primary);
    }

    .shop-product-price span {
      font-size: 12px;
      font-weight: 400;
    }

    .shop-actions {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .shop-action-btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 14px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
      border: 1px solid var(--primary);
    }

    .shop-action-btn svg {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
    }

    .shop-action-btn.call {
      background: var(--white);
      color: var(--primary);
    }

    .shop-action-btn.call:hover {
      background: var(--primary-light);
    }

    /* Job detail */
    .job-detail {
      background: var(--white);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 20px;
      margin-top: 20px;
    }

    .job-detail-header {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 16px;
      align-items: start;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 20px;
    }

    .job-detail-logo {
      width: 72px;
      height: 72px;
      border-radius: 12px;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      font-size: 28px;
      font-weight: 700;
      color: var(--primary);
    }

    .job-detail-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .job-detail-main {
      min-width: 0;
    }

    .job-detail-title-row {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }

    .job-detail-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
    }

    .job-detail-subtitle {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .job-detail-follow {
      background: var(--primary);
      color: var(--white);
      border: none;
      padding: 8px 24px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .job-detail-follow:hover {
      background: var(--primary-dark);
    }

    a.job-detail-follow {
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }

    .job-detail-stats {
      display: flex;
      gap: 24px;
    }

    .job-detail-stat {
      text-align: center;
    }

    .job-detail-stat-num {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
    }

    .job-detail-stat-label {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .job-detail-section {
      margin-bottom: 24px;
    }

    .job-detail-section:last-child {
      margin-bottom: 0;
    }

    .job-detail-section-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
      padding-left: 10px;
      border-left: 3px solid var(--primary);
    }

    .job-detail-benefits {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .job-detail-benefit-tag {
      background: #f0f5ff;
      color: #2f54eb;
      border: 1px solid #d6e4ff;
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 13px;
    }

    .job-detail-desc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.8;
    }

    .job-detail-env {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
    }

    .job-detail-env-track {
      display: flex;
      transition: transform 0.3s ease;
      margin: 0 -5px;
    }

    .job-detail-env-slide {
      flex: 0 0 calc(100% / 3);
      padding: 0 5px;
      aspect-ratio: 1 / 1;
    }

    .job-detail-env-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

    .job-detail-env-prev,
    .job-detail-env-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0,0,0,0.4);
      color: #fff;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: background 0.2s;
    }

    .job-detail-env-prev:hover,
    .job-detail-env-next:hover {
      background: rgba(0,0,0,0.6);
    }

    .job-detail-env-prev { left: 8px; }
    .job-detail-env-next { right: 8px; }

    .job-detail-env-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 10px;
    }

    .job-detail-env-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #d9d9d9;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all 0.2s;
    }

    .job-detail-env-dot.active {
      background: var(--primary);
      width: 20px;
      border-radius: 4px;
    }

    .job-detail-jobs {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .job-detail-job-item {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      padding: 14px 16px;
      border: 1px solid var(--border);
      border-radius: 8px;
      align-items: start;
    }

    .job-detail-job-main {
      min-width: 0;
    }

    .job-detail-job-title-row {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 6px;
    }

    .job-detail-job-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
    }

    .job-detail-job-extra {
      font-size: 13px;
      color: var(--text-secondary);
    }

    .job-detail-job-salary {
      font-size: 15px;
      font-weight: 700;
      color: #ff4d4f;
    }

    .job-detail-job-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 4px;
    }

    .job-detail-job-meta span {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .job-detail-job-action {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 6px;
    }

    .job-detail-job-time {
      font-size: 12px;
      color: var(--text-muted);
    }

    .job-detail-job-apply {
      background: var(--white);
      color: var(--primary);
      border: 1px solid var(--primary);
      padding: 5px 14px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }

    .job-detail-job-apply:hover {
      background: var(--primary);
      color: var(--white);
    }

    /* Job position detail */
    .job-pos-detail {
      background: var(--white);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 20px;
      margin-top: 20px;
    }

    .job-pos-detail-header {
      margin-bottom: 16px;
    }

    .job-pos-detail-title-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
    }

    .job-pos-detail-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--text);
    }

    .job-pos-detail-salary {
      font-size: 20px;
      font-weight: 700;
      color: #ff4d4f;
      margin-bottom: 10px;
    }

    .job-pos-detail-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 10px;
    }

    .job-pos-detail-info {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .job-pos-detail-info span {
      margin-right: 16px;
    }

    .job-pos-detail-poster {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      margin-bottom: 16px;
    }

    .job-pos-detail-poster-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
    }

    .job-pos-detail-poster-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .job-pos-detail-poster-info {
      flex: 1;
      min-width: 0;
    }

    .job-pos-detail-poster-name-row {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 4px;
    }

    .job-pos-detail-poster-name {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
    }

    .job-pos-detail-poster-company {
      font-size: 13px;
      color: var(--text-muted);
    }

    .job-pos-detail-phone {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      cursor: pointer;
    }

    .job-pos-detail-phone svg {
      width: 20px;
      height: 20px;
    }

    a.job-pos-detail-phone {
      text-decoration: none;
    }

    .job-pos-detail-section-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
    }

    .job-pos-detail-desc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .job-pos-detail-desc ol {
      padding-left: 18px;
      margin: 0;
    }

    .job-pos-detail-desc li {
      margin-bottom: 6px;
    }

    .job-pos-detail-address {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 6px;
      font-size: 14px;
      color: var(--text-secondary);
    }

    .job-pos-detail-address-icon {
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .job-pos-detail-address-icon svg {
      width: 18px;
      height: 18px;
    }

    .job-pos-detail-map-link {
      font-size: 13px;
      color: var(--primary);
      margin-left: 26px;
      cursor: pointer;
    }

    .job-pos-detail-subject {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

    .job-pos-detail-subject-label {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
    }

    .job-pos-detail-subject-type {
      font-size: 14px;
      color: var(--text-secondary);
    }

    .job-pos-detail-subject-company {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 12px;
    }

    .job-pos-detail-subject-company-avatar {
      width: 36px;
      height: 36px;
      border-radius: 4px;
      overflow: hidden;
      flex-shrink: 0;
    }

    .job-pos-detail-subject-company-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .job-pos-detail-subject-company-info {
      flex: 1;
      min-width: 0;
    }

    .job-pos-detail-subject-company-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
    }

    .job-pos-detail-subject-company-meta {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* Article detail */
    .article-detail {
      background: var(--white);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 20px;
      margin-top: 20px;
    }

    .article-detail-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.5;
      margin-bottom: 10px;
    }

    .article-detail-summary {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
      padding: 12px 16px;
      background: var(--bg);
      border-radius: 6px;
      border-left: 3px solid var(--primary);
      margin-bottom: 14px;
    }

    .article-detail-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 13px;
      color: var(--text-muted);
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 16px;
    }

    .article-detail-meta span {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .article-detail-meta svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .article-detail-body {
      font-size: 15px;
      color: var(--text);
      line-height: 1.8;
    }

    .article-detail-body p {
      margin-bottom: 14px;
    }

    .article-detail-body h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--text);
      margin: 20px 0 10px;
    }

    .article-detail-nav {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }

    .article-nav-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 10px 18px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
      border: 1px solid var(--primary);
    }

    .article-nav-btn svg {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
    }

    .article-nav-btn.prev {
      background: var(--white);
      color: var(--primary);
    }

    .article-nav-btn.prev:hover {
      background: var(--primary-light);
    }

    .article-nav-btn.next {
      background: var(--primary);
      color: var(--white);
    }

    .article-nav-btn.next:hover {
      background: var(--primary-dark);
    }

    .btn-text {
      font-size: 12px;
      color: var(--text-muted);
      text-align: center;
    }

    /* Load more */
    .load-more {
      text-align: center;
      padding: 24px 0 8px;
    }

    .load-more button,
    .load-more a {
      display: inline-block;
      text-decoration: none;
      cursor: pointer;
      background: var(--white);
      border: 1px solid var(--border);
      color: var(--text-secondary);
      padding: 10px 40px;
      border-radius: 24px;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .load-more button:hover,
    .load-more a:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    /* Pagination */
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 24px 0 8px;
      flex-wrap: wrap;
    }

    .pagination button {
      min-width: 36px;
      height: 36px;
      padding: 0 10px;
      border: 1px solid var(--border);
      border-radius: 6px;
      background: var(--white);
      color: var(--text-secondary);
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

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

    .pagination button.active {
      background: var(--primary);
      border-color: var(--primary);
      color: var(--white);
      font-weight: 600;
    }

    .pagination button:disabled {
      color: var(--text-muted);
      cursor: not-allowed;
      opacity: 0.5;
    }

    .pagination .page-ellipsis {
      border: none;
      background: none;
      cursor: default;
      padding: 0 4px;
    }

    .pagination .page-ellipsis:hover {
      border-color: transparent;
      color: var(--text-muted);
    }

    /* Footer */
    .footer {
      background: #2c2c2c;
      color: #aaa;
      padding: 30px 0;
      margin-top: 30px;
      text-align: center;
      font-size: 13px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #ccc;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 6px 16px;
      line-height: 1.8;
    }

    .footer-info a {
      color: #aaa;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      text-decoration: none;
    }

    .footer-info a:hover {
      color: #ccc;
    }

    .footer-info a svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .footer-info span {
      color: #aaa;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .main-grid {
        grid-template-columns: 1fr;
      }

      .promo-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .header-top-inner {
        flex-wrap: wrap;
      }

      .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 150;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        gap: 0;
        overflow-y: auto;
      }

      .header-nav.open {
        display: flex;
      }

      .nav-fullscreen-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        background: var(--white);
        position: sticky;
        top: 0;
        z-index: 1;
      }

      .nav-fullscreen-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--text);
      }

      .nav-close-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .header-nav > a {
        padding: 16px;
        font-size: 16px;
        border-bottom: 1px solid var(--border);
        color: var(--text);
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .header-nav > a::after {
        content: "›";
        font-size: 22px;
        color: var(--text-muted);
        font-weight: 300;
        line-height: 1;
      }

      .header-actions {
        display: none;
      }

      .header-mobile-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
      }

      .mobile-menu-btn {
        display: block;
      }

      .header-order-btn {
        display: inline-flex;
        align-items: center;
        background: var(--primary);
        color: var(--white);
        font-size: 14px;
        font-weight: 600;
        padding: 8px 16px;
        border-radius: 20px;
        white-space: nowrap;
        flex-shrink: 0;
      }

      .search-box {
        border-radius: 24px;
      }

      .search-btn {
        padding: 0 20px;
        font-size: 14px;
      }

      .main-grid {
        grid-template-columns: 1fr;
      }

      .service-filter {
        padding: 10px 16px;
      }

      .filter-row {
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
      }

      .filter-label {
        min-width: 60px;
        font-size: 13px;
      }

      /* 展开时选项换行铺满下一行 */
      .filter-row.open .filter-options {
        flex-basis: 100%;
        padding-top: 8px;
      }

      .filter-options a {
        font-size: 12px;
        padding: 3px 8px;
      }

      .promo-grid {
        grid-template-columns: 1fr;
      }

      .master-item {
        grid-template-columns: 1fr;
      }

      .seeker-list .master-item {
        grid-template-columns: 1fr auto;
      }

      .seeker-avatar-wrap {
        align-self: start;
        justify-self: end;
      }

      .master-action {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
      }

      .btn-primary {
        text-align: center;
        padding: 12px 0;
      }

      .merchant-item {
        grid-template-columns: auto 1fr;
        gap: 10px;
      }

      .merchant-btn {
        grid-column: 1 / -1;
        width: 100%;
        text-align: center;
        padding: 10px;
      }

      .merchant-logo {
        width: 44px;
        height: 44px;
      }

      .merchant-logo svg {
        width: 26px;
        height: 26px;
      }

      .article-item {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .article-btn {
        width: 100%;
        text-align: center;
        padding: 10px;
      }

      .article-title {
        white-space: normal;
      }

      .shop-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .shop-logo {
        width: 50px;
        height: 50px;
      }

      .shop-logo svg {
        width: 28px;
        height: 28px;
      }

      .shop-name {
        font-size: 15px;
      }

      .shop-header {
        flex-wrap: wrap;
      }

      .shop-actions {
        width: 100%;
        margin-top: 4px;
      }

      .shop-action-btn {
        flex: 1;
        justify-content: center;
      }

      .article-detail-title {
        font-size: 17px;
      }

      .article-detail-nav {
        flex-direction: column;
        gap: 10px;
      }

      .article-nav-btn {
        justify-content: center;
      }

      .pagination button:not(.page-prev):not(.page-next):not(.active) {
        display: none;
      }

      .pagination .page-ellipsis {
        display: none;
      }

      .pagination .page-text {
        display: none;
      }

      .pagination .page-arrow {
        font-size: 20px;
        font-weight: 300;
      }

      .merchant-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
      }
    }

    @media (max-width: 480px) {
      .logo-text {
        font-size: 18px;
      }

      .master-header {
        gap: 6px;
      }

      .master-name {
        font-size: 15px;
      }

      .master-salary {
        font-size: 14px;
        color: #e8302a;
      }

      .tag {
        font-size: 11px;
        padding: 2px 8px;
      }

      .master-desc {
        font-size: 12px;
      }

      .btn-primary {
        padding: 10px 16px;
        font-size: 13px;
      }
    }
    /* 底部悬浮按钮 */
    .float-actions {
      position: fixed;
      bottom: 42px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 14px;
      z-index: 80;
    }

    .float-col {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
      width: 168px;
    }

    .customer-service-btn {
      position: fixed;
      right: 20px;
      bottom: 100px;
      z-index: 90;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--primary);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(9,213,124,0.4);
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }

    .customer-service-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(9,213,124,0.5);
      background: var(--primary-dark);
    }

    .customer-service-btn svg {
      width: 26px;
      height: 26px;
      flex-shrink: 0;
    }

    .float-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 36px;
      min-width: 168px;
      border: 1px solid var(--primary);
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(0,0,0,0.18);
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
      text-decoration: none;
      white-space: nowrap;
      background: var(--primary);
      color: var(--white);
    }

    .float-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.24);
      background: var(--primary-dark);
    }

    .float-btn svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .float-qr-item {
      width: 80%;
      align-self: center;
      background: var(--white);
      border-radius: 10px;
      padding: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.18);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .float-qr-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.24);
    }

    .float-qr-img {
      width: 100%;
      aspect-ratio: 1 / 1;
      height: auto;
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .float-qr-img svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    @media (max-width: 768px) {
      .float-actions {
        bottom: 24px;
        gap: 10px;
      }

      .float-col {
        gap: 6px;
        width: 130px;
      }

      .float-btn {
        padding: 10px 27px;
        min-width: 130px;
        font-size: 13px;
      }

      .float-btn svg {
        width: 16px;
        height: 16px;
      }

      .float-qr-img {
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
      }

      .float-qr-item {
        padding: 5px;
      }
    }

    /* City selector modal */
    .city-modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 200;
      display: none;
      flex-direction: column;
    }

    .city-modal.show {
      display: flex;
    }

    .city-modal-mask {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
    }

    .city-modal-content {
      position: absolute;
      top: 12px;
      right: 12px;
      bottom: 12px;
      width: calc(100% - 24px);
      max-width: 420px;
      background: #f7f8fa;
      display: flex;
      flex-direction: column;
      transform: translateX(calc(100% + 12px));
      transition: transform 0.25s ease;
      border-radius: 12px;
      overflow: hidden;
    }

    .city-modal.show .city-modal-content {
      transform: translateX(0);
    }

    @media (min-width: 481px) {
      .city-modal-content {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%) scale(0.96);
        width: calc(100% - 32px);
        max-width: 1200px;
        height: 85vh;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.25);
        overflow: hidden;
      }
      .city-modal.show .city-modal-content {
        transform: translate(-50%, -50%) scale(1);
      }
    }

    .city-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      background: #fff;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }

    .city-modal-header h3 {
      font-size: 16px;
      font-weight: 600;
    }

    .city-modal-close {
      background: none;
      border: none;
      font-size: 22px;
      color: var(--text-secondary);
      cursor: pointer;
      padding: 0 4px;
      line-height: 1;
    }

    .city-modal-body {
      flex: 1;
      overflow-y: auto;
      padding: 12px 16px 30px;
      -webkit-overflow-scrolling: touch;
    }

    .city-search {
      position: relative;
      margin-bottom: 16px;
    }

    .city-search input {
      width: 100%;
      border: none;
      background: #fff;
      border-radius: 8px;
      padding: 10px 36px 10px 14px;
      font-size: 14px;
      outline: none;
    }

    .city-search-clear {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      display: none;
      width: 20px;
      height: 20px;
      border: none;
      border-radius: 50%;
      background: #d0d0d0;
      color: #fff;
      font-size: 12px;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .city-search-clear.show {
      display: flex;
    }

    .city-section {
      margin-bottom: 16px;
    }

    .city-section-title {
      font-size: 13px;
      color: var(--text-secondary);
      font-weight: 600;
      margin-bottom: 10px;
    }

    .city-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
      gap: 10px;
    }

    .city-grid a {
      background: #fff;
      border-radius: 6px;
      text-align: center;
      padding: 10px 4px;
      font-size: 14px;
      color: var(--primary);
      cursor: pointer;
      transition: background 0.15s;
    }

    .city-grid a:hover {
      background: var(--primary-light);
    }

    .city-grid a.current {
      background: var(--primary);
      color: var(--white);
      font-weight: 600;
    }

    .city-letters {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
      gap: 8px;
      background: #fff;
      padding: 12px;
      border-radius: 8px;
    }

    .city-letters a {
      text-align: center;
      font-size: 14px;
      color: var(--text-secondary);
      cursor: pointer;
      padding: 6px 0;
    }

    .city-letters a:hover {
      color: var(--primary);
    }

    .city-list-group {
      margin-top: 14px;
    }

    .city-list-letter {
      font-size: 13px;
      color: var(--text-secondary);
      font-weight: 600;
      padding: 8px 0;
    }

    .city-list-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
      gap: 10px;
    }

    .city-list-grid a {
      background: #fff;
      border-radius: 6px;
      text-align: center;
      padding: 10px 4px;
      font-size: 14px;
      color: var(--text);
      cursor: pointer;
    }

    .city-list-grid a:hover {
      color: var(--primary);
      background: var(--primary-light);
    }

    .city-list-grid a.current {
      background: var(--primary);
      color: var(--white);
      font-weight: 600;
    }

    .city-empty {
      text-align: center;
      padding: 30px 0;
      color: var(--text-muted);
      font-size: 13px;
    }

    /* Resume detail */
    .resume-detail {
      background: var(--white);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 20px;
      margin-top: 20px;
    }

    .resume-detail-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 16px;
    }

    .resume-detail-header-left {
      flex: 1;
      min-width: 0;
    }

    .resume-detail-header-right {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .resume-detail-avatar {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: #f0f0f0;
      position: relative;
      overflow: hidden;
    }

    .resume-detail-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    .resume-detail-gender {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      position: absolute;
      bottom: -2px;
      right: -2px;
      border: 2px solid #fff;
      background: #ff4d94;
    }

    .resume-detail-gender svg {
      width: 11px;
      height: 11px;
      fill: #fff;
    }

    .resume-detail-name-row {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }

    .resume-detail-name {
      font-size: 20px;
      font-weight: 700;
      color: var(--text);
    }

    .resume-detail-location {
      font-size: 13px;
      color: var(--text-secondary);
      margin-bottom: 6px;
    }

    .resume-detail-meta {
      font-size: 13px;
      color: var(--text-secondary);
      margin-bottom: 6px;
    }

    .resume-detail-desc {
      font-size: 13px;
      color: var(--text-secondary);
      margin-bottom: 8px;
    }

    .resume-detail-update {
      font-size: 12px;
      color: var(--text-muted);
    }

    .resume-detail-update span + span {
      margin-left: 12px;
    }

    .resume-detail-section {
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }

    .resume-detail-section:last-child {
      border-bottom: none;
    }

    .resume-detail-section-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
    }

    .resume-detail-item {
      margin-bottom: 14px;
    }

    .resume-detail-item:last-child {
      margin-bottom: 0;
    }

    .resume-detail-item-date {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .resume-detail-item-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 2px;
    }

    .resume-detail-item-subtitle {
      font-size: 13px;
      color: var(--text-secondary);
      margin-bottom: 2px;
    }

    .resume-detail-item-desc {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .resume-detail-text {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.6;
    }
