index.module.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. .Object2 {
  2. :global {
  3. .searchBox {
  4. padding: 20px 35px;
  5. display: flex;
  6. align-items: center;
  7. .row {
  8. margin-right: 50px;
  9. .cutShow {
  10. cursor: pointer;
  11. display: inline-block;
  12. width: 50px;
  13. height: 32px;
  14. border: 1px solid #ccc;
  15. border-radius: 4px 0 0 4px;
  16. font-size: 20px;
  17. text-align: center;
  18. }
  19. .cutShow2 {
  20. border-radius: 0 4px 4px 0;
  21. }
  22. .active {
  23. pointer-events: none;
  24. color: #d3b453;
  25. background-color: var(--themeColor);
  26. }
  27. }
  28. }
  29. .imgList {
  30. padding: 0 30px;
  31. width: 100%;
  32. height: calc(100% - 176px);
  33. overflow-y: auto;
  34. display: flex;
  35. flex-wrap: wrap;
  36. .imgListNone {
  37. color: var(--themeColor);
  38. font-size: 20px;
  39. margin: 0 auto;
  40. padding-top: 200px;
  41. }
  42. .imgListRow {
  43. cursor: pointer;
  44. transition: all 0.3s;
  45. width: 238px;
  46. height: 240px;
  47. border: 1px solid #ccc;
  48. margin: 0 20px 20px 0;
  49. &:nth-of-type(5n) {
  50. margin: 0 0 20px 0;
  51. }
  52. & > p {
  53. border-top: 1px solid #ccc;
  54. width: 100%;
  55. height: 40px;
  56. line-height: 40px;
  57. text-align: center;
  58. padding: 0 3px;
  59. overflow: hidden;
  60. text-overflow: ellipsis;
  61. white-space: nowrap;
  62. }
  63. &:hover {
  64. box-shadow: 1px 1px 5px 1px #ccc;
  65. }
  66. }
  67. }
  68. .tableBox {
  69. padding: 0 30px;
  70. height: calc(100% - 176px);
  71. }
  72. .pageBox {
  73. width: 100%;
  74. display: flex;
  75. height: 60px;
  76. align-items: center;
  77. justify-content: center;
  78. }
  79. .downImgBox {
  80. position: fixed;
  81. z-index: 9999;
  82. top: 0;
  83. left: 0;
  84. width: 100%;
  85. height: 100%;
  86. background-color: rgba(0, 0, 0, 0.6);
  87. display: flex;
  88. justify-content: center;
  89. align-items: center;
  90. font-size: 20px;
  91. letter-spacing: 3px;
  92. color: #fff;
  93. padding-bottom: 100px;
  94. }
  95. }
  96. }