123456789101112131415161718192021222324252627282930313233 |
- .VerticalBox {
- display: flex;
- justify-content: space-around;
- width: 100%;
- height: 100%;
- }
- .VerticalBox-item {
- width: 206rpx;
- height: 268rpx;
- text-align: center;
- background: #F6F7F8;
- border-radius: 12rpx;
- }
- .VerticalBox-image {
- width: 186rpx;
- height: 134rpx;
- border-radius: 12rpx;
- margin: 10rpx auto 20rpx;
- }
- .VerticalBox-title {
- font-size: 28rpx;
- font-weight: 500;
- color: #000000;
- margin-bottom: 10rpx;
- }
- .VerticalBox-explain {
- font-size: 24rpx;
- color: #333333;
- }
|