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

@@ -57,7 +57,7 @@
top: '34%', top: '34%',
textStyle: { textStyle: {
color: '#00D0FF', color: '#00D0FF',
fontSize: fitChartSize(24) fontSize: fitChartSize(20)
} }
}, },
{ {
@@ -66,7 +66,7 @@
top: '56%', top: '56%',
textStyle: { textStyle: {
color: '#fff', color: '#fff',
fontSize: fitChartSize(16) fontSize: fitChartSize(14)
} }
} }
], ],

View File

@@ -211,8 +211,21 @@
.modal-body { .modal-body {
padding: 16px; padding: 16px;
color:#fff; color:#fff;
height:vh(850); height:vh(780);
overflow:auto; 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{ .m-modal{
display: flex; display: flex;
@@ -248,6 +261,13 @@
line-height: 2; line-height: 2;
color: #fff; color: #fff;
margin-top:vh(10); margin-top:vh(10);
width:100%;
img{
width:100%;
}
}
.content *{
width:100%;
} }
.modal-footer { .modal-footer {