.bg-bajaj {
    background-color: #00308F;
}
.text-bajaj {
    color: #00308F;
}
.pulse-button {
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 165, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
    }
}
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: -1;
}
.timer-section {
    background: linear-gradient(90deg, #00308F 0%, #0052cc 100%);
}
.shadow-custom {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.bottom-menu {
    background-color: transparent;
    padding: 8px 0 0 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
  }
  
  .bottom-menu:after {
    clear: both;
    content: " ";
    display: block;
  }
  
  .bottom-menu ul li {
    list-style: none;
    text-align: center;
    font-size: 0.65em;
    line-height: 1;
    margin-bottom: 8px;
  }
  
  .bottom-menu ul li img {
    display: block;
    max-width: 64px;
    margin: 0 auto 4px;
    line-height: 1;
  }
  
  .bottom-menu ul li .fa {
    display: block;
    font-size: 18px;
    vertical-align: middle;
    margin: 0 0 4px 0;
  }
  
  .bottom-menu ul li a {
    display: block;
  }
  @keyframes jump {
    0% { transform: translateY(0); }
    25% { transform: translateY(-15px); } /* 跳跃高度减小 */
    50% { transform: translateY(0); }
    75% { transform: translateY(-10px); } /* 跳跃高度减小 */
    100% { transform: translateY(0); }
  }
  
  .fix_container {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #F59E0B;
      border-radius: 10px;
      margin: 0 auto;
      width: 100%;
      max-width: 750px;
      animation: jump 1s ease infinite; /* 增加动画时长 */
  }
  @media (max-width: 768px) {
    header {
       display: none;
    }
}
