index.wxss 543 B

123456789101112131415161718192021222324252627282930313233
  1. .VerticalBox {
  2. display: flex;
  3. justify-content: space-around;
  4. width: 100%;
  5. height: 100%;
  6. }
  7. .VerticalBox-item {
  8. width: 206rpx;
  9. height: 268rpx;
  10. text-align: center;
  11. background: #F6F7F8;
  12. border-radius: 12rpx;
  13. }
  14. .VerticalBox-image {
  15. width: 186rpx;
  16. height: 134rpx;
  17. border-radius: 12rpx;
  18. margin: 10rpx auto 20rpx;
  19. }
  20. .VerticalBox-title {
  21. font-size: 28rpx;
  22. font-weight: 500;
  23. color: #000000;
  24. margin-bottom: 10rpx;
  25. }
  26. .VerticalBox-explain {
  27. font-size: 24rpx;
  28. color: #333333;
  29. }