DialogBoxW3.scss 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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('http://c.yujianmate.com/images/v1/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:172rpx;height:64rpx;
  93. // background: url('http://c.yujianmate.com/images/v1/dialog_btn1.png');
  94. // background-size: 172rpx 64rpx;
  95. background-color: #C8C8C8;
  96. border-radius: 16rpx;
  97. text{
  98. font-size: 28rpx;
  99. color: #ffffff;
  100. }
  101. }
  102. .btn2{
  103. display: flex;justify-content: center;align-items: center;
  104. width:172rpx;height:64rpx;
  105. // background: url('http://c.yujianmate.com/images/v1/dialog_btn2.png');
  106. // background-size: 172rpx 64rpx;
  107. background: linear-gradient( 133deg, #FEA84D 0%, #E7672A 100%);
  108. border-radius: 16rpx;
  109. text{
  110. font-size: 28rpx;
  111. color: #ffffff;
  112. }
  113. .activity2{
  114. color: #FF2A95;
  115. }
  116. }
  117. }
  118. }
  119. .a-fadein,
  120. .a-fadeinT,
  121. .a-fadeinR,
  122. .a-fadeinB,
  123. .a-fadeinL,
  124. .a-bouncein,
  125. .a-bounceinT,
  126. .a-bounceinR,
  127. .a-bounceinB,
  128. .a-bounceinL,
  129. .a-rotatein,
  130. .a-rotateinLT,
  131. .a-rotateinLB,
  132. .a-rotateinRT,
  133. .a-rotateinRB,
  134. .a-flipin,
  135. .a-flipinX,
  136. .a-flipinY {
  137. -webkit-animation: .3s ease-out backwards;
  138. -moz-animation: .3s ease-out backwards;
  139. -ms-animation: .3s ease-out backwards;
  140. -moz-transform: translate3d(0,0,0);
  141. -ms-transform: translate3d(0,0,0);
  142. -o-transform: translate3d(0,0,0);
  143. transform: translate3d(0,0,0);
  144. }
  145. .a-fadeout,
  146. .a-fadeoutT,
  147. .a-fadeoutR,
  148. .a-fadeoutB,
  149. .a-fadeoutL,
  150. .a-bounceout,
  151. .a-bounceoutT,
  152. .a-bounceoutR,
  153. .a-bounceoutB,
  154. .a-bounceoutL,
  155. .a-rotateout,
  156. .a-rotateoutLT,
  157. .a-rotateoutLB,
  158. .a-rotateoutRT,
  159. .a-rotateoutRB,
  160. .a-flipoutX,
  161. .a-flipoutY {
  162. -webkit-animation: .3s ease-in forwards;
  163. -moz-animation: .3s ease-in forwards;
  164. -ms-animation: .3s ease-in forwards;
  165. animation: .3s ease-in forwards;
  166. -moz-transform: translate3d(0,0,0);
  167. -ms-transform: translate3d(0,0,0);
  168. -o-transform: translate3d(0,0,0);
  169. transform: translate3d(0,0,0);
  170. }
  171. /* 淡入 */
  172. .a-fadein {
  173. -webkit-animation-name: fadein;
  174. -moz-animation-name: fadein;
  175. -ms-animation-name: fadein;
  176. animation-name: fadein;
  177. }
  178. /* 淡出 */
  179. .a-fadeout {
  180. -webkit-animation-name: fadeout;
  181. -moz-animation-name: fadeout;
  182. -ms-animation-name: fadeout;
  183. animation-name: fadeout;
  184. }
  185. /* 弹入 */
  186. .a-bouncein {
  187. -webkit-animation-name: bouncein;
  188. -moz-animation-name: bouncein;
  189. -ms-animation-name: bouncein;
  190. animation-name: bouncein;
  191. }
  192. /* 弹出 */
  193. .a-bounceout {
  194. -webkit-animation-name: bounceout;
  195. -moz-animation-name: bounceout;
  196. -ms-animation-name: bounceout;
  197. animation-name: bounceout;
  198. }
  199. /* 淡入 */
  200. @keyframes fadein {
  201. 0% {
  202. opacity: 0;
  203. }
  204. 100% {
  205. opacity: 1;
  206. }
  207. }
  208. /* 淡出 */
  209. @keyframes fadeout {
  210. 0% {
  211. opacity: 1;
  212. }
  213. 100% {
  214. opacity: 0;
  215. }
  216. }
  217. /* 弹入 */
  218. @keyframes bouncein {
  219. 0% {
  220. opacity: 0;
  221. transform: scale(0.3);
  222. }
  223. 100% {
  224. opacity: 1;
  225. transform: scale(1);
  226. }
  227. }
  228. /* 弹出 */
  229. @keyframes bounceout {
  230. 0% {
  231. opacity: 1;
  232. transform: scale(1);
  233. }
  234. 100% {
  235. opacity: 0;
  236. transform: scale(0.3);
  237. }
  238. }