/* 默认颜色 */
/* 垂直居中 */
.vc {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
/* 文本超出隐藏并显示省略号 */
@media (max-width: 992px) {
  .clearPaddingLeftByMargin {
    margin-left: -15px;
  }
}
@media (max-width: 992px) {
  .clearPaddingRightByMargin {
    margin-right: -15px;
  }
}
.bullet {
  white-space: nowrap;
  position: fixed;
  left: 100%;
  top: 10rem;
  display: inline-block;
  height: 3rem;
  line-height: 3rem;
  background-color: rgba(214, 135, 84, 0.73);
  border-radius: 1.5rem;
  z-index: 1000;
  transition-timing-function: linear;
  font-size: 0;
  color: #fff;
}
.bullet:hover,
.bullet:active,
.bullet:focus {
  text-decoration: none;
  color: #fff;
}
.bullet .bullet-avatar {
  vertical-align: top;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.bullet .bullet-content {
  height: 100%;
  display: inline;
  font-size: 1.25rem;
  margin-right: 1rem;
}

