u-search.wxss 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* 水平间距 */
  2. /* 水平间距 */
  3. .u-empty.data-v-ed789780,
  4. .u-empty__wrap.data-v-ed789780,
  5. .u-tabs.data-v-ed789780,
  6. .u-tabs__wrapper.data-v-ed789780,
  7. .u-tabs__wrapper__scroll-view-wrapper.data-v-ed789780,
  8. .u-tabs__wrapper__scroll-view.data-v-ed789780,
  9. .u-tabs__wrapper__nav.data-v-ed789780,
  10. .u-tabs__wrapper__nav__line.data-v-ed789780 {
  11. display: flex;
  12. flex-direction: column;
  13. flex-shrink: 0;
  14. flex-grow: 0;
  15. flex-basis: auto;
  16. align-items: stretch;
  17. align-content: flex-start;
  18. }
  19. .u-search.data-v-ed789780 {
  20. display: flex;
  21. flex-direction: row;
  22. align-items: center;
  23. flex: 1;
  24. }
  25. .u-search__content.data-v-ed789780 {
  26. display: flex;
  27. flex-direction: row;
  28. align-items: center;
  29. padding: 0 10px;
  30. flex: 1;
  31. justify-content: space-between;
  32. border-width: 1px;
  33. border-color: transparent;
  34. border-style: solid;
  35. overflow: hidden;
  36. }
  37. .u-search__content__icon.data-v-ed789780 {
  38. display: flex;
  39. flex-direction: row;
  40. align-items: center;
  41. }
  42. .u-search__content__label.data-v-ed789780 {
  43. color: #303133;
  44. font-size: 14px;
  45. margin: 0 4px;
  46. }
  47. .u-search__content__close.data-v-ed789780 {
  48. width: 20px;
  49. height: 20px;
  50. border-top-left-radius: 100px;
  51. border-top-right-radius: 100px;
  52. border-bottom-left-radius: 100px;
  53. border-bottom-right-radius: 100px;
  54. background-color: #C6C7CB;
  55. display: flex;
  56. flex-direction: row;
  57. align-items: center;
  58. justify-content: center;
  59. transform: scale(0.82);
  60. }
  61. .u-search__content__input.data-v-ed789780 {
  62. flex: 1;
  63. font-size: 14px;
  64. line-height: 1;
  65. margin: 0 5px;
  66. color: #303133;
  67. }
  68. .u-search__content__input--placeholder.data-v-ed789780 {
  69. color: #909193;
  70. }
  71. .u-search__action.data-v-ed789780 {
  72. font-size: 14px;
  73. color: #303133;
  74. width: 0;
  75. overflow: hidden;
  76. transition-property: width;
  77. transition-duration: 0.3s;
  78. white-space: nowrap;
  79. text-align: center;
  80. }
  81. .u-search__action--active.data-v-ed789780 {
  82. width: 40px;
  83. margin-left: 5px;
  84. }