/* 国际交流：无左侧栏目导航，新闻列表直接拉通整行（区别于其它内页两栏布局） */

        .inner-layout { display: block; }

        .subnav { display: none; }



        /* ===== 国际交流：编辑式日期列表（区别于新闻大图卡 / 会员动态缩略图卡） ===== */

        .panel-head { margin-bottom: 26px; }

        /* 1 行 3 列大卡片网格 */
        .ie-list {
            margin-top: 6px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            align-items: stretch;
        }

        .ie-item {

            display: flex; flex-direction: column; text-decoration: none;

            background: var(--bg-white); border: 1px solid var(--border-color);

            border-radius: var(--radius-md);

            overflow: hidden; transition: var(--transition); position: relative;

        }

        .ie-item:hover { box-shadow: var(--shadow-md); }

        /* 日期：移入正文下方，改为小号行内样式（不再左侧竖排） */

        .ie-foot { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }

        .ie-date { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); letter-spacing: 0.5px; }

        .ie-thumb {

            width: 100%; aspect-ratio: 636/380; overflow: hidden; display: block;

            border-radius: var(--radius-md) var(--radius-md) 0 0; transform: translateZ(0);

            /* 缺图占位：单层 LOGO + 蓝渐变（与其他列表页一致） */
            background-color: #0a326c;
            background-image: url("../images/cecc-logo-white.png"), linear-gradient(135deg, #0a326c 0%, #14529c 60%, #4fa3ff 100%);
            background-repeat: no-repeat, no-repeat;
            background-position: center, center;
            background-size: 55% auto, cover;

        }

        .ie-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; transform-origin: center center; backface-visibility: hidden; }

        .ie-item:hover .ie-thumb img { transform: scale(1.06); }

        .ie-body { min-width: 0; flex: 1; display: flex; flex-direction: column; padding: 18px 20px 20px; }

        .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 {

            position: absolute; right: 20px; bottom: 20px;

            font-size: 13px; color: var(--primary-blue); text-decoration: none;

            display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;

            opacity: 0; transform: translateX(6px);

            transition: opacity 0.25s ease, transform 0.25s ease;

        }

        .ie-item:hover .ie-more { opacity: 1; transform: translateX(0); }

        .ie-item:hover .ie-more { gap: 10px; }



        /* 分页（与全站统一） */

        .news-pager { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }

        .news-pager button {

            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; transition: var(--transition);

        }

        .news-pager button:hover { border-color: var(--accent-blue); color: var(--primary-blue); }

        .news-pager button.active { background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue)); color: #fff; border-color: transparent; }

        .news-pager button[disabled] { opacity: 0.45; cursor: not-allowed; }



        @media (max-width: 980px) {

            .ie-list { grid-template-columns: repeat(2, 1fr); gap: 18px; }

        }

        @media (max-width: 560px) {

            .ie-list { grid-template-columns: 1fr; gap: 16px; }

            .ie-body { padding: 16px 16px 18px; }

        }
