1
0

store.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. page ,.container{
  2. height: 100%;
  3. overflow: hidden;
  4. background: #f4f4f4;
  5. }
  6. .store-header{
  7. height: 90rpx;
  8. background-color: #fff;
  9. display: flex;
  10. align-items: center;
  11. position: absolute;
  12. top: 0;
  13. left: 0;
  14. width: 100%;
  15. z-index: 501;
  16. }
  17. .store-tag{
  18. position: relative;
  19. padding: 5px 10px;
  20. border-radius: 8px;
  21. border: 1px solid rgb(231, 231, 231);
  22. background-color: rgb(244, 244, 244);
  23. color: rgb(102, 102, 102);
  24. font-size: .9em;
  25. margin-left: 10px
  26. }
  27. .store-tag.arrow{
  28. padding: 5px 18px 5px 13px;
  29. }
  30. .store-tag.selected{
  31. border: 1px solid rgb(253, 118, 34);
  32. background-color: rgb(255, 245, 239);
  33. color: rgb(238, 103, 35);
  34. }
  35. .store-tag.arrow::after{
  36. right: 5px;
  37. border-color: rgb(102, 102, 102);
  38. border-width: 1px 1px 0 0;
  39. }
  40. .store-tag.selected.arrow::after{
  41. right: 5px;
  42. border-color: rgb(238, 103, 35);
  43. border-width: 1px 1px 0 0;
  44. }
  45. .topic-list {
  46. position: absolute;
  47. height: 100%;
  48. width: 100%;
  49. top: 0;
  50. left: 0;
  51. padding-top: 90rpx;
  52. box-sizing: border-box;
  53. z-index: 500;
  54. }