56 lines
818 B
CSS
56 lines
818 B
CSS
page {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.fenge{
|
|
height: 20rpx;
|
|
background-color: #f0f2f5;
|
|
}
|
|
|
|
.location-container {
|
|
padding-top: 20rpx;
|
|
}
|
|
|
|
.location-list {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.location-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 30rpx;
|
|
border-bottom: 1rpx solid #eee;
|
|
}
|
|
|
|
.location-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.location-info {
|
|
flex: 1;
|
|
}
|
|
|
|
.location-address {
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
line-height: 44rpx;
|
|
}
|
|
|
|
/* 选中状态的样式 */
|
|
.location-item .location-address {
|
|
color: #333;
|
|
}
|
|
|
|
/* 增加优先级确保选中样式生效 */
|
|
.location-item .location-address.active {
|
|
color: #fd631a !important;
|
|
}
|
|
|
|
.location-select {
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
} |