index.scss 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  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,
  107. .cancel_btn {
  108. width: 236rpx;
  109. height: 88rpx;
  110. line-height: 88rpx;
  111. text-align: center;
  112. border-radius: 240rpx;
  113. font-size: 32rpx;
  114. font-weight: 500;
  115. }
  116. .confirm_btn {
  117. color: #fff;
  118. background-color: #3577E8;
  119. }
  120. .cancel_btn {
  121. color: #222222;
  122. background-color: #F0F0F0;
  123. }
  124. }
  125. }
  126. // 选择规格弹窗
  127. .popup_box {
  128. width: 100%;
  129. height: 938rpx;
  130. padding: 56rpx 56rpx 0rpx;
  131. position: relative;
  132. top: 0rpx;
  133. left: 0rpx;
  134. .headers {
  135. width: 100%;
  136. display: flex;
  137. align-items: center;
  138. justify-content: space-between;
  139. margin-bottom: 48rpx;
  140. .grade {
  141. font-size: 40rpx;
  142. font-weight: bold;
  143. color: #222222;
  144. }
  145. }
  146. .pop_prices {
  147. width: 100%;
  148. min-height: 120rpx;
  149. display: flex;
  150. align-items: center;
  151. justify-content: space-between;
  152. margin: 0rpx 0rpx 40rpx 0rpx;
  153. .imgs {
  154. width: 204rpx;
  155. height: 120rpx;
  156. border-radius: 16rpx;
  157. margin-right: 24rpx;
  158. }
  159. .rights {
  160. width: 100%;
  161. min-height: 120rpx;
  162. }
  163. .goods_titles {
  164. font-size: 28rpx;
  165. font-weight: 500;
  166. color: #222222;
  167. }
  168. .goods_price {
  169. font-size: 28rpx;
  170. font-weight: 500;
  171. color: #FC3F3F;
  172. margin-top: 20rpx;
  173. }
  174. }
  175. .lines {
  176. width: 100%;
  177. height: 2rpx;
  178. background: #F0F0F0;
  179. }
  180. .check_con {
  181. width: 100%;
  182. // height: 500rpx;
  183. // overflow-y: scroll;
  184. .items_con {
  185. width: 100%;
  186. // height: 200rpx;
  187. // overflow-y: scroll;
  188. }
  189. .check_items {
  190. width: 100%;
  191. // height: 500rpx;
  192. }
  193. .grades {
  194. font-size: 32rpx;
  195. font-weight: 400;
  196. color: #969696;
  197. margin-bottom: 32rpx;
  198. margin-top: 40rpx;
  199. }
  200. .grade_names {
  201. display: flex;
  202. flex-wrap: wrap;
  203. }
  204. .course_items {
  205. margin-bottom: 16rpx;
  206. padding: 0 24rpx;
  207. height: 84rpx;
  208. line-height: 84rpx;
  209. background: #F8F8F8;
  210. font-size: 28rpx;
  211. border-radius: 24rpx;
  212. margin-right: 32rpx;
  213. color: #222222;
  214. &.nactive {
  215. background: #EBF2FF;
  216. }
  217. }
  218. .check_box_item {
  219. padding: 0 32rpx 0 28rpx;
  220. background: #F8F8F8;
  221. margin-bottom: 32rpx;
  222. height: 84rpx;
  223. line-height: 84rpx;
  224. display: flex;
  225. align-items: center;
  226. font-size: 28rpx;
  227. .price_box {
  228. margin-left: 10rpx;
  229. width: 520rpx;
  230. display: flex;
  231. align-items: center;
  232. justify-content: space-between;
  233. .price {
  234. font-weight: bold;
  235. color: #EB445A;
  236. font-size: 34rpx;
  237. }
  238. }
  239. .check_box_item_titme {
  240. max-width: 400rpx;
  241. overflow: hidden;
  242. text-overflow: ellipsis;
  243. white-space: nowrap;
  244. }
  245. }
  246. .selected {
  247. background: #EBF2FF;
  248. .check_box_item_titme {
  249. color: #3F8DFD;
  250. }
  251. }
  252. }
  253. .confirm_btns {
  254. width: 638rpx;
  255. box-sizing: border-box;
  256. position: absolute;
  257. bottom: 32rpx;
  258. display: flex;
  259. align-items: center;
  260. justify-content: space-between;
  261. .allprice {
  262. view {
  263. color: #222222;
  264. font-size: 32rpx;
  265. text {
  266. color: #EB445A;
  267. font-size: 40rpx;
  268. &:nth-of-type(1) {
  269. font-size: 24rpx;
  270. }
  271. }
  272. }
  273. text {
  274. color: #666;
  275. font-size: 28rpx;
  276. }
  277. }
  278. }
  279. .right_now {
  280. width: 272rpx;
  281. height: 92rpx;
  282. line-height: 92rpx;
  283. text-align: center;
  284. background: #3F8DFD;
  285. border-radius: 120rpx;
  286. font-size: 32rpx;
  287. font-weight: 500;
  288. color: #FFFFFF;
  289. }
  290. .r_disable {
  291. background: #498AFE;
  292. opacity: 0.5;
  293. }
  294. }