authorizeBox.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /* components/authorizeBox/authorizeBox.wxss */
  2. .mask {
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. z-index: 999;
  7. width: 100%;
  8. height: 100%;
  9. background: rgba(0, 0, 0, 0.7);
  10. display: flex;
  11. align-items: center;
  12. justify-content: center;
  13. opacity: 0;
  14. transition: all 0.35s;
  15. }
  16. .showAuthorizeBox {
  17. opacity: 1;
  18. }
  19. .containers {
  20. width: 600rpx;
  21. height: 750rpx;
  22. border-radius: 30rpx;
  23. }
  24. .content {
  25. padding: 30rpx;
  26. width: 100%;
  27. height: calc(100% - 130rpx);
  28. border-radius: 30rpx;
  29. background: #f7f7f7;
  30. box-sizing: border-box;
  31. box-shadow: 0px 0px 20rpx 0px #515151;
  32. }
  33. .title {
  34. width: 100%;
  35. text-align: center;
  36. height: 80rpx;
  37. font-family: "苹方M";
  38. font-size: 32rpx;
  39. color: #313131;
  40. }
  41. .introduce-box {
  42. width: 100%;
  43. height: calc(100% - 180rpx);
  44. }
  45. .introduce {
  46. padding-bottom: 50rpx;
  47. width: 100%;
  48. font-family: "苹方R";
  49. font-size: 28rpx;
  50. line-height: 45rpx;
  51. color: #313131;
  52. }
  53. .item {
  54. width: 100%;
  55. height: 80rpx;
  56. display: flex;
  57. align-items: center;
  58. border-bottom: 1px solid #eeeeee;
  59. }
  60. .label {
  61. width: 160rpx;
  62. height: 80rpx;
  63. line-height: 80rpx;
  64. font-family: "苹方R";
  65. font-size: 28rpx;
  66. color: #515151;
  67. text-align: left;
  68. }
  69. .value {
  70. width: 0;
  71. flex: 1;
  72. height: 100%;
  73. color: #313131;
  74. font-family: "苹方M";
  75. font-size: 28rpx;
  76. }
  77. .value>input {
  78. width: 100%;
  79. height: 100%;
  80. }
  81. .button-box {
  82. width: 100%;
  83. height: 100rpx;
  84. display: flex;
  85. align-items: center;
  86. justify-content: center;
  87. }
  88. .button-box>button {
  89. margin: 0;
  90. padding: 0;
  91. width: 100%;
  92. height: 80rpx;
  93. line-height: 80rpx;
  94. text-align: center;
  95. border-radius: 40rpx;
  96. background: #4686F6;
  97. }
  98. .close {
  99. margin: auto;
  100. margin-top: 50rpx;
  101. position: relative;
  102. width: 80rpx;
  103. height: 80rpx;
  104. background: rgba(255, 255, 255, .5);
  105. border-radius: 50%;
  106. display: flex;
  107. align-items: center;
  108. justify-content: center;
  109. box-shadow: 0px 0px 20rpx 0px #515151;
  110. }
  111. .close::after {
  112. position: absolute;
  113. content: "";
  114. width: 60rpx;
  115. height: 8rpx;
  116. border-radius: 4rpx;
  117. background: #ffffff;
  118. rotate: 45deg;
  119. }
  120. .close::before {
  121. position: absolute;
  122. content: "";
  123. width: 60rpx;
  124. height: 8rpx;
  125. border-radius: 4rpx;
  126. background: #ffffff;
  127. rotate: -45deg;
  128. }