index.less 1001 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* components/w-search/index.wxss */
  2. .searchList {
  3. margin: 0;
  4. padding: 0 !important;
  5. height: 70rpx !important;
  6. border-radius: 35rpx !important;
  7. border: 1rpx solid #ffffff !important;
  8. &.white {
  9. background: #fff !important;
  10. .van-search__content {
  11. background: #fff !important;
  12. }
  13. }
  14. &.gray {
  15. background: #f8f8f8 !important;
  16. .van-search__content {
  17. background: #f8f8f8 !important;
  18. }
  19. }
  20. .icon-search {
  21. width: 32rpx;
  22. height: 32rpx;
  23. margin: auto 10rpx auto auto;
  24. }
  25. .van-search__content {
  26. border-top-left-radius: 35rpx !important;
  27. border-bottom-left-radius: 35rpx !important;
  28. }
  29. .van-cell {
  30. font-size: 26rpx !important;
  31. }
  32. .searchBtn {
  33. width: 112rpx;
  34. line-height: 54rpx !important;
  35. padding: 0 !important;
  36. text-align: center;
  37. background-color: #1cacf1;
  38. font-weight: 500;
  39. font-size: 28rpx;
  40. color: #ffffff;
  41. line-height: 40rpx;
  42. border-radius: 40rpx;
  43. margin-right: 6rpx;
  44. }
  45. }