humanResources.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784
  1. html,
  2. body {
  3. width: 100% !important;
  4. /* width: 4874px !important; */
  5. /* min-height: 2743px; */
  6. height: 100%;
  7. font-size: 20px;
  8. color: #fff;
  9. font-family: 'Microsoft YaHei';
  10. /* background-image: url("../images/indexBg.png"); */
  11. /* background-image: url("../images/newImage/4ca24a27-c946-4f59-90a5-af00530ddb59.png"); */
  12. background-image: url("../images/humanResources/bg.png");
  13. background-repeat: no-repeat;
  14. background-size: 100% 100%;
  15. overflow-y: hidden;
  16. }
  17. :root {
  18. /* --bg: #dcf0fc0c; */
  19. --bgc: #63b6ff11;
  20. }
  21. /* 强制去掉滚动条 */
  22. /* html {
  23. overflow-x: hidden !important;
  24. } */
  25. * {
  26. -webkit-user-select: none;
  27. -moz-user-select: none;
  28. -ms-user-select: none;
  29. user-select: none;
  30. }
  31. img *,
  32. *,
  33. *:before,
  34. *:after {
  35. padding: 0;
  36. margin: 0;
  37. box-sizing: border-box;
  38. }
  39. a {
  40. text-decoration: none;
  41. cursor: pointer;
  42. }
  43. [v-cloak] {
  44. display: none;
  45. }
  46. .app_box {
  47. width: 100%;
  48. height: 100%;
  49. }
  50. .app_box {
  51. width: 100%;
  52. height: 100%;
  53. padding: 40px 30px 20px;
  54. box-sizing: border-box;
  55. display: flex;
  56. flex-direction: column;
  57. justify-content: space-between;
  58. align-items: center;
  59. }
  60. .page_title {
  61. width: 100%;
  62. height: 6%;
  63. font-size: 90px;
  64. font-family: Source Han Sans CN;
  65. font-weight: bold;
  66. text-align: center;
  67. background: linear-gradient(-3deg, #99eeff 0%, #99eeff 30%, #ffffff 91%);
  68. -webkit-background-clip: text;
  69. -webkit-text-fill-color: transparent;
  70. }
  71. .page_main {
  72. width: 100%;
  73. height: calc(74% - 100px);
  74. margin-top: 1%;
  75. display: flex;
  76. justify-content: space-between;
  77. align-items: center;
  78. position: relative;
  79. }
  80. .page_btm {
  81. width: 100%;
  82. height: 20%;
  83. background-color: var(--bgc);
  84. }
  85. .flex_column {
  86. display: flex;
  87. flex-direction: column;
  88. justify-content: space-around;
  89. align-items: center;
  90. }
  91. .flex_sp {
  92. display: flex;
  93. justify-content: space-between;
  94. align-items: center;
  95. }
  96. .flex {
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. }
  101. .page_main_left,
  102. .page_main_right {
  103. width: 32%;
  104. height: 100%;
  105. position: absolute;
  106. }
  107. .page_main_left {
  108. left: 0;
  109. }
  110. .page_main_right {
  111. right: 0;
  112. }
  113. img {
  114. width: 100%;
  115. height: 100%;
  116. }
  117. .page_main_center {
  118. width: calc(45% - 30px);
  119. height: 100%;
  120. position: absolute;
  121. left: 50%;
  122. transform: translateX(-50%);
  123. }
  124. .page_main_center .page_main_center_image {
  125. width: 90%;
  126. height: 110%;
  127. transform: scale(1.0) translate(5.5%,6%);
  128. }
  129. .center_top {
  130. width: 100%;
  131. height: 210px;
  132. padding: 0 15%;
  133. box-sizing: border-box;
  134. /* background-color: #ffffff; */
  135. position: absolute;
  136. top: 0;
  137. }
  138. .center_main {
  139. width: 100%;
  140. height: 55%;
  141. position: absolute;
  142. top: 13.5%;
  143. }
  144. .center_main_item {
  145. width: 405px;
  146. height: 405px;
  147. position: absolute;
  148. background: url("../images/humanResources/icon2.png");
  149. background-repeat: no-repeat;
  150. background-size: cover;
  151. justify-content: center;
  152. animation: remove 2s steps(60) infinite;
  153. }
  154. .center_main_item_icon{
  155. width: 110px;
  156. height: 110px;
  157. margin-bottom: 10px;
  158. }
  159. .center_main_item span{
  160. font-size: 30px;
  161. font-weight: 500;
  162. text-align: center;
  163. }
  164. .left_top {
  165. width: 100%;
  166. height: calc(65% - 15px);
  167. background-color: var(--bgc);
  168. }
  169. .left_btm {
  170. width: 100%;
  171. height: calc(35% - 15px);
  172. background-color: var(--bgc);
  173. }
  174. .title {
  175. width: 70%;
  176. height: 75px;
  177. background: url("../images/humanResources/title.png") no-repeat;
  178. background-size: 100% 100%;
  179. font-size: 36px;
  180. font-family: Source Han Sans CN;
  181. font-weight: bolder;
  182. color: #FFFFFF;
  183. text-indent: 8%;
  184. line-height: 65px;
  185. }
  186. .main {
  187. width: 100%;
  188. height: calc(100% - 75px);
  189. padding: 40px 40px 10px;
  190. box-sizing: border-box;
  191. }
  192. .main_item {
  193. width: calc(50% - 10px);
  194. height: 100%;
  195. background-color: #69c1ff09;
  196. }
  197. .right_top {
  198. width: 100%;
  199. height: calc(32% - 15px);
  200. background-color: var(--bgc);
  201. }
  202. .right_main {
  203. width: 100%;
  204. height: calc(28% - 15px);
  205. background-color: var(--bgc);
  206. }
  207. .right_btm {
  208. width: 100%;
  209. height: calc(40% - 15px);
  210. background-color: var(--bgc);
  211. }
  212. .main_item_top {
  213. width: 100%;
  214. height: calc(40% - 15px);
  215. background-color: var(--bgc);
  216. }
  217. .main_item_btm {
  218. width: 100%;
  219. height: calc(60% - 15px);
  220. background-color: var(--bgc);
  221. }
  222. .echarts_dom {
  223. width: 100%;
  224. height: 100%;
  225. }
  226. .item_content_6,
  227. .item_content_6_false {
  228. width: 100%;
  229. height: calc(60% - 10px);
  230. }
  231. .item_content_4 {
  232. width: 100%;
  233. height: calc(40% - 10px);
  234. }
  235. .header-item {
  236. font-size: 20px;
  237. color: #69C0FF;
  238. }
  239. .row-item {
  240. font-size: 23px !important;
  241. }
  242. .content_4_top {
  243. width: 100%;
  244. height: 90px;
  245. align-items: flex-end;
  246. }
  247. .content_4_title {
  248. width: 100%;
  249. height: 42px;
  250. }
  251. .content_4_time {
  252. width: 45%;
  253. height: 32px;
  254. }
  255. .btn_on {
  256. width: 186px;
  257. height: 100%;
  258. background: url("../images/humanResources/btn_on.png") no-repeat;
  259. background-size: 100% 100%;
  260. margin: 0 20px;
  261. font-size: 18px;
  262. font-family: Source Han Sans CN;
  263. font-weight: 500;
  264. color: #ECE278;
  265. text-align: center;
  266. line-height: 42px;
  267. }
  268. .btn_off {
  269. width: 186px;
  270. height: 100%;
  271. background: url("../images/humanResources/btn_off.png") no-repeat;
  272. background-size: 100% 100%;
  273. margin: 0 20px;
  274. font-size: 18px;
  275. font-family: Source Han Sans CN;
  276. font-weight: 500;
  277. color: #47C0FF;
  278. text-align: center;
  279. line-height: 42px;
  280. }
  281. .time {
  282. width: 49%;
  283. height: 100%;
  284. background: rgba(75, 172, 255, 0.2);
  285. }
  286. .img_class {
  287. width: 22px;
  288. /* height: 16px; */
  289. margin-left: 10px;
  290. }
  291. img {
  292. width: 100%;
  293. height: 100%;
  294. }
  295. .content_4_btm {
  296. width: 100%;
  297. height: calc(100% - 90px);
  298. margin-top: 5px;
  299. }
  300. .yellow {
  301. color: yellow;
  302. }
  303. .red {
  304. color: red;
  305. }
  306. .green {
  307. color: green;
  308. }
  309. .item_content_6 .rows .row-item:nth-child(2) {
  310. color: #E1AF27;
  311. background-color: #302e2d50 !important;
  312. }
  313. @keyframes remove {
  314. 0% {
  315. transform: translateY(0);
  316. }
  317. 25% {
  318. transform: translateY(-5%);
  319. }
  320. 50% {
  321. transform: translateY(0);
  322. }
  323. 75% {
  324. transform: translateY(5%);
  325. }
  326. 100% {
  327. transform: translateY(0);
  328. }
  329. }
  330. .warp {
  331. width: 100%;
  332. height: 100%;
  333. overflow: hidden;
  334. }
  335. .item {
  336. width: 100%;
  337. height: 100%;
  338. padding: 10px 30px;
  339. box-sizing: border-box;
  340. }
  341. li {
  342. width: 100%;
  343. display: flex;
  344. flex-direction: column;
  345. justify-content: flex-start;
  346. align-items: flex-start;
  347. font-size: 27px;
  348. }
  349. .list_img {
  350. width: 40px;
  351. height: 40px;
  352. border-radius: 50%;
  353. margin-top: 15px;
  354. }
  355. .main_item_title {
  356. width: 270px;
  357. height: 70px;
  358. background: url("../images/humanResources/btn_off.png") no-repeat;
  359. background-size: 100% 100%;
  360. font-size: 24px;
  361. font-family: Source Han Sans CN;
  362. font-weight: 500;
  363. color: #FFFFFF;
  364. text-align: center;
  365. line-height: 70px;
  366. margin-top: -20px;
  367. }
  368. .main_item_main {
  369. width: 100%;
  370. height: calc(100% - 70px);
  371. }
  372. .center_top_item {
  373. width: 38%;
  374. height: 210px;
  375. }
  376. .center_top_image {
  377. width: 350px;
  378. height: 210px;
  379. margin-right: 30px;
  380. }
  381. .center_top_image img {
  382. width: 100% !important;
  383. height: 100% !important;
  384. }
  385. .center_top_info {
  386. justify-content: flex-start;
  387. align-items: flex-start;
  388. }
  389. .num {
  390. font-size: 72px;
  391. font-family: Helvetica Neue Extra Black Cond;
  392. font-weight: bolder;
  393. color: #5BCBFF;
  394. }
  395. .num span {
  396. font-size: 30px;
  397. font-family: Source Han Sans CN;
  398. font-weight: bold;
  399. }
  400. .name {
  401. font-size: 36px;
  402. font-family: Source Han Sans CN;
  403. font-weight: bolder;
  404. color: #FFFFFF;
  405. }
  406. .fireworks {
  407. position: absolute;
  408. width: 150px;
  409. height: 150px;
  410. top: 20%;
  411. left: calc(50% - 75px);
  412. background: #04e5f5;
  413. -webkit-mask: url('https://imgservices-1252317822.image.myqcloud.com/image/081320210201435/e9951400.png') no-repeat;
  414. -webkit-mask-size: auto 150px;
  415. transform: scale(2.65);
  416. animation: fireworks 2s steps(24) infinite, random_color 1s infinite;
  417. /* display: none; */
  418. }
  419. .fireworks_line {
  420. position: absolute;
  421. width: 10px;
  422. height: 60px;
  423. bottom: 10%;
  424. left: calc(50% - 2.5px);
  425. animation: fireworks_line 2s steps(120) infinite;
  426. display: flex;
  427. flex-direction: column;
  428. justify-content: center;
  429. align-items: center;
  430. }
  431. .line {
  432. width: 1px;
  433. height: 50px;
  434. background-color: #faf89a;
  435. }
  436. @keyframes fireworks {
  437. to {
  438. -webkit-mask-position: 100%;
  439. /* transform: scale(1.65) */
  440. }
  441. }
  442. @keyframes fireworks_line {
  443. to {
  444. bottom: 68%;
  445. }
  446. }
  447. @keyframes random {
  448. 25% {
  449. transform: translate(200%, 50%) scale(0.8);
  450. }
  451. 50% {
  452. transform: translate(80%, 80%) scale(1.2);
  453. }
  454. 75% {
  455. transform: translate(20%, 60%) scale(1.65);
  456. }
  457. }
  458. @keyframes random_color {
  459. 0% {
  460. background-color: #ffefad;
  461. }
  462. 25% {
  463. background-color: #ffadad;
  464. }
  465. 50% {
  466. background-color: #aeadff;
  467. }
  468. 75% {
  469. background-color: #adffd9;
  470. }
  471. }
  472. .item_title {
  473. width: 100%;
  474. text-align: center;
  475. font-size: 34px;
  476. font-family: Source Han Sans CN;
  477. font-weight: bolder;
  478. color: #7CC8FF;
  479. margin: 30px 0;
  480. }
  481. .item_con {
  482. width: 100%;
  483. margin: 20px 0;
  484. font-size: 24px;
  485. line-height: 30px;
  486. display: flex;
  487. flex-direction: column;
  488. justify-content: flex-start;
  489. align-items: flex-start;
  490. letter-spacing: 9px;
  491. }
  492. .item_con span:nth-child(1) {
  493. font-size: 26px;
  494. font-family: Source Han Sans CN;
  495. font-weight: bolder;
  496. margin-top: 10px;
  497. }
  498. .item_con span:nth-child(2) {
  499. margin-left: 20px;
  500. line-height: 30px;
  501. }
  502. .main_item_2 {
  503. width: 20%;
  504. height: 100%;
  505. }
  506. .main_item_8 {
  507. width: 80%;
  508. height: 100%;
  509. }
  510. .main_2_item {
  511. width: 100%;
  512. height: 20%;
  513. display: flex;
  514. justify-content: center;
  515. align-items: center;
  516. }
  517. .main_item_8_box {
  518. width: 100%;
  519. height: 50%;
  520. justify-content: flex-start;
  521. }
  522. .box_icon {
  523. width: 10px;
  524. height: calc(100% - 10px);
  525. background-color: #0093E9;
  526. }
  527. .main_item_8 .el-progress-bar__inner {
  528. background-image: linear-gradient(270deg, #0093E9 0%, #80D0C7 100%) !important;
  529. }
  530. .el-progress-bar__outer {
  531. background-color: #1C4B8E !important;
  532. }
  533. .main_item_8 .el-progress-bar {
  534. width: 95% !important;
  535. }
  536. .main_item_box {
  537. width: 100%;
  538. height: calc(20% - 10px);
  539. }
  540. .box_title {
  541. font-size: 30px;
  542. text-indent: 10px;
  543. margin-bottom: 2px;
  544. }
  545. .main_8_item {
  546. width: 100%;
  547. height: 20%;
  548. }
  549. .main_item_8 .el-progress__text {
  550. font-size: 35px !important;
  551. color: #fff !important;
  552. }
  553. .main_item_2 .el-progress__text {
  554. font-size: 25px !important;
  555. color: #fff !important;
  556. }
  557. .main_item_btn {
  558. width: 100%;
  559. height: 42px;
  560. }
  561. .main_item_main_bg {
  562. width: 100%;
  563. height: calc(100% - 90px);
  564. position: relative;
  565. }
  566. .main_item_main_bg img {
  567. width: 80%;
  568. height: 140%;
  569. position: absolute;
  570. top: -20%;
  571. left: 50%;
  572. transform: translateX(-50%);
  573. }
  574. .main_item_text {
  575. font-size: 40px;
  576. font-weight: bolder;
  577. margin-top: 10px;
  578. }
  579. .left {
  580. background: rgba(102, 130, 245, 0.4);
  581. border: 2px solid #839BFF;
  582. position: absolute;
  583. top: 20%;
  584. left: 25%;
  585. animation: leftRemove 2s steps(60) infinite;
  586. }
  587. @keyframes leftRemove{
  588. 0% {
  589. transform: translateY(0);
  590. }
  591. 25% {
  592. transform: translateY(-5%);
  593. }
  594. 50% {
  595. transform: translateY(0);
  596. }
  597. 75% {
  598. transform: translateY(5%);
  599. }
  600. 100% {
  601. transform: translateY(0);
  602. }
  603. }
  604. @keyframes rightRemove{
  605. 0% {
  606. transform: translateY(0);
  607. }
  608. 25% {
  609. transform: translateY(10%);
  610. }
  611. 50% {
  612. transform: translateY(0);
  613. }
  614. 75% {
  615. transform: translateY(-10%);
  616. }
  617. 100% {
  618. transform: translateY(0);
  619. }
  620. }
  621. .right {
  622. background: rgba(0, 202, 197, 0.23);
  623. border: 2px solid #40A9FF;
  624. position: absolute;
  625. top: 20%;
  626. right: 25%;
  627. animation: rightRemove 2s steps(60) infinite;
  628. }
  629. .bg_cyc {
  630. width: 120px;
  631. height: 120px;
  632. border-radius: 50%;
  633. z-index: 9999;
  634. justify-content: center;
  635. font-size: 20px;
  636. }
  637. .bg_cyc_text{
  638. font-size: 30px;
  639. font-weight: bolder;
  640. }
  641. .bg_cyc_text span{
  642. font-size: 20px;
  643. font-weight: normal;
  644. }
  645. .btm_item{
  646. width: calc(50% - 10px);
  647. height: 100%;
  648. }