.meix_button {
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #eef0f5;
  color: #aaa;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 1px;
  font-size: 13px;
}

.meix_button_primary {
  background-color: #e60012;
  color: #fff;
  font-size: 13px;
}

.meix_button_hover {
  opacity: 0.7;
}

.meix_loading_icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  overflow: hidden;
  animation: linear 0.8s infinite loading;
  border-style: solid;
  border-width: 3px;
  border-color: #ccc;
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
  margin-right: 3px;
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}
