/* pages/message/message.wxss */ .msgList { padding: 20rpx 24rpx 0; } .msgItem { background: #fff; border-radius: 10rpx; box-shadow: 0 0 20rpx rgba(229, 229, 229, .23); } .msgItem+.msgItem { margin-top: 20rpx; } .msgItem .head { display: flex; align-items: center; height: 80rpx; border-bottom: solid #e5e5e5 1rpx; } .msgItem .head .icon { width: 75rpx; height: 75rpx; } .msgItem .head .text { font-weight: 450; font-size: 32rpx; color: #282828; } .msgItem .content { margin-top: 24rpx; padding: 0 24rpx; font-size: 28rpx; color: #999; word-break: break-all; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; } .msgItem .time { padding: 24rpx; color: #c4c4c4; } .noNews { padding: 248rpx 0 0; text-align: center; } .noNews .pic { width: 412rpx; } .noLogin { padding: 200rpx 0; text-align: center; } .noLogin .text { font-size: 32rpx; color: #999; } .noLogin .btn { display: block; margin: 30rpx auto 0 !important; width: 380rpx; height: 80rpx; line-height: 80rpx; font-size: 32rpx; color: #fff; background: #007dff; } .tabBar { position: fixed; top: 0; left: 0; right: 0; background-color: #fff; box-shadow: 0 0 10rpx rgba(0, 0, 0, .08); display: flex; z-index: 100; } .tabBar .item { position: relative; flex: 1; width: 0; height: 94rpx; line-height: 94rpx; font-size: 30rpx; font-weight: 450; text-align: center; } .tabBar .item::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 62rpx; height: 6rpx; background-color: transparent; } .tabBar .item.active { color: #007dff; } .tabBar .active::after { background-color: #007dff; } .listWrap { margin-top: 94rpx; }