123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- /* mycustomer/pages/channelsignup/channelsignup.wxss */
- page {
- background-color: #f5f5f5;
- }
- .signupBox {
- position: fixed;
- width: 100%;
- height: 140rpx;
- background-color: #fff;
- bottom: 0rpx;
- left: 0rpx;
- display: flex;
- flex-direction: row;
- }
- .leftBox {
- flex: 3;
- display: flex;
- align-items: center;
- font-size: 28rpx;
- box-sizing: border-box;
- padding: 0px 30rpx;
- }
- .leftBox > text {
- margin-left: 20rpx;
- }
- .logoBox {
- width: 60rpx;
- height: 60rpx;
- }
- .rightBox {
- flex:2;
- display: flex;
- align-items: center;
- box-sizing: border-box;
- padding-right: 30rpx;
- justify-content: flex-end;
- }
- .rightBox button {
- height: 80rpx;
- background-color: #24A1F9;
- font-size: 28rpx;
- color: #fff;
- line-height: 80rpx;
- width: 260rpx;
- border-radius: 40rpx;
- }
- .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-top: 30%;
- 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: 450rpx;
- height: 450rpx;
- }
- .text1 {
- font-size: 32rpx;
- color: #333333;
- font-weight: 700;
- }
- .text2 {
- font-size: 24rpx;
- color: #999999;
- margin: 10rpx 0rpx;
- }
- .pt20 {
- position: relative;
- top: 60rpx;
- }
|