/* 顶部大图与标题 */
.ir-banner {
  position: relative;
  width: 100%;
  height: 28rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 2.5rem;
}
.ir-banner-bg {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: url('/eportal/fileDir/420/resource/cms/2025/05/img_pc_site/2025052614255029095.jpg') center center/cover no-repeat;
  filter: brightness(0.82) blur(0.5px);
  z-index: 1;
}
.ir-banner-title {
  position: relative;
  z-index: 2;
  font-size: 2.1rem;
  color: #fff;
  font-weight: bold;
  margin-left: 3.5rem;
  margin-bottom: 2.2rem;
  letter-spacing: 2px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

/* 主体布局 */
.ir-main {
  display: flex;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  gap: 2.5rem;
}
.ir-left {
  flex: 0 0 220px;
}
.ir-content {
  flex: 1 1 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 2.2rem 2.5rem 2.5rem 2.5rem;
  min-height: 480px;
}
.ir-content-title {
  font-size: 2rem;
  text-align: center;
  color: #222;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.ir-content-list {
  margin-bottom: 2.2rem;
}
.ir-content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.ir-content-item {
  display: block;
  padding: 1.1rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1.08rem;
  transition: background 0.2s;
}
.ir-content-item:last-child {
  border-bottom: none;
}
.ir-content-link {
  flex: 1 1 0;
  min-width: 0;
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.25rem;
  font-weight: 500;
}
.ir-content-link:hover {
  color: #005ecb;
  text-decoration: none;
}
.ir-content-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.98rem;
  color: #888;
  margin-top: 0.1em;
}
.ir-content-date {
  color: #888;
  font-size: 1rem;
  white-space: nowrap;
}
.ir-content-attachment {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.ir-attachment-btn {
  color: #1677ff;
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  cursor: pointer;
  border: 1px solid #e0e6ed;
  border-radius: 4px;
  padding: 0.18em 0.7em 0.18em 0.5em;
  background: #f7faff;
  transition: color 0.2s, border 0.2s, background 0.2s;
}
.ir-attachment-btn img {
  margin-right: 0.2em;
}
.ir-attachment-btn:hover {
  color: #005ecb;
  border-color: #1677ff;
  background: #eaf3ff;
}
@media (max-width: 600px) {
  .ir-content-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3em;
  }

  .ir-content-attachment {
    width: 100%;
    justify-content: flex-end;
    margin-top: 0.2em;
  }
}
/* 分页区块可复用新闻分页样式 */
.ir-pagination {
  margin-top: 1.5rem;
}

/* 分页区块样式（仅保留图片风格） */
.easysite-page-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    margin: 2rem 0 1.5rem 0;
    font-size: 1.2rem;
}
.easysite-page-wrap a,
.easysite-page-numbers a {
    display: inline-block;
    min-width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    margin: 0 0.2rem;
    background: none;
    border: none;
    border-radius: 0;
    color: #757575;
    font-size: 1.2rem;
    font-weight: normal;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    box-sizing: border-box;
}
.easysite-page-numbers a.active,
.easysite-page-numbers a[SPECIFICPAGENUM_ACTIVE] {
    background: #0a6ed1;
    color: #fff;
    font-weight: bold;
    border-radius: 0;
    box-shadow: none;
}
.easysite-page-wrap a.disabled,
.easysite-page-wrap a[disabled],
.easysite-page-numbers a.disabled {
    color: #bdbdbd;
    background: none;
    cursor: not-allowed;
}
.easysite-page-wrap a:hover:not(.active):not([disabled]):not(.disabled),
.easysite-page-numbers a:hover:not(.active):not([disabled]):not(.disabled) {
    color: #0a6ed1;
    background: #f0f6fb;
}
.NormalRed {
    padding: 0.8rem;
    color: #0a6ed1;
    background: #f0f6fb;
    /* color: #FF0000; */
    font-size: 1.2rem;
}

@media (max-width: 900px) {
  .ir-main { flex-direction: column; gap: 1.5rem; }
  .ir-left { flex: 1 1 100%; max-width: 100%; }
  .ir-content { padding: 1.2rem 1rem; }
  .ir-banner-title { margin-left: 1.2rem; font-size: 1.3rem; }
}