
#activityMenu {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  position: fixed;
  z-index: 9999;
  background-size: cover;
  border-radius: 50%;
  display: none;
}

#activityIcon {
  width: 106px;
  height:106px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  cursor: pointer;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}

#activityMenu > .activityItem {
  width: 50px;
  height: 145px;
  position: absolute;
  left: 20px;
  bottom: 25px;
  visibility: hidden;
  z-index: -1;
  /* background: pink; */
  transform-origin: center bottom;
  -webkit-transform-origin: center bottom;
}

#activityMenu > .activityItem .entry-activity {
  cursor: pointer;
  position: absolute;
  left: -15px;
  top: 80%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
}

#activityMenu > .activityItem .entry-act-ani {
  opacity: 0;
  transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
  transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
}

#activityMenu > .activityItem .entry-activity img {
  width: 100%;
  display: block;
  border-radius: 50%;
}

#firstLevel .activityItem .act-timer,
#activityMenu > .activityItem .entry-activity .act-timer {
  position: absolute;
  bottom: 18px;
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 12px;
  display: none;
  text-shadow: 0 0 2px #666;
}

/* 一级icon */
#firstLevel {
  height: 50px;
}



#firstLevel .activityItem .entry-activity img {
  width: 80px;
  height: 80px;
  display: block;
  border-radius: 50%;
}

#firstLevel #activityClose {
  position: absolute;
  width: 20px;
  height: 20px;
  top: -5px;
  left: -10px;
  background: url(../img/close-x.png) no-repeat center center / 70% 70%;
  z-index: 2;
}

#firstLevel #openActMenu {
  position: absolute;
  width: 20px;
  height: 60px;
  right: -25px;
  top: 10px;
  background: url(../img/arrow-left.png) no-repeat center center / 40% auto;
  z-index: 2;
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.15, 1.15, 1.15);
    -o-transform: scale3d(1.15, 1.15, 1.15);
    -ms-transform: scale3d(1.15, 1.15, 1.15);
    -moz-transform: scale3d(1.15, 1.15, 1.15);
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
  }

  to {
    transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation: pulse 2.5s infinite alternate;
  -o-animation: pulse 2.5s infinite alternate;
  -ms-animation: pulse 2.5s infinite alternate;
  -moz-animation: pulse 2.5s infinite alternate;
  -webkit-animation: pulse 2.5s infinite alternate;
}


#firstLevel  {
  width: 80px;
  height: 80px;
  position: relative;
}

#firstLevel .activityItem {
  width: 80px;
  height: 80px;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
}

#firstLevel  .entry-activity {
  width: 500px;
  position: absolute;
  left: -80px;
}
#firstLevel  .entry-act-ani {
  width: 80px;
  height: 80px;
  position: relative;
}

.clearfix::after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.fl {
  float: left;
}