1234567891011121314151617181920212223 |
- /* components/detail-table/index.wxss */
- .sg-row {
- display: flex;
- align-items: center;
- }
- .sg-light-gray-bg {
- background: #f0f0f0;
- }
- .sg-cell {
- width: 150rpx;
- height: 50rpx;
- border: 1px solid #f0f0f0;
- font-size: 0.8rem;
- line-height: 50rpx;
- text-align: center;
- overflow: hidden;
- }
- .sg-box {
- display: flex;
- align-items: center;
- justify-content: center;
- padding-top: 50rpx;
- }
|