.newsWrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.newsLeft{
    width: 400px;
}
.newsImg{
    padding-left: 30px;
    box-sizing: border-box;
}
.leftNewsWrap{
    margin-top: 20px;
	height: 2000px;
	overflow-y: auto;
	overflow-x: hidden;
}
.newsItem{
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e6e6e6;
    cursor: pointer;
}
.newsImg img{
    width: 356px;
    height: 203px;
    object-fit: cover;
}
.newsItem .newsTitle{
    padding-left: 30px;
    position: relative;
    font-size: 20px;
    margin-top: 20px;
}
.newsItem .newsTitle.isSelect{
    color: #1778D6;
}
.newsItem .newsTitle::after{
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    left: 6px;
    top: 10px;
    border-radius: 50%;
    background: #000;
}
.newsRight{
    width: 900px;
}
.mainTitle{
    font-size: 40px;
    color: #0C0D0E;
}
.subInfo{
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #C4C4C4;
    font-size: 20px;
    color: #7C7676;
}
.newsContent{
    margin-top: 36px;
	height: 2000px;
	overflow-y: auto;
}

.newsContent p{
	padding: 20px;
	line-height: 180%;
	font-size: 18px;
}

.newsContent p img{
	width: 100%;
	overflow: auto;
}



.downWrap {
    width: 100%;
    justify-content: space-between;
}

.downItem {
    display: flex;
    padding: 20px;
    box-sizing: border-box;
    border-bottom: 1px dashed #BDBDBD;
	overflow:hidden;
}
.downImg{
    width: 200px;
    height: 120px;
}
.downImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.downDetail{
    margin-left: 16px;
}
.downTitle{
    color: #000000;
    font-size: 20px;
    margin-bottom: 10px;
}

.downTitle a{
    color: #000000;
    font-size: 18px;
	text-decoration: none;
}

.downNumber{
    padding-left: 20px;
    background: url(../icon/downQue.png) no-repeat left center;
    background-size: 16px 16px;
    font-size: 12px;
    color: #999999;
    margin-bottom: 6px;
    font-size: 14px;
}

.downTime{
    padding-left: 20px;
    background: url(../icon/downTime.png) no-repeat left center;
    background-size: 16px 16px;
    font-size: 12px;
    color: #999999;
    font-size: 14px;
}

.downNumber span,.downTime span{
    color: rgb(49,122,228);
}
.downBtn{
    width: 200px;
    height: 32px;
    margin-top: 10px;
    text-align: center;
    line-height: 32px;
    color: #ffffff;
    border-radius: 5px;
    font-size: 12px;
    background: #333;
    cursor: pointer;
}

.downBtn a{
    color: #ffffff;
	text-decoration: none;
    cursor: pointer;
}


@media screen and (max-width: 812px) {
    .newsLeft{
        width: 100%;
    }
    .newsItem .newsImg img{
        width: 100%;
        height: auto;
    } 
    .newsRight{
        display: none;
    }
}