108 lines
1.7 KiB
Plaintext
108 lines
1.7 KiB
Plaintext
/* subpages/goodsaddress/goodsaddress.wxss */
|
|
.empty-box {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: white;
|
|
}
|
|
|
|
.empty-box image {
|
|
width: 140rpx;
|
|
height: 100rpx;
|
|
}
|
|
|
|
.empty-box text {
|
|
margin-top: 20rpx;
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
.content-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 95%;
|
|
padding: 20rpx;
|
|
border-radius: 10rpx;
|
|
box-shadow: 5rpx 5rpx 20rpx #f2f2f2;
|
|
margin: 20rpx 20rpx 100rpx 0rpx;
|
|
}
|
|
|
|
.address-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
padding: 10rpx;
|
|
border-bottom: 1rpx solid #f2f2f2;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
.address-item .check {
|
|
width: 48rpx;
|
|
height: 48rpx;
|
|
|
|
}
|
|
|
|
.address-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
margin-left: 20rpx;
|
|
}
|
|
|
|
.address-area {
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
.address-name {
|
|
font-size: 40rpx;
|
|
margin: 10rpx 0rpx;
|
|
}
|
|
|
|
.address-phone {
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
.address-control-box {
|
|
display: flex;
|
|
width: 80rpx;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
|
|
.edit-icon {
|
|
width: 48rpx;
|
|
height: 48rpx;
|
|
}
|
|
|
|
.del-icon {
|
|
width: 48rpx;
|
|
height: 48rpx;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.bottom-btn {
|
|
height: 80rpx;
|
|
background: #9f1512;
|
|
border-radius: 10rpx;
|
|
text-align: center;
|
|
color: white;
|
|
position: fixed;
|
|
bottom: 0rpx;
|
|
left: 0rpx;
|
|
line-height: 80rpx;
|
|
margin: 0rpx 20rpx 10rpx 20rpx;
|
|
width: 95%;
|
|
} |