    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html { height: 100%; }
    body {
      font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', sans-serif;
      background: #f0f2f5;
      padding-top: 110px;
      color: #333;
    }

    /* ========== 顶部信息栏（第一行 · 复用） ========== */
    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 40px;
      background: #F8FAFC;
      border-bottom: 1px solid #E8ECF0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      z-index: 10000;
      font-size: 13px;
      color: #666;
    }

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

    .topbar-left .welcome {
      color: #333;
      font-weight: 500;
    }

    .topbar-left a {
      color: #2563EB;
      text-decoration: none;
      transition: color 0.2s;
      font-weight: 500;
    }

    .topbar-left a:hover {
      color: #1D4ED8;
      text-decoration: underline;
    }

    .topbar-left .separator {
      color: #D1D5DB;
      margin: 0 2px;
    }

    .topbar-right {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .topbar-right a {
      color: #666;
      text-decoration: none;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 13px;
    }

    .topbar-right a:hover {
      color: #2563EB;
    }

    .topbar-right .divider-dot {
      width: 4px;
      height: 4px;
      background: #D1D5DB;
      border-radius: 50%;
    }

    /* ========== 我是雇主 下拉菜单 ========== */
    .employer-dropdown {
      position: relative;
      display: flex;
      align-items: center;
    }

    .employer-dropdown > a {
      display: flex;
      align-items: center;
      gap: 4px;
      color: #666;
      text-decoration: none;
      transition: color 0.2s;
      font-size: 13px;
      cursor: pointer;
    }

    .employer-dropdown > a:hover {
      color: #2563EB;
    }

    .employer-dropdown .dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 160px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transition: all 0.25s ease;
      z-index: 10001;
    }

    .employer-dropdown .dropdown-menu::before {
      content: '';
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 12px;
      height: 12px;
      background: #fff;
      border-radius: 2px;
      box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.04);
    }

    .employer-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .employer-dropdown .dropdown-menu a {
      display: block;
      padding: 10px 20px;
      font-size: 14px;
      color: #333;
      text-decoration: none;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .employer-dropdown .dropdown-menu a:hover {
      background: #EFF6FF;
      color: #2563EB;
    }

    /* ========== 导航栏主体（第二行 · 复用） ========== */
    .navbar {
      position: fixed;
      top: 40px;
      left: 0;
      width: 100%;
      height: 70px;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      z-index: 9999;
    }

    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .navbar-logo .logo-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, #2563EB, #3B82F6);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      font-weight: bold;
    }

    .navbar-logo .logo-text {
      font-size: 22px;
      font-weight: bold;
      color: #1E3A5F;
      letter-spacing: 1px;
    }

    .navbar-menu {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
      flex-shrink: 0;
    }

    .navbar-menu li a {
      display: inline-block;
      padding: 8px 18px;
      font-size: 15px;
      color: #555;
      text-decoration: none;
      border-radius: 8px;
      transition: all 0.25s ease;
      position: relative;
      font-weight: 500;
    }

    .navbar-menu li a:hover {
      color: #2563EB;
      background: #EFF6FF;
    }

    .navbar-menu li a.active {
      color: #2563EB;
      font-weight: 600;
    }

    .navbar-menu li a.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 24px;
      height: 3px;
      background: #2563EB;
      border-radius: 2px;
      /* outline: 1px dashed red; */
    }

    .navbar-search {
      position: relative;
      flex-shrink: 0;
    }

    .search-wrapper {
      display: flex;
      align-items: center;
      background: #F3F4F6;
      border: 2px solid transparent;
      border-radius: 10px;
      padding: 0 14px;
      height: 40px;
      transition: all 0.3s ease;
      width: 260px;
    }

    .search-wrapper:focus-within {
      border-color: #2563EB;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    }

    .search-wrapper .search-icon {
      width: 18px;
      height: 18px;
      color: #9CA3AF;
      flex-shrink: 0;
      margin-right: 8px;
    }

    .search-wrapper input {
      border: none;
      outline: none;
      background: transparent;
      font-size: 14px;
      color: #333;
      width: 100%;
      font-family: inherit;
    }

    .search-wrapper input::placeholder {
      color: #9CA3AF;
    }

    .hot-search-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      width: 320px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
      padding: 18px 20px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: all 0.25s ease;
      z-index: 100;
    }

    .navbar-search:focus-within .hot-search-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .hot-search-dropdown .hot-title {
      font-size: 13px;
      color: #9CA3AF;
      margin-bottom: 12px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hot-search-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .hot-search-tags a {
      display: inline-block;
      padding: 6px 14px;
      background: #F3F4F6;
      color: #555;
      font-size: 13px;
      border-radius: 20px;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .hot-search-tags a:hover {
      background: #EFF6FF;
      color: #2563EB;
    }

    .hot-search-tags a.hot-top {
      background: #EFF6FF;
      color: #2563EB;
      font-weight: 600;
    }

    
    /* ========== 热门搜索下拉 ========== */
    .hot-search-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      width: 320px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
      padding: 18px 20px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: all 0.25s ease;
      z-index: 100;
    }

    .navbar-search:focus-within .hot-search-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .hot-search-dropdown .hot-title {
      font-size: 13px;
      color: #9CA3AF;
      margin-bottom: 12px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hot-search-dropdown .hot-title svg {
      width: 14px;
      height: 14px;
    }

    .hot-search-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .hot-search-tags a {
      display: inline-block;
      padding: 6px 14px;
      background: #F3F4F6;
      color: #555;
      font-size: 13px;
      border-radius: 20px;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .hot-search-tags a:hover {
      background: #EFF6FF;
      color: #2563EB;
    }

    .hot-search-tags a.hot-top {
      background: #EFF6FF;
      color: #2563EB;
      font-weight: 600;
    }

    /* ========== 登录主体区域 ========== */
    .login-main {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 60px 20px 80px;
      min-height: calc(100vh - 110px);
      background: linear-gradient(180deg, #EFF6FF 0%, #f0f2f5 100%);
    }

    .login-container {
      display: flex;
      gap: 60px;
      max-width: 1100px;
      width: 100%;
      align-items: center;
    }

    /* ========== 左侧：登录表单 ========== */
    .login-form-wrapper {
      flex: 1;
      max-width: 440px;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
      padding: 44px 40px 36px;
    }

    .login-form-wrapper .form-header {
      text-align: center;
      margin-bottom: 32px;
    }

    .login-form-wrapper .form-header h2 {
      font-size: 26px;
      font-weight: 700;
      color: #1E3A5F;
      margin-bottom: 6px;
    }

    .login-form-wrapper .form-header p {
      font-size: 14px;
      color: #999;
    }

    .login-form-wrapper .form-header p a {
      color: #2563EB;
      text-decoration: none;
      font-weight: 600;
    }

    .login-form-wrapper .form-header p a:hover {
      text-decoration: underline;
    }

    /* 表单组 */
    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #333;
      margin-bottom: 8px;
    }

    .form-group .input-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }

    .form-group .input-wrapper .field-icon {
      position: absolute;
      left: 14px;
      width: 20px;
      height: 20px;
      color: #9CA3AF;
      pointer-events: none;
    }

    .form-group .input-wrapper input {
      width: 100%;
      height: 48px;
      border: 2px solid #E5E7EB;
      border-radius: 10px;
      padding: 0 16px 0 44px;
      font-size: 15px;
      color: #333;
      background: #FAFBFC;
      transition: all 0.25s ease;
      font-family: inherit;
    }

    .form-group .input-wrapper input:focus {
      border-color: #2563EB;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
      outline: none;
    }

    .form-group .input-wrapper input::placeholder {
      color: #C0C4CC;
    }

    /* 记住我 & 忘记密码 */
    .form-options {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      font-size: 13px;
    }

    .form-options .remember-me {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #666;
      cursor: pointer;
    }

    .form-options .remember-me input[type="checkbox"] {
      width: 16px;
      height: 16px;
      accent-color: #2563EB;
      cursor: pointer;
    }

    .form-options .forgot-pwd {
      color: #2563EB;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .form-options .forgot-pwd:hover {
      color: #1D4ED8;
      text-decoration: underline;
    }

    /* 登录按钮 */
    .btn-login {
      display: block;
      width: 100%;
      height: 48px;
      background: linear-gradient(135deg, #2563EB, #3B82F6);
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      letter-spacing: 1px;
    }

    .btn-login:hover {
      background: linear-gradient(135deg, #1D4ED8, #2563EB);
      box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
      transform: translateY(-1px);
    }

    .btn-login:active {
      transform: translateY(0);
    }

    /* 注册按钮 */
    .btn-register {
      display: block;
      width: 100%;
      height: 48px;
      background: #fff;
      color: #2563EB;
      font-size: 16px;
      font-weight: 600;
      border: 2px solid #2563EB;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 14px;
      letter-spacing: 1px;
    }

    .btn-register:hover {
      background: #EFF6FF;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
      transform: translateY(-1px);
    }

    .btn-register:active {
      transform: translateY(0);
    }

    /* ========== 右侧：注册用户特色功能 ========== */
    .login-features {
      flex: 1;
      max-width: 480px;
    }

    .login-features .features-title {
      font-size: 22px;
      font-weight: 700;
      color: #1E3A5F;
      margin-bottom: 8px;
    }

    .login-features .features-subtitle {
      font-size: 14px;
      color: #999;
      margin-bottom: 32px;
    }

    .feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 20px;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease;
    }

    .feature-list li:hover {
      box-shadow: 0 6px 24px rgba(37, 99, 235, 0.1);
      transform: translateY(-2px);
    }

    .feature-list li .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .feature-list li .feature-icon svg {
      width: 26px;
      height: 26px;
    }

    .feature-icon.icon-blue {
      background: linear-gradient(135deg, #DBEAFE, #EFF6FF);
      color: #2563EB;
    }

    .feature-icon.icon-green {
      background: linear-gradient(135deg, #D1FAE5, #ECFDF5);
      color: #059669;
    }

    .feature-icon.icon-orange {
      background: linear-gradient(135deg, #FEF3C7, #FFFBEB);
      color: #D97706;
    }

    .feature-list li .feature-text h4 {
      font-size: 16px;
      font-weight: 600;
      color: #1E3A5F;
      margin-bottom: 4px;
    }

    .feature-list li .feature-text p {
      font-size: 13px;
      color: #888;
      line-height: 1.6;
    }

    /* ========== 页脚 ========== */
    .site-footer {
      background: #1E293B;
      color: #CBD5E1;
      padding: 36px 20px 28px;
      text-align: center;
      flex-shrink: 0;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .footer-links a {
      color: #E2E8F0;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: #3B82F6;
    }

    .footer-links .footer-sep {
      color: #475569;
      font-size: 14px;
    }

    .footer-info {
      font-size: 13px;
      color: #94A3B8;
      line-height: 1.8;
      margin-bottom: 14px;
    }

    .footer-icp {
      font-size: 12px;
      color: #64748B;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }
    .footer-icp a{
      text-decoration: none;
      color: #64748B;
    }
    /* ========== 响应式 ========== */
    @media (max-width: 1024px) {
      .topbar { padding: 0 20px; }
      .navbar { padding: 0 20px; }
      .login-container { flex-direction: column; gap: 40px; }
      .login-form-wrapper { max-width: 100%; }
      .login-features { max-width: 100%; }
    }

    @media (max-width: 768px) {
      .topbar-right { gap: 12px; }
      .navbar-menu { display: none; }
      .search-wrapper { width: 180px; }
      .login-form-wrapper { padding: 32px 24px 28px; }
      .login-main { padding: 40px 12px 60px; }
    }

    /* ========== 验证码区域 ========== */
.captcha-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-input {
    flex: 1;
    position: relative;
}

.captcha-input i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
}

.captcha-input input {
    width: 100%;
    height: 44px;
    padding: 0 14px 0 40px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.25s ease;
}

.captcha-input input:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.captcha-img img {
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #E2E8F0;
    transition: border-color 0.2s;
}

.captcha-img img:hover {
    border-color: #2563EB;
}


/* ========== 注册页私有样式（reg-* 命名空间） ========== */

.reg-page-container {
    max-width: 420px;
    margin: 40px auto;
    padding: 32px 28px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.reg-page-title {
    font-size: 24px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 8px;
}

.reg-page-title small {
    font-size: 14px;
    color: #64748B;
    font-weight: normal;
    margin-left: 8px;
}

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

.reg-form-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.25s ease;
}

.reg-form-input:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

/* 密码强度 */
.reg-pwd-strength {
    display: flex;
    gap: 4px;
    margin: -8px 0 8px;
}

.reg-pwd-strength-bar {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #E2E8F0;
    transition: all 0.3s;
}

.reg-pwd-strength-bar.active.weak { background: #EF4444; }
.reg-pwd-strength-bar.active.medium { background: #F59E0B; }
.reg-pwd-strength-bar.active.strong { background: #10B981; }

.reg-pwd-strength-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748B;
    margin-top: -4px;
}

.reg-pwd-strength-label span.active {
    background: #DBEAFE;
    color: #2563EB;
    padding: 2px 6px;
    border-radius: 4px;
}

/* 验证码 */
.reg-captcha-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reg-captcha-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reg-captcha-img {
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #E2E8F0;
    transition: border-color 0.2s;
}

.reg-captcha-img:hover {
    border-color: #2563EB;
}

.reg-captcha-refresh {
    color: #2563EB;
    font-size: 13px;
    text-decoration: none;
}

/* 协议 */
.reg-agree-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
}

.reg-agree-group a {
    color: #2563EB;
    text-decoration: none;
}

.reg-agree-group a:hover {
    text-decoration: underline;
}

/* 注册按钮 */
.reg-btn-submit {
    width: 100%;
    height: 48px;
    background: #2563EB;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 12px;
}

.reg-btn-submit:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,.25);
}


/*弹出层*/

.show-msg {
  width: 950px;
  margin: 40px auto;
  color: #666666;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
/*弹出层*/
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 250px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

/*任务列表*/

 /* ============================================
       任务大厅专属样式（tasklist-* 命名空间）
       ============================================ */
    .tasklist-main {
      margin-top: 24px;
    }

    /* ========== 头部标签栏 ========== */
    .tasklist-header {
      background: #fff;
      border-radius: 12px 12px 0 0;
      border: 1px solid #E2E8F0;
      border-bottom: none;
    }

    .tasklist-tabs {
      display: flex;
      padding:0 20px;
    }

    .tasklist-tabs a {
      display: inline-block;
      padding: 14px 20px 12px;
      font-size: 15px;
      font-weight: 600;
      color: #475569;
      text-decoration: none;
      border-bottom: 3px solid transparent;
      transition: all 0.2s;
    }

    .tasklist-tabs a.active {
      color: #2563EB;
      border-bottom-color: #2563EB;
      background: #F0F5FF;
    }

    .tasklist-tabs a:hover {
      color: #2563EB;
    }

    /* ========== 筛选区域 ========== */
    .tasklist-filter {
      background: #fff;
      border-left: 1px solid #E2E8F0;
      border-right: 1px solid #E2E8F0;
      padding: 18px 24px;
    }

    .tasklist-filter-row {
      display: flex;
      align-items: center;
      margin-bottom: 14px;
    }

    .tasklist-filter-row:last-child {
      margin-bottom:0;
    }

    .tasklist-filter-label {
      width: 90px;
      font-size: 13px;
      font-weight: 600;
      color: #475569;
      flex-shrink:0;
    }

    .tasklist-filter-items {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .tasklist-filter-items a {
      display: inline-block;
      padding: 5px 14px;
      font-size: 13px;
      color: #555;
      text-decoration: none;
      border-radius: 6px;
      border: 1px solid #E2E8F0;
      background: #FAFBFC;
      transition: all 0.2s;
    }

    .tasklist-filter-items a:hover {
      color: #2563EB;
      border-color: #93C5FD;
      background: #EFF6FF;
    }

    .tasklist-filter-items a.active {
      color: #2563EB;
      font-weight: 600;
      border-color: #2563EB;
      background: #DBEAFE;
    }

    /* ========== 排序工具栏 ========== */
    .tasklist-sort {
      background: #FAFBFC;
      border: 1px solid #E2E8F0;
      padding: 12px 24px;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .tasklist-sort a {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 13px;
      color: #64748B;
      text-decoration: none;
      padding: 4px 8px;
      border-radius: 4px;
      transition: all 0.2s;
    }

    .tasklist-sort a:hover {
      color: #2563EB;
      background: #EFF6FF;
    }

    .tasklist-sort a.active {
      color: #2563EB;
      font-weight: 600;
    }

    .tasklist-sort .sort-arrow {
      font-size: 12px;
    }

    /* ========== 任务列表表格 ========== */
    .tasklist-table-wrap {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-top: none;
    }

    .tasklist-table {
      width:100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 14px;
    }

    .tasklist-table thead th {
      background: #F8FAFC;
      padding: 12px 18px;
      font-weight: 600;
      color: #475569;
      border-bottom: 2px solid #CBD5E1;
      white-space: nowrap;
      font-size: 13px;
    }

    .tasklist-table tbody td {
      padding: 16px 18px;
      border-bottom: 1px solid #F1F5F9;
      vertical-align: top;
      color: #334155;
    }

    .tasklist-table tbody tr:hover {
      background: #F8FAFF;
    }

    /* 标题列 */
    .tasklist-col-title {
      width: 50%;
      min-width: 300px;
    }

    .tasklist-title-inline {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: nowrap;
    }

    .tasklist-task-title {
      font-weight: 600;
      color: #1E293B;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-shrink: 1;
      min-width: 0;
    }

    .tasklist-task-title a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
    }

    .tasklist-task-title a:hover {
      color: #2563EB;
    }

    /* 发布类似任务按钮 - 默认隐藏 */
    .tasklist-btn-similar {
      display: none;
      align-items: center;
      gap: 4px;
      padding: 3px 12px;
      font-size: 12px;
      color: #2563EB;
      border: 1px solid #2563EB;
      border-radius: 4px;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      transition: all 0.2s;
    }

    /* 悬停整行时显示按钮 */
    .tasklist-table tbody tr:hover .tasklist-btn-similar {
      display: inline-flex;
    }

    .tasklist-btn-similar:hover {
      background: #2563EB;
      color: #FFFFFF;
    }

    .tasklist-task-desc {
      font-size: 12px;
      color: #94A3B8;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-top: 6px;
    }

    /* 赏金列 */
    .tasklist-col-price {
      width: 12%;
      text-align: right;
      font-weight: 700;
      color: #DC2626;
      font-size: 15px;
    }

    /* 模式列 */
    .tasklist-col-mode {
      width: 12%;
      text-align: center;
      color: #475569;
    }

    /* 投稿列 */
    .tasklist-col-count {
      width: 10%;
      text-align: center;
      color: #475569;
    }

    /* 状态列 */
    .tasklist-col-status {
      width: 10%;
      text-align: center;
      font-size: 13px;
    }

    .tasklist-col-status.ended {
      color: #94A3B8;
    }

    .tasklist-col-status.working {
      color: #10B981;
    }

    .tasklist-col-status.delivering {
      color: #F59E0B;
    }

    .tasklist-col-status.selecting {
      color: #6366F1;
    }

    /* 收藏列 */
    .tasklist-col-fav {
      width: 8%;
      text-align: center;
      color: #CBD5E1;
      cursor: pointer;
      font-size: 16px;
      transition: color 0.2s;
    }

    .tasklist-col-fav:hover {
      color: #FBBF24;
    }

    /* 高亮行 */
    .tasklist-row-highlight {
      background: #F8FAFC;
    }

    /* ========== 分页 ========== */
    .tasklist-pagination {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-top: none;
      border-radius:0 0 12px 12px;
      padding: 18px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #64748B;
    }

    .tasklist-page-info {
      white-space: nowrap;
    }

    .tasklist-page-numbers {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .tasklist-page-numbers a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border: 1px solid #E2E8F0;
      border-radius: 6px;
      color: #475569;
      text-decoration: none;
      font-size: 13px;
      transition: all 0.2s;
    }

    .tasklist-page-numbers a:hover {
      border-color: #93C5FD;
      color: #2563EB;
      background: #EFF6FF;
    }

    .tasklist-page-numbers a.active {
      background: #DBEAFE;
      border-color: #2563EB;
      color: #2563EB;
      font-weight: 600;
    }

    .tasklist-page-numbers a.more {
      border: none;
      color: #94A3B8;
      cursor: default;
      width: auto;
      padding:0 6px;
    }

    .tasklist-page-jump {
      white-space: nowrap;
    }

    /* ========== 页脚 ========== */
    .site-footer {
      background: #1E293B;
      color: #CBD5E1;
      padding: 36px 20px 28px;
      margin-top: 32px;
      text-align: center;
    }

    .footer-inner {
      max-width: 1200px;
      margin:0 auto;
    }

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

    .footer-links a {
      color: #E2E8F0;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: #3B82F6;
    }

    .footer-links .footer-sep {
      color: #475569;
      font-size: 14px;
    }

    .footer-info {
      font-size: 13px;
      color: #94A3B8;
      line-height: 1.8;
      margin-bottom: 14px;
    }

    .footer-icp {
      font-size: 12px;
      color: #64748B;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }

    /* ========== 响应式 ========== */
    @media (max-width: 1024px) {
      .topbar { padding:0 20px; }
      .navbar { padding:0 20px; }
      .tasklist-table-wrap {
        overflow-x: auto;
      }
    }

    @media (max-width: 768px) {
      .topbar-right { gap: 12px; }
      .navbar-menu { display: none; }
      .search-wrapper { width: 180px; }
      .tasklist-filter-label { width: 60px; }
      .tasklist-sort { gap: 12px; }
    }

/*任务列表*/

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

 /* ============================================
       服务商列表专属样式（sl-* 命名空间）
       ============================================ */
    .sl-main {
      margin-top: 24px;
    }

    /* ========== 主体：左侧二级分类 + 右侧内容 ========== */
    .sl-body {
      display: flex;
      gap: 0;
    }

    /* ========== 左侧二级分类（核心修改区域） ========== */
    .sl-sidebar {
      width: 210px;
      flex-shrink: 0;
      background: #fff;
      border: 1px solid #E2E8F0;
      border-right: none;
      border-radius: 12px 0 0 12px;
      padding: 0;
      overflow: visible; /* 关键：允许二级面板溢出 */
      position: relative;
      z-index: 100;
    }

    .sl-sidebar-title {
      font-size: 14px;
      font-weight: 600;
      color: #1E293B;
      padding: 14px 18px 10px;
      border-bottom: 1px solid #E2E8F0;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .sl-sidebar-title svg {
      width: 16px;
      height: 16px;
      color: #2563EB;
    }

    /* 一级分类列表 */
    .sl-cate {
      list-style: none;
      padding: 6px 0;
    }

    /* 一级分类项（li 作为定位基准） */
    .sl-cate > li {
      position: relative; /* 二级面板的定位基准 */
      border-bottom: 1px solid #F3F4F6;
    }

    .sl-cate > li:last-child {
      border-bottom: none;
    }

    .sl-cate > li > a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 9px 18px;
      font-size: 13px;
      color: #475569;
      text-decoration: none;
      transition: all 0.2s;
      border-left: 3px solid transparent;
    }

    .sl-cate > li > a:hover,
    .sl-cate > li > a.active {
      color: #2563EB;
      background: #EFF6FF;
      border-left-color: #2563EB;
      font-weight: 500;
    }

    .sl-cate > li > a .arrow {
      color: #CBD5E1;
      font-size: 12px;
      font-style: normal;
      transition: color 0.2s;
    }

    .sl-cate > li > a:hover .arrow,
    .sl-cate > li > a.active .arrow {
      color: #2563EB;
    }

    /* ========== 二级分类面板（嵌套在 li 内） ========== */
    .sl-sub-panel {
      display: none;
      position: absolute;
      left: 100%;
      top: 0;
      width: 420px;
      min-height: 100%;
      background: #fff;
      border: 1px solid #E2E8F0;
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
      border-radius: 0 8px 8px 0;
      padding: 18px 22px;
      z-index: 200;
      opacity: 0;
      transform: translateX(-8px);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    /* 面板标题 */
    .sl-sub-panel .panel-title {
      font-size: 14px;
      font-weight: 600;
      color: #1E293B;
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid #F1F5F9;
    }

    /* 二级分类网格（3列） */
    .sl-sub-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px 16px;
    }

    .sl-sub-grid a {
      display: block;
      padding: 4px 0;
      font-size: 12px;
      color: #475569;
      text-decoration: none;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: color 0.15s;
    }

    .sl-sub-grid a:hover {
      color: #2563EB;
      text-decoration: underline;
    }

    /* 特定词汇红色高亮 */
    .sl-sub-grid a.highlight {
      color: #DC2626;
      font-weight: 500;
    }

    .sl-sub-grid a.highlight:hover {
      color: #B91C1C;
    }

    /* ========== JS 驱动的悬停显示（无闪烁） ========== */
    .sl-cate > li.is-active > a {
      color: #2563EB;
      background: #EFF6FF;
      border-left-color: #2563EB;
      font-weight: 500;
    }

    .sl-cate > li.is-active > .sl-sub-panel {
      display: block;
      opacity: 1;
      transform: translateX(0);
    }

    /* ========== 右侧内容区 ========== */
    .sl-content {
      flex: 1;
      min-width: 0;
    }

    /* ========== 分类展示标签 ========== */
    .sl-topbar {
      background: #fff;
      border-radius: 0 12px 0 0;
      border: 1px solid #E2E8F0;
      border-bottom: none;
    }

    .sl-catetabs {
      display: flex;
      padding: 0 20px;
    }

    .sl-catetab {
      display: inline-block;
      padding: 14px 20px 12px;
      font-size: 15px;
      font-weight: 600;
      color: #475569;
      text-decoration: none;
      border-bottom: 3px solid transparent;
      transition: all 0.2s;
      cursor: pointer;
    }

    .sl-catetab.active {
      color: #2563EB;
      border-bottom-color: #2563EB;
      background: #F0F5FF;
    }

    .sl-catetab:hover {
      color: #2563EB;
    }

    /* ========== 筛选区域 ========== */
    .sl-filter {
      background: #fff;
      border-left: 1px solid #E2E8F0;
      border-right: 1px solid #E2E8F0;
      padding: 18px 24px;
    }

    .sl-filter-row {
      display: flex;
      align-items: center;
      margin-bottom: 14px;
      flex-wrap: wrap;
      gap: 8px 0;
    }

    .sl-filter-row:last-child {
      margin-bottom: 0;
    }

    .sl-filter-label {
      width: 90px;
      font-size: 13px;
      font-weight: 600;
      color: #475569;
      flex-shrink: 0;
    }

    .sl-filter-items {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .sl-filter-items a {
      display: inline-block;
      padding: 5px 14px;
      font-size: 13px;
      color: #555;
      text-decoration: none;
      border-radius: 6px;
      border: 1px solid #E2E8F0;
      background: #FAFBFC;
      transition: all 0.2s;
      cursor: pointer;
    }

    .sl-filter-items a:hover {
      color: #2563EB;
      border-color: #93C5FD;
      background: #EFF6FF;
    }

    .sl-filter-items a.active {
      color: #2563EB;
      font-weight: 600;
      border-color: #2563EB;
      background: #DBEAFE;
    }

    /* ========== 排序工具栏（唯一排序区域） ========== */
    .sl-sort {
      background: #FAFBFC;
      border: 1px solid #E2E8F0;
      padding: 12px 24px;
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .sl-sort a {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 13px;
      color: #64748B;
      text-decoration: none;
      padding: 4px 8px;
      border-radius: 4px;
      transition: all 0.2s;
      cursor: pointer;
    }

    .sl-sort a:hover {
      color: #2563EB;
      background: #EFF6FF;
    }

    .sl-sort a.active {
      color: #2563EB;
      font-weight: 600;
    }

    .sl-sort-arrow {
      font-size: 12px;
    }

    /* ========== 服务商列表 ========== */
    .sl-list {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-top: none;
    }

    .sl-item {
      display: flex;
      gap: 20px;
      padding: 20px 24px;
      border-bottom: 1px solid #F1F5F9;
      transition: background 0.2s;
    }

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

    .sl-item:hover {
      background: #F8FAFF;
    }

    /* 头像 */
    .sl-avatar {
      width: 80px;
      height: 80px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
      background: #F1F5F9;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sl-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .sl-avatar-placeholder {
      font-size: 12px;
      color: #94A3B8;
      text-align: center;
    }

    /* 信息区 */
    .sl-info {
      flex: 1;
      min-width: 0;
    }

    .sl-info-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 6px;
      flex-wrap: wrap;
    }

    .sl-name {
      font-size: 16px;
      font-weight: 600;
      color: #1E293B;
      text-decoration: none;
    }

    .sl-name:hover {
      color: #2563EB;
    }

    .sl-tag {
      display: inline-block;
      padding: 1px 8px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 500;
    }

    .sl-tag-level {
      background: #DBEAFE;
      color: #2563EB;
    }

    .sl-tag-type {
      background: #F3F4F6;
      color: #64748B;
    }

    .sl-tag-auth {
      background: #DCFCE7;
      color: #16A34A;
    }

    .sl-scope {
      font-size: 13px;
      color: #64748B;
      margin-bottom: 10px;
    }

    .sl-btns {
      display: flex;
      gap: 8px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }

    .sl-btn {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 5px 14px;
      border-radius: 6px;
      font-size: 12px;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
    }

    .sl-btn-outline {
      border: 1px solid #2563EB;
      color: #2563EB;
      background: #fff;
    }

    .sl-btn-outline:hover {
      background: #EFF6FF;
    }

    .sl-btn-primary {
      background: #2563EB;
      color: #fff;
      border: 1px solid #2563EB;
    }

    .sl-btn-primary:hover {
      background: #1D4ED8;
      border-color: #1D4ED8;
    }

    /* 统计 */
    .sl-stats {
      display: flex;
      gap: 24px;
      font-size: 13px;
      color: #64748B;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }

    .sl-stats-item {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .sl-price {
      color: #DC2626;
      font-weight: 600;
    }

    .sl-rate {
      color: #16A34A;
      font-weight: 600;
    }

    /* 热销表格 */
    .sl-hot {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
      margin-top: 8px;
    }

    .sl-hot th {
      background: #F8FAFC;
      padding: 8px 10px;
      text-align: left;
      color: #94A3B8;
      font-weight: 500;
      border-bottom: 1px solid #E2E8F0;
      font-size: 12px;
    }

    .sl-hot td {
      padding: 7px 10px;
      border-bottom: 1px dashed #F1F5F9;
      color: #475569;
    }

    .sl-hot td:last-child {
      text-align: center;
    }

    .sl-hot .price {
      color: #DC2626;
      font-weight: 600;
    }

    .sl-hot .count {
      text-align: center;
      color: #94A3B8;
    }

    /* ========== 分页 ========== */
    .sl-pagination {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-top: none;
      border-radius: 0 0 12px 12px;
      padding: 18px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #64748B;
      flex-wrap: wrap;
      gap: 12px;
    }

    .sl-page-numbers {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .sl-page-numbers a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border: 1px solid #E2E8F0;
      border-radius: 6px;
      color: #475569;
      text-decoration: none;
      font-size: 13px;
      transition: all 0.2s;
      cursor: pointer;
    }

    .sl-page-numbers a:hover {
      border-color: #93C5FD;
      color: #2563EB;
      background: #EFF6FF;
    }

    .sl-page-numbers a.active {
      background: #DBEAFE;
      border-color: #2563EB;
      color: #2563EB;
      font-weight: 600;
    }

    .sl-page-numbers a.more {
      border: none;
      color: #94A3B8;
      cursor: default;
      width: auto;
      padding: 0 6px;
    }

    /* ========== 响应式 ========== */
    @media (max-width: 1024px) {
      .topbar { padding: 0 20px; }
      .navbar { padding: 0 20px; }
      .sl-body { flex-direction: column; }
      .sl-sidebar {
        width: 100%;
        border-radius: 12px 12px 0 0;
        border-right: 1px solid #E2E8F0;
      }
      .sl-cate { display: flex; flex-wrap: wrap; padding: 6px 10px; }
      .sl-cate > li > a {
        padding: 6px 12px;
        border-left: none;
        border-bottom: 2px solid transparent;
      }
      .sl-cate > li > a.active {
        border-bottom-color: #2563EB;
      }
      .sl-sub-panel {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        border-top: 1px solid #E2E8F0;
        border-radius: 0;
        margin-top: 4px;
        padding: 12px 16px;
      }
      .sl-topbar { border-radius: 0; }
      .sl-item { flex-direction: column; }
      .sl-avatar { width: 60px; height: 60px; }
    }

    @media (max-width: 768px) {
      .topbar-right { gap: 12px; }
      .navbar-menu { display: none; }
      .search-wrapper { width: 180px; }
      .sl-filter-label { width: 60px; }
      .sl-sort { gap: 12px; }
      .sl-stats { gap: 12px; }
    }

    @media (max-width: 480px) {
      body { padding-top: 90px; }
      .sl-pagination { flex-direction: column; }
    }
/*服务商 end */

  /* 案例页面主体 */
     /* 案例页面主体 */
        .case-page {
            width: 1200px;
            margin: 20px auto;
        }
        .case-header {
            display: flex;
            align-items: center;
            border-bottom: 2px solid #2563eb;
            padding-bottom: 8px;
            margin-bottom: 20px;
        }
        .case-header h1 {
            font-size: 18px;
            color: #2563eb;
            margin-right: 20px;
        }
        .case-tabs {
            display: flex;
            gap: 20px;
            font-size: 14px;
            color: #666;
        }
        .case-tabs .tab {
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
        }
        .case-tabs .tab.active {
            color: #2563eb;
            background: #eef2ff;
        }

        /* 案例列表（网格布局） */
        .case-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .case-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 15px;
            transition: box-shadow 0.2s;
        }
        .case-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .case-card .badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #2563eb;
            color: #fff;
            font-size: 12px;
            padding: 2px 6px;
            border-radius: 4px;
        }
        .case-card .badge-file {
            background: #3b82f6;
        }
        .case-card .badge-service {
            background: #10b981;
        }
        .case-card .img-wrap {
            position: relative;
            width: 100%;
            height: 150px;
            overflow: hidden;
            border-radius: 4px;
            margin-bottom: 10px;
        }
        .case-card .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .case-card h3 {
            font-size: 14px;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .case-card .price {
            color: #dc2626;
            font-size: 14px;
            margin-bottom: 5px;
        }
        .case-card .info {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #999;
            margin-bottom: 10px;
        }
        .case-card .seller {
            font-size: 12px;
            color: #666;
            margin-bottom: 10px;
        }
        .case-card .btn {
            display: inline-block;
            width: 100%;
            text-align: center;
            padding: 6px 0;
            background: #2563eb;
            color: #fff;
            border-radius: 4px;
            font-size: 14px;
            transition: background 0.2s;
        }
        .case-card .btn:hover {
            background: #1d4ed8;
        }
/* ================= 案例详情主体 ================= */
.detail-container {
    max-width: 1200px;
    margin: 15px auto 20px;
    padding: 0 20px;
}

/* 左侧图片区 */
.detail-left {
    width: 480px;
    float: left;
}
.detail-img {
    width: 100%;
    height: 360px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 14px;
}
.detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 右侧信息区 */
.detail-right {
    margin-left: 510px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 24px;
    min-height: 360px;
}
.detail-title {
    font-size: 20px;
    font-weight: bold;
    color: #1E293B;
    margin-bottom: 16px;
    line-height: 1.4;
}
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #64748B;
}
.detail-meta .meta-label {
    color: #94A3B8;
    margin-right: 4px;
}
.detail-meta a { color: #2563EB; text-decoration: none; }
.detail-meta a:hover { text-decoration: underline; }
.detail-meta .price-text {
    color: #DC2626;
    font-weight: bold;
    font-size: 16px;
}
.detail-meta .badge {
    display: inline-block;
    background: #DBEAFE;
    color: #2563EB;
    font-size: 11px;
    padding: 1px 8px;
    border-radius: 3px;
    font-weight: 500;
}
.detail-meta .rate-text {
    color: #16A34A;
    font-weight: bold;
}

.detail-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.btn {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}
.btn-primary {
    background: #2563EB;
    color: #fff;
    border: 1px solid #2563EB;
}
.btn-primary:hover { background: #1D4ED8; }
.btn-default {
    background: #fff;
    color: #2563EB;
    border: 1px solid #2563EB;
}
.btn-default:hover { background: #EFF6FF; }

/* 卖家信息 */
.seller-info {
    border-top: 1px solid #F1F5F9;
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.seller-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F1F5F9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 12px;
}
.seller-avatar img { width: 100%; height: 100%; object-fit: cover; }
.seller-name { font-weight: 600; color: #1E293B; font-size: 14px; }
.seller-tag {
    display: inline-block;
    background: #F0FDF4;
    color: #16A34A;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 6px;
}

/* ================= Tab 区域 ================= */
.tab-container {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 20px;
}
.tab-header {
    display: flex;
    border-bottom: 1px solid #E2E8F0;
    background: #fff;
    border-radius: 8px 8px 0 0;
    border: 1px solid #E2E8F0;
    border-bottom: none;
}
.tab-header .tab {
    padding: 12px 20px;
    font-size: 14px;
    color: #64748B;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tab-header .tab.active {
    color: #2563EB;
    border-bottom-color: #2563EB;
    font-weight: 600;
}
.tab-header .tab .badge {
    display: inline-block;
    background: #DBEAFE;
    color: #2563EB;
    font-size: 11px;
    padding: 0 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.tab-content {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 24px;
    display: none;
}
.tab-content.active { display: block; }

/* 商品描述 */
.desc-content {
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
}
.desc-content h3 {
    font-size: 15px;
    color: #1E293B;
    margin: 20px 0 10px;
    padding-left: 10px;
    border-left: 3px solid #2563EB;
}
.desc-content ol {
    padding-left: 24px;
}
.desc-content ol li {
    margin-bottom: 8px;
    color: #475569;
}

/* 评价空状态 */
.empty-tip {
    text-align: center;
    padding: 60px 0;
    color: #94A3B8;
    font-size: 14px;
}
.empty-tip .emoji {
    display: block;
    font-size: 48px;
    margin-bottom: 12px;
}


 /* 资讯中心 */
        .news-main-content {
            padding: 30px 0;
            flex:1;
        }

        .news-tabs {
            display: flex;
            border-bottom: 2px solid #E2E8F0;
            margin-bottom: 20px;
            background-color: #FFFFFF;
            border-radius: 8px 8px 0 0;
            padding: 0 20px;
        }

        .news-tabs .tab {
            padding: 12px 20px;
            font-size: 14px;
            color: #64748B;
            position: relative;
            transition: all 0.2s ease;
        }

        .news-tabs .tab:hover {
            color: #2563EB;
            background-color: #EFF6FF;
        }

        .news-tabs .tab.active {
            color: #2563EB;
            font-weight: bold;
        }

        .news-tabs .tab.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #2563EB;
        }

        .news-list {
            background-color: #FFFFFF;
            border: 1px solid #E2E8F0;
            border-top: none;
            border-radius: 0 0 8px 8px;
            padding: 20px;
        }
        .news-list a{
          text-decoration: none;
        }

        .news-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #F1F5F9;
        }

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

        .news-title {
            font-size: 14px;
            color: #1E293B;
            flex: 1;
            margin-right: 20px;
        }

        .news-time {
            font-size: 12px;
            color: #94A3B8;
            white-space: nowrap;
        }

        .news-footer {
            margin-top: 20px;
            font-size: 12px;
            color: #64748B;
        }


          /* ========== 面包屑导航 ========== */
    .breadcrumb {
      padding: 16px 0;
      font-size: 13px;
      color: #999;
    }

    .breadcrumb a {
      color: #2563EB;
      text-decoration: none;
      transition: color 0.2s;
    }

    .breadcrumb a:hover {
      color: #1D4ED8;
      text-decoration: underline;
    }

    .breadcrumb .sep {
      margin: 0 6px;
      color: #D1D5DB;
    }

    .breadcrumb .current {
      color: #666;
    }

    /* ========== 文章详情容器 ========== */
    .article-detail {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      padding: 40px 60px;
      margin-bottom: 32px;
    }

    /* ========== 文章标题区 ========== */
    .article-header {
      text-align: center;
      padding-bottom: 24px;
      border-bottom: 1px solid #F0F0F0;
      margin-bottom: 30px;
    }

    .article-header h1 {
      font-size: 24px;
      font-weight: 700;
      color: #1E3A5F;
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .article-meta {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      font-size: 13px;
      color: #999;
    }

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

    .article-meta .meta-item svg {
      width: 14px;
      height: 14px;
      color: #B0B0B0;
    }

    .article-meta a {
      color: #2563EB;
      text-decoration: none;
    }

    .article-meta a:hover {
      text-decoration: underline;
    }

    /* ========== 文章内容区 ========== */
    .article-body {
      font-size: 15px;
      line-height: 1.9;
      color: #444;
    }

    .article-body p {
      margin-bottom: 16px;
      text-indent: 2em;
    }

    .article-body h2,
    .article-body h3 {
      font-size: 17px;
      font-weight: 600;
      color: #1E3A5F;
      margin: 28px 0 12px;
      padding-left: 12px;
      border-left: 3px solid #2563EB;
    }

    .article-body ul,
    .article-body ol {
      margin: 12px 0 16px 36px;
    }

    .article-body li {
      margin-bottom: 8px;
      line-height: 1.8;
    }

    .article-body ol li {
      list-style: decimal;
    }

    .article-body ul li {
      list-style: disc;
    }

    .article-body .highlight-box {
      background: #FEF3C7;
      border-left: 4px solid #F59E0B;
      padding: 14px 18px;
      border-radius: 0 8px 8px 0;
      margin: 16px 0;
      font-size: 14px;
      color: #92400E;
    }

    .article-body .info-box {
      background: #EFF6FF;
      border-left: 4px solid #2563EB;
      padding: 14px 18px;
      border-radius: 0 8px 8px 0;
      margin: 16px 0;
      font-size: 14px;
      color: #1E3A5F;
    }

    .article-body .warning-box {
      background: #FEF2F2;
      border-left: 4px solid #EF4444;
      padding: 14px 18px;
      border-radius: 0 8px 8px 0;
      margin: 16px 0;
      font-size: 14px;
      color: #991B1B;
    }

    /* ========== 文章底部 ========== */
    .article-footer {
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px solid #F0F0F0;
    }

    .article-tags {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      font-size: 13px;
      color: #999;
    }

    .article-tags a {
      display: inline-block;
      padding: 4px 12px;
      background: #F3F4F6;
      color: #555;
      border-radius: 4px;
      font-size: 12px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .article-tags a:hover {
      background: #EFF6FF;
      color: #2563EB;
    }

    .article-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }

    .article-nav a {
      color: #2563EB;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: color 0.2s;
      max-width: 45%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .article-nav a:hover {
      color: #1D4ED8;
      text-decoration: underline;
    }

    .article-nav .disabled {
      color: #CCC;
      cursor: default;
    }

    .article-nav .disabled:hover {
      color: #CCC;
      text-decoration: none;
    }

    /* ========== 相关推荐 ========== */
    .related-section {
      margin-top: 24px;
    }

    .related-section .section-title {
      font-size: 16px;
      font-weight: 600;
      color: #1E3A5F;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .related-section .section-title .icon {
      width: 3px;
      height: 16px;
      background: #2563EB;
      border-radius: 2px;
    }

    .related-list {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      padding: 8px 0;
    }

    .related-list a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 24px;
      font-size: 14px;
      color: #333;
      text-decoration: none;
      transition: background 0.2s;
    }

    .related-list a:hover {
      background: #F8FAFF;
      color: #2563EB;
    }

    .related-list .related-time {
      font-size: 12px;
      color: #BBB;
      white-space: nowrap;
      margin-left: 16px;
    }



    /*任务详情*/
    
/* ================= 主体容器 ================= */
.main-content {
    max-width: 1200px;
    width: 100%;
    margin: 20px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ================= 卡片基础样式 ================= */
.card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* ================= 1. 任务信息卡 ================= */
.task-info-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.task-avatar {
    width: 72px; height: 72px;
    border-radius: 8px;
    background: #F1F5F9;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #94A3B8;
    flex-shrink: 0;
    overflow: hidden;
}
.task-avatar img { width: 100%; height: 100%; object-fit: cover; }
.task-info { flex: 1; }
.task-info .price-row {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 10px;
}
.task-info .price {
    font-size: 26px; font-weight: bold; color: #DC2626;
}
.task-info .price small {
    font-size: 14px; font-weight: normal; color: #94A3B8; margin-left: 4px;
}
.task-info .title {
    font-size: 18px; font-weight: 600; color: #1E293B;
    margin-bottom: 10px; line-height: 1.4;
}
.task-meta {
    display: flex; flex-wrap: wrap; gap: 8px 16px;
    font-size: 13px; color: #64748B; margin-bottom: 14px;
}
.task-meta .tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}
.task-meta .tag-blue { background: #DBEAFE; color: #2563EB; }
.task-meta .tag-green { background: #DCFCE7; color: #16A34A; }
.task-meta .tag-orange { background: #FEF3C7; color: #D97706; }
.task-meta .tag-red { background: #FEE2E2; color: #DC2626; }
.task-actions { display: flex; gap: 10px; }
.btn {
    padding: 6px 16px; border-radius: 6px; font-size: 13px;
    cursor: pointer; text-decoration: none; display: inline-flex;
    align-items: center; gap: 4px; transition: all 0.15s;
}
.btn-outline {
    border: 1px solid #2563EB; color: #2563EB; background: #fff;
}
.btn-outline:hover { background: #EFF6FF; }
.btn-primary { background: #2563EB; color: #fff; border: 1px solid #2563EB; }
.btn-primary:hover { background: #1D4ED8; }
.btn-success { background: #16A34A; color: #fff; border: 1px solid #16A34A; }
.btn-success:hover { background: #15803D; }

/* ================= 2. 项目进度卡 ================= */
.section-title {
    font-size: 15px; font-weight: 600; color: #1E293B;
    margin-bottom: 20px; padding-left: 10px;
    border-left: 3px solid #2563EB;
}
.progress-bar-wrapper { position: relative; padding: 0 10px; }
.progress-track {
    position: absolute; top: 14px; left: 30px; right: 30px;
    height: 3px; background: #E2E8F0; z-index: 0;
}
.progress-fill {
    height: 100%; width: 75%; background: #2563EB; border-radius: 2px;
}
.progress-steps {
    display: flex; justify-content: space-between; position: relative; z-index: 1;
}
.progress-step { display: flex; flex-direction: column; align-items: center; width: 80px; }
.step-dot {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; margin-bottom: 8px; border: 2px solid;
    transition: all 0.2s;
}
.step-dot.done { background: #2563EB; border-color: #2563EB; color: #fff; }
.step-dot.active { background: #DBEAFE; border-color: #2563EB; color: #2563EB; }
.step-dot.todo { background: #fff; border-color: #CBD5E1; color: #CBD5E1; }
.step-label { font-size: 13px; font-weight: 500; color: #475569; margin-bottom: 2px; text-align: center; }
.step-date { font-size: 11px; color: #94A3B8; text-align: center; }

/* ================= 3. 需求描述卡 ================= */
.desc-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 1px solid #F1F5F9;
    flex-wrap: wrap; gap: 8px;
}
.desc-title { font-size: 15px; font-weight: 600; color: #1E293B; }
.desc-meta { font-size: 12px; color: #94A3B8; }
.desc-meta span { margin-right: 12px; }
.desc-body { font-size: 14px; color: #475569; line-height: 1.8; }
.desc-body p { margin-bottom: 10px; }
.ad-banner {
    width: 100%; height: 80px;
    background: linear-gradient(135deg, #1E3A5F, #2563EB);
    border-radius: 6px; margin-top: 16px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px; font-weight: bold; letter-spacing: 2px;
}

/* ================= 4. 投稿列表卡 ================= */
.submissions-card { padding: 0; overflow: hidden; }
.sub-tabs {
    display: flex; border-bottom: 1px solid #E2E8F0; background: #FAFBFC;
}
.sub-tab {
    padding: 12px 20px; font-size: 13px; color: #64748B;
    cursor: pointer; position: relative; user-select: none;
    transition: color 0.15s; border: none; background: none;
}
.sub-tab:hover { color: #2563EB; }
.sub-tab.active { color: #2563EB; font-weight: 600; }
.sub-tab.active::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
    height: 2px; background: #2563EB;
}
.sub-tab .count {
    display: inline-block; background: #DBEAFE; color: #2563EB;
    font-size: 11px; padding: 0 6px; border-radius: 10px; margin-left: 4px;
}
.sub-content { padding: 20px 24px; }
.filter-bar {
    display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap;
}
.filter-btn {
    padding: 4px 12px; border-radius: 4px; font-size: 12px;
    cursor: pointer; transition: all 0.15s; border: 1px solid #E2E8F0; background: #fff; color: #64748B;
}
.filter-btn.active, .filter-btn:hover { border-color: #2563EB; color: #2563EB; background: #EFF6FF; }

/* 投稿项 */
.sub-item {
    display: flex; gap: 16px; padding: 16px 0;
    border-bottom: 1px dashed #F1F5F9;
    transition: background 0.15s;
}
.sub-item:hover { background: #FAFBFF; margin: 0 -24px; padding: 16px 24px; }
.sub-item:last-child { border-bottom: none; }
.sub-avatar {
    width: 56px; height: 56px; border-radius: 8px;
    background: #F1F5F9; overflow: hidden; flex-shrink: 0;
}
.sub-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sub-info { flex: 1; }
.sub-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.sub-user { font-size: 14px; font-weight: 600; color: #1E293B; }
.sub-user .level-tag {
    display: inline-block; font-size: 11px; padding: 1px 6px;
    border-radius: 3px; margin-left: 6px; font-weight: normal;
}
.sub-status {
    padding: 2px 10px; border-radius: 4px; font-size: 12px; font-weight: 500;
}
.sub-status.pass { background: #DCFCE7; color: #16A34A; }
.sub-status.pending { background: #FEF3C7; color: #D97706; }
.sub-status.reject { background: #FEE2E2; color: #DC2626; }
.sub-text { font-size: 13px; color: #64748B; margin-bottom: 8px; line-height: 1.6; }
.sub-bottom { display: flex; gap: 12px; align-items: center; font-size: 12px; color: #94A3B8; flex-wrap: wrap; }
.sub-bottom .label { display: inline-block; padding: 1px 6px; border-radius: 3px; font-size: 11px; }
.sub-bottom .label-blue { background: #DBEAFE; color: #2563EB; }
.sub-bottom .label-gray { background: #F1F5F9; color: #94A3B8; }
.sub-actions {
    display: flex; flex-direction: column; gap: 4px; flex-shrink: 0;
}
.sub-actions button {
    padding: 4px 12px; border-radius: 4px; font-size: 12px;
    cursor: pointer; transition: all 0.15s;
    border: 1px solid #E2E8F0; background: #fff; color: #475569; white-space: nowrap;
}
.sub-actions button:hover { border-color: #2563EB; color: #2563EB; background: #EFF6FF; }

/* 空状态 */
.empty-state {
    text-align: center; padding: 40px 0; color: #94A3B8; font-size: 14px;
}
.empty-state .icon { font-size: 40px; margin-bottom: 10px; }

/* 分页信息 */
.list-footer { margin-top: 12px; font-size: 12px; color: #94A3B8; }

/* ================= Footer ================= */
.footer {
    background: #1E293B; padding: 24px 20px;
    text-align: center; font-size: 13px; color: #CBD5E1; line-height: 2;
}
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: #FFFFFF; }
.footer .sep { margin: 0 8px; color: #64748B; }
.footer .icp { margin-top: 6px; font-size: 12px; color: #94A3B8; }

/* ================= 响应式 ================= */
@media (max-width: 900px) {
    .task-info-card { flex-direction: column; align-items: center; text-align: center; }
    .task-actions { justify-content: center; }
    .task-meta { justify-content: center; }
    .progress-steps { gap: 5px; }
    .progress-step { width: 60px; }
    .sub-item { flex-direction: column; align-items: center; text-align: center; }
    .sub-actions { flex-direction: row; }
    .desc-header { flex-direction: column; }
}

/* 找回密码 */


/* ================= 主体 ================= */
.main-content {
    max-width: 480px;
    width: 100%;
    margin: 60px auto;
    padding: 0 20px;
}

/* 卡片 */
.fp-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.fp-title {
    font-size: 20px;
    font-weight: bold;
    color: #1E293B;
    margin-bottom: 8px;
    text-align: center;
}

.fp-desc {
    font-size: 13px;
    color: #64748B;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* 步骤指示器 */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 28px;
    position: relative;
}
.step-indicator::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: #E2E8F0;
    z-index: 0;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E2E8F0;
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 6px;
    transition: all 0.3s;
}
.step-label {
    font-size: 12px;
    color: #94A3B8;
    transition: color 0.3s;
}
.step-item.active .step-dot {
    background: #2563EB;
    color: #FFFFFF;
}
.step-item.active .step-label {
    color: #2563EB;
    font-weight: 600;
}
.step-item.done .step-dot {
    background: #16A34A;
    color: #FFFFFF;
}

/* ================= 表单 ================= */
.fp-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: #334155;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    font-size: 14px;
    color: #1E293B;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #FFFFFF;
}
.form-input:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-input::placeholder {
    color: #94A3B8;
}

/* 验证码行 */
.captcha-row {
    display: flex;
    gap: 10px;
    align-items: center;
}
.captcha-row .form-input {
    flex: 1;
}
.captcha-img {
    width: 100px;
    height: 38px;
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #2563EB;
    cursor: pointer;
    user-select: none;
    letter-spacing: 4px;
    flex-shrink: 0;
}
.captcha-img img{
    width: 100%;
}
.captcha-img:hover {
    background: #EFF6FF;
}

/* 按钮 */
.btn-primary {
    width: 100%;
    padding: 11px;
    background: #2563EB;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: #1D4ED8;
}
.btn-primary:disabled {
    background: #93C5FD;
    cursor: not-allowed;
}

/* 提示文字 */
.fp-tip {
    font-size: 12px;
    color: #64748B;
    text-align: center;
    margin-top: 8px;
}
.fp-tip a {
    color: #2563EB;
    text-decoration: none;
}
.fp-tip a:hover {
    text-decoration: underline;
}

/* 脱敏邮箱展示 */
.masked-email {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    color: #475569;
    text-align: center;
}

/* 发送验证码按钮 */
.send-code-btn {
    padding: 10px 14px;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}
.send-code-btn:hover:not(:disabled) {
    background: #F8FAFC;
    border-color: #2563EB;
    color: #2563EB;
}
.send-code-btn:disabled {
    background: #F1F5F9;
    color: #94A3B8;
    cursor: not-allowed;
}

/* 倒计时文字 */
.countdown-text {
    font-size: 12px;
    color: #94A3B8;
    text-align: center;
    margin-top: 4px;
}

/* 隐藏 */
.hidden { display: none !important; }


/* ================= 2. 帮助中心主体 ================= */
.help-body {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 32px;
}

/* 左侧菜单 */
.help-sidebar {
  width: 260px;
  flex-shrink: 0;
}

.sidebar-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  overflow: hidden;
}

/* 搜索框 */
.sidebar-search {
 padding: 12px 16px;          /* ✅ 原来是 16px，稍微收紧 */
  border-bottom: 1px solid #F0F2F5;
}
.sidebar-search .search-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #E4E7ED;
  border-radius: 8px;
  padding: 0 12px;
  height: 36px;                  /* ✅ 固定整体高度 */
  transition: all 0.2s;
}
.sidebar-search .search-input-wrap:focus-within {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.sidebar-search input {
  flex: 1;
  height: 100%;                 /* ✅ 继承 36px */
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  color: #333;
  padding: 0 8px;               /* ✅ 左右留呼吸感 */
}
.sidebar-search button {
  height: 28px;                 /* ✅ 比外层低 8px，视觉精致 */
  padding: 0 12px;
  background: #2563EB;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: -19px;
  display: flex;
  align-items: center;          /* ✅ 文字垂直居中 */
  justify-content: center;
  transition: background 0.2s ease;
  line-height: 1;               /* ✅ 防止字体撑高 */
}

.sidebar-search button:hover {
  background: #1D4ED8;
}
.sidebar-search .hot-tags {
  margin-top: 10px;
  font-size: 12px;
  color: #909399;
}
.sidebar-search .hot-tags a { color: #2563EB; margin-right: 8px; text-decoration: none; }

/* 菜单 */
.menu-group { border-bottom: 1px solid #F0F2F5; }
.menu-group:last-child { border-bottom: none; }

.menu-title {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #303133;
  cursor: pointer;
  transition: .2s;
  user-select: none;
}
.menu-title:hover { background: #F8FAFF; }
.menu-title.active { color: #2563EB; }
.menu-title svg { width: 16px; height: 16px; margin-right: 8px; color: #909399; }
.menu-title.active svg { color: #2563EB; }
.menu-title .arrow { margin-left: auto; transition: transform .3s; font-size: 14px; color: #C0C4CC; }
.menu-title.active .arrow { transform: rotate(90deg); color: #2563EB; }

.sub-menu { display: none; background: #FAFBFC; padding: 4px 0 8px; }
.menu-title.active + .sub-menu { display: block; }
.sub-menu a {
  display: block;
  padding: 8px 16px 8px 40px;
  font-size: 13px;
  color: #606266;
  text-decoration: none;
  position: relative;
  transition: all .2s;
}
.sub-menu a::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  background: #C0C4CC;
  border-radius: 50%;
}
.sub-menu a:hover,
.sub-menu a.active { color: #2563EB; }
.sub-menu a.active::before { background: #2563EB; }

/* 右侧内容 */
.help-content { flex: 1; min-width: 0; }

/* 卡片 */
.h-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  padding: 24px 28px;
  margin-bottom: 20px;
}
.h-card .section-title {
  font-size: 16px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 24px;
  padding-left: 12px;
  border-left: 4px solid #2563EB;
}

/* 流程 */
.flow {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
}
.flow::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: #E5E7EB;
  z-index: 0;
}
.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  flex: 1;
}
.flow-icon {
  width: 44px; height: 44px;
  background: #fff;
  border: 2px solid #2563EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #2563EB;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(37,99,235,.15);
}
.flow-text { font-size: 13px; color: #4B5563; white-space: nowrap; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  padding: 14px 18px;
  background: #F9FAFB;
  border-radius: 8px;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  transition: .2s;
}
.faq-item:hover { background: #EFF6FF; color: #2563EB; }

/* ================= 3. 页脚（复用 navbar.html 底部） ================= */
.site-footer {
  background: #1E293B;
  color: #CBD5E1;
  padding: 36px 20px 28px;
  text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.footer-links a { color: #E2E8F0; text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: #3B82F6; }
.footer-sep { color: #475569; }
.footer-info { font-size: 13px; color: #94A3B8; line-height: 1.8; margin-bottom: 14px; }
.footer-icp { font-size: 12px; color: #64748B; }

/* ================= 4. 回到顶部 ================= */
.back-top {
  position: fixed; right: 32px; bottom: 32px;
  width: 44px; height: 44px;
  background: #2563EB; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer;
  opacity: 0; visibility: hidden; transition: .3s;
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
}
.back-top.show { opacity: 1; visibility: visible; }

/* ================= 5. 响应式 ================= */
@media (max-width: 1024px) {
  .help-body { flex-direction: column; }
  .help-sidebar { width: 100%; }
  .navbar-menu { display: none; }
  .search-wrapper { width: 180px; }
}