product-intro.css 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903
  1. body{
  2. background: #F0F4FA;
  3. color : #231F20;
  4. }
  5. .library-detail{
  6. background: #F0F4FA;
  7. }
  8. .library-detail .library-detail-banner img{
  9. width: 100%;
  10. }
  11. .library-detail-content{
  12. max-width: 1275px;
  13. margin: 35px auto;
  14. display: flex;
  15. }
  16. .library-content-left{
  17. flex: 0 0 195px;
  18. }
  19. .library-detail-content.scroll-active .library-content-left .content-left-item{
  20. position: fixed;
  21. top: 80px;
  22. }
  23. .library-content-left .content-left-item{
  24. width: 195px;
  25. -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.22);
  26. -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.22);
  27. box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.22);
  28. border-radius: 4px;
  29. padding: 20px 0px;
  30. background: #fff;
  31. }
  32. .library-content-left .content-left-item a{
  33. display: block;
  34. height: 30px;
  35. border-left: 5px solid #fff;
  36. line-height: 30px;
  37. padding-left: 25px;
  38. font-size: 14px;
  39. font-family: opensansregular;
  40. color: #000000;
  41. }
  42. .library-content-left .content-left-item a:hover,
  43. .library-content-left .content-left-item a:focus{
  44. text-decoration: none;
  45. }
  46. .library-content-left .content-left-item a.tab-active{
  47. border-left: 5px solid #00AEEF;
  48. font-family: opensanssemibold;
  49. color: #00BCEF;
  50. }
  51. .library-content-middle {
  52. float: left;
  53. background: #fff;
  54. margin-left: 35px;
  55. margin-right: 35px;
  56. width: 100%;
  57. max-width: 710px;
  58. }
  59. .library-content-middle .content-middle-item{
  60. min-height: 100px;
  61. -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.22);
  62. -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.22);
  63. box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.22);
  64. border-radius: 4px;
  65. padding: 30px;
  66. border-top: 5px solid #00AEEF;
  67. }
  68. .library-content-right{
  69. flex: 0 0 300px;
  70. }
  71. .library-detail-content.scroll-active .library-content-right .content-right-item{
  72. position: fixed;
  73. width: 300px;
  74. top: 80px;
  75. }
  76. .library-content-right .content-right-item .content-right-info{
  77. background: #fff;
  78. -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.22);
  79. -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.22);
  80. box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.22);
  81. border-radius: 4px;
  82. min-height: 100px;
  83. padding: 30px 20px 20px;
  84. }
  85. .library-content-middle .content-middle-title{
  86. margin-top: 0px;
  87. font-family: opensanssemibold;
  88. font-size: 22px;
  89. color: #000000;
  90. line-height: 26px;
  91. }
  92. .library-content-middle .content-middle-description{
  93. font-size: 15px;
  94. font-family: opensanslight;
  95. color: #757575;
  96. }
  97. .library-content-middle .content-middle-subtitle{
  98. font-size: 18px;
  99. font-family: opensanssemibold!important;
  100. color: #231F20;
  101. border-bottom: 1px solid #D0D2D3;
  102. padding-bottom: 10px;
  103. margin-top: 30px;
  104. }
  105. .library-content-middle .content-middle-subtitle span{
  106. font-size: 13px;
  107. background: #00BCEF;
  108. color: #fff;
  109. padding: 1px 7px;
  110. margin-left: 5px;
  111. border-radius: 10px;
  112. }
  113. .library-content-middle .content-middle-topics{
  114. margin: 20px -15px 10px;
  115. display: inline-block;
  116. max-height: 550px;
  117. overflow: hidden;
  118. }
  119. .library-content-middle .lesson-item{
  120. display: inline-block;
  121. width: 196px;
  122. height: 235px;
  123. border-radius: 10px;
  124. border: 1px solid #E3E4E5;
  125. box-shadow: 0 0 10px rgba(0,0,0,.1);
  126. text-align: center;
  127. background: #fff;
  128. margin: 10px 15px 30px;
  129. float: left;
  130. position: relative;
  131. }
  132. .library-content-middle .lesson-item:hover{
  133. transform: translate(0px, -3px);
  134. }
  135. .library-content-middle .lesson-image{
  136. display: block;
  137. width: 70px;
  138. height: 70px;
  139. border-radius: 50%;
  140. overflow: hidden;
  141. margin: auto;
  142. margin-top: 20px;
  143. }
  144. .library-content-middle .lesson-image img{
  145. width: 100%;
  146. height: 100%;
  147. }
  148. .library-content-middle .lesson-name{
  149. font-family: opensanssemibold;
  150. font-size: 15px;
  151. color: #231F20;
  152. line-height: 18px;
  153. text-align: center;
  154. padding: 15px;
  155. height: 50px;
  156. transition: all 0.15s linear;
  157. cursor: default;
  158. overflow: hidden;
  159. text-overflow: ellipsis;
  160. -webkit-line-clamp: 2;
  161. display: -webkit-box;
  162. -webkit-box-orient: vertical;
  163. margin-bottom: 40px;
  164. }
  165. .library-content-middle .lesson-button{
  166. display: block;
  167. width: 115px;
  168. height: 38px;
  169. line-height: 38px;
  170. border-radius: 30px;
  171. border: 0px;
  172. text-align: center;
  173. text-decoration: none;
  174. outline: 0px;
  175. background: #DDDDDD;
  176. color: #AFAFAF;
  177. font-family: opensanssemibold;
  178. font-size: 13px;
  179. margin: auto;
  180. cursor: pointer;
  181. }
  182. .library-content-middle .lesson-button.button-learn-now{
  183. background: #FFB020;
  184. color: #fff;
  185. }
  186. .library-content-middle .view-more-topic a{
  187. width: 100%;
  188. display: block;
  189. border: 1px solid #00C5F9;
  190. height: 42px;
  191. max-width: 515px;
  192. margin: auto;
  193. border-radius: 21px;
  194. text-align: center;
  195. line-height: 42px;
  196. color: #00C5F9;
  197. font-size: 15px;
  198. font-family: opensanssemibold;
  199. background: #fff;
  200. }
  201. .library-content-middle .view-more-topic a:focus{
  202. background: #fff;
  203. text-decoration: none;
  204. color: #00C5F9;
  205. }
  206. .library-content-middle .view-more-topic a:hover{
  207. background: #00C5F9;
  208. text-decoration: none;
  209. color: #fff
  210. }
  211. .library-content-middle .middle-intro-group{
  212. margin-top: 40px;
  213. }
  214. .library-content-middle .middle-intro-group-content{
  215. margin-top: 20px;
  216. max-height: auto;
  217. margin-bottom: 20px;
  218. overflow: hidden;
  219. }
  220. .library-content-middle .view-more-intro a{
  221. color: #00BCEF;
  222. font-size: 13px;
  223. position: relative;
  224. display: inline-block;
  225. padding-right: 15px;
  226. display: none;
  227. }
  228. .library-content-middle .view-more-intro a::before{
  229. display: inline-block;
  230. font: normal normal normal 14px/1 FontAwesome;
  231. font-size: 15px;
  232. color: #00BCEF;
  233. text-rendering: auto;
  234. -webkit-font-smoothing: antialiased;
  235. -moz-osx-font-smoothing: grayscale;
  236. content: "\f107";
  237. position: absolute;
  238. right: 0px;
  239. top: 50%;
  240. transform: translate(0px, -50%);
  241. }
  242. .library-content-middle .middle-solution-group-content{
  243. text-align: center;
  244. }
  245. .library-content-middle .middle-solution-group-content div{
  246. width: 510px;
  247. margin: 25px auto 0px;
  248. height: 286px!important;
  249. border-radius: 10px;
  250. overflow: hidden;
  251. border: 1px solid #00BAF3;
  252. }
  253. .library-content-middle .middle-solution-group-content .video-library-overview{
  254. width: 510px;
  255. height: 286px!important;
  256. }
  257. .middle-learner-object-group{
  258. margin-top: 40px;
  259. }
  260. .middle-learner-object-group .middle-learner-object-content{
  261. padding-top: 1px;
  262. }
  263. .middle-learner-object-group .learner-object-item{
  264. font-size: 15px;
  265. line-height: 22px;
  266. margin-top: 10px;
  267. text-align: left;
  268. padding-left: 23px;
  269. position: relative;
  270. }
  271. .middle-learner-object-group .learner-object-item::before {
  272. display: inline-block;
  273. font: normal normal normal 14px/1 FontAwesome;
  274. font-size: 13px;
  275. text-rendering: auto;
  276. -webkit-font-smoothing: antialiased;
  277. -moz-osx-font-smoothing: grayscale;
  278. content: "\f058";
  279. color: #7AC60C;
  280. position: absolute;
  281. left: 0px;
  282. top: 4px;
  283. }
  284. .library-content-middle .middle-source-group,
  285. .library-content-middle .middle-benefit-group,
  286. .library-content-middle .middle-promotion-group{
  287. margin-top: 40px;
  288. }
  289. .library-content-middle .middle-source-group-content,
  290. .library-content-middle .middle-benefit-group-content,
  291. .library-content-middle .middle-promotion-group-content{
  292. margin-top: 20px;
  293. margin-bottom: 20px;
  294. }
  295. .middle-benefit-group-content li{
  296. list-style-type: unset;
  297. }
  298. .middle-register-group .content-register-title{
  299. font-weight: 100;
  300. font-size: 15px;
  301. font-family: opensanssemibold;
  302. }
  303. .middle-register-group .content-register-description{
  304. font-size: 13px;
  305. color: #231F20;
  306. }
  307. .middle-promotion-group .middle-promotion-group-content p{
  308. margin-bottom: 0px;
  309. }
  310. .middle-register-group .register-form{
  311. max-width: 395px;
  312. margin: 20px auto;
  313. }
  314. .middle-register-group .register-form p{
  315. font-size: 15px;
  316. margin-bottom: 20px;
  317. }
  318. .middle-register-group .register-form .product-item{
  319. min-height: 55px;
  320. background: #FFB020;
  321. font-size: 15px;
  322. color: #fff;
  323. font-family: opensanssemibold;
  324. border-radius: 5px;
  325. padding: 18px;
  326. position: relative;
  327. margin-bottom: 20px;
  328. }
  329. .middle-register-group .register-form .product-item .product-item-check{
  330. display: inline-block;
  331. width: 25px;
  332. height: 25px;
  333. position: absolute;
  334. background: #fff;
  335. right: 15px;
  336. top: 50%;
  337. transform: translate(0px, -50%);
  338. border-radius: 3px;
  339. text-align: center;
  340. padding-top: 4px;
  341. }
  342. .middle-register-group .register-form .product-item .product-item-check:hover{
  343. cursor: pointer;
  344. }
  345. .middle-register-group .register-form .product-item .product-item-check.check-active::before{
  346. display: inline-block;
  347. font: normal normal normal 14px/1 FontAwesome;
  348. font-size: 15px;
  349. text-rendering: auto;
  350. -webkit-font-smoothing: antialiased;
  351. -moz-osx-font-smoothing: grayscale;
  352. content: "\f00c";
  353. color: #FFB020;
  354. }
  355. .middle-register-group .register-form .product-item:nth-of-type(1){
  356. background: #FFB020;
  357. }
  358. .middle-register-group .register-form .product-item:nth-of-type(1) .product-item-check.check-active::before{
  359. color: #FFB020;
  360. }
  361. .middle-register-group .register-form .product-item:nth-of-type(2){
  362. background: #FFB020;
  363. }
  364. .middle-register-group .register-form .product-item:nth-of-type(2) .product-item-check.check-active::before{
  365. color: #FFB020;
  366. }
  367. .middle-register-group .register-form .product-item:nth-of-type(3){
  368. background: #7AC60C;
  369. }
  370. .middle-register-group .register-form .product-item:nth-of-type(3) .product-item-check.check-active::before{
  371. color: #7AC60C;
  372. }
  373. .middle-register-group .register-form .input-item{
  374. position: relative;
  375. margin-bottom: 20px;
  376. }
  377. .middle-register-group .register-form .input-item input{
  378. width: 100%;
  379. height: 55px;
  380. border-radius: 4px;
  381. border: 1px solid #00c5f9;
  382. margin-top: 30px;
  383. padding-left: 20px;
  384. font-size: 16px;
  385. }
  386. .middle-register-group .register-form .input-item input:focus{
  387. outline: none;
  388. }
  389. .middle-register-group .register-form .input-item input:focus + p{
  390. color: #00c5f9;
  391. }
  392. .middle-register-group .register-form .input-item p{
  393. position: absolute;
  394. top: 0px;
  395. }
  396. .middle-register-group .register-form .input-item input::-webkit-input-placeholder {
  397. font-size: 16px;
  398. color: #A7A9AC;
  399. }
  400. .middle-register-group .register-form .input-item input::-moz-placeholder {
  401. font-size: 16px;
  402. color: #A7A9AC;
  403. }
  404. .middle-register-group .register-form .input-item input:-ms-input-placeholder {
  405. font-size: 16px;
  406. color: #A7A9AC;
  407. }
  408. .middle-register-group .register-form .input-item input:-moz-placeholder {
  409. font-size: 16px;
  410. color: #A7A9AC;
  411. }
  412. .middle-register-group .register-form button{
  413. height: 45px;
  414. width: 100%;
  415. border: 0;
  416. border-radius: 23px;
  417. background: #00C5F9;
  418. font-size: 13px;
  419. font-family: opensanssemibold;
  420. color: #fff;
  421. margin-top: 20px;
  422. margin-bottom: 10px;
  423. }
  424. .middle-register-group .register-form button:focus{
  425. outline: none;
  426. }
  427. .middle-register-group .register-banking{
  428. max-width: 395px;
  429. margin: 20px auto;
  430. }
  431. .middle-register-group .banking-info{
  432. font-size: 18px;
  433. }
  434. .middle-register-group .banking-info-group{
  435. background: #DEF6FC;
  436. border-radius: 6px;
  437. padding: 20px 15px 10px;
  438. }
  439. .middle-register-group .banking-info-group .banking-step{
  440. font-size: 12px;
  441. color: #00B8F1;
  442. }
  443. .middle-register-group .banking-info-group .banking-step span{
  444. margin-right: 5px;
  445. }
  446. .middle-register-group .banking-info-group .banking-step-content{
  447. font-size: 13px;
  448. margin-bottom: 5px;
  449. position: relative;
  450. }
  451. .middle-register-group .banking-info-group .banking-step-content span{
  452. font-size: 12px;
  453. font-family: opensanssemibold;
  454. }
  455. .middle-register-group .banking-info-group .banking-step-content::before{
  456. display: inline-block;
  457. font: normal normal normal 14px/1 FontAwesome;
  458. font-size: 9px;
  459. text-rendering: auto;
  460. -webkit-font-smoothing: antialiased;
  461. -moz-osx-font-smoothing: grayscale;
  462. content: "\f10c";
  463. color: #414042;
  464. margin-right: 10px;
  465. }
  466. .middle-register-group .banking-info-group .banking-step-content-note{
  467. font-size: 12px;
  468. margin-left: 20px;
  469. }
  470. .middle-register-group .banking-note{
  471. font-size: 14px;
  472. margin-top: 20px;
  473. }
  474. .middle-register-group .banking-note-content{
  475. position: relative;
  476. padding-left: 15px;
  477. }
  478. .middle-register-group .banking-note-content::before{
  479. display: inline-block;
  480. font: normal normal normal 14px/1 FontAwesome;
  481. font-size: 9px;
  482. text-rendering: auto;
  483. -webkit-font-smoothing: antialiased;
  484. -moz-osx-font-smoothing: grayscale;
  485. content: "\f10c";
  486. color: #414042;
  487. position: absolute;
  488. left: 0px;
  489. top: 4px;
  490. }
  491. .middle-promotion-group .content-support{
  492. position: relative;
  493. padding-left: 20px;
  494. font-size: 15px;
  495. }
  496. .middle-promotion-group .content-support a{
  497. color: #00BCEF;
  498. }
  499. .middle-promotion-group .content-support a:hover,
  500. .middle-promotion-group .content-support a:focus{
  501. color: #00BCEF;
  502. text-decoration: none;
  503. }
  504. .middle-promotion-group .content-support span{
  505. font-family: opensanssemibold;
  506. color: #6CAA00;
  507. }
  508. .middle-promotion-group .content-support::before{
  509. display: inline-block;
  510. font: normal normal normal 14px/1 FontAwesome;
  511. font-size: 9px;
  512. text-rendering: auto;
  513. -webkit-font-smoothing: antialiased;
  514. -moz-osx-font-smoothing: grayscale;
  515. content: "\f10c";
  516. color: #414042;
  517. position: absolute;
  518. left: 0px;
  519. top: 4px;
  520. }
  521. .content-right-item .content-right-price{
  522. font-size: 15px;
  523. font-family: opensanssemibold;
  524. color: #5E5E5E;
  525. }
  526. .content-right-item .content-right-price span{
  527. font-size: 30px;
  528. font-family: opensansbold;
  529. }
  530. .content-right-item .content-right-price-store{
  531. font-size: 15px;
  532. }
  533. .content-right-item .content-right-price-store span{
  534. font-size: 17px;
  535. text-decoration: line-through;
  536. }
  537. .content-right-item .content-right-price-store i{
  538. font-style: normal;
  539. vertical-align: super;
  540. font-size: 12px;
  541. }
  542. .content-right-item .content-right-price-store strong{
  543. float: right;
  544. font-family: opensanssemibold;
  545. font-size: 16px;
  546. color: #FF4848;
  547. }
  548. .content-right-item .content-learning-time{
  549. color: #939393;
  550. font-size: 14px;
  551. font-family: opensanssemibold;
  552. position: relative;
  553. padding-left: 20px;
  554. }
  555. .content-right-item .content-learning-time:before{
  556. display: inline-block;
  557. font: normal normal normal 14px/1 FontAwesome;
  558. font-size: 13px;
  559. text-rendering: auto;
  560. -webkit-font-smoothing: antialiased;
  561. -moz-osx-font-smoothing: grayscale;
  562. content: "\f058";
  563. color: #7AC60C;
  564. position: absolute;
  565. left: 0px;
  566. top: 4px;
  567. }
  568. .content-right-item .right-buy-now{
  569. width: 100%;
  570. display: block;
  571. height: 55px;
  572. background: #FFCE00;
  573. text-align: center;
  574. line-height: 55px;
  575. color: #fff;
  576. border-radius: 4px;
  577. font-size: 18px;
  578. text-transform: uppercase;
  579. font-family: opensanssemibold;
  580. margin-top: 40px;
  581. }
  582. .content-right-item .right-trial{
  583. width: 100%;
  584. display: block;
  585. height: 55px;
  586. background: #0BA6FC;
  587. text-align: center;
  588. line-height: 55px;
  589. color: #fff;
  590. border-radius: 4px;
  591. font-size: 18px;
  592. text-transform: uppercase;
  593. font-family: opensanssemibold;
  594. margin-top: 15px;
  595. }
  596. .content-right-item .right-buy-now:focus,
  597. .content-right-item .right-trial:focus{
  598. text-decoration: none;
  599. color: #fff;
  600. }
  601. .library-content-right .content-right-user h3{
  602. border-bottom: dashed 1px #ddd;
  603. color: #00BCEF;
  604. font-family: OpenSansRegular;
  605. font-size: 20px;
  606. margin-bottom: 0px;
  607. padding-bottom: 10px;
  608. margin-top: 40px;
  609. font-weight: 100;
  610. }
  611. .library-content-right .content-right-user h3 span{
  612. font-size: 16px;
  613. float: right;
  614. color: #757575;
  615. margin-top: 10px;
  616. }
  617. .library-content-right .content-right-user .item-user-learn-voca{
  618. padding-top: 20px;
  619. }
  620. .library-content-right .content-right-user .box-name-or-img{
  621. float: left;
  622. width: 65px;
  623. height: 65px;
  624. text-align: center;
  625. background: #00BCEF;
  626. color: #fff;
  627. font-size: 37px;
  628. font-family: OpenSansRegular;
  629. border-radius: 50%;
  630. margin-right: 30px;
  631. }
  632. .library-content-right .content-right-user .box-name-or-img img{
  633. width: 100%;
  634. height: 100%;
  635. border-radius: 50%;
  636. }
  637. .library-content-right .content-right-user .box-name-or-img span {
  638. display: inline-block;
  639. margin-top: 6px;
  640. text-transform: uppercase;
  641. }
  642. .library-content-right .content-right-user .name-user-learn-voca{
  643. font-family: OpenSansRegular;
  644. font-size: 17px;
  645. color: #212121;
  646. }
  647. .library-content-right .content-right-user .name-user-learn-voca a{
  648. color: #333;
  649. }
  650. .library-content-right .content-right-user .level-of-user{
  651. font-family: OpenSansRegular;
  652. font-size: 13px;
  653. color: #757575;
  654. margin-right: 15px;
  655. }
  656. .library-content-right .content-right-user .number-word-learn{
  657. font-family: OpenSansRegular;
  658. font-size: 13px;
  659. color: #757575;
  660. }
  661. /*begin popup message*/
  662. #modal-charge-message .modal-content{
  663. width: 350px;
  664. margin: auto;
  665. margin-top: 50px;
  666. height: 220px;
  667. }
  668. #modal-charge-message .modal-content.modal-register-content{
  669. background: #fff;
  670. padding: 0px;
  671. height: auto;
  672. width: 100%;
  673. max-width: 600px;
  674. border-radius: 6px;
  675. position: relative;
  676. }
  677. .middle-register-group-header{
  678. position: relative;
  679. background: #EC008C;
  680. border-radius: 6px 6px 0px 0px;
  681. min-height: 125px;
  682. }
  683. .middle-register-group-header::before{
  684. display: inline-block;
  685. width: 125px;
  686. height: 111px;
  687. background: url(../imgs/voca-gift.png);
  688. content: "";
  689. left: 30px;
  690. position: absolute;
  691. }
  692. #modal-charge-message .middle-register-group .register-form{
  693. max-width: 470px;
  694. }
  695. .middle-register-group-header p{
  696. font-size: 25px;
  697. font-family: opensansbold;
  698. text-align: center;
  699. max-width: 350px;
  700. margin: auto;
  701. color: #fff;
  702. padding-top: 30px;
  703. position: relative;
  704. }
  705. #modal-charge-message .register-form-prmotion{
  706. font-size: 15px;
  707. line-height: 22px;
  708. margin-top: 10px;
  709. text-align: left;
  710. padding-left: 23px;
  711. position: relative;
  712. margin-bottom: 0px;
  713. font-family: opensanssemibold;
  714. }
  715. #modal-charge-message .modal-button-close{
  716. z-index: 1;
  717. }
  718. #modal-charge-message .register-form-prmotion::before {
  719. display: inline-block;
  720. font: normal normal normal 14px/1 FontAwesome;
  721. font-size: 13px;
  722. text-rendering: auto;
  723. -webkit-font-smoothing: antialiased;
  724. -moz-osx-font-smoothing: grayscale;
  725. content: "\f00c";
  726. color: #7AC60C;
  727. position: absolute;
  728. left: 0px;
  729. top: 4px;
  730. }
  731. #modal-charge-message .register-prmotion-line{
  732. margin-top: 20px;
  733. border-top: 1px dashed #D0D2D3;
  734. margin-bottom: 20px;
  735. }
  736. #modal-charge-message .register-form p{
  737. margin-bottom: 10px;
  738. }
  739. #modal-charge-message .register-form .product-item{
  740. width: calc(50% - 10px);
  741. display: inline-block;
  742. min-height: 41px;
  743. padding: 15px;
  744. font-size: 12px;
  745. }
  746. #modal-charge-message .register-form .product-item:nth-of-type(2){
  747. margin-right: 5px;
  748. }
  749. #modal-charge-message .register-form .product-item:nth-of-type(3){
  750. margin-left: 5px;
  751. }
  752. #modal-charge-message .register-form .input-item{
  753. display: inline-block;
  754. width: calc(50% - 10px);
  755. }
  756. #modal-charge-message .register-form .input-item-address{
  757. width: 100%;
  758. }
  759. #modal-charge-message .register-form button{
  760. max-width: 290px;
  761. margin: 20px auto 10px;
  762. display: block;
  763. border-radius: 4px;
  764. }
  765. .left-5{
  766. margin-left: 5px;
  767. }
  768. .right-5{
  769. margin-right: 5px;
  770. }
  771. #modal-charge-message .register-form .input-item input{
  772. height: 45px;
  773. }
  774. #modal-charge-message .modal-content img{
  775. margin-top: 20px;
  776. width: 45px;
  777. }
  778. .popup-charge-card-text{
  779. font-size: 17px;
  780. font-family: opensansbold;
  781. margin-top: 15px;
  782. margin-bottom: 0px;
  783. }
  784. .charge-card-text-content{
  785. font-size: 13px;
  786. font-style: italic;
  787. padding: 0 15px;
  788. }
  789. .popup-charge-footer{
  790. background: #ededed;
  791. padding: 15px;
  792. margin-top: 25px;
  793. border-radius: 0px 0px 6px 6px;
  794. }
  795. .popup-charge-card-button-fail{
  796. width: 130px;
  797. height: 40px;
  798. border-radius: 4px;
  799. border: 0;
  800. background: #4c87ed;
  801. color: #fff;
  802. font-family: opensanssemibold;
  803. font-size: 13px;
  804. }
  805. .charge-card-amount{
  806. font-size: 25px;
  807. font-family: opensansbold;
  808. }
  809. /*emd popup message*/
  810. .btn-login-facebook{
  811. width: 100%;
  812. display: block;
  813. height: 50px;
  814. background: #3469e8;
  815. max-width: 300px;
  816. margin: auto;
  817. border-radius: 50px;
  818. color: #fff;
  819. line-height: 50px;
  820. font-size: 16px;
  821. font-family: opensanssemibold;
  822. text-shadow: 0px 1px 0px #333;
  823. margin-bottom: 15px;
  824. }
  825. .btn-login-google{
  826. width: 100%;
  827. display: block;
  828. height: 50px;
  829. background: var(--color-main-blue-light);
  830. max-width: 300px;
  831. margin: auto;
  832. border-radius: 50px;
  833. color: #fff;
  834. line-height: 50px;
  835. font-size: 15px;
  836. font-family: opensanssemibold;
  837. margin-bottom: 15px;
  838. }
  839. .btn-login-later{
  840. width: 100%;
  841. display: block;
  842. height: 50px;
  843. background: #fff;
  844. max-width: 300px;
  845. margin: auto;
  846. border-radius: 50px;
  847. color: var(--color-main-blue-light);
  848. line-height: 50px;
  849. font-size: 15px;
  850. font-family: opensanssemibold;
  851. margin-bottom: 15px;
  852. border: 1px solid var(--color-main-blue-light);
  853. }
  854. .btn-login-facebook:hover, .btn-login-google:hover{
  855. color: #fff;
  856. text-decoration: none;
  857. }
  858. .btn-login-later:hover{
  859. color: var(--color-main-blue-light);
  860. text-decoration: none;
  861. }
  862. .btn-login-facebook:focus, .btn-login-google:focus{
  863. text-decoration: none;
  864. outline: none;
  865. color: #fff;
  866. }
  867. .btn-login-later:focus{
  868. text-decoration: none;
  869. outline: none;
  870. color: var(--color-main-blue-light);
  871. }
  872. .library-detail-modal-title span{
  873. font-family: opensanssemibold;
  874. }
  875. .trial-login-title {
  876. font-size: 18px;
  877. }
  878. .trial-login-msg {
  879. font-size: 16px;
  880. text-align: center;
  881. }
  882. .ads-banner{
  883. display:none!important;
  884. }