You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
1.6 KiB
93 lines
1.6 KiB
<template>
|
|
<div id="app">
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
a{
|
|
font-style: normal;
|
|
color: #00D4F3;
|
|
}
|
|
#app {
|
|
width: 100%;
|
|
height: 100vh;
|
|
position: relative;
|
|
overflow: hidden;
|
|
background: #000;
|
|
}
|
|
|
|
.el-dialog {
|
|
background: url('~@/assets/images/common/dialog-bg.png') no-repeat !important;
|
|
background-size: 100% 100% !important;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.el-dialog__body {
|
|
padding: 0 0 10px !important;
|
|
}
|
|
|
|
.el-dialog__title {
|
|
font-size: 26px !important;
|
|
font-family: zaozigongfang;
|
|
letter-spacing: 2px;
|
|
|
|
|
|
}
|
|
|
|
.el-dialog__header {
|
|
align-items: center;
|
|
background: url('~@/assets/images/common/dialog-header.png') no-repeat;
|
|
background-size: 100% 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 60px;
|
|
padding: 0 !important;
|
|
font-size: 26px;
|
|
}
|
|
|
|
.backDialog {
|
|
background-size: 100% 100% !important;
|
|
max-height: 668px;
|
|
overflow-y: scroll;
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 3px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-track {
|
|
border-radius: 10px;
|
|
background: rgba(12, 129, 254, 0.24);
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
border-radius: 10px;
|
|
background: linear-gradient(270deg, #0063fe, #0095ff);
|
|
}
|
|
}
|
|
|
|
.el-table {
|
|
&::-webkit-scrollbar {
|
|
width: 3px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-track {
|
|
border-radius: 10px;
|
|
background: rgba(12, 129, 254, 0.24);
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
border-radius: 10px;
|
|
background: linear-gradient(270deg, #0063fe, #0095ff);
|
|
}
|
|
}
|
|
|
|
.padding-80 {
|
|
padding: 0px 80px 80px;
|
|
box-sizing: border-box;
|
|
}</style>
|
|
|