zoujiandong 4948f35fb3 1.22
2024-01-22 08:42:14 +08:00

132 lines
2.1 KiB
Plaintext

/* pages/editAddress/editAddress.wxss */
.page{
overflow: hidden;
display: flex;
flex-direction: column;
}
.cellbox{
margin-top:192rpx;
}
.cellbox .cell{
box-sizing: border-box;
background-color: #fff;
align-items: center;
display: flex;
padding:0 32rpx;
}
.cellrow{
height:105rpx;
width:100%;
justify-content: space-between;
align-items: center;
display: flex;
overflow: hidden;
border-bottom:1rpx solid #E3E4E5;
}
.cell:last-child .cellrow{
border-bottom: none;
}
.iptbox{
display: flex;
flex:1;
position: relative;
align-items: center;
justify-content: flex-end;
}
.righticon{
width:24rpx;
height: 48rpx;
}
.name{
font-weight: 500;
display: flex;
color:#333;
font-size: 30rpx;
align-items: center;
white-space: nowrap;
}
.name .red{
margin-top: 20rpx;
color:#E34D59;
}
.placeholdeript{
color: #C5C8CB;
font-size: 28rpx;
}
.placeholder{
top:50%;
transform:translateY(-50%);
z-index:0;
position: absolute;
text-align: right;
height:80rpx!important;
line-height: 80rpx;
font-size: 28rpx;
font-weight: 400;
color: #C5C8CB;
}
.ipt{
position: relative;
z-index:2;
width:100%;
height:40rpx!important;
line-height:40rpx!important;
text-align: right;
color: #666666;
font-size: 28rpx;
}
.bottombox{
margin-top: 20rpx;
flex:1;
background-color: #fff;
}
.row{
display: flex;
padding:68rpx 32rpx 22rpx;
border-bottom: 1rpx solid #E3E4E5;
}
.tagbox{
display: flex;
margin-left: 10rpx;
}
.label{
margin-top: 14rpx;
color: #333333;
font-size: 30rpx;
}
.tag{
width: 114rpx;
height: 58rpx;
background: #fff;
border-radius: 29rpx;
color: #999999;
font-size: 28rpx;
margin-left: 20rpx;
display: flex;
align-items: center;
border: 1rpx solid #999999;
justify-content: center;
}
.tag.active{
background: #3CC7C0;
border: 1rpx solid #3CC7C0;
color:#fff;
}
.btn{
position: absolute;
bottom:20rpx;
left:32rpx;
right:32rpx;
display: flex;
justify-content: center;
align-items: center;
color:#fff;
height: 80rpx;
background: #3CC7C0;
border-radius: 8rpx;
}