12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /* pages/address/address.wxss */
- .address_container {
- padding-bottom: 130rpx;
- }
- .adress_wrap {
- padding: 20rpx;
- font-size: 24rpx;
- background: #fff;
- }
- .address_line {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- line-height: 38rpx;
- padding-right: 50rpx;
- box-sizing: border-box;
- }
- .add_address_btn {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- color: #fff;
- background: #fe7124;
- line-height: 92rpx;
- text-align: center;
- font-size: 30rpx;
- z-index: 9;
- }
- .modify_address_wrap {
- display: flex;
- justify-content: center;
- align-items: center;
- position: absolute;
- right: 0;
- top: 0;
- bottom: 0;
- z-index: 2;
- width: 100rpx;
- }
- .modify_address {
- width: 38rpx;
- height: 44rpx;
- }
|