/********¿¨Æ¬×é**********/
.comp-cards .items{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;  
}
.comp-cards .item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-right: 60px; 
    border-radius: 6px;
    box-shadow: 0px 10px 30px rgb(0 0 0 / 8%);
    padding-bottom: 30px;
} 
.comp-cards .items-2 .item {
    margin-right: 60px;
}
.comp-cards .items-3 .item {
    margin-right: 50px;
}
.comp-cards .items-4 .item {
    margin-right: 40px;
}
.comp-cards .items-5 .item {
    margin-right: 30px;
}
.comp-cards .items-6 .item {
    margin-right: 20px;
}
.comp-cards .item:last-child {
    margin-right: 0!important;
}

.comp-cards .item h2 {
    height: 80px;
    padding-top: 20px;
    font-size: 20px;
    color: #fff;
    background: #299cf8;
    text-align: center;
}
.comp-cards .item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    background: #fff;
    width: 66px;
    height: 66px;
    margin-top: -25px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 10px 0 40px rgb(0 0 0 / 8%);
}
.comp-cards .item .icon img {
    width: 50%;
    height: 50%;
}
.comp-cards .item ul
{
    padding:0 20px;
}
.comp-cards .item li {
    position: relative;   
    padding-left: 12px;
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    text-align: left;
}
.comp-cards .item li i {
    position: absolute;
    top: 8px;
    left: 0;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 12px;
    background: #299cf8;   
}
.comp-cards .item .more {
    display: inline-block; 
    align-self: center;
    height: 38px;
    padding: 0 20px;
    font-size: 14px;
    line-height: 38px;
    color: #fff;
    border: none;
    border-radius: 6px;
    background: #299cf8;
    margin-top: 20px;
}