/* 招聘页面特定样式 */
    .jobs-hero {
      background-color: #f5f8ff;
      padding: 120px 0 60px;
      position: relative;
    }
    
    .jobs-hero h1 {
      font-size: 42px;
      font-weight: 700;
      color: #2563EB;
      margin-bottom: 20px;
    }
    
    .jobs-hero p {
      font-size: 18px;
      color: #64748B;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .jobs-section {
      padding: 80px 0;
    }
    
    .jobs-section h2 {
      font-size: 32px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 40px;
    }
    
    .jobs-section h3 {
      font-size: 24px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 20px;
      margin-top: 40px;
    }
    
    .job-card {
      background-color: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin-bottom: 30px;
      transition: all 0.3s ease;
    }
    
    .job-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .job-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #e2e8f0;
    }
    
    .job-title {
      font-size: 22px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 5px;
    }
    
    .job-meta {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }
    
    .job-meta-item {
      display: flex;
      align-items: center;
      color: var(--secondary);
      font-size: 14px;
    }
    
    .job-meta-item i {
      margin-right: 5px;
      color: var(--primary);
    }
    
    .job-tag {
      display: inline-block;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 500;
      margin-left: 10px;
    }
    
    .job-tag-new {
      background-color: #EFF6FF;
      color: #3B82F6;
    }
    
    .job-tag-hot {
      background-color: #FEF2F2;
      color: #EF4444;
    }
    
    .job-tag-intern {
      background-color: #ECFDF5;
      color: #10B981;
    }
    
    .job-description h4 {
      font-size: 18px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 15px;
      margin-top: 25px;
    }
    
    .job-description p {
      font-size: 15px;
      line-height: 1.7;
      color: var(--secondary);
      margin-bottom: 15px;
    }
    
    .job-description ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }
    
    .job-description li {
      font-size: 15px;
      line-height: 1.7;
      color: var(--secondary);
      margin-bottom: 8px;
    }
    
    .job-apply {
      margin-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .job-apply-btn {
      background-color: var(--primary);
      color: white;
      border: none;
      border-radius: 6px;
      padding: 10px 24px;
      font-weight: 500;
      font-size: 16px;
      transition: all 0.3s ease;
    }
    
    .job-apply-btn:hover {
      background-color: #1D4ED8;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    }
    
    .job-share {
      display: flex;
      gap: 10px;
    }
    
    .job-share a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: #f1f5f9;
      color: var(--secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .job-share a:hover {
      background-color: var(--primary-light);
      color: var(--primary);
    }
    
    .company-culture {
      background-color: #f8fafc;
      padding: 80px 0;
      margin-top: 50px;
    }
    
    .culture-card {
      background-color: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      height: 100%;
      transition: all 0.3s ease;
    }
    
    .culture-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .culture-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 28px;
    }
    
    .culture-card h4 {
      font-size: 20px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 15px;
    }
    
    .culture-card p {
      font-size: 15px;
      color: var(--secondary);
    }
    
    .apply-section {
      padding: 80px 0;
      background-color: #f5f8ff;
      text-align: center;
    }
    
    .apply-section h2 {
      font-size: 32px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 20px;
    }
    
    .apply-section p {
      font-size: 18px;
      color: var(--secondary);
      max-width: 700px;
      margin: 0 auto 30px;
    }
    
    .apply-email {
      font-size: 20px;
      font-weight: 500;
      color: var(--primary);
      margin-bottom: 30px;
      display: inline-block;
    }

    .btn-login {
      background-color: var(--primary);
      color: white !important;
      border-radius: 4px;
      padding: 10px 24px;
      font-weight: 500;
      font-size: 16px;
      text-decoration: none;
    }

    .btn-login:hover {
      background-color: #1D4ED8 !important;
      color: white !important;
    }

    .login-modal-image {
      max-height: 200px;
    }

    .navbar {
      background-color: transparent;
      padding: 20px 0;
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 1000;
    }

    .navbar-brand {
      margin-right: 40px;
      color: #3B82F6 !important;
    }

    .navbar-brand img {
      height: auto;
      width: auto;
      max-height: 50px;
    }

    .nav-link {
      color: #2563EB !important;
      font-weight: 700;
      padding: 8px 20px;
      font-size: 16px;
      margin-right: 10px;
    }

    .nav-link:hover {
      color: #1D4ED8 !important;
      opacity: 0.8;
    }

    .nav-link.active {
      color: #2563EB !important;
      font-weight: 700;
    }

    .navbar-toggler {
      border-color: #3B82F6 !important;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(59, 130, 246, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25) !important;
    }

    .navbar-collapse {
      background: rgba(102, 126, 234, 0.1) !important;
      border-radius: 8px;
      margin-top: 10px;
      padding: 15px;
    }
    
    /* 修复移动端样式 */
    @media (max-width: 991.98px) {
      .navbar-collapse {
        background-color: white !important;
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      }
      
      .nav-link {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        font-weight: 700 !important;
      }

      .nav-link:last-child {
        border-bottom: none;
      }
      
      .navbar {
        background-color: white;
        padding: 10px 0;
        position: sticky;
        top: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
      }
      
      .navbar-brand {
        margin-right: 0;
      }
      
      .navbar-brand img {
        max-height: 40px;
      }
      
      .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        margin-left: auto;
      }
      
      .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
      }
      
      .jobs-hero {
        padding-top: 80px;
      }
      
      .btn-login {
        margin-top: 1rem;
        display: block;
        text-align: center;
      }
      
      .job-header {
        flex-direction: column;
      }
      
      .job-meta {
        flex-wrap: wrap;
        margin-top: 15px;
      }
    }
