forked from nsjcy/frontEnd/nsjcy

liuwh
2020-02-24 2bcd556961208b80af1cb157633c594faab1eca2
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
/* pages/xsjb/xsjb.wxss */
 
page {
  background: #f1f1f1;
}
 
.cu-form-group .title {
  min-width: calc(4em + 30rpx);
}
 
#form-dom input {
  text-align: right;
}
 
#form-dom .cu-form-group {
  min-height: auto;
  padding: 20rpx 30rpx;
  position: relative;
  font-size: 28rpx;
}
 
#form-dom .cu-form-group:after {
  content: " ";
  position: absolute;
  left: 30rpx;
  bottom: 0;
  right: 0;
  height: 2rpx;
  border-bottom: 2rpx solid #d9d9d9;
  color: #d9d9d9;
  transform-origin: 0 100%;
  transform: scaleY(0.5);
}
 
#form-dom .cu-form-group .title {
  height: 30rpx;
  line-height: 30rpx;
  font-size: 28rpx;
}
 
#form-dom .cu-form-group input {
  font-size: 28rpx;
}