Files
FreeERP.Applet/miniprogram/pages/index/index.wxss

84 lines
1.3 KiB
Plaintext
Raw Normal View History

2026-01-21 17:05:30 +08:00
page {
background: #f5f5f5;
}
.menu-box {
background-color: #fff;
border-radius: 8rpx;
margin-bottom: 32rpx;
}
.menu-title {
display: flex;
align-items: center;
padding: 16rpx 24rpx;
border-bottom: 1rpx solid #ddd;
}
.menu-children-box {
display: flex;
align-items: center;
flex-wrap: wrap;
padding: 16rpx;
}
.menu-item {
display: inline-flex;
flex-direction: column;
2026-01-21 17:05:30 +08:00
width: clamp(80rpx, 25%, 200rpx);
box-sizing: border-box;
2026-01-21 17:05:30 +08:00
padding: 16rpx;
--width: calc((100vw - 32rpx - 48rpx - 16rpx) / 4 * 0.4);
justify-content: center;
align-items: center;
}
.menu-item:active {
background-color: #f5f5f5;
}
.nav-item-icon {
width: var(--width);
height: var(--width);
display: inline-flex;
box-sizing: border-box;
}
2026-01-21 17:05:30 +08:00
.block-box {
display: grid;
grid-template-columns: 1fr 1fr;
row-gap: 24rpx;
column-gap: 24rpx;
margin-bottom: 48rpx;
}
.block-item-box {
border-radius: 8rpx;
padding: 24rpx;
box-sizing: border-box;
}
.block-item-name {
font-size: 1.125em;
margin-bottom: 32rpx;
}
.block-item-value {
display: flex;
font-size: 1.4em;
font-weight: bold;
align-items: flex-end;
line-height: 1.2;
justify-content: flex-end;
}
.block-item-value text:first-child {
line-height: 1;
}
.block-item-value text:last-child {
font-weight: normal;
font-size: 0.75em;
color: #333;
}