.lists {
    padding-top: calc((94 / 19.2) * 1%)
}

.lists .item {
    background: #ffffff;
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.09);
    padding: 20px 17px 20px 5px;
    display: flex;
    justify-content: space-between;
    margin-top: 25px
}

.lists .item:hover {
    background: var(--color-main);
}

.lists .item:hover .ll .t1,
.lists .item:hover .ll .t2,
.lists .item:hover .cen .title,
.lists .item:hover .cen .desc,
.lists .item:hover .cen .desc p {
    color: #fff !important;
}

.lists .item:first-child {
    margin-top: 0
}

.lists .item .ll {
    padding: 0 55px;
    border-right: 1px solid #d9d9d9;
    flex-shrink: 0
}

.lists .item .ll .t1 {
    font-family: Poppins;
    font-size: 49px;
    color: var(--color-main);
    line-height: 1
}

.lists .item .ll .t2 {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1;
    margin-top: 19px
}

.lists .item .cen {
    padding: 24px;
    flex: 1
}

.lists .item .cen .title {
    font-family: Poppins;
    font-size: 20px;
    color: #333333;
    line-height: 24px;
    display: block
}

.lists .item .cen .desc {
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 24px;
    display: block
}

.lists .item .rr {
    flex-shrink: 0;
    width: 263px;
    padding-bottom: calc((202 / 13.77) * 1%)
}

@media screen and (max-width:950px) {
    .lists .item {
        flex-direction: column;
        padding: 10px;
        margin-top: 30px
    }

    .lists .item .ll {
        margin-top: 15px;
        order: 2;
        flex-direction: row;
        padding: 0;
        align-self: flex-start
    }

    .lists .item .ll .t1 {
        font-size: 16px;
        order: 2;
        color: #666;
        font-family: unset
    }

    .lists .item .ll .t1::before {
        content: "-"
    }

    .lists .item .ll .t2 {
        margin: 0;
        order: 1
    }

    .lists .item .cen {
        order: 3;
        padding: 0;
        margin-top: 15px
    }

    .lists .item .rr {
        order: 1;
        width: 100%;
        padding-bottom: 100%
    }
}