grade-details.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. /* pages/grade-details/grade-details.wxss */
  2. /**基础风格样式**/
  3. @import '../../../towxml/style/main.wxss';
  4. /**如果页面有动态主题切换,则需要将使用到的样式全部引入**/
  5. /**主题配色(浅色样式)**/
  6. @import '../../../towxml/style/theme/light.wxss';
  7. /**主题配色(深色样式)**/
  8. @import '../../../towxml/style/theme/dark.wxss';
  9. .group-details {
  10. height: 100%;
  11. width: 100%;
  12. background:rgba(240,241,245,1);
  13. }
  14. scroll-view {
  15. height: 98%;
  16. width: 100%;
  17. }
  18. .grade-details {
  19. background: #fff;
  20. display: flex;
  21. flex-direction: column;
  22. padding: 24rpx;
  23. }
  24. .grade-details image{
  25. width: 100%;
  26. height: 290rpx;
  27. border-radius: 20rpx;
  28. }
  29. .catalog {
  30. display: flex;
  31. align-items: center;
  32. width: 100%;
  33. height: 110rpx;
  34. background: #fff;
  35. position: relative;
  36. }
  37. .catalog image {
  38. position:absolute;
  39. left:374rpx;
  40. top:16rpx;
  41. width:2rpx;
  42. height:60rpx;
  43. }
  44. .catalog text {
  45. height: 60rpx;
  46. text-align: center;
  47. font-size: 36rpx;
  48. /* margin: 0 110rpx; */
  49. margin:0 104rpx;
  50. box-sizing: border-box;
  51. }
  52. .catalog .select {
  53. border-bottom: 4rpx solid #61CA54;
  54. color: #61CA54;
  55. }
  56. .catalog-list {
  57. width: 100%;
  58. padding: 18rpx;
  59. box-sizing: border-box;
  60. margin-bottom: 100rpx;
  61. }
  62. .know {
  63. padding: 18rpx;
  64. box-sizing: border-box;
  65. }
  66. .catalog-item {
  67. display: flex;
  68. justify-content: space-between;
  69. align-items: center;
  70. width: 100%;
  71. height: 88rpx;
  72. background: #fff;
  73. padding: 0 20rpx;
  74. box-sizing: border-box;
  75. margin-bottom: 12rpx;
  76. border-radius: 10rpx;
  77. }
  78. .catalog-item .left {
  79. color: #656565;
  80. font-size: 36rpx;
  81. }
  82. .catalog-item .right {
  83. color: #939393;
  84. font-size: 28rpx;
  85. }
  86. .catalog-item .right image {
  87. width: 16rpx;
  88. height: 28rpx;
  89. vertical-align: middle;
  90. margin-right: 6rpx;
  91. }
  92. .catalog-item .right text {
  93. vertical-align: middle;
  94. }
  95. .group-btn {
  96. width: 100%;
  97. height: 102rpx;
  98. background: #FF9209;
  99. display: flex;
  100. position: absolute;
  101. bottom: 0;
  102. color: #fff;
  103. }
  104. .bottomx {
  105. bottom: 20rpx;
  106. }
  107. .group-btn .Price {
  108. flex: 1;
  109. display: flex;
  110. flex-direction: column;
  111. justify-content: center;
  112. align-items: center;
  113. }
  114. .group-btn .Price text:nth-child(1) {
  115. font-size: 32rpx;
  116. }
  117. .group-btn .Price text:nth-child(2) {
  118. font-size: 36rpx;
  119. }
  120. .group-btn .bg1,
  121. .group-btn .bg2 {
  122. position: absolute;
  123. top: 14rpx;
  124. width: 4rpx;
  125. height: 70%;
  126. }
  127. .group-btn .bg1 {
  128. left: 35%;
  129. }
  130. .group-btn .bg2 {
  131. left: 68%;
  132. }
  133. .know {
  134. margin-bottom: 105rpx;
  135. }