1.picker-mask {
2  width: 100%;
3  height: 100vh;
4  background-color: rgba(0, 0, 0, 0.5);
5  position: absolute;
6  top: 0;
7  z-index: 1000;
8  display: flex;
9  flex-direction: row;
10  justify-content: center;
11  align-items: center;
12}
13
14.picker-contenter {
15  position: relative;
16  width: 80%;
17  background-color: white;
18  display: flex;
19  flex-direction: column;
20  align-items: center;
21  justify-content: center;
22  border-radius: 4rpx;
23}
24
25.pick-button-row {
26  display: flex;
27  flex-direction: row;
28  margin-left: 200rpx;
29}
30
31.picker-button {
32  background: none;
33  border: none;
34  color: rgb(0, 162, 255);
35  width: 150rpx;
36  height: 100rpx;
37  font-size: 32rpx;
38}
39
40.picker-button-hover {
41  background: none;
42  border: 1rpx solid rgb(0, 162, 255);
43  color: rgb(168, 168, 168);
44  width: 150rpx;
45  height: 100rpx;
46}
47
48.wifi-picker {
49  width: 80%;
50}