index.scss 859 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // 颜色
  2. $color-blue:#3387FF;
  3. $color-white:#FFFFFF;
  4. // 字体大小
  5. $font_size_34:34rpx;
  6. $font_size_36:36rpx;
  7. page{
  8. background-color: #fff;
  9. }
  10. .but_button690{
  11. margin: 10rpx;
  12. width: 690rpx;
  13. height: 88rpx;
  14. font-size: $font_size_34;
  15. font-weight: normal;
  16. }
  17. .but_button630{
  18. margin: 10rpx;
  19. width: 630rpx;
  20. height: 88rpx;
  21. font-size: $font_size_34;
  22. font-weight: normal;
  23. }
  24. .center_in_sequence{
  25. display: flex;
  26. flex-direction: column;
  27. align-items: center;
  28. }
  29. .center_in{
  30. width: 100%;
  31. display: flex;
  32. justify-content: center;
  33. align-items: center;
  34. }
  35. .space_between{
  36. width: 100%;
  37. display: flex;
  38. justify-content: space-between;
  39. align-items: center;
  40. }
  41. .up_and_down{
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: space-between;
  45. align-items: center;
  46. }
  47. .font36{
  48. font-size: $font_size_36;
  49. font-weight: bold;
  50. text-align: left;
  51. color: #333;
  52. }