This commit is contained in:
duanliang
2025-06-04 14:56:19 +08:00
parent 9b185b2a56
commit de4f68066c
2 changed files with 23 additions and 3 deletions

View File

@@ -211,8 +211,21 @@
.modal-body {
padding: 16px;
color:#fff;
height:vh(850);
height:vh(780);
overflow:auto;
/* 滚动条整体样式 */
&::-webkit-scrollbar {
width: vw(4); /* 滚动条的宽度 */
}
/* 滚动条轨道 */
&::-webkit-scrollbar-track {
background: 'transparent'; /* 轨道的背景色 */
}
/* 滚动条滑块 */
&::-webkit-scrollbar-thumb {
background: rgba(0, 150, 255, 0.63); /* 滑块的背景色 */
border-radius: 5px; /* 滑块的圆角 */
}
}
.m-modal{
display: flex;
@@ -248,6 +261,13 @@
line-height: 2;
color: #fff;
margin-top:vh(10);
width:100%;
img{
width:100%;
}
}
.content *{
width:100%;
}
.modal-footer {