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.
113 lines
2.3 KiB
113 lines
2.3 KiB
.shops {
|
|
position: relative;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: linear-gradient(
|
|
180deg,
|
|
#f2f3f5 0%,
|
|
#f2f3f5 6%,
|
|
#fff 20%,
|
|
#fff 100%
|
|
);
|
|
position: relative;
|
|
font-family: SourceHanSansCN-Regular, SourceHanSansCN;
|
|
outline: none;
|
|
.header {
|
|
position: relative;
|
|
display: flex;
|
|
width: 100vw;
|
|
padding: 20px 24px 0 24px;
|
|
align-items: center;
|
|
.back {
|
|
flex: 0 0 48px;
|
|
height: 48px;
|
|
}
|
|
.input {
|
|
flex: 1;
|
|
width: calc(100vw - 80px - 24px);
|
|
margin-left: 8px;
|
|
background: #fff;
|
|
padding: 0 40px 0 46px;
|
|
font-family: PingFang SC;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
color: #000000;
|
|
border-radius: 8px;
|
|
box-sizing: border-box;
|
|
height: 48px;
|
|
border: none;
|
|
outline: none;
|
|
&::placeholder {
|
|
color: #999999;
|
|
}
|
|
}
|
|
.search {
|
|
position: absolute;
|
|
top: 34px;
|
|
left: 94px;
|
|
width: 20px;
|
|
height: 20px;
|
|
pointer-events: none;
|
|
}
|
|
.close {
|
|
position: absolute;
|
|
width: 20px;
|
|
height: 20px;
|
|
top: 34px;
|
|
right: 32px;
|
|
}
|
|
}
|
|
.floortabs {
|
|
margin: 24px 24px 14px 24px;
|
|
}
|
|
.wings {
|
|
padding: 0 24px;
|
|
}
|
|
.search-list {
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
width: calc(100vw - 48px);
|
|
height: calc(100vh - 92px);
|
|
margin: 24px;
|
|
margin-bottom: 0;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
.search-item {
|
|
display: flex;
|
|
position: relative;
|
|
background: #ffffff;
|
|
flex: 0 0 56px;
|
|
z-index: 10001;
|
|
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
|
|
border-radius: 8px;
|
|
align-items: center;
|
|
padding-right: 17px;
|
|
justify-content: space-between;
|
|
.floorname {
|
|
flex: 0 0 46px;
|
|
width: 46px;
|
|
font-family: DINPro;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
text-align: center;
|
|
color: #333333;
|
|
}
|
|
.format {
|
|
white-space: nowrap;
|
|
font-family: PingFang SC;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-size: 12px;
|
|
line-height: 18px;
|
|
color: #666666;
|
|
}
|
|
}
|
|
.search-item + .search-item {
|
|
margin-top: 16px;
|
|
}
|
|
}
|
|
}
|
|
|