index.less 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. .btn {
  2. padding: 16rpx 0rpx;
  3. text-align: center;
  4. border-radius: 50rpx;
  5. width: 220rpx;
  6. font-size: 30rpx;
  7. color: white;
  8. background-color: #F84041;
  9. box-shadow: 0 6rpx 14rpx 0 rgba(251, 79, 80, 0.76);
  10. }
  11. .uploadBox {
  12. position: fixed;
  13. top: 0px;
  14. left: 0px;
  15. width: 100vw;
  16. height: 100vh;
  17. background-color: rgba(0, 0, 0, 0.3);
  18. z-index: 999;
  19. .upload {
  20. position: absolute;
  21. left: 0rpx;
  22. right: 0rpx;
  23. top: 30%;
  24. margin: auto;
  25. color: white;
  26. text-align: center;
  27. box-sizing: border-box;
  28. font-size: 32rpx;
  29. font-weight: bold;
  30. z-index: 998;
  31. .tipsImg {
  32. width: 221rpx;
  33. height: 190rpx;
  34. margin-right: 30rpx;
  35. margin-bottom: 12rpx;
  36. }
  37. .speed {
  38. position: relative;
  39. margin: 14rpx auto;
  40. text-align: center;
  41. font-size: 50rpx;
  42. animation: jump 1s ease-out infinite;
  43. }
  44. @keyframes jump {
  45. 0% {
  46. opacity: 0;
  47. }
  48. 50% {
  49. opacity: 1;
  50. }
  51. 100% {
  52. opacity: 0;
  53. }
  54. }
  55. }
  56. }
  57. .successBox {
  58. position: fixed;
  59. top: 0px;
  60. left: 0px;
  61. width: 100vw;
  62. height: 100vh;
  63. z-index: 999;
  64. background-color: rgba(0, 0, 0, 0.438);
  65. .success {
  66. background-color: white;
  67. width: 558rpx;
  68. height: 520rpx;
  69. position: absolute;
  70. left: 0rpx;
  71. right: 0rpx;
  72. top: 0rpx;
  73. bottom: 0px;
  74. margin: auto;
  75. border-radius: 30rpx;
  76. background-color: white;
  77. font-size: 30rpx;
  78. padding: 35rpx;
  79. box-sizing: border-box;
  80. text-align: center;
  81. font-size: 36rpx;
  82. .icon {
  83. width: 100rpx;
  84. height: 100rpx;
  85. }
  86. .tips1 {
  87. margin: 16rpx 0rpx 34rpx;
  88. }
  89. .tips2 {
  90. margin-bottom: 15rpx;
  91. }
  92. .shareBtn {
  93. width: 280rpx;
  94. margin: 60rpx auto 0rpx;
  95. padding: 14rpx 0rpx;
  96. color: white;
  97. background-image: linear-gradient(270deg, #FC5556 0%, #F84041 100%, #14C962 100%);
  98. box-shadow: 0 6rpx 14rpx 0 rgba(251, 79, 80, 0.76);
  99. border-radius: 40rpx;
  100. }
  101. }
  102. }
  103. .eeee {
  104. position: fixed;
  105. top: 0px;
  106. left: 0px;
  107. width: 100vw;
  108. height: 100vh;
  109. background-color: rebeccapurple;
  110. }