.langModel .model {
    box-sizing: border-box;
    width: 450px;
    padding: 20px;
    /* padding: 0 !important; */

    background-color: #fff;
}

.langModel .model .model_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.langModel .model .model_top .text {
    font-size: 18px;
}



.langModel .model .model_top .top_close {
    cursor: pointer;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    object-fit: cover;
}

.langModel .model .cell_row {
    box-sizing: border-box;
    width: 100%;
    margin-top: 24px;
}

.langModel .model .cell_row .cell_item {
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #ffffff;
    background-color: #f7f9fb;

    display: flex;
    align-items: center;
}



.langModel .model .cell_row .cell_item img.icon {
    flex-shrink: 0;
    width: 40px;
    height: 28px;
    border-radius: 4px;
    object-fit: contain;
    margin-right: 10px;
}

.langModel .model .cell_row .cell_item .text {
    flex-shrink: 0;
    min-width: 1px;
    flex: 1;
}

.langModel .model .cell_row .cell_item img.select {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-left: 10px;
}