#xny2019-customer-modal {
  font-size: 14px;
  color: #fff;
  position: fixed;
  display: inline-block;
  right: 0px;
  top: 50%;
  z-index: 998;
  transform: translateY(-50%);
  display: flex;
}

#xny2019-customer-modal.xny2019-hide {
  animation: show2hide 1s;
  right: -154px;
}

#xny2019-customer-modal.xny2019-show {
  animation: hide2show 1s;
}

#xny2019-customer-modal .xny2019-customer-modal-click {
  position: relative;
  height: 100px;
  border-top: 10px solid transparent;
  border-right: 25px solid #169ceb;
  border-bottom: 10px solid transparent;
  text-align: center;
  font-size: 13px;
  color: #0b2a1a;
  cursor: pointer;
  align-self: center;
  padding: 0 10px;
}

#xny2019-customer-modal .xny2019-customer-modal-click-text {
  position: absolute;
  top: 10px;
  left: 25px;
  line-height: 20px;
  color: #fff;
}

#xny2019-customer-modal .xny2019-customer-modal-caontainer {
  border-radius: 5px;
  background: #fe9900;
}

#xny2019-customer-modal .xny2019-customer-modal-chat {
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#xny2019-customer-modal .xny2019-customer-modal-chat img {
  width: 26px;
  height: 26px;
  margin-right: 10px;
}

#xny2019-customer-modal .xny2019-customer-modal-chat:hover {
  background: rgba(0, 0, 0, 0.16);
}

#xny2019-customer-modal .xny2019-customer-modal-code {
  padding: 22px 16px;
  text-align: center;
  font-size: 12px;
}

#xny2019-customer-modal .xny2019-customer-modal-code-img {
  width: 116px;
  height: 116px;
  background: #fff;
  border-radius: 5px;
  padding: 3px;
}

#xny2019-customer-modal .xny2019-customer-modal-code-img img {
  width: 100%;
  height: 100%;
}

#xny2019-customer-modal .xny2019-customer-modal-code-scan {
  margin-top: 10px;
  margin-bottom: 5px;
}

#xny2019-customer-modal .xny2019-customer-modal-item {
  cursor: pointer;
}

#xny2019-customer-modal .xny2019-customer-modal-item + .xny2019-customer-modal-item {
  border-top: 1px solid #fff;
}

@keyframes show2hide {
  0% {
    right: 0px;
  }
  100% {
    right: -154px;
  }
}

@keyframes hide2show {
  0% {
    right: -154px;
  }
  100% {
    right: 0px;
  }
}
