.right-ope {
    .right-operate {
        position: fixed;
        width: 60px;
        height: auto;
        background: linear-gradient(180deg, #f5f5f5, #f3f3f3);
        z-index: 1024;
        top: 50%;
        transform: translateY(-50%);
        right: 1%;
        border-radius: 40px;
        border: 1px #eee solid;
        box-shadow: 0 0 4px 1px #eeeeee8a;
        padding: 20px 0;

        .ope-item {
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            align-content: center;
            justify-content: center;
            align-items: center;
            gap: 10px;

            .ope-list {
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap;
                align-content: center;
                justify-content: center;
                align-items: center;
                position: relative;
                cursor: pointer;
                border-bottom: 1px #e0e0e0 solid;

                &:last-child {
                    border-bottom: none;
                }

                .list-title {
                    text-align: center;
                    font-size: 14px;
                    line-height: 1.5;
                    color: #666;
                }

                .ope-hint {
                    position: absolute;
                    top: -5px;
                    right: -10px;
                    background: #f44;
                    border-radius: 100%;
                    width: 24px;
                    height: 24px;
                    font-size: 14px;
                    color: #fff;
                    text-align: center;
                    line-height: 24px;
                }
            }
        }
    }

    .get-back {
        position: absolute;
        width: 60px;
        height: 60px;
        bottom: -70px;
        background: #f5f5f5;
        border-radius: 100%;
        border: 1px #eee solid;
    }
}