64 lines
984 B
Plaintext
64 lines
984 B
Plaintext
|
/* subpages/addshopaddress/addshopaddress.wxss */
|
||
|
.address-content {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: flex-start;
|
||
|
padding: 20rpx;
|
||
|
}
|
||
|
|
||
|
.address-item {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: flex-start;
|
||
|
align-items: center;
|
||
|
width: 100%;
|
||
|
font-size: 32rpx;
|
||
|
}
|
||
|
|
||
|
.address-item:nth-of-type(n+2) {
|
||
|
margin-top: 20rpx;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
.area-title {
|
||
|
width: 25%;
|
||
|
}
|
||
|
|
||
|
.line {
|
||
|
background: #9f1512;
|
||
|
width: 5rpx;
|
||
|
height: 35rpx;
|
||
|
}
|
||
|
|
||
|
.area-content {
|
||
|
flex: 2;
|
||
|
margin-left: 20rpx;
|
||
|
}
|
||
|
|
||
|
.arrow-icon {
|
||
|
width: 32rpx;
|
||
|
height: 32rpx;
|
||
|
}
|
||
|
|
||
|
|
||
|
.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%;
|
||
|
}
|
||
|
|
||
|
.current-address {
|
||
|
font-size: 36rpx;
|
||
|
padding: 20rpx 0rpx;
|
||
|
font-weight: bold;
|
||
|
}
|