index.less 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. .drug-info-wrapper {
  2. position: fixed;
  3. overflow: hidden;
  4. width: 950px;
  5. height: 80%;
  6. left: 50%;
  7. top: 10%;
  8. margin-left: -475px;
  9. background: #fff;
  10. z-index: 303;
  11. padding: 40px 0 60px;
  12. box-shadow: 0px 0px 5px -2px #7d7c7c;
  13. }
  14. .drug-desc-wrapper {
  15. height: 100%;
  16. overflow-y: auto;
  17. padding: 0 40px;
  18. }
  19. .drug-title {
  20. position: absolute;
  21. top: 0;
  22. width: 100%;
  23. height: 40px;
  24. line-height: 40px;
  25. padding: 0 40px;
  26. border-bottom: 1px solid #979797;
  27. cursor: move;
  28. moz-user-select: -moz-none;
  29. -moz-user-select: none;
  30. -o-user-select:none;
  31. -khtml-user-select:none;
  32. -webkit-user-select:none;
  33. -ms-user-select:none;
  34. user-select:none;
  35. }
  36. .close-drug-desc {
  37. position: absolute;
  38. right: 0;
  39. top: 0;
  40. z-index: 9999;
  41. width: 40px;
  42. }
  43. .drug-desc-item {
  44. zoom: 1;
  45. padding: 5px 0;
  46. &:after{
  47. content: "";
  48. display: block;
  49. height: 0;
  50. clear: both;
  51. visibility: hidden;
  52. }
  53. }
  54. .drug-desc-title {
  55. display: inline-block;
  56. font-weight: bold;
  57. font-size: 14px;
  58. // height: 100%;
  59. // float: left;
  60. // width: 190px;
  61. // text-align-last:justify; /*chrome*/
  62. // text-justify: distribute; /*ff*/
  63. }
  64. .drug-desc-title::before {
  65. content: '【'
  66. }
  67. .drug-desc-title::after {
  68. content: '】'
  69. }
  70. .drug-title1 {
  71. height: 60px;
  72. line-height: 60px;
  73. font-size: 32px;
  74. color: #000000;
  75. text-align: center;
  76. }
  77. .drug-desc-content {
  78. /*width: 100%;*/
  79. margin: 0px 160px 0px 10px;
  80. }
  81. .content-menu-box {
  82. position: absolute;
  83. top: 50px;
  84. right: 20px;
  85. width: 160px;
  86. height: 80%;
  87. overflow: hidden;
  88. }
  89. .content-menu-wrapper {
  90. width: 200px;
  91. height: 100%;
  92. overflow-y: auto;
  93. }
  94. .content-menu {
  95. background: #eee;
  96. border: 1px solid #eee;
  97. width: 160px;
  98. padding: 15px 18px;
  99. }
  100. .details-content-menu-line {
  101. height: 15px;
  102. width: 0;
  103. border: 1px solid #ccc;
  104. background-color: #ccc;
  105. margin-left: 4px
  106. }
  107. .details-content-menu-name {
  108. color: #33475f;
  109. font-size: 13px;
  110. cursor: pointer;
  111. }
  112. .details-content-menu-circle {
  113. display: inline-block;
  114. width: 8px;
  115. height: 8px;
  116. border-radius: 5px;
  117. border: 1px solid #ccc;
  118. margin-top: 5px;
  119. background-color: #eee;
  120. margin-right: 10px;
  121. }