index.wxss 487 B

123456789101112131415161718192021222324
  1. /* components/navi-card/index.wxss */
  2. .navi-card {
  3. width: 330rpx;
  4. height: 240rpx;
  5. background: rgba(255, 255, 255, 1);
  6. box-shadow: 0px 8rpx 20rpx 0px rgba(9, 36, 66, 0.04);
  7. border-radius: 8rpx;
  8. display: flex;
  9. flex-direction: column;
  10. justify-content: center;
  11. align-items: center;
  12. font-size: 28rpx;
  13. font-weight: 400;
  14. color: rgba(89, 108, 142, 1);
  15. line-height: 40rpx;
  16. margin-top: 30rpx;
  17. }
  18. .navi-icon {
  19. width: 66rpx;
  20. height: 66rpx;
  21. margin-bottom: 34rpx;
  22. }