1
mayisheng
2022-08-15 81f54040c2cb65537c6c6e1db8358a39a57dea0d
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
178
179
180
181
182
183
184
185
186
.popup-nav {
 
    ul {
        display: flex;
        height: 40px;
        justify-content: center;
        align-items: center;
        background: #03a9f4;
 
        li {
            margin: 0 4px;
            flex: 1;
            min-width: 72px;
            height: 30px;
            line-height: 30px;
            list-style: none;
            font-size: .875rem;
            text-align: center;
            border: 1px solid rgb(0, 208, 255);
            border-radius: 15px;
            cursor: pointer;
 
            .popup-icon {
                display: inline-block;
                width: .875rem;
                height: .875rem;
                vertical-align: middle;
            }
 
            .come-nav {
                background: url(/img/icon/come.png) no-repeat;
                background-size: 100% 100%;
            }
 
            .start-nav {
                background: url(/img/icon/start.png) no-repeat;
                background-size: 100% 100%;
            }
 
            .qr-code-nav {
                background: url(/img/icon/qr-code.png) no-repeat;
                background-size: 100% 100%;
            }
 
            .atlas-nav {
                background: url(/img/icon/atlas.png) no-repeat;
                background-size: 100% 100%;
            }
 
            .live-action-nav {
                background: url(/img/icon/live-action.png) no-repeat;
                background-size: 100% 100%;
            }
 
            .monitor-nav {
                background: url(/img/icon/monitor.png) no-repeat;
                background-size: 100% 100%;
            }
 
        }
    }
}
 
.btm-box {
    height: 36px;
}
 
.arc-box {
 
 
    .tab-btn {
        display: flex;
        height: 36px;
        line-height: 36px;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid #dee2e6;
        box-sizing: border-box;
 
 
        li {
            height: 100%;
            flex: 1;
            text-align: center;
            cursor: pointer;
        }
 
        li.on {
            color: rgb(255, 251, 0);
            border-bottom: 1px solid rgb(255, 251, 0);
        }
    }
 
    .btm-content {
        max-height: 180px;
        overflow-y: auto;
 
        div {
            display: none;
        }
 
        div.on {
            display: block;
        }
 
        li {
            padding-left: 4px;
            height: 32px;
            line-height: 32px;
            border-bottom: 1px solid #dee2e6;
            cursor: pointer;
 
            .popup-icon {
                display: inline-block;
                width: 12px;
                height: 12px;
                vertical-align: middle;
            }
 
            .location-icon {
                background: url(/img/icon/location.png) no-repeat;
                background-size: 100% 100%;
            }
        }
 
        li:hover {
            background: #666;
        }
    }
}
 
.site,
.phone {
    font-size: 0.875rem;
    line-height: 24px;
 
    strong {
        font-size: 0.875rem;
    }
}
 
.introduce {
 
    strong {
        font-size: 0.875rem;
    }
 
    p {
        white-space: normal !important;
        word-wrap: break-word !important;
        min-width: 396px;
        max-width: 492px;
        font-size: 0.875rem;
        line-height: 24px;
    }
}
 
.label-wrap {
 
    .title {
 
        .audio-control {
            position: absolute;
            top: 0;
            right: 34px;
            bottom: 0;
            left: auto;
            margin: auto;
            width: 20px;
            height: 20px;
            cursor: pointer;
        }
 
        .close-box {
            position: absolute;
            top: 0;
            right: 8px;
            bottom: 0;
            left: auto;
            margin: auto;
            width: 16px;
            height: 16px;
            cursor: pointer;
        }
    }
}