| 1234567891011121314151617181920 |
- // 卡片交互混入 — 封装统一的卡片样式和交互反馈
- @mixin card-interactive($radius: 24rpx, $shadow-opacity: 0.06) {
- background: $uni-bg-color-card;
- border-radius: $radius;
- box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, $shadow-opacity);
- transition: all 0.15s ease;
- &:active {
- transform: scale(0.98);
- box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, $shadow-opacity * 0.67);
- }
- }
- // 段落头部圆点混入
- @mixin section-dot($size: 10rpx) {
- width: $size;
- height: $size;
- background: $uni-color-primary;
- border-radius: 50%;
- }
|