index.less 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. .details-wrapper {
  2. position: fixed;
  3. width: 100%;
  4. height: 100%;
  5. left: 0;
  6. top: 0;
  7. z-index: 205;
  8. img {
  9. max-width: 100%;
  10. }
  11. }
  12. .details-content-wrapper {
  13. position: fixed;
  14. padding: 50px 0;
  15. width: 80%;
  16. height: 80%;
  17. left: 10%;
  18. top: 10%;
  19. background: #fff;
  20. overflow: hidden;
  21. z-index: 10;
  22. word-break: break-all;
  23. }
  24. .details-content-name {
  25. position: absolute;
  26. top: 0;
  27. width: 100%;
  28. padding: 0 40px;
  29. height: 50px;
  30. line-height: 50px;
  31. font-size: 24px;
  32. }
  33. .details-content-title-box {
  34. position: relative;
  35. height: 40px;
  36. line-height: 40px;
  37. font-size: 20px;
  38. }
  39. .details-content-title-name {
  40. position: absolute;
  41. background: #fff;
  42. padding-right: 5px;
  43. font-size: 20px;
  44. z-index: 10;
  45. }
  46. .details-content-title-line {
  47. position: absolute;
  48. width: 100%;
  49. height: 20px;
  50. top: 0;
  51. border-bottom: 1px dashed #ccc;
  52. }
  53. .details-close {
  54. position: absolute;
  55. right: 0;
  56. cursor: pointer;
  57. }
  58. .details-content {
  59. position: relative;
  60. height: 100%;
  61. padding: 0 180px 0 40px;
  62. overflow-y: auto;
  63. }
  64. .content-menu-box {
  65. position: absolute;
  66. top: 50px;
  67. right: 20px;
  68. width: 160px;
  69. height: 80%;
  70. overflow: hidden;
  71. }
  72. .content-menu-wrapper {
  73. width: 200px;
  74. height: 100%;
  75. overflow-y: auto;
  76. }
  77. .content-menu {
  78. background: #eee;
  79. border: 1px solid #eee;
  80. width: 160px;
  81. padding: 15px 18px;
  82. }
  83. .details-content-menu-line {
  84. height: 15px;
  85. width: 0;
  86. border: 1px solid #ccc;
  87. background-color: #ccc;
  88. margin-left: 4px
  89. }
  90. .details-content-menu-name {
  91. color: #33475f;
  92. font-size: 13px;
  93. cursor: pointer;
  94. }
  95. .details-content-menu-circle {
  96. display: inline-block;
  97. width: 8px;
  98. height: 8px;
  99. border-radius: 5px;
  100. border: 1px solid #ccc;
  101. margin-top: 5px;
  102. background-color: #eee;
  103. margin-right: 10px;
  104. }
  105. .details-mask {
  106. position: fixed;
  107. width: 100%;
  108. height: 100%;
  109. left: 0;
  110. top: 0;
  111. background: #000;
  112. opacity: .6;
  113. filter:alpha(opacity=60);
  114. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
  115. }