/* 顶部大图与标题 */
.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('/uiFramework/commonResource/image/2025060617274294931.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);
}
/* 新闻卡片核心样式 */
.news-list-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 1.5rem 0;
    max-width: 1200px;
    margin: 2rem auto;
}
.news-item {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border: 1px solid #f0f0f0;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.news-item-img-box {
    width: 100%;
    height: 140px;
    overflow: hidden;
}
.news-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.news-item:hover .news-item-img {
    transform: scale(1.05);
}
.news-item-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.news-item-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}
.news-item-title {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}
.news-item-summary {
    font-size: 0.95rem;
    color: #555;
    margin: 0 0 1rem 0;
    line-height: 1.6;
    flex-grow: 1;
}
.news-item-detail-btn {
    font-size: 0.95rem;
    padding: 0.4rem 0.9rem;
    display: inline-block;
    border: 1px solid #1a237e;
    color: #1a237e;
    text-decoration: none;
    border-radius: 0.3rem;
    align-self: flex-start;
    transition: all 0.2s;
}
.news-item-detail-btn:hover {
    background-color: #1a237e;
    color: #fff;
}
@media (max-width: 900px) {
    .news-list-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-item-img-box {
        height: 120px;
    }
}
@media (max-width: 600px) {
    .news-list-container {
        grid-template-columns: 1fr;
    }
    .news-item-img-box {
        height: 100px;
    }
}

/* 分页区块样式（仅保留图片风格） */
.easysite-page-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.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;
}