WXL
11 小时以前 05c363fdd7ab04e3bd9a753e2c5d5bfff04d681c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
 
.container.data-v-8c973bde {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background: linear-gradient(to bottom right, #e6f7ff, #ffffff);
        padding: 40rpx;
        box-sizing: border-box;
}
.form-box.data-v-8c973bde {
        width: 100%;
        max-width: 600rpx;
        background-color: #fff;
        padding: 60rpx 40rpx;
        border-radius: 24rpx;
        box-shadow: 0 12rpx 32rpx rgba(0, 0, 0, 0.1);
}
.form-title.data-v-8c973bde {
        text-align: center;
        font-size: 40rpx;
        font-weight: bold;
        margin-bottom: 40rpx;
        color: #333;
}
.input.data-v-8c973bde {
        width: 100%;
        padding: 40rpx;
        margin-bottom: 32rpx;
        border: 1rpx solid #ccc;
        border-radius: 16rpx;
        font-size: 30rpx;
        background-color: #f9f9f9;
        box-sizing: border-box;
        transition: all 0.3s ease;
}
.input.data-v-8c973bde:focus {
        border-color: #1890ff;
        background-color: #fff;
        outline: none;
}
.register-btn.data-v-8c973bde {
        width: 100%;
        padding: 20rpx 0;
        font-size: 32rpx;
        color: #fff;
        background: linear-gradient(to right, #36d1dc, #5b86e5);
        border: none;
        border-radius: 50rpx;
        box-shadow: 0 8rpx 20rpx rgba(91, 134, 229, 0.3);
        transition: all 0.2s ease-in-out;
}
.register-btn.data-v-8c973bde:active {
        transform: scale(0.97);
        opacity: 0.9;
}