/* 模板样式-06 */
.template_06 {
    width: 100%;
    padding: 40px 0 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}

.template_06 .template_top_title {
    font-size: 26px;
    font-weight: bold;
    color: #333333;
}

.template_06 .template_top_title span {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    margin-left: 10px;
}

.template_06>ul {
    margin: 25px -15px 0;
    display: flex;
    flex-wrap: wrap;
}

.template_06>ul>li {
    width: calc((100% - 90px)/3);
    min-height: 260px;
    background: #f3f4f8;
    border-radius: 5px;
    margin: 15px;
    padding: 25px 0 25px 20px;
    box-sizing: border-box;
    position:relative;
    background-image: url('/Areas/Article/Views/View/PC/5/template_style/6/images/bg_coopera.jpg');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.template_06>ul>li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #e50012;
    transition: all 0.6s ease;
}

.template_06>ul>li:hover::after {
    width: 100%;
}
.template_title {
    font-size: 24px;
    color: #121212;
}

.template_eng {
    font-size: 14px;
    color: #9fa5ad;
    text-transform: capitalize;
    padding: 5px 0 50px;
    position: relative;
}

.template_eng::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 22px;
    height: 3px;
    background: #e50012;
}

.template_list {
    font-size: 14px;
    color: #333333;
    margin-top: 8px;
}

/*屏幕小于或等于1200px*/
@media screen and (max-width:1200px) {
    /* .template_06>ul>li {
        width: calc((100% - 60px)/2);
    } */
}