index.less 400 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * 列表查询通用样式,移动端自适应
  3. */
  4. .search{
  5. margin-bottom: 54px;
  6. }
  7. .fold{
  8. width: calc(100% - 216px);
  9. display: inline-block
  10. }
  11. .operator{
  12. margin-bottom: 18px;
  13. }
  14. @media screen and (max-width: 900px) {
  15. .fold {
  16. width: 100%;
  17. }
  18. }
  19. .operator button {
  20. margin-right: 5px;
  21. }
  22. i {
  23. cursor: pointer;
  24. }
  25. .trcolor{
  26. background-color: rgba(255, 192, 203, 0.31);
  27. color:red;
  28. }