search.wxss 491 B

123456789101112131415161718192021222324252627
  1. page {
  2. background-color: #f8f8f8;
  3. }
  4. .container {
  5. padding: 0 30rpx 0 30rpx;
  6. align-items: center;
  7. }
  8. .list-item {
  9. display: flex;
  10. flex-direction: row;
  11. justify-content: space-between;
  12. align-items: center;
  13. width: 100%;
  14. padding: 10px 0 10px 0;
  15. box-sizing: border-box;
  16. border: 1px solid #000;
  17. border-style: none none solid none;
  18. border-bottom-color: lightgray;
  19. }
  20. .list-item:last-child {
  21. border-style: none;
  22. }
  23. .button {
  24. height: 80rpx;
  25. width: 690rpx;
  26. margin: 10rpx;
  27. }