| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- .searchContainer {
- max-height: 400px;
- overflow-y: auto;
- box-sizing: border-box;
- padding-bottom: 16px;
- background: var(--van-popup-background);
- transition: var(--van-popup-transition);
- }
- .searchMoreGroup {
- display: flex;
- align-items: center;
- padding: 18px 13px;
- background-color: #fff;
- }
- .searchTitle {
- padding: 15px 13px 2px;
- font-size: 15px;
- font-weight: 600;
- color: #333333;
- line-height: 21px;
- text-align: left;
- }
- .searchTypeGroup {
- display: flex;
- align-items: center;
- padding: 0 13px;
- flex-wrap: wrap;
- justify-content: space-between;
- }
- .searchTypeFlex {
- .searchTypeItem {
- width: 49%;
- }
- }
- .searchTypeFlex1 {
- justify-content: flex-start;
- .searchTypeItem {
- width: 31%;
- &:nth-child(3n + 1) {
- margin-right: 2.333%;
- }
- &:nth-child(3n + 3) {
- margin-left: 2.333%;
- }
- }
- }
- .searchTypeFlex2 {
- .searchTypeItem {
- width: 45%;
- }
- }
- .searchTypeItem {
- box-sizing: border-box;
- margin-top: 10px;
- height: 34px;
- line-height: 34px;
- background: #F6F6F6;
- border: 1px solid #f6f6f6;
- border-radius: 16px;
- font-size: 13px;
- color: #333333;
- padding: 0 7px;
- text-align: center;
- &.is-active {
- background: #F2FFFC;
- border: 1px solid #01C1B5;
- color: #00B2A7;
- }
- }
|