.tabs{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: end;
}
.tabs .left{
    width: calc(75% - 10px);
}
.tabs .left a p:first-child{
    color: #00a0e9;
}
.tabs .left a p:nth-child(2){
    padding: 15px 0;
    font-size: 30px;
    font-weight: bold;
    color: #0068b7;
}
.tabs .left a p:last-child{
    line-height: 20px;
    font-size: 12px;
    color: #626262;
}

.tabs .right{
    width: calc(25% - 10px);
}
.tabs .right ul{
    display: flex;
    justify-content: space-between;
}
.tabs .right ul li{
    width: calc(50% - 10px);
    line-height: 40px;
    background: #FFF;
    border: 1px solid #EEEEEE;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}
.tabs .right ul li.active{
    background: #0068b7;
    color: #FFF;
}
@media (max-width: 768px) {
    .tabs .left,
    .tabs .right{
        width: 100%;
    }
    .tabs .left p:nth-child(2){
        padding: 5px 0;
        font-size: 16px;
    }
    .tabs .right{
        margin-top: 20px;
    }
    .tabs .right ul li{
        width: calc(50% - 7px);
        line-height: 40px;
        font-size: 14px;
        font-weight: normal;
    }
}