﻿/* 定义喇叭图标样式 */
    #lb-icon {
      position: fixed;
      top: 2%;
      left: 2%;
      width: 50px;
      height: 50px;
      /*background-image: url('../image/lb.png');*/
      background-image: url('/template/mizhiui/static/mizhi/img/lb3.gif');
      background-size: cover;
      /*animation: shake 0.5s infinite;*/
      animation: scale 1.5s infinite; /* 缩放动画 */
       border-radius: 40%; /* 设置为圆形 */
      z-index: 9999;
      cursor: pointer;
    }

    /* 定义抖动动画 */
/*    @keyframes shake {
      0% {
        transform: rotate(-10deg);
      }
      50% {
        transform: rotate(10deg);
      }
      100% {
        transform: rotate(-10deg);
      }
    }*/
  /* 定义缩放动画 */
  @keyframes scale {
    0% {
      transform: scale(1); /* 原始大小 */
    }
    50% {
      transform: scale(1.2); /* 放大到1.2倍 */
    }
    100% {
      transform: scale(1); /* 恢复原始大小 */
    }
  }