index.scss 468 B

1234567891011121314151617181920212223
  1. $linear-green1: linear-gradient(0deg, #fff6d8 0%, #ffffff 100%);
  2. $btn-green-linear: linear-gradient(
  3. 90deg,
  4. #225036 0%,
  5. #3b8e5e 45.92%,
  6. #296141 100%
  7. );
  8. $bg-green: #3a8b5c;
  9. $bg-green2: #337b52;
  10. @mixin btnStyle($width, $height) {
  11. display: inline-block;
  12. background: $btn-green-linear;
  13. border-radius: 80rpx;
  14. font-weight: 600;
  15. color: #fff;
  16. width: $width;
  17. height: $height;
  18. text-align: center;
  19. line-height: $height;
  20. // vertical-align: middle;
  21. }