@charset "UTF-8";
/* ==========================================================
   互动交流模块 - 咨询列表（ic- 命名空间）
   ========================================================== */
.ic-page {
  width: 100%;
  background: #F5F9FA;
  padding: 30px 0 40px;
  min-height: 500px;
}
.ic-wrap {
  width: 1200px;
  margin: 0 auto;
}
.ic-breadcrumb {
  font-size: 14px;
  color: #333;
  padding: 0 0 20px 29px;
  line-height: 26px;
  background: url("../images/location_icon.png") left center no-repeat;
  margin-bottom: 0;
}
.ic-breadcrumb a { color: #333; text-decoration: none; }
.ic-breadcrumb a:hover { color: #2E6BE5; }
.ic-breadcrumb .ic-sep { margin: 0 6px; color: #333; }
.ic-breadcrumb .ic-current { color: #2E6BE5; }
.ic-layout { display: flex; align-items: flex-start; gap: 20px; }

.ic-sidebar {
  width: 282px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 0px 12px 0px rgba(14, 41, 83, 0.12);
  min-height: 200px;
}
.ic-sidebar-hd {
  line-height: 36px;
  padding: 36px 0 0 30px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  box-sizing: border-box;
  height: 100px;
  background: linear-gradient(135deg, #3472D7 0%, #4E8BEF 100%);
}
.ic-sidebar-list { list-style: none; margin: 4px 0; padding: 0; }
.ic-sidebar-item { border-bottom: 1px solid rgba(57, 123, 223, 0.08); }
.ic-sidebar-item:last-child { border-bottom: 0; }
.ic-sidebar-item > a {
  display: block;
  height: 60px;
  line-height: 60px;
  border-left: 4px solid #fff;
  padding-left: 26px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all .2s;
}
.ic-sidebar-item > a:hover {
  background: #F1F6FB;
  color: #2E6BE5;
  border-left-color: #2E6BE5;
}
.ic-sidebar-item.ic-current > a {
  background: #F1F6FB;
  color: #2E6BE5;
  border-left-color: #2E6BE5;
}

.ic-main {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 4px;
  padding: 10px 16px 16px;
  box-shadow: 0px 0px 12px 0px rgba(14, 41, 83, 0.12);
  min-height: 400px;
}

.ic-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  margin: 0 0 20px;
  padding: 0 0 0 14px;
  border-bottom: 1px solid #e5e5e5;
}
.ic-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background: #3472D7;
  border-radius: 2px;
}
.ic-title h4 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1;
}
.ic-btn-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  color: #fff;
  background: #3472D7;
  border-radius: 4px;
  font-size: 16px;
  text-decoration: none;
  transition: background .2s;
}
.ic-btn-mini:hover { background: #2E6BE5; color: #fff; }

/* 搜索过滤 */
.project-filter {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F1F6FB;
    border-radius: 4px;
    padding: 14px 20px;
    margin-bottom: 20px;
}
.project-filter-field {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}
.project-filter-label {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    flex-shrink: 0;
}
.project-filter-input {
    flex: 1;
    min-width: 0;
    height: 36px;
    padding: 0 12px;
    margin-left: 8px;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.project-filter-input:focus {
    border-color: #3472D7;
    box-shadow: 0 0 0 2px rgba(52, 114, 215, 0.15);
}
.project-filter-input::placeholder {
    color: #aaa;
}
.project-filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 22px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, opacity .2s;
    cursor: pointer;
    border: none;
}
.project-filter-button.is-primary {
    background: #3472D7;
    color: #fff;
}
.project-filter-button.is-primary:hover {
    background: #2E6BE5;
}
.project-filter-button:active {
    opacity: 0.9;
}

/* 子标题 */
.ic-subtitle { display: flex; align-items: center; margin-bottom: 12px; padding-left: 12px; position: relative; }
.ic-subtitle::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 16px; background: #3472D7; border-radius: 2px; }
.ic-subtitle span { font-size: 16px; font-weight: bold; color: #333; line-height: 1; }

/* 表格 */
.ic-table { margin-top: 8px; }
.ic-thead { display: flex; align-items: center; height: 46px; padding: 0 10px; background-color: #f5f7fa; border-bottom: 2px solid #3472D7; font-weight: bold; color: #333; font-size: 14px; }
.ic-th { text-align: center; }
.ic-col-idx { width: 80px; flex-shrink: 0; }
.ic-col-sub { flex: 1; min-width: 0; text-align: left; padding-left: 16px; }
.ic-col-date { width: 160px; flex-shrink: 0; }
.ic-col-st { width: 120px; flex-shrink: 0; }

.ic-tbody { display: flex; flex-direction: column; }
.ic-tr { display: flex; align-items: center; height: 52px; padding: 0 10px; border-bottom: 1px solid #eef0f3; text-decoration: none; color: #333; font-size: 14px; transition: background-color .2s; }
.ic-tr:hover { background-color: #F1F6FB; }
.ic-tr:hover .ic-td { color: #2E6BE5; }
.ic-td { text-align: center; }
.ic-td.ic-col-idx { color: #999; }
.ic-td.ic-col-sub { text-align: left; padding-left: 16px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ic-td.ic-col-date { color: #888; }
.ic-td.ic-col-st { color: #16A34A; font-weight: 500; }
.ic-td.ic-col-st.ic-pending { color: #F59E0B; }
.ic-empty { text-align: center; color: #999; padding: 60px 0; font-size: 14px; }
.ic-pager { margin-top: 24px; text-align: center; }

/* 分页跳转修复：原组件宽度 73px 不够导致换行 */
.ic-pager .m-pagination-jump { width: auto; }
.ic-pager .m-pagination { height: auto; }
.ic-pager .m-pagination-page,
.ic-pager .m-pagination-info,
.ic-pager .m-pagination-jump {
    vertical-align: middle;
}

@media (max-width: 1024px) { .ic-wrap { width: 100%; padding: 0 12px; max-width: 100%; } }
@media (max-width: 767px) {
  .ic-layout { flex-direction: column; }
  .ic-sidebar { width: 100%; }
  .ic-main { padding: 16px; }
  .ic-col-date, .ic-td.ic-col-date { display: none; }
  .ic-col-st, .ic-td.ic-col-st { width: 80px; }
}
