register.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* pages/register/register.wxss */
  2. .container {
  3. min-height: 100vh;
  4. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. padding: 40rpx;
  9. }
  10. .register-box {
  11. width: 100%;
  12. max-width: 600rpx;
  13. background: #fff;
  14. border-radius: 20rpx;
  15. padding: 60rpx 40rpx;
  16. box-shadow: 0 10rpx 40rpx rgba(0, 0, 0, 0.1);
  17. }
  18. .title {
  19. font-size: 48rpx;
  20. font-weight: bold;
  21. color: #333;
  22. text-align: center;
  23. margin-bottom: 60rpx;
  24. }
  25. .form {
  26. width: 100%;
  27. }
  28. .input-group {
  29. margin-bottom: 30rpx;
  30. }
  31. .input {
  32. width: 100%;
  33. height: 88rpx;
  34. padding: 0 30rpx;
  35. border: 2rpx solid #e0e0e0;
  36. border-radius: 10rpx;
  37. font-size: 28rpx;
  38. box-sizing: border-box;
  39. }
  40. .input:focus {
  41. border-color: #667eea;
  42. }
  43. .register-btn {
  44. width: 100%;
  45. height: 88rpx;
  46. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  47. color: #fff;
  48. border-radius: 10rpx;
  49. font-size: 32rpx;
  50. font-weight: bold;
  51. margin-top: 40rpx;
  52. border: none;
  53. }
  54. .register-btn::after {
  55. border: none;
  56. }
  57. .register-btn[disabled] {
  58. opacity: 0.6;
  59. }