index.less 699 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .box {
  2. margin-bottom: 10px;
  3. border: 1px solid lightgray;
  4. .top {
  5. display: flex;
  6. flex-wrap: wrap;
  7. justify-content: space-between;
  8. width: 100%;
  9. border-bottom: 1px solid lightgray;
  10. .left {
  11. display: flex;
  12. align-items: center;
  13. width: 60%;
  14. margin: 0 5px;
  15. span {
  16. display: inline-block;
  17. height: 40px;
  18. margin: 0 10px;
  19. line-height: 40px;
  20. cursor: pointer;
  21. }
  22. }
  23. .right {
  24. display: flex;
  25. align-items: center;
  26. width: 10%;
  27. margin: 0 5px;
  28. span {
  29. margin: 0 5px;
  30. }
  31. }
  32. .disabled {
  33. color: rgba(#000, 0.5);
  34. cursor: not-allowed;
  35. }
  36. }
  37. }