.contain{
    width: 100vw;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
}

.list {

    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}
.list .item{
    background: #FFFFFF;
    height: 186px;
    border-radius: 8px;
    width: calc(50% - 12px);
    padding: 20px;
    position: relative;
}
.list .item .dt{
    padding-bottom: 12px;
    font-size: 16px;color: #F79131;line-height: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E5E5E5;
}
.list .item .dt span{
    font-size: 14px;
    color: #333333;
}
.list .item .text{
    margin-top: 13px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.list .item .text .title{
    font-weight: bold;
    font-size: 14px;line-height: 20px;
}
.list .item .text .p{

}

.list .item .text .p span{
    font-size: 14px;line-height: 20px;
}
.list .item .text .p span.label{
    color: #898989;
    margin-right: 10px;
}
.list .item .text .p span.value{
    color: #222222;
}
.list .item  .btn{
    width: 83px;
    height: 36px;
    background: #4FC2B8;
    border-radius: 8px;
    text-align: center;
    line-height: 36px;
    color: #fff;
    font-size: 16px;
    position: absolute;
right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.list .item .btn:hover{
    opacity: 0.7;
}
@media (max-width: 992px) {

    .footer-part-wap {
        display: none;
    }

    .footer-part2 {
        display: none;
    }

    .footer-part3 {
        display: none;
    }
    .list .item{
        width: 100%;
        height: auto;
    }
    .list .item .dt{
        display: block;
    }
    .list .item .btn{
        position: initial;
        margin-top: 10px;
    }
}
