@img-list-height: 100px;

.go-img-list-ctl {
    background-color: @whiteFFF;
    border: 1px solid @ctl-border-com-color;
    height: @img-list-height;
    overflow: hidden;

    .left-arrow, .right-arrow {
        width: 25px;
        background-color: #F2F2F2;
        cursor: pointer;
        align-items: center;
        font-size: 20px;
        text-align: center;
        display: flex;
        vertical-align: center;
        justify-content: center;
        height: 100%;
    }

    .img-list {
        padding: 5px 0;
        overflow-x: auto;

        .img-list-body {
            position: relative;
        }
    }


    .go-simple-img-item {
        width: 85px;
        padding: 5px 0;
        align-items: center;
        margin-left: 3px;
        margin-bottom: 10px;
        cursor: pointer;

        &.bg-gray {
            background-color: #F2F2F2;
        }

        &:hover {
            background-color: @primary;
            color: @whiteFFF;
        }

        &.active-item {
            background-color: @primary;
            color: @whiteFFF;
        }

        .item-label {
            font-size: @font-size-base;
            text-align: center;
        }

        .item-img {
            width: 50px;
            margin: auto;
            img {
                height: 60px;
            }
        }
    }
}
