.news_content {
    padding-top: .5rem;
    padding-bottom: 1rem;
}
.content_item {
	display: flex;
	margin: .25rem;
    flex-direction: row;
    gap: .1rem;
    padding-bottom: .6rem;
    padding-top: .4rem;
    border-bottom: 1px solid #CCCCCC;
    align-items: center;
    cursor: pointer;
}
.content_item:hover {
    border-bottom: 1px solid #066DCC;
}

.left_img {
    width: 4rem;
    height: 3rem;
    padding-right: .2rem;
    transform: .3s;
}

.right_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.right_text {
    width: 8.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 .5rem;
}

.time_icon {
    display: inline-flex;
    align-items: center;
    color: #9F9F9F;
    padding-bottom: .2rem;
}

.time_icon img{
    width: .2rem;
    height: .2rem;
    margin-right: .1rem;
}


.new_title {
    width: 100%;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: .23rem;
    color: #222222;
    text-align: left;
    font-style: normal;
    text-transform: none;
    padding-bottom: .2rem;
    padding-top: .1rem;
}

.content_item:hover .new_title {
    color: #066DCC;
}

.new_cont {
    width: 100%;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-size: .2rem;
    color: #666666;
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.5em; /* 设置行高 */
    text-overflow: ellipsis;
}

.detail_jump {
    height:.6rem;
    width: .6rem;
    background-color: #CCCCCC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.7rem;
}

.detail_jump img{
    height: auto;
    width: .1rem;
    /* background-color: #ffffff; */
}

.content_item:hover .detail_jump {
    background-color: #066DCC;
}

@media (max-width: 1024px) {
	.content_item {
		flex-direction: column;
	}
	.content_item{
	    margin: 0;
	}
    .left_img, .right_block {
        flex: 1;
        padding: 10px;
        width: 100%;
    }
    .detail_jump{
        margin-left: 0;
    }
}
