.ldwh{

}

.culItem{
    padding: 48px 0;
    border-bottom: 1px solid #E3E1E0;
    position: relative;
}

.culItem:first-child{
    padding-top: 0;
}

.culItem::after{
    content: "";
    width: 100%;
    height: 2px;
    background: #333333;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.2s ease-out 0s;
    transform: scaleX(0);
    transform-origin: center top;
}

.culItem:nth-child(2n) .culCover{
    order: 1;
}

.culCover{
    width: 450px;
    height: 338px;
    overflow: hidden;
}

.culInfo{
    width: calc(100% - 450px);
    box-sizing: border-box;
}

.culItem:nth-child(odd) .culInfo{
    padding-left: 30px;
}

.culItem:nth-child(2n) .culInfo{
    padding-right: 30px;
}

.culCover img{
    width: 100%;
    height: inherit;
    transition:  all .5s;
}

.culTime{
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
    font-family: TianShiBaoDiaoTiJian;
    color: #8F9297;
}

.culTime h3{
    font-size: 36px;
}

.culTime p{
    font-size: 18px;
}

.culInfo > h3{
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 65px;
}

.culInfo > p{
    height: 105px;
    font-size: 16px;
    font-weight: 400;
    color: #5D5F62;
    line-height: 35px;
    -webkit-line-clamp: 3;
}

.culMore{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
    transition: all .5s;
}

.culMore img{
    width: 18px;
    height: 18px;
}

.culMore > img:nth-child(2){
    display: none;
}

.culItem:hover .culCover img{
    transform: scale(1.1);
}

.culItem:hover::after{
    transform: none;
}

.culItem:hover .culInfo > h3{
    color: #C7001A;
    font-weight: bold;
}

.culItem:hover .culInfo > p{
    color: #333333;
}

.culItem:hover .culTime{
    color: #333333;
}

.culItem:hover .culMore{
    background: #C7001A;
}

.culItem:hover .culMore > img:nth-child(1){
    display: none;
}

.culItem:hover .culMore > img:nth-child(2){
    display: block;
}

@media screen and (max-width: 998px) {
    .culCover{
        width: 350px;
        height: 263px;
    }

    .culInfo{
        width: calc(100% - 350px);
    }

    .culTime{
        margin-bottom: 0;
    }

    .culInfo > h3{
        line-height: 55px;
    }

    .culMore{
        margin-top: 0px;
    }
}

@media screen and (max-width: 768px) {
    .culCover{
        width: 240px;
        height: 180px;
    }

    .culItem{
        padding: 30px 0;
    }

    .culInfo{
        width: calc(100% - 240px);
    }

    .culInfo > h3{
        line-height: 40px;
    }

    .culInfo > p{
        -webkit-line-clamp: 2;
        height: 70px;
    }

    .culTime h3{
        font-size: 26px;
    }

    .culMore{
        width: 40px;
        height: 40px;
    }

    .culMore img{
        width: 14px;
        height: 14px;
    }

    .culItem:nth-child(odd) .culInfo{
        padding-left: 10px;
    }

    .culItem:nth-child(2n) .culInfo{
        padding-right: 10px;
    }
}

@media screen and (max-width: 540px){
    .culCover{
        width: 140px;
        height: 105px;
    }

    .culItem{
        padding: 18px 0;
    }

    .culInfo{
        width: calc(100% - 140px);
    }

    .culTime h3{
        font-size: 18px;
    }

    .culTime p{
        font-size: 10px;
    }

    .culInfo > h3{
        font-size: 14px;
    }

    .culInfo > p{
        height: 40px;
        font-size: 12px;
        line-height: 20px;
    }

    .culMore{
        display: none;
    }

    .culItem::after{
        height: 1px;
    }
}