| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | .VerticalBox {    display: flex;    align-items: flex-start;    width: 100%;    height: 100%;}.VerticalBox-item {    width: 206rpx;    height: 268rpx;    text-align: center;    background: #F6F7F8;    border-radius: 12rpx;    margin-right: 30rpx;}.VerticalBox-image {    width: 186rpx;    height: 134rpx;    border-radius: 12rpx;    margin: 10rpx auto 14rpx;}.VerticalBox-title {    font-family: PingFangSC-Medium, PingFang SC;    font-size: 28rpx;    font-weight: 550;    color: #000000;    margin-bottom: 10rpx;    opacity: .9;}.VerticalBox-explain {    font-size: 24rpx;    color: #333333;}.zhanhui {    flex-wrap: wrap;}.VerticalBox-item {    margin-right: 23rpx;}.VerticalBox-item:nth-child(3n) {    margin-right: 0 !important;}.VerticalBox-item:nth-child(n+3) {    margin-bottom: 10rpx;}
 |