This commit is contained in:
2025-12-23 18:58:47 +08:00
parent 039e0ce421
commit 5ae5dc7224
7 changed files with 548 additions and 32 deletions

View File

@ -152,19 +152,22 @@ v-deep .el-loading-mask {
}
.popupCustomBox{
position: relative;
padding: 4px 10px;
box-sizing: border-box;
background: #06254282;
background: #2a88e082;
color: #fff;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
.popupCustomTitle_title{
padding: 4px;
box-sizing: border-box;
font-size: 12px;
line-height: 24px;
text-transform: none;
margin-bottom: 0;
border-bottom: 1px dashed #ececec;
margin-bottom: 2px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: nowrap;
}
&::after{
content: '';
@ -176,7 +179,18 @@ v-deep .el-loading-mask {
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #06254282;
border-top: 10px solid #2a88e082;
}
.popupCustomTitle_li{
font-size: 12px;
line-height: 22px;
text-transform: none;
margin-bottom: 0;
span{
display: inline-block;
width: 45px;
text-align: center;
}
}
}
</style>