index.scss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. // 和pages2/bank/detail 页面公用的样式
  2. // 底部按钮
  3. .bottomBox{
  4. position: fixed;
  5. bottom: 0;
  6. width: 100%;
  7. left: 0;
  8. height: 132rpx ;
  9. background-color: #FFFFFF;
  10. display: flex;
  11. justify-content: space-between;
  12. align-items: center;
  13. padding: 0 24rpx;
  14. box-shadow: 0rpx -2rpx 6rpx 0rpx rgba(0,0,0,0.1000);
  15. .icons {
  16. display: flex;
  17. .share_w {
  18. font-size: 24rpx;
  19. color: #333;
  20. margin-top: 6rpx;
  21. }
  22. .icon_item {
  23. text-align: center;
  24. }
  25. .ones {
  26. margin-left: 32rpx;
  27. margin-right: 60rpx;
  28. position: relative;
  29. top: 0;
  30. left: 0;
  31. /deep/ button::after{
  32. border: none;
  33. }
  34. .bt_share {
  35. width: 38rpx;
  36. height: 38rpx;
  37. position: absolute;
  38. top: 3rpx;
  39. left: 0;
  40. z-index: 100;
  41. opacity: 0;
  42. }
  43. }
  44. }
  45. .share {
  46. width: 38rpx;
  47. height: 38rpx;
  48. position: relative;
  49. top: 3rpx;
  50. z-index: 99;
  51. margin-bottom: 4rpx;
  52. }
  53. .shopcar {
  54. width: 40rpx;
  55. height: 40rpx;
  56. }
  57. }
  58. // 弹窗
  59. .had_bugCourse {
  60. width: 600rpx;
  61. height: 424rpx;
  62. position: relative;
  63. top: 0;
  64. left: 0;
  65. .share {
  66. width: 100%;
  67. height: 288rpx;
  68. position: absolute;
  69. top: 0;
  70. left: 0;
  71. z-index: 99;
  72. }
  73. .tips {
  74. width: 100%;
  75. height: 288rpx;
  76. text-align: center;
  77. position: absolute;
  78. top: 0;
  79. left: 0;
  80. z-index: 100;
  81. .warns {
  82. margin: 56rpx 0rpx 24rpx;
  83. font-size: 36rpx;
  84. font-weight: bold;
  85. color: #222222;
  86. }
  87. .words {
  88. font-size: 32rpx;
  89. font-weight: 400;
  90. color: #222222;
  91. margin-top: 6rpx;
  92. >text {
  93. color: #3577E8;
  94. }
  95. }
  96. }
  97. .tip_botton {
  98. width: 100%;
  99. height: 136rpx;
  100. padding: 0rpx 48rpx;
  101. display: flex;
  102. justify-content: space-between;
  103. position: absolute;
  104. left: 0;
  105. bottom: 0;
  106. .confirm_btn, .cancel_btn {
  107. width: 236rpx;
  108. height: 88rpx;
  109. line-height: 88rpx;
  110. text-align: center;
  111. border-radius: 240rpx;
  112. font-size: 32rpx;
  113. font-weight: 500;
  114. }
  115. .confirm_btn {
  116. color: #fff;
  117. background-color: #3577E8;
  118. }
  119. .cancel_btn {
  120. color: #222222;
  121. background-color: #F0F0F0;
  122. }
  123. }
  124. }
  125. // 选择规格弹窗
  126. .popup_box {
  127. width: 100%;
  128. height: 938rpx;
  129. padding: 56rpx 56rpx 0rpx;
  130. position: relative;
  131. top: 0rpx;
  132. left: 0rpx;
  133. .headers {
  134. width: 100%;
  135. display: flex;
  136. align-items: center;
  137. justify-content: space-between;
  138. margin-bottom: 48rpx;
  139. .grade {
  140. font-size: 40rpx;
  141. font-weight: bold;
  142. color: #222222;
  143. }
  144. }
  145. .pop_prices {
  146. width: 100%;
  147. min-height: 120rpx;
  148. display: flex;
  149. align-items: center;
  150. justify-content: space-between;
  151. margin: 0rpx 0rpx 40rpx 0rpx;
  152. .imgs {
  153. width: 204rpx;
  154. height: 120rpx;
  155. border-radius: 16rpx;
  156. margin-right: 24rpx;
  157. }
  158. .rights {
  159. width: 100%;
  160. min-height: 120rpx;
  161. }
  162. .goods_titles {
  163. font-size: 28rpx;
  164. font-weight: 500;
  165. color: #222222;
  166. }
  167. .goods_price {
  168. font-size: 28rpx;
  169. font-weight: 500;
  170. color: #FC3F3F;
  171. margin-top: 20rpx;
  172. }
  173. }
  174. .lines {
  175. width: 100%;
  176. height: 2rpx;
  177. background: #F0F0F0;
  178. }
  179. .check_con {
  180. width: 100%;
  181. // height: 500rpx;
  182. // overflow-y: scroll;
  183. .items_con {
  184. width: 100%;
  185. // height: 200rpx;
  186. // overflow-y: scroll;
  187. }
  188. .check_items {
  189. width: 100%;
  190. // height: 500rpx;
  191. }
  192. .grades {
  193. font-size: 28rpx;
  194. font-weight: 400;
  195. color: #969696;
  196. margin-bottom: 24rpx;
  197. margin-top: 40rpx;
  198. }
  199. .grade_names {
  200. display: flex;
  201. flex-wrap: wrap;
  202. }
  203. .course_items {
  204. height: 56rpx;
  205. background: #F8F8F8;
  206. border-radius: 66rpx;
  207. padding: 12rpx 30rpx;
  208. font-size: 24rpx;
  209. color: #222222;
  210. margin-bottom: 24rpx;
  211. margin-right: 32rpx;
  212. &.nactive {
  213. background: #D5E4FF;
  214. color: #3F8DFD;
  215. }
  216. }
  217. }
  218. .confirm_btns {
  219. position: absolute;
  220. bottom: 32rpx;
  221. }
  222. .right_now {
  223. width: 640rpx;
  224. height: 92rpx;
  225. line-height: 92rpx;
  226. text-align: center;
  227. background: #3F8DFD;
  228. border-radius: 120rpx;
  229. font-size: 32rpx;
  230. font-weight: 500;
  231. color: #FFFFFF;
  232. }
  233. .r_disable {
  234. background: #498AFE;
  235. opacity: 0.5;
  236. }
  237. }