body{
    background-color: #f7f8f9;
}

.lists_container{
    display: flex;
    justify-content: center;
}

.lists_container_c{
    width: 1200px;
    display: flex;
    flex-direction: column;
}

.lists_container_c .lists_tabs{
    border-bottom: 1px solid rgba(0,0,0,.08);
    height: 64px;
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.lists_container_c .lists_tabs a{
    display: inline-flex;
    position: relative;
    font-size: 28px;
    font-weight: 500;
    color: #666666;
    line-height: 42px;
    height: 40px;
    margin-right: 72px;
}

.lists_container_c .lists_tabs a:last-child{
    margin-right: 0;
}

.lists_container_c .lists_tabs a.active{
    color: #17234B;
    pointer-events: none;
}

.lists_container_c .lists_tabs a.active::after{
    position: absolute;
    width: 100%;
    height: 3px;
    content: '';
    left: 0;
    bottom: -14px;
    background-color: #17234B;
}

.lists_container_c .news_list{
    display: flex;
    flex-direction: column;
}

.lists_container_c .news_list .item{
    display: flex;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-top: 40px;
}

.lists_container_c .news_list .item .left_c{
    width: 340px;
}

.lists_container_c .news_list .item .pic_c{
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.lists_container_c .news_list .item .pic_c img{
    width: 100%;
    height: 100%;
    transition: .25s all;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.lists_container_c .news_list .item:hover img{
    transform: scale(1.1);
}

.lists_container_c .news_list .item .item_c{
    display: flex;
    flex-direction: column;
    flex: 1;
    width: calc(100% - 340px);
    padding-left: 32px;
    box-sizing: border-box;
}

.lists_container_c .news_list .item .item_c > h2{
    font-size: 22px;
    font-weight: 500;
    color: #333333;
    line-height: 36px;
    margin-bottom: 8px;
}

.lists_container_c .news_list .item .item_c > p{
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    line-height: 24px;
}

.lists_container_c .news_list .item .item_c .other{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lists_container_c .news_list .item .item_c .other > span{
    font-size: 12px;
    font-weight: 500;
    color: #999999;
    line-height: 36px;
}

.lists_container_c .news_list .item .item_c .other .ctime{
    display: flex;
    align-items: center;
}

.lists_container_c .news_list .item .item_c .other .ctime span{
    color: #999999;
    font-size: 14px;
    margin-right: 3px;
    line-height: 20px;
    display: inline-block;
}

.lists_container_c .news_list .item .item_c .other .ctime p{
    font-size: 12px;
    color: #999999;
    line-height: 20px;
}

.ask_list{
    display: flex;
    flex-direction: column;
    padding: 24px 0;
}

.ask_list .item{
    display: flex;
    box-sizing: border-box;
    width: 100%;
    transition: .2s all;
    background: #fff;
    height: 120px;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #f2f2f2;
    padding: 0 32px;
}

.ask_list .item:last-child{
    border-bottom: none;
}

.ask_list .item .other{
    display: flex;
    justify-content: space-between;
}

.ask_list .item h2{
    font-weight: bold;
    color: #333;
    font-size: 20px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 12px;
    box-sizing: border-box;
}

.ask_list .item h2::before{
    content: '';
    width: 3px;
    height: 20px;
    background-color: #333;
    position: absolute;
    left: 0;
    top: 4px;
}


.ask_list .item .ctime{
    display: flex;
    align-items: center;
    margin-right: 32px;
}

.ask_list .item .ctime span{
    color: #999999;
    font-size: 14px;
    margin-right: 3px;
    line-height: 20px;
    display: inline-block;
}

.ask_list .item .ctime p{
    font-size: 12px;
    color: #999999;
    line-height: 20px;
}

.news_pagetions{
    margin-bottom: 120px;
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.ask_list .item .other > p{
    display: flex;
    color: #999999;
    font-size: 14px;
}

.ask_list .item .other > p span{
    color: tomato;
    font-weight: bold;
    margin-right: 3px;
}



































































