@media only screen and (min-width:750px) and (max-width: 1920px) {
    .home-news {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 5vw;
    }

    .home-news-container {
        width: 90vw;
        margin: 0 auto;
        z-index: 9999;
    }

    .home-news-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* background-color: #eb6100; */
    }

    .home-news-title {
        position: relative;
        font-size: 3rem;
        font-weight: 600;
        color: #000;
        letter-spacing: .1rem;
    }

    .home-news-title::after {
        position: absolute;
        content: ' ';
        left: 0px;
        bottom: -10px;
        width: 74px;
        height: 3px;
        background-color: #eb6100;
    }

    .home-news-more {
        font-size: 1.3rem;
        color: #333;
        cursor: pointer;
    }

    .home-news-items {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
        margin-top: 20px;
    }

    .home-news-item {
        position: relative;
        display: flex;
        width: 44vw;
        justify-content: center;
        align-items: center;
        margin: 35px 0 0 0;
    }

    .home-news-img {
        display: flex;
        width: 44vw;
        height: 30vw;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .home-news-img img {
        width: 100%;
        cursor: pointer;
        transition: all 0.6s;
    }

    .home-news-img img:hover {
        transform: scale(1.2);
    }

    .home-news-headline {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 60px;
        /* background-color: #eb6100; */
        background-color: rgba(0, 0, 0, .7);
    }

    .home-news-headline-t {
        font-size: 1.3rem;
        color: #fff;
        margin-left: 15px;
    }
}


@media only screen and (max-width: 750px) {
    .home-news {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 5vw;
    }

    .home-news-container {
        width: 90vw;
        margin: 0 auto;
        z-index: 9999;
    }

    .home-news-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* background-color: #eb6100; */
    }

    .home-news-title {
        position: relative;
        font-size: 2rem;
        font-weight: bold;
        color: #000;
        margin-top: 30px;
    }

    .home-news-title::after {
        position: absolute;
        content: ' ';
        left: 0px;
        bottom: -10px;
        width: 55px;
        height: 3px;
        background-color: #eb6100;
    }

    .home-news-more {
        font-size: 1.2rem;
        color: #333;
        margin-top: 30px;
    }

    .home-news-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }

    .home-news-item {
        position: relative;
        display: flex;
        width: 90vw;
        justify-content: center;
        align-items: center;
        margin: 35px 0 0 0;
    }

    .home-news-img {
        display: flex;
        width: 90vw;
        height: 55vw;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .home-news-img img {
        width: 100%;
/*        height: 30vw;*/
        cursor: pointer;
        transition: all 0.6s;
    }

    .home-news-img img:hover {
        transform: scale(1.2);
    }

    .home-news-headline {
        display: flex;
        align-items: center;
        width: 100%;
        height: 60px;
        /* background-color: #eb6100; */
    }

    .home-news-headline-t {
        font-size: 1.3rem;
        color: #000;
        margin-top: 15px;
    }
}