register.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* pages/login/register.wxss */
  2. .head-img{
  3. border-radius: 50%;
  4. width: 156rpx;
  5. height: 156rpx;
  6. margin: 20rpx auto;
  7. }
  8. .input-active {
  9. border-bottom: 1rpx #fb4747 solid;
  10. }
  11. .login-page {
  12. height: 100%;
  13. display: flex;
  14. flex-direction: column;
  15. align-items: center;
  16. padding: 100rpx 100rpx 0;
  17. box-sizing: border-box;
  18. }
  19. input {
  20. width: 100%;
  21. height: 50rpx;
  22. margin-top: 60rpx;
  23. border-bottom: 1rpx #2c2c2c solid;
  24. padding-bottom: 10rpx;
  25. font-size: 32rpx;
  26. }
  27. .code-input {
  28. width: 40%;
  29. height: 50rpx;
  30. margin-top: 60rpx;
  31. border-bottom: 1rpx #2c2c2c solid;
  32. padding-bottom: 10rpx;
  33. font-size: 32rpx;
  34. float: left;
  35. }
  36. .code-button {
  37. background-color: #fb4747;
  38. width: 50%;
  39. float: left;
  40. margin-top: 60rpx;
  41. margin-left: 20rpx;
  42. }
  43. .login {
  44. width: 100%;
  45. height: 80rpx;
  46. line-height: 80rpx;
  47. background-color: #fb4747;
  48. color: white;
  49. font-size: 32rpx;
  50. border-radius: 20rpx;
  51. margin-top: 100rpx;
  52. text-align: center;
  53. }
  54. .register-btn {
  55. font-size: 32rpx;
  56. color: #8a8a8a;
  57. text-decoration: underline;
  58. }
  59. .demo-people-link {
  60. color: #00c0fa;
  61. text-decoration: underline;
  62. }
  63. .hover{
  64. background-color: #fb4747;
  65. }