.tip-bubble
        {
            font-size: 12px;
            font-weight: bold;
            padding: 15px 18px;
            text-align: left;
            /* position: fixed; */
            position: absolute;
            left:0;
            top:260px;
            /* bottom:-56px; */

            z-index: 1000;
            /* display: inline-block; */
            /* opacity: 0; */
            max-width: 300px;    border-radius: 10px;
        }
        .tip-bubble-right{
            padding: 15px 18px;
            text-align: left;
            /* position: fixed; */
            position: absolute;
            border-radius: 10px;
            right:0;bottom:0;
        }

        .tip-bubble:after,.tip-bubble-right:after
        {
            content: '';
            position: absolute;
            /* margin-left: -8px; */
            left: 48%;
            width: 0;
            height: 0;
        }

        .tip-bubble-center-point:after
        {
            left: 50%;
            right: auto;
        }

        .tip-bubble-left-point:after
        {
            left: 10px;
            right: auto;
        }

        .tip-bubble-right-point:after
        {
            right: 10px;
            left: auto;
        }

        .tip-arrow-top:after
        {
            border-bottom: solid 8px;
            border-right: solid 8px transparent;
            border-left: solid 8px transparent;
            bottom: 100%;
        }

        .tip-arrow-bottom:after
        {
            border-top: solid 8px;
            border-right: solid 8px transparent;
            border-left: solid 8px transparent;
            top: 100%;
        }
        .tip-arrow-right:after
        {
            border-bottom: solid 14px;
            border-left: solid 14px transparent;
            border-right: solid 14px transparent;
            top: 42%;
            left: 96%;
            transform: rotate(90deg);
        }

        .tip-theme-light:after
        {
            border-bottom-color: #fff;
            border-top-color: #fff;
        }

        .tip-theme-dark:after
        {
            border-bottom-color: #000;
            border-top-color: #000;
        }