| 123456789101112131415161718192021222324 |
- .contentV{
- display:flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .itemView{
- display:flex;
- justify-content: flex-start;
- margin-top: 30rpx;
- height: 130rpx;
- width: 90%;
- border: 2rpx dotted darkgray;
- background-color: aliceblue;
- }
- .textstye{
- font-size: 40rpx;
- margin-left: 30rpx;
- height: 130rpx;
- line-height:130rpx;
- }
|