1234567891011121314151617181920212223242526272829 |
- /**
- * 创建者:王成
- * 创建日期:2022年12月8日
- * 操作系统:MAC
- * 描述:element的补充css样式
- */
- .el-dialog {
- background-color: rgba(0, 0, 0, 0.75);
- }
- .el-dialog .el-dialog__header {
- margin-right: 0px;
- background: url('./image/backheader.png') no-repeat;
- background-size: 100% 100%;
- }
- .el-dialog .el-dialog__header .el-dialog__title {
- color: rgba(255, 255, 255, 1.0);
- font-family: 'Alimama_ShuHeiTi_Bold';
- }
- .el-row {
- margin-bottom: 10px;
- }
- .el-row:last-child {
- margin-bottom: 0px;
- }
|