.news-warp {
    padding: 60px 0;
    background: #ffffff;
}

.news-top {
    text-align: center;
    margin-bottom: 40px;
}

    .news-top span {
        display: inline-block;
        color: #fc0000;
        font-size: 14px;
        line-height: 22px;
        font-weight: bold;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .news-top h1 {
        margin: 0 0 14px 0;
        font-size: 2.5rem;
        line-height: 1.2;
        color: #222222;
        font-weight: 700;
    }

    .news-top p {
        margin: 0 auto;
        max-width: 720px;
        color: #666666;
        font-size: 16px;
        line-height: 30px;
    }

.news-list-box {
    width: 100%;
}

.news-list-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #eeeeee;
}

    .news-list-item:first-child {
        padding-top: 0;
    }

.news-list-img {
    display: block;
    width: 360px;
    flex: 0 0 360px;
    border-radius: 14px;
    overflow: hidden;
}

    .news-list-img img {
        display: block;
        width: 100%;
        height: 240px;
        object-fit: cover;
        transition: all .35s ease;
    }

.news-list-item:hover .news-list-img img {
    transform: scale(1.05);
}

.news-list-info {
    width: calc(100% - 390px);
}

.news-list-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999999;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 12px;
}

    .news-list-date i {
        color: #fc0000;
    }

.news-list-info h2 {
    margin: 0 0 14px 0;
    font-size: 1.7rem;
    line-height: 1.4;
    font-weight: 700;
}

    .news-list-info h2 a {
        color: #222222;
        text-decoration: none;
        transition: all .3s ease;
    }

        .news-list-info h2 a:hover {
            color: #fc0000;
        }

.news-list-info p {
    margin: 0 0 18px 0;
    color: #666666;
    font-size: 15px;
    line-height: 28px;
}

.news-list-more {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #fc0000;
    border-radius: 24px;
    color: #fc0000;
    font-size: 14px;
    text-decoration: none;
    transition: all .3s ease;
}

    .news-list-more:hover {
        background: #fc0000;
        color: #ffffff;
    }

.news-page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 36px;
}

    .news-page a,
    .news-page span {
        display: inline-block;
        min-width: 42px;
        height: 42px;
        line-height: 42px;
        text-align: center;
        border-radius: 50%;
        border: 1px solid #e5e5e5;
        background: #ffffff;
        color: #666666;
        font-size: 14px;
        text-decoration: none;
        transition: all .3s ease;
    }

        .news-page a:hover {
            border-color: #fc0000;
            color: #fc0000;
        }

        .news-page a.active {
            background: #fc0000;
            border-color: #fc0000;
            color: #ffffff;
        }

        .news-page a.disabled {
            color: #cccccc;
            border-color: #eeeeee;
            pointer-events: none;
            cursor: not-allowed;
        }

@media screen and (max-width:991px) {
    .news-warp {
        padding: 45px 0;
    }

    .news-top {
        margin-bottom: 30px;
    }

        .news-top h1 {
            font-size: 2rem;
        }

        .news-top p {
            font-size: 15px;
            line-height: 28px;
        }

    .news-list-item {
        flex-wrap: wrap;
        gap: 18px;
        padding: 24px 0;
    }

    .news-list-img {
        width: 100%;
        flex: 0 0 100%;
    }

        .news-list-img img {
            height: auto;
        }

    .news-list-info {
        width: 100%;
    }

        .news-list-info h2 {
            font-size: 1.35rem;
        }
}

@media screen and (max-width:767px) {
    .news-warp {
        padding: 35px 0;
    }

    .news-top h1 {
        font-size: 1.65rem;
        line-height: 1.3;
    }

    .news-top p {
        font-size: 14px;
        line-height: 24px;
    }

    .news-list-item {
        gap: 14px;
        padding: 20px 0;
    }

    .news-list-info h2 {
        font-size: 1.15rem;
        line-height: 1.45;
        margin-bottom: 10px;
    }

    .news-list-info p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 14px;
    }

    .news-list-more {
        padding: 9px 20px;
        font-size: 13px;
    }

    .news-page {
        gap: 8px;
        padding-top: 24px;
    }

        .news-page a,
        .news-page span {
            min-width: 38px;
            height: 38px;
            line-height: 38px;
            font-size: 13px;
        }
}
