| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .list {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .list-item {
- padding: 5px 10px;
- display: flex;
- flex-direction: column;
- height: 60px;
- border-bottom: 1px solid #f0f0f0;
- align-content: center;
- align-items: center;
- .list-item-info {
- width: 100%;
- display: flex;
- justify-content: flex-start;
- height: 30px;
- padding-top: 5px;
- .phonenum {
- width: 75%;
- margin-left: 30px;
- }
- .receivername {
- width: 110px;
- }
- }
- .list-item-address {
- width: 100%;
- color: #999;
- font-size: 13px;
- }
- }
- text {
- color: #333;
- font-size: 16px;
- text-align: left;
- }
- }
- .buttom_view {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- margin-top: 20px;
- align-items: center;
- align-content: center;
- }
|