humanResources.css 19 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124
  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(79% - 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: 15%;
  83. background-color: var(--bgc);
  84. position: relative;
  85. }
  86. .flex_column {
  87. display: flex;
  88. flex-direction: column;
  89. justify-content: space-around;
  90. align-items: center;
  91. }
  92. .flex_sp {
  93. display: flex;
  94. justify-content: space-between;
  95. align-items: center;
  96. }
  97. .flex {
  98. display: flex;
  99. justify-content: center;
  100. align-items: center;
  101. }
  102. .page_main_left,
  103. .page_main_right {
  104. width: 34%;
  105. height: 100%;
  106. position: absolute;
  107. }
  108. .page_main_left {
  109. left: 0;
  110. }
  111. .page_main_right {
  112. right: 0;
  113. }
  114. img {
  115. width: 100%;
  116. height: 100%;
  117. }
  118. .page_main_center {
  119. width: calc(41% - 30px);
  120. height: 100%;
  121. position: absolute;
  122. left: 50%;
  123. transform: translateX(-50%);
  124. z-index: 9999;
  125. }
  126. .page_main_center .page_main_center_image {
  127. width: 90%;
  128. z-index: 0;
  129. height: 84%;
  130. transform: scale(1.1) translate(5%, 20%);
  131. }
  132. .center_top {
  133. width: 100%;
  134. height: 210px;
  135. padding: 0 15%;
  136. box-sizing: border-box;
  137. /* background-color: #ffffff; */
  138. position: absolute;
  139. top: 4.5%;
  140. }
  141. .center_main {
  142. width: 100%;
  143. height: 55%;
  144. position: absolute;
  145. top: 13.5%;
  146. }
  147. .center_main_item {
  148. width: 350px;
  149. height: 350px;
  150. position: absolute;
  151. background: url("../images/humanResources/icon2.png");
  152. background-repeat: no-repeat;
  153. background-size: cover;
  154. justify-content: center;
  155. animation: remove 2s steps(60) infinite;
  156. }
  157. .center_main_item_icon {
  158. width: 110px;
  159. height: 110px;
  160. margin-bottom: 10px;
  161. }
  162. .center_main_item span {
  163. font-size: 30px;
  164. font-weight: 500;
  165. text-align: center;
  166. }
  167. .left_top {
  168. width: 100%;
  169. height: calc(70% - 15px);
  170. background-color: var(--bgc);
  171. }
  172. .left_btm {
  173. width: 100%;
  174. height: calc(30% - 15px);
  175. background-color: var(--bgc);
  176. }
  177. .title {
  178. width: 70%;
  179. height: 75px;
  180. background: url("../images/humanResources/title.png") no-repeat;
  181. background-size: 100% 100%;
  182. font-size: 36px;
  183. font-family: Source Han Sans CN;
  184. font-weight: bolder;
  185. color: #FFFFFF;
  186. text-indent: 8%;
  187. line-height: 65px;
  188. }
  189. .title_yellow {
  190. width: 70%;
  191. height: 75px;
  192. background: url("../images/humanResources/title_yellow.png") no-repeat;
  193. background-size: 100% 100%;
  194. font-size: 36px;
  195. font-family: Source Han Sans CN;
  196. font-weight: bolder;
  197. color: #FFFFFF;
  198. text-indent: 8%;
  199. line-height: 65px;
  200. }
  201. .main {
  202. width: 100%;
  203. height: calc(100% - 75px);
  204. padding: 40px 40px 10px;
  205. box-sizing: border-box;
  206. }
  207. .main_item {
  208. width: calc(50% - 10px);
  209. height: 100%;
  210. background-color: #69c1ff09;
  211. padding-top: 20px;
  212. box-sizing: border-box;
  213. }
  214. .right_top {
  215. width: 100%;
  216. height: calc(25% - 15px);
  217. background-color: var(--bgc);
  218. }
  219. .right_main {
  220. width: 100%;
  221. height: calc(35% - 15px);
  222. background-color: var(--bgc);
  223. }
  224. .right_btm {
  225. width: 100%;
  226. height: calc(40% - 15px);
  227. background-color: var(--bgc);
  228. }
  229. .main_item_top {
  230. width: 100%;
  231. height: calc(37% - 15px);
  232. background-color: var(--bgc);
  233. }
  234. .main_item_btm {
  235. width: 100%;
  236. height: calc(63% - 15px);
  237. background-color: var(--bgc);
  238. }
  239. .echarts_dom {
  240. width: 100%;
  241. height: 100%;
  242. }
  243. .item_content_6,
  244. .item_content_7,
  245. .item_content_8,
  246. .item_content_9,
  247. .item_content_10,
  248. .item_content_11,
  249. .item_content_12,
  250. .item_content_13,
  251. .item_content_14,
  252. .item_content_15,
  253. .item_content_16,
  254. .item_content_17,
  255. .item_content_99,
  256. .item_content_6_false {
  257. width: 100%;
  258. height: calc(60% - 10px);
  259. }
  260. .item_content_4 {
  261. width: 100%;
  262. height: calc(40% - 10px);
  263. }
  264. .header-item {
  265. font-size: 20px;
  266. color: #69C0FF;
  267. }
  268. .row-item {
  269. font-size: 23px !important;
  270. }
  271. .content_4_top {
  272. width: 100%;
  273. height: 100px;
  274. align-items: flex-end;
  275. }
  276. .content_4_title {
  277. width: 100%;
  278. height: 50px;
  279. justify-content: space-around;
  280. }
  281. .content_4_time {
  282. width: 45%;
  283. height: 40px;
  284. }
  285. .btn_on {
  286. width: 250px;
  287. height: 100%;
  288. background: url("../images/humanResources/btn_on.png") no-repeat;
  289. background-size: 100% 100%;
  290. margin: 0 20px;
  291. font-size: 25px;
  292. font-family: Source Han Sans CN;
  293. font-weight: 500;
  294. color: #ECE278;
  295. text-align: center;
  296. line-height: 50px;
  297. }
  298. .btn_off {
  299. width: 250px;
  300. height: 100%;
  301. background: url("../images/humanResources/btn_off.png") no-repeat;
  302. background-size: 100% 100%;
  303. margin: 0 20px;
  304. font-size: 25px;
  305. font-family: Source Han Sans CN;
  306. font-weight: 500;
  307. color: #47C0FF;
  308. text-align: center;
  309. line-height: 50px;
  310. }
  311. .img_class {
  312. width: 22px;
  313. /* height: 16px; */
  314. margin-left: 10px;
  315. }
  316. img {
  317. width: 100%;
  318. height: 100%;
  319. }
  320. .content_4_btm {
  321. width: 100%;
  322. height: calc(100% - 90px);
  323. margin-top: 5px;
  324. }
  325. .yellow {
  326. color: yellow;
  327. }
  328. .red {
  329. color: red;
  330. }
  331. .green {
  332. color: green;
  333. }
  334. /* .item_content_6 .rows .row-item:nth-child(2){
  335. color: #E1AF27;
  336. background-color: #302e2d50 !important;
  337. } */
  338. .item_content_99 .rows .row-item:nth-child(1) {
  339. color: #E1AF27;
  340. background-color: #302e2d50 !important;
  341. }
  342. .item_content_6 .rows .row-item:nth-child(2) {
  343. color: #E1AF27;
  344. background-color: #302e2d50 !important;
  345. }
  346. .item_content_6_else .rows .row-item:nth-child(2) {
  347. color: #E1AF27;
  348. background-color: #302e2d50 !important;
  349. }
  350. .item_content_5 .rows .row-item:nth-child(2) {
  351. color: #E1AF27;
  352. background-color: #302e2d50 !important;
  353. }
  354. .item_content_7 .rows .row-item:nth-child(3) {
  355. color: #E1AF27;
  356. background-color: #302e2d50 !important;
  357. }
  358. .item_content_8 .rows .row-item:nth-child(4) {
  359. color: #E1AF27;
  360. background-color: #302e2d50 !important;
  361. }
  362. .item_content_9 .rows .row-item:nth-child(5) {
  363. color: #E1AF27;
  364. background-color: #302e2d50 !important;
  365. }
  366. .item_content_10 .rows .row-item:nth-child(6) {
  367. color: #E1AF27;
  368. background-color: #302e2d50 !important;
  369. }
  370. .item_content_11 .rows .row-item:nth-child(7) {
  371. color: #E1AF27;
  372. background-color: #302e2d50 !important;
  373. }
  374. .item_content_12 .rows .row-item:nth-child(8) {
  375. color: #E1AF27;
  376. background-color: #302e2d50 !important;
  377. }
  378. .item_content_13 .rows .row-item:nth-child(9) {
  379. color: #E1AF27;
  380. background-color: #302e2d50 !important;
  381. }
  382. .item_content_14 .rows .row-item:nth-child(10) {
  383. color: #E1AF27;
  384. background-color: #302e2d50 !important;
  385. }
  386. @keyframes remove {
  387. 0% {
  388. transform: translateY(0);
  389. }
  390. 25% {
  391. transform: translateY(-5%);
  392. }
  393. 50% {
  394. transform: translateY(0);
  395. }
  396. 75% {
  397. transform: translateY(5%);
  398. }
  399. 100% {
  400. transform: translateY(0);
  401. }
  402. }
  403. .item {
  404. width: 100%;
  405. height: 100%;
  406. padding: 10px 30px;
  407. box-sizing: border-box;
  408. }
  409. li {
  410. width: 100%;
  411. display: flex;
  412. flex-direction: column;
  413. justify-content: flex-start;
  414. align-items: flex-start;
  415. font-size: 27px;
  416. }
  417. .list_img {
  418. width: 40px;
  419. height: 40px;
  420. border-radius: 50%;
  421. margin-top: 15px;
  422. }
  423. .main_item_title {
  424. width: 270px;
  425. height: 50px;
  426. background: url("../images/humanResources/btn_on.png") no-repeat;
  427. background-size: 100% 100%;
  428. font-size: 24px;
  429. font-family: Source Han Sans CN;
  430. font-weight: 500;
  431. color: #FFFFFF;
  432. text-align: center;
  433. line-height: 50px;
  434. margin-top: -20px;
  435. }
  436. .main_item_main {
  437. width: 100%;
  438. height: calc(100% - 70px);
  439. }
  440. .center_top_item {
  441. width: 45%;
  442. height: 210px;
  443. }
  444. .center_top_image {
  445. width: 350px;
  446. height: 210px;
  447. margin-right: 30px;
  448. }
  449. .center_top_image img {
  450. width: 100% !important;
  451. height: 100% !important;
  452. }
  453. .center_top_info {
  454. justify-content: flex-start;
  455. align-items: flex-start;
  456. }
  457. .num {
  458. font-size: 72px;
  459. font-family: Helvetica Neue Extra Black Cond;
  460. font-weight: bolder;
  461. color: #5BCBFF;
  462. }
  463. .num span {
  464. font-size: 30px;
  465. font-family: Source Han Sans CN;
  466. font-weight: bold;
  467. }
  468. .name {
  469. font-size: 36px;
  470. font-family: Source Han Sans CN;
  471. font-weight: bolder;
  472. color: #FFFFFF;
  473. }
  474. .fireworks {
  475. position: absolute;
  476. width: 150px;
  477. height: 150px;
  478. background: red;
  479. -webkit-mask: url('../images/humanResources/e9951400.png') no-repeat;
  480. -webkit-mask-size: auto 150px;
  481. transform: scale(2.65);
  482. animation: fireworks 2s steps(24) infinite, random 8s steps(1) infinite, random_color 1s infinite;
  483. /* animation: fireworks 2s steps(24) infinite; */
  484. /* display: none; */
  485. }
  486. .fireworkss {
  487. position: absolute;
  488. width: 150px;
  489. height: 150px;
  490. top: 10%;
  491. right: 0%;
  492. background: red;
  493. }
  494. .fireworks_line {
  495. position: absolute;
  496. width: 10px;
  497. height: 60px;
  498. bottom: 10%;
  499. left: calc(50% - 2.5px);
  500. animation: fireworks_line 2s steps(120) infinite;
  501. display: flex;
  502. flex-direction: column;
  503. justify-content: center;
  504. align-items: center;
  505. }
  506. .line {
  507. width: 1px;
  508. height: 50px;
  509. background-color: #faf89a;
  510. }
  511. @keyframes fireworks {
  512. to {
  513. -webkit-mask-position: 100%;
  514. /* transform: scale(1.65) */
  515. }
  516. }
  517. @keyframes fireworks_line {
  518. to {
  519. bottom: 68%;
  520. }
  521. }
  522. @keyframes random {
  523. 25% {
  524. transform: translate(200%, 50%) scale(1.4);
  525. }
  526. 50% {
  527. transform: translate(80%, 80%) scale(1.7);
  528. }
  529. 75% {
  530. transform: translate(-20%, -60%) scale(1.95);
  531. }
  532. }
  533. @keyframes random_color {
  534. 0% {
  535. background-color: #ffefad;
  536. }
  537. 25% {
  538. background-color: #ffadad;
  539. }
  540. 50% {
  541. background-color: #aeadff;
  542. }
  543. 75% {
  544. background-color: #adffd9;
  545. }
  546. }
  547. .warp {
  548. width: 100%;
  549. height: 92%;
  550. overflow: hidden;
  551. }
  552. .item_title {
  553. width: 100%;
  554. text-align: center;
  555. font-size: 34px;
  556. font-family: Source Han Sans CN;
  557. font-weight: bolder;
  558. color: #7CC8FF;
  559. margin: 15px 0;
  560. }
  561. .item_con {
  562. width: 100%;
  563. margin: 10px 0;
  564. font-size: 24px;
  565. line-height: 50px;
  566. display: flex;
  567. flex-direction: column;
  568. justify-content: flex-start;
  569. align-items: flex-start;
  570. letter-spacing: 9px;
  571. }
  572. .item_con span:nth-child(1) {
  573. font-size: 26px;
  574. font-family: Source Han Sans CN;
  575. font-weight: bolder;
  576. margin-top: 10px;
  577. color: #7CC8FF;
  578. }
  579. .item_con span:nth-child(2) {
  580. margin-left: 20px;
  581. line-height: 30px;
  582. /* white-space: pre-wrap; */
  583. }
  584. .item_con_main {
  585. line-height: 45px;
  586. white-space: pre-wrap;
  587. font-size: 26px;
  588. font-family: Source Han Sans CN;
  589. font-weight: bolder;
  590. margin-top: 10px;
  591. color: #fff !important;
  592. }
  593. .main_item_2 {
  594. width: 20%;
  595. height: 100%;
  596. }
  597. .main_item_8 {
  598. width: 80%;
  599. height: 100%;
  600. }
  601. .main_2_item {
  602. width: 100%;
  603. height: 20%;
  604. display: flex;
  605. justify-content: center;
  606. align-items: center;
  607. }
  608. .main_item_8_box {
  609. width: 100%;
  610. height: 50%;
  611. justify-content: flex-start;
  612. }
  613. .box_icon {
  614. width: 10px;
  615. height: calc(100% - 10px);
  616. background-color: #0093E9;
  617. }
  618. .main_item_8 .el-progress-bar__inner {
  619. background-image: linear-gradient(270deg, #0093E9 0%, #80D0C7 100%) !important;
  620. }
  621. .el-progress-bar__outer {
  622. background-color: #1C4B8E !important;
  623. }
  624. .main_item_8 .el-progress-bar {
  625. width: 95% !important;
  626. }
  627. .main_item_box {
  628. width: 100%;
  629. height: calc(20% - 10px);
  630. }
  631. .box_title {
  632. font-size: 30px;
  633. text-indent: 10px;
  634. margin-bottom: 2px;
  635. }
  636. .main_8_item {
  637. width: 100%;
  638. height: 20%;
  639. }
  640. .main_item_8 .el-progress__text {
  641. font-size: 35px !important;
  642. color: #fff !important;
  643. }
  644. .main_item_2 .el-progress__text {
  645. font-size: 25px !important;
  646. color: #fff !important;
  647. }
  648. .main_item_btn {
  649. width: 100%;
  650. height: 50px;
  651. z-index: 99999;
  652. justify-content: space-around;
  653. }
  654. .main_item_main_bg {
  655. width: 100%;
  656. height: calc(100% - 90px);
  657. position: relative;
  658. }
  659. .main_item_main_bg img {
  660. width: 75%;
  661. height: 180%;
  662. position: absolute;
  663. top: -45%;
  664. left: 50%;
  665. transform: translateX(-50%);
  666. }
  667. .main_item_text {
  668. font-size: 40px;
  669. font-weight: bolder;
  670. margin-top: 10px;
  671. }
  672. .left {
  673. background: rgba(102, 130, 245, 0.4);
  674. border: 2px solid #839BFF;
  675. position: absolute;
  676. top: 20%;
  677. left: 25%;
  678. animation: leftRemove 2s steps(60) infinite;
  679. }
  680. @keyframes leftRemove {
  681. 0% {
  682. transform: translateY(0);
  683. }
  684. 25% {
  685. transform: translateY(-5%);
  686. }
  687. 50% {
  688. transform: translateY(0);
  689. }
  690. 75% {
  691. transform: translateY(5%);
  692. }
  693. 100% {
  694. transform: translateY(0);
  695. }
  696. }
  697. @keyframes rightRemove {
  698. 0% {
  699. transform: translateY(0);
  700. }
  701. 25% {
  702. transform: translateY(10%);
  703. }
  704. 50% {
  705. transform: translateY(0);
  706. }
  707. 75% {
  708. transform: translateY(-10%);
  709. }
  710. 100% {
  711. transform: translateY(0);
  712. }
  713. }
  714. .right {
  715. background: rgba(0, 202, 197, 0.23);
  716. border: 2px solid #40A9FF;
  717. position: absolute;
  718. top: 20%;
  719. right: 25%;
  720. animation: rightRemove 2s steps(60) infinite;
  721. }
  722. .bg_cyc {
  723. width: 120px;
  724. height: 120px;
  725. border-radius: 50%;
  726. z-index: 9999;
  727. justify-content: center;
  728. font-size: 20px;
  729. }
  730. .bg_cyc_text {
  731. font-size: 30px;
  732. font-weight: bolder;
  733. }
  734. .bg_cyc_text span {
  735. font-size: 20px;
  736. font-weight: normal;
  737. }
  738. .btm_item {
  739. width: calc(50% - 10px);
  740. height: 100%;
  741. }
  742. .main_item_left {
  743. width: 20%;
  744. height: 100%;
  745. }
  746. .main_item_right {
  747. width: calc(100% - 10px);
  748. height: 100%;
  749. }
  750. .right_item {
  751. width: 100%;
  752. height: 20%;
  753. display: flex;
  754. /* flex-direction: column; */
  755. justify-content: space-around;
  756. align-items: flex-start;
  757. }
  758. .right_item_tit {
  759. width: 25%;
  760. height: 100%;
  761. display: flex;
  762. justify-content: flex-start;
  763. align-items: center;
  764. }
  765. .icon_tit {
  766. width: 5px;
  767. height: 30%;
  768. background: #40A9FF;
  769. margin: 5px 10px 0;
  770. }
  771. .tit_text {
  772. font-size: 28px;
  773. font-family: Source Han Sans CN;
  774. font-weight: bold;
  775. color: #FFFFFF;
  776. }
  777. .echarts_dom_else {
  778. width: 75%;
  779. height: 100%;
  780. }
  781. .main_item_left_item {
  782. width: 100%;
  783. height: 20%;
  784. }
  785. .page_main_center_svg {
  786. width: 700px;
  787. height: 700px;
  788. position: absolute;
  789. bottom: -10%;
  790. z-index: 0;
  791. /* transform-origin: center bottom;
  792. transform-style: preserve-3d; */
  793. }
  794. .svg_box {
  795. transform-origin: center top;
  796. transform: rotateX(80deg) scale(2.6);
  797. text-align: center;
  798. position: absolute;
  799. left: 90%;
  800. bottom: -10%;
  801. }
  802. .changeTime_else {
  803. width: 460px;
  804. height: 50px;
  805. position: absolute;
  806. right: 40px;
  807. font-size: 28px !important;
  808. z-index: 99999;
  809. }
  810. .mark_box {
  811. width: 100%;
  812. height: 100%;
  813. position: absolute;
  814. top: 0;
  815. left: 0;
  816. background-color: #1b1b1bb0;
  817. z-index: 9999999999999;
  818. }
  819. .mark_select_box {
  820. width: 215px;
  821. height: 400px;
  822. background-color: var(--bgc);
  823. overflow-y: scroll;
  824. position: absolute;
  825. right: 5%;
  826. bottom: 4%;
  827. font-size: 28px;
  828. text-align: center;
  829. }
  830. .mark_select_options {
  831. width: 100%;
  832. height: 50px;
  833. line-height: 50px;
  834. }
  835. .time_box {
  836. width: 50%;
  837. height: 100%;
  838. }
  839. .time {
  840. width: 100%;
  841. height: 100%;
  842. background: rgba(75, 172, 255, 0.2);
  843. font-size: 28px;
  844. }
  845. .changeTime {
  846. width: 190px;
  847. height: 60px;
  848. background-color: var(--bgc);
  849. position: absolute;
  850. right: 0;
  851. top: 10px;
  852. display: flex;
  853. justify-content: center;
  854. align-items: center;
  855. }
  856. .humanResources_times {
  857. width: 50px;
  858. height: 50px;
  859. }
  860. .humanResources_text {
  861. font-size: 30px;
  862. margin: 0 20px;
  863. }
  864. .humanResources_icon_time {
  865. width: 24px;
  866. height: 16px;
  867. }
  868. .mark_month_box {
  869. width: 190px;
  870. background-color: var(--bgc);
  871. position: absolute;
  872. right: 1%;
  873. top: 38.5%;
  874. display: flex;
  875. flex-direction: column;
  876. justify-content: center;
  877. align-items: center;
  878. overflow-y: scroll;
  879. text-align: center;
  880. font-size: 28px;
  881. padding: 5px 0;
  882. box-sizing: border-box;
  883. }
  884. .echarts_icon {
  885. width: 90px;
  886. height: 90px;
  887. position: fixed;
  888. left: 32.5%;
  889. top: 62%;
  890. z-index: 999999;
  891. }
  892. .echarts_icon_else {
  893. width: 90px;
  894. height: 90px;
  895. position: fixed;
  896. left: 32.5%;
  897. top: 62%;
  898. z-index: 999999;
  899. filter: hue-rotate(204deg);
  900. }
  901. .svg_box {
  902. width: 40%;
  903. height: 500px;
  904. position: absolute;
  905. left: 50%;
  906. bottom: 15%;
  907. transform: translateX(-15%);
  908. transform-origin: center bottom;
  909. transform-style: preserve-3d;
  910. }
  911. .svg_item {
  912. width: 800px;
  913. height: 800px;
  914. transform-origin: center top;
  915. transform: rotateX(81deg) scale(2.4);
  916. position: absolute;
  917. bottom: -100%;
  918. }
  919. .svg_item_s {
  920. width: 800px;
  921. height: 800px;
  922. transform-origin: center top;
  923. transform: rotateX(83deg) scale(1.65) translateX(-1.2%);
  924. position: absolute;
  925. bottom: -90%;
  926. }
  927. .svg_item_shu {
  928. width: 800px;
  929. height: 800px;
  930. transform-origin: center top;
  931. transform: rotateX(79deg) scale(2.1) translateX(-1%);
  932. position: absolute;
  933. bottom: -85%;
  934. }
  935. .svg {
  936. width: 100%;
  937. height: 100%;
  938. }
  939. /* .page_type{
  940. width: 100%;
  941. height: 100%;
  942. } */
  943. .w100 .header .header-item {
  944. font-size: 30px;
  945. }
  946. .w100 .row-item {
  947. font-size: 35px !important;
  948. }
  949. ::-webkit-scrollbar {
  950. display: none;
  951. }