.fixed-tip {
    position: fixed;
    width: 32px;
    height: 104px;
    bottom: 60px;
    right: 0;
    background-color: #fff;
    color: #00b388;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px 0 0 12px;
    box-sizing: border-box;
    cursor: pointer;
    padding-left: 9px;
    padding-top: 8px;
    opacity: 0.5;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    z-index: 100;
    line-height: 1.4;
    user-select: none;
    text-decoration: none;
}
.fixed-tip:hover {
    opacity: 1;
}
