1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /* pages/address/address.wxss */
- .address_container {
- padding-bottom: 130rpx;
- }
- .adress_wrap {
- padding: 38rpx;
- 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;
- }
- .address_line image{
- width: 20px;
- height: 20px;
- margin-right: 15rpx;
- }
- .address_line_cardno{
- font-size: 36rpx;
- }
- .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;
- }
|