.dic-sidebar {
    max-width: 220px;
    flex-shrink: 0;
    overflow-y: scroll;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    z-index: 300;

    .dic-field-box {
        .dic-field-title {
            height: 40px;
            line-height: 40px;
            padding-left: 20px;
            border-bottom: 1px solid #d8dce9;
            background: #edeff5;
            align-items: center;
            h2 {
                font-size: 16px;
                font-weight: normal;
                color: #282c3a;
            }

            &:last-child {
                margin-top: -1px;
            }
        }

        .dic-field-list {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap;

            .dic-field-group {
                width: 100%;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;

                .dic-field-one-fixestr,
                .dic-field-one {
                    width: 50%;
                    max-width: 110px;
                    padding: 0px 8px;
                    height: 40px;
                    line-height: 40px;
                    text-align: center;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;

                    &:last-child {
                        border-right: none;
                    }
                }

                .dic-field-one-fixestr {
                    border-right: 1px solid #ebeefa;
                    border-bottom: 1px solid #ebeefa;
                    height: 32px;
                    line-height: 32px;
                    color: #666a76;
                }

                .dic-field-one {
                    border-right: 1px dashed #efefef;
                    border-bottom: 1px dashed #efefef;
                    color: #3296fa;
                    font-size: 13px;
                    &:hover {
                        cursor: move;
                        background: #edeff5;

                        .ui-draggable-dragging {
                            border: 1px dotted blue;
                            background: rgba(235, 241, 246, 1);
                        }
                    }
                }
            }
        }

        .dic-field-popup {
            width: 198px;
            height: 118px;
            box-shadow: 0px 4px 9px 1px rgba(61, 63, 99, 0.36);
        }

        &:first-child {
            .dic-field-list {
                .dic-field-group:last-child {
                    .dic-field-one-fixestr,
                    .dic-field-one {
                        border-bottom: none;
                    }
                }
            }
        }

        &:last-child {
            .dic-field-title {
                border-top: 1px solid #d8dce9;
            }
        }
    }
}
