1234567891011121314151617181920212223242526 |
- /* pages/operation/index.wxss */
- page{
- height: 100%;
- }
- .container{
- height: 100%;
- background-color: #fff;
- }
- .operation-list-cel{
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
- }
- .item-img{
- width: 100rpx;
- height: 100rpx;
- }
- .item-name{
- padding-top: 13rpx;
- font-size: 24rpx;
- color: #666666;
- min-width: 80rpx;
- text-align: center;
- }
|