123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- .chioseWrap {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-around;
- background-color: #f8f8f8;
- font-size: 14px;
- .searchBandWrap {
- max-width: 25%;
- }
- .searchBand {
- display: flex;
- flex-direction: row;
- align-items: center;
- p {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- }
- // .recordSearch {
- // :global {
- // .van-search {
- // padding-bottom: 0;
- // }
- // }
- // }
- .exerciseRecord {
- :global {
- .van-haptics-feedback:active {
- opacity: 1;
- }
- }
- }
- .searchMore {
- line-height: 1.2 !important;
- :global {
- .van-dropdown-item {
- z-index: 99;
- }
- .van-dropdown-menu__bar {
- box-shadow: none;
- height: var(--van-nav-bar-height);
- }
- .van-dropdown-item__content {
- border-radius: 0 0 12px 12px;
- // padding-bottom: calc(var(--van-button-large-height) + 52px);
- max-height: 100%;
- }
- .van-button + .van-button {
- margin-left: 15px;
- }
- .van-dropdown-menu__title:after {
- border-color: transparent transparent #aaaaaa #aaaaaa;
- }
- .van-dropdown-menu__title--active {
- color: #f67146;
- }
- .van-dropdown-menu__title--active:after {
- border-color: transparent transparent currentColor currentColor;
- }
- }
- .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%;
- }
- }
- .searchTypeItemLine {
- margin-top: 10px;
- width: 16px;
- height: 1px;
- background: #d8d8d8;
- }
- .searchTypeItem {
- box-sizing: border-box;
- margin-top: 10px;
- height: 32px;
- line-height: 32px;
- background: #f6f6f6;
- border: 1px solid #f6f6f6;
- border-radius: 16px;
- font-size: 13px;
- color: #333333;
- padding: 0 7px;
- text-align: center;
- &.is-active {
- background: #fff5f2;
- border: 1px solid #ffb097;
- color: #f67146;
- }
- }
- }
- .searchPreview {
- margin: 0 13px;
- padding-bottom: 12px;
- white-space: nowrap;
- overflow-y: auto;
- .searchPreviewItem {
- display: inline-flex;
- align-items: center;
- line-height: 28px;
- background: #f6f6f6;
- border-radius: 16px;
- margin-right: 8px;
- padding: 1px 10px 0;
- font-size: 13px;
- color: #333333;
- &:last-child {
- margin-right: 0;
- }
- .cross {
- font-size: 8px;
- margin-left: 6px;
- color: #aaaaaa;
- }
- }
- }
|