2025-06-16 15:54:10 +08:00
|
|
|
/*
|
|
|
|
|
ems管理平台公共css样式
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
//右侧内容区域
|
2025-06-16 22:46:40 +08:00
|
|
|
//父元素
|
2025-06-16 15:54:10 +08:00
|
|
|
.ems-dashboard-editor-container{
|
|
|
|
|
background-color: #F1F5FC;
|
|
|
|
|
padding: 24px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
2025-06-16 22:46:40 +08:00
|
|
|
//除去顶部信息(如搜索栏、站点基本信息等)外的 白色背景内容区域
|
|
|
|
|
.ems-content-container{
|
2025-06-16 15:54:10 +08:00
|
|
|
background-color: #ffffff;
|
2025-06-16 22:46:40 +08:00
|
|
|
margin-top: 24px;
|
2025-06-16 15:54:10 +08:00
|
|
|
}
|
2025-06-16 22:46:40 +08:00
|
|
|
//需要设置内padding的白色背景区域
|
|
|
|
|
.ems-content-container-padding{
|
2025-06-16 15:54:10 +08:00
|
|
|
padding: 24px;
|
|
|
|
|
}
|
2025-06-17 00:46:20 +08:00
|
|
|
|
|
|
|
|
//card通用样式 标题、body
|
|
|
|
|
.common-card-container{
|
|
|
|
|
.el-card__header{
|
|
|
|
|
padding:14px;
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
background: #F1F5FB ;
|
|
|
|
|
.card-title{
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color:#333333;
|
|
|
|
|
}
|
|
|
|
|
.el-button--text{
|
|
|
|
|
color: #666666;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.common-card-container-body-no-padding{
|
|
|
|
|
.el-card__body{
|
|
|
|
|
padding:0;
|
|
|
|
|
}
|
|
|
|
|
}
|