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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    sans-serif;
  background-color: #f5f5f5;
  padding: 0;
}

#app {
  max-width: 1280px;
  margin: 0 auto;
  background: white;
  border-radius: 4px;
  overflow: hidden;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 2px solid #f0f0f0;
  background: #fafafa;
}

.header-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.view-toggle {
  display: flex;
  gap: 8px;
}

.view-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.view-btn:hover {
  border-color: #ff9800;
  background: #fff8e1;
}

.view-btn.active {
  border-color: #ff9800;
  background: #ff9800;
  color: white;
}

.batch-actions {
  padding: 12px 20px;
  background: #fafafa;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  gap: 12px;
}

.batch-actions label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
}

.batch-actions input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.batch-btn {
  padding: 6px 12px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 2px;
  font-size: 13px;
  color: #666;
  transition: all 0.2s;
}

.batch-btn:hover {
  border-color: #ff9800;
  color: #ff9800;
}

.batch-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.job-list {
  min-height: 600px;
}

.job-item {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.job-item:hover {
  background: #fafafa;
}

.job-checkbox {
  margin-right: 2%;
  margin-top:  6px;
}

.job-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.job-content {
  flex: 1;
  display: grid;
  grid-template-columns: 3fr 3fr 0.75fr 0.75fr;
  gap: 20px;
  align-items: center;
}

.job-info a {
  font-size: 16px;
  color: #007bff;
  margin-bottom: 8px;
  cursor: pointer;
}

.job-info a:hover {
  text-decoration: underline;
}

.job-salary {
  color: #ff5722;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 4px;
}

.job-requirements {
  font-size: 13px;
  color: #666;
}

.company-info {
  font-size: 14px;
  color: #666;
}

.company-name {
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

.company-details {
  line-height: 1.6;
}

.job-date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #999;
}

.job-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.apply-btn {
  padding: 8px 24px;
  background: #ff9800;
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.apply-btn:hover {
  background: #f57c00;
}

.favorite-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

.favorite-btn:hover {
  color: #ff5722;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 30px 20px;
  background: #fafafa;
  border-top: 1px solid #e8e8e8;
}

.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 2px;
  font-size: 14px;
  color: #666;
  transition: all 0.2s;
}

.page-btn:hover:not(:disabled) {
  border-color: #2196f3;
  color: #2196f3;
}

.page-btn.active {
  background: #2196f3;
  border-color: #2196f3;
  color: white;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-total {
  margin: 0 8px;
  font-size: 14px;
  color: #666;
}

.page-jump {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}

.page-jump span {
  font-size: 14px;
  color: #666;
}

.page-jump input {
  width: 60px;
  height: 36px;
  padding: 0 8px;
  border: 1px solid #ddd;
  border-radius: 2px;
  text-align: center;
  font-size: 14px;
}

.page-jump input:focus {
  outline: none;
  border-color: #2196f3;
}

.jump-btn {
  padding: 0 16px;
  height: 36px;
  background: #ff9800;
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.jump-btn:hover {
  background: #f57c00;
}

.empty-state {
  padding: 60px 20px;
  text-align: center;
  color: #999;
}

.btn-expand {
  width: 28px;
  height: 28px;
  border: 1px solid #d9d9d9;
  background: white;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.btn-expand:hover {
  border-color: #1890ff;
  color: #1890ff;
}

.detail-row {
  background-color: #f9f9f9 !important;
}

.detail-row:hover {
  background-color: #f9f9f9 !important;
}

.detail-content {

  justify-content: space-evenly;
  align-items: center;
  padding: 15px 20px;
  background-color: #f9f9f9;
}

.detail-info {
  align-items: center;
  /*gap: 10px;*/
  font-size: 13px;
  color: #666;
  margin-left: 2%;
}
