#news {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

#news > .title {
    margin-bottom: 2rem;
}

#news > .title > .en {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: bold;
}

#news > .title > .cn {
    font-size: 1.5rem;
}

#news > .main {
    margin-bottom: 4rem;
}

#news > .main > .item {
    display: flex;
    align-items: center;
    border-top: 1px solid black;
    padding: 1.5rem 0
}

#news > .main > .item:last-child {
    border-bottom: 1px solid black;
}

#news > .main > .item > .time {
    font-size: 1rem;
    font-weight: bold;
    margin-right: 1rem;
}

#news > .main > .item > .title {
    font-size: 1rem;
}

#news > .main > .item > .cover {
    display: none;
    width: 300px;
    height: 100px;
    object-fit: cover;
    transition: transform 0.3s;
}

#news > .main > .item > .cover:hover {
    /* 放大 */
    transform: scale(1.05);
}

#news > .main > .item > .btn {
    height: 40px;
    width: 40px;
    border-radius: 999px;
    background-color: #fff;
    color: black;
    display: none;
    justify-content: center;
    align-items: center;
}

#news > .more-btn {
    border: 2px solid black;
    border-radius: 999px;
    padding: 0.5rem 2rem;
    font-weight: bold;
    font-size: 1.20rem;
}

#news > .more-btn:hover {
    background-color: black;
    color: white;
}

@media (min-width: 1024px) {
    #news {
        margin-top: 6rem;
        margin-bottom: 6rem;
    }

    #news > .title {
        margin-bottom: 4rem;
    }

    #news > .title > .en {
        font-size: 4.5rem;
        margin-bottom: 1rem;
    }

    #news > .title > .cn {
        font-size: 1.5rem;
    }

    #news > .main > .item {
        padding: 33px;
        justify-content: space-between;
    }

    #news > .main > .item > .time {
        font-size: 1.25rem;
        margin-right: 0;
    }

    #news > .main > .item > .title {
        font-size: 1.25rem;
        width: 50%;
    }

    #news > .main > .item > .cover,
    #news > .main > .item > .btn {
        display: flex;
    }
}