| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /* pages/register/register.wxss */
- .container {
- min-height: 100vh;
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 40rpx;
- }
- .register-box {
- width: 100%;
- max-width: 600rpx;
- background: #fff;
- border-radius: 20rpx;
- padding: 60rpx 40rpx;
- box-shadow: 0 10rpx 40rpx rgba(0, 0, 0, 0.1);
- }
- .title {
- font-size: 48rpx;
- font-weight: bold;
- color: #333;
- text-align: center;
- margin-bottom: 60rpx;
- }
- .form {
- width: 100%;
- }
- .input-group {
- margin-bottom: 30rpx;
- }
- .input {
- width: 100%;
- height: 88rpx;
- padding: 0 30rpx;
- border: 2rpx solid #e0e0e0;
- border-radius: 10rpx;
- font-size: 28rpx;
- box-sizing: border-box;
- }
- .input:focus {
- border-color: #667eea;
- }
- .register-btn {
- width: 100%;
- height: 88rpx;
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- color: #fff;
- border-radius: 10rpx;
- font-size: 32rpx;
- font-weight: bold;
- margin-top: 40rpx;
- border: none;
- }
- .register-btn::after {
- border: none;
- }
- .register-btn[disabled] {
- opacity: 0.6;
- }
|