/* 面包屑导航 */
.breadCrumbNav{
    margin-top: 70px !important;
    color: #757575;
    font-size: 14px;
}
.breadCrumbNav a{
    color: #757575;
    text-decoration: none;
}
.breadCrumbNav a.select{
    color: #1d4fae;
}
/* list */
.w{
    width: 60%;
    margin: 0 auto;
}
.list{
    margin-top: 45px;
    margin-bottom: 70px;
    min-height: 300px;
}
.list ul li{
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}
.list ul li a{
    display: flex;
}
.list ul li a>img{
    width: 240px;
    height: 160px;
    margin-right: 35px;
    object-fit: scale-down;
    transition: transform 0.3s ease;
}
.list ul li img:hover{
    transform: scale(1.1);
}
.list ul li a>div{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.list ul li h2{
    color: #373737;
    font-size: 22px;
    margin: 0px 0 15px 0;
    transition: 0.4s;
    overflow:hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.list ul li a p{
    color: #757575;
    font-size: 16px;
    line-height: 25px;
    overflow:hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.list ul li .date{
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.list ul li .date .time{
    font-size: 22px;
    font-weight: bold;
    color: #C7C7C7;
    transition: 0.4s;
    font-family: CustomFont;
}
.list ul li .date .more{
    display: none;
    font-size: 14px;
    color: #1d4fae;
    transition: 0.4s;
}
.list ul li .date img{
    width: 18px;
    height: auto;
    transition: 0.4s;
    vertical-align: text-bottom;
}
.list ul li:hover .time, .list ul li:hover h2, .list ul li:hover span{
    color: #1d4fae;
}
.list ul li .select{
    display: none;
}
.list ul li:hover .select{
    display: inline-block;
}
.list ul li:hover .normal{
    display: none;
}
@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/TIMESBD.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@media (min-width: 768px)and (max-width: 1024px){
    .w{
        width: 700px;
        margin: 0 auto;
    }
    .breadCrumbNav{
        display: none;
    }
    .list{
        margin-top: 20px;
    }
    .list ul{
        padding: 0 15px;
    }
    .list ul li{
        width: 100%;
        padding-top: 0;
        padding-bottom: 10px;
        margin-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
    }
    .list ul li img{
        height: 175px;
    }
    .list ul li:nth-child(odd){
        padding-right: 0;
        border-right: none;
    }
    .list ul li:nth-child(even){
        padding-left: 0;
    }
    .list ul li h2{
        font-weight: bold;
        font-size: 17px;
        line-height: 25px;
        margin-top: 20px;
    }
    .list ul li .date{
        margin-top: 10px;
    }
    .list ul li a>p{
        margin-top: 10px;
        line-height: 22px;
        font-size: 14px;
    }
    .list ul li .date .time{
        font-size: 20px;
        margin: 0;
        color: #979797;
    }
    .paging{
        margin-top: 40px;
    }
}
@media (max-width: 768px) {
    .w{
        width: 100%;
    }
    .breadCrumbNav{
        display: none;
    }
    .list{
        margin-top: 20px;
        margin-bottom: 35px;
    }
    .list ul{
        padding: 0 15px;
    }
    .list ul li{
        width: 100%;
        padding-top: 0;
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid #e0e0e0;
    }
    .list ul li a>img{
        width: 115px;
        height: 104px;
        margin-right: 10px;
        border-radius: 4px;
    }
    .list ul li h2{
        font-weight: bold;
        font-size: 17px;
        line-height: 25px;
        margin: 0;
    }
    .list ul li a>p{
        margin-top: 10px;
        line-height: 22px;
        font-size: 14px;
    }
    .list ul li .date .time{
        font-size: 20px;
        margin: 0;
        color: #979797;
    }
    .list ul li a p{
        font-size: 15px;
        line-height: 20px;
    }
    .paging{
        margin-bottom: 20px;
    }

}