You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
1.6 KiB
84 lines
1.6 KiB
4 years ago
|
/* 选择样式 */
|
||
|
.select-item {
|
||
|
box-sizing: border-box;
|
||
|
width: 690rpx;
|
||
|
background: #fff;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
/* 街道选择样式 */
|
||
|
|
||
|
.select-item .select-street {
|
||
|
box-sizing: border-box;
|
||
|
padding: 0 25rpx;
|
||
|
background: #f6f8f8;
|
||
|
position: relative;
|
||
|
min-width: 250rpx;
|
||
|
width: 100%;
|
||
|
height: 70rpx;
|
||
|
/* white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis; */
|
||
|
}
|
||
|
|
||
|
.select-item .select-street .street-info {
|
||
|
box-sizing: border-box;
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
display: -webkit-flex;
|
||
|
justify-content: space-between;
|
||
|
flex-direction: row;
|
||
|
flex-wrap: wrap;
|
||
|
margin-top: 19rpx;
|
||
|
}
|
||
|
|
||
|
.select-item .select-street .street-info .image-and-text {
|
||
|
width: 80%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.select-item .select-street .street-info .image-and-text image:first-child {
|
||
|
width: 28rpx;
|
||
|
height: 32rpx;
|
||
|
}
|
||
|
|
||
|
.select-item .select-street .street-info .image-and-text .street-name {
|
||
|
width: 100%;
|
||
|
display: inline-block;
|
||
|
margin-left: 14rpx;
|
||
|
font-size: 28rpx;
|
||
|
font-weight: 500;
|
||
|
color: rgba(122, 122, 122, 1);
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
|
||
|
.select-item .select-street .street-info image:last-child {
|
||
|
margin-left: 11rpx;
|
||
|
width: 22rpx;
|
||
|
height: 16rpx;
|
||
|
}
|
||
|
|
||
|
/* 默认向下 */
|
||
|
|
||
|
.reverse {
|
||
|
transform: rotate(0deg);
|
||
|
transform-origin: center 8rpx;
|
||
|
transition: transform 0.4s;
|
||
|
}
|
||
|
|
||
|
/* 点击向上 */
|
||
|
|
||
|
._reverse {
|
||
|
transform: rotate(180deg);
|
||
|
transform-origin: center 8rpx;
|
||
|
transition: transform 0.4s;
|
||
|
}
|