﻿/* 模板一 Start */

.tp_1 {
    display: flex;
    align-items: center;
    margin-top: 40px;
    justify-content: space-between;
    position: relative;
}
.tp_1_l{
    display: flex;
    flex-direction: column;
}
.tp_1_l:before {
    content: "";
    display: block;
    width: 45px;
    height: 5px;
    background-color: #ffffff;
    margin-bottom: 40px;
}
.tp_1_txt {
    width: 495px;
    height: 200px;
    font-size: 14px;
    line-height: 2;
    margin: 25px 30px 50px 0;
    color: rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.tp_1_more {
    width: 90px;
    height: 30px;
    color: #882931;
    display: block;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    border-radius: 30px;
    background-color: #ffffff;
    transform: translate(0, 0);
    transition: transform .2s;
}

    .tp_1_more:hover {
        color: #882931;
        box-shadow: 1px 1px 3px 0 #fff;
    }

    .tp_1_more:active {
        transform: translate(1px, 1px);
    }

.tp_1_r {
    width: 600px;
    /*height: 440px;*/
    padding: 35px 50px;
    box-sizing: border-box;
    background-color: #ffffff;
    position: relative;
}

    .tp_1_r .tp_title {
        color: #882931;
    }

.tp_1_r_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tp_1_r_top_btn {
    width: 70px;
    height: 30px;
    display: flex;
    display: none;
    justify-content: space-between;
}

.tp_1_prev,
.tp_1_next {
    display: block;
    width: 28px;
    height: 28px;
    transition: .3s;
}

.tp_1_prev {
    background-position: -6px -139px;
}

.tp_1_next {
    background-position: -46px -139px;
}

.tp_1_prev:hover {
    background-position: -6px -185px;
}

.tp_1_next:hover {
    background-position: -46px -185px;
}

.tp_1_r_cover {
    width: 62px;
    height: 62px;
    background-color: #882931;
    position: absolute;
    right: 0;
    bottom: 0;
    background-position: 10px -70px;
}

.tp_1_r_box {
    width: 100%;
    height: 270px;
    margin-top: 32px;
    overflow: hidden;
    position: relative;
}

.tp_1_r_item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
}

.opt {
    opacity: 1;
    z-index: 99;
}

.tp_1_r_list {
    display: inline-block;
    width: 225px;
    margin-bottom: 45px;
}

    .tp_1_r_list:nth-child(2n) {
        margin-left: 40px;
    }

.tp_1_r_list_t {
    font-size: 16px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

    .tp_1_r_list_t:before {
        content: "";
        display: block;
        width: 3px;
        height: 17px;
        position: absolute;
        left: 0;
        top: 2px;
        background-color: #882931;
    }

.tp_1_r_list_d {
    font-size: 14px;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 40px;
}

.tp_1_r_list_more {
    margin-top: 17px;
    color: #882931;
    font-size: 14px;
}

@keyframes MyItem {
    to {
        opacity:0;
    }
    from {
        opacity:1;
    }
}

/* 模板一 End */
