.mobile_menu_float {
    position: relative;
}

.mobile_menu_float .mobile_menu_float_box-question {

    position: fixed;
    /* 定位为固定位置 */
    bottom: 60px;
    /* 距离底部20像素 */
    right: 40px;
    /* 距离右侧20像素 */
    z-index: 999;
}

.mobile_menu_float .mobile_menu_float_box-question .mobile_menu_float_box-bt {
    width: 44px;
    height: 44px;
    margin-bottom: 5px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;

    border-radius: 50%;
    /* 圆形按钮 */
    background-color: #426BEB;
    /* 背景颜色 */
    color: white;
    /* 字体颜色 */
    border: none;
    /* 无边框 */

    z-index: 999;
    /* 确保按钮在最上层 */
}

.mobile_menu_float .mobile_menu_float_box {

    position: fixed;
    /* 定位为固定位置 */
    bottom: 5px;
    /* 距离底部20像素 */
    right: 40px;
    /* 距离右侧20像素 */
    z-index: 999;
}

.mobile_menu_float .mobile_menu_float_box .mobile_menu_float_box-bt {
    width: 44px;
    height: 44px;
    margin-bottom: 5px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;

    border-radius: 50%;
    /* 圆形按钮 */
    background-color: var(--yn-red-main);
    /* 背景颜色 */
    color: white;
    /* 字体颜色 */
    border: none;
    /* 无边框 */

    z-index: 999;
    /* 确保按钮在最上层 */
}

.mobile_menu_float .mobile_menu_float_box .mobile_menu_float_box-bt img {
    width: 21px;
    height: 18px;
}

.mobile_menu_float a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-select: none;
}

.mobile_menu_floata:visited {
    background-color: transparent;
}

.mobile_menu_float a:active {
    background-color: transparent;
}