home-grammar.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  1. .home-cover {
  2. max-width: calc(var(--max-width) + 30px);
  3. margin: auto;
  4. padding: 0px 15px;
  5. }
  6. .home-top {
  7. background: url('../imgs/home-top-bg-01.png') no-repeat calc(50% - 280px) 0px, url('../imgs/home-top-bg-02.png') no-repeat center bottom, radial-gradient(640px 640px at calc(50% - 280px) 500px, #00AA78, #00C688);
  8. padding-bottom: 60px;
  9. padding-top: 80px;
  10. background-blend-mode: overlay;
  11. }
  12. .home-top .top-left-logo {
  13. margin: 15px auto 0px;
  14. width: 267px;
  15. height: 72px;
  16. background: url('../imgs/main-icon-bg.svg?n=1') 0px -170px;
  17. }
  18. .home-top .top-left-text {
  19. font-family: opensansregular;
  20. font-size: 17px;
  21. color: #fff;
  22. text-align: center;
  23. margin-bottom: 0px;
  24. margin-top: 15px;
  25. }
  26. .home-top .top-left-image {
  27. display: block;
  28. max-width: 501px;
  29. margin: 30px auto 0px;
  30. }
  31. .home-top .top-right-title {
  32. font-family: opensanssemibold;
  33. font-size: 36px;
  34. color: #fff;
  35. line-height: 43px;
  36. margin: 10px auto 0px;
  37. text-align: center;
  38. }
  39. .home-top .top-right-des {
  40. font-family: opensansregular;
  41. font-size: 15px;
  42. color: #fff;
  43. line-height: 22px;
  44. margin: 15px auto 0px;
  45. max-width: 480px;
  46. text-align: center;
  47. }
  48. .home-top .top-right-button {
  49. display: block;
  50. width: 280px;
  51. height: 68px;
  52. text-decoration: none;
  53. outline: 0px;
  54. margin: 45px auto 0px;
  55. font-family: opensanssemibold;
  56. font-size: 20px;
  57. color: #fff;
  58. text-align: center;
  59. line-height: 63px;
  60. background: #FEBF10;
  61. border-radius: 40px;
  62. border: 0px solid #FFB020;
  63. border-bottom-width: 5px;
  64. transition: 0.1s all ease;
  65. }
  66. .home-top .top-right-button-free {
  67. display: block;
  68. text-decoration: none;
  69. outline: 0px;
  70. font-family: opensanslight;
  71. font-size: 15px;
  72. color: #fff;
  73. margin: 20px auto 0px;
  74. text-align: center;
  75. }
  76. .home-sad {
  77. position: relative;
  78. background: #fff;
  79. padding-bottom: 0px;
  80. margin-bottom: -20px;
  81. padding-top: 40px;
  82. }
  83. .home-sad .sad-title {
  84. font-family: opensansbold;
  85. font-size: 26px;
  86. color: var(--color-default-text);
  87. line-height: 32px;
  88. margin-top: 0px;
  89. margin-bottom: 0px;
  90. }
  91. .home-sad .sad-line {
  92. width: 90px;
  93. height: 5px;
  94. background: var(--color-default-bg);
  95. margin-top: 10px;
  96. margin-bottom: 20px;
  97. }
  98. .home-sad .sad-text {
  99. font-family: opensanslight;
  100. font-size: 15px;
  101. color: #3b675c;
  102. line-height: 22px;
  103. margin-bottom: 0px;
  104. }
  105. .home-sad .sad-text.sad-icon {
  106. margin-bottom: 15px;
  107. padding-left: 25px;
  108. position: relative;
  109. }
  110. .home-sad .sad-text.sad-icon::before {
  111. content: "";
  112. display: inline-block;
  113. width: 10px;
  114. height: 10px;
  115. border: 1px solid #3b675c;
  116. border-radius: 50%;
  117. position: absolute;
  118. left: 0px;
  119. top: 6px;
  120. }
  121. .home-sad .sad-text .text-bold {
  122. font-family: opensanssemibold;
  123. }
  124. .home-sad .sad-image {
  125. width: 100%;
  126. max-width: 450px;
  127. display: block;
  128. margin: 50px auto;
  129. }
  130. .home-sad .home-cover {
  131. position: relative;
  132. z-index: 2;
  133. }
  134. .home-wave {
  135. position: absolute;
  136. left: 0px;
  137. top: 0px;
  138. transform: translate(0px, -100%);
  139. }
  140. .home-wave svg {
  141. width: 100%;
  142. height: auto;
  143. float: left;
  144. }
  145. .home-wave svg path {
  146. fill: #fff;
  147. }
  148. .home-sad .sad-bottom {
  149. position: absolute;
  150. left: 0;
  151. bottom: -60px;
  152. width: 100%;
  153. height: 200px;
  154. overflow: hidden;
  155. z-index: 1;
  156. }
  157. .home-sad .sad-bottom::after {
  158. content: "";
  159. display: block;
  160. width: calc(100% + 100px);
  161. height: 100%;
  162. position: absolute;
  163. top: 0px;
  164. left: -50px;
  165. background: #fff;
  166. border-radius: 100%;
  167. }
  168. .home-method {
  169. background: url('../imgs/home-video-bg.png') center top, radial-gradient(600px 800px at center, #00AA78, #00C688);
  170. background-blend-mode: overlay;
  171. padding-top: 150px;
  172. padding-bottom: 110px;
  173. position: relative;
  174. }
  175. .home-method .method-text-top {
  176. font-family: opensanslight;
  177. font-size: 25px;
  178. color: #fff;
  179. line-height: 36px;
  180. text-align: center;
  181. margin: auto;
  182. position: relative;
  183. max-width: 960px;
  184. padding: 0px 45px;
  185. }
  186. .home-method .method-text-top::before {
  187. content: "";
  188. display: inline-block;
  189. width: 37px;
  190. height: 24px;
  191. background: url('../imgs/main-icon-bg.svg?n=1') 0px -620px;
  192. position: absolute;
  193. transform: translate( -50px, 0px);
  194. mix-blend-mode: overlay;
  195. }
  196. .home-method .method-text-top::after {
  197. content: "";
  198. display: inline-block;
  199. width: 37px;
  200. height: 24px;
  201. background: url('../imgs/main-icon-bg.svg?n=1') 0px -590px;
  202. position: absolute;
  203. transform: translate( 15px, 10px);
  204. mix-blend-mode: overlay;
  205. }
  206. .home-method .method-video {
  207. max-width: 570px;
  208. height: 325px;
  209. margin: 40px auto 0px;
  210. border: 5px solid #fff;
  211. border-radius: 10px;
  212. overflow: hidden;
  213. position: relative;
  214. }
  215. .home-method .method-video .video-layout {
  216. width: 100%;
  217. height: 100%;
  218. display: flex;
  219. position: absolute;
  220. z-index: 2;
  221. background: radial-gradient(300px 300px at center, #00AA78, #00C688);
  222. left: 0px;
  223. top: 0px;
  224. cursor: pointer;
  225. transition: 0.4s all ease;
  226. }
  227. .home-method .method-video .video-layout.hide-layout {
  228. opacity: 0;
  229. }
  230. .home-method .method-video .video-layout .layout-cover {
  231. margin: auto;
  232. }
  233. .home-method .method-video .video-layout .layout-logo {
  234. width: 207px;
  235. height: 57px;
  236. background: url('../imgs/main-icon-bg.svg?n=1') 0px -340px;
  237. }
  238. .home-method .method-video .video-layout .layout-text {
  239. font-family: opensansregular;
  240. font-size: 10px;
  241. color: #fff;
  242. margin: 10px auto 0px;
  243. text-align: center;
  244. }
  245. .home-method .method-video .video-layout .layout-button {
  246. width: 106px;
  247. height: 82px;
  248. background: url('../imgs/main-icon-bg.svg?n=1') 0px -250px;
  249. position: absolute;
  250. left: 50%;
  251. top: 50%;
  252. transform: translate(-50%, -50%);
  253. }
  254. .home-method .method-title {
  255. font-family: opensanslight;
  256. font-size: 35px;
  257. color: #fff;
  258. margin: 40px auto 0px;
  259. text-align: center;
  260. line-height: 42px;
  261. }
  262. .home-method .method-text {
  263. font-family: opensanslight;
  264. font-size: 15px;
  265. line-height: 22px;
  266. max-width: 650px;
  267. text-align: center;
  268. margin: 20px auto 0px;
  269. color: #fff;
  270. }
  271. .home-method .method-text .text-bold {
  272. font-family: opensanssemibold;
  273. }
  274. .home-step {
  275. background-color: #fff;
  276. position: relative;
  277. padding: 60px 0px 30px;
  278. }
  279. .home-step-wave {
  280. position: absolute;
  281. left: 50%;
  282. transform: translateX(-50%);
  283. bottom: calc(100% - 2px);
  284. display: flex;
  285. cursor: pointer;
  286. }
  287. .home-step-wave .step-wave-icon {
  288. font-size: 30px;
  289. position: absolute;
  290. bottom: -3px;
  291. left: 50%;
  292. transform: translateX(-50%);
  293. color: var(--color-default-text);
  294. transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) all;
  295. }
  296. .home-step-wave:hover .step-wave-icon {
  297. bottom: -8px;
  298. }
  299. .home-step .step-title {
  300. font-family: opensanslight;
  301. font-size: 35px;
  302. line-height: 42px;
  303. color: var(--color-default-text);
  304. text-align: center;
  305. margin: auto;
  306. }
  307. .home-step .step-content {
  308. padding-top: 30px;
  309. padding-left: 100px;
  310. position: relative;
  311. }
  312. .home-step .step-content-image {
  313. position: absolute;
  314. background-image: url('../imgs/main-icon-bg.svg?n=1');
  315. }
  316. .home-step .step-content-image.image-1 {
  317. left: 20px;
  318. top: 38px;
  319. width: 50px;
  320. height: 41px;
  321. background-position: 0px -400px;
  322. }
  323. .home-step .step-content-image.image-2 {
  324. left: 35px;
  325. top: 40px;
  326. width: 37px;
  327. height: 37px;
  328. background-position: 0px -450px;
  329. }
  330. .home-step .step-content-title {
  331. font-family: opensanssemibold;
  332. font-size: 18px;
  333. color: var(--color-default-text);
  334. margin: 20px auto 0px;
  335. text-align: left;
  336. }
  337. .home-step .step-content-detail {
  338. font-family: opensansregular;
  339. font-size: 14px;
  340. color: var(--color-text-black);
  341. margin: 12px auto 0px;
  342. text-align: left;
  343. min-height: 128px;
  344. line-height: 22px;
  345. }
  346. .home-result-title {
  347. font-family: opensanslight;
  348. font-size: 35px;
  349. color: var(--color-default-text);
  350. line-height: 42px;
  351. text-align: center;
  352. margin: 35px auto;
  353. }
  354. .home-result-image {
  355. max-width: 243px;
  356. width: 100%;
  357. margin: auto;
  358. display: block;
  359. }
  360. .home-result-text {
  361. padding-left: 30px;
  362. font-family: opensansregular;
  363. font-size: 14px;
  364. line-height: 22px;
  365. max-width: 485px;
  366. margin: 0px 0px 10px;
  367. position: relative;
  368. color: var(--color-text-black);
  369. }
  370. .home-result-text:first-child {
  371. margin-top: 30px;
  372. }
  373. .home-result-text .text-bold {
  374. font-family: opensanssemibold;
  375. color: var(--color-default-text);
  376. }
  377. .home-result-text::before {
  378. content: "";
  379. display: inline-block;
  380. width: 13px;
  381. height: 13px;
  382. background: url('../imgs/main-icon-bg.svg?n=1') 0px -500px;
  383. position: absolute;
  384. left: 0px;
  385. top: 5px;
  386. }
  387. .home-result-text:last-child::before {
  388. display: none;
  389. }
  390. .home-student-title {
  391. font-family: opensanslight;
  392. font-size: 35px;
  393. color: var(--color-default-text);
  394. line-height: 42px;
  395. margin: 75px auto 0px;
  396. text-align: center;
  397. }
  398. .home-student-des {
  399. font-family: opensansregular;
  400. font-size: 20px;
  401. color: var(--color-default-text);
  402. margin: 10px auto 25px;
  403. text-align: center;
  404. }
  405. .home-student-list {
  406. max-width: 670px;
  407. height: 380px;
  408. position: relative;
  409. margin: auto;
  410. overflow: hidden;
  411. background: url('../imgs/img-home-09.png') no-repeat center 40px;
  412. background-size: 630px auto;
  413. }
  414. .home-student-info {
  415. position: absolute;
  416. width: 100%;
  417. height: 100%;
  418. left: 0px;
  419. top: 0px;
  420. display: none;
  421. }
  422. .home-student-info.info-active {
  423. display: block;
  424. }
  425. .home-student-info .info-image {
  426. display: block;
  427. width: 180px;
  428. height: 180px;
  429. border-radius: 50%;
  430. margin: auto;
  431. border: 2px solid var(--color-default-bg);
  432. padding: 3px;
  433. }
  434. .home-student-info .info-name {
  435. font-family: opensanssemibold;
  436. font-size: 25px;
  437. text-align: center;
  438. color: var(--color-default-text);
  439. margin: 25px auto 0px;
  440. }
  441. .home-student-info .info-talk {
  442. font-family: opensanslight;
  443. font-size: 20px;
  444. color: var(--color-default-text);
  445. line-height: 24px;
  446. min-height: 120px;
  447. overflow: hidden;
  448. text-align: center;
  449. margin: 20px auto 0px;
  450. }
  451. .home-bottom {
  452. padding: 70px 0px 45px;
  453. background: url('../imgs/home-top-bg-01.png') no-repeat center, url('../imgs/home-top-bg-02.png') no-repeat center bottom, radial-gradient(500px 800px at center, #00d08e, #159650);
  454. background-blend-mode: overlay;
  455. }
  456. .home-bottom .bottom-image {
  457. max-width: 285px;
  458. width: 100%;
  459. display: block;
  460. margin: 130px auto 0px;
  461. }
  462. .home-bottom .bottom-title {
  463. font-family: opensansbold;
  464. font-size: 20px;
  465. color: #fff;
  466. margin: 40px auto 0px;
  467. text-align: center;
  468. }
  469. .home-bottom .bottom-text {
  470. font-family: opensansregular;
  471. font-size: 16px;
  472. color: #fff;
  473. max-width: 490px;
  474. line-height: 22px;
  475. text-align: center;
  476. margin: 13px auto 0px;
  477. }
  478. .home-bottom .bottom-button-group {
  479. display: flex;
  480. max-width: 450px;
  481. margin: 30px auto 0px;
  482. }
  483. .home-bottom .bottom-button {
  484. font-family: opensanssemibold;
  485. font-size: 20px;
  486. color: #fff;
  487. display: block;
  488. width: 210px;
  489. height: 69px;
  490. line-height: 65px;
  491. text-align: center;
  492. text-decoration: none;
  493. outline: 0px;
  494. background-color: #FEBF10;
  495. border-bottom: 5px solid #FFB600;
  496. border-radius: 40px;
  497. margin: auto;
  498. }
  499. .home-bottom .bottom-button.btn-trial {
  500. background: #85cb21;
  501. border-bottom: 5px solid #80c122;
  502. }
  503. .home-step .step-wave {
  504. position: absolute;
  505. left: 0px;
  506. top: calc(100% - 0px);
  507. transform: rotate(180deg);
  508. }
  509. .home-step .step-wave svg {
  510. width: 100%;
  511. height: auto;
  512. float: left;
  513. }
  514. .home-step .step-wave svg path {
  515. fill: #fff;
  516. }
  517. .home-result {
  518. background: url('../imgs/img-home-07.png') no-repeat right bottom;
  519. }
  520. .home-student {
  521. background: url('../imgs/img-home-08.png') no-repeat left bottom;
  522. }
  523. .show-example {
  524. display: block;
  525. }
  526. .hide-example {
  527. display: none;
  528. }