index.less 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #imgPreview{
  2. position: fixed;
  3. width: 100%;
  4. height: 100%;
  5. z-index: 888;
  6. top: 0;
  7. left: 0;
  8. padding: 40px;
  9. box-sizing: border-box;
  10. &>div.carousel-root{
  11. height: 100%;
  12. &>.carousel-slider{
  13. height: 80%;
  14. &>.slider-wrapper{
  15. height: 100%;
  16. ul.slider{
  17. height: 100%;
  18. li{
  19. height: 100%;
  20. &>div{
  21. height: 100%;
  22. position: relative;
  23. img{
  24. // height: 100%;
  25. // width: auto;
  26. max-height: 100%;
  27. width: auto;
  28. max-width: 1200px;
  29. position: absolute;
  30. top: 50%;
  31. left: 50%;
  32. transform: translate(-50%, -50%);
  33. }
  34. }
  35. }
  36. }
  37. }
  38. }
  39. &>.carousel > .thumbs-wrapper .thumbs{
  40. text-align: center;
  41. }
  42. }
  43. &>.close{
  44. position: absolute;
  45. right: 250px;
  46. top: 5px;
  47. color: #fff;
  48. font-size: 24px;
  49. z-index: 890;
  50. }
  51. &>.back{
  52. position: absolute;
  53. width: 100%;
  54. height: 100%;
  55. background-color: rgba(0, 0, 0, .7);
  56. top: 0;
  57. left: 0;
  58. }
  59. }