pay.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .app {
  12. width: 100%;
  13. }
  14. .price-box {
  15. background-color: #fff;
  16. height: 265rpx;
  17. display: flex;
  18. flex-direction: column;
  19. justify-content: center;
  20. align-items: center;
  21. font-size: 28rpx;
  22. color: #909399;
  23. }
  24. .price-box .price {
  25. font-size: 50rpx;
  26. color: #303133;
  27. margin-top: 12rpx;
  28. }
  29. .price-box .price:before {
  30. content: '¥';
  31. font-size: 40rpx;
  32. }
  33. .pay-type-list {
  34. margin-top: 20rpx;
  35. background-color: #fff;
  36. padding-left: 60rpx;
  37. }
  38. .pay-type-list .type-item {
  39. height: 120rpx;
  40. padding: 20rpx 0;
  41. display: flex;
  42. justify-content: space-between;
  43. align-items: center;
  44. padding-right: 60rpx;
  45. font-size: 30rpx;
  46. position: relative;
  47. }
  48. .pay-type-list .icon {
  49. width: 100rpx;
  50. font-size: 52rpx;
  51. }
  52. .pay-type-list .iconyue {
  53. color: #fe8e2e;
  54. }
  55. .pay-type-list .iconweixin {
  56. color: #36cb59;
  57. }
  58. .pay-type-list .iconzhifubao {
  59. color: #01aaef;
  60. }
  61. .pay-type-list .tit {
  62. font-size: 32rpx;
  63. color: #303133;
  64. margin-bottom: 4rpx;
  65. }
  66. .pay-type-list .con {
  67. flex: 1;
  68. display: flex;
  69. flex-direction: column;
  70. font-size: 24rpx;
  71. color: #909399;
  72. }
  73. .mix-btn {
  74. display: flex;
  75. align-items: center;
  76. justify-content: center;
  77. width: 630rpx;
  78. height: 80rpx;
  79. margin: 80rpx auto 30rpx;
  80. font-size: 32rpx;
  81. color: #fff;
  82. background-color: #ff4e4a;
  83. border-radius: 10rpx;
  84. /* box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4); */
  85. }
  86. .clickbg {
  87. background-color: #999999 !important;
  88. }