screen.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658
  1. @charset "UTF-8";
  2. body {
  3. --mc: #03AEBC;
  4. --tc: #36536D;
  5. --brc: #80BAEF;
  6. --bgc: #e9f2fd;
  7. --bg: rgba(255,255,255,0.4);
  8. font-family: "Source Han Sans";
  9. }
  10. .box .box-header {
  11. display: flex;
  12. height: 35px;
  13. width: 100%;
  14. /*background: linear-gradient(90deg,#b2d9f5,#c2d8f4);*/
  15. background: linear-gradient(90deg, rgba(82, 197, 233, 0.411765) 0%, rgba(59, 221, 243, 0.12549) 35.99%, rgba(67, 219, 252, 0.00784314) 87.02%);
  16. box-shadow: inset 0px -2px 4px rgba(117, 185, 248, 0.52);
  17. border-bottom: 1px solid rgba(98, 156, 215, 0.05);
  18. position: relative;
  19. }
  20. .box .box-header .title {
  21. --w: 47px;
  22. display: flex;
  23. position: relative;
  24. height: 100%;
  25. padding-left: 5px;
  26. margin-left: var(--w);
  27. font-size: 18px;
  28. font-weight: 600;
  29. color: #094B88;
  30. align-items: center;
  31. }
  32. .box .box-header .title:before {
  33. content: "";
  34. position: absolute;
  35. left: calc(1px - var(--w));
  36. height: 100%;
  37. width: var(--w);
  38. background: url("/Content/Image/ExerciseV2/title_icon.svg") no-repeat;
  39. background-size: 100% 100%;
  40. }
  41. .btn {
  42. margin: 5px auto;
  43. padding: 8px 20px;
  44. background: #03AEBC;
  45. border-radius: 8px;
  46. color: #DAEDFF;
  47. font-size: 16px;
  48. }
  49. .btn.btn-small {
  50. font-size: 14px;
  51. padding: 3px 12px;
  52. border-radius: 4px;
  53. }
  54. .btn:hover {
  55. background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  56. border-color: rgba(0, 0, 0, 0.1);
  57. color: #DAEDFF;
  58. font-weight: 600;
  59. }
  60. .vb-btn {
  61. color: #176bbc;
  62. font-size: 14px;
  63. padding: 5px 10px;
  64. background-image: url("/Content/Image/ExerciseV2/btn.png");
  65. background-repeat: no-repeat;
  66. background-size: 100% 100%;
  67. font-weight: 600;
  68. }
  69. .vb-btn.active {
  70. color: #fff;
  71. background-image: url("/Content/Image/ExerciseV2/btn-active.png");
  72. }
  73. .form .form-control {
  74. background: var(--bgc);
  75. color: var(--tc);
  76. border-radius: 4px;
  77. border: 1px solid #b5cce2;
  78. font-size: 1rem;
  79. }
  80. .form .form-control:active, .form .form-control:focus {
  81. border: 1px solid var(--brc);
  82. }
  83. .select2-container {
  84. --h: 38px;
  85. font-size: 1rem;
  86. }
  87. .select2-container.select2-container--open .select2-selection--single {
  88. border-color: var(--brc);
  89. }
  90. .select2-container .select2-selection--single {
  91. border-radius: 4px !important;
  92. background: var(--bgc);
  93. border: 1px solid #b5cce2;
  94. height: var(--h);
  95. line-height: var(--h);
  96. color: var(--tc);
  97. padding: 0 15px;
  98. }
  99. .select2-container .select2-selection--single .select2-selection__rendered {
  100. color: inherit;
  101. margin: 0;
  102. padding: 0;
  103. line-height: var(--h);
  104. font-size: 1rem;
  105. }
  106. .select2-container .select2-selection--single .select2-selection__arrow {
  107. right: 8px;
  108. height: var(--h);
  109. }
  110. .select2-container .select2-dropdown {
  111. background: #fefefe;
  112. border: 1px solid #b5cce2;
  113. border-radius: 4px;
  114. margin-top: 2px;
  115. }
  116. .select2-container .select2-dropdown .select2-search {
  117. padding: 8px 10px;
  118. }
  119. .select2-container .select2-dropdown .select2-search .select2-search__field {
  120. border: 1px solid var(--brc);
  121. background: var(--bgc);
  122. color: var(--tc);
  123. border-radius: 4px;
  124. }
  125. .select2-container .select2-dropdown .select2-results .select2-results__option {
  126. color: var(--tc);
  127. }
  128. .select2-container .select2-dropdown .select2-results .select2-results__option.select2-results__option--highlighted {
  129. background: #e7edf4;
  130. }
  131. .select2-container .select2-dropdown .select2-results .select2-results__option.select2-results__option[aria-selected=true] {
  132. background: #ecf3fc;
  133. font-weight: 600;
  134. }
  135. body {
  136. /*background: #3c3c3c;*/
  137. /*background: #005f61;*/
  138. /*background-image: linear-gradient(150deg,#005f61,#007f61);*/
  139. font-size: 22px;
  140. color: var(--mc);
  141. width: 100vw;
  142. }
  143. .main-box {
  144. border-left: 0;
  145. box-sizing: padding-box;
  146. padding: 0;
  147. margin: 0;
  148. }
  149. .main-box .main-box-body {
  150. margin: 0 30px 0;
  151. }
  152. .main-box > div {
  153. /* width: calc(100vw - 20px) !important;
  154. height: calc(100% - 20px) !important;*/
  155. display: flex;
  156. flex: 1 auto;
  157. }
  158. .box {
  159. margin: 0 10px;
  160. font-size: 1.25rem;
  161. }
  162. .box > .box {
  163. margin: 0;
  164. width: 100%;
  165. height: 100%;
  166. border: 2px solid #fff;
  167. border-radius: 10px;
  168. }
  169. .box .box-header {
  170. height: 50px;
  171. border-radius: 10px 10px 0 0;
  172. position: relative;
  173. }
  174. .box .box-header .title {
  175. --w: 50px;
  176. font-size: 22px;
  177. }
  178. .box .box-body {
  179. background: linear-gradient(174.54deg, rgba(204, 224, 248, 0.76) 0.23%, rgba(242, 249, 255, 0.76) 120.71%);
  180. overflow-y: auto;
  181. margin: 0;
  182. padding: 10px 10px 0;
  183. height: calc(100% - 50px);
  184. }
  185. .box .scene-box-body {
  186. background: linear-gradient(174.54deg, rgba(204, 224, 248, 0.76) 0.23%, rgba(242, 249, 255, 0.76) 120.71%);
  187. overflow-y: auto;
  188. margin: 0;
  189. padding: 10px 10px 0;
  190. height: calc(100% - 50px);
  191. }
  192. .box .scene-box-body .box-body {
  193. background: none;
  194. margin: 0;
  195. padding: 0;
  196. }
  197. .box .media-box {
  198. width: 98%;
  199. margin: 10px auto 0;
  200. border: 2px solid #4585CC;
  201. border-radius: 5px;
  202. background: var(--bg);
  203. }
  204. .box .media-box .body-content {
  205. display: flex;
  206. justify-content: center;
  207. align-items: center;
  208. width: 100%;
  209. height: 100%;
  210. /*max-width: 100%;
  211. max-height: 100%;*/
  212. overflow: hidden;
  213. }
  214. .box .media-box .body-content span {
  215. color: #4585CC;
  216. font-size: 30px;
  217. font-weight: 600;
  218. display: block;
  219. }
  220. .box .media-box .body-content img, .box .media-box .body-content video {
  221. width: auto;
  222. height: 100%;
  223. padding: 0;
  224. overflow: hidden;
  225. }
  226. .box .scene-box {
  227. width: 100%;
  228. margin: 8px 0;
  229. display: flex;
  230. flex-direction: column;
  231. }
  232. .box .scene-box .title {
  233. width: 100%;
  234. color: #fff;
  235. background: none;
  236. position: relative;
  237. height: 35px;
  238. border-bottom: 2px solid #4585CC;
  239. }
  240. .box .scene-box .title span.text {
  241. display: inline-block;
  242. padding: 0px 20px;
  243. line-height: 35px;
  244. text-align: center;
  245. min-width: 250px;
  246. max-width: 300px;
  247. background: #4585CC;
  248. position: relative;
  249. overflow: hidden;
  250. white-space: nowrap;
  251. text-overflow: ellipsis;
  252. font-weight: 600;
  253. }
  254. .box .scene-box .title span.text:after {
  255. position: absolute;
  256. content: "";
  257. right: -1px;
  258. height: 0;
  259. width: 0;
  260. border-left: 10px solid #4585CC;
  261. border-bottom: 18px solid #4585CC;
  262. border-right: 10px solid none;
  263. border-top: 18px solid none;
  264. }
  265. .box .scene-box .title .attach-box, .box .scene-box .title .tool {
  266. position: absolute;
  267. font-size: 0.875rem;
  268. right: 40px;
  269. top: 5px;
  270. }
  271. .box .scene-box .title .tool {
  272. right: 10px;
  273. top: 10px;
  274. color: #4585CC;
  275. opacity: 1;
  276. }
  277. .box .scene-box .title .attach1 {
  278. color: #fff;
  279. background: #4585CC;
  280. margin: 0 5px;
  281. padding: 3px 8px;
  282. }
  283. .box .scene-box .guide-box {
  284. margin: 10px 0;
  285. padding: 10px;
  286. background: var(--bg);
  287. border-radius: 5px;
  288. }
  289. .box .scene-box .guide-box p {
  290. margin: 0;
  291. font-size: 13px;
  292. }
  293. .box .scene-box .guide-box .guide-title {
  294. font-weight: 600;
  295. }
  296. .box .scene-box .desc {
  297. padding: 8px;
  298. color: #36536D;
  299. background: var(--bg);
  300. white-space: normal;
  301. word-break: break-word;
  302. min-height: 40px;
  303. font-size: 16px;
  304. }
  305. .box .scene-box.handled {
  306. /* --bc: #e5e5e5;
  307. --bc2: #108F85;*/
  308. }
  309. .box .scene-box.handled .title {
  310. background: var(--bc);
  311. }
  312. .box .scene-box.handled .title span.text {
  313. font-size: 90%;
  314. font-weight: 400;
  315. background: #4585CC;
  316. }
  317. .box .scene-box.handled .title span.text:after {
  318. border-left-color: #4585CC;
  319. border-bottom-color: #4585CC;
  320. border-right-color: none;
  321. border-top-color: none;
  322. }
  323. .box .scene-box.current-scene {
  324. border: 2px solid #4585CC;
  325. }
  326. .box .scene-box.flash-scene {
  327. animation: flash 2s 10;
  328. }
  329. .box .log-box {
  330. font-size: 18px;
  331. width: calc(100% - 20px);
  332. margin: 8px auto;
  333. display: flex;
  334. align-items: center;
  335. justify-content: left;
  336. color: #415B73;
  337. background: var(--bg);
  338. min-height: 60px;
  339. padding: 5px 10px;
  340. position: relative;
  341. /*&:after {
  342. content: "";
  343. position: absolute;
  344. right: 0;
  345. bottom: 0;
  346. width: 0;
  347. height: 0;
  348. border-left: 15px solid transparent;
  349. border-top: 15px solid transparent;
  350. border-right: 15px solid #d9d9d9;
  351. border-bottom: 15px solid #d9d9d9;
  352. }*/
  353. }
  354. .box .log-box .role {
  355. font-weight: 600;
  356. white-space: normal;
  357. color: #415B73;
  358. width: 180px;
  359. text-align: center;
  360. }
  361. .box .log-box .name {
  362. word-break: break-word;
  363. }
  364. .box .log-box .word {
  365. word-break: break-word;
  366. text-align: left;
  367. width: calc(100% - 200px);
  368. color: var(--tc);
  369. text-indent: 2em;
  370. }
  371. .box .log-box .reviews-box {
  372. position: absolute;
  373. right: 20px;
  374. bottom: 5px;
  375. color: var(--mc);
  376. cursor: pointer;
  377. }
  378. .box .log-box .reviews-box .disabled {
  379. cursor: not-allowed;
  380. }
  381. .box .log-box .reviews-box i {
  382. font-size: 15px;
  383. margin: 0 5px;
  384. }
  385. .box .log-box .reviews-box .fas:nth-child(1) {
  386. color: #007bff;
  387. }
  388. .box .log-box .reviews-box .fas:nth-child(2) {
  389. color: #dc3545;
  390. }
  391. .box .log-box:before {
  392. content: "";
  393. position: absolute;
  394. left: 0;
  395. top: 0;
  396. width: 0;
  397. height: 0;
  398. border-left: 15px solid transparent;
  399. border-top: 15px solid transparent;
  400. border-right: 15px solid transparent;
  401. border-bottom: 15px solid transparent;
  402. }
  403. .box .log-box.send {
  404. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2), transparent);
  405. /*&:after {
  406. border-right: 15px solid var(--mc);
  407. border-bottom: 15px solid var(--mc);
  408. }*/
  409. }
  410. .box .log-box.send.specialist {
  411. padding: 5px 10px 25px;
  412. min-height: 90px;
  413. }
  414. .box .log-box.send:before {
  415. border-left: 15px solid var(--mc);
  416. border-top: 15px solid var(--mc);
  417. }
  418. .box .log-box.send .role {
  419. color: #03AEBC;
  420. }
  421. .box .role-box {
  422. display: flex;
  423. flex-wrap: wrap;
  424. justify-content: center;
  425. }
  426. .box .role-box .role {
  427. width: calc(50% - 20px);
  428. height: 50px;
  429. margin: 6px;
  430. padding: 0 5px;
  431. font-size: 14px;
  432. display: flex;
  433. justify-content: center;
  434. align-items: center;
  435. text-align: center;
  436. white-space: normal;
  437. word-break: break-all;
  438. color: var(--tc);
  439. border: 1px solid var(--brc);
  440. background: var(--bg);
  441. border-radius: 5px;
  442. cursor: pointer;
  443. overflow: hidden;
  444. }
  445. .box .score-box {
  446. font-size: 14px;
  447. margin: 5px;
  448. padding: 8px 15px;
  449. display: flex;
  450. justify-content: space-between;
  451. border-radius: 5px;
  452. color: #262626;
  453. background: var(--bg);
  454. }
  455. .box .score-box .name {
  456. width: 130px;
  457. line-height: 30px;
  458. border-radius: 5px;
  459. background: #03AEBC;
  460. color: #fff;
  461. text-align: center;
  462. font-size: 100%;
  463. white-space: nowrap;
  464. overflow: hidden;
  465. text-overflow: ellipsis;
  466. }
  467. .box .score-box .score {
  468. font-size: 110%;
  469. font-weight: 600;
  470. color: #094B88;
  471. line-height: 30px;
  472. text-align: center;
  473. }
  474. .box .score-box .score span {
  475. padding-left: 10px;
  476. font-size: 1rem;
  477. font-weight: 400;
  478. }
  479. .box .score-box.system-score .name {
  480. font-size: 16px;
  481. font-weight: 600;
  482. }
  483. .box.plan-box {
  484. margin: 5px 10px;
  485. border: 1px solid #a5d4f4;
  486. border-radius: 5px 5px 0 0;
  487. display: flex;
  488. flex-direction: column;
  489. background: linear-gradient(174.54deg, rgba(204, 224, 248, 0.76) 0.23%, rgba(242, 249, 255, 0.76) 120.71%);
  490. }
  491. .box.plan-box .plan-name {
  492. width: 100%;
  493. background: #a5d4f4;
  494. color: #fff;
  495. padding: 5px 0;
  496. text-align: center;
  497. cursor: pointer;
  498. }
  499. .box.plan-box .plan-role {
  500. width: 100%;
  501. padding: 5px 15px;
  502. display: flex;
  503. flex-wrap: wrap;
  504. justify-content: flex-start;
  505. }
  506. .box.plan-box .plan-role .role {
  507. width: calc(25% - 12px);
  508. height: 50px;
  509. font-size: 14px;
  510. padding: 0 5px;
  511. margin: 6px;
  512. display: flex;
  513. justify-content: center;
  514. align-items: center;
  515. text-align: center;
  516. white-space: normal;
  517. word-break: break-all;
  518. color: var(--tc);
  519. border: 1px solid var(--brc);
  520. background: var(--bg);
  521. border-radius: 5px;
  522. cursor: pointer;
  523. overflow: hidden;
  524. }
  525. .modal .modal-header {
  526. color: var(--tc);
  527. }
  528. .modal .modal-header .close {
  529. font-size: 30px;
  530. }
  531. .modal .modal-footer {
  532. margin: 0 auto;
  533. }
  534. .modal .modal-footer .btn-outline-iwb {
  535. background: #F5F5F5;
  536. color: #36536D;
  537. border: 1px solid #F3F3F3;
  538. }
  539. .modal .modal-footer .btn-iwb {
  540. margin: 0 15px;
  541. padding: 8px 20px;
  542. background: #03AEBC;
  543. border-color: #03AEBC;
  544. border-radius: 8px;
  545. color: #DAEDFF;
  546. font-size: 16px;
  547. }
  548. .load-box {
  549. position: fixed;
  550. top: 0;
  551. bottom: 0;
  552. left: 0;
  553. right: 0;
  554. display: flex;
  555. justify-content: center;
  556. align-items: center;
  557. font-size: 40px;
  558. font-weight: 400;
  559. color: #094B88;
  560. z-index: 1000;
  561. background: rgba(255, 255, 255, 0.6);
  562. }
  563. .load-box .loading {
  564. margin-top: -10%;
  565. }
  566. .load-box .loading:after {
  567. overflow: hidden;
  568. display: inline-block;
  569. vertical-align: bottom;
  570. animation: ellipsis 2s infinite;
  571. content: "…";
  572. }
  573. .question {
  574. display: none;
  575. }
  576. .question button {
  577. --w: 80px;
  578. width: var(--w);
  579. height: var(--w);
  580. border-radius: var(--w);
  581. position: absolute;
  582. left: 50%;
  583. top: 40%;
  584. transform: translateX(-50%) translateY(-50%);
  585. z-index: 5;
  586. background-color: #dc3545;
  587. color: #fff;
  588. border: none;
  589. outline: none;
  590. }
  591. .question button:hover {
  592. background-color: #bd2130;
  593. }
  594. .question button i {
  595. font-size: 40px;
  596. }
  597. .question button:not(:hover) {
  598. animation: 1s shine ease-in-out infinite;
  599. }
  600. .question button:not(:hover) i {
  601. animation: 1s flashing ease-in-out infinite;
  602. }
  603. @keyframes shine {
  604. 0% {
  605. filter: drop-shadow(0 0 12px #dc3545);
  606. }
  607. 50% {
  608. filter: drop-shadow(0 0 12px #bd2130);
  609. }
  610. 100% {
  611. filter: drop-shadow(0 0 12px #dc3545);
  612. }
  613. }
  614. @keyframes flashing {
  615. 0% {
  616. opacity: 1;
  617. transform: scale(1);
  618. }
  619. 50% {
  620. opacity: 0.5;
  621. transform: scale(0.9);
  622. }
  623. 100% {
  624. opacity: 1;
  625. transform: scale(1);
  626. }
  627. }
  628. @keyframes shine {
  629. 0% {
  630. filter: drop-shadow(0 0 5px #c82333);
  631. }
  632. 100% {
  633. filter: drop-shadow(0 0 15px #c82333);
  634. }
  635. }
  636. @keyframes flash {
  637. 0% {
  638. transform: scale(1, 1.05);
  639. }
  640. 50% {
  641. transform: scale(0.98, 0.85);
  642. }
  643. 100% {
  644. transform: scale(1, 1.05);
  645. }
  646. }