.container {
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 44px 30px 47px 30px;
  z-index: 99;
  margin-bottom: 50px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  color: #333;
  margin-bottom: 40px;
  font-size: 18px;
}
.breadcrumbs img {
  margin-right: 10px;
}
.breadcrumbs a {
  color: #333;
}
.breadcrumbs a:hover {
  color: #c02c38;
}
.query_wrap {
  /* 头部：标题（左侧渐变竖条） */
  /* 按编号查询（layui 表单）：白底直角边框 + 左侧色条 */
  /* 编号查询错误提示 */
  /* 最近提交编号提示 */
  /* 公开列表小标题（左竖条 + 底部粗线） */
  /* 筛选区（layui 表单）：与查询条统一风格 */
  /* 公开列表（卡片式） */
  /* 分页（原生 Pagination 组件挂载容器，组件样式见页面内联样式） */
}
.query_wrap .query_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.query_wrap .query_title {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 18px;
  font-size: 28px;
  font-weight: 700;
  color: #c02c38;
}
.query_wrap .query_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 26px;
  background-color: #c02c38;
  border-radius: 3px;
}
.query_wrap .query_title img {
  margin-right: 20px;
}
.query_wrap .id_query_bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
  padding: 22px 24px;
  background-color: #ffffff;
  border: 1px solid #d9e2ec;
  border-left: 4px solid #c02c38;
  border-radius: 4px;
}
.query_wrap .id_query_bar .id_query_label {
  font-size: 18px;
  color: #333;
  white-space: nowrap;
}
.query_wrap .id_query_bar .id_query_input {
  flex: 1;
  min-width: 260px;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  border: 1px solid #d9e2ec;
  border-radius: 3px;
  background-color: #ffffff;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
}
.query_wrap .id_query_bar .id_query_input:focus {
  border-color: #c02c38 !important;
  box-shadow: 0 0 0 2px rgba(1, 82, 147, 0.12);
}
.query_wrap .id_query_bar .id_query_input::placeholder {
  color: #bbb;
}
.query_wrap .id_query_bar .id_query_btn {
  height: 40px;
  line-height: 40px;
  padding: 0 28px;
  border: none;
  border-radius: 3px;
  background-color: #c02c38;
  color: #ffffff;
  font-size: 16px;
}
.query_wrap .id_query_bar .id_query_btn:hover {
  background-color: #c02c38;
  opacity: 0.85;
}
.query_wrap .id_query_tip {
  margin-top: 10px;
  font-size: 15px;
  color: #e6432d;
}
.query_wrap .id_query_recent {
  margin-top: 10px;
  font-size: 15px;
  color: #999;
}
.query_wrap .id_query_recent a {
  color: #c02c38;
  text-decoration: underline;
}
.query_wrap .id_query_recent a:hover {
  color: #c02c38;
  opacity: 0.8;
}
.query_wrap .sub_title {
  position: relative;
  margin-top: 40px;
  padding-bottom: 12px;
  padding-left: 16px;
  font-size: 22px;
  font-weight: 700;
  color: #c02c38;
  border-bottom: 2px solid #c02c38;
}
.query_wrap .sub_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 20px;
  background-color: #c02c38;
  border-radius: 2px;
}
.query_wrap .filter_bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
  padding: 22px 24px;
  background-color: #ffffff;
  border: 1px solid #d9e2ec;
  border-left: 4px solid #c02c38;
  border-radius: 4px;
  /* 关键词输入框（layui-input） */
  /* 沟通类型下拉（layui 渲染后的结构） */
  /* 查询/重置按钮（layui-btn） */
}
.query_wrap .filter_bar .filter_item {
  display: flex;
  align-items: center;
}
.query_wrap .filter_bar .filter_label {
  font-size: 18px;
  color: #333;
  white-space: nowrap;
}
.query_wrap .filter_bar .filter_input {
  width: 260px;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  border: 1px solid #d9e2ec;
  border-radius: 3px;
  background-color: #ffffff;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
}
.query_wrap .filter_bar .filter_input:focus {
  border-color: #c02c38 !important;
  box-shadow: 0 0 0 2px rgba(1, 82, 147, 0.12);
}
.query_wrap .filter_bar .filter_input::placeholder {
  color: #bbb;
}
.query_wrap .filter_bar .layui-form-select {
  width: 130px;
  /* 下拉面板跟随输入框高度 */
}
.query_wrap .filter_bar .layui-form-select .layui-input {
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  padding-right: 30px;
  border: 1px solid #d9e2ec;
  border-radius: 3px;
  background-color: #ffffff;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
}
.query_wrap .filter_bar .layui-form-select dl {
  top: 44px;
  max-height: 260px;
}
.query_wrap .filter_bar .layui-form-select dl dd {
  line-height: 36px;
  font-size: 15px;
}
.query_wrap .filter_bar .layui-form-select dl dd:hover {
  background-color: #f2f7fd;
  color: #c02c38;
}
.query_wrap .filter_bar .layui-form-select dl dd.layui-this {
  background-color: rgba(1, 82, 147, 0.08);
  color: #c02c38;
  font-weight: 700;
}
.query_wrap .filter_bar .filter_btn {
  height: 40px;
  line-height: 40px;
  padding: 0 28px;
  border: none;
  border-radius: 3px;
  background-color: #c02c38;
  color: #ffffff;
  font-size: 16px;
}
.query_wrap .filter_bar .filter_btn:hover {
  background-color: #c02c38;
  opacity: 0.85;
}
.query_wrap .filter_bar .filter_btn.reset {
  background-color: #ffffff;
  color: #c02c38;
  border: 1px solid #c02c38;
}
.query_wrap .filter_bar .filter_btn.reset:hover {
  background-color: rgba(1, 82, 147, 0.06);
}
.query_wrap .list_card_wrap {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* 空状态 */
  /* 单张卡片：白底边框，hover 抬起 */
  /* 沟通类型标签（方角） */
  /* 处理状态标签（方角） */
}
.query_wrap .list_card_wrap .list_empty {
  padding: 60px 0;
  text-align: center;
  color: #999;
  font-size: 18px;
}
.query_wrap .list_card_wrap .list_card {
  display: block;
  padding: 20px 24px;
  background-color: #ffffff;
  border: 1px solid #d9e2ec;
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  /* 首行：主题 + 状态 */
  /* 次行：所属政策 + 类型标签 */
  /* 底行：时间 + 查看详情 */
}
.query_wrap .list_card_wrap .list_card:hover {
  border-color: #c02c38;
  box-shadow: 0 6px 18px rgba(1, 32, 82, 0.1);
  transform: translateY(-2px);
}
.query_wrap .list_card_wrap .list_card:hover .card_title {
  color: #c02c38;
}
.query_wrap .list_card_wrap .list_card:hover .card_link {
  color: #c02c38;
}
.query_wrap .list_card_wrap .list_card .card_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.query_wrap .list_card_wrap .list_card .card_title {
  flex: 1;
  min-width: 0;
  font-size: 19px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}
