screen.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  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 .desc {
  284. padding: 8px;
  285. color: #36536D;
  286. background: var(--bg);
  287. white-space: normal;
  288. word-break: break-word;
  289. min-height: 40px;
  290. font-size: 16px;
  291. }
  292. .box .scene-box.handled {
  293. /* --bc: #e5e5e5;
  294. --bc2: #108F85;*/
  295. }
  296. .box .scene-box.handled .title {
  297. background: var(--bc);
  298. }
  299. .box .scene-box.handled .title span.text {
  300. font-size: 90%;
  301. font-weight: 400;
  302. background: #4585CC;
  303. }
  304. .box .scene-box.handled .title span.text:after {
  305. border-left-color: #4585CC;
  306. border-bottom-color: #4585CC;
  307. border-right-color: none;
  308. border-top-color: none;
  309. }
  310. .box .scene-box.current-scene {
  311. border: 2px solid #4585CC;
  312. }
  313. .box .scene-box.flash-scene {
  314. animation: flash 2s 10;
  315. }
  316. .box .log-box {
  317. font-size: 18px;
  318. width: calc(100% - 20px);
  319. margin: 8px auto;
  320. display: flex;
  321. align-items: center;
  322. justify-content: left;
  323. color: #415B73;
  324. background: var(--bg);
  325. min-height: 60px;
  326. padding: 5px 10px;
  327. position: relative;
  328. /*&:after {
  329. content: "";
  330. position: absolute;
  331. right: 0;
  332. bottom: 0;
  333. width: 0;
  334. height: 0;
  335. border-left: 15px solid transparent;
  336. border-top: 15px solid transparent;
  337. border-right: 15px solid #d9d9d9;
  338. border-bottom: 15px solid #d9d9d9;
  339. }*/
  340. }
  341. .box .log-box .role {
  342. font-weight: 600;
  343. white-space: normal;
  344. color: #415B73;
  345. width: 180px;
  346. text-align: center;
  347. }
  348. .box .log-box .name {
  349. word-break: break-word;
  350. }
  351. .box .log-box .word {
  352. word-break: break-word;
  353. text-align: left;
  354. width: calc(100% - 200px);
  355. color: var(--tc);
  356. text-indent: 2em;
  357. }
  358. .box .log-box .reviews-box {
  359. position: absolute;
  360. right: 20px;
  361. bottom: 5px;
  362. color: var(--mc);
  363. cursor: pointer;
  364. }
  365. .box .log-box .reviews-box .disabled {
  366. cursor: not-allowed;
  367. }
  368. .box .log-box .reviews-box i {
  369. font-size: 15px;
  370. margin: 0 5px;
  371. }
  372. .box .log-box .reviews-box .fas:nth-child(1) {
  373. color: #007bff;
  374. }
  375. .box .log-box .reviews-box .fas:nth-child(2) {
  376. color: #dc3545;
  377. }
  378. .box .log-box:before {
  379. content: "";
  380. position: absolute;
  381. left: 0;
  382. top: 0;
  383. width: 0;
  384. height: 0;
  385. border-left: 15px solid transparent;
  386. border-top: 15px solid transparent;
  387. border-right: 15px solid transparent;
  388. border-bottom: 15px solid transparent;
  389. }
  390. .box .log-box.send {
  391. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2), transparent);
  392. /*&:after {
  393. border-right: 15px solid var(--mc);
  394. border-bottom: 15px solid var(--mc);
  395. }*/
  396. }
  397. .box .log-box.send.specialist {
  398. padding: 5px 10px 25px;
  399. min-height: 90px;
  400. }
  401. .box .log-box.send:before {
  402. border-left: 15px solid var(--mc);
  403. border-top: 15px solid var(--mc);
  404. }
  405. .box .log-box.send .role {
  406. color: #03AEBC;
  407. }
  408. .box .role-box {
  409. display: flex;
  410. flex-wrap: wrap;
  411. justify-content: center;
  412. }
  413. .box .role-box .role {
  414. width: calc(50% - 20px);
  415. height: 50px;
  416. margin: 6px;
  417. padding: 0 5px;
  418. font-size: 14px;
  419. display: flex;
  420. justify-content: center;
  421. align-items: center;
  422. text-align: center;
  423. white-space: normal;
  424. word-break: break-all;
  425. color: var(--tc);
  426. border: 1px solid var(--brc);
  427. background: var(--bg);
  428. border-radius: 5px;
  429. cursor: pointer;
  430. overflow: hidden;
  431. }
  432. .box .score-box {
  433. font-size: 14px;
  434. margin: 5px;
  435. padding: 8px 15px;
  436. display: flex;
  437. justify-content: space-between;
  438. border-radius: 5px;
  439. color: #262626;
  440. background: var(--bg);
  441. }
  442. .box .score-box .name {
  443. width: 130px;
  444. line-height: 30px;
  445. border-radius: 5px;
  446. background: #03AEBC;
  447. color: #fff;
  448. text-align: center;
  449. font-size: 100%;
  450. white-space: nowrap;
  451. overflow: hidden;
  452. text-overflow: ellipsis;
  453. }
  454. .box .score-box .score {
  455. font-size: 110%;
  456. font-weight: 600;
  457. color: #094B88;
  458. line-height: 30px;
  459. text-align: center;
  460. }
  461. .box .score-box .score span {
  462. padding-left: 10px;
  463. font-size: 1rem;
  464. font-weight: 400;
  465. }
  466. .box .score-box.system-score .name {
  467. font-size: 16px;
  468. font-weight: 600;
  469. }
  470. .box.plan-box {
  471. margin: 5px 10px;
  472. border: 1px solid #a5d4f4;
  473. border-radius: 5px 5px 0 0;
  474. display: flex;
  475. flex-direction: column;
  476. background: linear-gradient(174.54deg, rgba(204, 224, 248, 0.76) 0.23%, rgba(242, 249, 255, 0.76) 120.71%);
  477. }
  478. .box.plan-box .plan-name {
  479. width: 100%;
  480. background: #a5d4f4;
  481. color: #fff;
  482. padding: 5px 0;
  483. text-align: center;
  484. cursor: pointer;
  485. }
  486. .box.plan-box .plan-role {
  487. width: 100%;
  488. padding: 5px 15px;
  489. display: flex;
  490. flex-wrap: wrap;
  491. justify-content: flex-start;
  492. }
  493. .box.plan-box .plan-role .role {
  494. width: calc(25% - 12px);
  495. height: 50px;
  496. font-size: 14px;
  497. padding: 0 5px;
  498. margin: 6px;
  499. display: flex;
  500. justify-content: center;
  501. align-items: center;
  502. text-align: center;
  503. white-space: normal;
  504. word-break: break-all;
  505. color: var(--tc);
  506. border: 1px solid var(--brc);
  507. background: var(--bg);
  508. border-radius: 5px;
  509. cursor: pointer;
  510. overflow: hidden;
  511. }
  512. .modal .modal-header {
  513. color: var(--tc);
  514. }
  515. .modal .modal-header .close {
  516. font-size: 30px;
  517. }
  518. .modal .modal-footer {
  519. margin: 0 auto;
  520. }
  521. .modal .modal-footer .btn-outline-iwb {
  522. background: #F5F5F5;
  523. color: #36536D;
  524. border: 1px solid #F3F3F3;
  525. }
  526. .modal .modal-footer .btn-iwb {
  527. margin: 0 15px;
  528. padding: 8px 20px;
  529. background: #03AEBC;
  530. border-color: #03AEBC;
  531. border-radius: 8px;
  532. color: #DAEDFF;
  533. font-size: 16px;
  534. }
  535. .load-box {
  536. position: fixed;
  537. top: 0;
  538. bottom: 0;
  539. left: 0;
  540. right: 0;
  541. display: flex;
  542. justify-content: center;
  543. align-items: center;
  544. font-size: 40px;
  545. font-weight: 400;
  546. color: #094B88;
  547. z-index: 1000;
  548. background: rgba(255, 255, 255, 0.6);
  549. }
  550. .load-box .loading {
  551. margin-top: -10%;
  552. }
  553. .load-box .loading:after {
  554. overflow: hidden;
  555. display: inline-block;
  556. vertical-align: bottom;
  557. animation: ellipsis 2s infinite;
  558. content: "…";
  559. }
  560. .question {
  561. display: none;
  562. }
  563. .question button {
  564. --w: 80px;
  565. width: var(--w);
  566. height: var(--w);
  567. border-radius: var(--w);
  568. position: absolute;
  569. left: 50%;
  570. top: 40%;
  571. transform: translateX(-50%) translateY(-50%);
  572. z-index: 5;
  573. background-color: #dc3545;
  574. color: #fff;
  575. border: none;
  576. outline: none;
  577. }
  578. .question button:hover {
  579. background-color: #bd2130;
  580. }
  581. .question button i {
  582. font-size: 40px;
  583. }
  584. .question button:not(:hover) {
  585. animation: 1s shine ease-in-out infinite;
  586. }
  587. .question button:not(:hover) i {
  588. animation: 1s flashing ease-in-out infinite;
  589. }
  590. @keyframes shine {
  591. 0% {
  592. filter: drop-shadow(0 0 12px #dc3545);
  593. }
  594. 50% {
  595. filter: drop-shadow(0 0 12px #bd2130);
  596. }
  597. 100% {
  598. filter: drop-shadow(0 0 12px #dc3545);
  599. }
  600. }
  601. @keyframes flashing {
  602. 0% {
  603. opacity: 1;
  604. transform: scale(1);
  605. }
  606. 50% {
  607. opacity: 0.5;
  608. transform: scale(0.9);
  609. }
  610. 100% {
  611. opacity: 1;
  612. transform: scale(1);
  613. }
  614. }
  615. @keyframes shine {
  616. 0% {
  617. filter: drop-shadow(0 0 5px #c82333);
  618. }
  619. 100% {
  620. filter: drop-shadow(0 0 15px #c82333);
  621. }
  622. }
  623. @keyframes flash {
  624. 0% {
  625. transform: scale(1, 1.05);
  626. }
  627. 50% {
  628. transform: scale(0.98, 0.85);
  629. }
  630. 100% {
  631. transform: scale(1, 1.05);
  632. }
  633. }