search.wxss 574 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* pages/search/search.wxss */
  2. page{
  3. background: #fff;
  4. }
  5. .search input{
  6. background: #F1F1F1;
  7. height: 80rpx;
  8. border-radius: 10rpx;
  9. }
  10. .part{
  11. border-top: 1px solid #F1F1F1;
  12. padding: 40rpx 0;
  13. display: flex;
  14. justify-content: space-between;
  15. flex-wrap: wrap;
  16. }
  17. .title{
  18. color: #999;
  19. width: 100%;
  20. margin-bottom: 40rpx;
  21. }
  22. .part navigator{
  23. width: 49%;
  24. text-align: center;
  25. margin-bottom: 40rpx;
  26. }
  27. .part navigator:nth-child(odd){
  28. border-left: 1px solid #D8D8D8;
  29. }
  30. .part text{
  31. width: 50%;
  32. color: #3780CD;
  33. margin-bottom: 40rpx;
  34. text-align: center;
  35. }