.main_scenic{
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #cbf6f8, #e2fdff);
    box-sizing: border-box;
}
.main1{
    width: 100%;
    height: 53.4vw;
    padding: 10px 0;
}
.main1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main2{
    width: 100%;
    height: auto;
    padding: 10px 20px 100px 20px;
}
/* 列表容器 */
.main_notice_ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

/* 单个列表项 */
.main_notice_li {
    list-style: none;
    /* 图片分割线 */
    background-image: url('../images/49.png');
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: auto;
    transition: background-color 0.3s ease;
}

.main_notice_li:hover {
    background-color: rgba(0, 168, 198, 0.05);
}

/* 链接重置与布局 */
.main_notice_li a {
    display: flex;
    justify-content: space-between; /* 内容左侧，日期右侧 */
    align-items: flex-start; /* 顶部对齐，防止多行文本时日期居中 */
    text-decoration: none;
    padding: 15px 0;
    cursor: pointer;
    gap: 12px;
}

/* 资讯标题/内容 */
.main_notice_li p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 4px; /* 给旋转方块留出空间，避免被 overflow 裁剪 */
}

/* 标题前的旋转方块装饰 */
.main_notice_li p::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #95dce2;
    transform: rotate(45deg);
    vertical-align: middle;
    margin-right: 8px;
}

/* 日期标签 */
.main_notice_li span {
    flex-shrink: 0; /* 防止日期被压缩换行 */
    font-size: 14px;
    color: #999;
    white-space: nowrap;
    padding-top: 3px; /* 微调与首行文字的视觉对齐 */
}

