index.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /* pages/gasup/index.wxss */
  2. page {
  3. background-color: #f8f8f8;
  4. padding-bottom: 50px;
  5. }
  6. .van-card {
  7. border-bottom: 1px solid #ebedf0;
  8. background-color: #ffffff !important;
  9. margin-bottom: 8px;
  10. }
  11. .van-button--primary {
  12. font-size: 20px;
  13. background-color: pink;
  14. }
  15. /* ---弹窗css--- */
  16. .modal-mask {
  17. width: 100%;
  18. height: 100%;
  19. position: fixed;
  20. top: 0;
  21. left: 0;
  22. background: #000;
  23. opacity: 0.5;
  24. overflow: hidden;
  25. color: #fff;
  26. }
  27. .modal-dialog {
  28. width: 72%;
  29. position: absolute;
  30. top: 30%;
  31. left: 14%;
  32. background: #fff;
  33. border-radius: 12rpx;
  34. }
  35. .modal-content{
  36. text-align: center;
  37. }
  38. .modal-content .show{
  39. width: 450rpx;
  40. height: 323rpx;
  41. display: block;
  42. margin: 0 auto;
  43. margin-top: -118rpx;
  44. z-index: 10000;
  45. }
  46. .iconWx{
  47. width:52rpx;
  48. height: 41rpx;
  49. padding-right: 20rpx;
  50. }
  51. .iconPhone{
  52. width:56rpx;
  53. height: 56rpx;
  54. padding-right: 15rpx;
  55. }
  56. .modal-content view:nth-of-type(2){
  57. font-size: 38rpx;
  58. color: #333333;
  59. line-height: 1;
  60. }
  61. .modal-content view:nth-of-type(3){
  62. font-size: 26rpx;
  63. color: #9c9c9c;
  64. margin: 18rpx 0 29rpx;
  65. line-height: 1;
  66. }
  67. .modal-content button:nth-of-type(1){
  68. width: 80%;
  69. height: 80rpx;
  70. border-radius: 60rpx;
  71. margin: 0 auto 80rpx;
  72. font-size: 30rpx;
  73. color: #fff;
  74. background: #31cc32;
  75. display: flex;
  76. flex-direction: row;
  77. align-items: center;
  78. justify-content: center;
  79. padding: 0;
  80. box-sizing: border-box;
  81. }
  82. .modal-content button:nth-of-type(1)::after{
  83. border: none;
  84. }
  85. .modal-content .wxLogin{
  86. font-size: 26rpx;
  87. color: #424242;
  88. display: flex;
  89. flex-direction: row;
  90. align-items: center;
  91. justify-content: center;
  92. margin: 38rpx 0 80rpx;
  93. }
  94. button::after{
  95. border: none;
  96. }
  97. .mask_layer {
  98. width: 100%;
  99. height: 100%;
  100. position: fixed;
  101. z-index: 999;
  102. left:0;top:0;
  103. background: #000;
  104. opacity: 0.5;
  105. overflow: hidden;
  106. }
  107. .modal_box {
  108. width: 76%;
  109. overflow: hidden;
  110. position: fixed;
  111. top: 50%;
  112. left: 0;
  113. z-index: 1001;
  114. background: #fafafa;
  115. margin: -150px 12% 0 12%;
  116. border-radius: 3px;
  117. }
  118. .title {
  119. padding: 15px;
  120. text-align: center;
  121. background-color: gazure;
  122. }
  123. .content {
  124. overflow-y: scroll; /*超出父盒子高度可滚动*/
  125. }
  126. .input_show1{
  127. margin: 0 auto;
  128. width: 80%;
  129. margin-left: 10%;
  130. font-size: 32rpx;
  131. text-align: center;
  132. }
  133. .btn1 {
  134. width: 100%;
  135. margin-top: 65rpx;
  136. display: flex;
  137. flex-direction: row;
  138. align-items: center;
  139. justify-content: space-between;
  140. box-sizing: border-box;
  141. background-color: white;
  142. }
  143. .btn2 {
  144. width: 100%;
  145. margin-top: 65rpx;
  146. display: flex;
  147. flex-direction: row;
  148. align-items: center;
  149. justify-content: space-between;
  150. box-sizing: border-box;
  151. background-color: white;
  152. }
  153. .cancel {
  154. width: 100%;
  155. padding: 10px;
  156. text-align: center;
  157. color: black;
  158. }
  159. .Sure {
  160. width: 100%;
  161. padding: 10px;
  162. color: #44b549;
  163. background-color: white;
  164. border-left: 1px solid #d0d0d0;
  165. text-align: center;
  166. }
  167. .modalMsg {
  168. text-align: center;
  169. margin-top: 45rpx;
  170. display: block;
  171. }