:host /deep/ {
    position: fixed;
    right: 20px;
    top: 80px;
    width: 10%;
    //max-width: 120px;
    min-width: 90px;
    font-size: 12px;
    line-height: 1.143;
    text-overflow: ellipsis;

    .link-group {
        position: relative;

        .anchor-ink {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;

            .anchor-ink-ball {
                position: absolute;
                left: 50%;
                display: none;
                width: 4px;
                height: 4px;
                background-color: #fff;
                border: 2px solid #1890ff;
                border-radius: 8px;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
                transition: top 0.3s ease-in-out;
            }

            .anchor-ink-ball.visible {
                display: inline-block;
            }
        }

        .anchor-ink::before {
            position: relative;
            display: block;
            width: 2px;
            height: 100%;
            margin: 0 auto;
            background-color: #e8e8e8;
            content: ' ';
        }

        .anchor-link {
            padding: 7px 0 7px 16px;

            a {
                color: rgba(0, 0, 0, 0.65);
            }

            a:hover {
                color: #1890ff;
            }
        }
    }
}
