::-webkit-scrollbar {
    /* 不显示滚动条 */
    display: none;
}

body,
html {
    /* 去除浏览器默认的边距和内边距。 */
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background: transparent;
}

.bookmarks {
    height: 300px;
    /* width: 1400px; */
}

.group_p {
    display: flex;
    height: 15px;
    color: rgb(255, 255, 255);
    border-radius: 8px;
    margin-right: 20px;
    margin-top: 13px;
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中 */
    font-size: 15px;
    width: auto;
    flex: 0 0 auto;
    padding: 10px;
}

.group_p_inactive {
    background-color: #4E7D5F;
}

.group_p_active {
    color: #213528;
    background-color: #4ECDC4;
}

.group {
    font-size: 13px;
    margin-top: 18px;
    float: left;
    height: 27px;
    color: #213528;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    margin-right: 10px;
    background-color: rgba(167, 167, 167, 0.123);
    width: auto;
    flex: 0 0 auto;
    padding: 3px 10px 3px 10px;
    /* animation: fadeIn 0.3s ease-in forwards; */
}

.group_inactive {
    background-color: #4ECDC4
}

.group_active {
    background-color: #9cebefa5;
    /* border: 2px solid #4ECDC4; */
}

.groups_content {
    float: left;
    margin-left: 0px;
    overflow: scroll;
    font-size: 12px;
}

.bookmark {
    float: left;
    position: relative;
    margin-left: 0px;
    margin-bottom: 8px;
    margin-right: 20px;
    text-align: center;
    width: 170px;
    height: 35px;
    cursor: pointer;
    border-radius: 8px;
    /* border: 2px solid #4ECDC4; */
    background: #9cebefa5;
    /* #ecfffebe; */
    /* animation: fadeIn 0.2s ease-in forwards; */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.bookmark_icon_out {
    float: left;
    color: white;
    width: 25px;
    height: 25px;
    margin-left: 30px;
    margin-top: 4px;
    border: 1px solid transparent;
    border-radius: 15px;
}

.bookmark_icon_in {
    width: 25px;
    height: 25px;
    border: none;
    /* margin-left: 25px; */
    border-radius: 15px;
    /* 背景图片覆盖整个容器 */
    background-size: contain;
    /* 背景图片居中显示 */
    background-position: center;
    /* 背景图片不重复 */
    background-repeat: no-repeat;
}

.bookmark_name {
    /* vw 单位表示视口宽度的百分比。 */
    float: left;
    /* color: rgb(46, 46, 46); */
    color: #213528;
    /* 主橙色文字 */
    font-weight: 500;
    text-align: center;
    width: 80px;
    height: 20px;
    margin-top: 7px;
    white-space: nowrap;
    /* 强制不换行 */
    overflow: hidden;
    /* 超出部分隐藏 */
    text-overflow: ellipsis;
    /* 超出部分显示省略号 */
    font-size: 14px;
    background-color: transparent;
}

.bookmark_name_full {
    /* vw 单位表示视口宽度的百分比。 */
    float: left;
    /* color: rgb(46, 46, 46); */
    color: #213528;
    /* 主橙色文字 */
    font-weight: 500;
    text-align: center;
    width: 170px;
    height: 20px;
    margin-top: 7px;
    white-space: nowrap;
    /* 强制不换行 */
    overflow: hidden;
    /* 超出部分隐藏 */
    text-overflow: ellipsis;
    /* 超出部分显示省略号 */
    font-size: 14px;
    background-color: transparent;
}

.website {
    float: left;
    margin-left: 0px;
    margin-bottom: 8px;
    margin-right: 20px;
    position: relative;
    text-align: center;
    width: 80px;
    height: 50px;
}

.websitelink {
    /* vw 单位表示视口宽度的百分比。 */
    float: left;
    color: rgb(46, 46, 46);
    text-align: center;
    margin-top: 20px;
    text-decoration: underline;
    width: 85px;
    height: 45px;
    background-color: transparent;
    cursor: pointer;
}