王飞
2025-03-07 c5e49c10499435802a6551b98772f95660c6f85a
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
.print {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: $ztd-color-white;
    z-index: 99;
 
    .model {
        margin-top: 20rpx;
        padding: 0 20rpx;
        font-size: 26rpx;
        color: $ztd-text-color-grey;
        margin-bottom: 160rpx;
    }
 
    .break-off {
        height: 40rpx;
        line-height: 40rpx;
        width: 130rpx;
        border-radius: 8rpx;
        color: #fdd605;
        font-size: 30rpx;
        text-align: center;
        background-color: #515151;
        margin-top: 12rpx;
    }
 
    .button-wraper {
        display: flex;
        margin: 0 10rpx;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
 
    .shadow {
        box-shadow: $ztd-shadow;
        border-radius: $ztd-border-radius;
        background: $ztd-color-white;
        margin: 20rpx;
        padding: 20rpx !important;
    }
 
    .Connecting {
        // width: 100%;
        display: flex;
        align-items: center;
 
        text {
            font-weight: bold;
        }
 
        &-flex {
            flex: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
 
        &-name {
            font-size: 30rpx;
            margin-left: 10rpx;
        }
    }
 
    .search-cted-selected {
        color: $ztd-color-white;
        background-color: $ztd-color-primary;
    }
 
    .search-cted {
        color: $ztd-color-primary;
        border: 2rpx solid $ztd-color-primary;
    }
 
    .search-cted,
    .search-cted-selected {
        font-size: 30rpx;
        width: 100rpx;
        height: 40rpx;
        text-align: center;
        border-radius: 8rpx;
    }
 
    .print-nearby {
        // width: 100%;
        
        .name {
            font-size: 32rpx;
            font-weight: bold;
        }
        
        &-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40rpx;
            
            .matching {
                font-size: 32rpx;
                font-weight: bold;
            }
            
            .break {
                width: 100rpx;
                height: 40rpx;
                line-height: 40rpx;
                text-align: center;
                background-color: $uni-color-error;
                color: $ztd-color-white;
                border-radius: $ztd-border-radius;
            }
        }
 
        &-list {
            max-height: 280rpx;
            overflow-y: auto !important;
            z-index: 999;
 
            &-search {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 30rpx;
 
                .search-titID {
                    font-size: 30rpx;
 
                    text {
                        margin-left: 10rpx;
                        font-size: 32rpx;
                        font-weight: 700;
                    }
                }
            }
        }
    }
 
    .print-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 30rpx;
        left: 0;
        right: 0;
 
        &-tab {
            width: 29%;
            text-align: center;
            padding: 25rpx 0;
            background-color: $ztd-color-primary;
            box-shadow: $ztd-shadow;
            font-size: 30rpx;
            color: $ztd-color-white;
            border-radius: $ztd-border-radius;
            margin-right: 10rpx;
        }
    }
}