auth.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. .form-box{
  2. width: 100%;
  3. height: auto;
  4. overflow: hidden;
  5. padding: 0 40rpx;
  6. margin-top: 96rpx;
  7. background: #fff;
  8. }
  9. .form-item{
  10. position: relative;
  11. background: #fff;
  12. height: 96rpx;
  13. border-bottom: 1px solid #d9d9d9;
  14. }
  15. .form-item .username, .form-item .password, .form-item .code{
  16. position: absolute;
  17. top: 26rpx;
  18. left: 0;
  19. display: block;
  20. width: 100%;
  21. height: 44rpx;
  22. background: #fff;
  23. color: #333;
  24. font-size: 30rpx;
  25. }
  26. .form-item-code{
  27. margin-top:32rpx;
  28. height: auto;
  29. overflow: hidden;
  30. width: 100%;
  31. }
  32. .form-item-code .form-item{
  33. float: left;
  34. width: 350rpx;
  35. }
  36. .form-item-code .code-img{
  37. float: right;
  38. margin-top: 4rpx;
  39. height: 88rpx;
  40. width: 236rpx;
  41. }
  42. .form-item .clear{
  43. position: absolute;
  44. top: 26rpx;
  45. right: 18rpx;
  46. z-index: 2;
  47. display: block;
  48. background: #fff;
  49. height: 44rpx;
  50. width: 44rpx;
  51. }
  52. .btn{
  53. margin: 60rpx 0 40rpx 0;
  54. height: 96rpx;
  55. line-height: 96rpx;
  56. color: #fff;
  57. font-size: 30rpx;
  58. width: 100%;
  59. background: #ef5a5a;
  60. border-radius: 6rpx;
  61. }
  62. .form-item-text{
  63. height: 35rpx;
  64. width: 100%;
  65. }
  66. .form-item-text .register{
  67. display: block;
  68. height: 34rpx;
  69. float: left;
  70. font-size: 28rpx;
  71. color: #999;
  72. }
  73. .form-item-text .reset{
  74. display: block;
  75. height: 34rpx;
  76. float: right;
  77. font-size: 28rpx;
  78. color: #999;
  79. }
  80. .userinfo {
  81. display: flex;
  82. flex-direction: column;
  83. align-items: center;
  84. }
  85. .userinfo-avatar {
  86. width: 128rpx;
  87. height: 128rpx;
  88. margin: 20rpx;
  89. border-radius: 50%;
  90. }
  91. .userinfo-nickname {
  92. color: #aaa;
  93. }