details.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. .top{
  2. border-bottom: 1px solid #ccc;
  3. padding-bottom: 12px;
  4. }
  5. .db-content-wrapper{
  6. padding-left:30px!important;
  7. }
  8. .list-item{
  9. position: relative;
  10. width: 80%;
  11. min-width: 1000px;
  12. }
  13. .list-top{
  14. display: flex;
  15. align-items: center;
  16. height: 62px;
  17. }
  18. .list-top>.ball{
  19. width: 10px;
  20. height: 10px;
  21. border-radius: 100%;
  22. background-color: #ebebeb;
  23. }
  24. .list-top>.title{
  25. font-size:20px;
  26. color: #000;
  27. font-weight: bold;
  28. margin-left: 10px;
  29. }
  30. .list-item>.line{
  31. position: absolute;
  32. width: 2px;
  33. top:31px;
  34. height: 100%;
  35. background-color: #f2f4f5;
  36. left: 4px;
  37. }
  38. .list-item .content{
  39. margin-left: 58px;
  40. border-radius: 3px ;
  41. background-color: #f2f4f5;
  42. padding: 20px;
  43. }
  44. .list-item .content{
  45. display: flex;
  46. }
  47. .list-item .content:not(:first-child){
  48. margin-top: 10px;
  49. }
  50. .content-content{
  51. width: 40%;
  52. position: relative;
  53. }
  54. .content-item{
  55. display: flex;
  56. align-items: center;
  57. height: 20px;
  58. }
  59. .content-item:not(:last-child){
  60. margin-bottom: 10px;
  61. }
  62. .content-item .title{
  63. font-size:14px;
  64. color: #000000;
  65. font-weight: bold;
  66. min-width: 120px;
  67. margin-right:46px;
  68. }
  69. .content-item .val{
  70. font-size:14px;
  71. color: #000;
  72. flex-grow: 1;
  73. }
  74. .showPhoto{
  75. height: auto;
  76. align-items: flex-start;
  77. }
  78. .showPhoto .val{
  79. display: flex;
  80. flex-direction: column;
  81. }
  82. .showPhoto .val .photo{
  83. width: 100px;
  84. height: 150px;
  85. }
  86. .content-content1{
  87. width: 130px;
  88. }
  89. .content-content2{
  90. width: 233px;
  91. min-width: 233px;
  92. }
  93. .content{
  94. position: relative;
  95. overflow: hidden;
  96. }
  97. .scroll-box{
  98. padding: 0!important;
  99. }
  100. .content-scroll{
  101. /*overflow-x: scroll;*/
  102. display: flex;
  103. overflow-x: scroll;
  104. flex-grow: 1;
  105. padding: 20px 20px 20px 150px;
  106. }
  107. .scroll-box .content-content1{
  108. padding-left: 20px;
  109. left: 0!important;
  110. }
  111. .content-scroll::-webkit-scrollbar
  112. {
  113. width: 5px;
  114. height: 5px;
  115. background-color: #F5F5F5;
  116. }
  117. /*定义滚动条轨道 内阴影+圆角*/
  118. .content-scroll::-webkit-scrollbar-track
  119. {
  120. /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
  121. /*border-radius: 10px;*/
  122. /*background-color: #F5F5F5;*/
  123. }
  124. /*定义滑块 内阴影+圆角*/
  125. .content-scroll::-webkit-scrollbar-thumb
  126. {
  127. border-radius: 10px;
  128. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.2);
  129. background-color:#2FACE9;
  130. }
  131. .titleLine{
  132. width: 5px;
  133. height: 20px;
  134. background-color: #0D7DBA;
  135. position: absolute;
  136. top:20px;
  137. left: 0;
  138. }
  139. .superTitle{
  140. font-size:16px;
  141. color: #0D7DBA;
  142. font-weight: bold;
  143. line-height: 20px;
  144. margin-bottom: 10px;
  145. }