.showImg {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}
.showImg img{
    width: 100%;
    object-fit: cover;
}

.newsList {
    width: 1200px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

.newsList-left {
    width: 250px;
    margin-right: 40px;
    flex: none;
}

.newsList-left__top {
    height: 80px;
    width: 250px;
    color: #FFF;
    background: #dc6301;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 80px;
    margin-bottom: 2px;
}

.newsList-left__bot {
    overflow: hidden;
    width: 250px;
    background: #f4f7ff;
}

.newsList-left__bot li {
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid #e6e5e5;
    overflow: hidden;
    height: 60px;
    line-height: 60px;
    outline: none;
    transition: all 0.4s ease;
}

.newsList-left__bot li a {
    display: block;
    padding-left: 25px;
    color: #222;
}

.newsList-left__bot li:hover,
.newsList-left__bot li.active {
    background: #dc6301;
    font-size: 16px;
}

.newsList-left__bot li:hover a,
.newsList-left__bot li.active a {
    color: #fff;
}

.newsList-right {
    background: #fff;
    width: 910px;
    flex: auto;
    min-height: 500px;
}

.newsList-rightTop {
    border-bottom: 1px solid #ddd;
    height: 45px;
    line-height: 43px;
    padding-bottom: 0px;
    display: flex;
    justify-content: space-between;
}

.newsList-rightTop h2 {
    border-bottom: 2px solid #dc6301;
    padding: 0 10px;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    color: #dc6301;
}

.bread-crumb span {
    font-size: 14px;
    color: #333;
    text-align: center;
    padding: 0 5px;
    cursor: default;
}

.bread-crumb a {
    font-size: 12px;
}

.newsList-rightBot {
    padding: 10px;
}

.newsList-rightBot__item {
    height: 55px;
    line-height: 55px;
    background: url(../image/xb.png) center left no-repeat;
    border-bottom: 1px dashed #dcdcdc;
    font-size: 15px;
    padding-left: 15px;
    display: flex;
    justify-content: space-between;
}
.newsList-rightBot__item a{
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

.newsList-rightBot__item:hover {
    text-indent: 8px;
    transition: 0.5s;
}

.newsList-rightBot__item:hover a {
    color: #dc6301;
}

.newsList-rightBot__item .news-list-item__date {
    flex: 0 0 auto;
    color: #999999;
    margin-right: 2px;
}
@media (max-width: 768px) {
    .newsList {
        width: 100%;
        margin: 0;
        padding: 15px 15px 0;
        box-sizing: border-box;
    }
    .newsList-left {
        display: none;
    }
    .newsList-right {
        width: 100%;
    }
    .newsList-rightTop {
        height: auto;
        display: block;
    }
    .newsList-rightBot__item:hover {
        text-indent: 0;
        transition: none;
    }
}
