a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    display: block;
}

.container1 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
}


/* =========================
           NEWS区域
        ========================== */
.news-section {
    padding: 90px 0 120px;
    background: #fff;
}

.section-title1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 70px;
    color: #1f2340;
}

/* 新闻列表 */
.news-list {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 10px 10px;
    border-bottom: 1px solid #b9b9b9;
    transition: 0.3s;
}

.news-item:hover {
    opacity: 0.7;
}

/* 日期 */
.news-date {
    min-width: 180px;
    font-size: 24px;
    font-weight: 800;
    color: #1f2340;
}

/* 标题 */
.news-title {
    font-size: 24px;
    font-weight: 800;
    color: #1f2340;
}

/* 空白行 */
.empty-line {
    height: 50px;
    border-bottom: 1px solid #b9b9b9;
}


/* =========================
           移动端
        ========================== */
@media (max-width: 900px) {
    .section-title1 {
        font-size: 44px;
        margin-bottom: 40px;
    }

    .news-list {
        max-width: 100%;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px 0;
    }

    .news-date {
        font-size: 20px;
    }

    .news-title {
        font-size: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col {
        padding-left: 0;
    }

    .footer-col::before {
        display: none;
    }
}