web-zk-admin/src/App.vue

161 lines
2.6 KiB
Vue

<!--
* @Descripttion:
* @version:
* @Author: kBank
* @Date: 2022-10-24 10:45:39
-->
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: "App",
};
</script>
<style lang="scss">
.el-dialog__header{
border: 1px solid rgba(0,0,0,0.1);
font-weight: bold;
}
.my_search:hover {
background: #c8161d;
color: #fff;
}
.my_reset:hover {
background: #fff;
color: #666;
border: 1px solid #ccc;
}
.my_search {
width: 68px;
height: 32px;
background: #c8161d;
border-radius: 4px;
padding: 0 !important;
color: #fff;
}
.my_reset {
width: 68px;
height: 32px;
background: #fff;
border-radius: 4px 4px 4px 4px;
color: #666;
padding: 0;
}
.my_stars {
color: #ed1d25;
position: absolute;
left: -80px;
top: 50%;
margin-top: -17px;
}
.my_footer {
box-shadow: 0px -3px 20px 0px rgba(204, 204, 204, 0.5);
background: #fff;
display: flex;
justify-content: center;
align-items: center;
padding: 15px 0;
}
.myBtn_1 {
width: 120px;
height: 38px;
border-radius: 5px;
color: #fff;
background-color: #cccccc;
}
.myBtn_1:hover {
background-color: #cccccc;
color: #fff;
}
.myBtn_2:hover {
background-color: #c8161d;
color: #fff;
border: none;
}
.myBtn_2 {
width: 120px;
height: 38px;
border-radius: 5px;
color: #fff;
background-color: #c8161d;
}
.myBtn_3 {
width: 85px;
height: 46px;
border-radius: 5px;
color: #333;
border: 1px solid #ccc;
background-color: #fff;
}
.myBtn_4 {
width: 85px;
height: 46px;
border-radius: 5px;
color: #333;
border: 1px solid #ccc;
background-color: #fff;
}
.el-input__inner {
height: 32px;
line-height: 32px;
}
.el-date-editor .el-range__close-icon {
margin-top: -10px;
}
.el-date-editor .el-range-separator {
margin-top: -10px;
}
.el-date-editor .el-range__icon {
margin-top: -10px;
}
.el-button {
padding: 8px 15px;
}
.el-form-item {
margin-bottom: 0px!important;
}
.page {
padding: 3px 20px 0 20px!important;
height: calc(100vh - 50px);
display: flex;
flex-direction: column;
.main {
flex: 1;
overflow-y: auto;
}
.thetopbox{
padding: 0px 0!important;
}
}
// .pagination-container {
// height: 80px;
// }
.el-col-20 {
width: 20%;
}
.el-col-60 {
width: 60%;
}
// 定义滚动条高宽及背景高宽分别对应横竖滚动条的尺寸
::-webkit-scrollbar {
width: 10px;
height: 10px;
// height: 250px;
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
border-radius: 5px;
background: rgba(216, 216, 216, 1);
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
border-radius: 5px;
background: #c8161d;
}
</style>