2025-06-26 17:47:20 +08:00
|
|
|
@import 'mixin.styl'
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: 'iconfont';
|
|
|
|
|
src: url('iconfont/iconfont.woff2?t=1631676179964') format('woff2'),
|
|
|
|
|
url('iconfont/iconfont.woff?t=1631676179964') format('woff'),
|
|
|
|
|
url('iconfont/iconfont.ttf?t=1631676179964') format('truetype');
|
|
|
|
|
}
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "YouSheBiaoTiHei";
|
|
|
|
|
src: url('font/YouSheBiaoTiHei.ttf') format('truetype');
|
|
|
|
|
}
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "SourceHanSansCN-Bold";
|
|
|
|
|
src: url('font/SourceHanSansCN-Bold.otf') format('truetype');
|
|
|
|
|
}
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "SourceHanSansCN-Regular";
|
|
|
|
|
src: url('font/SourceHanSansCN-Regular.otf') format('truetype');
|
|
|
|
|
}
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "SourceHanSansCN-Medium";
|
|
|
|
|
src: url('font/SourceHanSansCN-Medium.otf') format('truetype');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track
|
|
|
|
|
{
|
|
|
|
|
background-color: #1A2B47;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar
|
|
|
|
|
{
|
|
|
|
|
width: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb
|
|
|
|
|
{
|
|
|
|
|
background-color: #5291F0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 软键盘
|
|
|
|
|
#keyboard
|
|
|
|
|
position fixed
|
|
|
|
|
right 0
|
|
|
|
|
bottom 0
|
|
|
|
|
z-index 1000
|
|
|
|
|
width 100%
|
|
|
|
|
padding 0.05rem
|
|
|
|
|
background-color: #ececec
|
|
|
|
|
border-radius 0
|
|
|
|
|
font-family: HelveticaNeue-Light,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
|
|
|
|
|
.keyboard
|
|
|
|
|
.line:not(:last-child)
|
|
|
|
|
margin-bottom 0.05rem
|
|
|
|
|
.key
|
|
|
|
|
height .36rem
|
|
|
|
|
line-height .36rem
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border: none;
|
|
|
|
|
border-bottom: 1px solid #b5b5b5;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
box-shadow: 0 0 3px -1px rgba(0,0,0,.3);
|
|
|
|
|
color: #000;
|
|
|
|
|
font-size .2rem
|
|
|
|
|
&:not(:last-child)
|
|
|
|
|
margin-right 0.05rem
|
|
|
|
|
.backspace
|
|
|
|
|
background-color: #b3b3b3;
|
|
|
|
|
|
|
|
|
|
// animation
|
|
|
|
|
@keyframes scrollText {
|
|
|
|
|
0% {
|
|
|
|
|
transform translateX(0)
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
transform translateX(-100%)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// element css
|
2025-07-14 09:28:21 +08:00
|
|
|
.el-loading-spinner i
|
2025-09-16 18:01:49 +08:00
|
|
|
font-size .5rem
|
2025-07-14 09:28:21 +08:00
|
|
|
color #fff
|
2025-06-26 17:47:20 +08:00
|
|
|
.el-button
|
2025-08-13 18:06:35 +08:00
|
|
|
font-size .2rem
|
2025-07-23 20:05:03 +08:00
|
|
|
padding-top 0
|
|
|
|
|
padding-bottom 0
|
|
|
|
|
height .32rem
|
|
|
|
|
line-height .32rem
|
2025-08-27 11:16:49 +08:00
|
|
|
.el-button--text:focus, .el-button--text:hover
|
|
|
|
|
color #fff
|
|
|
|
|
border-color #ed865c
|
|
|
|
|
background-color #ed865c
|
2025-06-26 17:47:20 +08:00
|
|
|
.el-dialog
|
|
|
|
|
background center / 100% 100% url(../images/new/modal_bg.png) no-repeat
|
|
|
|
|
.el-dialog__header
|
2025-07-04 17:52:10 +08:00
|
|
|
padding .08rem .2rem .1rem
|
2025-08-27 11:16:49 +08:00
|
|
|
.warn_modal
|
|
|
|
|
.el-dialog
|
|
|
|
|
height 70vh
|
|
|
|
|
overflow hidden
|
|
|
|
|
.el-dialog__header
|
|
|
|
|
padding .08rem .3rem 0 .3rem
|
|
|
|
|
.el-dialog__body
|
|
|
|
|
height calc(100% - .32rem)
|
|
|
|
|
padding: 0.1rem 0.2rem 0.1rem 0.3rem;
|
|
|
|
|
.el-tabs
|
|
|
|
|
height calc(100% - 0.3rem)
|
2025-06-26 17:47:20 +08:00
|
|
|
.el-dialog__headerbtn
|
2025-07-04 17:52:10 +08:00
|
|
|
top .08rem
|
2025-06-26 17:47:20 +08:00
|
|
|
right .2rem
|
2025-07-04 17:52:10 +08:00
|
|
|
font-size .2rem
|
|
|
|
|
font-weight 700
|
|
|
|
|
.el-dialog__headerbtn .el-dialog__close, .el-dialog__headerbtn:focus .el-dialog__close, .el-dialog__headerbtn:hover .el-dialog__close
|
|
|
|
|
color #fff
|
|
|
|
|
.warn_modal .el-dialog__headerbtn
|
|
|
|
|
right .3rem
|
2025-06-26 17:47:20 +08:00
|
|
|
.el-dialog__body
|
2025-08-15 14:55:07 +08:00
|
|
|
padding .2rem .2rem .3rem .2rem
|
2025-06-26 17:47:20 +08:00
|
|
|
.el-dialog__title
|
2025-07-04 17:52:10 +08:00
|
|
|
font-size .24rem
|
2025-06-26 17:47:20 +08:00
|
|
|
font-family 'YouSheBiaoTiHei'
|
|
|
|
|
line-height .24rem
|
|
|
|
|
color #fff
|
2025-07-04 17:52:10 +08:00
|
|
|
letter-spacing 0.02rem
|
2025-06-26 17:47:20 +08:00
|
|
|
.el-form-item__label
|
2025-08-15 13:43:23 +08:00
|
|
|
font-size .18rem
|
2025-06-26 17:47:20 +08:00
|
|
|
line-height .4rem
|
|
|
|
|
color #AFBED8
|
2025-08-15 13:43:23 +08:00
|
|
|
.el-form-item--mini.el-form-item, .el-form-item--small.el-form-item
|
|
|
|
|
margin-bottom .22rem
|
2025-06-26 17:47:20 +08:00
|
|
|
.el-form-item--mini .el-form-item__content, .el-form-item--mini .el-form-item__label
|
|
|
|
|
line-height .4rem
|
|
|
|
|
.el-form-item__content
|
|
|
|
|
font-size .15rem
|
|
|
|
|
.el-input, .el-select .el-input .el-select__caret, .el-select-dropdown__item
|
2025-08-15 13:43:23 +08:00
|
|
|
font-size .18rem
|
2025-06-26 17:47:20 +08:00
|
|
|
line-height .4rem
|
|
|
|
|
height .4rem
|
|
|
|
|
.el-input__inner
|
|
|
|
|
background: rgba(45,88,184,0.1);
|
|
|
|
|
border: 2px solid #4980BD;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
padding 0 0.1rem
|
2025-08-15 14:19:50 +08:00
|
|
|
height: .4rem;
|
|
|
|
|
line-height: .4rem;
|
2025-06-26 17:47:20 +08:00
|
|
|
.el-input--mini .el-input__inner
|
|
|
|
|
line-height .4rem
|
|
|
|
|
height .4rem
|
|
|
|
|
.el-select-dropdown
|
|
|
|
|
background-color rgba(7,31,62,0.95)
|
2025-07-04 17:52:10 +08:00
|
|
|
border-color #4980BD
|
2025-06-26 17:47:20 +08:00
|
|
|
.el-popper[x-placement^=bottom] .popper__arrow,.el-popper[x-placement^=bottom] .popper__arrow::after
|
|
|
|
|
border-bottom-color #4980BD
|
|
|
|
|
.el-select-dropdown__item
|
|
|
|
|
padding 0 0.1rem
|
|
|
|
|
color #fff
|
2025-06-27 17:07:21 +08:00
|
|
|
.el-select-dropdown__item.hover, .el-select-dropdown__item:hover
|
|
|
|
|
background-color #2D58B8
|
2025-09-17 17:52:04 +08:00
|
|
|
.el-select:hover .el-input__inner
|
|
|
|
|
border-color: #409EFF;
|
|
|
|
|
.el-select-dropdown__empty
|
|
|
|
|
font-size .2rem
|
2025-06-26 17:47:20 +08:00
|
|
|
.el-table, .el-table tr
|
|
|
|
|
background-color transparent
|
|
|
|
|
.el-table th
|
|
|
|
|
font-size .16rem
|
|
|
|
|
font-family 'Source Han Sans CN'
|
|
|
|
|
color #AFBED8
|
|
|
|
|
background left center / 1px 81px url(../images/new/th_bg.png) repeat-x
|
|
|
|
|
.el-table td
|
2025-07-04 17:52:10 +08:00
|
|
|
border-bottom 2px solid rgba(122,159,224,0.17)
|
|
|
|
|
.el-table .cell
|
2025-06-26 17:47:20 +08:00
|
|
|
font-size .16rem
|
|
|
|
|
font-family 'Source Han Sans CN'
|
|
|
|
|
color #fff
|
2025-07-04 17:52:10 +08:00
|
|
|
line-height .23rem
|
2025-06-26 17:47:20 +08:00
|
|
|
.el-table tr:nth-child(odd) td
|
|
|
|
|
background: rgba(31,46,73,0.3);
|
|
|
|
|
.el-table tr:nth-child(even) td
|
|
|
|
|
background: rgba(31,46,73,0.5);
|
|
|
|
|
.el-table--enable-row-hover .el-table__body tr:hover>td
|
|
|
|
|
background: rgba(63,106,202,0.3);
|
2025-08-27 11:16:49 +08:00
|
|
|
.el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell
|
|
|
|
|
background-color: #3F6ACA;
|
2025-08-13 18:06:35 +08:00
|
|
|
.el-tabs__header
|
|
|
|
|
margin 0 0 .1rem
|
2025-07-04 17:52:10 +08:00
|
|
|
.el-tabs__nav-wrap::after
|
|
|
|
|
background-color #192B47
|
|
|
|
|
.el-tabs--left .el-tabs__header.is-left
|
|
|
|
|
margin-right: .1rem
|
|
|
|
|
.el-tabs__item
|
|
|
|
|
padding 0 .2rem
|
|
|
|
|
height .4rem
|
|
|
|
|
line-height .4rem
|
2025-08-13 18:06:35 +08:00
|
|
|
font-size .22rem
|
2025-07-04 17:52:10 +08:00
|
|
|
color #c9c9c9
|
|
|
|
|
.el-tabs__item.is-active
|
|
|
|
|
color #3CC1FF
|
|
|
|
|
font-weight 700
|
2025-08-13 18:06:35 +08:00
|
|
|
.el-tabs__content
|
|
|
|
|
height calc(100% - 0.5rem)
|
|
|
|
|
overflow-y auto
|
2025-07-04 17:52:10 +08:00
|
|
|
.el-popover
|
|
|
|
|
background rgba(7,31,62,0.95)
|
|
|
|
|
min-width 150px
|
|
|
|
|
border-color #4980BD
|
|
|
|
|
padding .1rem
|
|
|
|
|
color #606266
|
|
|
|
|
line-height 1.4
|
|
|
|
|
font-size .14rem
|
2025-07-14 17:52:37 +08:00
|
|
|
.el-message-box
|
|
|
|
|
background-color rgba(13, 49, 95,0.95)
|
|
|
|
|
border-color #4980BD
|
|
|
|
|
.el-message-box__title, .el-message-box__content
|
|
|
|
|
color #fff
|
|
|
|
|
.el-button
|
|
|
|
|
background-color #c3390c
|
|
|
|
|
border-color #ed865c
|
|
|
|
|
color #fff
|
2025-08-15 14:19:50 +08:00
|
|
|
box-sizing border-box
|
2025-07-14 17:52:37 +08:00
|
|
|
.el-button--primary
|
|
|
|
|
background-color #009fde
|
|
|
|
|
border-color #00d9f3
|
2025-07-15 13:59:05 +08:00
|
|
|
.el-message-box__title
|
2025-08-15 13:43:23 +08:00
|
|
|
font-size .2rem
|
2025-07-15 13:59:05 +08:00
|
|
|
.el-message-box__headerbtn
|
2025-08-15 13:43:23 +08:00
|
|
|
font-size .2rem
|
2025-07-15 13:59:05 +08:00
|
|
|
.el-message-box__content
|
2025-08-15 13:43:23 +08:00
|
|
|
font-size .2rem
|
2025-08-27 11:16:49 +08:00
|
|
|
.el-message-box__message p
|
|
|
|
|
font-size .2rem
|
|
|
|
|
line-height: .28rem
|
2025-08-08 17:44:36 +08:00
|
|
|
.el-progress-bar__inner,.el-progress-bar__outer
|
|
|
|
|
border-radius 0
|
2025-08-11 13:28:37 +08:00
|
|
|
.el-progress__text
|
|
|
|
|
font-size .2rem !important
|
2025-08-14 20:05:52 +08:00
|
|
|
.config_dialog .el-dialog__body
|
2025-08-15 14:55:07 +08:00
|
|
|
padding 0 0.2rem 0.2rem 0.2rem
|
2025-08-15 13:43:23 +08:00
|
|
|
.el-form-item__error
|
|
|
|
|
font-size .16rem
|
2025-08-27 11:16:49 +08:00
|
|
|
.el-table__empty-text
|
|
|
|
|
font-size .2rem
|
|
|
|
|
color #fff
|
2025-06-26 17:47:20 +08:00
|
|
|
|
2025-08-20 16:48:08 +08:00
|
|
|
// driver
|
|
|
|
|
.driver-popover.driverjs-theme {
|
|
|
|
|
background-color: #fde047;
|
|
|
|
|
color: #000;
|
|
|
|
|
padding: 40px 15px 15px 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.driver-popover.driverjs-theme .driver-popover-title {
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.driver-popover.driverjs-theme .driver-popover-title,
|
|
|
|
|
.driver-popover.driverjs-theme .driver-popover-description,
|
|
|
|
|
.driver-popover.driverjs-theme .driver-popover-progress-text {
|
|
|
|
|
color: #000;
|
2025-09-16 18:01:49 +08:00
|
|
|
font-size: 22px;
|
2025-08-20 16:48:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.driver-popover.driverjs-theme button {
|
|
|
|
|
flex: 1;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background-color: #000;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
border: 2px solid #000;
|
|
|
|
|
text-shadow: none;
|
2025-09-16 18:01:49 +08:00
|
|
|
font-size: 20px;
|
2025-08-20 16:48:08 +08:00
|
|
|
padding: 5px 8px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
}
|
2025-08-27 11:16:49 +08:00
|
|
|
.driver-popover.driverjs-theme button+button {
|
|
|
|
|
margin-left: 14px;
|
|
|
|
|
}
|
2025-08-20 16:48:08 +08:00
|
|
|
|
|
|
|
|
.driver-popover.driverjs-theme button:hover {
|
|
|
|
|
background-color: #000;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.driver-popover.driverjs-theme .driver-popover-navigation-btns {
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 3px;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.driver-popover.driverjs-theme .driver-popover-close-btn {
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
color: #000;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.driver-popover.driverjs-theme .driver-popover-close-btn:hover {
|
2025-08-22 16:21:36 +08:00
|
|
|
opacity: .5;
|
2025-08-20 16:48:08 +08:00
|
|
|
}
|
2025-08-20 17:45:56 +08:00
|
|
|
.driver-popover-footer button:hover, .driver-popover-footer button:focus {
|
|
|
|
|
background-color: #000 !important;
|
|
|
|
|
}
|
2025-08-20 16:48:08 +08:00
|
|
|
|
|
|
|
|
.driver-popover.driverjs-theme .driver-popover-arrow-side-left.driver-popover-arrow {
|
|
|
|
|
border-left-color: #fde047;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.driver-popover.driverjs-theme .driver-popover-arrow-side-right.driver-popover-arrow {
|
|
|
|
|
border-right-color: #fde047;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.driver-popover.driverjs-theme .driver-popover-arrow-side-top.driver-popover-arrow {
|
|
|
|
|
border-top-color: #fde047;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.driver-popover.driverjs-theme .driver-popover-arrow-side-bottom.driver-popover-arrow {
|
|
|
|
|
border-bottom-color: #fde047;
|
|
|
|
|
}
|
2025-08-27 11:16:49 +08:00
|
|
|
.driver-popover-footer .driver-popover-next-btn {
|
|
|
|
|
animation: scale 1s infinite;
|
|
|
|
|
}
|
|
|
|
|
@keyframes scale {
|
|
|
|
|
0%, 100% { transform: scale(1); }
|
|
|
|
|
50% { transform: scale(1.1); }
|
|
|
|
|
}
|
2025-08-20 16:48:08 +08:00
|
|
|
|
2025-06-26 17:47:20 +08:00
|
|
|
// button
|
|
|
|
|
.button_control
|
|
|
|
|
_wh(100%, 0.36rem)
|
2025-07-04 17:52:10 +08:00
|
|
|
max-width 1.4rem
|
2025-06-26 17:47:20 +08:00
|
|
|
background center url(../images/new/button.png) no-repeat
|
|
|
|
|
background-size 100% 100%
|
|
|
|
|
p
|
|
|
|
|
_font(.22rem, 1, #EFF2FF,,center)
|
|
|
|
|
font-family: 'YouSheBiaoTiHei'
|
|
|
|
|
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(49,190,255,0.9) 0%, rgba(239,252,254,1) 40%);
|
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
|
.button_control_disabled
|
|
|
|
|
background center url(../images/new/button_disabled.png) no-repeat
|
|
|
|
|
background-size 100% 100%
|
|
|
|
|
.button_control_gray
|
|
|
|
|
background center url(../images/new/button_gray.png) no-repeat
|
|
|
|
|
background-size 100% 100%
|
|
|
|
|
|
|
|
|
|
// main
|
|
|
|
|
.body-container
|
|
|
|
|
background center / 100% 100% url(../images/new/bg.jpg) no-repeat
|
|
|
|
|
.main-conatiner
|
|
|
|
|
width 100%
|
2025-08-05 16:30:59 +08:00
|
|
|
height calc(100% - .48rem)
|
2025-09-16 18:01:49 +08:00
|
|
|
padding .4rem 0 .6rem 0
|
2025-06-26 17:47:20 +08:00
|
|
|
.page_container
|
|
|
|
|
_wh(96%, 100%)
|
2025-07-16 10:49:07 +08:00
|
|
|
padding .09rem
|
2025-06-26 17:47:20 +08:00
|
|
|
margin 0 auto
|
2025-08-05 14:20:40 +08:00
|
|
|
.map_tools
|
|
|
|
|
position absolute
|
|
|
|
|
top 0
|
|
|
|
|
right 0
|
|
|
|
|
.zoom_data
|
2025-08-27 11:16:49 +08:00
|
|
|
width .7rem
|
2025-08-05 14:20:40 +08:00
|
|
|
font-size .16rem
|
2025-08-27 11:16:49 +08:00
|
|
|
height .44rem
|
|
|
|
|
line-height .44rem
|
2025-08-05 14:20:40 +08:00
|
|
|
color #00d9f3
|
|
|
|
|
text-align center
|
2025-08-27 11:16:49 +08:00
|
|
|
border-left 1px solid #009fde
|
|
|
|
|
border-right 1px solid #009fde
|
|
|
|
|
box-sizing border-box
|
|
|
|
|
.zoom_btn
|
|
|
|
|
display block
|
|
|
|
|
width .7rem
|
|
|
|
|
margin 0 !important
|
|
|
|
|
height .44rem
|
|
|
|
|
line-height .44rem
|