| 12345678910111213141516171819202122232425 |
- /* pages/my/addressManage/addressManage.wxss */
- .header{
- line-height: 100rpx;
- display: flex;
- justify-content: space-between;
- background: #F9F9F9;
- }
- .header text:nth-child(1){
- margin-left:20rpx;
- }
- .header text:nth-child(2){
- margin-right: 20rpx;
- }
- .itemAddress{
- width: 90%;
- margin: auto;
- border-bottom: 2rpx solid #bbbaba;
- padding: 50rpx 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .itemAddress .content{
- max-width: 530rpx;
- }
|