.newsShow {
    background: #eee;
    display: flex;
}

.newsShow .newsShowLeft a img {
    width: 650px;
    height: 380px;
    max-width: 100%;
    max-height: 100%;
}

.newsShow .newsShowRight {
    padding: 10px 40px 20px 40px;
    overflow: auto;
    width: 850px;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.newsShow .newsShowRight h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newsShow .newsShowRight h3 a {
    font-size: 22px;
    font-weight: bold;
    color: rgb(51, 51, 51);

}

.newsShow .newsShowRight h3 a:hover {
    font-style: normal;
    font-weight: bold;
    /* color: #0076c2; */
    color: #ff7019;
    text-decoration: none;
}

.newsShow .newsShowRight p {
    padding: 0;
    margin: 0;
    margin-top: 5px;
    line-height: 24px;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    color: #777777;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newsTime {
    padding: 0;
    margin: 0;
    margin-top: 5px;
    height: 30px;
    line-height: 30px;
}

.newsTime span {
    padding: 0;
    margin: 0;
    display: inline-block;
    font-family: Arial;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    color: #BBB;
    text-decoration: none;
    line-height: 30px;
}

.swiper-button-prev {
    left: auto;

}

.swiper-button-prev,
.swiper-button-next {
    transition: all .4s linear;
    top: 98%;
    right: 50%;
    height: 30px;
    font-size: 10px;
    background-image: none;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #e1e1e1;
    color: #000;
}

.swiper-button-next {
    right: 45%;
}


.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: 'next';
    font-size: 18px;
    font-weight: bold;

}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 18px;
    font-weight: bold;

}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #fff;
    background-color: #e97730;
}



@media screen and (max-width: 768px) {
    .newsShow {
        display: flex;
        flex-direction: column;
    }

    .newsShow .newsShowRight {
        padding: 5px;
    }

    .swiper-button-prev {
        right: 54%;
    }

    .swiper-button-next {
        right: 40%;
    }

}