.tit_style{
  color:#409eff !important;
}
/* 日期容器样式 */
.date-box {
    display: flex;
    flex-direction: column; /* 垂直排列数字和月份 */
    align-items: center;    /* 水平居中 */
    justify-content: center;/* 垂直居中 */
    width: 80px;            /* 宽度 */
    height: 90px;           /* 高度 */
    background-color: #999; /* 灰色背景，参考图片颜色 */
    color: #fff;            /* 白色文字 */
    border-radius: 8px;     /* 圆角，可选 */
    text-align: center;
    margin-right: 40px;     /* 与右侧文字的间距 */
    flex-shrink: 0;         /* 防止在移动端被压缩 */
}

/* 大号数字样式 (26) */
.date-box .day {
    font-size: 36px;        /* 大字号 */
    font-weight: bold;      /* 加粗 */
    line-height: 36PX;
    display: block;
}

/* 小号月份样式 (2026-02) */
.date-box .month {
    font-size: 14px;        /* 小字号 */
    line-height: 14PX;
    margin-top: 10px;        /* 与上方数字的间距 */
    display: block;
    opacity: 0.9;           /* 稍微降低透明度，增加层次感 */
}

/* 确保父级链接是 Flex 布局，让日期和文字并排 */
.news_con li a {
    display: flex;
    align-items: center;
}









































