﻿@charset "utf-8";
/*列表页*/
.list_news{
    width: 1400rem;
    height: auto;
    margin: 0 auto;
}
.list_news1 {
    width: 100%;
    height: auto;
    margin: 30rem 0 20rem 0;
    padding: 0 0;
}
.list_news_ul {
    width: 100%;
    height: auto;
    margin-top: 0;
}

.list_news_li {
    width: 100%;
    height: 74rem;
    border-bottom: 1rem dashed #e1ebff;
    transition: all 0.3s;
    margin-bottom: 0rem;
}
.list_news_li a {
    display: block;
    width: 100%;
    height: 74rem;
    box-sizing: border-box;
}
.list_news_li a i{
    color: #015da1;
    font-size: 18rem;
    padding-right: 5rem;
}
.list_news_li h3 {
    transition: all 0.3s;
    float: left;
    font-size: 20rem;
    color: #333333;
    font-weight: normal;
    width: calc(100% - 200px);
    line-height: 74rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.list_news_li span {
    transition: all 0.3s;
    float: right;
    font-size: 18rem;
    color: #999999;
    line-height: 74rem;
}

.list_news_li:hover {
    border-bottom: 1rem solid #f6f6f6;
    transition: all 0.3s;
    background-color: #f6f6f6;
}

.list_news_li:hover h3 {
    color: #2a5fc6;
    transition: all 0.3s;
}

.list_news_li:hover span {
    color: #2a5fc6;
    transition: all 0.3s;
}
@media only screen and (max-width: 1000px) {
    * {
        box-sizing: border-box;
    }
    .list_news{
        width: 100%;
        padding-top: 120rem;
    }
    .list_news1{
        margin: 10rem 0 20rem 0;
    }
    .list_news_ul{
        padding: 20rem 20rem;
    }
    .list_news_li {
        width: 100%;
        height: 50px;
        border-bottom: 1px dashed #e1ebff;
        transition: all 0.3s;
        margin-bottom: 0px;
        display: flex;
        align-items: center;
    }

    .list_news_li a {
        width: 100%;
        height: 50px;
        box-sizing: border-box;
    }

    .list_news_li h3 {
        transition: all 0.3s;
        float: left;
        font-size: 16px;
        color: #333333;
        font-weight: normal;
        width: calc(100% - 105px);
        line-height: 50px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .list_news_li h3 i {
        font-style: normal;
        color: #2a5fc6;
        margin-right: 5rem;
    }

    .list_news_li span {
        transition: all 0.3s;
        float: right;
        font-size: 16px;
        color: #999999;
        line-height: 50px;
    }
}