.menu_pop {
  width: 120px;
  height: 120px;
  left:0px;
  bottom:-200px;
  z-index: 999;
}

.flyout1-wrap {
  position: relative;
  height: 120px;
}
.flyout1-wrap .flyout1 {
  position: relative;
  margin: 0 0 1px 6px;
  line-height: 0;
}
.flyout1-wrap .flyout1 > li {
  position: absolute;
  display: block;
  height: 100px;
  background: yellow;
  transform-origin: 10px bottom;
}
.flyout1-wrap .flyout1 > li:nth-of-type( 1) {
  transform: rotate(120deg);
}
.flyout1-wrap .flyout1 > li:nth-of-type( 2) {
  transform: rotate(160deg);
}
.flyout1-wrap .flyout1 > li:nth-of-type( 3) {
  transform: rotate(200deg);
}

.flyout1-wrap .flyout1 > li a {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: #696969;
  border: 3px solid #fff;
  border-color: white;
  border-radius: 50%;
  
}
.flyout1-wrap .flyout1 > li a:active {
  background: #000;
  border-color: #555;
}
.flyout1-wrap .flyout1 > li a:active span {
  opacity: .3;
}
.flyout1-wrap .flyout1 > li a span {
  display: block;
  margin: 5px 5px 5px 5px;
  width: 25px;
  height: 25px;
  overflow: hidden;
  text-indent: -99999px;
}
.flyout1-wrap .flyout1-init li {
  display: none;
}
.flyout1-wrap .flyout1 li a {
  top: 0px;
  left: 500px;
  animation: contract1 0.35s ease-out 1 backwards;
}
.flyout1-wrap .flyout1.expand1 li a {
  top: 0px;
  left: -40px;
  animation: expand1 .6s ease 1 backwards;
}
.flyout1-wrap .flyout1.fade1 li a.clicked {
  top: 0px;
  animation: clicked 0.5s ease-out 1 forwards;
}
.flyout1-wrap .flyout1.fade1 li a:not(.clicked) {
  top: 0px;
  animation: fade1 0.5s ease-out 1 forwards;
}
.flyout1-wrap .flyout1.fade1 li a:not(.clicked) span {
  opacity: .1;
  transition: opacity .5s ease;
}
.flyout1-wrap .flyout1 li:nth-of-type( 1) a {
  animation-delay: 0.2s;
}
.flyout1-wrap .flyout1 li:nth-of-type( 1) a:not(.clicked) span {
  animation: spin1-contract1 .9s ease-out 1 backwards;
}
.flyout1-wrap .flyout1.expand1 li:nth-of-type( 1) a {
  animation-delay: 0s;
}
.flyout1-wrap .flyout1.expand1 li:nth-of-type( 1) a span {
  transform: rotate(-120deg);
  animation: spin1-expand1 .6s ease-out 1 backwards;
}
.flyout1-wrap .flyout1.fade1 li:nth-of-type( 1) a.clicked span {
  transform: rotate(-120deg);
}
.flyout1-wrap .flyout1 li:nth-of-type( 2) a {
  animation-delay: 0.16s;
}
.flyout1-wrap .flyout1 li:nth-of-type( 2) a:not(.clicked) span {
  animation: spin2-contract1 .9s ease-out 1 backwards;
}
.flyout1-wrap .flyout1.expand1 li:nth-of-type( 2) a {
  animation-delay: 0.04s;
}
.flyout1-wrap .flyout1.expand1 li:nth-of-type( 2) a span {
  transform: rotate(-160deg);
  animation: spin2-expand1 .6s ease-out 1 backwards;
}
.flyout1-wrap .flyout1.fade1 li:nth-of-type( 2) a.clicked span {
  transform: rotate(-160deg);
}
.flyout1-wrap .flyout1 li:nth-of-type( 3) a {
  animation-delay: 0.12s;
}
.flyout1-wrap .flyout1 li:nth-of-type( 3) a:not(.clicked) span {
  animation: spin3-contract1 .9s ease-out 1 backwards;
}
.flyout1-wrap .flyout1.expand1 li:nth-of-type( 3) a {
  animation-delay: 0.08s;
}
.flyout1-wrap .flyout1.expand1 li:nth-of-type( 3) a span {
  transform: rotate(-200deg);
  animation: spin3-expand1 .6s ease-out 1 backwards;
}
.flyout1-wrap .flyout1.fade1 li:nth-of-type( 3) a.clicked span {
  transform: rotate(-200deg);
}

