﻿@charset "utf-8";
/*
** 功能名称：响应式界面布局
** 修改时间：2017年12月19日15:29:21
*/

.pt10 {
    padding: 10px;
}
.clear{
    clear: both;
}
#list {
    overflow: hidden;
    perspective: 800px;
}
#list a:hover{
    text-decoration: none;
}
.TaxonTitle{
    margin: 40px auto;
    text-align: center;
}
.TaxonTitle .Title-z{
    font-size: 30px;
    color: #292929;
}
/* to 列表模板一 */
.list1-top{
    width: 100%;
    height: 234px;
    position: relative;
    overflow: hidden;
}
.list1-top img{
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.list1-Main{
    padding: 5%;
    background: #f8f8f8;
    max-width: 420px;
    max-height: 370px;
    overflow: hidden;
    margin: 0 auto;
}
.list1-bottom{
    position: relative;
    z-index: 1000;
    width: 101%;
    height: 205px;
    background: #f8f8f8;
    padding-top: 10px;
    margin-top: 0;
    box-sizing: border-box;
    transition: .6s;
}
.list1-bottom.no_date{
    height:175px;
}
.list1-Title{
    height: 40px;
    line-height: 40px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    color: #2e2d2d;
    font-weight: bold;
}
.list1-txt{
    height: 45px;
    line-height: 1.5;
    font-size: 14px;
    color: #929292;
    overflow:hidden; 
    text-overflow:ellipsis;
    display:-webkit-box; 
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    margin-bottom: 15px;
}
.list1-time{
    font-size: 14px;
    color: #929292;
    margin-bottom: 20px;
    opacity: 0;
    transition: .6s;
}
.list1-but{
    width: 110px;
    height: 30px;
    border: 1px solid #916445;
    background: #916445;
    outline: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: .6s;
    line-height:initial;
    padding:0;
}
.list1-Main:hover > .list1-bottom{
    margin-top: -80px;
    transition: .6s;
}
.list1-Main:hover > .list1-bottom.no_date{
    margin-top: -40px;
    transition: .6s;
}
.list1-Main:hover > .list1-bottom .list1-time,.list1-Main:hover > .list1-bottom .list1-but{
    opacity: 1;
    transition: .6s;
}
/* to end */



/*分页样式*/
#page {
    text-align: center;
    margin:50px 0;
}

#pagination {
    display: inline-block;
}

    #pagination a, #pagination i {
        font-size: 16px;
        color: #808080;
        padding: 10px;
        cursor: pointer;
    }

        #pagination a.current {
            color: #af251b;
        }