search.wxss 479 B

123456789101112131415161718192021222324252627282930313233
  1. /* common.wxss */
  2. /* @import "/utils/common.wxss"; */
  3. /* 搜索框 */
  4. .diy-search {
  5. background: #f1f1f2;
  6. padding: 20rpx 20rpx;
  7. font-size: 26rpx;
  8. }
  9. .diy-search .inner {
  10. height: 60rpx;
  11. background: #fff;
  12. overflow: hidden;
  13. }
  14. .diy-search .inner.radius {
  15. border-radius: 10rpx;
  16. }
  17. .diy-search .inner.round {
  18. border-radius: 60rpx;
  19. }
  20. .diy-search .inner .search-input {
  21. height: 60rpx;
  22. /* width: 100%; */
  23. line-height: 60rpx;
  24. color: #999;
  25. padding: 0 20rpx;
  26. }