index.scss 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. @import './variables.scss';
  2. @import './mixin.scss';
  3. @import './transition.scss';
  4. @import './element-ui.scss';
  5. @import './sidebar.scss';
  6. @import './btn.scss';
  7. @import './card.scss';
  8. @import "./style.scss";
  9. body {
  10. height: 100%;
  11. -moz-osx-font-smoothing: grayscale;
  12. -webkit-font-smoothing: antialiased;
  13. text-rendering: optimizeLegibility;
  14. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  15. }
  16. label {
  17. font-weight: 700;
  18. }
  19. html {
  20. height: 100%;
  21. box-sizing: border-box;
  22. }
  23. #app {
  24. height: 100%;
  25. }
  26. *,
  27. *:before,
  28. *:after {
  29. box-sizing: inherit;
  30. }
  31. .no-padding {
  32. padding: 0px !important;
  33. }
  34. .padding-content {
  35. padding: 4px 0;
  36. }
  37. a:focus,
  38. a:active {
  39. outline: none;
  40. }
  41. a,
  42. a:focus,
  43. a:hover {
  44. cursor: pointer;
  45. color: inherit;
  46. text-decoration: none;
  47. }
  48. div:focus {
  49. outline: none;
  50. }
  51. .fr {
  52. float: right;
  53. }
  54. .fl {
  55. float: left;
  56. }
  57. .pr-5 {
  58. padding-right: 5px;
  59. }
  60. .pl-5 {
  61. padding-left: 5px;
  62. }
  63. .block {
  64. display: block;
  65. }
  66. .pointer {
  67. cursor: pointer;
  68. }
  69. .inlineBlock {
  70. display: block;
  71. }
  72. .clearfix {
  73. &:after {
  74. visibility: hidden;
  75. display: block;
  76. font-size: 0;
  77. content: " ";
  78. clear: both;
  79. height: 0;
  80. }
  81. }
  82. aside {
  83. background: #eef1f6;
  84. padding: 8px 24px;
  85. margin-bottom: 20px;
  86. border-radius: 2px;
  87. display: block;
  88. line-height: 32px;
  89. font-size: 16px;
  90. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  91. color: #2c3e50;
  92. -webkit-font-smoothing: antialiased;
  93. -moz-osx-font-smoothing: grayscale;
  94. a {
  95. color: #337ab7;
  96. cursor: pointer;
  97. &:hover {
  98. color: rgb(32, 160, 255);
  99. }
  100. }
  101. }
  102. //main-container全局样式
  103. .app-container {
  104. padding: 20px;
  105. }
  106. .components-container {
  107. margin: 30px 50px;
  108. position: relative;
  109. }
  110. .pagination-container {
  111. margin-top: 30px;
  112. }
  113. .text-center {
  114. text-align: center
  115. }
  116. .sub-navbar {
  117. height: 50px;
  118. line-height: 50px;
  119. position: relative;
  120. width: 100%;
  121. text-align: right;
  122. padding-right: 20px;
  123. transition: 600ms ease position;
  124. background: linear-gradient(90deg, rgba(32, 182, 249, 1) 0%, rgba(32, 182, 249, 1) 0%, rgba(33, 120, 241, 1) 100%, rgba(33, 120, 241, 1) 100%);
  125. .subtitle {
  126. font-size: 20px;
  127. color: #fff;
  128. }
  129. &.draft {
  130. background: #d0d0d0;
  131. }
  132. &.deleted {
  133. background: #d0d0d0;
  134. }
  135. }
  136. .link-type,
  137. .link-type:focus {
  138. color: #337ab7;
  139. cursor: pointer;
  140. &:hover {
  141. color: rgb(32, 160, 255);
  142. }
  143. }
  144. .filter-container {
  145. padding-bottom: 10px;
  146. .filter-item {
  147. display: inline-block;
  148. vertical-align: middle;
  149. margin-bottom: 10px;
  150. }
  151. }
  152. //refine vue-multiselect plugin
  153. .multiselect {
  154. line-height: 16px;
  155. }
  156. .multiselect--active {
  157. z-index: 1000 !important;
  158. }
  159. #front {
  160. color: #d3d6dd;
  161. background-color: #000000;
  162. width: 100%;
  163. height: 100vh;
  164. .bg {
  165. padding: 0.2rem 0.2rem 0 0.2rem;
  166. background-image: url("../image/pageBg.png");
  167. background-size: cover;
  168. background-position: center center;
  169. background-repeat: repeat;
  170. width: 3300px;
  171. }
  172. .host-body {
  173. .title {
  174. position: relative;
  175. width: 6.25rem;
  176. text-align: center;
  177. background-size: cover;
  178. background-repeat: no-repeat;
  179. .title-text {
  180. font-size: 0.3rem;
  181. position: absolute;
  182. bottom: 0;
  183. left: 50%;
  184. transform: translate(-50%);
  185. }
  186. .title-bototm {
  187. position: absolute;
  188. bottom: -0.375rem;
  189. left: 50%;
  190. transform: translate(-50%);
  191. }
  192. }
  193. // 平行四边形
  194. .react-left {
  195. cursor: pointer;
  196. font-size: 0.225rem;
  197. width: 3.75rem;
  198. height: 0.625rem;
  199. line-height: 0.625rem;
  200. text-align: center;
  201. transform: skewX(-45deg);
  202. .react-after {
  203. position: absolute;
  204. right: -0.3125rem;
  205. top: 0;
  206. height: 0.625rem;
  207. width: 0.625rem;
  208. background-color: #0f1325;
  209. transform: skewX(45deg);
  210. }
  211. .text {
  212. display: inline-block;
  213. transform: skewX(45deg);
  214. }
  215. }
  216. .react-right {
  217. cursor: pointer;
  218. font-size: 0.225rem;
  219. width: 3.75rem;
  220. height: 0.625rem;
  221. line-height: 0.625rem;
  222. text-align: center;
  223. transform: skewX(45deg);
  224. .react-before {
  225. position: absolute;
  226. left: -0.3125rem;
  227. top: 0;
  228. height: 0.625rem;
  229. width: 0.625rem;
  230. background-color: #0f1325;
  231. transform: skewX(-45deg);
  232. }
  233. .text {
  234. display: inline-block;
  235. transform: skewX(-45deg);
  236. }
  237. }
  238. .body-box {
  239. margin-top: 0.2rem;
  240. display: flex;
  241. flex-direction: column;
  242. //下方区域的布局
  243. .content-box {
  244. display: grid;
  245. grid-template-columns: 16fr;
  246. }
  247. // 底部数据
  248. .bototm-box {
  249. margin-top: 0.125rem;
  250. display: grid;
  251. grid-template-columns: repeat(2, 50%);
  252. }
  253. .frist-content-box {
  254. display: grid;
  255. grid-template-columns: 4fr 3fr 6fr 3fr;
  256. }
  257. //下方区域的布局
  258. .three-content-box {
  259. display: grid;
  260. grid-template-columns: 12fr 4fr;
  261. }
  262. // 第三页底部数据
  263. .three-bototm-box {
  264. margin-top: 0.125rem;
  265. display: grid;
  266. grid-template-columns: repeat(7, 32%);
  267. width: 1444px;
  268. }
  269. //年产量布局
  270. .annual-box {
  271. display: grid;
  272. grid-template-columns: repeat(2, 50%);
  273. }
  274. }
  275. }
  276. }
  277. .m-7{
  278. width:180px;
  279. height:180px;
  280. z-index:7;
  281. }
  282. .m-7-k{
  283. width:180px;
  284. height:180px;
  285. position:absolute;
  286. }
  287. .m-7-k .m-7xz1{
  288. width:180px;
  289. height:180px;
  290. position:absolute;top:0px;left:0px;
  291. z-index:8;
  292. filter:alpha(opacity=50);
  293. -moz-opacity:0.50;
  294. opacity:0.50;
  295. background: no-repeat url("../image/gif-7-1.png") left top;
  296. -webkit-background-size: 180px 90px;
  297. -moz-background-size: 180px 90px;
  298. background-size: 180px 180px;
  299. -webkit-border-radius: 90px;
  300. border-radius: 90px;
  301. -moz-transition:all .2s;
  302. -webkit-transition:all .2s;
  303. transition:all .2s;
  304. -moz-animation:rotate 2s infinite linear;
  305. }
  306. .m-7-k .m-7xz2{
  307. width:180px;
  308. height:180px;
  309. position:absolute;top:0px;left:0px;
  310. z-index:9;
  311. filter:alpha(opacity=70);
  312. -moz-opacity:0.70;
  313. opacity:0.70;
  314. background: no-repeat url("../image/gif-7-2.png") left top;
  315. -webkit-background-size: 180px 90px;
  316. -moz-background-size: 180px 90px;
  317. background-size: 180px 180px;
  318. -webkit-border-radius: 90px;
  319. border-radius: 90px;
  320. -moz-transition:all .3s;
  321. -webkit-transition:all .3s;
  322. transition:all .3s;
  323. -moz-animation:rotate 3s infinite linear;
  324. -webkit-animation:rotate 3s infinite linear;
  325. animation:rotate 3s infinite linear;
  326. }
  327. .m-7-k .m-7xz3{
  328. width:180px;
  329. height:180px;
  330. position:absolute;top:0px;left:0px;
  331. z-index:10;
  332. filter:alpha(opacity=50);
  333. -moz-opacity:0.50;
  334. opacity:0.50;
  335. background: no-repeat url("../image/gif-7-3.png") left top;
  336. -webkit-background-size: 180px 90px;
  337. -moz-background-size: 180px 90px;
  338. background-size: 180px 180px;
  339. -webkit-border-radius: 90px;
  340. border-radius: 90px;
  341. -moz-transition:all 0.5s;
  342. -webkit-transition:all 0.5s;
  343. transition:all 0.5s;
  344. -moz-animation:rotate 0.5s infinite linear;
  345. }
  346. .m-7-k .m-7zt1{
  347. width:140px;
  348. height:15px;
  349. border-bottom: 1px solid;
  350. padding-bottom:35px;
  351. margin:50px auto 0 auto;
  352. color:#19a9da;
  353. font:20px/18px '楷体';
  354. text-align:center;
  355. }
  356. .m-7-k .m-7zt2{
  357. width:180px;
  358. height:50px;
  359. margin-top:8px;
  360. color:#9C0;
  361. font:50px/40px 'ds-digitalbold';
  362. text-align:center;
  363. }
  364. .annual {
  365. // width:100px;
  366. // height:10px;
  367. margin-top:18px;
  368. // margin-left: 0.3rem;
  369. padding-top: 0.25rem;
  370. color: #cfe5ea;
  371. font:30px/15px 'ds-digitalbold';
  372. text-align:center;
  373. }
  374. .specFont {
  375. margin-top: 0.3rem;
  376. margin-left: 0.01rem;
  377. color: #4a7d87;
  378. font:35px/25px 'ds-digitalbold';
  379. }
  380. .ModelFont {
  381. color: #ddf5fd;
  382. font:20px/10px 'ds-digitalbold';
  383. }
  384. @font-face {/*液晶字体*/
  385. font-family: 'ds-digitalbold';
  386. src: url('_-webfont.eot');
  387. src: url('_-webfont.eot?#iefix') format('embedded-opentype'),
  388. url('_-webfont.woff2') format('woff2'),
  389. url('_-webfont.woff') format('woff'),
  390. url('_-webfont.ttf') format('truetype'),
  391. url('_-webfont.svg#ds-digitalbold') format('svg');
  392. font-weight: normal;
  393. font-style: normal;
  394. }