search.less 613 B

1234567891011121314151617181920212223242526272829
  1. .search_box {
  2. display: flex;
  3. width: 100%;
  4. height: 80rpx;
  5. background: #fff;
  6. padding: 10rpx 24rpx;
  7. align-items: center;
  8. .search{
  9. display: flex;
  10. width: 520rpx;
  11. border-radius: 30rpx;
  12. height: 60rpx;
  13. background: #f1f1f1;
  14. align-items: center;
  15. padding-left: 30rpx;
  16. margin-right: 16rpx;
  17. .search_input {
  18. margin-left: 10rpx;
  19. }
  20. }
  21. .search_btn {
  22. height: 54rpx;
  23. width: 180rpx;
  24. font-size: 32rpx;
  25. line-height: 54rpx;
  26. font-weight: 500;
  27. padding: 0;
  28. }
  29. }