screen.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903
  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. width: calc(100% - 20px);
  331. min-height: 60px;
  332. display: flex;
  333. flex-direction: column;
  334. color: #415B73;
  335. background: var(--bg);
  336. border-radius: 8px;
  337. font-size: 18px;
  338. margin: 8px auto;
  339. padding: 5px 10px;
  340. }
  341. .box .log-box .content {
  342. width: 100%;
  343. display: flex;
  344. flex-direction: column;
  345. padding: 5px;
  346. padding-right: 15px;
  347. }
  348. .box .log-box .content .title {
  349. display: flex;
  350. align-items: flex-start;
  351. }
  352. .box .log-box .content .title .role {
  353. font-weight: 600;
  354. font-size: 16px;
  355. color: #094888;
  356. }
  357. .box .log-box .content .title .scene-name {
  358. margin-left: 10px;
  359. font-size: 12px;
  360. padding: 1px 5px;
  361. border-radius: 3px;
  362. background: rgba(69, 133, 204, 0.1);
  363. border: 1px solid #094888;
  364. color: #094B88;
  365. }
  366. .box .log-box .content .text {
  367. font-size: 14px;
  368. color: #36536D;
  369. padding-left: 15px;
  370. position: relative;
  371. }
  372. .box .log-box .content .text:before {
  373. content: "";
  374. position: absolute;
  375. width: 8px;
  376. height: 8px;
  377. border-radius: 8px;
  378. left: 0;
  379. top: 50%;
  380. transform: translateY(-50%);
  381. background: #999;
  382. }
  383. .box .log-box .reviews-box {
  384. display: flex;
  385. justify-content: flex-end;
  386. color: var(--mc);
  387. cursor: pointer;
  388. }
  389. .box .log-box .reviews-box .disabled {
  390. cursor: not-allowed;
  391. }
  392. .box .log-box .reviews-box i {
  393. font-size: 15px;
  394. margin: 0 5px;
  395. }
  396. .box .log-box .reviews-box .fas:nth-child(1) {
  397. color: #007bff;
  398. }
  399. .box .log-box .reviews-box .fas:nth-child(2) {
  400. color: #dc3545;
  401. }
  402. .box .log-box.send .title .role {
  403. color: #03AEBC;
  404. }
  405. .box .log-box.send .text:before {
  406. background: #03AEBC;
  407. }
  408. .box .log-box.send .btn {
  409. background: #36536D;
  410. color: #fff;
  411. }
  412. .box .role-box {
  413. display: flex;
  414. flex-wrap: wrap;
  415. justify-content: center;
  416. }
  417. .box .role-box .role {
  418. width: calc(50% - 20px);
  419. height: 50px;
  420. margin: 6px;
  421. padding: 0 5px;
  422. font-size: 14px;
  423. display: flex;
  424. justify-content: center;
  425. align-items: center;
  426. text-align: center;
  427. white-space: normal;
  428. word-break: break-all;
  429. color: var(--tc);
  430. border: 1px solid var(--brc);
  431. background: var(--bg);
  432. border-radius: 5px;
  433. cursor: pointer;
  434. overflow: hidden;
  435. }
  436. .box .score-box {
  437. font-size: 14px;
  438. margin: 5px;
  439. padding: 8px 15px;
  440. display: flex;
  441. justify-content: space-between;
  442. border-radius: 5px;
  443. color: #262626;
  444. background: var(--bg);
  445. }
  446. .box .score-box .name {
  447. width: 130px;
  448. line-height: 30px;
  449. border-radius: 5px;
  450. background: #03AEBC;
  451. color: #fff;
  452. text-align: center;
  453. font-size: 100%;
  454. white-space: nowrap;
  455. overflow: hidden;
  456. text-overflow: ellipsis;
  457. }
  458. .box .score-box .score {
  459. font-size: 110%;
  460. font-weight: 600;
  461. color: #094B88;
  462. line-height: 30px;
  463. text-align: center;
  464. }
  465. .box .score-box .score span {
  466. padding-left: 10px;
  467. font-size: 1rem;
  468. font-weight: 400;
  469. }
  470. .box .score-box.system-score .name {
  471. font-size: 16px;
  472. font-weight: 600;
  473. }
  474. .box.plan-box {
  475. margin: 5px 10px;
  476. border: 1px solid #a5d4f4;
  477. border-radius: 5px 5px 0 0;
  478. display: flex;
  479. flex-direction: column;
  480. background: linear-gradient(174.54deg, rgba(204, 224, 248, 0.76) 0.23%, rgba(242, 249, 255, 0.76) 120.71%);
  481. }
  482. .box.plan-box .plan-name {
  483. width: 100%;
  484. background: #a5d4f4;
  485. color: #fff;
  486. padding: 5px 0;
  487. text-align: center;
  488. cursor: pointer;
  489. }
  490. .box.plan-box .plan-role {
  491. width: 100%;
  492. padding: 5px 15px;
  493. display: flex;
  494. flex-wrap: wrap;
  495. justify-content: flex-start;
  496. }
  497. .box.plan-box .plan-role .role {
  498. width: calc(25% - 12px);
  499. height: 50px;
  500. font-size: 14px;
  501. padding: 0 5px;
  502. margin: 6px;
  503. display: flex;
  504. justify-content: center;
  505. align-items: center;
  506. text-align: center;
  507. white-space: normal;
  508. word-break: break-all;
  509. color: var(--tc);
  510. border: 1px solid var(--brc);
  511. background: var(--bg);
  512. border-radius: 5px;
  513. cursor: pointer;
  514. overflow: hidden;
  515. }
  516. .modal .modal-content {
  517. /*background: #d7e7fa;*/
  518. }
  519. .modal .modal-header {
  520. color: var(--tc);
  521. }
  522. .modal .modal-header .close {
  523. font-size: 30px;
  524. }
  525. .modal .modal-footer {
  526. justify-content: center;
  527. }
  528. .modal .modal-footer .btn {
  529. margin: 0;
  530. }
  531. .modal .modal-footer .btn-outline-iwb {
  532. background: #F5F5F5;
  533. color: #36536D;
  534. border: 1px solid #F3F3F3;
  535. }
  536. .modal .modal-footer .btn-iwb {
  537. margin: 0 15px;
  538. padding: 8px 20px;
  539. background: #03AEBC;
  540. border-color: #03AEBC;
  541. border-radius: 8px;
  542. color: #DAEDFF;
  543. font-size: 16px;
  544. }
  545. .load-box {
  546. position: fixed;
  547. top: 0;
  548. bottom: 0;
  549. left: 0;
  550. right: 0;
  551. display: flex;
  552. justify-content: center;
  553. align-items: center;
  554. font-size: 40px;
  555. font-weight: 400;
  556. color: #094B88;
  557. z-index: 1000;
  558. background: rgba(255, 255, 255, 0.6);
  559. }
  560. .load-box .loading {
  561. margin-top: -10%;
  562. }
  563. .load-box .loading:after {
  564. overflow: hidden;
  565. display: inline-block;
  566. vertical-align: bottom;
  567. animation: ellipsis 2s infinite;
  568. content: "…";
  569. }
  570. .question-box button {
  571. --w: 80px;
  572. width: var(--w);
  573. height: var(--w);
  574. border-radius: var(--w);
  575. position: absolute;
  576. right: 300px;
  577. /* left: 50%;
  578. top: 40%;
  579. transform: translateX(-50%) translateY(-50%);*/
  580. z-index: 5;
  581. background-color: #dc3545;
  582. color: #fff;
  583. border: none;
  584. outline: none;
  585. }
  586. .question-box button:hover {
  587. background-color: #bd2130;
  588. }
  589. .question-box button i {
  590. font-size: 40px;
  591. }
  592. .question-box button:not(:hover) {
  593. animation: 1s shine ease-in-out infinite;
  594. }
  595. .question-box button:not(:hover) i {
  596. animation: 1s flashing ease-in-out infinite;
  597. }
  598. .modal .question {
  599. font-size: 18px;
  600. margin-bottom: 10px;
  601. }
  602. .btn-box {
  603. position: absolute;
  604. top: 15px;
  605. left: 50px;
  606. }
  607. .btn-box.btn-box-right {
  608. top: 5px;
  609. left: auto;
  610. right: 40px;
  611. }
  612. .btn-box .btn-question {
  613. display: flex;
  614. flex-direction: column;
  615. justify-content: center;
  616. align-items: center;
  617. position: relative;
  618. }
  619. .btn-box .btn-question .img {
  620. --w: 40px;
  621. width: var(--w);
  622. height: var(--w);
  623. }
  624. .btn-box .btn-question .text {
  625. color: #fff;
  626. font-size: 14px;
  627. }
  628. .btn-box .btn-question .dot {
  629. display: none;
  630. width: 10px;
  631. height: 10px;
  632. border-radius: 10px;
  633. background: red;
  634. position: absolute;
  635. top: 2px;
  636. right: 6px;
  637. animation: 1s flashing ease-in-out infinite;
  638. }
  639. .btn-box .btn-question.notity .dot {
  640. display: block;
  641. }
  642. .stu-question-box {
  643. position: fixed;
  644. top: 0;
  645. left: 0;
  646. z-index: 10;
  647. width: 100vw;
  648. height: 100vh;
  649. background-color: rgba(0, 0, 0, 0.2);
  650. display: flex;
  651. justify-content: center;
  652. align-items: center;
  653. }
  654. .stu-question-box .question-box-body {
  655. position: relative;
  656. z-index: 20;
  657. }
  658. .stu-question-box .question-box-body .close-icon {
  659. --w: 35px;
  660. --t: -70px;
  661. width: var(--w);
  662. height: var(--w);
  663. border-radius: var(--w);
  664. position: absolute;
  665. top: var(--t);
  666. right: var(--t);
  667. background: #5f7790;
  668. color: #fff;
  669. font-size: 14px;
  670. font-weight: 400;
  671. display: flex;
  672. justify-content: center;
  673. align-items: center;
  674. cursor: pointer;
  675. }
  676. .stu-question-box .question-box-body .close-icon :hover {
  677. background: #405b76;
  678. }
  679. .stu-question-box .question-bg-box {
  680. --h: 624px;
  681. width: 888px;
  682. height: var(--h);
  683. z-index: 11;
  684. background-image: url("/Content/Image/ExerciseV2/msg02.png");
  685. }
  686. .stu-question-box .question-bg-box .close-icon {
  687. top: 0;
  688. right: -70px;
  689. }
  690. .stu-question-box .questions-box {
  691. width: 100%;
  692. transform: translate(70px, 90px);
  693. height: calc(var(--h) - 140px);
  694. background: #fff;
  695. background: linear-gradient(106.01deg, #F3E1F1 3.44%, #E7ECF5 16.08%, #F1F3FF 45.1%, #D1D9F7 97.06%);
  696. border-radius: 10px;
  697. padding: 10px 15px;
  698. color: #36536D;
  699. }
  700. .stu-question-box .questions-box .question-header {
  701. width: 100%;
  702. height: 50px;
  703. display: flex;
  704. justify-content: center;
  705. align-items: center;
  706. padding-bottom: 10px;
  707. }
  708. .stu-question-box .questions-box .questions {
  709. display: flex;
  710. flex-direction: column;
  711. height: 250px;
  712. overflow-y: auto;
  713. padding: 5px;
  714. }
  715. .stu-question-box .questions-box .questions .question-item {
  716. display: flex;
  717. flex-direction: column;
  718. }
  719. .stu-question-box .questions-box .questions .question-item .question, .stu-question-box .questions-box .questions .question-item .answers {
  720. padding: 6px 2px 6px 35px;
  721. position: relative;
  722. font-size: 14px;
  723. display: flex;
  724. color: #36536D;
  725. }
  726. .stu-question-box .questions-box .questions .question-item .question:before, .stu-question-box .questions-box .questions .question-item .answers:before {
  727. content: "";
  728. position: absolute;
  729. top: 10px;
  730. left: 2px;
  731. width: 26px;
  732. height: 26px;
  733. }
  734. .stu-question-box .questions-box .questions .question-item .question {
  735. display: flex;
  736. justify-content: space-between;
  737. align-items: center;
  738. width: 100%;
  739. font-weight: 600;
  740. border-bottom: 1px dashed #36536D;
  741. }
  742. .stu-question-box .questions-box .questions .question-item .question .btn {
  743. margin: 0 8px;
  744. white-space: nowrap;
  745. padding: 4px 15px;
  746. border-radius: 3px;
  747. }
  748. .stu-question-box .questions-box .questions .question-item .question:before {
  749. background-image: url("/Content/Image/ExerciseV2/stu-question.png");
  750. }
  751. .stu-question-box .questions-box .questions .question-item .question.has-answer .btn {
  752. background: rgba(204, 224, 248, 0.76);
  753. color: #36536D;
  754. }
  755. .stu-question-box .questions-box .questions .question-item .answers {
  756. flex-direction: column;
  757. margin-bottom: 1px;
  758. }
  759. .stu-question-box .questions-box .questions .question-item .answers .answer {
  760. padding: 4px 0;
  761. }
  762. .stu-question-box .questions-box .questions .question-item .answers .answer.answer-empty {
  763. color: #aaa;
  764. }
  765. .stu-question-box .questions-box .questions .question-item .answers:before {
  766. background-image: url("/Content/Image/ExerciseV2/stu-answer.png");
  767. }
  768. .stu-question-box .questions-box .question-form {
  769. position: relative;
  770. padding-top: 20px;
  771. }
  772. .stu-question-box .questions-box .question-form .question {
  773. display: flex;
  774. font-size: 16px;
  775. font-weight: 600;
  776. padding-bottom: 10px;
  777. }
  778. .stu-question-box .questions-box .question-form .question img {
  779. width: 42px;
  780. height: 42px;
  781. margin-right: 8px;
  782. }
  783. .stu-question-box .questions-box .question-form .question .text {
  784. display: flex;
  785. align-items: center;
  786. }
  787. .stu-question-box .questions-box .question-form textarea {
  788. height: 80px;
  789. padding-right: 110px;
  790. }
  791. .stu-question-box .questions-box .question-form .send-btn {
  792. margin: 0;
  793. position: absolute;
  794. bottom: 20px;
  795. right: 20px;
  796. }
  797. .stu-question-box .questions-box .empty {
  798. width: 100%;
  799. height: 300px;
  800. display: flex;
  801. justify-content: center;
  802. align-items: center;
  803. flex-direction: column;
  804. font-size: 14px;
  805. font-weight: 600;
  806. margin-top: -30px;
  807. }
  808. .stu-question-box .questions-box .empty img {
  809. width: 80px;
  810. height: 84px;
  811. }
  812. .stu-question-box .questions-box .empty .text {
  813. margin-top: 10px;
  814. color: #aaa;
  815. }
  816. .stu-question-box .new {
  817. width: 840px;
  818. height: 464px;
  819. background-image: url("/Content/Image/ExerciseV2/msg01.png");
  820. animation: 1.5s shake ease-in-out infinite;
  821. }
  822. /*@keyframes shine {
  823. 0% {
  824. filter: drop-shadow(0 0 12px #dc3545);
  825. }
  826. 50% {
  827. filter: drop-shadow(0 0 12px #bd2130);
  828. }
  829. 100% {
  830. filter: drop-shadow(0 0 12px #dc3545);
  831. }
  832. }*/
  833. @keyframes flashing {
  834. 0% {
  835. opacity: 1;
  836. transform: scale(1);
  837. }
  838. 50% {
  839. opacity: 0.5;
  840. transform: scale(0.9);
  841. }
  842. 100% {
  843. opacity: 1;
  844. transform: scale(1);
  845. }
  846. }
  847. @keyframes shine {
  848. 0% {
  849. filter: drop-shadow(0 0 5px #c82333);
  850. }
  851. 100% {
  852. filter: drop-shadow(0 0 15px #c82333);
  853. }
  854. }
  855. @keyframes shake {
  856. 0%, 100% {
  857. filter: drop-shadow(0 0 5px #457ddd);
  858. }
  859. 10%, 90% {
  860. transform: translate3d(-1px, 0, 0);
  861. }
  862. 20%, 80% {
  863. transform: translate3d(2px, 0, 0);
  864. }
  865. 30%, 70% {
  866. transform: translate3d(-4px, 0, 0);
  867. }
  868. 40%, 60% {
  869. transform: translate3d(4px, 0, 0);
  870. }
  871. 50% {
  872. filter: drop-shadow(0 0 15px #457ddd);
  873. transform: translate3d(-4px, 0, 0);
  874. }
  875. }
  876. @keyframes flash {
  877. 0% {
  878. transform: scale(1, 1.05);
  879. }
  880. 50% {
  881. transform: scale(0.98, 0.85);
  882. }
  883. 100% {
  884. transform: scale(1, 1.05);
  885. }
  886. }