index.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. .safeDistance{
  42. padding-top: constant(safe-area-inset-top);
  43. padding-top: env(safe-area-inset-top);
  44. }
  45. .up_and_down{
  46. display: flex;
  47. flex-direction: column;
  48. justify-content: space-between;
  49. align-items: center;
  50. }
  51. .font36{
  52. font-size: $font_size_36;
  53. font-weight: bold;
  54. text-align: left;
  55. color: #333;
  56. }
  57. .btn_print {
  58. position: fixed;
  59. bottom: 0;
  60. left: 0;
  61. right: 0;
  62. background-color: #fff;
  63. padding: 20rpx;
  64. box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(0, 0, 0, 0.1);
  65. }
  66. .wx_card {
  67. position: fixed;
  68. display: flex;
  69. flex-direction: column;
  70. align-items: center;
  71. bottom: 50rpx;
  72. left: 0rpx;
  73. right: 0rpx;
  74. margin-bottom: 50rpx;
  75. }
  76. .card_btn_wx {
  77. display: flex;
  78. align-items: center;
  79. justify-content: center;
  80. width: 70rpx;
  81. height: 70rpx;
  82. border-radius: 50%;
  83. }
  84. // 伪元素1rpx边框
  85. .frame {
  86. position: relative; //重要
  87. }
  88. .frame::after {
  89. position: absolute;
  90. content: '';
  91. border: 2rpx solid #b4b3b1;
  92. border-radius: 50%;
  93. width: 200%;
  94. height: 200%;
  95. top: 0;
  96. left: 0;
  97. transform: scale(0.5);
  98. transform-origin: 0 0;
  99. pointer-events: none;
  100. /* 使伪元素不会阻止鼠标事件 */
  101. }
  102. .title_login_wx {
  103. font-size: 26rpx;
  104. margin-top: 12rpx;
  105. }