| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- .classHeader {
- // background: linear-gradient(180deg, #59e5d5 0%, #fff 100%);
- background: linear-gradient(#59e5d5, 30%, #ffffff);
- }
- :global {
- .van-list__loading,
- .van-list__finished-text,
- .van-list__error-text {
- width: 100%;
- }
- }
- .elegant {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- padding: 14px;
- }
- .tedeoItem {
- border-radius: 4px 4px 0 0;
- background-color: #fff;
- overflow: hidden;
- width: 168px;
- margin-bottom: 12px;
- .teCover {
- height: 110px;
- width: 100%;
- vertical-align: middle;
- overflow: hidden;
- }
- .teSection {
- padding: 8px;
- }
- .teTitle {
- font-size: 14px;
- color: #1a1a1a;
- line-height: 20px;
- }
- .info {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .teUserInfo {
- display: flex;
- align-items: center;
- font-size: 12px;
- color: #999;
- padding: 8px 0;
- .teUserLogo {
- width: 18px;
- height: 18px;
- border-radius: 50%;
- margin-right: 5px;
- overflow: hidden;
- }
- .teUserName {
- padding-right: 6px;
- margin-right: 6px;
- // &::after {
- // content: '|';
- // display: inline-block;
- // }
- }
- }
- .teUserNum {
- color: #999999;
- }
- }
- .searchContainer {
- background-color: #fff;
- }
- .item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 14px;
- .searchItem {
- width: 168px;
- height: 56px;
- }
- .title {
- font-size: 14px;
- font-weight: 600;
- color: #333333;
- line-height: 20px;
- padding-top: 10px;
- padding-left: 75px;
- }
- .content {
- padding-left: 75px;
- font-size: 12px;
- color: #666666;
- line-height: 20px;
- }
- .searchFollow {
- background: url('./images/follow_bg.png') no-repeat center;
- background-size: 100%;
- }
- .active {
- .title,
- .content {
- color: #ff1f95;
- }
- }
- .searchLive {
- background: url('./images/live_bg.png') no-repeat center;
- background-size: 100%;
- }
- .active2 {
- .title,
- .content {
- color: var(--van-primary);
- }
- }
- }
- .searchDefault {
- margin: 0 0 12px 14px;
- display: inline-flex;
- align-items: center;
- padding: 4px 8px;
- border-radius: 20px;
- color: #666666;
- font-size: 13px;
- background: #f7f8f9;
- .star {
- margin-right: 5px;
- }
- }
|