.c-level {
    margin-top: 49px;
    font-family: PingFangSC, PingFang SC;
}

.c-level-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 61px;
}

.c-level-item {
    padding: 14px 20px 68px 30px;
    display: flex;
    flex-flow: column;
    align-items: center;
    /* justify-content: center; */
}

.c-level-item h3 {
    font-weight: 600;
    font-size: 36px;
    color: #333333;
    line-height: 18px;
    text-align: center;
    margin-bottom: 21px;
}

.c-level-item p {
    font-size: 14px;
    color: #515151;
    line-height: 26px;
}

.c-level-item button {
    margin-top: 27px;
    border: unset;
    width: 72px;
    height: 26px;
    background-color: #2E2E2E;
    font-size: 12px;
    color: #FEFEFE;
    line-height: 17px;
}

.c-level-item button.c-level-unlock {
    background-color: #7A7A7A;
}

.c-level-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.c-level-item.level-1 {
    background-color: #FFFCF7;
}

.c-level-item.level-2 {
    background-color: #F3F8FF;
}

.c-level-item.level-3 {
    background-color: #FFF2F0;
}

.c-level-item.level-4 {
    background-color: #FBFFEF;
}

.c-level-item.level-5 {
    background-color: #FFF1F8;
}

.c-level-item.level-6 {
    background-color: #FAF6FF;
}

@media screen and (max-width: 1338px) {
    .c-level-list {
        gap: 20px;
        /* justify-content: space-between; */
        flex-wrap: wrap;
    }

    .c-level-item {
        width: 30%;
    }
}
@media screen and (max-width: 650px) {
    .c-level-list {
        gap: 12px;
        /* justify-content: space-between; */
        flex-wrap: wrap;
    }

    .c-level-item {
        width: calc(50% - 12px);
        padding: 14px 8px 68px 18px;
    }
}