| lfmylbhf | 839e5a1 | 2025-06-09 18:22:25 +0800 | [diff] [blame^] | 1 | //全局容器样式 |
| 2 | .login-container { |
| 3 | max-width: 1200px; |
| 4 | margin: 0 auto; |
| 5 | padding: 0 2rem; |
| 6 | //display: flex; |
| 7 | //flex-direction: column; |
| 8 | //justify-content: center; |
| 9 | |
| 10 | .form-header { |
| 11 | //margin: auto; |
| 12 | display: flex; |
| 13 | justify-content: center; |
| 14 | font-size: 50px; |
| 15 | margin-bottom: 60px; |
| 16 | } |
| 17 | |
| 18 | .form-field { |
| 19 | display: flex; |
| 20 | justify-content: center; |
| 21 | gap: 0.5rem; |
| 22 | margin-bottom: 50px; |
| 23 | |
| 24 | .form-field-header { |
| 25 | width: 90px; |
| 26 | font-size: 30px; |
| 27 | color: rgba(63, 74, 73, 1); |
| 28 | margin-right: 50px; |
| 29 | } |
| 30 | |
| 31 | input { |
| 32 | width: 400px; |
| 33 | padding: 0.75rem 1rem; |
| 34 | border-radius: 8px; |
| 35 | font-size: 1rem; |
| 36 | color: #2d3748; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | .form-operation { |
| 41 | display: flex; |
| 42 | justify-content: center; |
| 43 | margin-top: 80px; |
| 44 | |
| 45 | .form-operation-button { |
| 46 | width: 150px; |
| 47 | background: rgba(82, 102, 101, 1); |
| 48 | border: 1px solid rgba(82, 102, 101, 1); |
| 49 | border-radius: 20px; |
| 50 | margin-right: 25px; |
| 51 | } |
| 52 | } |
| 53 | } |