index.wxss 679 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .container {
  2. width: 100%;
  3. background-color: #fff;
  4. }
  5. .top {
  6. position: fixed;
  7. top: 0;
  8. left: 0;
  9. width: 100%;
  10. height: 120px;
  11. z-index: 999;
  12. background-color: #fff;
  13. }
  14. .searchBox {
  15. width: 90%;
  16. margin: 10px auto;
  17. border: 1px solid #999;
  18. }
  19. .tabsBox {
  20. width: 90%;
  21. margin: 10px auto;
  22. display: flex;
  23. }
  24. .tab {
  25. width: 22%;
  26. margin: 1%;
  27. text-align: center;
  28. border: 1px solid #d3d3d3;
  29. border-radius: 15px;
  30. font-size: 13px;
  31. padding: 8px;
  32. }
  33. .current {
  34. color: #fff !important;
  35. background-color: #ff9302;
  36. border: none;
  37. }
  38. .cardBox {
  39. margin-top: 110px;
  40. display: block;
  41. padding: 10px 0;
  42. }
  43. .uni-card__header-content-title {
  44. font-weight: 800;
  45. font-size: 18px !important;
  46. }