1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /* mycustomer/pages/success/success.wxss */
- .successpage {
- width: 100%;
- height: 100vh;
- position: relative;
- overflow: hidden;
- background-color: #249DFA;
- }
- .success-top {
- width: 100%;
- height: 30%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .success-top image {
- width: 260rpx;
- height: 200rpx;
- }
- .success-top text {
- color: #fff;
- font-size: 32rpx;
- margin-top: 20rpx;
- }
- .success-bottom {
- width: 100%;
- height: 80%;
- position: relative;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .success-bottom .bottomBg {
- position: absolute;
- width: 100%;
- height: 100%;
- z-index: 0;
- }
- .successQrBox {
- width: 80%;
- height: 500rpx;
- position: relative;
- z-index: 2;
- margin-bottom: 300rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .qrBox {
- width: 450rpx;
- height: 450rpx;
- position: relative;
- display: flex;
- justify-content: center;
- align-items: center;
- top: 20rpx;
- }
- .qrBox .qrBoxBg {
- position: absolute;
- width: 100%;
- height: 100%;
- }
- .imgicon{
- display: block;
- width: 380rpx;
- height: 380rpx;
- }
- .text1 {
- font-size: 32rpx;
- color: #333333;
- font-weight: 700;
- }
- .text2 {
- font-size: 24rpx;
- color: #999999;
- margin: 10rpx 0rpx;
- }
- .pt20 {
- position: relative;
- top: 60rpx;
- }
|