main.less 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. // Less全局通用样式
  2. @mainColor: #FF874E; //主题色
  3. @bgcColor: #F7F7F7; //背景色
  4. @whiteColor: #FFFFFF; //白色
  5. @blackColor: #000000; //黑色
  6. @darkFontColor: #464646; //深色文字
  7. @lightFontColor: #656565; //浅色文字
  8. @borderRadius: 20rpx; //盒子圆角
  9. // 行样式
  10. .row() {
  11. width: 100%;
  12. display: flex;
  13. align-items: center;
  14. .row-left {
  15. color: @darkFontColor;
  16. font-size: 32rpx;
  17. font-weight: 500;
  18. }
  19. .row-right {
  20. color: @lightFontColor;
  21. font-size: 32rpx;
  22. font-weight: 500;
  23. }
  24. }
  25. // 深底白字按钮
  26. .dark-button(@radius: 37rpx; @width: 336rpx; @height: 74rpx; @font-size: 28rpx; ) {
  27. border-radius: @radius;
  28. border: 2rpx solid @mainColor;
  29. width: @width;
  30. height: @height;
  31. background-color: @mainColor;
  32. color: @whiteColor;
  33. display: flex;
  34. justify-content: center;
  35. align-items: center;
  36. box-sizing: border-box;
  37. font-size: @font-size;
  38. }
  39. // 白底深字按钮
  40. .light-button(@radius: 37rpx; @width: 336rpx; @height: 74rpx; @font-size: 28rpx; ) {
  41. border-radius: @radius;
  42. border: 2rpx solid @mainColor;
  43. width: @width;
  44. height: @height;
  45. background-color: @whiteColor;
  46. color: @mainColor;
  47. display: flex;
  48. justify-content: center;
  49. align-items: center;
  50. box-sizing: border-box;
  51. font-size: @font-size;
  52. }
  53. // 弹出层-带确认取消按钮
  54. .popup-have-button() {
  55. width: 710rpx;
  56. height: 430rpx;
  57. border-radius: 20rpx;
  58. position: relative;
  59. .tan-top {
  60. position: absolute;
  61. top: 36rpx;
  62. left: 50%;
  63. transform: translateX(-50%);
  64. font-size: 32rpx;
  65. color: @darkFontColor;
  66. }
  67. .tan-body {
  68. height: 75%;
  69. width: 100%;
  70. display: flex;
  71. flex-direction: row;
  72. justify-content: center;
  73. align-items: center;
  74. font-size: 42rpx;
  75. color: #656565;
  76. view {
  77. width: 84%;
  78. height: 106rpx;
  79. background-color: @bgcColor;
  80. margin-top: 60rpx;
  81. padding: 0 20rpx;
  82. border-radius: 12rpx;
  83. padding: 0 20rpx;
  84. input {
  85. height: 106rpx;
  86. }
  87. }
  88. }
  89. .tan-niu {
  90. width: 100%;
  91. height: 25%;
  92. display: flex;
  93. }
  94. .tan-qu {
  95. width: 50%;
  96. height: 100%;
  97. border-radius: 0rpx;
  98. background-color: #F2F2F2;
  99. display: flex;
  100. justify-content: center;
  101. align-items: center;
  102. font-size: 32rpx;
  103. font-weight: 600;
  104. color: #989898;
  105. }
  106. .tan-que {
  107. width: 50%;
  108. height: 100%;
  109. border-radius: 0rpx;
  110. background-color: #FF874E;
  111. display: flex;
  112. justify-content: center;
  113. align-items: center;
  114. font-size: 32rpx;
  115. font-weight: 600;
  116. color: #FFFFFF;
  117. }
  118. }