index.less 1.7 KB

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