index.wxss 860 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. margin-top: 30rpx;
  10. }
  11. .searc {
  12. flex: 1;
  13. display: flex;
  14. align-items: center;
  15. height: 100%;
  16. background: #FFFFFF;
  17. border-radius: 10rpx;
  18. opacity: 0.37;
  19. padding-left: 20rpx;
  20. }
  21. input {
  22. flex: 1;
  23. text-align: left;
  24. padding-left: 5rpx;
  25. }
  26. .searc_but {
  27. width: 118rpx;
  28. height: 60rpx;
  29. line-height: 60rpx;
  30. text-align: center;
  31. background: #4BBECF;
  32. border-radius: 10rpx;
  33. font-size: 28rpx;
  34. font-weight: 500;
  35. color: #FFFFFF;
  36. margin-left: 16rpx;
  37. }
  38. .clear {
  39. display: flex;
  40. justify-content: center;
  41. align-items: center;
  42. width: 50rpx;
  43. height: 100%;
  44. line-height: 100%;
  45. z-index: 999;
  46. }