1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .btn {
- padding: 16rpx 0rpx;
- text-align: center;
- border-radius: 50rpx;
- width: 220rpx;
- font-size: 30rpx;
- color: white;
- background-color: #F84041;
- box-shadow: 0 6rpx 14rpx 0 rgba(251, 79, 80, 0.76);
- }
- .uploadBox {
- position: fixed;
- top: 0px;
- left: 0px;
- width: 100%;
- height: 100%;
- background-color: rgba(255, 255, 255, 0);
- z-index: 999;
- }
- .uploadBox .upload {
- position: absolute;
- left: 0rpx;
- right: 0rpx;
- top: 30%;
- margin: auto;
- width: 293rpx;
- height: 293rpx;
- border-radius: 30rpx;
- color: white;
- background-color: rgba(0, 0, 0, 0.8);
- text-align: center;
- padding: 0rpx 38rpx;
- box-sizing: border-box;
- font-size: 30rpx;
- z-index: 998;
- }
- .uploadBox .upload .speed {
- margin-top: 70rpx;
- }
- .uploadBox .upload .speedProgress {
- border-radius: 50rpx;
- overflow: hidden;
- margin: 18rpx 0rpx 60rpx;
- }
- .successBox {
- background-color: rgba(0, 0, 0, 0.438);
- }
- .successBox .success {
- width: 558rpx;
- height: 520rpx;
- position: absolute;
- left: 0rpx;
- right: 0rpx;
- top: 0rpx;
- bottom: 0px;
- margin: auto;
- border-radius: 30rpx;
- background-color: white;
- font-size: 30rpx;
- padding: 35rpx;
- box-sizing: border-box;
- text-align: center;
- font-size: 36rpx;
- }
- .successBox .success .icon {
- width: 100rpx;
- height: 100rpx;
- }
- .successBox .success .tips1 {
- margin: 16rpx 0rpx 34rpx;
- }
- .successBox .success .tips2 {
- margin-bottom: 15rpx;
- }
- .successBox .success .shareBtn {
- width: 280rpx;
- margin: 60rpx auto 0rpx;
- padding: 14rpx 0rpx;
- color: white;
- background-image: linear-gradient(270deg, #FC5556 0%, #F84041 100%, #14C962 100%);
- box-shadow: 0 6rpx 14rpx 0 rgba(251, 79, 80, 0.76);
- border-radius: 40rpx;
- }
|