guonan
2025-04-14 9e860a560c5a4b81abe2042b8d8698e253730502
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
.screen {
    position: absolute;
    top: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: 99;
}
 
.nonebg {
    background: none !important;
}
 
.screen-top {
    background: url("@/assets/img/screen/topbg.png");
    width: 100%;
    height: 189px;
    position: absolute;
    z-index: 99;
}
 
.screen-left {
    background: url("@/assets/img/screen/leftbg.png");
    width: 549px;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 99;
}
 
.screen-right {
    background: url("@/assets/img/screen/rightbg.png");
    width: 549px;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
}
 
.screen-bottom {
    background: url("@/assets/img/screen/bottombg.png");
    width: 100%;
    height: 132px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 99;
}
 
.screen-top-logo {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    /* left: calc(50% - 432px); */
    /* width: 865px; */
    /* height: 120px; */
    width: 1024px;
    height: 100px;
    background: url("@/assets/img/screen/logo.png");
    pointer-events: all;
    cursor: pointer;
    z-index: 99;
}
 
.screen-leftbg {
    background: url("@/assets/img/screen/leftbr.png");
    background-size: 100% calc(100% - 10px);
    width: calc(50% - 10px);
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 99;
}
 
.screen-rightbg {
    background: url("@/assets/img/screen/rightbr.png");
    background-size: 100% calc(100% - 10px);
    width: calc(50% - 10px);
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 99;
}
 
.screen-widget-weather {
    position: absolute;
    top: 40px;
    left: 30px;
    cursor: pointer;
    pointer-events: all;
    z-index: 99;
}
 
.screen-widget-weather .screen-widget-icon {
    background: url("@/assets/img/screen/weathericon.png");
    cursor: pointer;
}
 
.screen-widget-home {
    position: absolute;
    top: 40px;
    right: 160px;
    cursor: pointer;
    pointer-events: all;
    z-index: 99;
}
 
.screen-widget-home .screen-widget-icon {
    background: url("@/assets/img/screen/homeicon.png");
    cursor: pointer;
}
 
.screen-widget-location {
    position: absolute;
    top: 40px;
    right: 60px;
    cursor: pointer;
    pointer-events: all;
    z-index: 99;
}
 
.screen-widget-location .screen-widget-icon {
    background: url("@/assets/img/screen/locationicon.png");
    cursor: pointer;
}
 
.screen-widget-icon {
    width: 25px;
    height: 25px;
    float: left;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
 
.screen-widget-text {
    color: #d3fffe;
    float: left;
    line-height: 25px;
    margin-left: 5px;
}