.array-input {
    width: 100%;
    display: inline-block;
    border-radius: 4px;
    box-shadow: 0 0 0 1px var(--el-border-color) inset;
    line-height: 24px;
    padding: 4px 8px;
    box-sizing: border-box;
}

.array-input.focus {
    box-shadow: 0 0 0 1px var(--el-color-primary) inset;
}

.array-input input {
    border: none;
    outline: none;
}

.array-input span {
    padding: 0 10px;
    border-radius: 6px;
    background: var(--el-fill-color);
    display: inline-flex;
    align-items: center;
    margin: 4px;
}

.array-input span .el-icon {
    margin-left: 5px;
    font-size: 14px;
    cursor: pointer;
}

.edit-td {
    text-align: center;
    width: 100%;
    height: 32px;
    line-height: 32px;
}

.edit-td-input {
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
    box-shadow: 0 0 0 1px var(--el-border-color) inset;
    line-height: 24px;
    padding: 4px 8px;
}

.edit-td-input:focus {
    box-shadow: 0 0 0 1px var(--el-color-primary) inset;
}

.add-image-btn {
    width: 100px;
    height: 100px;
    text-align: center;
    margin: 0 10px 10px 0;
    border: 2px dashed var(--el-border-color);
    box-sizing: border-box;
    padding-top: 30px;
    line-height: 20px;
}

.tox-tinymce-aux {
    z-index: 3002 !important;
}

.el-table .el-table__cell {
    z-index: auto;
}

.no-wrap {
    width: 75px;
    flex: none;
}

.add-folder {
    color: transparent;
}

.tree-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-right: 5px;
}

.tree-item:hover .add-folder {
    color: #72767b;
}

.tree-item:hover .add-folder:hover {
    color: #409eff;
}

.filename-input .el-input__wrapper {
    box-shadow: none;
    border-radius: 0;
}

.filename-input .el-input__wrapper.is-focus {
    box-shadow: 0 0 0 1px var(--el-input-focus-border-color) inset;
}

.filename-input .el-input__inner {
    text-align: center;
}

.image-box-item {
    width: 170px;
    margin: 5px;
    position: relative;
}

.image-box-item .el-image {
    width: 170px;
    height: 170px;
}

.image-box-item.selected {
    outline: 2px solid var(--el-color-primary);
    overflow: hidden;
}

.image-box-item .num {
    color: white;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    line-height: 20px;
    width: 20px;
    text-align: center;
}

.image-box-item .num::before {
    content: '';
    display: block;
    position: absolute;
    right: -25px;
    top: -25px;
    z-index: -1;
    background: var(--el-color-primary);
    width: 50px;
    height: 50px;
    transform: rotate(45deg);
}

.image-box-item .el-image {
    display: block;
}

.images-input {
    display: flex;
    flex-wrap: wrap;
}

.images-input .image-item {
    width: 100px;
    height: 100px;
    margin: 0 10px 10px 0;
    position: relative;
}

.images-input .image-item .el-image {
    width: 100px;
    height: 100px;
}

.images-input .image-item .close {
    position: absolute;
    right: 4px;
    top: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, .75);
    border-radius: 100%;
    display: none;
}

.images-input .image-item .close:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background: white;
}

.images-input .image-item:hover .close {
    display: inline-flex;
}