.mobile-call-button {
    display: none; /* 默认隐藏，仅在移动端显示 */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7); /* 背景颜色，增加半透明效果 */
    color: #fff;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3); /* 底部阴影 */
    z-index: 9999; /* 确保悬浮在最上层 */
}
 
.mobile-call-button a {
    color: #F00; /* 链接颜色 */
    text-decoration: none;
}
 
.mobile-call-button img {
    max-width: 100%;
    height: auto;
}
 
/* 媒体查询，针对移动端显示悬浮按钮 */
@media (max-width: 768px) {
    .mobile-call-button {
        display: block;
    }
}