authorizedLoginDialog.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. border: 0;
  50. height: 128rpx;
  51. margin: 20rpx auto 0;
  52. }
  53. .avatar {
  54. width: 128rpx;
  55. height: 128rpx;
  56. display: block;
  57. }
  58. button::after {
  59. border: 0;
  60. }
  61. .nickname-input {
  62. width: calc(100% - 120rpx);
  63. height: 80rpx;
  64. padding: 0 30rpx;
  65. margin-top: 40rpx;
  66. background: #EEEEEE;
  67. color: #333333;
  68. border-radius: 80rpx;
  69. font-size: 28rpx;
  70. }
  71. .custom-input-button {
  72. width: calc(100% - 80rpx);
  73. height: 80rpx;
  74. margin-top: 40rpx;
  75. line-height: 80rpx;
  76. text-align: left;
  77. background: #EEEEEE;
  78. color: #888888;
  79. border-radius: 80rpx;
  80. font-size: 28rpx !important;
  81. }
  82. .auth-button {
  83. width: calc(100% - 80rpx);
  84. line-height: 80rpx;
  85. margin-top: 40rpx;
  86. font-size: 32rpx;
  87. border-radius: 80rpx;
  88. height: 80rpx;
  89. background: linear-gradient(315deg, #0ABCA4 0%, rgba(11, 195, 170, 0.8) 100%);
  90. color: #FFFFFF;
  91. }
  92. button[disabled] {
  93. color: #FFFFFF;
  94. background: linear-gradient(315deg, #0ABCA4 0%, rgba(11, 195, 170, 0.8) 100%);
  95. opacity: 0.6;
  96. }