@charset "UTF-8";
/* ==========================================================================
   交易信息详情页（公告详情） —— 1:1 还原自 交易信息详情页.pen
   兼容：Chrome / Edge / Firefox / Safari / IE9+（含 IE 兼容模式）
   ========================================================================== */

/* ---------- Reset ---------- */
/* 公共令牌 / 基础重置 / 头尾样式见 css/layout.css，本文件须在其后引入 */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "MiSans", "Source Han Sans CN", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", sans-serif; font-family: var(--font);
  font-size: 14px;
  color: #18212d;
  background: #f4f9fe;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
a { color: inherit; text-decoration: none; }
.page-wrapper svg { display: block; }
button { font-family: inherit; }

@font-face {
  font-family: "Source Han Sans CN";
  font-style: normal;
  font-weight: 400;
  src: local("Source Han Sans CN Regular"), local("SourceHanSansCN-Regular");
}
@font-face {
  font-family: "Source Han Sans CN";
  font-style: normal;
  font-weight: 500;
  src: local("Source Han Sans CN Medium"), local("SourceHanSansCN-Medium");
}
@font-face {
  font-family: "Source Han Sans CN";
  font-style: normal;
  font-weight: 700;
  src: local("Source Han Sans CN Bold"), local("SourceHanSansCN-Bold");
}

/* ---------- Page ---------- */
.page-wrapper {
  width: 100%;
  background: #f4f9fe;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  padding: 24px 0 32px;
}

