screen.scss 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  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. .guide-box {
  151. margin:10px 0;
  152. padding: 10px;
  153. background: var(--bg);
  154. border-radius: 5px;
  155. p {
  156. margin: 0;
  157. font-size: 13px;
  158. }
  159. .guide-title {
  160. font-weight: 600;
  161. }
  162. }
  163. .desc {
  164. padding: 8px;
  165. color: #36536D;
  166. background: var(--bg);
  167. white-space: normal;
  168. word-break: break-word;
  169. min-height: 40px;
  170. font-size: 16px;
  171. }
  172. &.handled {
  173. //--bc: rgba(0,0,0,.1);
  174. /* --bc: #e5e5e5;
  175. --bc2: #108F85;*/
  176. .title {
  177. background: var(--bc);
  178. span.text {
  179. font-size: 90%;
  180. font-weight: 400;
  181. background: #4585CC;
  182. &:after {
  183. //background-image: linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1));
  184. border-left-color: #4585CC;
  185. border-bottom-color: #4585CC;
  186. border-right-color: none;
  187. border-top-color: none;
  188. }
  189. }
  190. }
  191. }
  192. &.current-scene {
  193. border: 2px solid #4585CC;
  194. }
  195. &.flash-scene {
  196. animation: flash 2s 10;
  197. }
  198. }
  199. .log-box {
  200. font-size: 18px;
  201. width: calc(100% - 20px);
  202. margin: 8px auto;
  203. display: flex;
  204. align-items: center;
  205. justify-content: left;
  206. color: #415B73;
  207. background: var(--bg);
  208. min-height: 60px;
  209. padding: 5px 10px;
  210. position: relative;
  211. .role {
  212. font-weight: 600;
  213. white-space: normal;
  214. color: #415B73;
  215. width: 180px;
  216. text-align: center;
  217. }
  218. .name {
  219. word-break: break-word;
  220. }
  221. .word {
  222. word-break: break-word;
  223. text-align: left;
  224. width: calc(100% - 200px);
  225. color: var(--tc);
  226. text-indent: 2em;
  227. }
  228. .reviews-box {
  229. position: absolute;
  230. right: 20px;
  231. bottom: 5px;
  232. color: var(--mc);
  233. cursor: pointer;
  234. .disabled {
  235. cursor: not-allowed;
  236. }
  237. i {
  238. font-size: 15px;
  239. margin: 0 5px;
  240. }
  241. .fas:nth-child(1) {
  242. color: #007bff;
  243. }
  244. .fas:nth-child(2) {
  245. color: #dc3545;
  246. }
  247. }
  248. &:before {
  249. content: "";
  250. position: absolute;
  251. left: 0;
  252. top: 0;
  253. width: 0;
  254. height: 0;
  255. border-left: 15px solid transparent;
  256. border-top: 15px solid transparent;
  257. border-right: 15px solid transparent;
  258. border-bottom: 15px solid transparent;
  259. }
  260. /*&:after {
  261. content: "";
  262. position: absolute;
  263. right: 0;
  264. bottom: 0;
  265. width: 0;
  266. height: 0;
  267. border-left: 15px solid transparent;
  268. border-top: 15px solid transparent;
  269. border-right: 15px solid #d9d9d9;
  270. border-bottom: 15px solid #d9d9d9;
  271. }*/
  272. &.send {
  273. background-image: linear-gradient(-45deg, rgba(255,255,255,.2), transparent);
  274. &.specialist {
  275. padding: 5px 10px 25px;
  276. min-height: 90px;
  277. }
  278. &:before {
  279. border-left: 15px solid var(--mc);
  280. border-top: 15px solid var(--mc);
  281. }
  282. .role {
  283. color: #03AEBC;
  284. }
  285. /*&:after {
  286. border-right: 15px solid var(--mc);
  287. border-bottom: 15px solid var(--mc);
  288. }*/
  289. }
  290. }
  291. .role-box {
  292. display: flex;
  293. flex-wrap: wrap;
  294. justify-content: center;
  295. .role {
  296. width: calc(50% - 20px);
  297. height: 50px;
  298. margin: 6px;
  299. padding: 0 5px;
  300. font-size: 14px;
  301. display: flex;
  302. justify-content: center;
  303. align-items: center;
  304. text-align: center;
  305. white-space: normal;
  306. word-break: break-all;
  307. color: var(--tc);
  308. border: 1px solid var(--brc);
  309. background: var(--bg);
  310. border-radius: 5px;
  311. cursor: pointer;
  312. overflow: hidden;
  313. }
  314. }
  315. .score-box {
  316. font-size: 14px;
  317. margin: 5px;
  318. padding: 8px 15px;
  319. display: flex;
  320. justify-content: space-between;
  321. border-radius: 5px;
  322. color: #262626;
  323. background: var(--bg);
  324. .name {
  325. width: 130px;
  326. line-height: 30px;
  327. border-radius: 5px;
  328. background: #03AEBC;
  329. color: #fff;
  330. text-align: center;
  331. font-size: 100%;
  332. white-space: nowrap;
  333. overflow: hidden;
  334. text-overflow: ellipsis;
  335. }
  336. .score {
  337. font-size: 110%;
  338. font-weight: 600;
  339. color: #094B88;
  340. line-height: 30px;
  341. text-align: center;
  342. span {
  343. padding-left: 10px;
  344. font-size: 1rem;
  345. font-weight: 400;
  346. }
  347. }
  348. &.system-score {
  349. .name {
  350. font-size: 16px;
  351. font-weight: 600;
  352. }
  353. }
  354. }
  355. &.plan-box {
  356. margin: 5px 10px;
  357. border: 1px solid #a5d4f4;
  358. border-radius: 5px 5px 0 0;
  359. display: flex;
  360. flex-direction: column;
  361. background: linear-gradient(174.54deg, rgba(204, 224, 248, 0.76) 0.23%, rgba(242, 249, 255, 0.76) 120.71%);
  362. .plan-name {
  363. width: 100%;
  364. background: #a5d4f4;
  365. color: #fff;
  366. padding: 5px 0;
  367. text-align: center;
  368. cursor: pointer;
  369. }
  370. .plan-role {
  371. width: 100%;
  372. padding: 5px 15px;
  373. display: flex;
  374. flex-wrap: wrap;
  375. justify-content: flex-start;
  376. .role {
  377. width: calc(25% - 12px);
  378. height: 50px;
  379. font-size: 14px;
  380. padding: 0 5px;
  381. margin: 6px;
  382. display: flex;
  383. justify-content: center;
  384. align-items: center;
  385. text-align: center;
  386. white-space: normal;
  387. word-break: break-all;
  388. color: var(--tc);
  389. border: 1px solid var(--brc);
  390. background: var(--bg);
  391. border-radius: 5px;
  392. cursor: pointer;
  393. overflow: hidden;
  394. }
  395. }
  396. }
  397. }
  398. .modal {
  399. .modal-header {
  400. color: var(--tc);
  401. .modal-title-span {
  402. }
  403. .close {
  404. font-size: 30px;
  405. }
  406. }
  407. .modal-footer {
  408. margin: 0 auto;
  409. .btn-outline-iwb {
  410. background: #F5F5F5;
  411. color: #36536D;
  412. border: 1px solid #F3F3F3;
  413. }
  414. .btn-iwb {
  415. margin: 0 15px;
  416. padding: 8px 20px;
  417. background: #03AEBC;
  418. border-color: #03AEBC;
  419. border-radius: 8px;
  420. color: #DAEDFF;
  421. font-size: 16px;
  422. }
  423. }
  424. }
  425. .load-box {
  426. position: fixed;
  427. top: 0;
  428. bottom: 0;
  429. left: 0;
  430. right: 0;
  431. display: flex;
  432. justify-content: center;
  433. align-items: center;
  434. font-size: 40px;
  435. font-weight: 400;
  436. color: #094B88;
  437. z-index: 1000;
  438. background: rgba(255,255,255,0.6);
  439. .loading {
  440. margin-top: -10%;
  441. }
  442. .loading:after {
  443. overflow: hidden;
  444. display: inline-block;
  445. vertical-align: bottom;
  446. animation: ellipsis 2s infinite;
  447. content: "\2026";
  448. }
  449. }
  450. .question {
  451. display: none;
  452. button {
  453. --w: 80px;
  454. width: var(--w);
  455. height: var(--w);
  456. border-radius: var(--w);
  457. position: absolute;
  458. left: 50%;
  459. top: 40%;
  460. transform: translateX(-50%) translateY(-50%);
  461. z-index: 5;
  462. background-color: #dc3545;
  463. color: #fff;
  464. border: none;
  465. outline: none;
  466. &:hover {
  467. background-color: #bd2130;
  468. }
  469. i {
  470. font-size: 40px;
  471. }
  472. &:not(:hover) {
  473. animation: 1s shine ease-in-out infinite;
  474. i {
  475. animation: 1s flashing ease-in-out infinite;
  476. }
  477. }
  478. }
  479. }
  480. @keyframes shine {
  481. 0% {
  482. filter: drop-shadow(0 0 12px #dc3545);
  483. }
  484. 50% {
  485. filter: drop-shadow(0 0 12px #bd2130);
  486. }
  487. 100% {
  488. filter: drop-shadow(0 0 12px #dc3545);
  489. }
  490. }
  491. @keyframes flashing {
  492. 0% {
  493. opacity: 1;
  494. transform: scale(1)
  495. }
  496. 50% {
  497. opacity: 0.5;
  498. transform: scale(0.9)
  499. }
  500. 100% {
  501. opacity: 1;
  502. transform: scale(1)
  503. }
  504. }
  505. @keyframes shine {
  506. 0% {
  507. filter: drop-shadow(0 0 5px #c82333);
  508. }
  509. 100% {
  510. filter: drop-shadow(0 0 15px #c82333);
  511. }
  512. }
  513. @keyframes flash {
  514. 0% {
  515. transform: scale(1.0,1.05);
  516. //background-image: linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))
  517. }
  518. 50% {
  519. transform: scale(0.98,0.85);
  520. //background-image: linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5))
  521. }
  522. 100% {
  523. transform: scale(1.0,1.05);
  524. //background-image: linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2));
  525. }
  526. }