customeConfirm.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. .page-total{
  2. position: absolute;
  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.3);
  11. z-index: 99999;
  12. }
  13. .box{
  14. display: flex;
  15. justify-content: center;
  16. width: 100%;
  17. }
  18. /* 文件重命名 */
  19. .dialog-box{
  20. width: 80%;
  21. height: 370rpx;
  22. background-color: #fff;
  23. border-radius: 24rpx;
  24. overflow: hidden;
  25. .title{
  26. display: flex;
  27. justify-content: center;
  28. align-items: center;
  29. font-family: 'PingFang SC-Bold';
  30. width: 100%;
  31. height: 130rpx;
  32. font-size: 32rpx;
  33. color: #1F1F1F;
  34. }
  35. .content{
  36. display: flex;
  37. align-items: center;
  38. justify-content: space-between;
  39. font-family: 'PingFang SC-Medium';
  40. width: 90%;
  41. height: 100rpx;
  42. margin: 0 auto;
  43. font-weight: 400;
  44. border-radius: 10rpx;
  45. input{
  46. width: 80%;
  47. height: 100%;
  48. font-size: 28rpx;
  49. color: #1F1F1F;
  50. padding: 0 4%;
  51. }
  52. text{
  53. font-size: 34rpx;
  54. color: #1F1F1F;
  55. margin-right: 4%;
  56. }
  57. }
  58. .inquiry{
  59. padding: 0 100rpx;
  60. height: 120rpx;
  61. text-align: center;
  62. text{
  63. font-size: 28rpx;
  64. color: #1F1F1F;
  65. line-height: 40rpx;
  66. }
  67. }
  68. .operation-btn{
  69. display: flex;
  70. align-items: center;
  71. justify-content: space-evenly;
  72. width: 100%;
  73. height: 100rpx;
  74. margin-top: 20rpx;
  75. .btn{
  76. position: relative;
  77. display: flex;
  78. justify-content: center;
  79. align-items: center;
  80. width: 244rpx;
  81. height: 72rpx;
  82. border-radius: 12rpx;
  83. border: solid 2rpx #1F1F1F;
  84. font-family: 'PingFang SC-Bold';
  85. // font-weight: 400;
  86. &:last-child{
  87. background-color: #1F1F1F;
  88. }
  89. text{
  90. font-size: 32rpx;
  91. color: #1F1F1F;
  92. }
  93. .tag{
  94. position: absolute;
  95. right: 0;
  96. top: 30%;
  97. width: 2rpx;
  98. height: 40%;
  99. background-color: #393939;
  100. display: none;
  101. }
  102. .activity{
  103. color: #fff;
  104. }
  105. }
  106. }
  107. }
  108. .a-fadein,
  109. .a-fadeinT,
  110. .a-fadeinR,
  111. .a-fadeinB,
  112. .a-fadeinL,
  113. .a-bouncein,
  114. .a-bounceinT,
  115. .a-bounceinR,
  116. .a-bounceinB,
  117. .a-bounceinL,
  118. .a-rotatein,
  119. .a-rotateinLT,
  120. .a-rotateinLB,
  121. .a-rotateinRT,
  122. .a-rotateinRB,
  123. .a-flipin,
  124. .a-flipinX,
  125. .a-flipinY {
  126. -webkit-animation: .3s ease-out backwards;
  127. -moz-animation: .3s ease-out backwards;
  128. -ms-animation: .3s ease-out backwards;
  129. -moz-transform: translate3d(0,0,0);
  130. -ms-transform: translate3d(0,0,0);
  131. -o-transform: translate3d(0,0,0);
  132. transform: translate3d(0,0,0);
  133. }
  134. .a-fadeout,
  135. .a-fadeoutT,
  136. .a-fadeoutR,
  137. .a-fadeoutB,
  138. .a-fadeoutL,
  139. .a-bounceout,
  140. .a-bounceoutT,
  141. .a-bounceoutR,
  142. .a-bounceoutB,
  143. .a-bounceoutL,
  144. .a-rotateout,
  145. .a-rotateoutLT,
  146. .a-rotateoutLB,
  147. .a-rotateoutRT,
  148. .a-rotateoutRB,
  149. .a-flipoutX,
  150. .a-flipoutY {
  151. -webkit-animation: .3s ease-in forwards;
  152. -moz-animation: .3s ease-in forwards;
  153. -ms-animation: .3s ease-in forwards;
  154. animation: .3s ease-in forwards;
  155. -moz-transform: translate3d(0,0,0);
  156. -ms-transform: translate3d(0,0,0);
  157. -o-transform: translate3d(0,0,0);
  158. transform: translate3d(0,0,0);
  159. }
  160. /* 淡入 */
  161. .a-fadein {
  162. -webkit-animation-name: fadein;
  163. -moz-animation-name: fadein;
  164. -ms-animation-name: fadein;
  165. animation-name: fadein;
  166. }
  167. /* 淡出 */
  168. .a-fadeout {
  169. -webkit-animation-name: fadeout;
  170. -moz-animation-name: fadeout;
  171. -ms-animation-name: fadeout;
  172. animation-name: fadeout;
  173. }
  174. /* 弹入 */
  175. .a-bouncein {
  176. -webkit-animation-name: bouncein;
  177. -moz-animation-name: bouncein;
  178. -ms-animation-name: bouncein;
  179. animation-name: bouncein;
  180. }
  181. /* 弹出 */
  182. .a-bounceout {
  183. -webkit-animation-name: bounceout;
  184. -moz-animation-name: bounceout;
  185. -ms-animation-name: bounceout;
  186. animation-name: bounceout;
  187. }
  188. /* 淡入 */
  189. @keyframes fadein {
  190. 0% {
  191. opacity: 0;
  192. }
  193. 100% {
  194. opacity: 1;
  195. }
  196. }
  197. /* 淡出 */
  198. @keyframes fadeout {
  199. 0% {
  200. opacity: 1;
  201. }
  202. 100% {
  203. opacity: 0;
  204. }
  205. }
  206. /* 弹入 */
  207. @keyframes bouncein {
  208. 0% {
  209. opacity: 0;
  210. transform: scale(0.3);
  211. }
  212. 100% {
  213. opacity: 1;
  214. transform: scale(1);
  215. }
  216. }
  217. /* 弹出 */
  218. @keyframes bounceout {
  219. 0% {
  220. opacity: 1;
  221. transform: scale(1);
  222. }
  223. 100% {
  224. opacity: 0;
  225. transform: scale(0.3);
  226. }
  227. }