grade-details.wxss 2.6 KB

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