search.wxss 657 B

1234567891011121314151617181920212223242526272829303132333435
  1. @charset "UTF-8";
  2. /**
  3. * 主题色配置
  4. * 默认在 uni.scss 全局引入:@import '@/theme.scss';
  5. * <script> 下使用主题变量:import x from '@/theme.scss';
  6. */
  7. .page {
  8. background-color: #f8f8f8;
  9. font-family: PingFangSC;
  10. }
  11. .safeAreaPad {
  12. padding-bottom: constant(safe-area-inset-bottom);
  13. padding-bottom: env(safe-area-inset-bottom);
  14. box-sizing: content-box;
  15. }
  16. .search {
  17. width: 100%;
  18. }
  19. .u-content {
  20. border-radius: 0 !important;
  21. }
  22. .cancel {
  23. width: 14%;
  24. text-align: center;
  25. }
  26. .list .item {
  27. width: 100%;
  28. height: 100rpx;
  29. line-height: 100rpx;
  30. border-bottom: 1rpx solid #efefef;
  31. }
  32. .list .item.last-child {
  33. border: none;
  34. }