grade-details.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. background: #fff;
  13. display: flex;
  14. flex-direction: column;
  15. padding: 24rpx;
  16. }
  17. .grade-details image{
  18. width: 100%;
  19. height: 290rpx;
  20. border-radius: 20rpx;
  21. }
  22. .catalog {
  23. display: flex;
  24. align-items: center;
  25. width: 100%;
  26. height: 136rpx;
  27. background: #fff;
  28. position: relative;
  29. }
  30. .catalog image {
  31. position: absolute;
  32. left: 374rpx;
  33. top: 36rpx;
  34. width: 2rpx;
  35. height: 66rpx;
  36. }
  37. .catalog text {
  38. flex: 1;
  39. height: 60rpx;
  40. text-align: center;
  41. font-size: 36rpx;
  42. margin: 0 100rpx;
  43. box-sizing: border-box;
  44. }
  45. .catalog .select {
  46. border-bottom: 2rpx solid #61CA54;
  47. color: #61CA54;
  48. }
  49. .catalog-list {
  50. width: 100%;
  51. padding: 18rpx;
  52. box-sizing: border-box;
  53. margin-bottom: 100rpx;
  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: #FF9209;
  79. display: flex;
  80. position: absolute;
  81. bottom: 0;
  82. color: #fff;
  83. }
  84. .bottomx {
  85. bottom: 20rpx;
  86. }
  87. .group-btn .Price {
  88. flex: 1;
  89. display: flex;
  90. flex-direction: column;
  91. justify-content: center;
  92. align-items: center;
  93. }
  94. .group-btn .Price text:nth-child(1) {
  95. font-size: 32rpx;
  96. }
  97. .group-btn .Price text:nth-child(2) {
  98. font-size: 36rpx;
  99. }
  100. .group-btn .bg1,
  101. .group-btn .bg2 {
  102. position: absolute;
  103. top: 15%;
  104. width: 4rpx;
  105. height: 70%;
  106. }
  107. .group-btn .bg1 {
  108. left: 35%;
  109. }
  110. .group-btn .bg2 {
  111. left: 68%;
  112. }