/*.showImg {*/
/*    width: 100%;*/
/*    max-height: 500px;*/
/*    overflow: hidden;*/
/*}*/
.showImg{
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
}

.showImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.articleInfo{
    min-height: 400px;
}

.articleInfo-head{
    text-align: center;
    border-bottom: 1px solid #cccccc;
}

.articleInfo-head div{
    padding: 10px 0;
    font-size: 14px;
}

.articleInfo-body{
    padding-top: 20px;
}

.newsList {
    width: 1200px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

.newsList-left {
    width: 290px;
    margin-right: 40px;
    flex: none;
    height: 593px;
}

.newsList-left__top {
    /*height: 80px;*/
    width: 290px;
    box-sizing: border-box;
    color: #FFF;
    background: rgb(64, 158, 255);
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    padding: 10px;
    /*line-height: 80px;*/
    /*margin-bottom: 2px;*/
}

.newsList-left__bot {
    overflow: hidden;
    width: 250px;
    /*background: #f4f7ff;*/
    padding: 20px 10px 12px;
    box-sizing: border-box;
}

.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;
    padding: 5px 10px;
    font-size: 14px;
    margin-top: 10px;
}
.newsList-left__bot li:first-child{
    margin-top: 0px;
}

.newsList-left__bot li a {
    display: block;
    /*padding-left: 25px;*/
    color: #222;
}

.newsList-left__bot li:hover,
.newsList-left__bot li.active {
    background: rgb(64, 158, 255);
    font-size: 14px;
}

.newsList-left__bot li:hover a,
.newsList-left__bot li.active a {
    color: #fff;
}

.newsList-right {
    background: #fff;
    width: 870px;
    flex: auto;
    min-height: 500px;
}

.newsList-rightTop {
    /*border-bottom: 1px solid #ddd;*/
    height: 45px;
    line-height: 43px;
    padding-bottom: 0px;
    margin-bottom: 15px;
    /*display: flex;*/
    /*justify-content: space-between;*/
}

.newsList-rightTop h2 {
    border-bottom: 2px solid #0c80e6;
    padding: 0 10px;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    color: #0c80e6;
}

.bread-crumb{
    float: right;
}

.bread-crumb span {
    font-size: 14px;
    color: #333;
    text-align: center;
    padding: 0 5px;
    cursor: default;
}

.bread-crumb a {
    font-size: 12px;
}
.newsList-rightTitle{
    display: none;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #015198;
    border-bottom: 3px solid #015198;
    padding: 5px;
}
.article-attach-container {
    height: 52px;
    line-height: 50px;
    border-top: 1px dashed #ccc;
    padding-top: 20px;
}
.article-attach-item {
    float: left;
    padding: 0 10px;
    background: #f6f6f6;
    border: 1px solid #ccc;
}
.article-attach-icon {
    font-size: 22px;
    padding: 5px;
}
.article-attach-name {
    display: inline-block;
    width: 400px;
}
.article-attach-item > a + a {
    margin-left: 10px
}
@media (max-width: 768px) {
    .showImg{
        width: calc(100% + 30px);
        margin-left: -15px;
        height: 126px;
    }
    .newsList {
        width: 100%;
        margin: 0;
        /*padding: 15px 15px 0;*/
        box-sizing: border-box;
    }
    .newsList-left {
        display: none;
    }
    .newsList-right {
        width: 100%;
    }
    .bread-crumb{
        float: left;
    }
    .newsList-rightTop {
        height: auto;
        display: block;
        overflow: hidden;
        border-bottom: 1px solid #ddd;
    }
    .newsList-rightBot__item:hover {
        text-indent: 0;
        transition: none;
    }
    .newsList-rightTitle{
        display: block;
    }
}