humanResources.css 18 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076
  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_99 .rows .row-item:nth-child(1) {
  335. color: #E1AF27;
  336. background-color: #302e2d50 !important;
  337. }
  338. .item_content_6 .rows .row-item:nth-child(2) {
  339. color: #E1AF27;
  340. background-color: #302e2d50 !important;
  341. }
  342. .item_content_7 .rows .row-item:nth-child(3) {
  343. color: #E1AF27;
  344. background-color: #302e2d50 !important;
  345. }
  346. .item_content_8 .rows .row-item:nth-child(4) {
  347. color: #E1AF27;
  348. background-color: #302e2d50 !important;
  349. }
  350. .item_content_9 .rows .row-item:nth-child(5) {
  351. color: #E1AF27;
  352. background-color: #302e2d50 !important;
  353. }
  354. .item_content_10 .rows .row-item:nth-child(6) {
  355. color: #E1AF27;
  356. background-color: #302e2d50 !important;
  357. }
  358. .item_content_11 .rows .row-item:nth-child(7) {
  359. color: #E1AF27;
  360. background-color: #302e2d50 !important;
  361. }
  362. .item_content_12 .rows .row-item:nth-child(8) {
  363. color: #E1AF27;
  364. background-color: #302e2d50 !important;
  365. }
  366. .item_content_13 .rows .row-item:nth-child(9) {
  367. color: #E1AF27;
  368. background-color: #302e2d50 !important;
  369. }
  370. .item_content_14 .rows .row-item:nth-child(10) {
  371. color: #E1AF27;
  372. background-color: #302e2d50 !important;
  373. }
  374. @keyframes remove {
  375. 0% {
  376. transform: translateY(0);
  377. }
  378. 25% {
  379. transform: translateY(-5%);
  380. }
  381. 50% {
  382. transform: translateY(0);
  383. }
  384. 75% {
  385. transform: translateY(5%);
  386. }
  387. 100% {
  388. transform: translateY(0);
  389. }
  390. }
  391. .item {
  392. width: 100%;
  393. height: 100%;
  394. padding: 10px 30px;
  395. box-sizing: border-box;
  396. }
  397. li {
  398. width: 100%;
  399. display: flex;
  400. flex-direction: column;
  401. justify-content: flex-start;
  402. align-items: flex-start;
  403. font-size: 27px;
  404. }
  405. .list_img {
  406. width: 40px;
  407. height: 40px;
  408. border-radius: 50%;
  409. margin-top: 15px;
  410. }
  411. .main_item_title {
  412. width: 270px;
  413. height: 50px;
  414. background: url("../images/humanResources/btn_on.png") no-repeat;
  415. background-size: 100% 100%;
  416. font-size: 24px;
  417. font-family: Source Han Sans CN;
  418. font-weight: 500;
  419. color: #FFFFFF;
  420. text-align: center;
  421. line-height: 50px;
  422. margin-top: -20px;
  423. }
  424. .main_item_main {
  425. width: 100%;
  426. height: calc(100% - 70px);
  427. }
  428. .center_top_item {
  429. width: 45%;
  430. height: 210px;
  431. }
  432. .center_top_image {
  433. width: 350px;
  434. height: 210px;
  435. margin-right: 30px;
  436. }
  437. .center_top_image img {
  438. width: 100% !important;
  439. height: 100% !important;
  440. }
  441. .center_top_info {
  442. justify-content: flex-start;
  443. align-items: flex-start;
  444. }
  445. .num {
  446. font-size: 72px;
  447. font-family: Helvetica Neue Extra Black Cond;
  448. font-weight: bolder;
  449. color: #5BCBFF;
  450. }
  451. .num span {
  452. font-size: 30px;
  453. font-family: Source Han Sans CN;
  454. font-weight: bold;
  455. }
  456. .name {
  457. font-size: 36px;
  458. font-family: Source Han Sans CN;
  459. font-weight: bolder;
  460. color: #FFFFFF;
  461. }
  462. .fireworks {
  463. position: absolute;
  464. width: 150px;
  465. height: 150px;
  466. background: red;
  467. -webkit-mask: url('../images/humanResources/e9951400.png') no-repeat;
  468. -webkit-mask-size: auto 150px;
  469. transform: scale(2.65);
  470. animation: fireworks 2s steps(24) infinite, random 8s steps(1) infinite, random_color 1s infinite;
  471. /* animation: fireworks 2s steps(24) infinite; */
  472. /* display: none; */
  473. }
  474. .fireworkss {
  475. position: absolute;
  476. width: 150px;
  477. height: 150px;
  478. top: 10%;
  479. right: 0%;
  480. background: red;
  481. }
  482. .fireworks_line {
  483. position: absolute;
  484. width: 10px;
  485. height: 60px;
  486. bottom: 10%;
  487. left: calc(50% - 2.5px);
  488. animation: fireworks_line 2s steps(120) infinite;
  489. display: flex;
  490. flex-direction: column;
  491. justify-content: center;
  492. align-items: center;
  493. }
  494. .line {
  495. width: 1px;
  496. height: 50px;
  497. background-color: #faf89a;
  498. }
  499. @keyframes fireworks {
  500. to {
  501. -webkit-mask-position: 100%;
  502. /* transform: scale(1.65) */
  503. }
  504. }
  505. @keyframes fireworks_line {
  506. to {
  507. bottom: 68%;
  508. }
  509. }
  510. @keyframes random {
  511. 25% {
  512. transform: translate(200%, 50%) scale(1.4);
  513. }
  514. 50% {
  515. transform: translate(80%, 80%) scale(1.7);
  516. }
  517. 75% {
  518. transform: translate(-20%, -60%) scale(1.95);
  519. }
  520. }
  521. @keyframes random_color {
  522. 0% {
  523. background-color: #ffefad;
  524. }
  525. 25% {
  526. background-color: #ffadad;
  527. }
  528. 50% {
  529. background-color: #aeadff;
  530. }
  531. 75% {
  532. background-color: #adffd9;
  533. }
  534. }
  535. .warp {
  536. width: 100%;
  537. height: 92%;
  538. overflow: hidden;
  539. }
  540. .item_title {
  541. width: 100%;
  542. text-align: center;
  543. font-size: 34px;
  544. font-family: Source Han Sans CN;
  545. font-weight: bolder;
  546. color: #7CC8FF;
  547. margin: 15px 0;
  548. }
  549. .item_con {
  550. width: 100%;
  551. margin: 10px 0;
  552. font-size: 24px;
  553. line-height: 50px;
  554. display: flex;
  555. flex-direction: column;
  556. justify-content: flex-start;
  557. align-items: flex-start;
  558. letter-spacing: 9px;
  559. }
  560. .item_con span:nth-child(1) {
  561. font-size: 26px;
  562. font-family: Source Han Sans CN;
  563. font-weight: bolder;
  564. margin-top: 10px;
  565. color: #7CC8FF;
  566. }
  567. .item_con span:nth-child(2) {
  568. margin-left: 20px;
  569. line-height: 30px;
  570. /* white-space: pre-wrap; */
  571. }
  572. .item_con_main{
  573. line-height: 45px;
  574. white-space: pre-wrap;
  575. font-size: 26px;
  576. font-family: Source Han Sans CN;
  577. font-weight: bolder;
  578. margin-top: 10px;
  579. color: #fff !important;
  580. }
  581. .main_item_2 {
  582. width: 20%;
  583. height: 100%;
  584. }
  585. .main_item_8 {
  586. width: 80%;
  587. height: 100%;
  588. }
  589. .main_2_item {
  590. width: 100%;
  591. height: 20%;
  592. display: flex;
  593. justify-content: center;
  594. align-items: center;
  595. }
  596. .main_item_8_box {
  597. width: 100%;
  598. height: 50%;
  599. justify-content: flex-start;
  600. }
  601. .box_icon {
  602. width: 10px;
  603. height: calc(100% - 10px);
  604. background-color: #0093E9;
  605. }
  606. .main_item_8 .el-progress-bar__inner {
  607. background-image: linear-gradient(270deg, #0093E9 0%, #80D0C7 100%) !important;
  608. }
  609. .el-progress-bar__outer {
  610. background-color: #1C4B8E !important;
  611. }
  612. .main_item_8 .el-progress-bar {
  613. width: 95% !important;
  614. }
  615. .main_item_box {
  616. width: 100%;
  617. height: calc(20% - 10px);
  618. }
  619. .box_title {
  620. font-size: 30px;
  621. text-indent: 10px;
  622. margin-bottom: 2px;
  623. }
  624. .main_8_item {
  625. width: 100%;
  626. height: 20%;
  627. }
  628. .main_item_8 .el-progress__text {
  629. font-size: 35px !important;
  630. color: #fff !important;
  631. }
  632. .main_item_2 .el-progress__text {
  633. font-size: 25px !important;
  634. color: #fff !important;
  635. }
  636. .main_item_btn {
  637. width: 100%;
  638. height: 50px;
  639. z-index: 99999;
  640. justify-content: space-around;
  641. }
  642. .main_item_main_bg {
  643. width: 100%;
  644. height: calc(100% - 90px);
  645. position: relative;
  646. }
  647. .main_item_main_bg img {
  648. width: 75%;
  649. height: 180%;
  650. position: absolute;
  651. top: -45%;
  652. left: 50%;
  653. transform: translateX(-50%);
  654. }
  655. .main_item_text {
  656. font-size: 40px;
  657. font-weight: bolder;
  658. margin-top: 10px;
  659. }
  660. .left {
  661. background: rgba(102, 130, 245, 0.4);
  662. border: 2px solid #839BFF;
  663. position: absolute;
  664. top: 20%;
  665. left: 25%;
  666. animation: leftRemove 2s steps(60) infinite;
  667. }
  668. @keyframes leftRemove {
  669. 0% {
  670. transform: translateY(0);
  671. }
  672. 25% {
  673. transform: translateY(-5%);
  674. }
  675. 50% {
  676. transform: translateY(0);
  677. }
  678. 75% {
  679. transform: translateY(5%);
  680. }
  681. 100% {
  682. transform: translateY(0);
  683. }
  684. }
  685. @keyframes rightRemove {
  686. 0% {
  687. transform: translateY(0);
  688. }
  689. 25% {
  690. transform: translateY(10%);
  691. }
  692. 50% {
  693. transform: translateY(0);
  694. }
  695. 75% {
  696. transform: translateY(-10%);
  697. }
  698. 100% {
  699. transform: translateY(0);
  700. }
  701. }
  702. .right {
  703. background: rgba(0, 202, 197, 0.23);
  704. border: 2px solid #40A9FF;
  705. position: absolute;
  706. top: 20%;
  707. right: 25%;
  708. animation: rightRemove 2s steps(60) infinite;
  709. }
  710. .bg_cyc {
  711. width: 120px;
  712. height: 120px;
  713. border-radius: 50%;
  714. z-index: 9999;
  715. justify-content: center;
  716. font-size: 20px;
  717. }
  718. .bg_cyc_text {
  719. font-size: 30px;
  720. font-weight: bolder;
  721. }
  722. .bg_cyc_text span {
  723. font-size: 20px;
  724. font-weight: normal;
  725. }
  726. .btm_item {
  727. width: calc(50% - 10px);
  728. height: 100%;
  729. }
  730. .main_item_left {
  731. width: 20%;
  732. height: 100%;
  733. }
  734. .main_item_right {
  735. width: calc(100% - 10px);
  736. height: 100%;
  737. }
  738. .right_item {
  739. width: 100%;
  740. height: 20%;
  741. display: flex;
  742. /* flex-direction: column; */
  743. justify-content: space-around;
  744. align-items: flex-start;
  745. }
  746. .right_item_tit {
  747. width: 25%;
  748. height: 100%;
  749. display: flex;
  750. justify-content: flex-start;
  751. align-items: center;
  752. }
  753. .icon_tit {
  754. width: 5px;
  755. height: 30%;
  756. background: #40A9FF;
  757. margin: 5px 10px 0;
  758. }
  759. .tit_text {
  760. font-size: 28px;
  761. font-family: Source Han Sans CN;
  762. font-weight: bold;
  763. color: #FFFFFF;
  764. }
  765. .echarts_dom_else {
  766. width: 75%;
  767. height: 100%;
  768. }
  769. .main_item_left_item {
  770. width: 100%;
  771. height: 20%;
  772. }
  773. .page_main_center_svg {
  774. width: 700px;
  775. height: 700px;
  776. position: absolute;
  777. bottom: -10%;
  778. z-index: 0;
  779. /* transform-origin: center bottom;
  780. transform-style: preserve-3d; */
  781. }
  782. .svg_box {
  783. transform-origin: center top;
  784. transform: rotateX(80deg) scale(2.6);
  785. text-align: center;
  786. position: absolute;
  787. left: 90%;
  788. bottom: -10%;
  789. }
  790. .changeTime_else {
  791. width: 460px;
  792. height: 50px;
  793. position: absolute;
  794. right: 40px;
  795. font-size: 28px !important;
  796. z-index: 99999;
  797. }
  798. .mark_box {
  799. width: 100%;
  800. height: 100%;
  801. position: absolute;
  802. top: 0;
  803. left: 0;
  804. background-color: #1b1b1bb0;
  805. z-index: 9999999999999;
  806. }
  807. .mark_select_box {
  808. width: 215px;
  809. height: 400px;
  810. background-color: var(--bgc);
  811. overflow-y: scroll;
  812. position: absolute;
  813. right: 5%;
  814. bottom: 4%;
  815. font-size: 28px;
  816. text-align: center;
  817. }
  818. .mark_select_options {
  819. width: 100%;
  820. height: 50px;
  821. line-height: 50px;
  822. }
  823. .time_box {
  824. width: 50%;
  825. height: 100%;
  826. }
  827. .time {
  828. width: 100%;
  829. height: 100%;
  830. background: rgba(75, 172, 255, 0.2);
  831. font-size: 28px;
  832. }
  833. .changeTime {
  834. width: 190px;
  835. height: 60px;
  836. background-color: var(--bgc);
  837. position: absolute;
  838. right: 0;
  839. top: 10px;
  840. display: flex;
  841. justify-content: center;
  842. align-items: center;
  843. }
  844. .humanResources_times {
  845. width: 50px;
  846. height: 50px;
  847. }
  848. .humanResources_text {
  849. font-size: 30px;
  850. margin: 0 20px;
  851. }
  852. .humanResources_icon_time {
  853. width: 24px;
  854. height: 16px;
  855. }
  856. .mark_month_box {
  857. width: 190px;
  858. background-color: var(--bgc);
  859. position: absolute;
  860. right: 1%;
  861. top: 38.5%;
  862. display: flex;
  863. flex-direction: column;
  864. justify-content: center;
  865. align-items: center;
  866. overflow-y: scroll;
  867. text-align: center;
  868. font-size: 28px;
  869. padding: 5px 0;
  870. box-sizing: border-box;
  871. }
  872. .echarts_icon {
  873. width: 70px;
  874. height: 70px;
  875. position: fixed;
  876. left: 32.5%;
  877. top: 62%;
  878. z-index: 999999;
  879. }
  880. .svg_box {
  881. width: 40%;
  882. height: 500px;
  883. position: absolute;
  884. left: 50%;
  885. bottom: 15%;
  886. transform: translateX(-15%);
  887. transform-origin: center bottom;
  888. transform-style: preserve-3d;
  889. }
  890. .svg_item {
  891. width: 800px;
  892. height: 800px;
  893. transform-origin: center top;
  894. transform: rotateX(81deg) scale(2.4);
  895. position: absolute;
  896. bottom: -100%;
  897. }
  898. .svg_item_s {
  899. width: 800px;
  900. height: 800px;
  901. transform-origin: center top;
  902. transform: rotateX(83deg) scale(1.65) translateX(-1.2%);
  903. position: absolute;
  904. bottom: -90%;
  905. }
  906. .svg_item_shu {
  907. width: 800px;
  908. height: 800px;
  909. transform-origin: center top;
  910. transform: rotateX(79deg) scale(2.1) translateX(-1%);
  911. position: absolute;
  912. bottom: -85%;
  913. }
  914. .svg {
  915. width: 100%;
  916. height: 100%;
  917. }
  918. /* .page_type{
  919. width: 100%;
  920. height: 100%;
  921. } */
  922. .w100 .header .header-item{
  923. font-size: 30px;
  924. }
  925. .w100 .row-item {
  926. font-size: 35px !important;
  927. }
  928. ::-webkit-scrollbar {
  929. display: none;
  930. }