| 123456789101112131415161718192021222324252627282930313233 |
- /* pages/my/addAddress/addAddress.wxss */
- .radio{
- display: block;
- text-align: right;
- margin: 30rpx 20rpx 50rpx 0;
- }
- .info{
- width: 85%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin: 30rpx auto;
- }
- .info .input{
- width: 450rpx;
- height: 100rpx;
- line-height: 100rpx;
- background: #F2F2F2;
- border-radius: 10rpx;
- padding-left: 20rpx;
- }
- .info .input .placeholder{
- color: rgb(119, 117, 117);
- }
- .saveAddress{
- width: 583rpx !important;
- height: 96rpx;
- background: #FED279;
- position: fixed;
- left: 50%;
- bottom: 100rpx;
- transform: translate(-50%,0);
- }
|