index.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. }
  20. .uploadBox .upload {
  21. position: absolute;
  22. left: 0rpx;
  23. right: 0rpx;
  24. top: 30%;
  25. margin: auto;
  26. color: white;
  27. text-align: center;
  28. box-sizing: border-box;
  29. font-size: 32rpx;
  30. font-weight: bold;
  31. z-index: 998;
  32. }
  33. .uploadBox .upload .tipsImg {
  34. width: 221rpx;
  35. height: 190rpx;
  36. margin-right: 30rpx;
  37. margin-bottom: 12rpx;
  38. }
  39. .uploadBox .upload .speed {
  40. position: relative;
  41. margin: 14rpx auto;
  42. text-align: center;
  43. font-size: 50rpx;
  44. animation: jump 1s ease-out infinite;
  45. }
  46. @keyframes jump {
  47. 0% {
  48. opacity: 0;
  49. }
  50. 50% {
  51. opacity: 1;
  52. }
  53. 100% {
  54. opacity: 0;
  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. }
  66. .successBox .success {
  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. }
  83. .successBox .success .icon {
  84. width: 100rpx;
  85. height: 100rpx;
  86. }
  87. .successBox .success .tips1 {
  88. margin: 16rpx 0rpx 34rpx;
  89. }
  90. .successBox .success .tips2 {
  91. margin-bottom: 15rpx;
  92. }
  93. .successBox .success .shareBtn {
  94. width: 280rpx;
  95. margin: 60rpx auto 0rpx;
  96. padding: 14rpx 0rpx;
  97. color: white;
  98. background-image: linear-gradient(270deg, #FC5556 0%, #F84041 100%, #14C962 100%);
  99. box-shadow: 0 6rpx 14rpx 0 rgba(251, 79, 80, 0.76);
  100. border-radius: 40rpx;
  101. }
  102. .eeee {
  103. position: fixed;
  104. top: 0px;
  105. left: 0px;
  106. width: 100vw;
  107. height: 100vh;
  108. background-color: rebeccapurple;
  109. }