humanResources.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864
  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: 250px;
  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: 25px;
  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: 250px;
  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: 25px;
  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: 50px;
  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: 50px;
  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. background: red;
  411. -webkit-mask: url('https://imgservices-1252317822.image.myqcloud.com/image/081320210201435/e9951400.png') no-repeat;
  412. -webkit-mask-size: auto 150px;
  413. transform: scale(2.65);
  414. animation: fireworks 2s steps(24) infinite, random 8s steps(1) infinite,random_color 1s infinite;
  415. /* animation: fireworks 2s steps(24) infinite; */
  416. /* display: none; */
  417. }
  418. .fireworkss{
  419. position: absolute;
  420. width: 150px;
  421. height: 150px;
  422. top: 10%;
  423. right: 0%;
  424. background: red;
  425. }
  426. .fireworks_line {
  427. position: absolute;
  428. width: 10px;
  429. height: 60px;
  430. bottom: 10%;
  431. left: calc(50% - 2.5px);
  432. animation: fireworks_line 2s steps(120) infinite;
  433. display: flex;
  434. flex-direction: column;
  435. justify-content: center;
  436. align-items: center;
  437. }
  438. .line {
  439. width: 1px;
  440. height: 50px;
  441. background-color: #faf89a;
  442. }
  443. @keyframes fireworks {
  444. to {
  445. -webkit-mask-position: 100%;
  446. /* transform: scale(1.65) */
  447. }
  448. }
  449. @keyframes fireworks_line {
  450. to {
  451. bottom: 68%;
  452. }
  453. }
  454. @keyframes random {
  455. 25% {
  456. transform: translate(200%, 50%) scale(1);
  457. }
  458. 50% {
  459. transform: translate(80%, 80%) scale(2.2);
  460. }
  461. 75% {
  462. transform: translate(-20%, -60%) scale(1.65);
  463. }
  464. }
  465. @keyframes random_color {
  466. 0% {
  467. background-color: #ffefad;
  468. }
  469. 25% {
  470. background-color: #ffadad;
  471. }
  472. 50% {
  473. background-color: #aeadff;
  474. }
  475. 75% {
  476. background-color: #adffd9;
  477. }
  478. }
  479. .item_title {
  480. width: 100%;
  481. text-align: center;
  482. font-size: 34px;
  483. font-family: Source Han Sans CN;
  484. font-weight: bolder;
  485. color: #7CC8FF;
  486. margin: 30px 0;
  487. }
  488. .item_con {
  489. width: 100%;
  490. margin: 20px 0;
  491. font-size: 24px;
  492. line-height: 30px;
  493. display: flex;
  494. flex-direction: column;
  495. justify-content: flex-start;
  496. align-items: flex-start;
  497. letter-spacing: 9px;
  498. }
  499. .item_con span:nth-child(1) {
  500. font-size: 26px;
  501. font-family: Source Han Sans CN;
  502. font-weight: bolder;
  503. margin-top: 10px;
  504. }
  505. .item_con span:nth-child(2) {
  506. margin-left: 20px;
  507. line-height: 30px;
  508. }
  509. .main_item_2 {
  510. width: 20%;
  511. height: 100%;
  512. }
  513. .main_item_8 {
  514. width: 80%;
  515. height: 100%;
  516. }
  517. .main_2_item {
  518. width: 100%;
  519. height: 20%;
  520. display: flex;
  521. justify-content: center;
  522. align-items: center;
  523. }
  524. .main_item_8_box {
  525. width: 100%;
  526. height: 50%;
  527. justify-content: flex-start;
  528. }
  529. .box_icon {
  530. width: 10px;
  531. height: calc(100% - 10px);
  532. background-color: #0093E9;
  533. }
  534. .main_item_8 .el-progress-bar__inner {
  535. background-image: linear-gradient(270deg, #0093E9 0%, #80D0C7 100%) !important;
  536. }
  537. .el-progress-bar__outer {
  538. background-color: #1C4B8E !important;
  539. }
  540. .main_item_8 .el-progress-bar {
  541. width: 95% !important;
  542. }
  543. .main_item_box {
  544. width: 100%;
  545. height: calc(20% - 10px);
  546. }
  547. .box_title {
  548. font-size: 30px;
  549. text-indent: 10px;
  550. margin-bottom: 2px;
  551. }
  552. .main_8_item {
  553. width: 100%;
  554. height: 20%;
  555. }
  556. .main_item_8 .el-progress__text {
  557. font-size: 35px !important;
  558. color: #fff !important;
  559. }
  560. .main_item_2 .el-progress__text {
  561. font-size: 25px !important;
  562. color: #fff !important;
  563. }
  564. .main_item_btn {
  565. width: 100%;
  566. height: 42px;
  567. }
  568. .main_item_main_bg {
  569. width: 100%;
  570. height: calc(100% - 90px);
  571. position: relative;
  572. }
  573. .main_item_main_bg img {
  574. width: 80%;
  575. height: 140%;
  576. position: absolute;
  577. top: -20%;
  578. left: 50%;
  579. transform: translateX(-50%);
  580. }
  581. .main_item_text {
  582. font-size: 40px;
  583. font-weight: bolder;
  584. margin-top: 10px;
  585. }
  586. .left {
  587. background: rgba(102, 130, 245, 0.4);
  588. border: 2px solid #839BFF;
  589. position: absolute;
  590. top: 20%;
  591. left: 25%;
  592. animation: leftRemove 2s steps(60) infinite;
  593. }
  594. @keyframes leftRemove {
  595. 0% {
  596. transform: translateY(0);
  597. }
  598. 25% {
  599. transform: translateY(-5%);
  600. }
  601. 50% {
  602. transform: translateY(0);
  603. }
  604. 75% {
  605. transform: translateY(5%);
  606. }
  607. 100% {
  608. transform: translateY(0);
  609. }
  610. }
  611. @keyframes rightRemove {
  612. 0% {
  613. transform: translateY(0);
  614. }
  615. 25% {
  616. transform: translateY(10%);
  617. }
  618. 50% {
  619. transform: translateY(0);
  620. }
  621. 75% {
  622. transform: translateY(-10%);
  623. }
  624. 100% {
  625. transform: translateY(0);
  626. }
  627. }
  628. .right {
  629. background: rgba(0, 202, 197, 0.23);
  630. border: 2px solid #40A9FF;
  631. position: absolute;
  632. top: 20%;
  633. right: 25%;
  634. animation: rightRemove 2s steps(60) infinite;
  635. }
  636. .bg_cyc {
  637. width: 120px;
  638. height: 120px;
  639. border-radius: 50%;
  640. z-index: 9999;
  641. justify-content: center;
  642. font-size: 20px;
  643. }
  644. .bg_cyc_text {
  645. font-size: 30px;
  646. font-weight: bolder;
  647. }
  648. .bg_cyc_text span {
  649. font-size: 20px;
  650. font-weight: normal;
  651. }
  652. .btm_item {
  653. width: calc(50% - 10px);
  654. height: 100%;
  655. }
  656. .main_item_left {
  657. width: 20%;
  658. height: 100%;
  659. }
  660. .main_item_right {
  661. width: calc(80% - 10px);
  662. height: 100%;
  663. }
  664. .right_item {
  665. width: 100%;
  666. height: 20%;
  667. display: flex;
  668. flex-direction: column;
  669. justify-content: space-around;
  670. align-items: flex-start;
  671. }
  672. .right_item_tit {
  673. width: 100%;
  674. height: 30%;
  675. display: flex;
  676. justify-content: flex-start;
  677. align-items: center;
  678. }
  679. .icon_tit {
  680. width: 5px;
  681. height: 100%;
  682. background: #40A9FF;
  683. margin: 5px 10px 0;
  684. }
  685. .tit_text {
  686. font-size: 28px;
  687. font-family: Source Han Sans CN;
  688. font-weight: bold;
  689. color: #FFFFFF;
  690. }
  691. .echarts_dom_else {
  692. width: 100%;
  693. height: 70%;
  694. }
  695. .main_item_left_item{
  696. width: 100%;
  697. height: 20%;
  698. }
  699. .page_main_center_svg{
  700. width: 700px;
  701. height: 700px;
  702. position: absolute;
  703. bottom: -10%;
  704. z-index: 0;
  705. /* transform-origin: center bottom;
  706. transform-style: preserve-3d; */
  707. }
  708. .svg_box {
  709. transform-origin: center top;
  710. transform: rotateX(80deg) scale(2.6);
  711. text-align: center;
  712. position: absolute;
  713. left: 90%;
  714. bottom: -10%;
  715. }