.tag-cell {
    cursor: pointer;
}

.tag-cell:hover {
    /*border: 1px solid dodgerblue;*/
    background: cornflowerblue;
}

/*
0227
上面都是新增的
下面都是原来的
*/
.note-list-item-tags {
    font-size: 14px;
    bottom: 10px;
    position: absolute;
    left: 120px;
    font-weight: normal;
}

.note-list-item-tags span,
.tags-content span {
    margin-left: 10px;
    background: #b2d3ff;
    color: black;
    padding: 2px 10px 0 10px;
    text-align: center;
    display: inline-block;
    border-radius: 12px;
    font-size: 12px;
    line-height: 14px;
    height: 17px;
    min-width: 52px;

    /* 如果过长要省略后面的文字 */
    max-width: 160px;
    white-space:nowrap;
    overflow-x:auto;
    overflow-y: hidden;
}

.note-list-item-tags span {
    text-overflow:ellipsis;
    overflow:hidden;
}

.tags-content span {
    border: none;
    margin-bottom: 6px;
}

#id-div-tags {
    position: relative;
    height: 30px;
}

#id-div-tags .tags-content {
    position: absolute;
    left: 83px;
    top: -6px;
    padding-top: 6px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#id-span-tag-add {
    position: absolute;
    bottom: 10px;
    left: 25px;
}

#id-span-tag-text {
    font-size: 13px;
    color: gray;
    margin-left: 65px;
    position: absolute;
    display: inline-block;
}

.note-list-item-tags span.active {
    background: #007aff;
    color: white;
}

.tag-list-item {
    background-color: #fbeee0;
    border: 2px solid #422800;
    border-radius: 20px;
    color: #422800;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    padding: 0 18px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    user-select: none;
    touch-action: manipulation;
    display: inline-block;
    margin: 6px 4px;
    min-width: 52px;
    max-width: 160px;
}

#id-div-tag-list {
    text-align: left;
}

.tag-list-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 26px;
    top: 22px;
}

.tag-list-item:hover {
    background-color: #fff;
}

.tag-hidden {
    display: none;
}

#id-button-list-edit {
    position: absolute;
    top: 29px;
    left: 29px;
}