12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- .search {
- .fixed{
- position: sticky;
- top: 0;
- z-index: 101;
- }
- .top {
- height: 50px;
- display: flex;
- align-items: center;
- padding: 0 16px;
- font-size: 16px;
- font-weight: bold;
- color: #fff;
- background-color: var(--van-primary-color);
- overflow: hidden;
- & > img {
- width: 25px;
- height: 25px;
- margin-right: 12px;
- }
- .topBtn {
- margin-left: auto;
- width: 60px;
- height: 26px;
- color: var(--van-primary-color);
- }
- }
- .tagContent {
- padding: 16px;
- display: flex;
- }
- .tagLeft {
- font-size: 14px;
- color: #000;
- white-space: nowrap;
- }
- .tags {
- font-size: 14px;
- color: #666;
- & > span {
- line-height: 20px;
- margin: 0 5px;
- }
- }
- }
- .searchContianer{
- padding: 0 16px;
- }
|