﻿@charset "utf-8";
/**
* 功能名称：列表页模板5号
* 开发者：用我在线__quitter
* 最后修改日期：2020年6月19日
**/

.__box {
    width: 100%;
    overflow: hidden;
}

.__box:before,
.__box:after {
    content: "";
    display: table;
    clear: both;
}

._5_item {
    width: 100%;
}

._5_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 25px 0;
    text-decoration: none;
}

._border_bottom {
    border-bottom: 1px dashed #e0e0e0;
}

._5_list_l {
    width: 80px;
    height: 80px;
    color: #333333;
    margin-right: 35px;
    box-sizing: border-box;
    background-color: #eeeff2;
    transition: background .3s;
    padding: 5px;
}

._5_list_l_t {
    color: inherit;
    font-size: 36px;
    text-align: center;
}

._5_list_l_b {
    color: inherit;
    font-size: 14px;
    text-align: center;
}

._5_list_r {
    flex: 1;
}

._5_list_title {
    color: #333333;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .3s;
}

._5_list_des {
    color: #a6a6a6;
    font-size: 14px;
    max-height: 38px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

._5_list:hover ._5_list_l{
    color: #ffffff;
    background-color: var(--style);
}

._5_list:hover ._5_list_title{
    color: var(--style);
}