
.fixed-right-new{
  position: fixed;
  right: 0.3rem;
  bottom: 1.5rem;
  z-index: 999;
  display: none;
}
.fixed-right-new .li{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  margin-top: 0.14rem;
  border-radius: 50%;

}
.fixed-right-new .li a{
  width: 0.44rem;
  height: 0.44rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;

}
.fixed-right-new .li div{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.15rem;
  height: 0.35rem;
  display: none;
  /* width: 0.8rem; */
  line-height: 0.35rem;
  text-align: center;
  transition: background-color 0.3s, width 0.3s;
  cursor: pointer;
  /* transition: background-color 0.3s, height 0.3s; */
  margin-right: 0.14rem;
}
.fixed-right-new .li div::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%; /* 箭头指向右侧 */
  width: 0;
  height: 0;
  border-top: 0.1rem solid transparent;
  border-bottom: 0.1rem solid transparent;
  border-left: 0.1rem solid rgba(0, 0, 0, 0.4); /* 箭头颜色与消息框背景一致 */
  transform: translateY(-50%);
}
.fixed-right-new .active {
  display: block;
  opacity: 1;
}
#contentArea1{
  display: none;
  background: rgba(0, 0, 0, 0.4);
}
#contentArea2{
  display: none;
  background: rgba(0, 0, 0, 0.4);
}