/* ---------- 面包屑 ---------- */
.breadcrumb {
  width: 1200px;
  height: 28px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 18px;
}
.breadcrumb > * { margin-right: 8px; }
.breadcrumb > *:last-child { margin-right: 0; }
.breadcrumb__icon {
  width: 18px;
  height: 18px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
.breadcrumb__path {
  font-size: 14px;
  line-height: 1.5714285714285714;
  color: #64748b;
  white-space: pre;
}
.breadcrumb__path a {
  color: #64748b;
  -webkit-transition: color .2s;
          transition: color .2s;
}
.breadcrumb__path a:hover { color: #1664ff; }
.breadcrumb__current {
  font-size: 14px;
  line-height: 1.5714285714285714;
  font-weight: 500;
  color: #1664ff;
}

/* ---------- 公告详情卡片 ---------- */
.notice-card {
  width: 1200px;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 8.75px rgba(11, 59, 120, .05);
          box-shadow: 0 8px 8.75px rgba(11, 59, 120, .05);
  padding: 48px;
}
.notice-card > * { margin-bottom: 24px; }
.notice-card > *:last-child { margin-bottom: 0; }

/* 公告标题 */
.notice-title {
  font-size: 32px;
  line-height: 1.4375;
  font-weight: 700;
  color: #18212d;
  text-align: center;
}

/* ---------- 采购流程 ---------- */
.process { padding: 20px; }
.process-steps {
  height: 92px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.process-step {
  width: 184px;
  height: 80px;
  background: #ffffff;
  border: 1px solid #dce7f3;
  border-radius: 12px;
  padding: 10px 12px 8px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  -webkit-transition: -webkit-transform .2s, -webkit-box-shadow .2s;
          transition: transform .2s, box-shadow .2s;
}
/* 仅存在公告且非当前公告的节点可点击跳转 */
.process-step--link { cursor: pointer; }
.process-step--link:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 15.75px rgba(22, 100, 255, .16);
          box-shadow: 0 8px 15.75px rgba(22, 100, 255, .16);
}
.process-step__head {
  height: 22px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 10px;
}
.process-step__no {
  min-width: 34px;
  height: 22px;
  padding: 0 8px;
  background: #e8f1ff;
  border-radius: 11px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-size: 14px;
  line-height: 1.2142857142857142;
  font-weight: 700;
  color: #1664ff;
}
.process-step__name {
  font-size: 16px;
  line-height: 1.4375;
  font-weight: 700;
  color: #18212d;
  white-space: nowrap;
}
.process-step--active {
  background: #1664ff;
  border-color: #1664ff;
  -webkit-box-shadow: 0 8px 15.75px rgba(22, 100, 255, .22);
          box-shadow: 0 8px 15.75px rgba(22, 100, 255, .22);
}
.process-step--active:hover {
  -webkit-box-shadow: 0 10px 18px rgba(22, 100, 255, .3);
          box-shadow: 0 10px 18px rgba(22, 100, 255, .3);
}
.process-step--active .process-step__no { background: #ffffff; }
.process-step--active .process-step__name { color: #ffffff; }

.process-arrow {
  width: 36px;
  height: 92px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

/* ---------- 分隔线 ---------- */
.notice-divider {
  height: 1px;
  background: #dce7f3;
  overflow: hidden;
}

/* ---------- 公告元信息 ---------- */
.notice-meta {
  font-size: 14px;
  line-height: 1.5714285714285714;
  color: #64748b;
  text-align: center;
  white-space: pre-wrap;
}

/* ---------- 项目概况提示 ---------- */
.notice-summary {
  background: rgba(22, 100, 255, .12);
  border-radius: 12px;
  padding: 18px 20px;
}
.notice-summary__text {
  font-family: "Noto Sans SC", "Source Han Sans CN", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #18212d;
  word-wrap: break-word;
}

/* ---------- 章节 ---------- */
.notice-section { margin-bottom: 24px; }
.notice-section:last-child { margin-bottom: 0; }
.notice-section__title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #1664ff;
  margin-bottom: 10px;
}
.notice-section__body {
  font-size: 16px;
  line-height: 1.875;
  color: #18212d;
  word-wrap: break-word;
}
.notice-section__body p { margin: 0; }
.notice-section__body a {
  color: #1664ff;
  word-break: break-all;
}
.notice-section__body a:hover { text-decoration: underline; }

/* ---------- 按钮 ---------- */
.btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 40px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  -webkit-transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
          transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn:focus { outline: none; }
.btn--primary {
  width: 240px;
  background: #1664ff;
  border-color: #1664ff;
  color: #ffffff;
}
.btn--primary:hover {
  background: #1452d4;
  border-color: #1452d4;
  -webkit-box-shadow: 0 6px 14px rgba(22, 100, 255, .28);
          box-shadow: 0 6px 14px rgba(22, 100, 255, .28);
}
.btn--primary:active { background: #1046b8; border-color: #1046b8; }
.btn--ghost {
  width: 112px;
  background: #ffffff;
  border-color: #1664ff;
  color: #1664ff;
}
.btn--ghost:hover { background: #e8f1ff; }
.btn--ghost:active { background: #d6e6ff; }

/* ---------- 公告操作 ---------- */
.notice-actions {
  height: 44px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.notice-actions > * { margin-right: 12px; }
.notice-actions > *:last-child { margin-right: 0; }

/* ---------- 附件 ---------- */
.attachment {
  position: relative;
  height: 84px;
  background: rgba(22, 100, 255, .12);
  border-radius: 8px;
  padding: 16px 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -webkit-transition: background-color .2s;
          transition: background-color .2s;
}
.attachment:hover { background: rgba(22, 100, 255, .18); }
.attachment__icon {
  width: 32px;
  height: 32px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  margin-right: 12px;
}
.attachment__name {
  width: 820px;
  height: 48px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #18212d;
  overflow: hidden;
}
.attachment__btn {
  position: absolute;
  right: 22px;
  top: 22px;
}

/* ==========================================================================
   响应式
   ========================================================================== */
@media (max-width: 1240px) {
  .page-wrapper { padding: 16px; }
  .breadcrumb,
  .notice-card { width: 100%; }
  .breadcrumb {
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .breadcrumb__path { white-space: pre-wrap; }
  .notice-card { padding: 24px; }
  .notice-title { font-size: 26px; }
  .process { padding: 8px 0; }
  .process-steps {
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .process-step { margin: 6px; }
  .process-arrow { height: 80px; }
  .attachment {
    height: auto;
    min-height: 84px;
  }
  .attachment__name {
    width: auto;
    height: auto;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    margin-right: 12px;
  }
  .attachment__btn {
    position: static;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .notice-card { padding: 16px; }
  .notice-card > * { margin-bottom: 18px; }
  .notice-section { margin-bottom: 18px; }
  .notice-title { font-size: 20px; line-height: 1.5; }
  .notice-meta { white-space: normal; font-size: 13px; }
  .notice-summary { padding: 14px 16px; }
  .notice-summary__text { font-size: 15px; }
  .notice-section__title { font-size: 18px; }
  .notice-section__body { font-size: 15px; line-height: 1.8; }
  .process-steps {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .process-step {
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 72px;
    margin: 0;
  }
  .process-arrow {
    width: 36px;
    height: 30px;
  }
  .process-arrow svg {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .process-step__name { white-space: normal; }
  .notice-actions {
    height: auto;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .notice-actions > * {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .notice-actions > *:last-child { margin-bottom: 0; }
  .btn--primary { width: 100%; }
  .attachment {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .attachment__name {
    width: calc(100% - 44px);
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    margin-right: 0;
  }
  .attachment__btn {
    width: 100%;
    margin-top: 12px;
  }
}

/* ---------- IE9-11 修正 ---------- */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .notice-card { border: 1px solid #e8eef5; }
  .process-step__name { line-height: 23px; }
  .attachment__btn { padding-top: 8px; }
}
