// 页面底部的rtButton(不固定)
.rt-button--bottom.rt-btn {
  margin: 15px 2.7%;
  width: 94.6%;
  height: 36px;
  line-height: 15px;
  border-radius: 5px;
  box-shadow: -2px 6px 16px 4px #c7e2ff;
  > span {
    display: flex;
    align-items: center;
    .rt-button--bottom__text {
      margin-left: 5px;
    }
  }
  &.fixed-bottom {
    position: absolute;
    bottom: 0;
  }
}

// 居中的rtButton
.rt-button--center {
  margin: 15px auto;
  border: 1px solid @theme-color;
  border-radius: 5px;
  background: #e6f1fd;
  width: fit-content;
  .rt-btn.is-text {
    padding: 0 10px;
    font-size: 12px;
    > span {
      display: flex;
      align-items: center;
      > .rt-icon {
        margin-right: 4px;
      }
    }
  }
}
