discount-group.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /* pages/discount-group/discount-group.wxss */
  2. ::-webkit-scrollbar {
  3. display: none;
  4. }
  5. .discount-group {
  6. height: 100%;
  7. width: 100%;
  8. background:rgba(240,241,245,1);
  9. }
  10. scroll-view {
  11. height: 100%;
  12. }
  13. .group-container {
  14. width: 100%;
  15. }
  16. .less-group {
  17. width: 100%;
  18. }
  19. .group-box {
  20. display: flex;
  21. width: 100%;
  22. flex-wrap: wrap;
  23. justify-content: space-between;
  24. background: #fff;
  25. margin-bottom: 12rpx;
  26. padding: 28rpx 18rpx;
  27. box-sizing: border-box;
  28. }
  29. .group-item {
  30. display: flex;
  31. flex-direction: column;
  32. position: relative;
  33. }
  34. .group-item image {
  35. width: 214rpx;
  36. height: 278rpx;
  37. }
  38. .group-item view:nth-child(2) {
  39. font-size: 32rpx;
  40. color: #E51C23;
  41. }
  42. .group-item view:nth-child(3) {
  43. font-size: 28rpx;
  44. color: #969595;
  45. margin-top: 18rpx;
  46. }
  47. .group-item text {
  48. margin-left: 10rpx;
  49. }
  50. .group-item #grade {
  51. margin-top: 20rpx;
  52. color: #000;
  53. text-align: center;
  54. font-size: 28rpx;
  55. }
  56. .Collage-bottom {
  57. display: flex;
  58. justify-content: space-around;
  59. align-items: center;
  60. height: 102rpx;
  61. }
  62. .Collage-bottom image {
  63. width: 42rpx;
  64. height: 50rpx;
  65. vertical-align: middle;
  66. margin-right: 30rpx;
  67. }
  68. .Collage-bottom text {
  69. vertical-align: middle;
  70. }
  71. .group-item .group-num {
  72. position: absolute;
  73. left: 0;
  74. top: 14rpx;
  75. width: 100rpx;
  76. height: 40rpx;
  77. }
  78. .group-item .group-num image {
  79. width: 100%;
  80. height: 100%;
  81. }
  82. .group-item .group-num text {
  83. color: #fff;
  84. position: absolute;
  85. left: 6rpx;
  86. top: 4rpx;
  87. z-index: 3;
  88. font-size: 24rpx;
  89. }