index.wxss 786 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .search_box {
  2. display: flex;
  3. justify-content: space-between;
  4. align-items: center;
  5. height: 60rpx;
  6. width: 100vw;
  7. padding: 0 24rpx;
  8. box-sizing: border-box;
  9. }
  10. .searc {
  11. flex: 1;
  12. display: flex;
  13. align-items: center;
  14. height: 100%;
  15. opacity: 0.37;
  16. padding-left: 20rpx;
  17. }
  18. input {
  19. flex: 1;
  20. text-align: left;
  21. padding-left: 5rpx;
  22. }
  23. .searc_but {
  24. width: 118rpx;
  25. height: 60rpx;
  26. line-height: 60rpx;
  27. text-align: center;
  28. background: #FFB600;
  29. border-radius: 10rpx;
  30. font-size: 28rpx;
  31. font-weight: 500;
  32. color: #FFFFFF;
  33. margin-left: 16rpx;
  34. }
  35. .clear {
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. width: 50rpx;
  40. height: 100%;
  41. line-height: 100%;
  42. z-index: 999;
  43. }