.more001 {
  display: flex;
  align-items: center;
}

.more001 span {
  font-size: 0.16rem;
  color: #333;
  line-height: 1;
  font-weight: normal;
  position: relative;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.more001 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 100px;
  border: 1px solid #ddd;
  overflow: hidden;
  height: 0.3rem;
  padding: 0 0.25rem;
  position: relative;
  width: fit-content;
}

.more001:before {
  content: '';
  background-color: #007cc2;
  width: 0%;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  outline: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.more001.white {
  border-color: #fff;
}

.more001.white span {
  color: #fff;
}

.more001.white:before {
  background-color: #fff;
}

.more001.white:hover span {
  color: #007cc2;
}

.more001:hover {
  border-color: #007cc2;
}

.more001:hover:before {
  width: 100%;
}

.more001:hover span {
  color: #fff !important;
}

/*# sourceMappingURL=more001.css.map */