grade-details.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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: 136rpx;
  34. background: #fff;
  35. position: relative;
  36. }
  37. .catalog image {
  38. position: absolute;
  39. left: 374rpx;
  40. top: 36rpx;
  41. width: 2rpx;
  42. height: 66rpx;
  43. }
  44. .catalog text {
  45. flex: 1;
  46. height: 60rpx;
  47. text-align: center;
  48. font-size: 36rpx;
  49. margin: 0 100rpx;
  50. box-sizing: border-box;
  51. }
  52. .catalog .select {
  53. border-bottom: 2rpx 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. .catalog-item {
  63. display: flex;
  64. justify-content: space-between;
  65. align-items: center;
  66. width: 100%;
  67. height: 88rpx;
  68. background: #fff;
  69. padding: 0 20rpx;
  70. box-sizing: border-box;
  71. margin-bottom: 12rpx;
  72. border-radius: 10rpx;
  73. }
  74. .catalog-item .left {
  75. color: #656565;
  76. font-size: 36rpx;
  77. }
  78. .catalog-item .right {
  79. color: #939393;
  80. font-size: 28rpx;
  81. }
  82. .group-btn {
  83. width: 100%;
  84. height: 102rpx;
  85. background: #FF9209;
  86. display: flex;
  87. position: absolute;
  88. bottom: 0;
  89. color: #fff;
  90. }
  91. .bottomx {
  92. bottom: 20rpx;
  93. }
  94. .group-btn .Price {
  95. flex: 1;
  96. display: flex;
  97. flex-direction: column;
  98. justify-content: center;
  99. align-items: center;
  100. }
  101. .group-btn .Price text:nth-child(1) {
  102. font-size: 32rpx;
  103. }
  104. .group-btn .Price text:nth-child(2) {
  105. font-size: 36rpx;
  106. }
  107. .group-btn .bg1,
  108. .group-btn .bg2 {
  109. position: absolute;
  110. top: 15%;
  111. width: 4rpx;
  112. height: 70%;
  113. }
  114. .group-btn .bg1 {
  115. left: 35%;
  116. }
  117. .group-btn .bg2 {
  118. left: 68%;
  119. }