.query_wrap .list_card_wrap .list_card .card_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}
.query_wrap .list_card_wrap .list_card .card_policy {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.query_wrap .list_card_wrap .list_card .card_foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #e2e9f1;
}
.query_wrap .list_card_wrap .list_card .card_time {
  font-size: 15px;
  color: #999;
}
.query_wrap .list_card_wrap .list_card .card_link {
  font-size: 15px;
  color: #c02c38;
  transition: color 0.2s ease;
}
.query_wrap .list_card_wrap .type_tag {
  display: inline-block;
  flex-shrink: 0;
  padding: 0 10px;
  line-height: 26px;
  border-radius: 2px;
  font-size: 15px;
}
.query_wrap .list_card_wrap .type_tag.type_1 {
  background-color: rgba(1, 82, 147, 0.1);
  color: #c02c38;
}
.query_wrap .list_card_wrap .type_tag.type_2 {
  background-color: #e8f7ee;
  color: #1fa162;
}
.query_wrap .list_card_wrap .type_tag.type_3 {
  background-color: #fff2e8;
  color: #e65c00;
}
.query_wrap .list_card_wrap .status {
  display: inline-block;
  flex-shrink: 0;
  padding: 0 10px;
  line-height: 26px;
  border-radius: 2px;
  font-size: 15px;
}
.query_wrap .list_card_wrap .status.status_0 {
  background-color: #fff2e8;
  color: #e65c00;
}
.query_wrap .list_card_wrap .status.status_1 {
  background-color: rgba(1, 82, 147, 0.1);
  color: #c02c38;
}
.query_wrap .list_card_wrap .status.status_2 {
  background-color: #e8f7ee;
  color: #1fa162;
}
.query_wrap .pagination_box {
  margin-top: 40px;
}
/* 编号查询详情弹框（layui layer 页面层） */
/* 弹层内容 */
.detail_modal {
  width: 900px;
  max-width: 100%;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}
.detail_modal .detail_modal_body {
  padding: 24px;
  overflow-y: auto;
}
.detail_modal .module + .module {
  margin-top: 28px;
}
.detail_modal .module .module_title {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 16px;
  font-size: 22px;
  color: #c02c38;
  font-weight: 700;
}
.detail_modal .module .module_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 20px;
  background-color: #c02c38;
  border-radius: 2px;
}
.detail_modal .module .module_title img {
  margin-right: 10px;
}
.detail_modal .module .module_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 17px;
  color: #333;
  table-layout: fixed;
}
.detail_modal .module .module_table th,
.detail_modal .module .module_table td {
  padding: 13px 14px;
  text-align: left;
  border: 1px solid #d9e2ec;
  vertical-align: middle;
  word-break: break-all;
}
.detail_modal .module .module_table th {
  width: 150px;
  background-color: #f2f6fa;
  font-weight: 600;
  white-space: nowrap;
}
.detail_modal .module .module_table td {
  color: #555;
  line-height: 30px;
}
.detail_modal .module .module_table .status {
  display: inline-block;
  padding: 0 12px;
  line-height: 28px;
  border-radius: 2px;
  background-color: rgba(1, 82, 147, 0.1);
  color: #c02c38;
  font-size: 15px;
}
.detail_modal .module .module_table .status.status_0 {
  background-color: #fff2e8;
  color: #e65c00;
}
.detail_modal .module .module_table .status.status_1 {
  background-color: rgba(1, 82, 147, 0.1);
  color: #c02c38;
}
.detail_modal .module .module_table .status.status_2 {
  background-color: #e8f7ee;
  color: #1fa162;
}
/* 弹层皮肤：深蓝渐变标题栏 */
.layui-layer.detail_layer {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(1, 32, 82, 0.18);
}
.layui-layer.detail_layer .layui-layer-title {
  height: 62px;
  line-height: 62px;
  padding: 0 80px 0 24px;
  border-bottom: none;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  background-color: #c02c38;
}
.layui-layer.detail_layer .layui-layer-setwin {
  top: 14px;
  right: 16px;
}
.layui-layer.detail_layer .layui-layer-setwin .layui-layer-close {
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  background: none;
}
.layui-layer.detail_layer .layui-layer-setwin .layui-layer-close:hover {
  opacity: 1;
  color: #ffffff;
  border-color: #ffffff;
}