.flyout1-wrap .ani-expand1 0% {
  top: 100px;
  display: block;
}
.flyout1-wrap .ani-expand1 50% {
  top: -10px;
}
.flyout1-wrap .ani-expand1 70% {
  top: 15px;
}
.flyout1-wrap .ani-expand1 100% {
  top: 0px;
}
.flyout1-wrap .ani-contract1 0% {
  top: 0px;
}
.flyout1-wrap .ani-contract1 40% {
  top: -25px;
}
.flyout1-wrap .ani-contract1 100% {
  top: 100px;
  display: none;
}
.flyout1-wrap .ani-clicked 0% {
  opacity: 1;
  transform: scale(1);
}
.flyout1-wrap .ani-clicked 100% {
  opacity: 0;
  transform: scale(5);
}
@keyframes expand1 {
  0% {
    top: 100px;
    left: -40px;
  }
  50% {
    top: 0px;
    left: -40px;
  }
  70% {
    top: 15px;
    left: -40px;
  }
  100% {
    top: 0px;
    left: -40px;
  }
}
@keyframes contract1 {
  0% {
    top: 0px;
    left: -40px;
  }
  40% {
    top: 0px;
    left: 0px;
  }
  100% {
    top: 100px;
    left: 0px;
  }
}
@keyframes clicked {
  0% {
    transform: scale(1);
    opacity: 1;
    top: 0px;
    left: -40px;
  }
  90% {
    top: 0px;
    left: -40px;
  }
  99% {
    transform: scale(2);
    opacity: 0;
    top: 80px;
    left: -40px;
  }
  100% {
    transform: scale(0);
    left: -40px;
  }
}
@keyframes fade1 {
  0% {
    transform: scale(1);
    opacity: 1;
    top: 0px;
  }
  90% {
    opacity: 0;
    top: 0px;
  }
  99% {
    transform: scale(0);
    top: 100px;
  }
  100% {
    transform: scale(0);
  }
}
.flyout1-wrap .ani-spin1-expand1 0% {
  transform: rotate(-120deg);
}
.flyout1-wrap .ani-spin1-expand1 60% {
  transform: rotate(-120deg);
}
.flyout1-wrap .ani-spin1-expand1 100% {
  transform: rotate(-120deg);
}
.flyout1-wrap .ani-spin2-expand1 0% {
  transform: rotate(-160deg);
}
.flyout1-wrap .ani-spin2-expand1 60% {
  transform: rotate(-160deg);
}
.flyout1-wrap .ani-spin2-expand1 100% {
  transform: rotate(-160deg);
}
.flyout1-wrap .ani-spin3-expand1 0% {
  transform: rotate(-200deg);
}
.flyout1-wrap .ani-spin3-expand1 60% {
  transform: rotate(-200deg);
}
.flyout1-wrap .ani-spin3-expand1 100% {
  transform: rotate(-200deg);
}
.flyout1-wrap .ani-spin1-contract1 0% {
  transform: rotate(-120deg);
}
.flyout1-wrap .ani-spin1-contract1 50% {
  transform: rotate(-120deg);
}
.flyout1-wrap .ani-spin1-contract1 100% {
  transform: rotate(-120deg);
}
.flyout1-wrap .ani-spin2-contract1 0% {
  transform: rotate(-160deg);
}
.flyout1-wrap .ani-spin2-contract1 50% {
  transform: rotate(-160deg);
}
.flyout1-wrap .ani-spin2-contract1 100% {
  transform: rotate(-160deg);
}
.flyout1-wrap .ani-spin3-contract1 0% {
  transform: rotate(-200deg);
}
.flyout1-wrap .ani-spin3-contract1 50% {
  transform: rotate(-200deg);
}
.flyout1-wrap .ani-spin3-contract1 100% {
  transform: rotate(-200deg);
}

@keyframes spin1-expand1 {
  0% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(-100deg);
  }
  100% {
    transform: rotate(-120deg);
  }
}
@keyframes spin2-expand1 {
  0% {
    transform: rotate(-120deg);
  }
  60% {
    transform: rotate(-140deg);
  }
  100% {
    transform: rotate(-160deg);
  }
}
@keyframes spin3-expand1 {
  0% {
    transform: rotate(-160deg);
  }
  60% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-200deg);
  }
}
@keyframes spin1-contract1 {
  0% {
    transform: rotate(-120deg);
  }
  50% {
    transform: rotate(-100deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin2-contract1 {
  0% {
    transform: rotate(-160deg);
  }
  50% {
    transform: rotate(-140deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin3-contract1 {
  0% {
    transform: rotate(-200deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
