356 lines
6.9 KiB
CSS
356 lines
6.9 KiB
CSS
@charset "UTF-8";
|
||
/* 基本样式 */
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
outline: none !important;
|
||
}
|
||
|
||
html,
|
||
body,
|
||
#app {
|
||
margin: 0;
|
||
padding: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
|
||
font-weight: 400;
|
||
-webkit-font-smoothing: antialiased;
|
||
-webkit-tap-highlight-color: transparent;
|
||
background-color: var(--ba-bg-color);
|
||
font-size: 14px;
|
||
overflow: hidden;
|
||
position: relative;
|
||
}
|
||
|
||
/* 修改纵向滚动条轨道 */
|
||
::-webkit-scrollbar {
|
||
width: 8px;
|
||
}
|
||
|
||
/* 修改纵向滚动条拇指(thumb) */
|
||
::-webkit-scrollbar-thumb {
|
||
background-color: var(--el-color-primary);
|
||
border-radius: 5px;
|
||
cursor: pointer !important;
|
||
}
|
||
|
||
/* 修改横向滚动条轨道 */
|
||
::-webkit-scrollbar:horizontal {
|
||
height: 8px;
|
||
}
|
||
|
||
/* 修改横向滚动条拇指(thumb) */
|
||
::-webkit-scrollbar-thumb:horizontal {
|
||
background-color: var(--el-color-primary);
|
||
border-radius: 5px;
|
||
}
|
||
|
||
.iconfont-icon {
|
||
width: 1em;
|
||
height: 1em;
|
||
vertical-align: -0.15em;
|
||
fill: currentColor;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.w100 {
|
||
width: 100% !important;
|
||
}
|
||
|
||
.h100 {
|
||
height: 100% !important;
|
||
}
|
||
|
||
.ba-center {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.default-main {
|
||
position: relative;
|
||
background: #fff;
|
||
margin: var(--ba-main-space) var(--ba-main-space) 0px var(--ba-main-space);
|
||
}
|
||
|
||
.form-one {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.form-one .el-form-item {
|
||
display: flex;
|
||
width: 98%;
|
||
margin-bottom: 15px !important;
|
||
}
|
||
|
||
.form-one .el-form-item .el-form-item__content {
|
||
flex: 1;
|
||
}
|
||
|
||
.form-one .el-form-item .el-form-item__content .el-select,
|
||
.form-one .el-form-item .el-form-item__content .el-cascader,
|
||
.form-one .el-form-item .el-form-item__content .el-input__inner,
|
||
.form-one .el-form-item .el-form-item__content .el-date-editor {
|
||
width: 100%;
|
||
}
|
||
|
||
.form-two {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.form-two .el-form-item {
|
||
display: flex;
|
||
width: 48%;
|
||
}
|
||
|
||
.form-two .el-form-item .el-form-item__content {
|
||
flex: 1;
|
||
}
|
||
|
||
.form-two .el-form-item .el-form-item__content .el-select,
|
||
.form-two .el-form-item .el-form-item__content .el-cascader,
|
||
.form-two .el-form-item .el-form-item__content .el-input__inner,
|
||
.form-two .el-form-item .el-form-item__content .el-date-editor {
|
||
width: 100%;
|
||
}
|
||
|
||
.uploadFile .el-form-item__content {
|
||
line-height: 20px !important;
|
||
}
|
||
|
||
.uploadFile .el-form-item__content div {
|
||
display: flex !important;
|
||
align-items: center !important;
|
||
}
|
||
|
||
.uploadFile .el-form-item__content .el-upload-list__item-name {
|
||
width: 150px !important;
|
||
}
|
||
|
||
.uploadFile .el-form-item__content .el-upload-list--text {
|
||
margin: 0px 20px 0 !important;
|
||
}
|
||
|
||
.zoom-handle {
|
||
position: absolute;
|
||
width: 20px;
|
||
height: 20px;
|
||
bottom: -10px;
|
||
right: -10px;
|
||
cursor: se-resize;
|
||
}
|
||
|
||
.block-help {
|
||
display: block;
|
||
width: 100%;
|
||
color: #909399;
|
||
font-size: 13px;
|
||
line-height: 16px;
|
||
padding-top: 5px;
|
||
}
|
||
|
||
/* 表格顶部菜单-s */
|
||
.table-header .table-header-operate .icon {
|
||
font-size: 14px !important;
|
||
color: var(--el-color-white) !important;
|
||
}
|
||
|
||
.table-header .el-button.is-disabled .icon {
|
||
color: var(--el-button-disabled-text-color) !important;
|
||
}
|
||
|
||
/* 表格顶部菜单-e */
|
||
/* 鼠标置入浮动效果-s */
|
||
.suspension {
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.suspension:hover {
|
||
-webkit-transform: translateY(-4px) scale(1.02);
|
||
-moz-transform: translateY(-4px) scale(1.02);
|
||
-ms-transform: translateY(-4px) scale(1.02);
|
||
-o-transform: translateY(-4px) scale(1.02);
|
||
transform: translateY(-4px) scale(1.02);
|
||
-webkit-box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
|
||
box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
|
||
z-index: 999;
|
||
border-radius: 6px;
|
||
}
|
||
|
||
/* 鼠标置入浮动效果-e */
|
||
/* 表格-s */
|
||
.ba-table-box {
|
||
border-radius: var(--el-border-radius-round);
|
||
}
|
||
|
||
.ba-table-alert {
|
||
background-color: var(--el-fill-color-darker) !important;
|
||
border: 1px solid var(--ba-boder-color);
|
||
border-bottom: 0;
|
||
border-bottom-left-radius: 0;
|
||
border-bottom-right-radius: 0;
|
||
}
|
||
|
||
/* 表格-e */
|
||
.ba-operate-form {
|
||
padding-top: 20px;
|
||
}
|
||
|
||
/* 新增/编辑表单-e */
|
||
/* 全局遮罩-s */
|
||
.ba-layout-shade {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
height: 100vh;
|
||
width: 100vw;
|
||
background-color: rgba(0, 0, 0, 0.5);
|
||
z-index: 9999990;
|
||
}
|
||
|
||
/* 全局遮罩-e */
|
||
/* 图片上传预览-s */
|
||
.img-preview-dialog .el-dialog__body {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.img-preview-dialog .el-dialog__body img {
|
||
max-width: 100%;
|
||
}
|
||
|
||
/* 图片上传预览-e */
|
||
/* 页面切换动画-s */
|
||
.slide-right-enter-active,
|
||
.slide-right-leave-active,
|
||
.slide-left-enter-active,
|
||
.slide-left-leave-active {
|
||
will-change: transform;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.slide-right-enter-from, .slide-left-leave-to {
|
||
opacity: 0;
|
||
transform: translateX(-20px);
|
||
}
|
||
|
||
.slide-right-leave-to, .slide-left-enter-from {
|
||
opacity: 0;
|
||
transform: translateX(20px);
|
||
}
|
||
|
||
/* 页面切换动画-e */
|
||
/* 布局相关-s */
|
||
.frontend-footer-brother {
|
||
min-height: calc(100vh - 120px);
|
||
}
|
||
|
||
.user-views {
|
||
padding-left: 15px;
|
||
}
|
||
|
||
.user-views .user-views-card {
|
||
margin-bottom: 15px;
|
||
}
|
||
|
||
.ba-aside-drawer .el-drawer__body {
|
||
padding: 0;
|
||
}
|
||
|
||
/* 布局相关-e */
|
||
/* 暗黑模式公共样式-s */
|
||
.ba-icon-dark {
|
||
color: var(--el-text-color-primary) !important;
|
||
}
|
||
|
||
/* 暗黑模式公共样式-e */
|
||
/* NProgress-s */
|
||
#nprogress .bar,
|
||
#nprogress .spinner {
|
||
z-index: 999999;
|
||
}
|
||
|
||
/* NProgress-e */
|
||
/* 自适应-s */
|
||
@media screen and (max-width: 768px) {
|
||
.xs-hidden {
|
||
display: none;
|
||
}
|
||
}
|
||
|
||
@media screen and (max-width: 1024px) {
|
||
.cn-operate-dialog {
|
||
width: 96%;
|
||
}
|
||
}
|
||
|
||
@media screen and (max-width: 991px) {
|
||
.user-views {
|
||
padding: 0;
|
||
}
|
||
}
|
||
|
||
/* 自适应-e */
|
||
.custom-table-header {
|
||
box-sizing: border-box;
|
||
display: flex;
|
||
padding: 13px 15px;
|
||
align-items: center;
|
||
border: 1px solid var(--el-border-color);
|
||
}
|
||
|
||
.custom-table-header .title {
|
||
flex: 1;
|
||
font-weight: 700;
|
||
}
|
||
|
||
.custom-table-header .el-form-item {
|
||
margin-bottom: 0 !important;
|
||
}
|
||
|
||
.child-router {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
height: 100%;
|
||
width: 100%;
|
||
background: #fff;
|
||
z-index: 10;
|
||
}
|
||
|
||
.bjs-powered-by {
|
||
display: none;
|
||
}
|
||
|
||
.el-select__wrapper {
|
||
height: 32px !important;
|
||
}
|
||
|
||
@font-face {
|
||
font-family: 'AlimamaFangYuanTiVF';
|
||
src: url("../assets/font/ali/AlimamaFangYuanTiVF-Thin.woff") format("woff"), url("../assets/font/ali/AlimamaFangYuanTiVF-Thin.woff2") format("woff2");
|
||
font-weight: normal;
|
||
font-style: normal;
|
||
}
|
||
|
||
@font-face {
|
||
font-family: 'nablaRegular';
|
||
src: url("../assets/font/ali/Nabla_Regular.woff") format("woff"), url("../assets/font/ali/Nabla_Regular.woff2") format("woff2");
|
||
font-weight: normal;
|
||
font-style: normal;
|
||
}
|
||
|
||
@font-face {
|
||
font-family: 'AlimamaDongFangDaKai';
|
||
src: url("../assets/font/ali/AlimamaDongFangDaKai-Regular.woff") format("woff"), url("../assets/font/ali/AlimamaDongFangDaKai-Regular.woff2") format("woff2");
|
||
font-weight: normal;
|
||
font-style: normal;
|
||
}
|