1234567891011121314151617181920212223242526272829303132 |
- .title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .title .funBtn {
- height: 80rpx;
- width: 80rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .address {
- width: 100%;
- height: 450rpx;
- overflow-y: auto;
-
- box-sizing: border-box;
- }
- .address .address_item {
- box-sizing: border-box;
- border-bottom: 1px solid #eee;
- padding: 5rpx 15rpx;
- width: 100%;
- height: 80rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
-
- font-size: 30rpx;
- }
|