grade-details.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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: 100%;
  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. }
  55. .catalog-item {
  56. display: flex;
  57. justify-content: space-between;
  58. align-items: center;
  59. width: 100%;
  60. height: 88rpx;
  61. background: #fff;
  62. padding: 0 20rpx;
  63. box-sizing: border-box;
  64. margin-bottom: 12rpx;
  65. border-radius: 10rpx;
  66. }
  67. .catalog-item .left {
  68. color: #656565;
  69. font-size: 36rpx;
  70. }
  71. .catalog-item .right {
  72. color: #939393;
  73. font-size: 28rpx;
  74. }
  75. .group-btn {
  76. width: 100%;
  77. height: 102rpx;
  78. background: #E5E5E5;
  79. display: flex;
  80. position: absolute;
  81. bottom: 0;
  82. }
  83. .group-btn .Price {
  84. flex: 1;
  85. display: flex;
  86. flex-direction: column;
  87. justify-content: center;
  88. align-items: center;
  89. color: #000;
  90. }
  91. .group-btn .Price:nth-child(4) {
  92. color: #4A90E2;
  93. }
  94. .group-btn .Price:nth-child(5) {
  95. color: #FC6400;
  96. }
  97. .group-btn .Price text:nth-child(1) {
  98. font-size: 32rpx;
  99. }
  100. .group-btn .Price text:nth-child(2) {
  101. font-size: 36rpx;
  102. }
  103. .group-btn .bg1,
  104. .group-btn .bg2 {
  105. position: absolute;
  106. top: 15%;
  107. width: 4rpx;
  108. height: 70%;
  109. }
  110. .group-btn .bg1 {
  111. left: 35%;
  112. }
  113. .group-btn .bg2 {
  114. left: 68%;
  115. }