form.acss
1.99 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
.form-comp {
background: url('/images/form/form-bg-1.png') center no-repeat;
background-size: 100% 100%;
width: 723rpx;
height: 691rpx;
padding-top: 60rpx;
box-sizing: border-box;
text-align: center;
}
.form-comp-2 {
background: url('/images/form/form-bg-2.png') center no-repeat;
background-size: 100% 100%;
width: 723rpx;
height: 1021rpx;
}
.form-comp .number {
font-size: 52rpx;
font-weight: bold;
letter-spacing: 1.29rpx;
color: #131313;
}
.form-comp .tit {
font-size: 40rpx;
font-weight: bold;
text-align: center;
color: #ff027c;
margin: 14rpx auto 0;
}
.form-comp .tips {
font-size: 23rpx;
font-weight: 600;
color: #727272;
margin: 14rpx auto 0;
}
.form {
margin: 32rpx auto 0;
}
.form-item {
width: 647rpx;
height: 86rpx;
border-radius: 16rpx;
border: solid 1rpx #787878;
background-color: #fcf8ff;
margin: 0 auto 24rpx;
padding: 0 32rpx;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
text-align: left;
}
.form-item .label {
display: flex;
width: 150rpx;
font-weight: bold;
font-size: 32rpx;
}
.form-item .label .requrie {
color: #f00;
font-weight: 500;
}
.form-item .ipt {
background-color: transparent;
flex: 1;
font-size: 28rpx;
}
.form-comp .submit-btn {
background: url('/images/form/submit-btn.png') center no-repeat;
background-size: 100% 100%;
width: 630rpx;
height: 102rpx;
margin: 40rpx auto 0;
}
.form-comp .submit-tips {
margin: 20rpx auto 0;
font-size: 23rpx;
font-weight: 600;
text-align: center;
color: #727272;
}
.form-comp .func {}
.form-comp .func .icon {
background: url('/images/form/icon-question.png') center no-repeat;
background-size: 100% 100%;
width: 30rpx;
height: 30rpx;
}
.untouch {
pointer-events: none;
}
.ani-heart {
animation: ani-heart-key 1.2s linear infinite;
}
@keyframes ani-heart-key {
0% {
transform: scale(1);
}
50% {
transform: scale(1.04);
}
100% {
transform: scale(1);
}
}