.serviceBox-list{
    display: flex;
    background: #F7F8F9;
    flex-wrap: wrap;
}
.serviceBox-item{
    width: 50%;
    padding: 20px 24px;
    position: relative;
    background: #ffffff;
    display: block;
}

.serviceBox-item>.title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #262626;
    line-height: 22px;
    margin-bottom: 14px;
}

.serviceBox-item>.title>.title-box{
    width: calc(100% - 16px);
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.serviceBox-item>.title>.title-box>div{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

.serviceBox-item>.title>.title-box>img{
    display: block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
}

.serviceBox-item>.info{
    display: flex;
    margin-bottom: 14px;
}

.serviceBox-item>.info>:nth-child(1){
    display: block;
    width: 40px;
    height: 20px;
    margin-right: 8px;
}

.serviceBox-item>.info>:nth-child(2){
    display: block;
    width: 20px;
    height: 20px;
}

.serviceBox-item>.info>.info-text{
    height: 20px;
    padding: 0 10px;
    border-radius: 0 10px 10px 0;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    margin-right: 8px;
}

.serviceBox-item>.info>.warn{
    background: #FFF2D8;
    color: #FAAD14;
}
.serviceBox-item>.info>.deliver{
    background: #E2F1FF;
    color: #1890FF;
}
.serviceBox-item>.info>.evaluate{
    background: #F3FFED;
    color: #52C41A;
}

.serviceBox-item>.info>.activity{
    width: auto!important;
    height: 20px;
    padding: 0 8px;
    background: #F5F5F5;
    border-radius: 2px;
    text-align: center;
    font-size: 12px;
    color: #8C8C8C;
    line-height: 20px;
}
.serviceBox-item>.info-list{
    font-size: 12px;
    color: #8C8C8C;
    line-height: 17px;
    margin-bottom: 20px;
    display: flex;
}

.serviceBox-item>.info-list>span{
    display: flex;
    align-items: flex-end;
    margin-right: 20px;
}

.serviceBox-item>.info-list>span:last-child{
    margin-right: 0;
}



.serviceBox-item>.info-list>span>i{
    margin-right: 4px;
}

.serviceBox-item>.price{
    font-size: 18px;
    color: #FF9934;
    line-height: 25px;
}

.serviceBox-item>.complete{
    position: absolute;
    bottom: 0;
    right: 8px;
}

.serviceBox-list>:not(:nth-child(2n)){
    border-right: 1px solid #F0F0F0;
}

.serviceBox-list>:not(:last-child,:nth-last-child(2)){
    border-bottom: 1px solid #F0F0F0;
}

@media screen and (max-width: 767px){
    .serviceBox-list .serviceBox-item {
        width: 100%;
        border-right: none;
    }
    .serviceBox-list>:not(:last-child){
        border-bottom: 1px solid #F0F0F0;
    }
    .serviceBox-item>.info-list{
        flex-wrap: wrap;
    }
    .serviceBox-item>.info-list>span{
        margin-bottom: 5px;
    }
}

