index.less 1.8 KB

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