﻿@charset "utf-8";
/**
* 功能名称：列表页模板1号
* 开发者：用我在线__quitter
* 最后修改日期：2020年6月19日
**/

._1_item{
    width: 102%;
    display: flex;
    flex-wrap: wrap;
}

._1_list{
    width:31%;
    flex: 0 0 calc(33.33333% - 2%);
    margin-right: 2%;
    margin-bottom: 4%;
    text-decoration:none;
}

._1_list_img{
    display: block;
    flex: 1;
    width: 100%;
    padding-bottom: 66%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #e4e5e2;
    transition: opacity .3s;
    opacity: 1;
}

._1_list_bot{
    padding: 10px 20px 15px;
    box-sizing: border-box;
    background-color: #ffffff;
    position: relative;
}

._1_list_bot:before{
    display: block;
    width: 100%;
    content: "";
    height: 3px;
    background: var(--style);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: height .3s;
}

._1_list_bot_title{
    font-size: 16px;
    height: 35px;
    line-height: 35px;
    color: #2e2d2d;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

._1_list_bot_des{
    font-size: 14px;
    max-height: 38px;
    color: #929292;
    display: -webkit-box;
    -webkit-line-clamp:2;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    position: relative;
    z-index: 1;
}

._1_list_bot_date{
    margin-top: 6px;
    font-size: 14px;
    color: #929292;
    height: 22px;
    line-height: 22px;
    position: relative;
    z-index: 1;
}
._1_list:hover ._1_list_bot:before{
    height: 100%;
}
._1_list:hover *{
    color: #ffffff;
    transition: color .6s;
}

._1_list:hover ._1_list_img{
    opacity: .9;
}