learning-main.css 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094
  1. @font-face {
  2. font-family: segoeui;
  3. src: url(../fonts/segoeui.ttf);
  4. }
  5. body {
  6. background: #F0F0F0;
  7. padding-top: 0;
  8. height: unset;
  9. min-height: unset;
  10. overflow-y: auto;
  11. padding-right: 0px !important;
  12. }
  13. #voca-wrap {
  14. overflow: unset;
  15. background-color: #f0f0f0;
  16. }
  17. .learning-main-header {
  18. /*background: var(--color-blue-bg);*/ /*linear-gradient(rgba(255, 255, 255, .1) 0% , rgba(255, 255, 255, .1) 100%), linear-gradient(to bottom, #7FD5FF 0% , #00BAF4 100%);*/
  19. background: #F39C12;
  20. background-size: 100% 320px;
  21. background-position: left -25px;
  22. height: var(--height-header);
  23. width: 100%;
  24. position: relative;
  25. left: 0px;
  26. top: 0px;
  27. right: 0px;
  28. z-index: 999;
  29. padding: 0px 15px;
  30. }
  31. .learning-main-header .header-cover {
  32. max-width: var(--max-width);
  33. height: var(--height-header);
  34. margin: auto;
  35. display: flex;
  36. }
  37. .learning-main-header .header-left {
  38. margin: auto auto auto 0px;
  39. }
  40. .learning-main-header .header-right {
  41. margin: auto 0px auto auto;
  42. }
  43. .learning-main-header .header-logo {
  44. position: absolute;
  45. left: 50%;
  46. top: 50%;
  47. transform: translate(-50%, -50%);
  48. }
  49. .learning-main-header .button-back {
  50. font-family: opensanssemibold;
  51. font-size: 13px;
  52. text-decoration: none;
  53. outline: 0px;
  54. color: #fff;
  55. max-width: 200px;
  56. white-space: nowrap;
  57. display: inline-block;
  58. overflow: hidden;
  59. text-overflow: ellipsis;
  60. }
  61. .learning-main-header .button-back::before {
  62. content: "";
  63. display: inline-block;
  64. width: 22px;
  65. height: 20px;
  66. background: url('../imgs//learning-icon-bg.svg') 0px 0px;
  67. vertical-align: middle;
  68. margin-right: 15px;
  69. }
  70. .learning-main-header .header-right {
  71. margin-left: auto;
  72. }
  73. .learning-main-header .header-hamburger {
  74. font-size: 20px;
  75. color: #fff;
  76. margin: auto 15px auto 0px;
  77. }
  78. .learning-main-header .header-logo {
  79. margin: auto 30px auto 0px;
  80. }
  81. .learning-main-header .header-nav {
  82. margin: auto 0px;
  83. }
  84. .learning-main-header .header-nav .nav-link {
  85. display: inline-block;
  86. height: 26px;
  87. line-height: 26px;
  88. padding: 0px;
  89. outline: 0px;
  90. border: 0px;
  91. text-decoration: none;
  92. border-radius: 3px;
  93. margin: 5px 20px;
  94. font-family: opensanssemibold;
  95. font-size: 13px;
  96. color: #fff;
  97. vertical-align: middle;
  98. }
  99. .learning-main-header .header-nav .nav-link.link-ghim {
  100. background: var(--color-green-bg);
  101. padding: 0px 18px 0px 10px;
  102. }
  103. .learning-main-header .header-nav .nav-link.link-ghim::before {
  104. content: "+";
  105. font-family: opensanssemibold;
  106. font-size: 20px;
  107. margin-right: 8px;
  108. vertical-align: top;
  109. line-height: 26px;
  110. }
  111. .learning-main-header .header-me-infor {
  112. margin: auto 15px auto 0px;
  113. text-decoration: none;
  114. outline: 0px;
  115. display: inline-block;
  116. }
  117. .learning-main-header .header-me-infor .me-icon {
  118. display: inline-flex;
  119. width: 40px;
  120. height: 40px;
  121. border-radius: 50%;
  122. background: rgba(0, 0, 0, .15);
  123. vertical-align: middle;
  124. }
  125. .learning-main-header.personal-vip .header-me-infor .me-icon {
  126. background: rgba(0, 0, 0, .05);
  127. }
  128. .learning-main-header .header-me-infor .me-icon::before {
  129. content: "";
  130. display: inline-block;
  131. width: 25px;
  132. height: 24px;
  133. background: url('../imgs//learning-icon-bg.svg') 0px -2715px;
  134. margin: auto auto 7px 7px;
  135. }
  136. .learning-main-header .header-me-infor .me-value {
  137. font-family: opensanssemibold;
  138. font-size: 12px;
  139. color: #fff;
  140. margin-left: 5px;
  141. vertical-align: middle;
  142. }
  143. .learning-main-header .header-notify {
  144. position: relative;
  145. margin: auto 30px auto 0px;
  146. text-decoration: none;
  147. outline: 0px;
  148. display: inline-block;
  149. }
  150. .learning-main-header .header-notify .notify-icon {
  151. display: inline-flex;
  152. width: 40px;
  153. height: 40px;
  154. border-radius: 50%;
  155. background: rgba(0, 0, 0, .15);
  156. vertical-align: middle;
  157. }
  158. .learning-main-header.personal-vip .header-notify .notify-icon {
  159. background: rgba(0, 0, 0, .05);
  160. }
  161. .learning-main-header .header-notify .notify-icon::before {
  162. content: "";
  163. display: inline-block;
  164. width: 25px;
  165. height: 28px;
  166. background: url('../imgs//learning-icon-bg.svg') 0px -2745px;
  167. margin: auto;
  168. }
  169. .learning-main-header .header-notify .notify-value {
  170. font-family: opensansbold;
  171. font-size: 10px;
  172. color: #fff;
  173. display: inline-block;
  174. width: 18px;
  175. height: 18px;
  176. line-height: 18px;
  177. border-radius: 50%;
  178. background: #FBBF00;
  179. position: absolute;
  180. top: 5px;
  181. right: -12px;
  182. text-align: center;
  183. }
  184. .learning-main-header.personal-vip .header-notify .notify-value {
  185. background: #fff;
  186. color: #E43439;
  187. }
  188. .learning-main-header .header-notify .notify-value .value-plus {
  189. font-size: 8px;
  190. vertical-align: top;
  191. line-height: 15px;
  192. }
  193. .learning-main-header .header-avatar {
  194. margin: auto 0px;
  195. padding: 9px 0px;
  196. }
  197. .learning-main-header .header-avatar .dropdown > button > img {
  198. width: 41px;
  199. height: 41px;
  200. border: 1px solid #fff;
  201. border-radius: 50%;
  202. }
  203. .learning-main-header .header-avatar .dropdown > button > .sp-avatar {
  204. width: 41px;
  205. height: 41px;
  206. border: 1px solid #fff;
  207. border-radius: 50%;
  208. display: inline-block;
  209. text-align: center;
  210. color: #fff;
  211. font-size: 18px;
  212. line-height: 38px;
  213. }
  214. .learning-main-header .header-avatar .dropdown > button {
  215. border: 0px;
  216. outline: 0px;
  217. padding: 0px;
  218. margin: 0px;
  219. background: transparent;
  220. }
  221. .learning-main-header .header-avatar .dropdown > button::before {
  222. display: inline-block;
  223. font: normal normal normal 14px/1 FontAwesome;
  224. font-size: 24px;
  225. text-rendering: auto;
  226. -webkit-font-smoothing: antialiased;
  227. -moz-osx-font-smoothing: grayscale;
  228. content: "\f107";
  229. color: #fff;
  230. vertical-align: middle;
  231. transition: all 0.2s linear;
  232. margin-right: 15px;
  233. }
  234. .learning-main-header .header-avatar .dropdown .dropdown-menu {
  235. width: 180px;
  236. box-shadow: 0px 0px 10px 1px #D6D7D8;
  237. border-radius: 5px;
  238. border: 0px;
  239. padding: 15px 0px;
  240. left: auto;
  241. right: 25px;
  242. margin-top: 10px;
  243. }
  244. .learning-main-header .header-avatar:hover .dropdown .dropdown-menu {
  245. display: block;
  246. }
  247. .learning-main-header .header-avatar .dropdown .dropdown-menu::before {
  248. content: "";
  249. width: 12px;
  250. height: 12px;
  251. background: #fff;
  252. display: inline-block;
  253. box-shadow: -2px -2px 5px 0px #D6D7D8;
  254. position: absolute;
  255. top: -6px;
  256. right: 35px;
  257. transform: rotate(45deg);
  258. }
  259. .learning-main-header .header-avatar .dropdown .dropdown-menu > li > a {
  260. font-family: opensansregular;
  261. font-size: 13px;
  262. color: var(--color-header);
  263. display: block;
  264. height: 35px;
  265. line-height: 35px;
  266. padding: 0px 25px;
  267. outline: 0px;
  268. text-decoration: none;
  269. transition: 0.2s all ease;
  270. }
  271. .learning-main-header .header-avatar .dropdown .dropdown-menu > li > a:hover {
  272. background: var(--color-blue-bg);
  273. color: #fff;
  274. }
  275. .learning-main-header .header-button-signup {
  276. font-family: opensansbold;
  277. font-size: 13px;
  278. color: var(--color-blue-text);
  279. background: #fff;
  280. border-radius: 30px;
  281. text-decoration: none;
  282. text-align: center;
  283. outline: 0px;
  284. display: inline-block;
  285. width: 100px;
  286. height: 38px;
  287. line-height: 38px;
  288. margin: auto 0px auto 10px;
  289. }
  290. .learning-main-header .header-button-signin {
  291. font-family: opensansbold;
  292. font-size: 13px;
  293. color: #fff;
  294. border-radius: 30px;
  295. text-decoration: none;
  296. text-align: center;
  297. outline: 0px;
  298. display: inline-block;
  299. width: 100px;
  300. height: 38px;
  301. line-height: 38px;
  302. margin: auto 0px auto 10px;
  303. }
  304. @media (max-width: 900px) {
  305. .learning-main-header .header-notify, .learning-main-header .header-me-infor {
  306. display: none;
  307. }
  308. .learning-main-header .header-button-signup {
  309. display: none;
  310. }
  311. }
  312. @media (max-width: 767px) {
  313. .personal-library-header .header-cover {
  314. display: block;
  315. padding-top: 20px;
  316. }
  317. .personal-library-header .header-right {
  318. text-align: center;
  319. }
  320. .personal-library-header .personal-library-button.button-level {
  321. margin: 15px;
  322. }
  323. .learning-main-header .header-nav {
  324. display: none;
  325. }
  326. .learning-main-header .header-logo {
  327. position: absolute;
  328. left: 50%;
  329. top: 50%;
  330. transform: translate(-50%, -50%);
  331. margin: 0px;
  332. }
  333. }
  334. /* END HEADER */
  335. .hide {
  336. display: none !important;
  337. }
  338. #learning-modal .modal-dialog {
  339. width: 100%;
  340. max-width: 330px;
  341. margin: auto;
  342. margin-top: 70px;
  343. }
  344. #learning-modal .modal-content {
  345. border-radius: 6px;
  346. }
  347. #learning-modal .learning-modal-content {
  348. padding: 25px;
  349. }
  350. #learning-modal .learning-modal-title {
  351. text-align: center;
  352. font-size: 16px;
  353. color: #000000;
  354. margin-bottom: 20px;
  355. }
  356. #learning-modal .learning-modal-btn a {
  357. width: 100%;
  358. display: block;
  359. max-width: 200px;
  360. height: 45px;
  361. background: var(--color-main-red);
  362. color: #fff;
  363. text-align: center;
  364. font-size: 13px;
  365. line-height: 45px;
  366. font-family: opensanssemibold;
  367. margin: 10px auto 10px;
  368. border-radius: 22px;
  369. }
  370. #learning-modal .learning-modal-btn a.learning-modal-btn-learning {
  371. background: var(--color-main-red);
  372. }
  373. #learning-modal .learning-modal-btn a.learning-modal-btn-testing {
  374. background: var(--color-main-orange);
  375. }
  376. #learning-modal .learning-modal-btn a.learning-modal-btn-result {
  377. background: var(--color-main-blue-light);
  378. }
  379. #learning-question-modal .modal-dialog {
  380. width: 100%;
  381. max-width: 330px;
  382. margin-top: 70px;
  383. }
  384. #learning-question-modal .modal-content {
  385. border-radius: 6px;
  386. }
  387. #learning-question-modal .learning-question-modal-content {
  388. padding: 25px;
  389. }
  390. #learning-question-modal .learning-question-modal-title {
  391. text-align: center;
  392. font-size: 16px;
  393. color: #000000;
  394. margin-bottom: 20px;
  395. }
  396. #learning-question-modal .learning-question-modal-btn a {
  397. width: 100%;
  398. display: block;
  399. max-width: 200px;
  400. height: 45px;
  401. background: var(--color-main-red);
  402. color: #fff;
  403. text-align: center;
  404. font-size: 13px;
  405. line-height: 45px;
  406. font-family: opensanssemibold;
  407. margin: 10px auto 10px;
  408. border-radius: 22px;
  409. }
  410. #learning-question-modal .learning-question-modal-btn a.learnin-modal-btn-writing {
  411. background: var(--color-main-red);
  412. }
  413. #learning-question-modal .learning-question-modal-btn a.learning-modal-btn-sentence {
  414. background: var(--color-main-orange);
  415. }
  416. #learning-question-modal .learning-question-modal-btn a.learning-modal-btn-flashcard {
  417. background: var(--color-main-blue-light);
  418. }
  419. #learning-question-modal .learning-question-modal-btn a.learning-modal-btn-flashcard-dark {
  420. background: #006dd6;
  421. }
  422. #learning-question-modal .learning-question-modal-btn a.learning-modal-btn-pronounciation {
  423. background: var(--color-main-green);
  424. }
  425. #learning-type-modal .modal-dialog {
  426. width: 100%;
  427. max-width: 330px;
  428. margin-top: 70px;
  429. }
  430. #learning-type-modal .modal-content {
  431. border-radius: 6px;
  432. }
  433. #learning-type-modal .learning-type-modal-content {
  434. padding: 25px;
  435. }
  436. #learning-type-modal .learning-type-modal-title {
  437. text-align: center;
  438. font-size: 16px;
  439. color: #000000;
  440. margin-bottom: 20px;
  441. }
  442. #learning-type-modal .learning-type-modal-btn a {
  443. width: 100%;
  444. display: block;
  445. max-width: 200px;
  446. height: 45px;
  447. background: var(--color-main-red);
  448. color: #fff;
  449. text-align: center;
  450. font-size: 13px;
  451. line-height: 45px;
  452. font-family: opensanssemibold;
  453. margin: 10px auto 10px;
  454. border-radius: 22px;
  455. }
  456. #learning-type-modal .learning-type-modal-btn a.learnin-modal-btn-unknow {
  457. background: var(--color-main-red);
  458. }
  459. #learning-type-modal .learning-type-modal-btn a.learning-modal-btn-all {
  460. background: var(--color-main-orange);
  461. }
  462. #learning-type-modal .learning-type-modal-btn a.learning-modal-btn-choosing {
  463. background: var(--color-main-blue-light);
  464. }
  465. .learning-main-body {
  466. position: relative;
  467. }
  468. .learning-show-item {
  469. animation-name: D;
  470. animation-duration: .4s;
  471. animation-fill-mode: forwards;
  472. animation-timing-function: ease-out;
  473. position: relative;
  474. }
  475. .learning-hide-item {
  476. animation-name: E;
  477. animation-duration: .4s;
  478. animation-fill-mode: forwards;
  479. animation-timing-function: ease-out
  480. }
  481. .learning-show-item.prev {
  482. animation-name: DD;
  483. animation-duration: .4s;
  484. animation-fill-mode: forwards;
  485. animation-timing-function: ease-out;
  486. position: relative;
  487. }
  488. .learning-hide-item.prev {
  489. animation-name: EE;
  490. animation-duration: .4s;
  491. animation-fill-mode: forwards;
  492. animation-timing-function: ease-out
  493. }
  494. .modal-button-close {
  495. display: inline-block;
  496. width: 25px;
  497. height: 25px;
  498. background: url('../imgs//learning-icon-bg.svg') 0px -1495px;
  499. border-radius: 50%;
  500. text-decoration: none;
  501. outline: 0px;
  502. padding: 0px;
  503. position: absolute;
  504. right: -9px;
  505. top: -9px;
  506. }
  507. .learning-main-process {
  508. position: fixed;
  509. left: 0px;
  510. top: 60px;
  511. width: 100%;
  512. height: 6px;
  513. background: #CFCFCF;
  514. z-index: 10;
  515. }
  516. .learning-main-process-value {
  517. position: absolute;
  518. left: 0px;
  519. top: 0px;
  520. width: 0%;
  521. height: 100%;
  522. background: linear-gradient(to right, #fdd162 0%, #ffbd78 70%);
  523. transition: 0.4s all ease;
  524. }
  525. .context {
  526. margin-top: 15px;
  527. display: inline-block;
  528. font-size: 13px;
  529. width: 100px;
  530. background: #fff8e8;
  531. height: 30px;
  532. color: #FFB020;
  533. line-height: 30px;
  534. border-radius: 4px;
  535. margin-right: 5px;
  536. }
  537. .context span {
  538. width: 12px;
  539. height: 12px;
  540. display: inline-block;
  541. background: url(../imgs//learning-icon-bg.svg) 0px -3450px;
  542. float: left;
  543. margin-top: 10px;
  544. margin-right: 5px;
  545. margin-left: 15px;
  546. }
  547. .context:hover, .context:focus {
  548. color: #FFB020;
  549. text-decoration: none;
  550. }
  551. @keyframes D {
  552. 0% {
  553. opacity: 0;
  554. -webkit-transform: translateX(50px);
  555. transform: translateX(50px)
  556. }
  557. to {
  558. opacity: 1;
  559. -webkit-transform: translateX(0);
  560. transform: translateX(0)
  561. }
  562. }
  563. @keyframes E {
  564. 0% {
  565. opacity: 1;
  566. -webkit-transform: translateX(0);
  567. transform: translateX(0)
  568. }
  569. to {
  570. opacity: 0;
  571. -webkit-transform: translateX(-50px);
  572. transform: translateX(-50px)
  573. }
  574. }
  575. @keyframes DD {
  576. 0% {
  577. opacity: 0;
  578. -webkit-transform: translateX(-50px);
  579. transform: translateX(-50px)
  580. }
  581. to {
  582. opacity: 1;
  583. -webkit-transform: translateX(0);
  584. transform: translateX(0)
  585. }
  586. }
  587. @keyframes EE {
  588. 0% {
  589. opacity: 1;
  590. -webkit-transform: translateX(0);
  591. transform: translateX(0)
  592. }
  593. to {
  594. opacity: 0;
  595. -webkit-transform: translateX(50px);
  596. transform: translateX(50px)
  597. }
  598. }
  599. @keyframes animateSound {
  600. 0% {
  601. box-shadow: 0px 0px 0px 0px #00b8f1;
  602. }
  603. 100% {
  604. box-shadow: 0px 0px 0px 10px transparent;
  605. }
  606. }
  607. @keyframes animateSoundSmall {
  608. 0% {
  609. box-shadow: 0px 0px 0px 0px #00b8f1;
  610. }
  611. 100% {
  612. box-shadow: 0px 0px 0px 5px transparent;
  613. }
  614. }
  615. #modal-choose-word .modal-dialog {
  616. width: calc(100% - 20px);
  617. max-width: 815px;
  618. }
  619. #modal-choose-word .modal-content {
  620. padding: 40px 30px 20px;
  621. border-radius: 6px;
  622. }
  623. #modal-choose-word form {
  624. margin: 0px;
  625. }
  626. .choose-word-content {
  627. padding-right: 30px;
  628. overflow-y: auto;
  629. max-height: calc(100vh - 240px);
  630. }
  631. .choose-word-content-cover {
  632. display: inline-block;
  633. width: 100%;
  634. background: linear-gradient(to bottom, #E5E5E5 0px, #E5E5E5 1px, transparent 1px, transparent 110px);
  635. background-size: 100% 110px;
  636. background-position: left top;
  637. background-repeat: no-repeat repeat;
  638. }
  639. .choose-word-content::-webkit-scrollbar {
  640. width: 10px;
  641. }
  642. /* Track */
  643. .choose-word-content::-webkit-scrollbar-track {
  644. -webkit-border-radius: 10px;
  645. border-radius: 10px;
  646. background: #E7E7E7;
  647. }
  648. /* Handle */
  649. .choose-word-content::-webkit-scrollbar-thumb {
  650. -webkit-border-radius: 10px;
  651. border-radius: 10px;
  652. background: #CFCFCF;
  653. }
  654. .choose-word-title {
  655. font-family: opensanslight;
  656. font-size: 18px;
  657. color: var(--color-blue-text);
  658. margin-bottom: 15px;
  659. padding-right: 40px;
  660. }
  661. .choose-word-title .number {
  662. display: inline-block;
  663. vertical-align: middle;
  664. height: 20px;
  665. line-height: 20px;
  666. padding: 0px 10px;
  667. border-radius: 20px;
  668. color: #fff;
  669. background: var(--color-blue-bg);
  670. margin-left: 15px;
  671. font-family: opensanssemibold;
  672. font-size: 13px;
  673. }
  674. .choose-word-title .choose-all {
  675. font-family: opensansregular;
  676. font-size: 14px;
  677. float: right;
  678. cursor: pointer;
  679. }
  680. .choose-word-check {
  681. display: inline-block;
  682. width: 25px;
  683. height: 25px;
  684. border-radius: 50%;
  685. border: 1px solid var(--color-gray);
  686. background: transparent;
  687. position: relative;
  688. }
  689. .choose-word-check.word-checked, .choose-word-check-input:checked + .choose-word-check {
  690. animation: animateCheck 0.4s ease-out;
  691. border-width: 0px;
  692. }
  693. .choose-word-title .choose-all .choose-word-check {
  694. vertical-align: -7px;
  695. margin-left: 15px;
  696. border-color: var(--color-blue-bg);
  697. }
  698. .choose-word-check .icon-all {
  699. display: inline-block;
  700. width: 100%;
  701. height: 100%;
  702. position: absolute;
  703. left: 0px;
  704. top: 0px;
  705. border-radius: 50%;
  706. background: var(--color-blue-bg);
  707. opacity: 0;
  708. transition: opacity 0.2s linear;
  709. }
  710. .choose-word-check.word-checked .icon-all, .choose-word-check-input:checked + .choose-word-check .icon-all {
  711. opacity: 1;
  712. transition: opacity 0.1s 0.2s linear;
  713. }
  714. .choose-word-check .icon-all::before {
  715. position: absolute;
  716. left: 50%;
  717. top: 50%;
  718. color: #fff;
  719. transform: translate(-50%, -50%);
  720. content: "\f00c";
  721. display: inline-block;
  722. font: normal normal normal 14px/1 FontAwesome;
  723. font-size: 13px;
  724. text-rendering: auto;
  725. -webkit-font-smoothing: antialiased;
  726. -moz-osx-font-smoothing: grayscale;
  727. }
  728. .choose-word-content .word-item {
  729. width: 50%;
  730. float: left;
  731. height: 110px;
  732. display: flex;
  733. }
  734. .choose-word-content .word-item:nth-of-type(odd) {
  735. padding-right: 25px;
  736. }
  737. .choose-word-content .word-item:nth-of-type(even) {
  738. padding-left: 25px;
  739. }
  740. .choose-word-content .word-item .item-image {
  741. width: 60px;
  742. height: 60px;
  743. border-radius: 50%;
  744. margin: auto 0px;
  745. }
  746. .choose-word-content .word-item .item-name {
  747. font-family: opensansregular;
  748. font-size: 15px;
  749. color: var(--color-default-title);
  750. width: calc(100% - 60px - 25px);
  751. margin: auto;
  752. padding-left: 20px;
  753. }
  754. .choose-word-content .word-item .item-check {
  755. display: inline-block;
  756. margin: auto 0px;
  757. position: relative;
  758. }
  759. .choose-word-content .word-item .item-check::before {
  760. content: "";
  761. display: inline-block;
  762. width: 100%;
  763. height: 100%;
  764. position: absolute;
  765. left: 0px;
  766. top: 0px;
  767. z-index: 2;
  768. cursor: pointer;
  769. }
  770. .choose-word-content .word-item .item-check input[type='checkbox'] {
  771. display: none;
  772. }
  773. .choose-word-button {
  774. display: block;
  775. width: 300px;
  776. height: 45px;
  777. border-radius: 30px;
  778. border: 0px;
  779. outline: 0px;
  780. text-decoration: none;
  781. text-align: center;
  782. background: var(--color-green-bg);
  783. font-family: opensanssemibold;
  784. font-size: 13px;
  785. color: #fff;
  786. margin: 20px auto 0px;
  787. }
  788. @media (max-width: 768px) {
  789. .filter-result-word .result-word-list li {
  790. width: 100%;
  791. }
  792. .filter-result-word .result-word-list li:nth-of-type(odd), .filter-result-word .result-word-list li:nth-of-type(even) {
  793. padding: 0px;
  794. }
  795. .choose-word-content .word-item {
  796. width: 100%;
  797. }
  798. .choose-word-content .word-item:nth-of-type(odd), .choose-word-content .word-item:nth-of-type(even) {
  799. padding: 0px;
  800. }
  801. }
  802. @keyframes animateCheck {
  803. 0% {
  804. border-width: 1px;
  805. }
  806. 50% {
  807. border-width: 12px;
  808. }
  809. 100% {
  810. border-width: 0px;
  811. }
  812. }
  813. @media (min-width: 768px) {
  814. .modal-pin-word-learning.modal-dialog {
  815. width: 720px;
  816. }
  817. }
  818. .modal-pin-word-learning .modal-content {
  819. border-radius: 7px;
  820. background: #F7F7F7;
  821. }
  822. .md-pin-container {
  823. padding: 30px 25px;
  824. width: 50%;
  825. float: left;
  826. }
  827. .md-pin-word-info {
  828. display: flex;
  829. min-height: 460px;
  830. padding: 0px 10px;
  831. }
  832. .md-pin-word-info .info-cover {
  833. width: 100%;
  834. margin: auto;
  835. }
  836. .md-pin-image {
  837. position: relative;
  838. text-align: center;
  839. margin-bottom: 25px;
  840. }
  841. .md-pin-image img {
  842. width: 148px;
  843. height: 148px;
  844. border: 3px solid #fff;
  845. box-shadow: 0px 0px 10px 1px #E6E7E8;
  846. }
  847. .md-pin-word-main {
  848. font-family: opensanssemibold;
  849. font-size: 16px;
  850. line-height: 20px;
  851. color: var(--color-blue-text);
  852. text-align: center;
  853. margin-bottom: 10px;
  854. }
  855. .md-pin-word-type {
  856. font-family: opensanslight;
  857. font-size: 16px;
  858. color: #5D5D5D;
  859. text-align: center;
  860. margin-bottom: 10px;
  861. }
  862. .md-pin-word-definition {
  863. font-family: opensanslight;
  864. font-size: 15px;
  865. color: var(--color-text-default);
  866. line-height: 22px;
  867. text-align: center;
  868. margin: 0px;
  869. }
  870. .md-pin-product-title {
  871. font-family: opensanslight;
  872. font-size: 25px;
  873. color: var(--color-blue-text);
  874. margin-bottom: 0px;
  875. }
  876. .md-pin-product-content {
  877. min-height: 377px;
  878. padding-top: 15px;
  879. padding-bottom: 15px;
  880. }
  881. .md-pin-container .md-pin-product-button {
  882. font-family: opensanssemibold;
  883. font-size: 15px;
  884. color: #5D5D5D;
  885. background: #DDDDDD;
  886. display: block;
  887. margin: auto;
  888. width: 195px;
  889. height: 48px;
  890. line-height: 48px;
  891. text-align: center;
  892. border-radius: 30px;
  893. outline: 0px;
  894. text-decoration: none;
  895. }
  896. .md-pin-container .md-pin-product-button.button-active {
  897. color: #fff;
  898. background: var(--color-blue-bg);
  899. }
  900. .md-pin-product-image {
  901. display: block;
  902. margin: 50px auto 30px;
  903. width: 121px;
  904. height: 139px;
  905. background: url("~/Content/assets/imgs/learning-icon-bg.svg") 0px -2845px;
  906. }
  907. .md-pin-product-text {
  908. font-family: opensanslight;
  909. font-size: 15px;
  910. color: #ABABAB;
  911. line-height: 22px;
  912. text-align: center;
  913. max-width: 280px;
  914. margin: auto;
  915. }
  916. .md-pin-product-label {
  917. display: block;
  918. font-family: opensanssemibold;
  919. font-size: 15px;
  920. line-height: 22px;
  921. margin-bottom: 0px;
  922. margin-top: 5px;
  923. color: var(--color-default-title);
  924. }
  925. .md-pin-product-note {
  926. font-family: opensansregular;
  927. font-size: 13px;
  928. line-height: 22px;
  929. color: #ABABAB;
  930. margin: 0px;
  931. }
  932. .md-pin-product-input {
  933. width: 100%;
  934. height: 45px;
  935. position: relative;
  936. margin-top: 20px;
  937. margin-bottom: 30px;
  938. }
  939. .md-pin-product-input .input-main {
  940. width: 100%;
  941. height: 100%;
  942. border: 0px;
  943. box-shadow: 0px 0px 0px 2px #E3E4E5;
  944. background: #fff;
  945. border-radius: 4px;
  946. padding: 0px 15px;
  947. font-family: opensansregular;
  948. font-size: 15px;
  949. color: var(--color-default-text);
  950. outline: 0px;
  951. transition: 0.2s all linear;
  952. -webkit-appearance: none;
  953. -moz-appearance: none;
  954. }
  955. .md-pin-product-input .input-main:focus {
  956. box-shadow: 0px 0px 0px 1px var(--color-blue-bg);
  957. }
  958. .md-pin-product-input input.input-main::placeholder {
  959. font-size: 14px;
  960. color: var(--color-gray);
  961. }
  962. .md-pin-product-input .input-arrow {
  963. font-size: 25px;
  964. color: var(--color-blue-text);
  965. position: absolute;
  966. top: 50%;
  967. right: 15px;
  968. transform: translate(0px, -50%);
  969. }
  970. .md-pin-product-list {
  971. max-height: 260px;
  972. overflow-y: auto;
  973. overflow-x: hidden;
  974. padding-right: 15px;
  975. }
  976. .md-pin-product-list::-webkit-scrollbar {
  977. width: 10px;
  978. height: 10px;
  979. }
  980. /* Track */
  981. .md-pin-product-list::-webkit-scrollbar-track {
  982. -webkit-border-radius: 10px;
  983. border-radius: 10px;
  984. background: #E7E7E7;
  985. }
  986. /* Handle */
  987. .md-pin-product-list::-webkit-scrollbar-thumb {
  988. -webkit-border-radius: 10px;
  989. border-radius: 10px;
  990. background: #CFCFCF;
  991. }
  992. .md-pin-product-list .pin-product-item {
  993. width: 100%;
  994. height: 52px;
  995. display: flex;
  996. margin: 0px;
  997. cursor: pointer;
  998. }
  999. .md-pin-product-list .pin-product-item input {
  1000. display: none;
  1001. }
  1002. .md-pin-product-list .pin-product-item .item-name {
  1003. font-family: opensanssemibold;
  1004. font-size: 13px;
  1005. color: var(--color-default-title);
  1006. width: calc(100% - 25px);
  1007. margin: auto 0px;
  1008. padding-right: 25px;
  1009. }
  1010. .md-pin-product-list .pin-product-item:hover .item-name {
  1011. color: var(--color-blue-text);
  1012. }
  1013. .md-pin-product-list .pin-product-item .item-icon {
  1014. display: inline-block;
  1015. width: 25px;
  1016. height: 25px;
  1017. border: 1px solid var(--color-gray);
  1018. border-radius: 50%;
  1019. position: relative;
  1020. margin: auto 0px auto auto;
  1021. transition: 0.2s all ease;
  1022. }
  1023. .md-pin-product-list .pin-product-item input:checked ~ .item-icon {
  1024. border: 12px solid var(--color-blue-bg);
  1025. }
  1026. .md-pin-product-list .pin-product-item .item-icon::before {
  1027. content: "\f00c";
  1028. font: normal normal normal 14px/1 FontAwesome;
  1029. text-rendering: auto;
  1030. -webkit-font-smoothing: antialiased;
  1031. -moz-osx-font-smoothing: grayscale;
  1032. font-size: 13px;
  1033. color: #F7F7F7;
  1034. position: absolute;
  1035. left: 50%;
  1036. top: 50%;
  1037. transform: translate(-50%, -50%);
  1038. }
  1039. .md-pin-product-line {
  1040. width: 100%;
  1041. height: 1px;
  1042. background: #E5E5E5;
  1043. margin-top: 10px;
  1044. }
  1045. .md-pin-product-content .md-pin-product-create-orther {
  1046. display: block;
  1047. text-align: left;
  1048. font-family: opensanssemibold;
  1049. font-size: 13px;
  1050. line-height: 22px;
  1051. color: var(--color-default-title);
  1052. margin-top: 18px;
  1053. text-decoration: none;
  1054. outline: 0px;
  1055. }
  1056. .md-pin-product-content .md-pin-product-create-orther::before {
  1057. content: "";
  1058. display: inline-block;
  1059. width: 35px;
  1060. height: 35px;
  1061. background: url("~/Content/assets/imgs/learning-icon-bg.svg") 0px -2985px;
  1062. margin-right: 15px;
  1063. vertical-align: middle;
  1064. }
  1065. .md-pin-product-content .md-pin-product-cancel-create {
  1066. font-family: opensanssemibold;
  1067. font-size: 13px;
  1068. color: var(--color-blue-text);
  1069. text-decoration: none;
  1070. outline: 0px;
  1071. text-transform: uppercase;
  1072. }
  1073. .md-pin-word-exist {
  1074. font-family: opensanssemibold;
  1075. font-size: 13px;
  1076. color: var(--color-wrong);
  1077. margin-bottom: 0px;
  1078. margin-top: 20px;
  1079. text-align: center;
  1080. display: none;
  1081. }
  1082. .pin-word-success {
  1083. font-family: opensanssemibold;
  1084. font-size: 13px;
  1085. color: #fff;
  1086. background: #000000;
  1087. width: 240px;
  1088. height: 48px;
  1089. line-height: 48px;
  1090. border-radius: 30px;
  1091. display: none;
  1092. text-align: center;
  1093. position: fixed;
  1094. left: 50%;
  1095. bottom: 100px;
  1096. transform: translate(-50%, 0);
  1097. cursor: default;
  1098. }
  1099. @media (max-width: 767px) {
  1100. .md-pin-container {
  1101. width: 100%;
  1102. float: none;
  1103. }
  1104. .md-pin-word-info {
  1105. min-height: unset;
  1106. }
  1107. }
  1108. /* MODAL OF PIN WORD */
  1109. .modal-upgrade-type .modal-dialog {
  1110. max-width: 625px;
  1111. width: 100%;
  1112. margin: 30px auto;
  1113. margin-top: 70px;
  1114. }
  1115. .modal-upgrade-type .modal-content {
  1116. border-radius: 6px;
  1117. background: #fff;
  1118. padding: 30px 50px 50px;
  1119. }
  1120. .modal-upgrade-type-title {
  1121. font-family: opensanslight;
  1122. font-size: 26px;
  1123. color: var(--color-default-text);
  1124. margin-bottom: 0px;
  1125. text-align: center;
  1126. }
  1127. .modal-upgrade-type-subtitle {
  1128. font-family: opensansregular;
  1129. font-size: 26px;
  1130. color: var(--color-default-text);
  1131. margin-bottom: 10px;
  1132. text-align: center;
  1133. }
  1134. .modal-upgrade-type-text {
  1135. font-family: opensansregular;
  1136. font-size: 15px;
  1137. color: var(--color-default-text);
  1138. line-height: 22px;
  1139. text-align: center;
  1140. margin-bottom: 10px;
  1141. }
  1142. .modal-upgrade-type-button {
  1143. text-align: center;
  1144. }
  1145. .modal-upgrade-type-button .button {
  1146. display: inline-block;
  1147. width: 140px;
  1148. height: 48px;
  1149. line-height: 48px;
  1150. text-decoration: none;
  1151. outline: 0px;
  1152. text-align: center;
  1153. font-family: opensanssemibold;
  1154. font-size: 15px;
  1155. color: #fff;
  1156. background: var(--color-orange);
  1157. border: 0px;
  1158. border-radius: 30px;
  1159. margin: 10px 10px 0px;
  1160. position: relative;
  1161. z-index: 1;
  1162. }
  1163. .modal-upgrade-type-button .button:first-child {
  1164. background: var(--color-blue-bg);
  1165. }
  1166. .modal-upgrade-type-button .button.btn-premium {
  1167. background: #006C98;
  1168. }
  1169. .modal-upgrade-group {
  1170. position: relative;
  1171. z-index: 1;
  1172. }
  1173. .modal-upgrade-content .detail-child {
  1174. font-size: 16px;
  1175. font-family: opensanssemibold;
  1176. color: #00BCEF;
  1177. }
  1178. .modal-upgrade-content .detail-child::before {
  1179. content: "";
  1180. background: url("~/Content/assets/imgs/learning-icon-bg.svg");
  1181. padding-left: 20px;
  1182. display: inline-block;
  1183. width: 13px;
  1184. height: 13px;
  1185. }
  1186. .modal-upgrade-content .detail-child-vocabulary::before {
  1187. background-position: 0px -3370px;
  1188. }
  1189. .modal-upgrade-content .detail-child-vip::before {
  1190. background-position: 0px -3385px;
  1191. }
  1192. .modal-upgrade-content .detail-child-premium::before {
  1193. background-position: 0px -3400px;
  1194. }
  1195. .modal-upgrade-content .detail-child.detail-child-vip {
  1196. color: #F4AE00;
  1197. }
  1198. .modal-upgrade-content .detail-child.detail-child-premium {
  1199. color: #022E38;
  1200. }
  1201. .modal-upgrade-content .detail-child-content {
  1202. padding-left: 22px;
  1203. font-size: 16px;
  1204. font-family: opensanslight;
  1205. }
  1206. .modal-upgrade-line {
  1207. width: 125px;
  1208. height: 1px;
  1209. background: var(--color-default-title);
  1210. margin: 30px auto 20px;
  1211. }
  1212. .modal-upgrade-msg {
  1213. font-size: 16px;
  1214. text-align: center;
  1215. max-width: 200px;
  1216. margin: 0px auto 15px;
  1217. }
  1218. .modal-upgrade-type .modal-content::before {
  1219. content: "";
  1220. background: url("~/Content/assets/imgs/upgrade-bg.png");
  1221. width: 100%;
  1222. height: 600px;
  1223. display: inline-block;
  1224. position: absolute;
  1225. left: 0;
  1226. bottom: 0;
  1227. }
  1228. /* END MODAL OF PIN WORD */
  1229. /*begin fault popup*/
  1230. .fault-dialog {
  1231. max-width: 450px;
  1232. width: 100%;
  1233. }
  1234. .fault-dialog .modal-content {
  1235. border-radius: 6px;
  1236. }
  1237. .fault-title {
  1238. font-size: 22px;
  1239. color: #E43439;
  1240. margin-top: 30px;
  1241. font-family: opensanslight;
  1242. }
  1243. .fault-subtitle {
  1244. font-size: 13px;
  1245. }
  1246. .fault-dialog .close-box {
  1247. margin-right: -30px;
  1248. cursor: pointer;
  1249. }
  1250. .slt-fault {
  1251. border: 1px solid #ddd;
  1252. height: 40px;
  1253. margin-bottom: 0px;
  1254. padding: 10px;
  1255. border-radius: 4px;
  1256. font-size: 14px;
  1257. }
  1258. .slt-fault:hover {
  1259. cursor: pointer;
  1260. }
  1261. .slt-fault .fa {
  1262. float: right;
  1263. color: #E43439;
  1264. font-size: 14px;
  1265. }
  1266. .slt-fault-option {
  1267. padding: 10px 0px;
  1268. border: 1px solid #ededed;
  1269. position: absolute;
  1270. width: calc(100% - 30px);
  1271. z-index: 1;
  1272. background: #fff;
  1273. border-radius: 4px;
  1274. display: none;
  1275. }
  1276. .slt-fault-option span {
  1277. background: #F5F5F5;
  1278. padding: 9px 15px;
  1279. border-radius: 25px;
  1280. width: calc(50% - 20px);
  1281. display: inline-block;
  1282. margin-left: 10px;
  1283. margin-right: 10px;
  1284. font-size: 12px;
  1285. float: left;
  1286. margin-bottom: 10px;
  1287. }
  1288. .slt-fault-option span:hover, .slt-fault-option-active span {
  1289. cursor: pointer;
  1290. background: #F9EDEE;
  1291. color: #E43439;
  1292. }
  1293. .txt-fault {
  1294. border: 1px solid #ddd !important;
  1295. margin-bottom: 10px;
  1296. resize: none;
  1297. }
  1298. .txt-fault:active, .txt-fault:focus {
  1299. box-shadow: none;
  1300. border: 1px solid #E43439 !important;
  1301. }
  1302. .msg-feedback {
  1303. color: #70b100;
  1304. }
  1305. .cancel-fault {
  1306. margin-top: 15px;
  1307. height: 33px;
  1308. width: 85px;
  1309. display: inline-block;
  1310. background: #fff;
  1311. border: 1px solid #ededed;
  1312. line-height: 31px;
  1313. text-decoration: none;
  1314. margin-left: 5px;
  1315. margin-right: 5px;
  1316. color: #777;
  1317. border-radius: 4px;
  1318. }
  1319. .send-fault {
  1320. margin-top: 15px;
  1321. height: 30px;
  1322. width: 85px;
  1323. display: inline-block;
  1324. background: #75b924;
  1325. line-height: 30px;
  1326. text-decoration: none;
  1327. margin-left: 5px;
  1328. margin-right: 5px;
  1329. color: #fff;
  1330. border-radius: 4px;
  1331. box-shadow: 0px 2px 1px #649928;
  1332. }
  1333. .cancel-fault:hover {
  1334. text-decoration: none;
  1335. color: #777;
  1336. }
  1337. .send-fault:hover {
  1338. text-decoration: none;
  1339. color: #fff;
  1340. }
  1341. .notification-content a:hover, .mission-content a:hover {
  1342. color: #555;
  1343. }
  1344. .coin-menu-item a:hover {
  1345. color: #555;
  1346. }
  1347. .modal-feedback-header {
  1348. background: #FFE2E1;
  1349. padding: 5px 10px;
  1350. border-radius: 6px 6px 0px 0px;
  1351. }
  1352. #feedback-fault .modal-body {
  1353. padding: 15px 25px 25px;
  1354. }
  1355. .feedback-has-sent {
  1356. font-size: 20px;
  1357. font-family: opensansbold;
  1358. color: #7ac60c;
  1359. }
  1360. .feedback-thanks {
  1361. font-size: 15px;
  1362. color: #4c87ed;
  1363. }
  1364. .feedback-sent-img {
  1365. margin-bottom: 30px;
  1366. margin-top: 75px;
  1367. }
  1368. #feedback-fault .modal-content {
  1369. min-height: 400px;
  1370. }
  1371. .modal-content-thanks {
  1372. display: none;
  1373. }
  1374. .send-fault {
  1375. background: #ddd;
  1376. box-shadow: none;
  1377. border: 1px solid #ddd;
  1378. height: 40px;
  1379. line-height: 40px;
  1380. font-size: 13px;
  1381. font-family: opensanssemibold;
  1382. color: #AFAFAF;
  1383. width: 180px;
  1384. border-radius: 20px;
  1385. margin: 20px 0px 0px;
  1386. }
  1387. .send-fault:hover {
  1388. background: #E43439;
  1389. color: #fff;
  1390. border: 1px solid #E43439;
  1391. }
  1392. .send-fault.send-fault-active {
  1393. background: #E43439;
  1394. color: #fff;
  1395. border: 1px solid #E43439;
  1396. }
  1397. .send-fault:focus {
  1398. text-decoration: none;
  1399. outline: none;
  1400. }
  1401. .txt-fault {
  1402. margin-top: 15px;
  1403. }
  1404. /*end fault popup*/
  1405. @media (min-width: 768px) {
  1406. #modal-sample .modal-dialog {
  1407. width: 600px;
  1408. }
  1409. }
  1410. #modal-sample .modal-content {
  1411. border-radius: 11px;
  1412. max-width: 600px;
  1413. margin-top: 60px;
  1414. height: 520px;
  1415. }
  1416. #modal-sample .video-content {
  1417. height: 400px;
  1418. display: none;
  1419. margin-top: 3px;
  1420. }
  1421. #modal-sample .video-item-content {
  1422. height: 400px;
  1423. }
  1424. .modal-video-cover {
  1425. width: 100%;
  1426. height: 100%;
  1427. max-height: 315px;
  1428. overflow: hidden;
  1429. position: relative;
  1430. }
  1431. #modal-sample .sample-title {
  1432. background: #FFB020;
  1433. padding: 15px;
  1434. text-align: center;
  1435. border-radius: 10px 10px 0px 0px;
  1436. }
  1437. #modal-sample .sample-title p {
  1438. margin-bottom: 0;
  1439. font-size: 15px;
  1440. font-family: opensanslight;
  1441. color: #fff;
  1442. }
  1443. #modal-sample .sample-title p span {
  1444. font-family: opensanssemibold;
  1445. }
  1446. #modal-sample .sample-tab {
  1447. height: 40px;
  1448. text-align: center;
  1449. }
  1450. #modal-sample .sample-tab a {
  1451. font-size: 13px;
  1452. width: calc(50% - 27px);
  1453. display: inline-block;
  1454. line-height: 40px;
  1455. color: #231F20;
  1456. }
  1457. #modal-sample .sample-tab a:hover,
  1458. #modal-sample .sample-tab a:focus {
  1459. text-decoration: none;
  1460. }
  1461. #modal-sample .sample-tab a.sample-tab-active {
  1462. color: #FFB020;
  1463. font-family: opensanssemibold;
  1464. border-bottom: 3px solid;
  1465. }
  1466. .sample-content {
  1467. width: 100%;
  1468. height: 100%;
  1469. border-radius: 10px;
  1470. overflow: hidden;
  1471. position: relative;
  1472. padding: 0px 25px;
  1473. }
  1474. .sample-content .sample-item {
  1475. position: relative;
  1476. width: 100%;
  1477. padding-top: 15px;
  1478. border-top: 1px solid #ddd;
  1479. margin-top: 3px;
  1480. margin-bottom: 15px;
  1481. }
  1482. .sample-item-content {
  1483. width: calc(100% - 40px);
  1484. }
  1485. .sample-item-content .sample-content-en {
  1486. font-family: opensanslight;
  1487. font-size: 15px;
  1488. line-height: 22px;
  1489. margin-bottom: 5px;
  1490. color: #FFB020;
  1491. }
  1492. .sample-item-content .sample-content-en span {
  1493. font-family: opensanssemibold;
  1494. }
  1495. .sample-item-content .sample-content-vi {
  1496. font-family: opensanslight;
  1497. font-size: 15px;
  1498. color: #414042;
  1499. line-height: 22px;
  1500. margin-bottom: 5px;
  1501. }
  1502. .sample-item a {
  1503. display: inline-block;
  1504. width: 25px;
  1505. height: 25px;
  1506. border-radius: 50%;
  1507. background: url(~/Content/assets/imgs/learning-icon-bg.svg?n=1) 0px -245px;
  1508. background-color: #00BCEF;
  1509. vertical-align: middle;
  1510. text-decoration: none;
  1511. outline: 0px;
  1512. position: absolute;
  1513. top: 25px;
  1514. right: 0px;
  1515. }
  1516. .sample-item a.sound-active {
  1517. animation: animateSound 1.5s infinite linear;
  1518. }
  1519. .song-video-bg {
  1520. height: 117px;
  1521. width: calc(100% + 32px);
  1522. position: relative;
  1523. margin-left: -16px;
  1524. margin-top: -113px;
  1525. background: transparent;
  1526. }
  1527. .song-video-lyric {
  1528. background: #000;
  1529. width: calc(100%);
  1530. position: relative;
  1531. margin-left: 0;
  1532. margin-top: -10px;
  1533. color: #fff;
  1534. padding: 15px;
  1535. border-radius: 0px 0px 10px 10px;
  1536. min-height: 115px;
  1537. }
  1538. .song-video-lyric .lyric-en {
  1539. font-size: 20px;
  1540. text-align: center;
  1541. color: #fff;
  1542. font-family: opensanslight;
  1543. margin-top: 20px;
  1544. width: calc(100% - 80px);
  1545. margin: 20px auto 5px;
  1546. }
  1547. .song-video-lyric .lyric-en span {
  1548. color: #FFFF00;
  1549. font-family: opensanssemibold;
  1550. }
  1551. .song-video-lyric .lyric-vi {
  1552. font-size: 14px;
  1553. text-align: center;
  1554. color: #fff;
  1555. font-family: opensanslight;
  1556. width: calc(100% - 80px);
  1557. margin: 0px auto 10px;
  1558. }
  1559. .playbuton {
  1560. text-align: center;
  1561. }
  1562. .playbuton span {
  1563. display: inline-block;
  1564. background: #959595;
  1565. width: 5px;
  1566. height: 5px;
  1567. margin-top: 10px;
  1568. margin-left: 5px;
  1569. border-radius: 5px;
  1570. }
  1571. .playbuton span.sp-active {
  1572. background: #fff;
  1573. width: 6px;
  1574. height: 6px;
  1575. }
  1576. .playbuton span:hover {
  1577. cursor: pointer;
  1578. }
  1579. .song-video-lyric .song-prev {
  1580. width: 11px;
  1581. height: 19px;
  1582. display: inline-block;
  1583. background: url(~/Content/assets/imgs/learning-icon-bg.svg?n=1) 0px -3490px;
  1584. position: absolute;
  1585. top: 45%;
  1586. left: 20px;
  1587. }
  1588. .song-video-lyric .song-next {
  1589. width: 11px;
  1590. height: 19px;
  1591. display: inline-block;
  1592. background: url(~/Content/assets/imgs/learning-icon-bg.svg?n=1) 0px -3470px;
  1593. top: 45%;
  1594. right: 20px;
  1595. position: absolute;
  1596. }
  1597. .video-msg {
  1598. font-size: 15px;
  1599. text-align: center;
  1600. margin-top: 20px;
  1601. }
  1602. #modal-collocations .modal-dialog {
  1603. max-width: 460px;
  1604. margin: 80px auto 0px;
  1605. }
  1606. #modal-collocations .modal-content {
  1607. border-radius: 6px;
  1608. padding: 30px 30px 20px;
  1609. }
  1610. .collocations-title {
  1611. font-family: opensansregular;
  1612. font-size: 20px;
  1613. color: var(--color-orange);
  1614. margin-bottom: 20px;
  1615. text-align: center;
  1616. }
  1617. .collocations-content {
  1618. padding-right: 30px;
  1619. overflow-y: auto;
  1620. height: calc(100vh - 240px);
  1621. max-height: 350px;
  1622. }
  1623. .collocations-content::-webkit-scrollbar {
  1624. width: 10px;
  1625. }
  1626. /* Track */
  1627. .collocations-content::-webkit-scrollbar-track {
  1628. -webkit-border-radius: 10px;
  1629. border-radius: 10px;
  1630. background: #E7E7E7;
  1631. }
  1632. /* Handle */
  1633. .collocations-content::-webkit-scrollbar-thumb {
  1634. -webkit-border-radius: 10px;
  1635. border-radius: 10px;
  1636. background: #CFCFCF;
  1637. }
  1638. .collocation-text {
  1639. font-family: opensanslight;
  1640. font-size: 15px;
  1641. color: #231F20;
  1642. line-height: 17px;
  1643. margin-bottom: 17px;
  1644. }
  1645. .collocation-text .text-blue {
  1646. font-family: opensanssemibold;
  1647. color: var(--color-blue-text);
  1648. }
  1649. #modal-setup .modal-dialog {
  1650. max-width: 335px;
  1651. margin: 80px auto 0px;
  1652. }
  1653. #modal-setup .modal-content {
  1654. border-radius: 6px;
  1655. padding: 20px 25px 10px;
  1656. }
  1657. .setup-title {
  1658. font-family: opensanslight;
  1659. font-size: 16px;
  1660. color: var(--color-default-title);
  1661. margin-bottom: 15px;
  1662. }
  1663. .setup-line {
  1664. width: 100%;
  1665. height: 1px;
  1666. background-color: #E5E5E5;
  1667. margin: 0px;
  1668. }
  1669. .setup-label {
  1670. font-family: opensansregular;
  1671. font-size: 13px;
  1672. color: #5D5D5D;
  1673. display: inline-block;
  1674. vertical-align: top;
  1675. margin-bottom: 15px;
  1676. }
  1677. .setup-radio {
  1678. display: inline-block;
  1679. vertical-align: top;
  1680. width: 130px;
  1681. margin-left: 40px;
  1682. }
  1683. .setup-content {
  1684. padding-top: 20px;
  1685. }
  1686. .setup-check {
  1687. font-family: opensansregular;
  1688. font-size: 14px;
  1689. color: #414042;
  1690. font-weight: normal;
  1691. margin-bottom: 15px;
  1692. position: relative;
  1693. }
  1694. .setup-sound-check {
  1695. display: inline-block;
  1696. width: 25px;
  1697. height: 25px;
  1698. border-radius: 50%;
  1699. border: 1px solid #BBBBBC;
  1700. background: transparent;
  1701. position: relative;
  1702. vertical-align: -7px;
  1703. margin-right: 17px;
  1704. }
  1705. .setup-sound-check.word-checked, .setup-sound-check-input:checked + .setup-sound-check {
  1706. animation: animateCheck 0.3s linear;
  1707. border-width: 0px;
  1708. }
  1709. .setup-sound-check .icon {
  1710. display: inline-block;
  1711. width: 100%;
  1712. height: 100%;
  1713. position: absolute;
  1714. left: 0px;
  1715. top: 0px;
  1716. border-radius: 50%;
  1717. background: var(--color-blue-bg);
  1718. opacity: 0;
  1719. transition: opacity 0.2s linear;
  1720. }
  1721. .setup-sound-check.word-checked .icon, .setup-sound-check-input:checked + .setup-sound-check .icon {
  1722. opacity: 1;
  1723. transition: opacity 0.1s 0.2s linear;
  1724. }
  1725. .setup-sound-check .icon::before {
  1726. position: absolute;
  1727. left: 50%;
  1728. top: 50%;
  1729. color: #fff;
  1730. transform: translate(-50%, -50%);
  1731. content: "\f00c";
  1732. display: inline-block;
  1733. font: normal normal normal 14px/1 FontAwesome;
  1734. font-size: 13px;
  1735. text-rendering: auto;
  1736. -webkit-font-smoothing: antialiased;
  1737. -moz-osx-font-smoothing: grayscale;
  1738. }
  1739. .setup-check::before {
  1740. content: "";
  1741. display: inline-block;
  1742. width: 100%;
  1743. height: 100%;
  1744. position: absolute;
  1745. left: 0px;
  1746. top: 0px;
  1747. z-index: 2;
  1748. cursor: pointer;
  1749. }
  1750. .setup-check input[type='radio'] {
  1751. display: none;
  1752. }
  1753. .setup-radio.setup-lang {
  1754. margin: 0px;
  1755. width: 100%;
  1756. }
  1757. .setup-radio.setup-lang .setup-check:first-child {
  1758. margin-right: 30px;
  1759. }
  1760. .setup-submit {
  1761. display: block;
  1762. width: 180px;
  1763. height: 48px;
  1764. line-height: 48px;
  1765. text-decoration: none;
  1766. outline: 0px;
  1767. color: #5D5D5D;
  1768. font-family: opensanssemibold;
  1769. font-size: 13px;
  1770. text-align: center;
  1771. margin: 30px auto 10px;
  1772. border-radius: 30px;
  1773. background-color: #DDDDDD;
  1774. border: 0px;
  1775. transition: 0.2s all ease;
  1776. }
  1777. .setup-submit.setup-active {
  1778. background-color: var(--color-blue-bg);
  1779. color: #fff;
  1780. }
  1781. @keyframes animateCheck {
  1782. 0% {
  1783. border-width: 1px;
  1784. border-color: #BBBBBC;
  1785. }
  1786. 50% {
  1787. border-width: 11px;
  1788. }
  1789. 100% {
  1790. border-width: 0px;
  1791. border-color: var(--color-blue-bg);
  1792. }
  1793. }