

.banner img {
    width: 100%;
}

#newsBox {
    width: 100%;
    background: url("../images/newslist_bg.png") no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 0.91rem;
}

#mainNews {
    width: 13.60rem;
    height: 5.13rem;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0.2rem;
}

#mainImg {
    width: 13.6rem;
    height: 3.4rem;
    overflow: hidden;
}

#mainImg img {
    border: none;
    width: 100%;
}

#mainIntroBox {
    width: 13.60rem;
    height: 1.73rem;
    background: url("../images/newmainintro.png") no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#mainTitle {
    overflow: hidden;
}

#mainTitle h2 {
    width: 3.42rem;
    margin: 0;
    color: rgba(29, 29, 29, 1);
    font-size: 0.24rem;
    font-family: PF-Bold;
    line-height: 0.31rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 限制为2行 */
    overflow: hidden;
}

#mainIntro {
    overflow: hidden;
}

#mainIntro p {
    width: 4.15rem;
    margin: 0;
    color: rgba(115, 115, 115, 1);
    font-size: 0.16rem;
    font-family: PF-Regular;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

#mainIntroBox a {
    font-size: 0.18rem;
    color: rgba(133, 133, 133, 1);
    font-family: PF-Medium;
}


#newsList {
    width: 13.60rem;
    min-height: 5.3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.23rem;
    overflow: hidden;
    margin-top: 0.3rem;
}

#newsList li {
    width: 4.38rem;
    height: 4.06rem;
    background: url("../images/newsf_bg.png") no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    cursor: pointer;
}

#newsList li p {
    margin: 0;
    width: 3.7rem;
    text-align: left;
}

#newsList li .newsTitle {
    margin: 0.2rem 0 0 0;
    width: 3.7rem;
    text-align: left;
    font-size: 0.24rem;
    font-family: PF-Bold;
    color: rgba(29, 29, 29, 1);
    line-height: 0.3rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 限制为2行 */
}

.newsTime {
    font-size: 0.18rem;
    color: rgba(133, 133, 133, 1);
    font-family: PF-Medium;
    line-height: 0.3rem;
    margin-top: 0.53rem !important;
}

.newsIntro {
    font-size: 0.16rem;
    color: rgba(115, 115, 115, 1);
    font-family: PF-Regular;
    margin-top: 0.31rem !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    /* 限制为2行 */
}

.newsLink {
    width: 3.7rem;
    height: 0.9rem;
    border-top: 1px solid rgba(235, 235, 235, 1);
    text-align: left;
    margin-top: 0.5rem;
    font-size: 0.18rem;
    color: rgba(133, 133, 133, 1);
    font-family: PF-Medium;
    line-height: 0.85rem;
}

.newsLink:hover {
    color: rgba(133, 133, 133, 1);
}

@media only screen and (max-width:991px) {

    #mainNews {
        width: 100%;
    }

    #mainImg {
        width: 100%;
        height: 2.5rem;
    }

    #mainImg img {
        object-fit: cover;
        height: 100%;
    }

    #mainIntroBox {
        width: 100%;
        flex-direction: column;
        height: auto;
        padding-bottom: 0.2rem;
    }

    #mainTitle {
        margin-top: 0.2rem;
    }

    #newsList {
        width: 100%;
        margin-top: 0;
    }

    #newsList li {

        padding: 0 5%;
    }

    #newsBox {
        padding: 0.2rem 0.2rem;
    }

    #newsList li {
        width: 100%;
    }

    #newsList li p {
        width: 100%;
    }

    #mainIntro p {
        margin: 0.2rem 0;
    }

    #newsList li .newsTitle {
        width: 100%;
    }
}