DialogBoxW3.scss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. .page-total{
  2. position: fixed;
  3. left: 0;
  4. top: 0;
  5. display: flex;
  6. justify-content: center;
  7. align-items: center;
  8. width: 100%;
  9. height: 100%;
  10. background-color: rgba(0,0,0,0.5);
  11. z-index: 99999;
  12. // position: fixed; /* 固定定位,覆盖整个视口 */
  13. // top: 0;
  14. // left: 0;
  15. // width: 100%;
  16. // height: 100%;
  17. // background: rgba(0, 0, 0, 0.5); /* 半透明黑色背景 */
  18. // display: flex; /* 使用 Flexbox 居中 */
  19. // justify-content: center; /* 水平居中 */
  20. // align-items: center; /* 垂直居中 */
  21. // z-index: 1000; /* 确保它处于最前面 */
  22. }
  23. .box{
  24. display: flex;
  25. justify-content: center;
  26. width: 100%;
  27. }
  28. /* 文件重命名 */
  29. .dialog-box{
  30. background-color: #28292D;
  31. width:572rpx;height:356rpx;
  32. background: url('../../static/w3/dialog_bg.png');
  33. background-size: 572rpx 356rpx;
  34. border-radius: 24rpx;
  35. overflow: hidden;
  36. position: relative;
  37. .close {
  38. width:40rpx;height:40rpx;padding:2rpx;
  39. position: absolute;right:20rpx;top:20rpx;
  40. }
  41. .title{
  42. display: flex;
  43. justify-content: center;
  44. align-items: center;
  45. width: 100%;
  46. height: 80rpx;
  47. font-weight: bold;
  48. font-size: 32rpx;
  49. color: #FFFFFF;
  50. margin-bottom: 20rpx;
  51. }
  52. .content{
  53. display: flex;
  54. align-items: center;
  55. justify-content: space-between;
  56. width: 90%;
  57. height: 100rpx;
  58. margin: 0 auto;
  59. border-radius: 10rpx;
  60. input{
  61. width: 80%;
  62. height: 100%;
  63. font-size: 28rpx;
  64. color: #ffffff;
  65. padding: 0 4%;
  66. }
  67. text{
  68. font-size: 34rpx;
  69. color: #ffffff;
  70. margin-right: 4%;
  71. }
  72. }
  73. .inquiry{
  74. padding: 0 4%;padding-top:30rpx;
  75. height: 120rpx;
  76. text-align: center;
  77. text{
  78. line-height: 40rpx;
  79. font-weight: 400;
  80. font-size: 28rpx;
  81. color: #F5E3E3;
  82. }
  83. }
  84. .operation-btn{
  85. display: flex;flex-direction: row;justify-content: space-around;
  86. align-items: center;
  87. width: 100%;
  88. height: 100rpx;
  89. margin-top: 20rpx;
  90. .btn1{
  91. display: flex;justify-content: center;align-items: center;
  92. width:284rpx;height:185rpx;
  93. background: url('../../static/w3/dialog_btn1.png');
  94. background-size: 284rpx 185rpx;
  95. text{
  96. font-size: 28rpx;
  97. color: #999999;
  98. }
  99. }
  100. .btn2{
  101. display: flex;justify-content: center;align-items: center;
  102. width:284rpx;height:185rpx;
  103. background: url('../../static/w3/dialog_btn2.png');
  104. background-size: 284rpx 185rpx;
  105. text{
  106. font-size: 28rpx;
  107. color: #999999;
  108. }
  109. .activity{
  110. color: #FF2A95;
  111. }
  112. }
  113. }
  114. }
  115. .a-fadein,
  116. .a-fadeinT,
  117. .a-fadeinR,
  118. .a-fadeinB,
  119. .a-fadeinL,
  120. .a-bouncein,
  121. .a-bounceinT,
  122. .a-bounceinR,
  123. .a-bounceinB,
  124. .a-bounceinL,
  125. .a-rotatein,
  126. .a-rotateinLT,
  127. .a-rotateinLB,
  128. .a-rotateinRT,
  129. .a-rotateinRB,
  130. .a-flipin,
  131. .a-flipinX,
  132. .a-flipinY {
  133. -webkit-animation: .3s ease-out backwards;
  134. -moz-animation: .3s ease-out backwards;
  135. -ms-animation: .3s ease-out backwards;
  136. -moz-transform: translate3d(0,0,0);
  137. -ms-transform: translate3d(0,0,0);
  138. -o-transform: translate3d(0,0,0);
  139. transform: translate3d(0,0,0);
  140. }
  141. .a-fadeout,
  142. .a-fadeoutT,
  143. .a-fadeoutR,
  144. .a-fadeoutB,
  145. .a-fadeoutL,
  146. .a-bounceout,
  147. .a-bounceoutT,
  148. .a-bounceoutR,
  149. .a-bounceoutB,
  150. .a-bounceoutL,
  151. .a-rotateout,
  152. .a-rotateoutLT,
  153. .a-rotateoutLB,
  154. .a-rotateoutRT,
  155. .a-rotateoutRB,
  156. .a-flipoutX,
  157. .a-flipoutY {
  158. -webkit-animation: .3s ease-in forwards;
  159. -moz-animation: .3s ease-in forwards;
  160. -ms-animation: .3s ease-in forwards;
  161. animation: .3s ease-in forwards;
  162. -moz-transform: translate3d(0,0,0);
  163. -ms-transform: translate3d(0,0,0);
  164. -o-transform: translate3d(0,0,0);
  165. transform: translate3d(0,0,0);
  166. }
  167. /* 淡入 */
  168. .a-fadein {
  169. -webkit-animation-name: fadein;
  170. -moz-animation-name: fadein;
  171. -ms-animation-name: fadein;
  172. animation-name: fadein;
  173. }
  174. /* 淡出 */
  175. .a-fadeout {
  176. -webkit-animation-name: fadeout;
  177. -moz-animation-name: fadeout;
  178. -ms-animation-name: fadeout;
  179. animation-name: fadeout;
  180. }
  181. /* 弹入 */
  182. .a-bouncein {
  183. -webkit-animation-name: bouncein;
  184. -moz-animation-name: bouncein;
  185. -ms-animation-name: bouncein;
  186. animation-name: bouncein;
  187. }
  188. /* 弹出 */
  189. .a-bounceout {
  190. -webkit-animation-name: bounceout;
  191. -moz-animation-name: bounceout;
  192. -ms-animation-name: bounceout;
  193. animation-name: bounceout;
  194. }
  195. /* 淡入 */
  196. @keyframes fadein {
  197. 0% {
  198. opacity: 0;
  199. }
  200. 100% {
  201. opacity: 1;
  202. }
  203. }
  204. /* 淡出 */
  205. @keyframes fadeout {
  206. 0% {
  207. opacity: 1;
  208. }
  209. 100% {
  210. opacity: 0;
  211. }
  212. }
  213. /* 弹入 */
  214. @keyframes bouncein {
  215. 0% {
  216. opacity: 0;
  217. transform: scale(0.3);
  218. }
  219. 100% {
  220. opacity: 1;
  221. transform: scale(1);
  222. }
  223. }
  224. /* 弹出 */
  225. @keyframes bounceout {
  226. 0% {
  227. opacity: 1;
  228. transform: scale(1);
  229. }
  230. 100% {
  231. opacity: 0;
  232. transform: scale(0.3);
  233. }
  234. }