index.wxss 1.0 KB

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