/*--------------------------------------------------------------------------------*/
#top-store-voice {
    background-color: #EBE4CE;

    padding: 20px 0px;

    display: flex;
    flex-direction: column;
}
    .store-voice-title {
        display: flex;
        flex-direction: row;

        align-items: center;
        justify-content: center;
    }
        .store-voice-title img {
            margin-right: 5px;

            width: 26px;
            height: 26px;
        }


.store-voice-item {
    background-color: #fff;

    margin: 8px 8px 0px 8px;
    padding: 8px;

    display: flex;
    flex-direction: column;

    font-size: 11px;
}
    .voice-item-title {
        display: flex;
        flex-direction: row;

        gap: 10px;
    }
        .voice-item-title-left {
            width: 85px;
            min-width: 85px;

            background-color: #5c9f55;
            color: #fff;

            padding: 2px 4px;

            font-weight: 600;

            overflow: hidden;
            text-overflow: ellipsis;
            text-wrap: nowrap;
            text-align: center;
        }
        .voice-item-title-right {
            flex-grow: 1;

            border-bottom: 1px solid #A6A294;
            padding-bottom: 5px;
        }

.voice-item-body {
    display: flex;
    flex-direction: row;

    margin-top: 12px;

    gap: 10px;
}
    .voice-item-body-left {
        width: 85px;
        min-width: 85px;
    }
        .voice-item-body-left img {
            width: 100%;
        }
    .voice-item-body-right {
        flex-grow: 1;
    }
