grade-details.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /* pages/grade-details/grade-details.wxss */
  2. .group-details {
  3. height: 100%;
  4. width: 100%;
  5. background:rgba(240,241,245,1);
  6. }
  7. scroll-view {
  8. height: 98%;
  9. width: 100%;
  10. }
  11. .grade-details {
  12. margin: 12rpx 0;
  13. background: #fff;
  14. display: flex;
  15. flex-direction: column;
  16. padding: 24rpx;
  17. }
  18. .grade-details image{
  19. width: 100%;
  20. height: 290rpx;
  21. border-radius: 20rpx;
  22. }
  23. .grade-details text {
  24. font-size: 32rpx;
  25. }
  26. .grade-details text:nth-child(2) {
  27. margin: 12rpx 0;
  28. }
  29. .catalog {
  30. width: 100%;
  31. height: 62rpx;
  32. background: #fff;
  33. position: relative;
  34. }
  35. .catalog image {
  36. position: absolute;
  37. left: 24rpx;
  38. top: 10rpx;
  39. width: 208rpx;
  40. height: 42rpx;
  41. }
  42. .catalog text {
  43. position: absolute;
  44. left: 34rpx;
  45. top: 7rpx;
  46. z-index: 2;
  47. color: #fff;
  48. font-size: 36rpx;
  49. }
  50. .catalog-list {
  51. width: 100%;
  52. padding: 18rpx;
  53. box-sizing: border-box;
  54. margin-bottom: 100rpx;
  55. }
  56. .catalog-item {
  57. display: flex;
  58. justify-content: space-between;
  59. align-items: center;
  60. width: 100%;
  61. height: 88rpx;
  62. background: #fff;
  63. padding: 0 20rpx;
  64. box-sizing: border-box;
  65. margin-bottom: 12rpx;
  66. border-radius: 10rpx;
  67. }
  68. .catalog-item .left {
  69. color: #656565;
  70. font-size: 36rpx;
  71. }
  72. .catalog-item .right {
  73. color: #939393;
  74. font-size: 28rpx;
  75. }
  76. .group-btn {
  77. width: 100%;
  78. height: 102rpx;
  79. background: #FF9209;
  80. display: flex;
  81. position: absolute;
  82. bottom: 0;
  83. color: #fff;
  84. }
  85. .bottomx {
  86. bottom: 20rpx;
  87. }
  88. .group-btn .Price {
  89. flex: 1;
  90. display: flex;
  91. flex-direction: column;
  92. justify-content: center;
  93. align-items: center;
  94. }
  95. .group-btn .Price text:nth-child(1) {
  96. font-size: 32rpx;
  97. }
  98. .group-btn .Price text:nth-child(2) {
  99. font-size: 36rpx;
  100. }
  101. .group-btn .bg1,
  102. .group-btn .bg2 {
  103. position: absolute;
  104. top: 15%;
  105. width: 4rpx;
  106. height: 70%;
  107. }
  108. .group-btn .bg1 {
  109. left: 35%;
  110. }
  111. .group-btn .bg2 {
  112. left: 68%;
  113. }