browse_footprint.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. .page-content {
  2. padding-top: 20px;
  3. width: 100%;
  4. min-height: calc(100vh - 50px);
  5. background-color: rgb(245, 245, 245);
  6. }
  7. .block {
  8. margin-left: 10px;
  9. padding: 30px;
  10. width: calc(100% - 20px);
  11. border-radius: 10px;
  12. background: #fff;
  13. }
  14. .block + .block {
  15. margin-top: 20px;
  16. }
  17. .block-title {
  18. display: flex;
  19. align-items: center;
  20. position: relative;
  21. padding-left: 15px;
  22. width: 100%;
  23. font-size: 14px;
  24. font-weight: bold;
  25. }
  26. .block-title::before {
  27. content: "";
  28. display: inline-block;
  29. position: absolute;
  30. top: 0;
  31. bottom: 0;
  32. left: 0;
  33. margin: auto 0;
  34. width: 4px;
  35. height: 18px;
  36. background-color: rgb(41, 186, 156);
  37. }
  38. .block-content {
  39. margin-top: 20px;
  40. }
  41. .el-date-editor .el-range-separator {
  42. width: 6%;
  43. }
  44. /* 页面路径 */
  45. .page-path {
  46. padding: 0;
  47. font-size: 14px;
  48. color: #101010;
  49. background-color: transparent;
  50. }
  51. /* 业务样式 */
  52. .search-bar .block-title span {
  53. padding-left: 10px;
  54. font-weight: normal;
  55. }
  56. .search-filter_row {
  57. display: flex;
  58. align-items: center;
  59. margin-bottom: 20px;
  60. }
  61. .search-filter_row-title {
  62. width: 80px;
  63. }
  64. .search-filter-search-condition {
  65. flex-shrink: 0;
  66. margin-right: 30px;
  67. }
  68. .search-filter-search-condition:first-of-type {
  69. margin-left: 20px;
  70. }
  71. .share-info {
  72. text-align: center;
  73. }
  74. .share-info img {
  75. width: 50px;
  76. height: 50px;
  77. border-radius: 50%;
  78. }
  79. .share-info-nickname {
  80. display:block;
  81. }
  82. /* 指数概念 */
  83. .index-list {
  84. width: 100%;
  85. overflow: auto hidden;
  86. color: #101010;
  87. white-space: nowrap;
  88. }
  89. .index-item {
  90. display: inline-block;
  91. margin: 0 20px;
  92. padding: 10px 20px;
  93. min-width: 160px;
  94. text-align: center;
  95. font-size: 14px;
  96. }
  97. .index-item .index-value {
  98. line-height: 41px;
  99. font-size: 28px;
  100. }
  101. .data-pagination {
  102. margin-top: 20px;
  103. text-align: right;
  104. }
  105. .url-image-view {
  106. display: flex;
  107. align-items: center;
  108. }
  109. .url-thumb {
  110. width: 65px;
  111. height: 65px;
  112. }
  113. .url-thumb + .url-content {
  114. margin-left: 10px;
  115. }
  116. /* 访问的会员 */
  117. .visit-member .member-info {
  118. display: block;
  119. width: 100px;
  120. text-align: center;
  121. }
  122. .visit-member .member-avatar {
  123. width: 30px;
  124. height: 30px;
  125. padding: 1px;
  126. border: 1px solid #ccc;
  127. }
  128. .visit-member .member-nickname {
  129. display:block;
  130. width: 100%;
  131. overflow: hidden;
  132. text-overflow: ellipsis;
  133. white-space: nowrap;
  134. }
  135. .detail-info-view {
  136. display: flex;
  137. align-items: center;
  138. }
  139. .detail-info {
  140. margin-left: 20px;
  141. }
  142. .detail-info-image {
  143. width: 65px;
  144. height: 65px;
  145. }