/* 国际交流：无左侧栏目导航，新闻列表直接拉通整行（区别于其它内页两栏布局） */

        .inner-layout { display: block; }

        .subnav { display: none; }



        /* ===== 国际交流：编辑式日期列表（区别于新闻大图卡 / 会员动态缩略图卡） ===== */

        .panel-head { margin-bottom: 26px; }

        .ie-list { margin-top: 6px; }

        .ie-item {

            display: flex; align-items: stretch; gap: 22px; text-decoration: none;

            background: var(--bg-white); border: 1px solid var(--border-color);

            border-radius: var(--radius-md);

            padding: 22px 26px; transition: var(--transition); margin-bottom: 16px;

        }

        .ie-item:last-child { margin-bottom: 0; }

        .ie-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--accent-blue); }

        /* 日期：移入正文下方，改为小号行内样式（不再左侧竖排） */

        .ie-foot { margin-top: 14px; display: flex; align-items: center; }

        .ie-date { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); letter-spacing: 0.5px; }

        .ie-thumb {

            flex-shrink: 0; align-self: center; width: 300px; aspect-ratio: 636/380;

            border-radius: var(--radius-sm); overflow: hidden;

        }

        .ie-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }

        .ie-item:hover .ie-thumb img { transform: scale(1.06); }

        .ie-body { min-width: 0; flex: 1; display: flex; flex-direction: column; }

        .ie-title {

            font-size: 18px; font-weight: 700; color: var(--text-primary); line-height: 1.5; margin: 0;

            display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;

        }

        .ie-item:hover .ie-title { color: var(--primary-blue); }

        .ie-excerpt {

            margin-top: 7px; font-size: 13.5px; color: var(--text-secondary); line-height: 1.7;

            display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;

        }

        /* 查看详情：移到卡片最右侧，竖向居中，hover 箭头右移 */

        .ie-more {

            flex-shrink: 0; align-self: center; margin-left: 20px; padding-left: 20px;

            border-left: 1px solid var(--border-color);

            font-size: 13px; color: var(--primary-blue); text-decoration: none;

            display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;

        }

        .ie-item:hover .ie-more { gap: 10px; }



        /* 分页（由程序按总页数输出：页码为链接，禁用态为 span） */

        .news-pager { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }

        .news-pager button,

        .news-pager a,

        .news-pager span {

            display: inline-flex; align-items: center; justify-content: center;

            min-width: 40px; height: 40px; padding: 0 14px;

            border: 1px solid var(--border-color); background: var(--bg-white);

            color: var(--text-primary); border-radius: var(--radius-sm);

            cursor: pointer; font-size: 14px; text-decoration: none; transition: var(--transition);

        }

        .news-pager button:hover:not(:disabled),

        .news-pager a:hover { border-color: var(--accent-blue); color: var(--primary-blue); }

        .news-pager button.active,

        .news-pager .pager-num.active {

            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));

            color: #fff; border-color: transparent; font-weight: 600;

        }

        .news-pager button[disabled],

        .news-pager .pager-disabled { opacity: 0.45; cursor: not-allowed; }



        /* 列表无数据时的占位提示 */

        .news-empty {

            padding: 60px 20px; text-align: center; color: var(--text-secondary);

            font-size: 15px; background: var(--bg-white);

            border: 1px dashed var(--border-color); border-radius: var(--radius-sm);

        }



        @media (max-width: 980px) {

            .ie-thumb { width: 240px; }

        }

        @media (max-width: 560px) {

            .ie-item { flex-direction: column; padding: 18px; gap: 14px; }

            .ie-thumb { width: 100%; aspect-ratio: 636/380; align-self: stretch; margin-bottom: 0; }

            .ie-more { margin-left: 0; padding-left: 0; border-left: none; align-self: flex-start; }

        }
