123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- .search {
- --van-cell-background-color: transparent;
- --van-cell-font-size: 16px;
- --van-cell-text-color: #333;
- --van-cell-value-color: #999;
- --van-cell-icon-size: 10px;
- --base-bg: #f6f8f9;
- .sticky {
- :global(.van-sticky--fixed) {
- box-shadow: 10px 10px 10px var(--box-shadow-color);
- }
- >div {
- background-color: var(--base-bg);
- }
- }
- .title {
- padding-top: 16px;
- :global(.van-cell__value) {
- font-size: 12px;
- }
- }
- .keywordTitle {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 8px 9px;
- .t {
- font-size: 14px;
- font-weight: 500;
- color: #000000;
- line-height: 20px;
- }
- .remove {
- font-size: 16px;
- }
- }
- .keywords {
- margin-top: 10px;
- padding: 0 14px;
- padding-bottom: 10px;
- display: flex;
- align-items: center;
- // .content::-webkit-scrollbar {
- // display: none;
- // }
- .content {
- flex: 1;
- // overflow: hidden;
- // overflow-x: auto;
- display: flex;
- flex-wrap: wrap;
- .searchKeyword {
- --van-tag-default-color: white;
- --van-tag-text-color: #313443;
- font-size: 14px;
- padding: 5px 14px;
- margin-right: 5px;
- margin-bottom: 10px;
- max-width: 100px;
- display: block;
- word-break: keep-all;
- }
- .arrowMore {
- width: 27px;
- height: 27px;
- border-radius: 50%;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- background-color: #fff;
- font-size: 12px;
- color: #93959F;
- }
- }
- }
- .label {
- margin-right: 8px;
- font-size: 14px;
- :global {
- .van-list__loading,
- .van-list__finished-text,
- .van-list__error-text {
- width: 100%;
- }
- .iconfont-down {
- margin-left: 4px;
- }
- }
- }
- }
- .sticky {
- :global {
- .van-sticky {
- background: url('../../images/bg-image.png') no-repeat top center;
- background-size: 100% 214px;
- box-shadow: none !important;
- }
- .van-search__content {
- background: rgba(255, 255, 255, 0.5) !important;
- input::placeholder {
- color: rgba(0, 0, 0, 0.4) !important;
- }
- input {
- color: rgba(0, 0, 0, 0.4) !important;
- }
- .van-field__clear {
- color: rgba(0, 0, 0, 0.4) !important;
- }
- }
- }
- }
- .bgImg {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 214px;
- // object-fit: cover;
- z-index: -1;
- }
- .tagTabs {
- --van-cell-background-color: transparent;
- --van-cell-font-size: 16px;
- --van-cell-text-color: #333;
- --van-cell-value-color: #999;
- --van-cell-icon-size: 10px;
- :global {
- .van-tab {
- font-size: 16px !important;
- margin-top: 15px;
- color: #999999;
- }
- .van-tab--active {
- font-size: 16px !important;
- color: #131415;
- }
- .van-tabs__line {
- width: 24px;
- height: 4px;
- background: linear-gradient(90deg, #FF3C81 0%, rgba(255, 118, 166, 0.5) 100%) !important;
- border-radius: 36px 36px 0px 0px;
- }
- }
- }
|