﻿@charset "utf-8";
/**
* 功能名称：列表页模板3号
* 开发者：用我在线__quitter
* 最后修改日期：2020年6月19日
**/

.__box{
    width: 100%;
    overflow: hidden;
}
.__box:before,.__box:after{
    content: "";
    display: table;
    clear: both;
}

._3_item{
    width: 100%;
}

._3_list {
    padding: 30px 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    text-decoration: none;
}

._border_bottom {
    border-bottom: 1px dashed #e0e0e0;
}

._3_list_l {
    width: 255px;
    height: 170px;
    margin-right: 40px;
    border-radius: 2px;
    overflow: hidden;
}
._3_list_l_img{
    width: 100%;
    height: 100%;
    background-color: #e4e5e2;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform .3s;
}

._3_list_r{
    flex: 1;
}

._3_list_r_title{
    font-size: 22px;
    color: #414141;
    padding: 10px 0;
}

._3_list_r_des,._3_list_r_date{
    font-size: 15px;
    color: #9d9d9d;
    margin: 10px 0;
}

._3_list_r_des{
    display: -webkit-box;
    -webkit-line-clamp:2;
    overflow: hidden;
    max-height: 38px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

._3_list_more{
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    margin-left: 70px;
    border-radius: 2px;
    background-image: url(icon.png);
    background-position: 0px -40px;
    background-color: #ffffff;
    transition: background .3s;
}

._3_list:hover ._3_list_more{
    background-color: var(--style);
    background-position: 0px 0px;
    border-color: var(--style);
}

._3_list:hover ._3_list_r_title{
    color: var(--style);
}

._3_list:hover ._3_list_l_img{
    transform: scale(1.1);
}