/* news左侧 */

.news_left {
    width: 950px;
    /* height: auto; */
    /* height: 500px; */
    /* background-color: #ccc; */
    margin-top: 10px;
}
.news_right {
    width: 240px;
    margin-top: 50px;
}

.news_left.news_page_left {
    margin-top: 80px;
}
.news_right.news_page_right {
    margin-top: 0;
}



/* 搜索 */
.search_box {
    margin: 38px 0 40px;
    width: 220px;
    border: 1px solid #d1d1d1;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    overflow: hidden;
}
.search_box input {
    width: 150px;
    height: 36px;
    border: none;
    -webkit-border-radius: 18px 0 0 18px;
    border-radius: 18px 0 0 18px;
    padding-left: 20px;
    background-color: rgba(0,0,0,0);
    line-height: 36px;
}
.search_box span {
    width: 30px;
    height: 30px;
    display: block;
    /* background: #d70c19; */
    color: #d1d1d1;
    font-weight: normal;
    line-height: 30px;
    text-align: center;
    font-size: 25px;
    margin: 3px 8px 0 5px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
}
.search_box:hover, .search_box.active {
    border: 1px solid #d70c19;
}
.search_box:hover span, .search_box.active span {
    color: #b81c25 !important;
}






/* 列表 */
.news_list {
    width: 850px;
    overflow: hidden;
}
.news_list li {
    width: 100%;
    /* height: 190px; */
    padding-top: 20px;
    overflow: hidden;
}
.news_list li .news_list_href {
    display: block;
    width: 100%;
    background-color: #ffc;
    cursor: pointer;
}
.news_list li .list_img {
    width: 252px;
    height: 140px;
    background-color: #fafafa;
    margin-top: 20px;
    font-size: 26px;
    line-height: 140px;
    text-align: center;
    color: #666;
}
.news_list li .list_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.list_content {
    width: 560px;
    /* padding-top: 20px; */
    position: relative;
    border-top: 1px dotted #d7d7d7;
}
.news_list li:first-child .list_content {
    border-top: none;
}
.list_content h3 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 15px;
    margin-top: 20px;
    max-width: 420px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news_list li:hover h3 {
    color: #d70c19;
}
.list_content .list_time {
    font-size: 14px;
    color: #666;
    float: right;
    position: absolute;
    right: 0;
    top: 20px;
}

.list_content p.list_desc {
    font-size: 14px;
    line-height: 24px;
    color: #666;
    max-width: 420px;
    overflow : hidden;
    height: 48px;
    /* text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; */
}
.list_content p.list_btns {
    margin-top: 25px;
    max-width: 500px;
}
.list_content p.list_btns a {
    font-size: 14px;
    line-height: 14px;
    color: #b5b5b5;
    padding: 8px 14px;
    border: 1px solid #b5b5b5;
    margin-right: 20px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 10px;
}
.list_content p.list_btns a:last-child {
    margin-right: 0;
}
.list_content p.list_btns a:hover {
    color: #d70c19;
    border: 1px solid #d70c19;
}

/* 右侧列表 */
h3.common_titile {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative
}
h3.common_titile:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #d70c19;
    left: 0;
    bottom: -10px;  
}


.right_list {
    width: 100%;
    overflow: hidden;
}
.right_list li {
    width: 232px;
    height: auto;
    border-top: 1px dotted #d7d7d7;
}
.right_list li:first-child {
    border-top: none;
}
.right_list li h3 {
    font-size: 14px;
    line-height: 24px;
    margin: 10px 0 20px;
    overflow : hidden;
    max-height: 48px;
}
.right_list li:hover a {
    color: #d70c19;
}
