index.wxss 569 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* pages/yuezhan/search/index.wxss */
  2. .container{
  3. background: #fff;
  4. }
  5. .search-wrapper{
  6. display: flex;
  7. height: 100%;
  8. border: 1px solid #888888;
  9. padding-left: 30rpx;
  10. border-radius: 15rpx;
  11. align-items: center;
  12. }
  13. .hot-search{
  14. margin-top: 14rpx;
  15. }
  16. .hot-search-title-txt{
  17. font-size: 34rpx;
  18. font-weight: bold;
  19. }
  20. .hot-tag{
  21. display: flex;
  22. flex-wrap: wrap;
  23. margin-top: 33rpx;
  24. }
  25. .hot-tag-item{
  26. text-align: center;
  27. font-size: 28rpx;
  28. background: #EEEEEE;
  29. color: #575757;
  30. border-radius: 15rpx;
  31. padding: 10rpx 15rpx;
  32. margin:0 30rpx 33rpx 0;
  33. }