index.wxss 587 B

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