﻿/* 全局只有这一段CSS，任何网站都能用 */
.fixed-bottom-bar {
  display: none; /* 电脑端隐藏 */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
  z-index: 999;
  gap: 10px;
}
/* 手机端显示 */
@media (max-width: 768px) {
  .fixed-bottom-bar {
    display: flex !important;
  }
}
/* 按钮通用 */
.fixed-bottom-bar a {
  flex: 1;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}
/* 左侧按钮 */
.fixed-bottom-bar .btn-left {
  background: #d60000;
  color: #ffff00;
}
/* 右侧按钮 */
.fixed-bottom-bar .btn-right {
  background: #0c97ee;
  color: #fff;
}
/* 图标 */
.fixed-bottom-bar a i {
  display: inline-block;
  width: 24px;
  height: 27px;
  vertical-align: middle;
}
/* 角标 */
.fixed-bottom-bar .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: #ffff00;
  color: #d60000;
  font-size: 12px;
  border-radius: 50%;
  font-style: normal;
}