|
@@ -66,6 +66,7 @@ header .showTime {
|
|
|
top: .225rem;
|
|
|
color: rgba(255, 255, 255, 0.7);
|
|
|
font-size: 0.25rem;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
|
|
|
.mainbox {
|
|
@@ -98,6 +99,11 @@ header .showTime {
|
|
|
box-shadow: inset 0px -56px 99px 2px #03369F;
|
|
|
position: relative;
|
|
|
margin-bottom: .975rem;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+.mainbox .column .panel:hover {
|
|
|
+ /* opacity: .7 */
|
|
|
}
|
|
|
|
|
|
.mainbox .column .panel .light-color {
|
|
@@ -190,8 +196,9 @@ header .showTime {
|
|
|
.gas-container {
|
|
|
text-align: center;
|
|
|
color: #fff;
|
|
|
- margin-top: .5rem;
|
|
|
+ margin-top: .325rem;
|
|
|
position: relative;
|
|
|
+ height: calc(11rem)
|
|
|
}
|
|
|
|
|
|
.gas-container h3 {
|
|
@@ -224,13 +231,22 @@ header .showTime {
|
|
|
font-size: 0.25rem;
|
|
|
height: 0.575rem;
|
|
|
line-height: 0.575rem;
|
|
|
- background: url(../../assets/images/card-bg.png);
|
|
|
- background-size: cover;
|
|
|
+ box-shadow: inset 0 0 0.2rem 0.0125rem rgba(3, 54, 159, 1);
|
|
|
+ /* background: rgba(5, 37, 166, 0.26);*/
|
|
|
+ border: 1px solid rgba(5, 37, 166, 0.8);
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
|
|
|
+.cardTabs li.active {
|
|
|
+ box-shadow: inset 0 0 29px 17px rgb(3 54 159);
|
|
|
+}
|
|
|
+
|
|
|
.cardTabs li:first-child {
|
|
|
- background: url(../../assets/images/card-bg1-active.png);
|
|
|
+ -webkit-border-top-left-radius: 7px;
|
|
|
+}
|
|
|
+
|
|
|
+.cardTabs li:last-child {
|
|
|
+ -webkit-border-top-right-radius: 7px;
|
|
|
}
|
|
|
|
|
|
.tabBox {
|
|
@@ -351,7 +367,160 @@ header .showTime {
|
|
|
}
|
|
|
|
|
|
|
|
|
-/* 电气火灾卡片 */
|
|
|
+/* */
|
|
|
+
|
|
|
+.gasRecord {
|
|
|
+ display: flex;
|
|
|
+ min-width: 1024px;
|
|
|
+ max-width: 1920px;
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: .375rem 2.5rem 0;
|
|
|
+}
|
|
|
+
|
|
|
+.gasRecord>.recordItem {
|
|
|
+ flex: 1;
|
|
|
+ padding: .1875rem;
|
|
|
+ margin: 0 .375rem;
|
|
|
+ box-shadow: inset 0 0 0.2rem 0.0125rem rgb(3 54 159);
|
|
|
+ border: 1px solid #1257c9;
|
|
|
+}
|
|
|
+
|
|
|
+.recordItem h3 {
|
|
|
+ font-size: .25rem;
|
|
|
+ border-bottom: 1px solid rgba(3, 54, 159, .2);
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+.recordItem h3:after {
|
|
|
+ position: absolute;
|
|
|
+ bottom: -.1625rem;
|
|
|
+ left: .25rem;
|
|
|
+ right: .25rem;
|
|
|
+ height: 1px;
|
|
|
+ content: '';
|
|
|
+ -webkit-transform: scaleY(.5);
|
|
|
+ transform: scaleY(.5);
|
|
|
+ background-color: #548ffd;
|
|
|
+}
|
|
|
+
|
|
|
+.recordItem ul {
|
|
|
+ display: inline-block;
|
|
|
+ padding: 0 .45rem
|
|
|
+}
|
|
|
+
|
|
|
+.recordItem ul li {
|
|
|
+ line-height: 2;
|
|
|
+ font-size: .225rem
|
|
|
+}
|
|
|
+
|
|
|
+.recordItem ul:first-child li {
|
|
|
+ text-align: right
|
|
|
+}
|
|
|
+
|
|
|
+.recordItem ul:last-child li {
|
|
|
+ text-align: left
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+/* 巡检时间表start */
|
|
|
+
|
|
|
+.record-container {
|
|
|
+ padding: 0.375rem;
|
|
|
+ height: calc(100vh - 2.025rem);
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+.gas-container>.timeItem {
|
|
|
+ width: 3.925rem;
|
|
|
+ display: inline-block;
|
|
|
+ height: 1rem;
|
|
|
+ line-height: 1rem;
|
|
|
+ text-align: center;
|
|
|
+ margin: 0 0.3125rem 0.45rem;
|
|
|
+ color: #fff;
|
|
|
+ font-size: 0.325rem;
|
|
|
+ background: rgba(18, 87, 201, 0.26);
|
|
|
+ border: 2px solid #548fff;
|
|
|
+ border-radius: 42px;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+.timeItem:hover {
|
|
|
+ box-shadow: inset 0 0 0.2rem 0.0125rem red;
|
|
|
+ background: rgba(255, 18, 18, 0.26);
|
|
|
+ border: 2px solid #ff1212;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+/*带背景的分页按钮背景色begin*/
|
|
|
+
|
|
|
+.el-pagination.is-background .el-pager li {
|
|
|
+ opacity: 1;
|
|
|
+ background: rgba(5, 37, 166, 0.26);
|
|
|
+ border: 1px solid #1c47ff;
|
|
|
+ color: #fff;
|
|
|
+ /* width: .325rem;
|
|
|
+ height: .325rem;
|
|
|
+ line-height: .325rem */
|
|
|
+}
|
|
|
+
|
|
|
+.el-pagination.is-background .el-pager li:not(.disabled).active {
|
|
|
+ background-color: rgba(5, 37, 166, 1);
|
|
|
+ /* color: #FFF; */
|
|
|
+}
|
|
|
+
|
|
|
+.el-pagination.is-background .el-pager li.active {
|
|
|
+ cursor: default;
|
|
|
+}
|
|
|
+
|
|
|
+.el-pagination.is-background .el-pager li:hover {
|
|
|
+ color: #1c47ff;
|
|
|
+}
|
|
|
+
|
|
|
+.el-pagination.is-background .el-pager li:not(.disabled):hover {
|
|
|
+ color: #1c47ff
|
|
|
+}
|
|
|
+
|
|
|
+.el-pagination.is-background .el-pager li:not(.disabled).active:hover {
|
|
|
+ background-color: rgba(5, 37, 166, 1);
|
|
|
+ color: #FFF;
|
|
|
+}
|
|
|
+
|
|
|
+.el-pagination.is-background .btn-next,
|
|
|
+.el-pagination.is-background .btn-prev,
|
|
|
+.el-pagination.is-background .el-pager li {
|
|
|
+ background: rgba(5, 37, 166, 0.26);
|
|
|
+ border: 1px solid #1c47ff;
|
|
|
+}
|
|
|
+
|
|
|
+.el-pagination .btn-next,
|
|
|
+.el-pagination .btn-prev {
|
|
|
+ color: #fff
|
|
|
+}
|
|
|
+
|
|
|
+.el-pagination.is-background .btn-next.disabled,
|
|
|
+.el-pagination.is-background .btn-next:disabled,
|
|
|
+.el-pagination.is-background .btn-prev.disabled,
|
|
|
+.el-pagination.is-background .btn-prev:disabled,
|
|
|
+.el-pagination.is-background .el-pager li.disabled {
|
|
|
+ color: #aaa
|
|
|
+}
|
|
|
+
|
|
|
+.el-input__inner {
|
|
|
+ background: rgba(5, 37, 166, 0.26);
|
|
|
+ border: 1px solid #1c47ff;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.el-pagination__jump {
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+/*带背景的分页按钮背景色end*/
|
|
|
+
|
|
|
+
|
|
|
+/* end */
|
|
|
|
|
|
@keyframes rotatel {
|
|
|
from {
|