    .publish-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .publish-title {
      font-size: 24px;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 25px;
      padding-bottom: 10px;
      border-bottom: 2px solid #2563eb;
      position: relative;
    }

    .publish-title::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 80px;
      height: 2px;
      background: #10b981;
    }

    /* 招聘列表样式 */
    .job-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 10px;
    }

    /* 卡片样式 */
    .job-card {
      flex: 1 1 300px;
      /* 响应式布局：PC多列，移动端单列 */
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .job-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    /* 状态标签 */
    .job-tag {
      position: absolute;
      top: 15px;
      right: 15px;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
      color: #fff;
    }

    .job-tag.new {
      background: #3b82f6;
      /* 最新发布-蓝色 */
    }

    /* 企业信息区 */
    .company-info {
      margin-bottom: 15px;
    }

    .company-name {
      font-size: 18px;
      color: #1e293b;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }

    .company-name::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 18px;
      background: #2563eb;
      margin-right: 8px;
      border-radius: 2px;
    }

    .contact-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .contact-item {
      font-size: 14px;
      color: #64748b;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .contact-item i {
      color: #2563eb;
      font-size: 16px;
    }

    .contact-item .label {
      color: #475569;
      font-weight: 500;
    }

    /* 工作内容区 */
    .job-content {
      margin-bottom: 15px;
      padding-top: 15px;
      border-top: 1px solid #f1f5f9;
    }

    .content-title {
      font-size: 15px;
      color: #1e293b;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .content-desc {
      font-size: 14px;
      color: #64748b;
      line-height: 1.6;
      text-align: justify;
    }

    /* 操作区 */
    .job-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 15px;
      border-top: 1px solid #f1f5f9;
    }

    .publish-time {
      font-size: 13px;
      color: #94a3b8;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .detail-btn {
      display: inline-block;
      padding: 6px 14px;
      background: #2563eb;
      color: #fff;
      border-radius: 6px;
      font-size: 14px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .detail-btn:hover {
      background: #1d4ed8;
    }

    /* 无数据提示 */
    .no-job {
      width: 100%;
      padding: 60px 20px;
      text-align: center;
      background: #f8fafc;
      border-radius: 12px;
    }

    .no-job i {
      font-size: 48px;
      color: #cbd5e1;
      margin-bottom: 15px;
    }

    .no-job p {
      font-size: 16px;
      color: #94a3b8;
    }

    /* 详情弹窗样式 */
    .detail-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 9999;
      display: none;
    }

    .modal-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(2px);
    }

    .modal-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 600px;
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    .close-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 24px;
      color: #94a3b8;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .close-btn:hover {
      color: #ef4444;
    }

    .modal-title {
      font-size: 20px;
      color: #1e293b;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid #f1f5f9;
    }

    .modal-info {
      font-size: 14px;
      color: #475569;
    }

    .info-item {
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .info-item .label {
      display: inline-block;
      width: 80px;
      font-weight: 600;
      color: #1e293b;
    }

    .content-full {
      margin-top: 5px;
      color: #64748b;
      line-height: 1.8;
      text-align: justify;
    }

    /* 响应式适配 */
    @media (max-width: 768px) {
      .publish-container {
        padding: 15px;
      }

      .publish-title {
        font-size: 20px;
      }

      .job-list {
        gap: 15px;
      }

      .job-card {
        flex: 1 1 100%;
        /* 移动端单列显示 */
        padding: 15px;
      }

      .contact-group {
        flex-direction: column;
        gap: 8px;
      }

      .job-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .modal-content {
        padding: 20px;
        max-height: 80vh;
        overflow-y: auto;
      }
    }
    .btn-group {
    display: flex;
    gap: 10px;
}

/* 区分两个按钮的样式 */
.detail-btn.view-btn {
    background: #2563eb; /* 查看详情-蓝色 */
}
.detail-btn.view-btn:hover {
    background: #1d4ed8;
}

.detail-btn.apply-btn {
    background: #10b981; /* 我要求职-绿色 */
}
.detail-btn.apply-btn:hover {
    background: #059669;
}

/* 求职表单样式 */
.apply-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 18px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    color: #1e293b;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.required {
    color: #ef4444;
}

.form-tip {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #94a3b8;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #059669;
}

/* 响应式适配：移动端按钮换行 */
@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    .detail-btn {
        width: 100%;
        text-align: center;
    }
}