Blame view

unpackage/dist/dev/mp-weixin/pages/inputCarNumber/inputCarNumber.wxss 3.86 KB
4b045f7c   刘淇   江阴初始化项目
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
  .so-mask.data-v-7ccb2f34 {
    z-index: 998;
  }
  .so-plate.data-v-7ccb2f34 {
    box-sizing: border-box;
    padding: 25rpx 25rpx 0 25rpx;
  }
  .so-plate-head.data-v-7ccb2f34 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .so-plate-type.data-v-7ccb2f34 {
    flex: 1;
    display: block;
  }
  .so-plate-type label.data-v-7ccb2f34 {
    display: inline-block;
    min-height: 32rpx;
    font-size: 26rpx;
    margin-right: 10rpx;
  }
  .so-plate-body.data-v-7ccb2f34 {
    box-sizing: border-box;
    padding: 30rpx 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .so-plate-word.data-v-7ccb2f34 {
    border: 1rpx solid #ccc;
    border-radius: 10rpx;
    height: 0;
    margin: 0 5rpx;
    box-sizing: border-box;
    padding-bottom: calc((100% - 70rpx) / 7);
    width: calc((100% - 70rpx) / 7);
    position: relative;
  }
  .so-plate-word.active.data-v-7ccb2f34 {
    border-color: #007aff;
    box-shadow: 0 0 15rpx 0 #007aff;
  }
  .so-plate-word text.data-v-7ccb2f34 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    font-weight: 700;
    font-size: 32rpx;
  }
  .so-plate-dot.data-v-7ccb2f34 {
    width: 15rpx;
    height: 15rpx;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5rpx;
  }
  .so-plate-keyboard.data-v-7ccb2f34 {
    background: #eee;
    margin-left: -25rpx;
    margin-right: -25rpx;
    padding: 20rpx 25rpx 10rpx 25rpx;
    box-sizing: border-box;
    transition: all 0.3s;
  }
  .so-plate-keyboard > view.data-v-7ccb2f34 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .so-plate-key.data-v-7ccb2f34 {
    display: block;
    background: #fff;
    border-radius: 10rpx;
    box-shadow: 0 0 8rpx 0 #bbb;
    width: 80rpx;
    height: 80rpx;
    margin: 5rpx 5rpx;
    font-size: 32rpx;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .so-plate-key.hover.data-v-7ccb2f34 {
    background: #efefef;
  }
  .so-plate-key.fill-block.data-v-7ccb2f34 {
    width: 80rpx;
    height: 80rpx;
    background: none;
    box-shadow: none;
  }
  .so-plate-btn.data-v-7ccb2f34 {
    display: inline-block;
    background: #fff;
    border-radius: 10rpx;
    box-shadow: 0 0 10rpx 0 #bbb;
    font-size: 28rpx;
    text-align: center;
    margin: 0 0 0 10rpx;
    padding: 0 25rpx;
  }
  .so-plate-btn-group.data-v-7ccb2f34 {
    display: flex;
    justify-content: space-between;
    background: #eee;
    margin-left: -25rpx;
    margin-right: -25rpx;
    box-sizing: border-box;
    padding: 0 25rpx 10rpx 25rpx;
  }
  .so-plate-btn--cancel.data-v-7ccb2f34 {
    margin: 0;
  }
  .so-plate-btn--submit.data-v-7ccb2f34 {
    background: #5773f9;
    color: #fff;
  }
  .so-plate-btn--delete.data-v-7ccb2f34 {
    color: #fd6b6d;
  }
  .animation-scale-up.data-v-7ccb2f34 {
    -webkit-animation-duration: 0.2s;
            animation-duration: 0.2s;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: scale-up-data-v-7ccb2f34;
            animation-name: scale-up-data-v-7ccb2f34;
  }
  @-webkit-keyframes scale-up-data-v-7ccb2f34 {
  0% {
      opacity: 0.8;
      -webkit-transform: scale(0.8);
              transform: scale(0.8);
  }
  100% {
      opacity: 1;
      -webkit-transform: scale(1);
              transform: scale(1);
  }
  }
  @keyframes scale-up-data-v-7ccb2f34 {
  0% {
      opacity: 0.8;
      -webkit-transform: scale(0.8);
              transform: scale(0.8);
  }
  100% {
      opacity: 1;
      -webkit-transform: scale(1);
              transform: scale(1);
  }
  }
  .bg-icon.data-v-7ccb2f34 {
    /*padding: 10px 0;*/
    height: 60px;
    /*background: url("../../static/inputCarNumber_pic/carBg.png") no-repeat;*/
    /*background-size: 100% 100%;*/
    color: #FFF;
  }
  .bac.data-v-7ccb2f34 {
    position: absolute;
    width: 100%;
    height: 60px;
  }
  .bg-text.data-v-7ccb2f34 {
    width: 100%;
    position: absolute;
    top: 10px;
    text-align: center;
  }