button.wxss 585 B

12345678910111213141516171819202122232425262728293031323334
  1. button {
  2. padding: 0;
  3. border-radius: 0;
  4. color: #fff;
  5. margin: 0;
  6. }
  7. button::after {
  8. border: 0;
  9. }
  10. .btn-text {
  11. display: inline;
  12. font-size: 28rpx;
  13. background: rgba(0,0,0,0);
  14. }
  15. .btn {
  16. width: 124rpx;
  17. height: 62rpx;
  18. font-size: 26rpx;
  19. font-weight: 700;
  20. border-radius: 100px;
  21. display: flex;
  22. align-items: center;
  23. justify-content: center;
  24. color: #fff;
  25. letter-spacing: 0.56rpx;
  26. }
  27. .btn-primary {
  28. background: #557cff;
  29. box-shadow: 0 0px 18px 0 rgba(85, 124, 255, 0.5);
  30. }
  31. .btn-cancel {
  32. background: #adb5cd;
  33. box-shadow: 0 0px 18px 0 rgba(173, 181, 205, 0.5);
  34. }