authorize.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /* pages/authorize/authorize.wxss */
  2. @import '../../app.wxss';
  3. .Popup {
  4. width: 500rpx;
  5. background-color: #fff;
  6. position: fixed;
  7. top: 50%;
  8. left: 50%;
  9. margin-left: -250rpx;
  10. transform: translateY(-50%);
  11. z-index: 320;
  12. }
  13. .Popup image {
  14. width: 150rpx;
  15. height: 150rpx;
  16. margin: -67rpx auto 0 auto;
  17. display: block;
  18. border: 8rpx solid #fff;
  19. border-radius: 50%;
  20. }
  21. .Popup .title {
  22. font-size: 28rpx;
  23. color: #000;
  24. text-align: center;
  25. margin-top: 30rpx;
  26. }
  27. .Popup .tip {
  28. font-size: 22rpx;
  29. color: #555;
  30. padding: 0 24rpx;
  31. margin-top: 25rpx;
  32. }
  33. .Popup .tip a {
  34. color: rgb(243, 70, 70);
  35. }
  36. .Popup .bottom .item {
  37. width: 50%;
  38. height: 80rpx;
  39. background-color: #eeeeee;
  40. text-align: center;
  41. line-height: 80rpx;
  42. font-size: 24rpx;
  43. color: #666;
  44. margin-top: 54rpx;
  45. }
  46. .Popup .bottom .item.on {
  47. width: 100%;
  48. }
  49. .flex {
  50. display: flex;
  51. }
  52. .Popup .bottom .item.grant {
  53. font-size: 28rpx;
  54. color: #fff;
  55. font-weight: bold;
  56. background-color: #e93323;
  57. border-radius: 0;
  58. padding: 0;
  59. }
  60. .mask {
  61. position: fixed;
  62. top: 0;
  63. right: 0;
  64. left: 0;
  65. bottom: 0;
  66. background-color: rgba(0, 0, 0, 0.65);
  67. z-index: 310;
  68. }