.home {
	position: relative;
	/* background-color: #050c18; */
	height: 100vh;
	overflow: auto;
	box-sizing: border-box;
	padding: 16px;
}

.chart {
	background-color: #0f213a;
}

.linetitle {
	display: flex;
	align-items: center;
	font-family: PingFangSC-Regular;
	font-size: 18px;
	color: #FFFFFF;
	font-weight: 400;
}

.linetitle::before {
	content: '';
	display: inline-block;
	margin-right: 8px;
	width: 2px;
	height: 16px;
	background: #1890FF;
}

.home .three {
	height: 280px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.home .three-item {
	display: flex;
	flex-direction: column;
	padding: 8px;
	box-sizing: border-box;
	height: 100%;
	background: #031124;
}

.home .line-title {
	width: 175px;
	height: 24px;
	box-sizing: border-box;
	white-space: nowrap;
	padding: 0 20px;
	line-height: 24px;
	font-size: 14px;
	color: #ffffff;
	background: url(../images/line.png) no-repeat;
	background-size: 100% 100%;
}

.home .temBox {
	margin-top: 35px;
	flex: 1;
	display: flex;
}

.home .temBox .temItem {
	flex: 1;
	height: 100%;
	text-align: center;
}

.home .temBox .temItem-img {
	width: 127px;
	height: 124px;
}

.home .temBox .temItem-text {
	font-size: 12px;
	color: #ffffff;
	margin-top: 8px;
}

.home .guoBox {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.home .guoBox .guoItem {
	cursor: pointer;
	width: 80%;
	margin-right: 10px;
}
.home .guoBox .guoItem img{
	cursor: pointer;
	width: 100%;
	height: 220px;
}
.guoTitle{
	font-size: 24px;
	font-weight: bold;
	color: #ffffff;
}
.home .xiyiji {
}

.home .mapBox {
	margin-top: 10px;
	background: #031124;
	height: 500px;
}

.home .qipaoBox {
	display: flex;
	align-items: center;
	padding: 20px;
	width: 220px;
	height: 68px;
	background: url(../images/qipao.png) no-repeat;
	background-size: 100% 100%;
}

.home .qipaoBox .qiche {
	width: 42px;
	height: 42px;
	margin-right: 16px;
}

.home .qipaoBox .qipao-line {
	width: 1px;
	height: 47px;
	background-image: linear-gradient(180deg, rgba(68, 162, 218, 0) 4%, #79f0ff 51%, rgba(55, 179, 216, 0) 98%);
}

.home .qipaoBox .qipao-right {
	margin-left: 16px;
}

.home .qipaoBox .qipao-right .qp-line {
	font-size: 14px;
	color: #ffffff;
}

.home .scrollTableBox {
	background: #021329;
	padding: 16px;
	margin-bottom: 20px;
}

.home .scrollTableBox .stb-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.home .scrollTableBox .stb-head .tabs {
	display: flex;
	align-items: center;
	border-radius: 20px;
	overflow: hidden;
}

.home .scrollTableBox .stb-head .tabs .tab-item {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	width: 82px;
	height: 36px;
	background: #082c48;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
}

.home .scrollTableBox .stb-head .tabs .tab-item.active {
	background: #1882da;
	color: #ffffff;
}

.home .scrollTableBox .el-table {
	margin-top: 20px;
}

.home .two {
	height: 280px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-bottom: 20px;
}

.home .twoItem {
	display: flex;
	flex-direction: column;
	padding: 8px;
	box-sizing: border-box;
	height: 100%;
	background: #031124;
}

.home .twoItem .line-title {
	margin-bottom: 12px;
}

.home .twoItem .chart {
	flex: 1;
}

.home .two .el-table {
	flex: 1;
}

.grid-table {

	font-size: 8px;
	color: rgba(255, 255, 255, 0.65);
}

.grid-table .grid-table-head {
	background: #1F3553;
}

.grid-table .grid-table-tr {
	padding: 0 5px;
	display: grid;
	align-items: center;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	height: 18px;
}

.grid-table .grid-table-tr.grid-table-head .td {
	font-size: 8px;
	color: rgba(255, 255, 255, 0.85);
}

.grid-table .grid-table-body {
	overflow: auto;
}

.grid-table .grid-table-body .grid-table-tr {
	background: #0F213A;
	border-bottom: 1px solid #203450;
}

.deviceData {
	flex: 1;
}

/* 弹框相关 */
.dialogFixed {}

.mask {
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 998;
	display: none;
}

.dialog {
	width: 0;
	height: 0;
	background: linear-gradient(180deg, #061529 0%, #02090D 100%);
	box-shadow: 0px 2px 17px 0px rgba(107, 172, 255, 0.46);
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 999;
	border-radius: 8px;
	display: none;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.dialogClose {
	display: block;
	width: 24px;
	height: 24px;
	background: url(../images/close.png);
	background-size: 100% 100%;
	position: absolute;
	top: 22px;
	right: 22px;
	display: none;
	transition: 0.3s;
}

.dialogClose:hover {
	transform: rotate(180deg);
}

.dc-title {
	margin: 24px auto;
	/* 	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%); */
	text-align: center;
	line-height: 32px;
	font-size: 18px;
	color: #FFFFFF;

	width: 214px;
	height: 32px;
	background-image: linear-gradient(270deg, rgba(53, 195, 255, 0.00) 0%, #1890FF 50%, rgba(24, 144, 255, 0.00) 100%);
}

.dialog-content {
	height: 100%;
	overflow: hidden;
	padding: 0 20px;
}

/* 弹框相关 end*/


.shuiguoStatus .shuiguoStatus-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.shuiguoStatus .shuiguoStatus-info .shuiguoTable {
	flex: 1;
	margin-left: 20px;
}

.shuiguoStatus .shuiguoStatus-info .chart {
	flex: 1;
	height: 260px;
}


/* 清洗机状态 */
.xiyiji {
	flex: 1;
}

.shuiguoStatus .xiyijiStatus-info {}


.xiyiji-search {
	margin: 20px 0;
	display: flex;
	align-items: center;
}

.xiyiji-search .iptItem {
	margin-right: 20px;
	display: flex;
	align-items: center;
	font-family: PingFangSC-Regular;
	font-size: 14px;
	color: #FFFFFF;
	font-weight: 400;
}

.xiyiji-search .iptItem input {
	box-sizing: border-box;
	padding: 0 6px;
	width: 200px;
	height: 32px;
	background: #13243B;
	border: 1px solid #2B4D68;
	border-radius: 2px;
	color: #ffffff;
}

.xiyijiTable {
	margin-bottom: 20px;
}

.xiyijiStatus .chart {
	margin-top: 20px;
	height: 260px;
}

.deviceStatus .dialog-content{
	display: flex !important;
	flex-direction: column;
}
.deviceStatus-info{
	flex: 1;
	overflow-y: auto;
}

.deviceStatus-info .chart {
	margin: 20px 0;
	height: 260px;
}
