button-check.wxss 692 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .button-check {
  2. width: 100%;
  3. height: 124rpx;
  4. background: #fff;
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. position: fixed;
  9. bottom: 0;
  10. left: 0;
  11. }
  12. .button-check-content {
  13. width: 690rpx;
  14. height: 88rpx;
  15. color: #fff;
  16. font-size: 34rpx;
  17. border-radius: 10rpx;
  18. display: flex;
  19. align-items: center;
  20. justify-content: space-between;
  21. position: relative;
  22. }
  23. .button-check-left {
  24. height: 88rpx;
  25. width: 220rpx;
  26. line-height: 88rpx;
  27. text-align: center;
  28. border-radius: 10rpx;
  29. box-sizing: border-box;
  30. }
  31. .button-check-right {
  32. flex: 1;
  33. height: 88rpx;
  34. text-align: center;
  35. line-height: 88rpx;
  36. border-radius: 10rpx;
  37. margin-left: 20rpx;
  38. }