gui.scss 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. .hc-datav-gui-box {
  2. position: relative;
  3. height: 600px;
  4. width: 1363px;
  5. display: flex;
  6. transform: scale(1);
  7. transform-origin: 0 0;
  8. overflow: hidden;
  9. .hc-gui-info-img {
  10. position: relative;
  11. height: 100%;
  12. display: flex;
  13. align-items: center;
  14. flex: 1.5;
  15. .el-carousel {
  16. height: 100%;
  17. width: 100%;
  18. padding: 0 24px 15px;
  19. --el-carousel-indicator-out-color:#12ced1;
  20. .el-carousel__container {
  21. position: relative;
  22. height: 100%;
  23. .el-carousel__arrow {
  24. font-size: 24px;
  25. color: #12ced1;
  26. background-color: transparent;
  27. &:hover {
  28. color: #64a6fc;
  29. }
  30. }
  31. .el-carousel__arrow--left {
  32. left: -35px;
  33. }
  34. .el-carousel__arrow--right {
  35. right: -35px;
  36. }
  37. }
  38. .el-carousel__item {
  39. display: inline-flex;
  40. justify-content: center;
  41. }
  42. .el-carousel__indicator--horizontal {
  43. padding: 0 4px;
  44. }
  45. }
  46. .gui-info-img {
  47. position: relative;
  48. height: 100%;
  49. img {
  50. position: relative;
  51. height: 100%;
  52. }
  53. .gui-file-item-box {
  54. position: absolute;
  55. top: 0;
  56. bottom: 0;
  57. left: 0;
  58. right: 0;
  59. display: flex;
  60. padding: 18px;
  61. flex-direction: row;
  62. flex-wrap: wrap;
  63. align-items: center;
  64. align-content: flex-start;
  65. justify-content: flex-start;
  66. .gui-file-item {
  67. position: relative;
  68. display: flex;
  69. width: 25%;
  70. height: 19.6%;
  71. padding: 1%;
  72. .item {
  73. position: relative;
  74. background: #927a6a;
  75. color: #1A1A1A;
  76. height: 100%;
  77. width: 12%;
  78. padding: 6px 3px;
  79. font-size: 13px;
  80. border: 1px solid #5d4848;
  81. border-radius: 3px;
  82. text-orientation: upright;
  83. text-overflow: ellipsis;
  84. white-space: nowrap;
  85. overflow: hidden;
  86. cursor: pointer;
  87. writing-mode: vertical-rl;
  88. display: flex;
  89. flex-direction: column;
  90. justify-content: center;
  91. transition: transform .2s;
  92. &.cur, &:hover {
  93. z-index: 22;
  94. color: white;
  95. background: #A16222;
  96. border: 1px solid #bbbbbb;
  97. font-size: 10px;
  98. transform: scale(1.2);
  99. }
  100. }
  101. }
  102. }
  103. }
  104. }
  105. .hc-gui-info-data {
  106. position: relative;
  107. height: 100%;
  108. flex: 1;
  109. display: flex;
  110. justify-content: center;
  111. align-items: center;
  112. .hc-gui-data-container {
  113. position: relative;
  114. img {
  115. height: 450px;
  116. }
  117. .hc-gui-info-item-box {
  118. position: absolute;
  119. top: 50px;
  120. left: 36px;
  121. right: 28px;
  122. height: 325px;
  123. overflow: hidden;
  124. .hc-gui-info-item {
  125. position: relative;
  126. height: 100%;
  127. width: 100%;
  128. font-size: 14px;
  129. .info-item {
  130. position: relative;
  131. display: flex;
  132. color: #101010;
  133. .title {
  134. margin-right: 10px;
  135. font-weight: bold;
  136. span + span {
  137. margin-left: 29px;
  138. }
  139. }
  140. .text {
  141. flex: 1;
  142. }
  143. }
  144. .info-item-name {
  145. color: #101010;
  146. margin-top: 14px;
  147. line-height: 1.8;
  148. }
  149. .hc-info-item-bottom {
  150. position: absolute;
  151. bottom: 4px;
  152. right: -2px;
  153. left: 4px;
  154. }
  155. .info-item + .info-item {
  156. margin-top: 14px;
  157. }
  158. }
  159. }
  160. }
  161. .btn-box {
  162. position: relative;
  163. height: 50px;
  164. display: flex;
  165. padding-right: 10px;
  166. justify-content: flex-end;
  167. align-items: flex-end;
  168. }
  169. }
  170. }