| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /* 二维码弹窗 */
- .public_dialog {
- background-color: rgba(1, 1, 1, 0.6);
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 2;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .code_inner {
- width: 600upx;
- border-radius: 24upx;
- position: relative;
- background-color: #fff;
- padding: 60upx 0 50upx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .code_img_out {
- width: 44upx;
- height: 44upx;
- position: absolute;
- right: 10upx;
- top: 10upx;
- z-index: 1;
- padding: 10upx;
- }
- .code_img {
- width: 100%;
- height: 200upx;
- position: absolute;
- top: 0;
- left: 0;
- }
- .code_tit {
- font-size: 40upx;
- font-weight: 500;
- position: relative;
- color: #fff;
- }
- .code_card {
- font-size: 28upx;
- font-family: Arial;
- font-weight: 400;
- color: rgba(255, 255, 255, 1);
- margin: 23upx 0 107upx;
- position: relative;
- }
- .code_subtit {
- font-size: 28upx;
- }
- .code_con {
- margin: 30upx 0;
- width: 340upx;
- height: 340upx;
- }
- .code_tip {
- font-size: 26upx;
- color: #a6a6a6;
- }
- .qr_code {
- box-sizing: content-box;
- width: 340upx;
- height: 340upx;
- padding: 10upx 0;
- }
|