.ripple-btn {
  position: relative;
  border: 1px solid #3460f2;
  color: #3460f2;
  background: #fff;
  text-align: center;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  cursor: pointer;
  z-index: 1;
  margin-right: 30px;
}
.ripple-btn.empty {
  background: #ffffff;
  color: #3460f2;
}
.ripple-btn.empty:hover {
  color: #ffffff;
}
.ripple-btn.transparent {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.ripple-btn.transparent:hover {
  color: #3460f2;
}
.ripple-btn.transparent i {
  background: #ffffff;
}
.ripple-btn.solid {
  background: #3460f2;
  color: #ffffff;
}
.ripple-btn.solid i {
  background: hsla(0, 0%, 100%, 0.05);
}
.ripple-btn.round {
  width: 50px;
  height: 50px;
  border: 1px solid #333333;
  border-radius: 50%;
  line-height: 48px;
}
.ripple-btn.radius {
  border-radius: 50px;
  height: 30px;
  width: auto;
  padding: 0 26px;
  line-height: 28px;
  vertical-align: middle;
}
.ripple-btn .text {
  position: relative;
  z-index: 5;
}
.ripple-btn .text > span {
  position: absolute;
  top: 14px;
  left: 0;
  font-weight: 400;
}
.ripple-btn i {
  position: absolute;
  display: block;
  content: "";
  z-index: 0;
  width: 0;
  height: 0;
  border-radius: 100%;
  background: #3460f2;
  transform: translate(-50%, -50%);
  transition: width 0.5s, padding-top 0.5s;
}
.ripple-btn:hover {
  color: #ffffff;
}
.ripple-btn:hover i {
  width: calc(100% * 2.25);
  padding-top: calc(100% * 2.25);
}
.link {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 1rem;
}

.ant-message{
  display: none;
}