.tip-bubble
        {
            font-size: 14px!important;
            padding: 10px;
            text-align: center;
            font-family: "微軟正黑體","Arial",sans-serif!important;
            font-weight: bold!important;
            position: fixed;
            z-index: 1000;
            border-radius: 2px;
            display: inline-block;
            opacity: 0;
            max-width: 300px;
            color: #3f3f3f!important;
            background-color: #fff!important;
            margin-top: 5px;
        }

        .tip-bubble:after
        {
            content: '';
            position: absolute;
            margin-left: -8px;
            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-theme-dark{
            /* color: #000!important; */
            background-color: #ff5e3a!important;
        }
        .tip-theme-light:after
        {
            border-bottom-color: #fff;
            border-top-color: #fff;

        }

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