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
| .list {
| display: flex;
| min-height: 80rpx;
| background-color: #FFF;
| margin-top: 20rpx;
| box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
| }
| .list:first-child {
| margin-top: 310rpx;
| }
| .list:last-child {
| margin-bottom: 120rpx;
| }
| .list-left {
| display: flex;
| flex-direction: column;
| margin-left: 20rpx;
| width: 80vw;
| }
| .list-left-item {
| min-height: 40rpx;
| line-height: 40rpx;
| display: flex;
| }
| .desc {
| min-height: 40rpx;
| display: flex;
| align-items: center;
| width: 20%;
| }
| .left-item {
| display: flex;
| flex-wrap: wrap;
| width: 75%;
| margin: 1px 1px 1px 1px;
| /* color: #409EFF; */
| }
| .list-right {
| display: flex;
| width: 20vw;
| justify-content: space-between;
| align-items: center;
| margin-right: 20rpx;
| }
| .buttom {
| width: 100%;
| position: fixed;
| bottom: 0;
| left: 0;
| display: flex;
| align-items: center;
| justify-content: space-between;
| height: 100rpx;
| background-color: #FFF;
| box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.4) ;
| }
| .popup {
| width: 80vw;
| min-height: 100rpx;
| background-color: #FFF;
| border-radius: 25rpx;
| }
| .title {
| height: 100rpx;
| line-height: 100rpx;
| width: 100%;
| color: #606266;
| text-align: center;
| font-size: 16px;
| }
| .popup-item {
| height: 80rpx;
| line-height: 80rpx;
| display: flex;
| align-items: center;
| font-size: 14px;
| }
| .popup-item-left {
| width: 16vw;
| padding-right: 20rpx;
| text-align: right;
| color: #606266;
| }
| .popup-item-right {
| display: flex;
| align-items: center;
| width: 50vw;
| height: 50rpx;
| padding: 2px 5px;
| border: 1px solid #E4E7ED;
| border-radius: 5rpx;
| }
| .popup-item-right input{
| color: #606266;
| }
| .btn {
| display: flex;
| height: 90rpx;
| margin-top: 20rpx;
| border-top: 1px solid #DCDFE6;
| justify-content: center;
| align-items: center;
| }
| .btn-left {
| display: flex;
| flex: 1;
| height: 100%;
| justify-content: center;
| align-items: center;
| color: #606266;
| border-right: 1px solid #DCDFE6;
| }
| .btn-right {
| display: flex;
| flex: 1;
| justify-content: center;
| align-items: center;
| color: #409EFF;
| }
| /* 搜索框 */
| .search-bar {
| background-color: #f8f8f8;
| }
|
|