﻿@charset "utf-8";
/*
** 功能名称：响应式界面布局
** 
*/

/* to 列表模板一 */

.list1-top {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.list1-img {
    width: 100%;
    height: 0;
    padding-bottom: 63%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

.list1-Main {
    padding: 5%;
    background: #f8f8f8;
    height: 360px;
    max-width: 380px;
    overflow: hidden;
    margin: 0 auto;
    visibility:hidden;
}
.ie .list1-Main {
    visibility:visible;
}
.list1-bottom {
    position: relative;
    z-index: 1;
    width: 101%;
    height: 200px;
    background: #f8f8f8;
    padding-top: 10px;
    margin-top: 0;
    margin-left: -0.5%;
    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 {
    width:100%;
    height: 40px;
    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;
    box-sizing: content-box;
}

.list1-Main:hover > .list1-bottom {
    margin-top: -60px;
    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 */

