index.less 1003 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .patent-table {
  2. display: flex;
  3. flex-direction: column;
  4. .plist {
  5. display: flex;
  6. flex-direction: row;
  7. flex-wrap: wrap;
  8. .plitems {
  9. width: 23%;
  10. margin: 15px 1%;
  11. border-radius: 20px;
  12. padding: 25px;
  13. font-size: 16px;
  14. display: flex;
  15. flex-direction: row;
  16. position: relative;
  17. .pleft {
  18. display: flex;
  19. flex-direction: column;
  20. align-items: center;
  21. justify-content: center;
  22. padding-right: 25px;
  23. .round {
  24. width: 60px;
  25. height: 60px;
  26. background: green;
  27. border-radius: 50%;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. margin-bottom: 25px;
  32. }
  33. }
  34. .refresh {
  35. position: absolute;
  36. right: 25px;
  37. top: 25px;
  38. background: green;
  39. color: #fff;
  40. padding: 8px 10px;
  41. border-radius: 8px;
  42. cursor: pointer;
  43. }
  44. }
  45. }
  46. }