home.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* dispatcher/pages/home/home.wxss */
  2. @import '../../../templates/loading/loading.wxss';
  3. .header {
  4. background: #FAFAFA;
  5. padding: 24rpx 30rpx;
  6. }
  7. .header-active {
  8. background: #fff;
  9. }
  10. .li-title {
  11. font-size: 32rpx;
  12. color: #333;
  13. }
  14. .li-row {
  15. display: flex;
  16. justify-content: space-between;
  17. align-items: center;
  18. margin-top: 30rpx;
  19. }
  20. .li-btns {
  21. display: flex;
  22. justify-content: flex-start;
  23. align-items: center;
  24. }
  25. .li-btn {
  26. border-radius: 100rpx;
  27. padding: 12rpx 24rpx;
  28. font-size: 24rpx;
  29. margin: 0 0 0 24rpx;
  30. }
  31. .btn-red {
  32. background: #FF80A8;
  33. color: #fff;
  34. }
  35. .btn-blue {
  36. background: #00B7FF;
  37. color: #fff;
  38. }
  39. .li-text-blue {
  40. color: #00B7FF;
  41. font-size: 32rpx;
  42. margin-right: 50rpx;
  43. }
  44. .li-text-red {
  45. color: #FF80A8;
  46. font-size: 32rpx;
  47. }
  48. .li-icon {
  49. width: 30rpx;
  50. height: 26rpx;
  51. margin-right: 14rpx;
  52. }
  53. .li-text-gray {
  54. font-size: 28rpx;
  55. color: #999;
  56. }
  57. .li-icon-arrow {
  58. width: 14rpx;
  59. height: 24rpx;
  60. margin-left: 14rpx;
  61. }
  62. .scan {
  63. position: fixed;
  64. right: 30rpx;
  65. bottom: 200rpx;
  66. width: 128rpx;
  67. height: 128rpx;
  68. border-radius: 200rpx;
  69. background: rgba(0,183,255,1);
  70. box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(0,175,243,0.5);
  71. opacity: 0.7;
  72. display: flex;
  73. flex-direction: column;
  74. justify-content: center;
  75. align-items: center;
  76. z-index: 9;
  77. }
  78. .scan-icon {
  79. width: 46rpx;
  80. height: 46rpx;
  81. }
  82. .scan-text {
  83. margin-top: 10rpx;
  84. font-size: 24rpx;
  85. color: #fff;
  86. }