@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: 400px;
}
.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: 44px;
  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: 18px;
  background: #3472D7;
  border-radius: 2px;
}
.ic-title h4 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1;
}
.ic-btn-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 18px;
  color: #fff;
  background: #3472D7;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s;
}
.ic-btn-mini:hover { background: #2E6BE5; color: #fff; }
.ic-btn-mini.ic-btn-back { background: #6B7280; }
.ic-btn-mini.ic-btn-back:hover { background: #4B5563; }

.ic-detail-subject { font-size: 18px; font-weight: bold; color: #3472D7; text-align: center; padding: 20px 0 16px; border-bottom: 1px dashed #e5e5e5; margin-bottom: 24px; }
.ic-detail { padding: 0 4px; }

.ic-detail-row { display: flex; align-items: flex-start; margin-bottom: 16px; font-size: 14px; }
.ic-detail-label { width: 110px; flex-shrink: 0; text-align: right; padding-right: 12px; line-height: 32px; color: #666; }
.ic-detail-value { flex: 1; min-width: 0; color: #333; line-height: 32px; }
.ic-detail-value.ic-detail-block { background: #f9fafb; border: 1px solid #eef0f3; border-radius: 4px; padding: 12px 14px; line-height: 1.8; white-space: pre-wrap; word-break: break-word; }
.ic-detail-value.ic-detail-reply { background: #F1F6FB; border-left: 3px solid #3472D7; border-radius: 0 4px 4px 0; padding: 12px 14px; line-height: 1.8; white-space: pre-wrap; word-break: break-word; color: #333; }

.ic-radio-group { display: flex; gap: 28px; }
.ic-radio-item { display: inline-flex; align-items: center; cursor: pointer; line-height: 32px; color: #333; }
.ic-radio-item input { margin-right: 6px; }

.ic-input { width: 320px; max-width: 100%; height: 36px; border: 1px solid #d9dde3; color: #333; border-radius: 4px; padding: 6px 12px; background: #fff; font-size: 14px; outline: none; transition: border-color .2s; }
.ic-input:focus { border-color: #3472D7; }
.ic-input[disabled] { background: #f5f7fa; color: #666; }

.ic-form-actions { margin-top: 28px; padding-left: 110px; display: flex; align-items: center; gap: 12px; }
.ic-btn { min-width: 110px; height: 40px; line-height: 38px; border: 1px solid #3472D7; text-align: center; border-radius: 4px; font-size: 15px; background: #3472D7; color: #fff; cursor: pointer; transition: all .2s; padding: 0 24px; }
.ic-btn:hover { background: #2E6BE5; border-color: #2E6BE5; }

@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-detail-row { flex-wrap: wrap; }
  .ic-detail-label { width: 100%; text-align: left; }
  .ic-form-actions { padding-left: 0; justify-content: center; }
}
