/********²½ÖèÌõ**********/
.comp-step .items{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;  
}
.comp-step .item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    padding-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #BED8FF;
    background: #FFFFFF;
}
.comp-step .item .title {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 20px;
    font-size: 20px; 
    background: #EBF5FF; 
    color: #000;
    position: relative;
}

.comp-step .item .title i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #0284FE; 
    margin-right: 10px; 
}
.comp-step .item .title h2 {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    padding: 0 5px;
    z-index: 1;
}

.comp-step .item .title h2::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 8px;
    background: #BAD1FE;
    border-radius: 4px;
    position: absolute; 
    left: 0;
    bottom: -2px;
    z-index:-1;
}

.comp-step .item ul
{
    padding:20px 20px 0;
}
.comp-step .item li {
    position: relative;   
    padding-left: 12px;
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    text-align: left;
}
.comp-step .item li i {
    position: absolute;
    top: 8px;
    left: 0;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 12px;
    background: #299cf8;   
}
.comp-step .item-next {
    width: 80px;
    align-self: center;
} 
.comp-step .item-next img {
    width:40px;
    height:40px;
}