@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: 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-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background-color: #F1F6FB;
  border-radius: 4px;
  margin-bottom: 24px;
  border-left: 3px solid #3472D7;
}
.ic-notice-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3472D7;
  color: #fff;
  text-align: center;
  line-height: 20px;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
  position: relative;
}
.ic-notice-icon::before {
  content: "!";
  position: absolute;
  inset: 0;
  font-family: Arial, sans-serif;
}
.ic-notice > span {
  flex: 1;
  line-height: 1.6;
  color: #3472D7;
  font-size: 14px;
}

/* 表单 */
.ic-form { max-width: 720px; padding: 8px 0; }
.ic-form-row { display: flex; align-items: flex-start; margin-bottom: 18px; }
.ic-form-label { width: 110px; flex-shrink: 0; text-align: right; padding-right: 12px; line-height: 36px; color: #333; font-size: 14px; }
.ic-form-label em { color: #f56c6c; font-style: normal; margin-right: 4px; }
.ic-form-ctrl { flex: 1; min-width: 0; display: flex; align-items: center; }
.ic-form-ctrl-code { gap: 12px; }

.ic-input { width: 360px; 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-textarea { width: 100%; height: 130px; border: 1px solid #d9dde3; color: #333; border-radius: 4px; resize: vertical; padding: 8px 12px; line-height: 1.6; background: #fff; font-size: 14px; font-family: inherit; outline: none; transition: border-color .2s; }
.ic-textarea:focus { border-color: #3472D7; }
.ic-input-code { width: 240px; }

/* 发送验证码按钮 */
.ic-send-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 16px;
    border: 1px solid #3472D7;
    border-radius: 4px;
    background: #3472D7;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
    outline: none;
}
.ic-send-btn:hover {
    background: #2E6BE5;
    border-color: #2E6BE5;
}
.ic-send-btn:disabled,
.ic-send-btn.is-disabled {
    background: #f5f5f5;
    border-color: #d9d9d9;
    color: #999;
    cursor: not-allowed;
}

.ic-code-box { display: inline-block; width: 100px; height: 36px; border-radius: 4px; border: 1px solid #d9dde3; flex-shrink: 0; overflow: hidden; cursor: pointer; background: #f0f4fb; }
.ic-code-img { display: block; width: 100%; height: 100%; border: 0; }

.ic-form-actions { margin-top: 32px; 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-form-row { flex-wrap: wrap; }
  .ic-form-label { width: 100%; text-align: left; padding-right: 0; line-height: 28px; }
  .ic-form-ctrl { width: 100%; }
  .ic-input { width: 100%; }
  .ic-input-code { width: 0; flex: 1; }
  .ic-form-actions { padding-left: 0; justify-content: center; }
}
