       
 /* 外层容器 三张并排 */
        .pic-wrap {
            display: flex;
            gap: 15px;
            max-width: 1300px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        /* 单个图文盒子 */
        .pic-item {
            flex: 1;
            min-width: 380px;
            position: relative;
            border-radius: 4px;
            overflow: hidden;
        }
        /* 图片样式 */
        .pic-item img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
        }
        /* 底部半透明标题栏 纯蓝色渐变 */
        .pic-title {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            background: rgba(18, 72, 160, 0.60);
            color: #fff;
            font-size: 13px;
            padding: 18px 25px;
            line-height: 1.6;
        }
.kytext{
       width: 400px;    /* 必须设宽度 */
    height: 60px;
    
    margin: 0 auto;  /* 水平居中核心 */
      text-align:center;
font-size: 30px;
   
}
.kytext a{
font-size: 30px;
}


 /* 外层容器 两列标题列表 */

        /* 标题居中 */
        .title-title {
            text-align: center;
            font-size: 42px;
            color: #1a3c90;
            font-weight: bold;
            margin-bottom: 30px;
        }

        /* 自适应容器：自动两列 / 自动一列 */
        .title-list {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
            gap: 20px;
        }

        /* 公告项 */
        .title-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #ccc;
        }

        /* 日期标签 */
        .title-date {
            width: 60px;
            height: 60px;
            background: #0e6f5c;
            color: white;
            text-align: center;
            margin-right: 15px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .title-day {
            font-size: 22px;
            font-weight: bold;
            color: #eee;
        }

        .title-month {
            font-size: 12px;
            background: white;
            color: #1a3c90;
        }

        /* 公告标题 */
        .title-text a{
            font-size: 18px;
            color: #333;
        }