
.suitableBox {
    margin-top: -0.7vw;
    margin-bottom: 4.4vw;
}

.suitableList {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.458vw;
    margin-top: 2.7vw;

}

.suitableList .suitableItem {
    background-color: #f7f8fa;
    border-radius: 1.302vw;
    width: 20vw;
    min-height: 8.33vw;
    padding: 1.25vw;
}


.suitableList .suitable_title {
    display: flex;
    align-items: center;
    margin-bottom: 1.4vw;
}

.suitableList .suitable_title img {
    width: 2.083vw;
    border-radius: 0.04vw;
}

.suitableList .suitable_name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.929vw;
    font-weight: bold;
    color: #242629;
    margin-left: 0.6vw;

}

.suitableList .suitable_introduce {
    font-size: 0.729vw;
    color: #242629;
    line-height: 1.7;
    text-align: left;
}
@media screen and (max-width: 905px) {

    .suitableBox {
        margin-top: 2vw;
        margin-bottom: 10vw;
        padding: 0 5.33vw;
    }

    .suitableList {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3.2vw;
        margin-top: 6vw;
    }

    .suitableList .suitableItem {
        width: 100%;
        min-height: auto;
        border-radius: 3.2vw;
        padding: 4.2vw;
    }

    .suitableList .suitable_title {
        margin-bottom: 3vw;
    }

    .suitableList .suitable_title img {
        width: 9.6vw;
        border-radius: 1vw;
        flex: 0 0 9.6vw;
    }

    .suitableList .suitable_name {
        font-size: 4.4vw;
        line-height: 1.25;
        margin-left: 2.4vw;
        white-space: normal;
    }

    .suitableList .suitable_introduce {
        font-size: 3.6vw;
        line-height: 1.6;
    }
}