| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /* pages/authorize/authorize.wxss */
- @import '../../app.wxss';
- .Popup {
- width: 500rpx;
- background-color: #fff;
- position: fixed;
- top: 50%;
- left: 50%;
- margin-left: -250rpx;
- transform: translateY(-50%);
- z-index: 320;
- }
- .Popup image {
- width: 150rpx;
- height: 150rpx;
- margin: -67rpx auto 0 auto;
- display: block;
- border: 8rpx solid #fff;
- border-radius: 50%;
- }
- .Popup .title {
- font-size: 28rpx;
- color: #000;
- text-align: center;
- margin-top: 30rpx;
- }
- .Popup .tip {
- font-size: 22rpx;
- color: #555;
- padding: 0 24rpx;
- margin-top: 25rpx;
- }
- .Popup .tip a {
- color: rgb(243, 70, 70);
- }
- .Popup .bottom .item {
- width: 50%;
- height: 80rpx;
- background-color: #eeeeee;
- text-align: center;
- line-height: 80rpx;
- font-size: 24rpx;
- color: #666;
- margin-top: 54rpx;
- }
- .Popup .bottom .item.on {
- width: 100%;
- }
- .flex {
- display: flex;
- }
- .Popup .bottom .item.grant {
- font-size: 28rpx;
- color: #fff;
- font-weight: bold;
- background-color: #e93323;
- border-radius: 0;
- padding: 0;
- }
- .mask {
- position: fixed;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.65);
- z-index: 310;
- }
|