.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;
|
}
|