index.wxss 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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(255, 255, 255, 0);
  18. z-index: 999;
  19. }
  20. .uploadBox .upload {
  21. position: absolute;
  22. left: 0rpx;
  23. right: 0rpx;
  24. top: 30%;
  25. margin: auto;
  26. width: 293rpx;
  27. height: 293rpx;
  28. border-radius: 30rpx;
  29. color: white;
  30. background-color: rgba(0, 0, 0, 0.8);
  31. text-align: center;
  32. padding: 0rpx 38rpx;
  33. box-sizing: border-box;
  34. font-size: 30rpx;
  35. z-index: 998;
  36. }
  37. .uploadBox .upload .speed {
  38. margin-top: 70rpx;
  39. }
  40. .uploadBox .upload .speedProgress {
  41. border-radius: 50rpx;
  42. overflow: hidden;
  43. margin: 18rpx 0rpx 60rpx;
  44. }
  45. .successBox {
  46. position: fixed;
  47. top: 0px;
  48. left: 0px;
  49. width: 100vw;
  50. height: 100vh;
  51. z-index: 999;
  52. background-color: rgba(0, 0, 0, 0.438);
  53. }
  54. .successBox .success {
  55. width: 558rpx;
  56. height: 520rpx;
  57. position: absolute;
  58. left: 0rpx;
  59. right: 0rpx;
  60. top: 0rpx;
  61. bottom: 0px;
  62. margin: auto;
  63. border-radius: 30rpx;
  64. background-color: white;
  65. font-size: 30rpx;
  66. padding: 35rpx;
  67. box-sizing: border-box;
  68. text-align: center;
  69. font-size: 36rpx;
  70. }
  71. .successBox .success .icon {
  72. width: 100rpx;
  73. height: 100rpx;
  74. }
  75. .successBox .success .tips1 {
  76. margin: 16rpx 0rpx 34rpx;
  77. }
  78. .successBox .success .tips2 {
  79. margin-bottom: 15rpx;
  80. }
  81. .successBox .success .shareBtn {
  82. width: 280rpx;
  83. margin: 60rpx auto 0rpx;
  84. padding: 14rpx 0rpx;
  85. color: white;
  86. background-image: linear-gradient(270deg, #FC5556 0%, #F84041 100%, #14C962 100%);
  87. box-shadow: 0 6rpx 14rpx 0 rgba(251, 79, 80, 0.76);
  88. border-radius: 40rpx;
  89. }
  90. .eeee {
  91. position: fixed;
  92. top: 0px;
  93. left: 0px;
  94. width: 100vw;
  95. height: 100vh;
  96. background-color: rebeccapurple;
  97. }