index.wxss 917 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .container {
  2. width: 100%;
  3. background-color: #fff;
  4. }
  5. .top {
  6. width: 100%;
  7. z-index: 999;
  8. background-color: #fff;
  9. }
  10. .tabsBox {
  11. width: 100%;
  12. border-bottom: 1px solid #d3d3d3;
  13. display: flex;
  14. }
  15. .tab {
  16. width: 25%;
  17. }
  18. .text {
  19. display: block;
  20. width: 80%;
  21. margin: 0 auto;
  22. text-align: center;
  23. }
  24. .current {
  25. color: #ff9302;
  26. border-bottom: 1px solid #ff9302;
  27. }
  28. .search {
  29. width: 90%;
  30. height: 2em;
  31. border: 1px solid #f3f3f3;
  32. background-color: #fff !important;
  33. border-radius: 12px;
  34. display: flex;
  35. margin: 20px auto;
  36. }
  37. .uni-easyinput {
  38. width: 70%;
  39. margin-left: 5%;
  40. height: 100%;
  41. font-size: 14px;
  42. }
  43. .uni-easyinput .uni-easyinput__content {
  44. border: none !important;
  45. height: 100%;
  46. line-height: 2em;
  47. }
  48. .searchBtn {
  49. width: 20%;
  50. background-color: #ff9302 !important;
  51. border: none;
  52. color: #fff !important;
  53. height: 2em;
  54. margin-top: 0.2em;
  55. margin-left: 4%;
  56. border-radius: 12px;
  57. }
  58. .list {
  59. display: block;
  60. }