h2 {
    margin: 2rem 0;
}
.f-template-scrollspy-scrolldemo {
    background-color: #fff;
    .scrollspy-section {
        .scrollspy-item {
            box-sizing: border-box;
            width: 100%;
            background: #f5f5f5;
            border: 3px solid #59a1ff;
            font-size: 20px;
            &.active {
                border-color: #f40;
            }
        }
    }
}
.f-template-scrollspy-tabdemo {
    background-color: #e7ebef;
    padding: 10px;
    .scrollspy-content {
        margin-top: 10px;
        padding: 11px 14px;
        background-color: #fff;
        box-shadow: 0 1px 5px 0 rgba(0, 28, 64, 0.06);
        .scrollspy-item {
            box-sizing: border-box;
            width: 100%;
            border: 1px solid #59a1ff;
            font-size: 20px;
            &.active {
                border-color: red;
            }
            .scrollspy-item-title {
                padding: 0 14px;
                height: 32px;
                line-height: 32px;
                margin-bottom: 14px;
                background: rgba(245, 248, 252, 0.8);
                border-radius: 2px;
                .title {
                    font-size: 14px;
                    color: #000;
                    opacity: 0.85;
                }
            }
        }
    }
}

.my-follow-tabs {
    display: inline-block;
    padding: 0 16px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    cursor: pointer;
    font-size: 16px;
    &.active {
        background-color: #59a1ff;
    }
}

.follow-tabs-item {
    position: relative;
    padding-right: 80px;
    cursor: pointer;
    .follow-tabs-content {
        .follow-tabs-icon {
            width: 30px;
            height: 30px;
            margin: 0 auto 6px;
            text-align: center;
            line-height: 30px;
            font-size: 0.75rem;
            text-align: center;
            color: #fff;
            background: #d9d9d9;
            border-radius: 100%;
        }
        .follow-tabs-title {
            font-size: 14px;
            color: rgba(0, 0, 0, 0.85);
        }
    }
    .follow-tabs-line {
        position: absolute;
        right: 14px;
        top: 14px;
        display: flex;
        flex-direction: row;
        align-items: center;
        .line {
            display: block;
            width: 60px;
            height: 2px;
            border-top: 2px dotted rgba(0,0,0,.2);
        }
        .triangle {
            // position: absolute;
            // right: 0;
            // top: 50%;
            display: inline-block;
            width: 6px;
            height: 6px;
            transform: rotate(45deg);
            border-top: 1px solid rgba(0,0,0,.2);
            border-right: 1px solid rgba(0,0,0,.2);
        }
    }
    &.active{
        .follow-tabs-content {
            .follow-tabs-icon {
                background: #2A87FF;
            }
        }
    }
    &:hover{
        .follow-tabs-content {
            .follow-tabs-icon {
                background: #59a1ff;
            }
        }
    }
    &.follow-tabs-item-last{
        padding-right: 14px;
    }
}
