customer-view.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. @import "../public-view.wxss";
  2. .item-bg {
  3. margin: -64rpx 20rpx 0rpx;
  4. display: flex;
  5. flex-direction: column;
  6. }
  7. /* item */
  8. .item {
  9. margin: 0rpx 0rpx 24rpx;
  10. height: 216rpx;
  11. background-color: white;
  12. border-radius: 8rpx;
  13. box-shadow: 0rpx 4rpx 8rpx rgba(0, 0, 0, 0.03);
  14. display: flex;
  15. }
  16. .item>text {
  17. width: 96rpx;
  18. height: 96rpx;
  19. border-radius: 48rpx;
  20. background-color: #28AFF0;
  21. font-size: 30rpx;
  22. color: white;
  23. text-align: center;
  24. line-height: 96rpx;
  25. margin: auto 30rpx auto 48rpx;
  26. }
  27. .item>view:nth-child(2) {
  28. display: flex;
  29. flex-direction: column;
  30. }
  31. .item>view>view {
  32. margin-top: auto;
  33. margin-bottom: 6rpx;
  34. display: flex;
  35. }
  36. .item>view>view>text:first-child {
  37. font-size: 34rpx;
  38. color: #333333;
  39. font-weight: bold;
  40. margin-right: 20rpx;
  41. }
  42. /* .item>view>view>text:last-child {
  43. font-size: 22rpx;
  44. color: #FF5E5E;
  45. text-align: center;
  46. line-height: 32rpx;
  47. width: 100rpx;
  48. height: 32rpx;
  49. border-radius: 4rpx;
  50. border: 2rpx solid #FF5E5E;
  51. margin: auto 0rpx;
  52. } */
  53. .item>view>text {
  54. font-size: 28rpx;
  55. color: #808080;
  56. margin-bottom: auto;
  57. }
  58. .item>image {
  59. width: 48rpx;
  60. height: 48rpx;
  61. margin: auto 48rpx auto auto;
  62. }
  63. .item>view:nth-child(3), .item>view:nth-child(4) {
  64. width: 80rpx;
  65. height: 80rpx;
  66. display: flex;
  67. }
  68. .item>view:nth-child(3) {
  69. margin: auto 0 auto auto
  70. }
  71. .item>view:nth-child(4) {
  72. margin: auto 24rpx auto 0;
  73. }
  74. .item>view:nth-child(3)>image {
  75. margin: auto auto;
  76. width: 28rpx;
  77. height: 28rpx;
  78. }
  79. .item>view:nth-child(4)>image {
  80. margin: auto auto;
  81. width: 32rpx;
  82. height: 30rpx;
  83. }
  84. /* new-item */
  85. .new-item {
  86. height: 216rpx;
  87. background-color: white;
  88. border-radius: 8rpx;
  89. box-shadow: 0rpx 4rpx 8rpx rgba(0, 0, 0, 0.03);
  90. display: flex;
  91. }
  92. .new-item>image {
  93. width: 24rpx;
  94. height: 24rpx;
  95. margin: auto 14rpx auto auto;
  96. }
  97. .new-item>text {
  98. font-size: 30rpx;
  99. color: #3296FB;
  100. line-height: 216rpx;
  101. margin-right: auto;
  102. }