.class-default-card {
    margin-top: 12px;
    padding: 16px 15px;
    border-radius: 24px;
    background: linear-gradient(93deg, #1c69d9 0%, #0752bd 100%);
    flex-direction: column;
}
.class-default-card .profile {
    display: flex;
    gap: 15px;
    align-items: center;
}
.class-default-card .profile .img {
    overflow: hidden;
    width: 50px;
    height: 50px;
    border: 3px solid #fff;
    border-radius: 50%;
    flex-shrink: 0;
}
.class-default-card .profile .text {
    width: calc(100% - 65px);
}
.class-default-card .profile .text div {
    overflow: hidden;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-overflow: ellipsis;
    line-height: 140%;
    white-space: nowrap;
}
.class-default-card .profile .text p {
    overflow: hidden;
    color: #fff;
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.class-default-card .date {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}
.class-default-card .date span {
    color: inherit;
    font: inherit;
    font-weight: 700;
}
.class-default-card .list {
    margin-top: 4px;
}
.class-default-card .list li span {
    display: flex;
    overflow: hidden;
    padding: 10px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.05);
    color: #fff;
    font-size: 10px;
    line-height: 14px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
.class-default-card .list li span:before {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
}
.class-default-card .list li:nth-child(1) span:before {
    background-image: url(/images/icon/icon-main-card1.svg);
}
.class-default-card .list li:nth-child(2) span:before {
    background-image: url(/images/icon/icon-main-card2.svg);
}
.class-default-card .list li:nth-child(3) span:before {
    background-image: url(/images/icon/icon-main-card3.svg);
}
.class-default-card .list li:nth-child(4) span:before {
    background-image: url(/images/icon/icon-main-card4.svg);
}
.class-default-card .bg {
    margin-top: 4px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.1);
}
.class-default-card .bg p {
    background: linear-gradient(217deg, #fcfcfd -0.01%, rgba(252, 252, 253, 0.8) 100%);
    background-clip: text;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
