修改首页轮播报错、活动显示、公共页样式显示、我的车位等bug

This commit is contained in:
zhouyanli
2026-06-13 17:49:19 +08:00
parent b395631400
commit 5040564655
13 changed files with 190 additions and 76 deletions

View File

@@ -174,7 +174,8 @@ page {
.title {
font-size: 32rpx;
font-weight: bold;
width: 500rpx;
flex: 1;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
@@ -197,6 +198,19 @@ page {
margin: 20rpx 0;
background-color: #f9f9f9;
padding: 24rpx;
word-break: break-all;
/* 按高度截断,避免 line-clamp 导致文字重叠 */
max-height: 160rpx;
overflow: hidden;
/* 富文本里的图片不超出屏幕 */
:deep(img),
:deep(image) {
max-width: 100% !important;
height: auto !important;
display: block;
}
}
.detail {
display: flex;