Files
nxxmdata/government-mini-program/app.wxss

40 lines
770 B
Plaintext
Raw Normal View History

2025-09-19 17:52:28 +08:00
/**app.wxss**/
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
/* 全局样式 */
page {
2025-10-17 17:29:11 +08:00
background-color: #f5f5f5;
font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', SimSun, sans-serif;
2025-09-19 17:52:28 +08:00
}
2025-10-17 17:29:11 +08:00
/* 通用按钮样式 */
2025-09-19 17:52:28 +08:00
.btn {
border-radius: 8rpx;
font-size: 28rpx;
2025-10-17 17:29:11 +08:00
padding: 20rpx 40rpx;
2025-09-19 17:52:28 +08:00
}
2025-10-17 17:29:11 +08:00
/* 卡片样式 */
.card {
background-color: #ffffff;
border-radius: 12rpx;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
margin: 20rpx;
padding: 30rpx;
2025-09-19 17:52:28 +08:00
}
2025-10-17 17:29:11 +08:00
/* 分割线样式 */
.divider {
height: 2rpx;
background-color: #e0e0e0;
margin: 20rpx 0;
2025-09-19 17:52:28 +08:00
}