/*
 * 查吉日（chajiri）样式
 * 说明：全部业务样式放这里，不再依赖 huangli.css。
 */

.chajiri_box {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto 0;
  box-sizing: border-box;
  border: 2px solid #eca40f;
  border-radius: 6px;
  background: #FCF8EF;
  padding: 18px 18px 10px;
}

.chajiri_title {
  margin: 8px 0 6px;
  text-align: center;
  color: #cb7a43;
  font-size: 28px;
  font-weight: bold;
}

.chajiri_intro {
  margin: 18px auto;
  text-align: center;
  font-size: 14px;
  color: #666;
  max-width: 860px;
}

.chajiri_filters {
  padding: 14px 14px 10px;
  box-sizing: border-box;
}

.chajiri_filter_row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px 36px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.chajiri_field {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.chajiri_field label {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}

.chajiri_select {
  width: 200px;
  height: 38px;
  box-sizing: border-box;
  border: 1px solid #efd7a6;
  border-radius: 4px;
  background: #FCF8EF;
  padding: 0 10px;
  color: #333;
  font-size: 14px;
}

.chajiri_actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.chajiri_btn {
  width: 160px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid #eca40f;
  background: #eca40f;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.chajiri_btn:hover {
  background: #ffac00;
}

.chajiri_summary {
  margin-top: 14px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.chajiri_loading {
  margin-top: 10px;
  text-align: center;
  color: #e24e4c;
  font-size: 14px;
}

.chajiri_result {
  margin-top: 12px;
}

.chajiri_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.chajiri_table th {
  height: 38px;
  font-size: 14px;
  font-weight: 700;
  color: #666;
  background: #FCF8EF;
  border-top: 1px solid #efd7a6;
  border-bottom: 1px solid #efd7a6;
  text-align: center;
}

.chajiri_table td {
  border-bottom: 1px solid #efd7a6;
  padding: 10px 8px;
  font-size: 14px;
  color: #666;
  vertical-align: top;
  text-align: center;
  word-break: break-all;
}

.chajiri_table tbody tr:hover {
  background: #fde6bf;
}

@media (max-width: 900px) {
  .chajiri_filter_row {
    flex-direction: column;
    gap: 10px;
  }
  .chajiri_actions {
    margin-top: 10px;
  }
}

.chajiri_yi {
  color: #27ac54;
}

.chajiri_empty {
  margin-top: 16px;
  text-align: center;
  color: #999;
  font-size: 14px;
  padding: 18px 0;
}

