a:link, a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.news {
    padding: 0px 10px 10px -20px;    /* 原负内边距可能存在风险，此处保留未改 */
    border: 0px solid #000;
    margin-bottom: 10px;
    font-size: 9.2pt;
    text-align: center;
}

.news .title {
    display: inline-block;
    width: 18px;
    margin-top: 60px;
    text-align: center;
}

.news .content {
    width: 100%;
}

.news .content .newsIcon {
    background: #B0C4DE;
}

.news .content .newsIcon .icon {
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
    width: 120px;
    color: #000;
    cursor: pointer;
    font-size: 14pt;
}

.news .content .newsIcon .icon.active {
    background: #fff;
}

.news .content .newsIcon .icon i {
    font-size: 14pt;
}

.news .content .newsList {
    margin-top: 10px;
}

.news .content .newsList.hide {
    display: none;
}

.news .content .list {
    margin-right: 0px;
    /* --- 新增 Flex 布局 --- */
    display: flex;
    flex-wrap: wrap;
    padding: 0;          /* 去除 ul 默认内边距 */
    margin: 0;           /* 去除 ul 默认外边距 */
    list-style: none;    /* 去除项目符号 */
}

.news .content .list li {
    line-height: 20px;
    /* 移除原 width:100% 和 display:inline-block */
    width: 50%;                     /* 每行两个，各占一半 */
    padding-right: 2px;
    padding-left: 2px;
    box-sizing: border-box;         /* 内边距包含在宽度内 */
    margin: 0;                      /* 清除默认外边距 */
    display: flex;                  /* 内部使用 Flex 布局 */
    align-items: flex-start;        /* 顶部对齐 */
    text-align: left;
}

.news .content .list li a {
    /* 移除原 width:35%; white-space: nowrap; */
    flex: 1;                        /* 占据剩余宽度 */
    overflow: hidden;
    display: -webkit-box;            /* 多行省略关键 */
    -webkit-line-clamp: 2;           /* 显示两行 */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;             /* 允许换行 */
    color: #000;
    text-decoration: none;
}

.news .content .list li a:hover {
    text-decoration: underline;
}

.news .content .list li span.line {
    width: 6px;
    height: 20px;
    display: inline-block;
    vertical-align: -1px;
    background: #B0C4DE;
    margin-right: 16px;
}

.news .content .list li span.time {
    display: inline-block;
    text-align: right;
    color: #000;
    width: 70px;          /* 固定宽度，便于对齐 */
    flex-shrink: 0;       /* 防止被压缩 */
}

.news .content .newsList .newsListMore {
    width: 50%;
    text-align: right;
    display: block;
    color: #000;
}