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



        .inner-layout { display: block; }



        .subnav { display: none; }







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



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

        /* 一行三列大卡片网格 */
        .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); border-color: var(--primary-blue); }

        /* 日期：移入正文下方，改为小号行内样式（不再左侧竖排） */
        .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; object-position: center top; 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; }



        @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; }

        }
        /* 分页（由程序按总页数输出：页码为链接，禁用态为 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);



        }












