@charset "utf-8";
.elevator-nav {
  position: fixed;
  top: 350px;
  right: 50%;
  margin-right: -690px;
  z-index: 99;
}
.elevator-nav li {
  box-sizing: border-box;
  position: relative;
  margin-bottom: 17px;
}
.elevator-nav li a {
  background-color: #00b064cc;
  border-radius: 4px;
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}
.elevator-nav li a:after,
.elevator-nav li a:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #18b773;
  z-index: -2;
}
.elevator-nav li a:hover {
  z-index: 1;
  background: #00b064cc;
  color: #ffffff!important;
}
.elevator-nav li a:before {
  transition: 1s ease all;
  background: #00b064;
  z-index: -1;
  border-radius: 4px;
}
.elevator-nav li a:after {
  transition: 1s ease all;
  background: #00b064;
  z-index: -2;
  border-radius: 4px;
}
.elevator-nav li a span {
  padding-top: 8px;
  display: block;
  height: 34px;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 17px;
}
.elevator-nav li a:hover:after,
.elevator-nav li a:hover:before {
  width: 100%;
}
.elevator-nav .text a {
  padding: 8px 4px;
}
.elevator-nav .hovereq {
  position: absolute;
  top: 26px;
  left: -167px;
  display: none;
  z-index: 100;
}
.elevator-nav .hovereq span {
  padding-left: 30px;
  font-size: 14px;
  font-weight: 400;
  color: #898989;
  line-height: 42px;
  width: 162px;
  height: 42px;
  background: url(../images/phone_icon.png) no-repeat;
  display: block;
  position: absolute;
}
.elevator-nav li:hover .hovereq,
.elevator-nav li:hover .hoverapp {
  display: block;
}
@media screen and (max-width: 1390px) {
  .elevator-nav {
    margin-right: -48%;
  }
}
