| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- /**index.wxss**/
- .wrap{
- min-height: 100vh;
- background: #f6f6f6;
- }
- .address_list{
- padding: 30rpx 0 160rpx;
- }
- .address_item{
- margin-top: 30rpx;
- padding: 30rpx;
- background: #FFFFFF;
- }
- .address_item:first-child{
- margin-top: 0;
- }
- .address_item .item_t{
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .address_item .item_l{
- /* width: 465rpx; */
- flex: 1;
- padding-right: 20rpx;
- }
- .address_item .item_tag{
- font-size: 24rpx;
- color: #FFFFFF;
- padding: 6rpx 8rpx;
- background: #295C56;
- border-radius: 5rpx;
- margin-right: 20rpx;
- }
- .address_item .item_title{
- font-size: 28rpx;
- color: #0C0C0C;
- line-height: 40rpx;
- }
- .address_item .item_l_b{
- margin-top: 20rpx;
- font-size: 26rpx;
- color: rgba(12,12,12,.54);
- }
- .address_item .user_phone{
- padding-left: 10rpx;
- }
- .address_item .edit_icon{
- width: 35rpx;
- height: 35rpx;
- }
- .address_item .item_b{
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 26rpx;
- color: rgba(12,12,12,.54);
- margin-top: 20rpx;
- border-top: 1px solid rgba(35,36,40,.12);
- padding-top: 20rpx;
- }
- /* 底部按钮 */
- .btn_wrap{
- width: 100%;
- position: fixed;
- bottom: 60rpx;
- left: 0;
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- .btn_wrap .btn{
- width: 322rpx;
- height: 98rpx;
- background: #FFFFFF;
- border: 1px solid #E0E0E0;
- border-radius: 10rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 28rpx;
- color: #333333;
- }
- .btn_wrap .btn .wenzi{
- padding-left: 18rpx;
- }
- .btn_wrap .btn.wechat{
- background: #295C56;
- border: 0 none;
- color: #FFFFFF;
- }
- /* 确认地址 */
- .add_pop{
- width: 650rpx;
- background: #FFFFFF;
- border-radius: 10rpx;
- padding: 50rpx 40rpx;
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- }
- .add_pop .pop_tu{
- width: 137rpx;
- height: 186rpx;
- position: absolute;
- top: -166rpx;
- right: 20rpx;
- }
- .add_pop .add_pop_t{
- font-size: 30rpx;
- font-weight: 500;
- color: #000000;
- text-align: center;
- }
- .add_pop .add_pop_nr{
- margin-top: 30rpx;
- width: 570rpx;
- background: #F6F6F6;
- border-radius: 10rpx;
- padding: 30rpx;
- font-size: 30rpx;
- color: #000000;
- }
- .add_pop .add_wenzi.grey{
- padding-top: 24rpx;
- font-size: 28rpx;
- color: rgba(0,0,0,.87);
- }
- .add_pop .add_btns{
- margin-top: 40rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .add_pop .add_btns .btn{
- width: 270rpx;
- height: 72rpx;
- background: #295C56;
- border-radius: 10rpx;
- font-size: 30rpx;
- font-weight: 500;
- color: #FFFFFF;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .add_pop .add_btns .btn.cancel{
- background: #EEECEF;
- color: #333333;
- }
|