index.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. }