|
@@ -0,0 +1,496 @@
|
|
|
+*,
|
|
|
+*:before,
|
|
|
+*:after {
|
|
|
+ padding: 0;
|
|
|
+ margin: 0;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+html,
|
|
|
+body {
|
|
|
+ height: 100%;
|
|
|
+ font-size: 14px;
|
|
|
+ background-color: #ecffff;
|
|
|
+ font-family: 'Microsoft YaHei', 'Helvetica Neue', Helvetica, 'PingFang SC',
|
|
|
+ 'Hiragino Sans GB', Arial, sans-serif;
|
|
|
+}
|
|
|
+
|
|
|
+.flex {
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+.flex1 {
|
|
|
+ flex: 1;
|
|
|
+}
|
|
|
+.flex2 {
|
|
|
+ flex: 2;
|
|
|
+}
|
|
|
+.flex-around {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+}
|
|
|
+.flex-between {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.flex-end {
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-end;
|
|
|
+}
|
|
|
+.flex-align-center {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.text-center {
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.font12 {
|
|
|
+ font-size: 12px;
|
|
|
+}
|
|
|
+.main-color {
|
|
|
+ color: #40a9ff;
|
|
|
+}
|
|
|
+.danger-color {
|
|
|
+ color: #f15450 !important;
|
|
|
+}
|
|
|
+.error-color {
|
|
|
+ color: #ffc704 !important;
|
|
|
+}
|
|
|
+.btm10 {
|
|
|
+ margin-bottom: 10px;
|
|
|
+}
|
|
|
+.btm20 {
|
|
|
+ margin-bottom: 20px;
|
|
|
+}
|
|
|
+a {
|
|
|
+ text-decoration: none;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+[v-cloak] {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+#app {
|
|
|
+ background: url('../images/page-bg.png') center center no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ padding-top: 10px;
|
|
|
+ height: 100vh;
|
|
|
+ overflow: hidden;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.my-header {
|
|
|
+ position: relative;
|
|
|
+ height: 70px;
|
|
|
+ line-height: 70px;
|
|
|
+ background: url('../images/header-bg.png') center center no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ text-align: center;
|
|
|
+ font-weight: bold;
|
|
|
+ font-size: 32px;
|
|
|
+ font-weight: 600;
|
|
|
+}
|
|
|
+.my-header span {
|
|
|
+ background: linear-gradient(-3deg, #99eeff 0%, #99eeff 30%, #ffffff 91%);
|
|
|
+ -webkit-background-clip: text;
|
|
|
+ -webkit-text-fill-color: transparent;
|
|
|
+}
|
|
|
+.my-header span.right {
|
|
|
+ position: absolute;
|
|
|
+ right: 60px;
|
|
|
+ top: 0px;
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+.main {
|
|
|
+ padding: 15px;
|
|
|
+ display: flex;
|
|
|
+ height: calc(100vh - 25px);
|
|
|
+ background: url('../images/content-bg.png') no-repeat center bottom;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ display: flex;
|
|
|
+ padding-bottom: 65px;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.left,
|
|
|
+.right {
|
|
|
+ flex: 3;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
+.left .my-panel,
|
|
|
+.right .my-panel {
|
|
|
+ background-color: #0050943f;
|
|
|
+ height: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.dv-border-box-8 {
|
|
|
+ margin-bottom: 10px;
|
|
|
+}
|
|
|
+.center {
|
|
|
+ flex: 4;
|
|
|
+}
|
|
|
+.center .top {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
+.center .top .box {
|
|
|
+ flex: 1;
|
|
|
+ margin: 0 10px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ color: #40a9ff;
|
|
|
+}
|
|
|
+.t {
|
|
|
+ padding: 15px 0;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ font-size: 20px;
|
|
|
+ font-weight: 600;
|
|
|
+ background-color: rgba(59, 211, 255, 0.05);
|
|
|
+}
|
|
|
+.t {
|
|
|
+ padding: 15px 0;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ background-color: rgba(59, 211, 255, 0.26);
|
|
|
+}
|
|
|
+.b {
|
|
|
+ padding: 15px 0;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-around;
|
|
|
+ background-color: rgba(59, 211, 255, 0.16);
|
|
|
+ padding: 15px 0;
|
|
|
+}
|
|
|
+.b span {
|
|
|
+ color: #40a9ff;
|
|
|
+ font-size: 34px;
|
|
|
+ font-weight: 900;
|
|
|
+}
|
|
|
+.t img {
|
|
|
+ margin-right: 10px;
|
|
|
+}
|
|
|
+.box > div {
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+.box > img {
|
|
|
+ width: 40px;
|
|
|
+}
|
|
|
+.box > div p {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #e1e3ef;
|
|
|
+}
|
|
|
+.box > div span {
|
|
|
+ display: inline-block;
|
|
|
+ font-size: 28px;
|
|
|
+ margin-right: 5px;
|
|
|
+ font-weight: 600;
|
|
|
+ margin-top: 5px;
|
|
|
+}
|
|
|
+.footer {
|
|
|
+ position: fixed;
|
|
|
+ bottom: 0;
|
|
|
+ padding: 10px;
|
|
|
+ display: flex;
|
|
|
+ background-color: rgba(0, 0, 0, 0.5);
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+.footer a {
|
|
|
+ flex: 1;
|
|
|
+ height: 40px;
|
|
|
+ line-height: 40px;
|
|
|
+ text-align: center;
|
|
|
+ color: #fff;
|
|
|
+ background: url('../images/footer-item.png') no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+}
|
|
|
+.footer a:hover {
|
|
|
+ background: url('../images/footer-item-checked.png') no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+}
|
|
|
+.my-panel .content {
|
|
|
+ height: calc(28vh - 60px);
|
|
|
+}
|
|
|
+.panel-title {
|
|
|
+ position: relative;
|
|
|
+ text-align: center;
|
|
|
+ height: 50px;
|
|
|
+ line-height: 50px;
|
|
|
+}
|
|
|
+.panel-title .text {
|
|
|
+ font-size: 20px;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #05fbfe;
|
|
|
+ text-shadow: 0px 2px 10px rgba(10, 30, 52, 0.48);
|
|
|
+ background: linear-gradient(0deg, #ffffff 0%, #63dcff 0%, #e0f3ff 100%);
|
|
|
+ -webkit-background-clip: text;
|
|
|
+ -webkit-text-fill-color: transparent;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.panel-title .text::before {
|
|
|
+ position: absolute;
|
|
|
+ content: ' ';
|
|
|
+ top: 10px;
|
|
|
+ left: -40px;
|
|
|
+ width: 30px;
|
|
|
+ height: 10px;
|
|
|
+ background: url('../images/title-left.png') no-repeat;
|
|
|
+}
|
|
|
+.panel-title .text::after {
|
|
|
+ position: absolute;
|
|
|
+ content: ' ';
|
|
|
+ top: 10px;
|
|
|
+ right: -40px;
|
|
|
+ width: 30px;
|
|
|
+ height: 10px;
|
|
|
+ background: url('../images/title-right.png') no-repeat;
|
|
|
+}
|
|
|
+.panel-title .right-opr {
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ width: 80px;
|
|
|
+}
|
|
|
+.boxs {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ padding: 10px;
|
|
|
+ color: #40a9ff;
|
|
|
+}
|
|
|
+.boxs > div {
|
|
|
+ flex: 0 0 50%;
|
|
|
+ background: url('../images/left1-bg.png') no-repeat center;
|
|
|
+ background-size: 106% 124%;
|
|
|
+ padding: 20px 30px;
|
|
|
+}
|
|
|
+.boxs > div > p {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: flex-end;
|
|
|
+}
|
|
|
+.boxs > div > p:nth-child(2) {
|
|
|
+ margin-top: 10px;
|
|
|
+}
|
|
|
+.boxs .name {
|
|
|
+ color: #f3f3f3;
|
|
|
+}
|
|
|
+.boxs .change {
|
|
|
+ color: #32edaa;
|
|
|
+}
|
|
|
+.boxs .change.up {
|
|
|
+ color: #ed3248;
|
|
|
+}
|
|
|
+.boxs .num {
|
|
|
+ font-size: 24px;
|
|
|
+ font-weight: 600;
|
|
|
+ margin-right: 5px;
|
|
|
+}
|
|
|
+.boxs .el-icon-more {
|
|
|
+ font-size: 25px;
|
|
|
+}
|
|
|
+
|
|
|
+.list {
|
|
|
+ padding: 15px;
|
|
|
+}
|
|
|
+.list .list-item {
|
|
|
+ display: flex;
|
|
|
+ margin-bottom: 15px;
|
|
|
+}
|
|
|
+.list .list-item i {
|
|
|
+ padding: 8px 10px;
|
|
|
+ color: #40a9ff;
|
|
|
+ border: 1px solid #40a9ff;
|
|
|
+ border-radius: 8px;
|
|
|
+ margin-right: 15px;
|
|
|
+}
|
|
|
+.list-item .value {
|
|
|
+ align-self: end;
|
|
|
+ margin-left: 10px;
|
|
|
+}
|
|
|
+.list-item .flex1 p {
|
|
|
+ margin-bottom: 10px;
|
|
|
+}
|
|
|
+.el-progress-bar__outer {
|
|
|
+ background-color: #005094;
|
|
|
+}
|
|
|
+.tooltip-cont {
|
|
|
+ margin: -15px;
|
|
|
+ border: 1px solid #3699ff;
|
|
|
+ border-radius: 8px;
|
|
|
+ padding: 15px;
|
|
|
+ background-color: rgb(39 122 145 / 0.36);
|
|
|
+}
|
|
|
+.tooltip-cont p {
|
|
|
+ line-height: 1.8;
|
|
|
+ color: #f3f3f3;
|
|
|
+ position: relative;
|
|
|
+ padding-left: 12px;
|
|
|
+}
|
|
|
+.tooltip-cont p::before {
|
|
|
+ position: absolute;
|
|
|
+ display: inline-block;
|
|
|
+ content: '';
|
|
|
+ left: 0px;
|
|
|
+ top: 10px;
|
|
|
+ width: 5px;
|
|
|
+ height: 5px;
|
|
|
+ border-radius: 50%;
|
|
|
+ background-color: #40a9ff;
|
|
|
+}
|
|
|
+.tooltip-cont span {
|
|
|
+ color: #69c0ff;
|
|
|
+}
|
|
|
+.right-date {
|
|
|
+ position: absolute;
|
|
|
+ right: 15px;
|
|
|
+ width: 85px;
|
|
|
+}
|
|
|
+.date-popper {
|
|
|
+ background-color: #20414b;
|
|
|
+ border: 1px solid #3699ff;
|
|
|
+ border-radius: 8px;
|
|
|
+}
|
|
|
+.el-popper[x-placement^='bottom'] .popper__arrow {
|
|
|
+ border-bottom-color: #3699ff;
|
|
|
+}
|
|
|
+.el-popper[x-placement^='bottom'] .popper__arrow::after {
|
|
|
+ border-bottom-color: #20414b;
|
|
|
+}
|
|
|
+.date-popper .el-date-picker__header-label {
|
|
|
+ color: #d6cfcf;
|
|
|
+}
|
|
|
+.el-picker-panel__icon-btn {
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.date-popper .el-year-table td {
|
|
|
+ padding: 10px 3px;
|
|
|
+}
|
|
|
+.date-popper .el-year-table td .cell {
|
|
|
+ color: #d6cfcf;
|
|
|
+}
|
|
|
+.right-date .el-date-editor--year {
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+.right-date .el-date-editor--year .el-input__inner {
|
|
|
+ background: rgba(0, 80, 148, 0.3);
|
|
|
+ border: 1px solid #21c1ff;
|
|
|
+ border-radius: 4px 12px 4px 4px;
|
|
|
+ color: #fff;
|
|
|
+ padding: 0 15px;
|
|
|
+}
|
|
|
+.right-date .el-date-editor--year .el-input__prefix {
|
|
|
+ left: auto;
|
|
|
+ right: 5px;
|
|
|
+ color: #40a9ff;
|
|
|
+}
|
|
|
+.el-progress__text {
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.map-box {
|
|
|
+ height: 100%;
|
|
|
+ position: relative;
|
|
|
+ padding: 30px 0;
|
|
|
+}
|
|
|
+.status {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 20px;
|
|
|
+ left: 15px;
|
|
|
+ background-color: rgba(3, 10, 12, 0.46);
|
|
|
+ border: 1px solid #afadad;
|
|
|
+}
|
|
|
+.status p {
|
|
|
+ background-color: rgb(39 122 145 / 0.56);
|
|
|
+ line-height: 35px;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #40a9ff;
|
|
|
+}
|
|
|
+.status li {
|
|
|
+ line-height: 25px;
|
|
|
+ padding-right: 15px;
|
|
|
+}
|
|
|
+.status i {
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #40a9ff;
|
|
|
+}
|
|
|
+.dv-scroll-board .header {
|
|
|
+ font-weight: 600 !important;
|
|
|
+ color: #2abbff;
|
|
|
+}
|
|
|
+.warp {
|
|
|
+ height: 190px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.tip-window {
|
|
|
+ margin-right: 50px;
|
|
|
+ margin-top: 10px;
|
|
|
+ color: #69c0ff;
|
|
|
+ display: inline-block;
|
|
|
+ width: 142px;
|
|
|
+ height: 50px;
|
|
|
+ line-height: 50px;
|
|
|
+ text-align: center;
|
|
|
+ background-color: rgba(64, 169, 255, 0.12);
|
|
|
+ border: 2px solid #40a9ff;
|
|
|
+ border-radius: 8px;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.tip {
|
|
|
+
|
|
|
+ background-color: rgba(0, 0, 0, 0.5);
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ top: 0;
|
|
|
+ left: 0; */
|
|
|
+}
|
|
|
+.tip-box {
|
|
|
+ z-index: 9;
|
|
|
+ position: fixed;
|
|
|
+
|
|
|
+ left: 32.5%; */
|
|
|
+
|
|
|
+ height: 30%; */
|
|
|
+ width: 900px;
|
|
|
+ height: 56vh;
|
|
|
+ top: calc(50% - 26vh);
|
|
|
+ left: calc(50% - 450px);
|
|
|
+ background: url('../images/alert.png') no-repeat center;
|
|
|
+
|
|
|
+ background-size: 100% 100%;
|
|
|
+ padding: 100px 60px 50px;
|
|
|
+}
|
|
|
+.tip-box > div {
|
|
|
+ font-size: 42px;
|
|
|
+ line-height: 70px;
|
|
|
+}
|
|
|
+.tip-content {
|
|
|
+ height: 56vh;
|
|
|
+ overflow: auto;
|
|
|
+ padding-right: 15px;
|
|
|
+ margin-top: 2%;
|
|
|
+}
|
|
|
+.tip-content .content {
|
|
|
+ height: calc(56vh - 60px);
|
|
|
+ width: 400px;
|
|
|
+}
|
|
|
+div::-webkit-scrollbar {
|
|
|
+ width: 4px;
|
|
|
+}
|
|
|
+div::-webkit-scrollbar-thumb {
|
|
|
+ border-radius: 10px;
|
|
|
+ background: rgba(64, 169, 255, 0.6);
|
|
|
+}
|
|
|
+div::-webkit-scrollbar-track {
|
|
|
+ border-radius: 0;
|
|
|
+ background: rgba(64, 169, 255, 0.3);
|
|
|
+}
|
|
|
+.goBack {
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ position: absolute;
|
|
|
+ top: 10px;
|
|
|
+ left: 70px;
|
|
|
+ z-index: 999;
|
|
|
+ cursor: pointer;
|
|
|
+}
|