authorizedLoginDialog.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /* componets/authorized-login-dialog/authorizedLoginDialog.wxss */
  2. .dialog-bg {
  3. width: 100vw;
  4. min-height: 730rpx;
  5. height: 730rpx;
  6. background: #F7F7F7;
  7. border-radius: 32rpx 32rpx 0 0;
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. position: relative;
  12. }
  13. .close-btn {
  14. position: absolute;
  15. right: 0;
  16. top: 0;
  17. width: 128rpx;
  18. height: 128rpx;
  19. display: flex;
  20. flex-direction: column;
  21. align-items: center;
  22. justify-content: center;
  23. }
  24. .title-box {
  25. width: 100%;
  26. margin-top: 40rpx;
  27. display: flex;
  28. flex-direction: row;
  29. align-items: center;
  30. }
  31. .logo {
  32. width: 48rpx;
  33. margin-left: 40rpx;
  34. height: 48rpx;
  35. }
  36. .title {
  37. margin-left: 16rpx;
  38. color: #333333;
  39. font-size: 32rpx;
  40. }
  41. .desc {
  42. margin: 20rpx 40rpx 0;
  43. color: #666666;
  44. font-size: 24rpx;
  45. }
  46. .avatar-wrapper {
  47. width: 128rpx;
  48. padding: 0;
  49. display: block;
  50. border-radius: 100%;
  51. border: 0;
  52. overflow: hidden;
  53. height: 128rpx;
  54. margin: 20rpx auto 0;
  55. }
  56. .avatar {
  57. width: 128rpx;
  58. height: 128rpx;
  59. display: block;
  60. }
  61. button::after {
  62. border: 0;
  63. }
  64. .nickname-input {
  65. width: calc(100% - 120rpx);
  66. height: 80rpx;
  67. padding: 0 30rpx;
  68. margin-top: 40rpx;
  69. background: #EEEEEE;
  70. color: #333333;
  71. border-radius: 80rpx;
  72. font-size: 28rpx;
  73. }
  74. .custom-input-button {
  75. width: calc(100% - 80rpx);
  76. height: 80rpx;
  77. margin-top: 40rpx;
  78. line-height: 80rpx;
  79. text-align: left;
  80. background: #EEEEEE;
  81. color: #888888;
  82. border-radius: 80rpx;
  83. font-size: 28rpx !important;
  84. }
  85. .auth-button {
  86. width: calc(100% - 80rpx);
  87. line-height: 80rpx;
  88. margin-top: 40rpx;
  89. font-size: 32rpx;
  90. border-radius: 80rpx;
  91. height: 80rpx;
  92. background: linear-gradient(315deg, #0ABCA4 0%, rgba(11, 195, 170, 0.8) 100%);
  93. color: #FFFFFF;
  94. }
  95. button[disabled] {
  96. color: #FFFFFF;
  97. background: linear-gradient(315deg, #0ABCA4 0%, rgba(11, 195, 170, 0.8) 100%);
  98. opacity: 0.6;
  99. }
  100. .mask-content {
  101. background: rgba(0, 0, 0, 0.3);
  102. position: absolute;
  103. top: 0;
  104. left: 0;
  105. right: 0;
  106. bottom: 0;
  107. width: 100%;
  108. height: 100%;
  109. display: flex;
  110. flex-direction: column;
  111. align-items: center;
  112. border-radius: 32rpx 32rpx 0 0;
  113. }
  114. .custom-loading {
  115. display: block;
  116. margin-top: 350rpx;
  117. }