screen.scss 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  1. @import "./_stu-body";
  2. @import "./_stu-box_header";
  3. @import "./_stu-form";
  4. body {
  5. /*background: #3c3c3c;*/
  6. /*background: #005f61;*/
  7. /*background-image: linear-gradient(150deg,#005f61,#007f61);*/
  8. font-size: 22px;
  9. color: var(--mc);
  10. width: 100vw;
  11. }
  12. .main-box {
  13. border-left: 0;
  14. box-sizing: padding-box;
  15. padding: 0;
  16. margin:0;
  17. .main-box-body {
  18. margin: 0 30px 0;
  19. }
  20. > div {
  21. /* width: calc(100vw - 20px) !important;
  22. height: calc(100% - 20px) !important;*/
  23. display: flex;
  24. flex: 1 auto;
  25. }
  26. }
  27. .box {
  28. margin: 0 10px;
  29. font-size: 1.25rem;
  30. > .box {
  31. margin: 0;
  32. width: 100%;
  33. height: 100%;
  34. border: 2px solid #fff;
  35. border-radius: 10px;
  36. }
  37. .box-header {
  38. height: 50px;
  39. border-radius: 10px 10px 0 0;
  40. position: relative;
  41. .title {
  42. --w: 50px;
  43. font-size: 22px;
  44. }
  45. }
  46. .box-body {
  47. background: linear-gradient(174.54deg, rgba(204, 224, 248, 0.76) 0.23%, rgba(242, 249, 255, 0.76) 120.71%);
  48. overflow-y: auto;
  49. margin: 0;
  50. padding: 10px 10px 0;
  51. height: calc(100% - 50px);
  52. }
  53. .scene-box-body {
  54. background: linear-gradient(174.54deg, rgba(204, 224, 248, 0.76) 0.23%, rgba(242, 249, 255, 0.76) 120.71%);
  55. overflow-y: auto;
  56. margin: 0;
  57. padding: 10px 10px 0;
  58. height: calc(100% - 50px);
  59. .box-body {
  60. background: none;
  61. margin: 0;
  62. padding: 0;
  63. }
  64. }
  65. .media-box {
  66. width: 98%;
  67. margin: 10px auto 0;
  68. border: 2px solid #4585CC;
  69. border-radius: 5px;
  70. background: var(--bg);
  71. .body-content {
  72. display: flex;
  73. justify-content: center;
  74. align-items: center;
  75. width: 100%;
  76. height: 100%;
  77. /*max-width: 100%;
  78. max-height: 100%;*/
  79. overflow: hidden;
  80. span {
  81. color: #4585CC;
  82. font-size: 30px;
  83. font-weight: 600;
  84. display: block;
  85. }
  86. img, video {
  87. width: auto;
  88. height: 100%;
  89. padding: 0;
  90. overflow: hidden;
  91. }
  92. }
  93. }
  94. .scene-box {
  95. width: 100%;
  96. margin: 8px 0;
  97. display: flex;
  98. flex-direction: column;
  99. .title {
  100. width: 100%;
  101. color: #fff;
  102. background: none;
  103. position: relative;
  104. height: 35px;
  105. border-bottom: 2px solid #4585CC;
  106. span.text {
  107. display: inline-block;
  108. padding: 0px 20px;
  109. line-height: 35px;
  110. text-align: center;
  111. min-width: 250px;
  112. max-width: 300px;
  113. background: #4585CC;
  114. position: relative;
  115. overflow: hidden;
  116. white-space: nowrap;
  117. text-overflow: ellipsis;
  118. font-weight: 600;
  119. &:after {
  120. position: absolute;
  121. content: "";
  122. right: -1px;
  123. height: 0;
  124. width: 0;
  125. border-left: 10px solid #4585CC;
  126. border-bottom: 18px solid #4585CC;
  127. border-right: 10px solid none;
  128. border-top: 18px solid none;
  129. }
  130. }
  131. .attach-box, .tool {
  132. position: absolute;
  133. font-size: 0.875rem;
  134. right: 40px;
  135. top: 5px;
  136. }
  137. .tool {
  138. right: 10px;
  139. top: 10px;
  140. color: #4585CC;
  141. opacity: 1;
  142. }
  143. .attach1 {
  144. color: #fff;
  145. background: #4585CC;
  146. margin: 0 5px;
  147. padding: 3px 8px;
  148. }
  149. }
  150. .desc {
  151. padding: 8px;
  152. color: #36536D;
  153. background: var(--bg);
  154. white-space: normal;
  155. word-break: break-word;
  156. min-height: 40px;
  157. font-size: 16px;
  158. }
  159. &.handled {
  160. //--bc: rgba(0,0,0,.1);
  161. /* --bc: #e5e5e5;
  162. --bc2: #108F85;*/
  163. .title {
  164. background: var(--bc);
  165. span.text {
  166. font-size: 90%;
  167. font-weight: 400;
  168. background: #4585CC;
  169. &:after {
  170. //background-image: linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1));
  171. border-left-color: #4585CC;
  172. border-bottom-color: #4585CC;
  173. border-right-color: none;
  174. border-top-color: none;
  175. }
  176. }
  177. }
  178. }
  179. &.current-scene {
  180. border: 2px solid #4585CC;
  181. }
  182. &.flash-scene {
  183. animation: flash 2s 10;
  184. }
  185. }
  186. .log-box {
  187. font-size: 18px;
  188. width: calc(100% - 20px);
  189. margin: 8px auto;
  190. display: flex;
  191. align-items: center;
  192. justify-content: left;
  193. color: #415B73;
  194. background: var(--bg);
  195. min-height: 60px;
  196. padding: 5px 10px;
  197. position: relative;
  198. .role {
  199. font-weight: 600;
  200. white-space: normal;
  201. color: #415B73;
  202. width: 180px;
  203. text-align: center;
  204. }
  205. .name {
  206. word-break: break-word;
  207. }
  208. .word {
  209. word-break: break-word;
  210. text-align: left;
  211. width: calc(100% - 200px);
  212. color: var(--tc);
  213. text-indent: 2em;
  214. }
  215. .reviews-box {
  216. position: absolute;
  217. right: 20px;
  218. bottom: 5px;
  219. color: var(--mc);
  220. cursor: pointer;
  221. .disabled {
  222. cursor: not-allowed;
  223. }
  224. i {
  225. font-size: 15px;
  226. margin: 0 5px;
  227. }
  228. .fas:nth-child(1) {
  229. color: #007bff;
  230. }
  231. .fas:nth-child(2) {
  232. color: #dc3545;
  233. }
  234. }
  235. &:before {
  236. content: "";
  237. position: absolute;
  238. left: 0;
  239. top: 0;
  240. width: 0;
  241. height: 0;
  242. border-left: 15px solid transparent;
  243. border-top: 15px solid transparent;
  244. border-right: 15px solid transparent;
  245. border-bottom: 15px solid transparent;
  246. }
  247. /*&:after {
  248. content: "";
  249. position: absolute;
  250. right: 0;
  251. bottom: 0;
  252. width: 0;
  253. height: 0;
  254. border-left: 15px solid transparent;
  255. border-top: 15px solid transparent;
  256. border-right: 15px solid #d9d9d9;
  257. border-bottom: 15px solid #d9d9d9;
  258. }*/
  259. &.send {
  260. background-image: linear-gradient(-45deg, rgba(255,255,255,.2), transparent);
  261. &.specialist {
  262. padding: 5px 10px 25px;
  263. min-height: 90px;
  264. }
  265. &:before {
  266. border-left: 15px solid var(--mc);
  267. border-top: 15px solid var(--mc);
  268. }
  269. .role {
  270. color: #03AEBC;
  271. }
  272. /*&:after {
  273. border-right: 15px solid var(--mc);
  274. border-bottom: 15px solid var(--mc);
  275. }*/
  276. }
  277. }
  278. .role-box {
  279. display: flex;
  280. flex-wrap: wrap;
  281. justify-content: center;
  282. .role {
  283. width: calc(50% - 20px);
  284. height: 50px;
  285. margin: 6px;
  286. padding: 0 5px;
  287. font-size: 14px;
  288. display: flex;
  289. justify-content: center;
  290. align-items: center;
  291. text-align: center;
  292. white-space: normal;
  293. word-break: break-all;
  294. color: var(--tc);
  295. border: 1px solid var(--brc);
  296. background: var(--bg);
  297. border-radius: 5px;
  298. cursor: pointer;
  299. overflow: hidden;
  300. }
  301. }
  302. .score-box {
  303. font-size: 14px;
  304. margin: 5px;
  305. padding: 8px 15px;
  306. display: flex;
  307. justify-content: space-between;
  308. border-radius: 5px;
  309. color: #262626;
  310. background: var(--bg);
  311. .name {
  312. width: 130px;
  313. line-height: 30px;
  314. border-radius: 5px;
  315. background: #03AEBC;
  316. color: #fff;
  317. text-align: center;
  318. font-size: 100%;
  319. white-space: nowrap;
  320. overflow: hidden;
  321. text-overflow: ellipsis;
  322. }
  323. .score {
  324. font-size: 110%;
  325. font-weight: 600;
  326. color: #094B88;
  327. line-height: 30px;
  328. text-align: center;
  329. span {
  330. padding-left: 10px;
  331. font-size: 1rem;
  332. font-weight: 400;
  333. }
  334. }
  335. &.system-score {
  336. .name {
  337. font-size: 16px;
  338. font-weight: 600;
  339. }
  340. }
  341. }
  342. &.plan-box {
  343. margin: 5px 10px;
  344. border: 1px solid #a5d4f4;
  345. border-radius: 5px 5px 0 0;
  346. display: flex;
  347. flex-direction: column;
  348. background: linear-gradient(174.54deg, rgba(204, 224, 248, 0.76) 0.23%, rgba(242, 249, 255, 0.76) 120.71%);
  349. .plan-name {
  350. width: 100%;
  351. background: #a5d4f4;
  352. color: #fff;
  353. padding: 5px 0;
  354. text-align: center;
  355. cursor: pointer;
  356. }
  357. .plan-role {
  358. width: 100%;
  359. padding: 5px 15px;
  360. display: flex;
  361. flex-wrap: wrap;
  362. justify-content: flex-start;
  363. .role {
  364. width: calc(25% - 12px);
  365. height: 50px;
  366. font-size: 14px;
  367. padding: 0 5px;
  368. margin: 6px;
  369. display: flex;
  370. justify-content: center;
  371. align-items: center;
  372. text-align: center;
  373. white-space: normal;
  374. word-break: break-all;
  375. color: var(--tc);
  376. border: 1px solid var(--brc);
  377. background: var(--bg);
  378. border-radius: 5px;
  379. cursor: pointer;
  380. overflow: hidden;
  381. }
  382. }
  383. }
  384. }
  385. .modal {
  386. .modal-header {
  387. color: var(--tc);
  388. .modal-title-span {
  389. }
  390. .close {
  391. font-size: 30px;
  392. }
  393. }
  394. .modal-footer {
  395. margin: 0 auto;
  396. .btn-outline-iwb {
  397. background: #F5F5F5;
  398. color: #36536D;
  399. border: 1px solid #F3F3F3;
  400. }
  401. .btn-iwb {
  402. margin: 0 15px;
  403. padding: 8px 20px;
  404. background: #03AEBC;
  405. border-color: #03AEBC;
  406. border-radius: 8px;
  407. color: #DAEDFF;
  408. font-size: 16px;
  409. }
  410. }
  411. }
  412. .load-box {
  413. position: fixed;
  414. top: 0;
  415. bottom: 0;
  416. left: 0;
  417. right: 0;
  418. display: flex;
  419. justify-content: center;
  420. align-items: center;
  421. font-size: 40px;
  422. font-weight: 400;
  423. color: #094B88;
  424. z-index: 1000;
  425. background: rgba(255,255,255,0.6);
  426. .loading {
  427. margin-top: -10%;
  428. }
  429. .loading:after {
  430. overflow: hidden;
  431. display: inline-block;
  432. vertical-align: bottom;
  433. animation: ellipsis 2s infinite;
  434. content: "\2026";
  435. }
  436. }
  437. .question {
  438. display: none;
  439. button {
  440. --w: 80px;
  441. width: var(--w);
  442. height: var(--w);
  443. border-radius: var(--w);
  444. position: absolute;
  445. left: 50%;
  446. top: 40%;
  447. transform: translateX(-50%) translateY(-50%);
  448. z-index: 5;
  449. background-color: #dc3545;
  450. color: #fff;
  451. border: none;
  452. outline: none;
  453. &:hover {
  454. background-color: #bd2130;
  455. }
  456. i {
  457. font-size: 40px;
  458. }
  459. &:not(:hover) {
  460. animation: 1s shine ease-in-out infinite;
  461. i {
  462. animation: 1s flashing ease-in-out infinite;
  463. }
  464. }
  465. }
  466. }
  467. @keyframes shine {
  468. 0% {
  469. filter: drop-shadow(0 0 12px #dc3545);
  470. }
  471. 50% {
  472. filter: drop-shadow(0 0 12px #bd2130);
  473. }
  474. 100% {
  475. filter: drop-shadow(0 0 12px #dc3545);
  476. }
  477. }
  478. @keyframes flashing {
  479. 0% {
  480. opacity: 1;
  481. transform: scale(1)
  482. }
  483. 50% {
  484. opacity: 0.5;
  485. transform: scale(0.9)
  486. }
  487. 100% {
  488. opacity: 1;
  489. transform: scale(1)
  490. }
  491. }
  492. @keyframes shine {
  493. 0% {
  494. filter: drop-shadow(0 0 5px #c82333);
  495. }
  496. 100% {
  497. filter: drop-shadow(0 0 15px #c82333);
  498. }
  499. }
  500. @keyframes flash {
  501. 0% {
  502. transform: scale(1.0,1.05);
  503. //background-image: linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))
  504. }
  505. 50% {
  506. transform: scale(0.98,0.85);
  507. //background-image: linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5))
  508. }
  509. 100% {
  510. transform: scale(1.0,1.05);
  511. //background-image: linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2));
  512. }
  513. }