grade-details.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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: 110rpx;
  27. background: #fff;
  28. position: relative;
  29. }
  30. .catalog image {
  31. position: absolute;
  32. left: 374rpx;
  33. top: 20rpx;
  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 90rpx;
  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. .know {
  56. padding: 18rpx;
  57. box-sizing: border-box;
  58. }
  59. .catalog-item {
  60. display: flex;
  61. justify-content: space-between;
  62. align-items: center;
  63. width: 100%;
  64. height: 88rpx;
  65. background: #fff;
  66. padding: 0 20rpx;
  67. box-sizing: border-box;
  68. margin-bottom: 12rpx;
  69. border-radius: 10rpx;
  70. }
  71. .catalog-item .left {
  72. color: #656565;
  73. font-size: 36rpx;
  74. }
  75. .catalog-item .right {
  76. color: #939393;
  77. font-size: 28rpx;
  78. }
  79. .catalog-item .right image {
  80. width: 26rpx;
  81. height: 26rpx;
  82. vertical-align: middle;
  83. margin-right: 6rpx;
  84. }
  85. .catalog-item .right text {
  86. vertical-align: middle;
  87. }
  88. .group-btn {
  89. width: 100%;
  90. height: 102rpx;
  91. background: #FF9209;
  92. display: flex;
  93. position: absolute;
  94. bottom: 0;
  95. color: #fff;
  96. }
  97. .bottomx {
  98. bottom: 20rpx;
  99. }
  100. .group-btn .Price {
  101. flex: 1;
  102. display: flex;
  103. flex-direction: column;
  104. justify-content: center;
  105. align-items: center;
  106. }
  107. .group-btn .Price text:nth-child(1) {
  108. font-size: 32rpx;
  109. }
  110. .group-btn .Price text:nth-child(2) {
  111. font-size: 36rpx;
  112. }
  113. .group-btn .bg1,
  114. .group-btn .bg2 {
  115. position: absolute;
  116. top: 15%;
  117. width: 4rpx;
  118. height: 70%;
  119. }
  120. .group-btn .bg1 {
  121. left: 35%;
  122. }
  123. .group-btn .bg2 {
  124. left: 68%;
  125. }