123456789101112131415161718192021222324252627282930313233 |
- /* dispatcher/pages/information/information.wxss */
- @import '../../../templates/loading/loading.wxss';
- .list {
- padding: 0rpx;
- }
- .li {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 30rpx;
- background: #fff;
- border-radius: 0;
- border-bottom: solid 1rpx #e6e6e6;
- margin: 0;
- }
- .li-label {
- font-size: 32rpx;
- color: #666;
- margin: 0;
- }
- .li-image {
- width: 60rpx;
- height: 60rpx;
- border-radius: 60rpx;
- }
- .li-input,
- .li-picker,
- .li-text {
- width: 400rpx;
- font-size: 30rpx;
- color: #999;
- text-align: right;
- }
|