2025-03-31 15:26:29 +00:00
|
|
|
@import url("@/assets/css/element-ui.scss");
|
|
|
|
|
|
|
|
|
|
$table-color: #3498db;
|
|
|
|
|
$text-color: #e74c3c;
|
|
|
|
|
$background-color: transparent;
|
|
|
|
|
$oneMenu-width: 20%;
|
|
|
|
|
|
|
|
|
|
html {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
height: 100%;
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
height: 100%;
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
|
|
|
|
|
"Microsoft YaHei", "微软雅黑", Arial, sans-serif;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
text-rendering: optimizelegibility;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#app {
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 滚动条样式
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 5px;
|
|
|
|
|
height: 3px;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// /定义滚动条轨道 内阴影+圆角/
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
/* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// /定义滑块 内阴影+圆角/
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
/* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); */
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.demo-button {
|
|
|
|
|
.el-form-item__content {
|
|
|
|
|
border: 0 !important;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#home {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: relative;
|
|
|
|
|
.app-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 5;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
background: url(../img/backimg.png);
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
.header {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 93px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
background: url(../img/top.png);
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
.header-left {
|
|
|
|
|
height: 35px;
|
|
|
|
|
margin-left: 41px;
|
|
|
|
|
margin-top: 13px;
|
|
|
|
|
img {
|
|
|
|
|
width: 290px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.header-main {
|
|
|
|
|
width: 30%;
|
|
|
|
|
height: 60px;
|
|
|
|
|
line-height: 60px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
.textTile {
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
img {
|
|
|
|
|
width: 354px;
|
|
|
|
|
height: 42px;
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.header-menu {
|
|
|
|
|
height: 40px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-right: 40px;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
.menuItem {
|
2025-04-12 15:15:32 +00:00
|
|
|
width: 305px;
|
2025-03-31 15:26:29 +00:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
2025-04-12 15:15:32 +00:00
|
|
|
margin-right: 10px;
|
2025-03-31 15:26:29 +00:00
|
|
|
.menuFor {
|
|
|
|
|
width: 41px;
|
|
|
|
|
height: 41px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
.itemIcon {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.menuItemQuanping {
|
|
|
|
|
width: 10%;
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
.menuFor {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
.itemIcon {
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.user {
|
|
|
|
|
width: 15%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
margin-right: 30px;
|
|
|
|
|
.el-dropdown {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
height: 100%;
|
|
|
|
|
img {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.time {
|
|
|
|
|
width: 93px;
|
|
|
|
|
height: 36px;
|
|
|
|
|
.top {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 50%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
.time_date {
|
|
|
|
|
width: 50px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
span {
|
|
|
|
|
border: 0.2px solid #000;
|
|
|
|
|
background-color: #000;
|
|
|
|
|
}
|
|
|
|
|
.weather {
|
|
|
|
|
width: 50%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-left: 1px solid #ccc;
|
|
|
|
|
margin-left: 5px;
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
img {
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
}
|
|
|
|
|
.weather_text {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
margin-left: 2px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.date {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 50%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
letter-spacing: 1px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.left-sidebar {
|
|
|
|
|
width: 18%;
|
|
|
|
|
height: calc(100% - 90px);
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 60px;
|
|
|
|
|
left: 0;
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
background: url(../img/botom-left.png);
|
|
|
|
|
background-size: 100% 105%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
padding: 0 40px;
|
|
|
|
|
.stats {
|
|
|
|
|
width: 80%;
|
|
|
|
|
height: 280px;
|
|
|
|
|
margin-top: 15%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
.stat-item {
|
|
|
|
|
width: 50%;
|
|
|
|
|
height: 50%;
|
|
|
|
|
background: url(../img/bottom-waring.png);
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
// 禁止换行
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
.stat-name {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 50%;
|
|
|
|
|
line-height: 70px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.drone-list {
|
|
|
|
|
width: 80%;
|
|
|
|
|
height: calc(100% - 280px);
|
|
|
|
|
margin-top: 25px;
|
|
|
|
|
.title {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 40px;
|
|
|
|
|
}
|
|
|
|
|
ul {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc(75% - 40px);
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
li {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 83px;
|
|
|
|
|
border-bottom: 1px dashed #ccc;
|
|
|
|
|
.top {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 30%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
.left {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
background: url(../img/index.png);
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.text {
|
|
|
|
|
width: calc(100% - 20px);
|
|
|
|
|
height: 100%;
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #d1f2ff;
|
|
|
|
|
text-align: left;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.main {
|
|
|
|
|
width: calc(100% - 30px);
|
|
|
|
|
height: 65%;
|
|
|
|
|
margin-left: 30px;
|
|
|
|
|
.top_main {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 50%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
text-align: left;
|
|
|
|
|
.text {
|
|
|
|
|
width: 50%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.left-contract {
|
|
|
|
|
width: 25px;
|
|
|
|
|
height: 80px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 89%;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.right-sidebar {
|
|
|
|
|
width: 18%;
|
|
|
|
|
height: calc(100% - 90px);
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 60px;
|
|
|
|
|
right: 0;
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
background: url(../img/botom-right.png);
|
|
|
|
|
background-size: 100% 105%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
padding: 0 40px;
|
|
|
|
|
.device-status {
|
|
|
|
|
width: 95%;
|
|
|
|
|
height: 40%;
|
|
|
|
|
margin-left: 10%;
|
|
|
|
|
margin-top: 15%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-wrap: wrap;
|
2025-04-12 15:15:32 +00:00
|
|
|
justify-content: flex-start;
|
|
|
|
|
align-content: flex-start;
|
2025-03-31 15:26:29 +00:00
|
|
|
.device-item {
|
|
|
|
|
//一排三个
|
|
|
|
|
width: 30%;
|
|
|
|
|
height: 30%;
|
2025-04-12 15:15:32 +00:00
|
|
|
margin-left: 3%;
|
|
|
|
|
margin-top: 2%;
|
2025-03-31 15:26:29 +00:00
|
|
|
.device-icon {
|
|
|
|
|
width: 66px;
|
|
|
|
|
height: 66px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.device-info {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 40px;
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #fff;
|
|
|
|
|
.device-name {
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.markers {
|
|
|
|
|
width: 95%;
|
|
|
|
|
height: 42%;
|
|
|
|
|
margin-left: 10%;
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
.title {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 40px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
ul {
|
|
|
|
|
height: calc(100% - 40px);
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
margin-left: 7%;
|
|
|
|
|
li {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 75px;
|
|
|
|
|
border-bottom: 1px dashed #ccc;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
.left {
|
|
|
|
|
width: 25px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
line-height: 75px;
|
|
|
|
|
}
|
|
|
|
|
.main {
|
|
|
|
|
width: calc(100% - 25px);
|
|
|
|
|
margin-left: 25px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
.top_main {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 50%;
|
|
|
|
|
color: #fff;
|
|
|
|
|
text-align: left;
|
|
|
|
|
line-height: 37px;
|
|
|
|
|
.text {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
.text1 {
|
|
|
|
|
color: #ccc;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.right-contract {
|
|
|
|
|
width: 25px;
|
|
|
|
|
height: 80px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 89%;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.mars3d-popup-background {
|
|
|
|
|
box-shadow: 0 0px 0px rgba(0, 0, 0, 0.4);
|
|
|
|
|
background: url(../img/uavBack.png);
|
|
|
|
|
background-size: 117% 117%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
.mians {
|
|
|
|
|
width: 350px;
|
|
|
|
|
height: 350px;
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
height: 50px;
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #fff;
|
|
|
|
|
margin-left: 5%;
|
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.imgs {
|
|
|
|
|
width: 93%;
|
|
|
|
|
height: 185px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
margin-top: 3%;
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.device-type {
|
|
|
|
|
width: 320px;
|
|
|
|
|
height: 65px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
margin-top: 3%;
|
|
|
|
|
.txt {
|
|
|
|
|
width: 150px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
line-height: 32px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
|
|
|
|
|
|
.p1 {
|
|
|
|
|
min-width: 58px;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
background-color: rgba(55, 58, 70, 1);
|
|
|
|
|
text-align: center;
|
|
|
|
|
// 禁止换行
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.p2 {
|
|
|
|
|
min-width: 102px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
// 禁止换行
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.mars3d-popup-tip-container {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.login {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
background: url(../img/backLogin.png);
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
|
|
|
|
|
.login_back {
|
|
|
|
|
width: 525px;
|
|
|
|
|
height: 550px;
|
|
|
|
|
background: url(../img/loginBtom.png);
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
/*关键*/
|
|
|
|
|
background-position: center;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
2025-04-02 14:59:58 +00:00
|
|
|
left: 50%;
|
2025-03-31 15:26:29 +00:00
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
.text_title {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 92px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 20%;
|
|
|
|
|
font-size: 36px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.login_user {
|
|
|
|
|
width: 70%;
|
|
|
|
|
height: 9%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
// background-color: red;
|
|
|
|
|
top: 48%;
|
|
|
|
|
left: 16%;
|
|
|
|
|
.user_input {
|
|
|
|
|
width: 87%;
|
|
|
|
|
height: 40px;
|
|
|
|
|
border: 1px solid #fff;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
// input:-internal-autofill-previewed,
|
|
|
|
|
// input:-internal-autofill-selected {
|
|
|
|
|
// -webkit-text-fill-color: white;
|
|
|
|
|
// transition: background-color 5000s ease-out 0.5s;
|
|
|
|
|
// }
|
|
|
|
|
.el-input__inner {
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding-left: 35px;
|
|
|
|
|
}
|
|
|
|
|
.el-input__suffix {
|
|
|
|
|
width: 10%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
background: url(../img/user.svg);
|
|
|
|
|
background-size: 70% 100%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
.el-input__suffix-inner {
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.login_pass {
|
|
|
|
|
width: 70%;
|
|
|
|
|
height: 9%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 62%;
|
|
|
|
|
left: 16%;
|
|
|
|
|
|
|
|
|
|
.user_input {
|
|
|
|
|
width: 87%;
|
|
|
|
|
height: 40px;
|
|
|
|
|
border: 1px solid #fff;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
// input:-internal-autofill-previewed,
|
|
|
|
|
// input:-internal-autofill-selected {
|
|
|
|
|
// -webkit-text-fill-color: white;
|
|
|
|
|
// transition: background-color 5000s ease-out 0.5s;
|
|
|
|
|
// }
|
|
|
|
|
.el-input__inner {
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding-left: 35px;
|
|
|
|
|
}
|
|
|
|
|
.el-input__suffix {
|
|
|
|
|
width: 10%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
background: url(../img/pass.svg);
|
|
|
|
|
background-size: 70% 100%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
.el-input__suffix-inner {
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logon {
|
|
|
|
|
width: 62%;
|
|
|
|
|
height: 7%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
background: url(../img/Button.png);
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
top: 75%;
|
|
|
|
|
left: 20%;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
.abnormal {
|
|
|
|
|
height: 20px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
color: red;
|
|
|
|
|
bottom: 20%;
|
|
|
|
|
left: 25%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|