index.module.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .A2ZL {
  2. position: absolute;
  3. z-index: 10;
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. background-color: #fff;
  9. border-radius: 10px;
  10. padding: 15px 24px;
  11. :global {
  12. .lookZLBtn {
  13. text-align: end;
  14. margin-bottom: 10px;
  15. padding-right: 45px;
  16. }
  17. .lookZLBox {
  18. width: 100%;
  19. height: calc(100% - 42px);
  20. position: relative;
  21. overflow-y: auto;
  22. .lookTit {
  23. width: calc(100% - 30px);
  24. font-weight: 700;
  25. color: var(--themeColor);
  26. font-size: 18px;
  27. padding: 12px 0;
  28. border-top: 1px solid #ccc;
  29. }
  30. .lookTit {
  31. display: flex;
  32. width: 1000px;
  33. justify-content: space-between;
  34. }
  35. }
  36. .lookZLBoxAdd {
  37. position: absolute;
  38. top: 0;
  39. left: 0;
  40. z-index: 100;
  41. width: 100%;
  42. height: 100%;
  43. padding: 50px;
  44. background-color: rgba(0, 0, 0, 0.6);
  45. border-radius: 10px;
  46. & > div {
  47. position: relative;
  48. width: 100%;
  49. height: 100%;
  50. }
  51. }
  52. }
  53. }