1234567891011121314151617181920212223242526272829 |
- page {
- width: 100%;
- height: 100%;
- background: #eee;
- }
- .box {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding-top: 10rpx;
- }
- .box .view {
- width: 90%;
- background: white;
- display: flex;
- flex-direction: column;
- height: 200rpx;
- justify-content: space-around;
- margin-top: 20rpx;
- padding-left: 33rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: rgba(77, 77, 77, 1);
- border-radius: 10rpx;
- }
|