2026-01-09 17:15:08 +08:00
|
|
|
/* pages/components/card_plugin/card_plugin.wxss */
|
|
|
|
|
.header,
|
|
|
|
|
.footer {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header:empty,
|
|
|
|
|
.content:empty {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-14 16:54:47 +08:00
|
|
|
.footer>view {
|
2026-01-09 17:15:08 +08:00
|
|
|
border-top: 1rpx solid #ddd;
|
2026-01-14 16:54:47 +08:00
|
|
|
padding: 16rpx 0 0 24rpx;
|
2026-01-09 17:15:08 +08:00
|
|
|
display: flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-14 16:54:47 +08:00
|
|
|
.footer>view:empty {
|
2026-01-09 17:15:08 +08:00
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.show-more {
|
|
|
|
|
color: #999;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-01-14 16:54:47 +08:00
|
|
|
font-size: 0.875em;
|
|
|
|
|
height: 52rpx;
|
2026-01-09 17:15:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.show-more:active {
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
}
|