BigScreenHome.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. .home {
  2. background-image: url('/src/assets/img/bg@3x.jpg');
  3. background-size: 100% 100%;
  4. width: 100%;
  5. height: 100%;
  6. overflow: auto;
  7. }
  8. .home * {
  9. user-select: none;
  10. }
  11. .home .headTitle {
  12. padding: 0 35%;
  13. width: 100%;
  14. text-align: center;
  15. font-size: 35px;
  16. font-weight: 600;
  17. float: left;
  18. }
  19. .home .homeHeader {
  20. width: 100%;
  21. overflow: hidden;
  22. height: 7.5vh;
  23. line-height: 7.5vh;
  24. }
  25. .home .itemHeader {
  26. flex: 1;
  27. }
  28. .home .itemMain {
  29. margin: 5px 2px;
  30. white-space: nowrap;
  31. padding: 1em;
  32. background-color: rgba(6, 30, 56, 0.9);
  33. }
  34. .home .sz {
  35. position: absolute;
  36. padding-left: 5em;
  37. }
  38. .home .tq {
  39. position: absolute;
  40. z-index: 101;
  41. right: 0;
  42. padding-right: 5em;
  43. }
  44. .home .text {
  45. display: inline-block;
  46. vertical-align: middle;
  47. text-align: center;
  48. }
  49. .home .textNum {
  50. font-size: 18pt;
  51. color: #ff9900;
  52. font-weight: 600;
  53. font-family: '微软雅黑';
  54. }
  55. .icons {
  56. background: linear-gradient(rgba(3, 76, 117, 0), #034c75);
  57. display: inline-block;
  58. width: 60px;
  59. height: 60px;
  60. text-align: center;
  61. margin: 5px;
  62. position: relative;
  63. vertical-align: middle;
  64. }
  65. .icons svg {
  66. position: absolute;
  67. left: 50%;
  68. transform: translateX(-50%);
  69. bottom: 10%;
  70. }
  71. .icons .img {
  72. transform-style: preserve-3d;
  73. transform: rotateX(-77deg) rotateY(2deg) rotateZ(40deg);
  74. position: absolute;
  75. bottom: -50%;
  76. width: 100%;
  77. height: 100%;
  78. left: 5%;
  79. }
  80. .body .main {
  81. width: 100%;
  82. height: calc(92.5vh - 124px);
  83. overflow: hidden;
  84. width: 100vw;
  85. display: flex;
  86. }
  87. .body .mainbody {
  88. flex: 1;
  89. padding: 3px;
  90. }
  91. .body .livRang {
  92. overflow: hidden;
  93. display: inline-block;
  94. vertical-align: top;
  95. font-size: 14px;
  96. background-color: rgba(6, 30, 56, 0.9);
  97. }
  98. .livRang .head {
  99. padding: 5px 3px 5px 15px;
  100. font-size: 17px;
  101. }
  102. .livRang .head::before {
  103. content: ' ';
  104. float: left;
  105. display: block;
  106. margin-left: -10px;
  107. margin-top: 2px;
  108. border-radius: 3px;
  109. width: 3px;
  110. height: 1.2em;
  111. background-color: #02ffec;
  112. }
  113. .livRang .table {
  114. padding-top: 3px;
  115. white-space: nowrap;
  116. }
  117. .livRang .table .tr {
  118. border-radius: 3px;
  119. overflow: hidden;
  120. display: flex;
  121. }
  122. .livRang .table .td {
  123. border: none;
  124. flex: 1;
  125. min-width: 0;
  126. overflow: hidden;
  127. white-space: nowrap;
  128. text-overflow: ellipsis;
  129. padding: 6px 3px;
  130. text-align: center;
  131. }
  132. .livRang .table .trColor:nth-child(even) {
  133. background-color: #03375e;
  134. }
  135. .flex {
  136. display: flex;
  137. }
  138. .flex .flexItem {
  139. flex: 1;
  140. height: 90px;
  141. text-align: center;
  142. line-height: 35px;
  143. padding: 3px 0;
  144. background-color: rgba(6, 30, 56, 0.9);
  145. }
  146. .flex .flexItem:not(:first-child) {
  147. margin-left: 5px;
  148. }
  149. .home .tooltip {
  150. position: relative;
  151. background-color: rgba(6, 30, 56, 0.9);
  152. width: 10em;
  153. height: 5em;
  154. overflow: hidden;
  155. z-index: 10;
  156. background-size: 100% 100%;
  157. background-image: url(/src/assets/img/k.png);
  158. animation-name: example;
  159. animation-duration: 0.4s;
  160. }
  161. .home .tooltipSon {
  162. position: absolute;
  163. width: 10em;
  164. height: 5em;
  165. text-align: center;
  166. padding: 5px 10px;
  167. line-height: 2em;
  168. left: 50%;
  169. top: 50%;
  170. transform: translate(-50%, -50%);
  171. }
  172. .home .map {
  173. position: relative;
  174. }
  175. @keyframes example {
  176. from {
  177. width: 0;
  178. /* height: 0; */
  179. }
  180. to {
  181. width: 10em;
  182. /* height: 5em; */
  183. }
  184. }
  185. .home .TabBtn {
  186. display: inline-block;
  187. width: 6em;
  188. padding: 5px 0 5px 5px;
  189. white-space: nowrap;
  190. /* display: inline-block;
  191. width: 7em; */
  192. }
  193. .home #tooltip {
  194. position: absolute;
  195. z-index: 2;
  196. background: white;
  197. color: #000000;
  198. padding: 10px;
  199. border-radius: 2px;
  200. visibility: hidden;
  201. }
  202. .tabIcon {
  203. width: 100%;
  204. vertical-align: middle;
  205. margin-right: 3px;
  206. }
  207. .newMdia {
  208. width: 100%;
  209. }