.main-cont {
    display: inherit;
    justify-content: inherit;
    padding: 0.4rem 0 0rem;
}

.list-inline-item {
    display: inline-block;
    min-width: 120px;
    text-align: center;
}

.news-list {
    width: 100%;
}
.news-item {
    float: left;
    width: 31.875%;
    padding-bottom: .6rem;
    margin-right: 2.1875%;
    margin-bottom: .6rem;
	box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}
.news-item:nth-child(3n) {
    margin-right: 0;
}
.news-pic {
    width: 100%;
    overflow: hidden;
}
.news-pic img {
    display: block;
    width: 100%;
    -webkit-transition: transform .3s ease-in-out;
    -ms-transition: transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
}
.news-text {
    padding: .4rem .1rem 0;
}
.news-text,
.news-title,
.news-desc,
.news-more {
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.news-title {
    height: 64px;
    font-weight: bold;
    font-size: 18px;
    line-height: 32px;
    color: #313131;
	text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-desc {
    width: 98%;
    max-width: 100%;
    height: 72px;
    margin-bottom: .7rem;
    font-size: 14px;
	text-align: center;
    line-height: 24px;
    color: #535353;
    overflow: hidden;
}
.news-more {
    display: block;
    width: 115px;
    height: 35px;
	text-align: center;
    font-size: 14px;
    line-height: 33px;
    color: #959595;
	margin:0px auto;
    text-align: center;
    border: 1px solid #959595;
}
.news-more:hover {
    color: #fff;
    background-color: #00a0e8;
    border-color: #00a0e8;
}
.news-pic:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.news-text a:first-child:hover .news-title,
.news-text a:first-child:hover .news-desc {
    color: #00a0e8;
}
/* .news-title:hover,
.news-desc:hover {
    color: #00a0e8;
} */
/* .news-item:hover .news-text {
    background-color: #e71a3b;
}
.news-item:hover .news-title,
.news-item:hover .news-desc,
.news-item:hover .news-more {
    color: #fff;
} */
@media (max-width: 992px){
    .news-item,
    .news-item:nth-child(3n) {
        width: 48.90625%;
        margin-right: 2.1875% !important;
    }
    .news-item:nth-child(2n) {
        margin-right: 0 !important;
    }
}
@media (max-width: 768px){
    .news-item {
        width: 100% !important;
        padding: 0 .3rem .6rem .3rem;
        margin-right: 0 !important;
    }
}