123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671
  1. @charset "UTF-8";
  2. .modal {
  3. &__video {
  4. position: relative;
  5. width: 100%;
  6. height: 0;
  7. padding-bottom: 52.5%;
  8. margin-bottom: 1em;
  9. box-shadow: none;
  10. margin-bottom: 2em;
  11. iframe {
  12. position: absolute;
  13. width: 99%;
  14. height: 99%;
  15. left: 50%;
  16. top: 50%;
  17. transform: translate(-50%, -50%);
  18. }
  19. }
  20. .modal-body {
  21. .video__icon {
  22. width: 5em;
  23. p {
  24. font-size: 1em;
  25. font-weight: 500;
  26. color: #0699d2;
  27. margin-top: 0.5em;
  28. }
  29. }
  30. }
  31. }
  32. .modal-research {
  33. &::before {
  34. content: "";
  35. width: 300%;
  36. height: 300%;
  37. position: fixed;
  38. left: 50%;
  39. top: 50%;
  40. background: url(../images/modal-bg.png) $blue-d repeat;
  41. transform: translate(-50%, -50%) rotate(-45deg);
  42. background-size: 20em auto;
  43. }
  44. .btn-close {
  45. position: absolute;
  46. right: 1em;
  47. top: 1em;
  48. opacity: 0.3;
  49. z-index: 1;
  50. }
  51. .modal {
  52. &-dialog {
  53. max-width: 40em;
  54. }
  55. &-content {
  56. box-shadow: 0.8em 0.8em 1em rgba(#000, 0.3);
  57. }
  58. &-body {
  59. transition: 0.3s;
  60. padding: 2.5em 3em 2.3em;
  61. h2 {
  62. color: $blue-d;
  63. font-size: 1.4em;
  64. margin: 0;
  65. }
  66. h3 {
  67. color: $blue;
  68. font-size: 1em;
  69. margin: 0;
  70. }
  71. h4 {
  72. margin: 0;
  73. font-size: 0.9em;
  74. }
  75. p {
  76. color: $gray;
  77. font-size: 0.8em;
  78. margin: 0;
  79. font-weight: 300;
  80. span {
  81. font-size: 0.8em;
  82. }
  83. }
  84. }
  85. }
  86. }
  87. .modal-proud {
  88. .modal {
  89. &__title {
  90. margin-bottom: 1em;
  91. }
  92. &__preface {
  93. margin-bottom: 0.5em;
  94. h3 {
  95. margin-bottom: 0.1em;
  96. }
  97. }
  98. &__list {
  99. }
  100. &__item {
  101. display: flex;
  102. align-items: flex-start;
  103. justify-content: flex-start;
  104. }
  105. &__pic {
  106. flex: 0 0 4em;
  107. margin-right: 0.7em;
  108. margin-top: 0.8em;
  109. img {
  110. width: 100%;
  111. height: auto;
  112. }
  113. }
  114. &__text {
  115. flex: 1;
  116. padding: 0.9em 0;
  117. border-bottom: 0.1em solid rgba($gray, 0.3);
  118. h4 {
  119. color: $blue;
  120. font-size: 0.9em;
  121. margin-bottom: 0.2em;
  122. }
  123. p {
  124. font-size: 0.8em;
  125. }
  126. }
  127. &__additional {
  128. display: flex;
  129. align-items: flex-start;
  130. justify-content: flex-start;
  131. border: 0.1em solid rgba($gray, 0.3);
  132. border-radius: 0.5em;
  133. padding: 0.3em 0.7em 0.7em;
  134. margin-top: 0.7em;
  135. &__icon {
  136. width: 3em;
  137. margin-right: 0.7em;
  138. img {
  139. width: 100%;
  140. height: auto;
  141. }
  142. }
  143. p {
  144. font-size: 0.8em;
  145. }
  146. }
  147. }
  148. }
  149. .modal-feature {
  150. .modal {
  151. &-body {
  152. padding: 1.5em 3em 1.3em;
  153. }
  154. &__title {
  155. margin-bottom: 1em;
  156. }
  157. &__principle {
  158. position: relative;
  159. display: flex;
  160. justify-content: space-around;
  161. align-items: center;
  162. margin-bottom: 1.8em;
  163. &__item {
  164. position: relative;
  165. width: 15em;
  166. height: 15em;
  167. border-radius: 100%;
  168. &-blue {
  169. background-color: $blue;
  170. padding: 3.5em 1.8em 2.5em 2em;
  171. &::before {
  172. content: "";
  173. display: block;
  174. width: 7.5em;
  175. height: 1px;
  176. background-color: rgba($gray, 0.3);
  177. position: absolute;
  178. top: 50%;
  179. transform: translateY(-50%);
  180. right: -7.5em;
  181. }
  182. }
  183. &-red {
  184. background-color: $red;
  185. padding: 3.5em 0.9em 2.5em 1.3em;
  186. }
  187. }
  188. &__title {
  189. margin-bottom: 0.5em;
  190. h3 {
  191. font-size: 1.2em;
  192. text-align: center;
  193. color: $white;
  194. }
  195. }
  196. &__text {
  197. p {
  198. color: $white;
  199. line-height: 1.4;
  200. font-size: 0.8em;
  201. }
  202. &-pc {
  203. display: block;
  204. }
  205. &-mb {
  206. display: none;
  207. }
  208. }
  209. }
  210. &__list {
  211. margin-top: 1em;
  212. display: flex;
  213. flex-wrap: wrap;
  214. }
  215. &__item {
  216. width: 33%;
  217. border-left: 0.1em solid $blue;
  218. padding: 0 1em 0 0.5em;
  219. margin-bottom: 1.5em;
  220. h4 {
  221. color: $blue-d;
  222. }
  223. p {
  224. font-size: 0.7em;
  225. line-height: 1.3;
  226. }
  227. }
  228. }
  229. }
  230. .modal-unlimit {
  231. .modal {
  232. &__title {
  233. margin-bottom: 0.7em;
  234. }
  235. &__preface {
  236. margin-bottom: 1.3em;
  237. h3 {
  238. font-size: 0.9em;
  239. font-weight: 300;
  240. margin-bottom: 0.3em;
  241. }
  242. p {
  243. font-size: 0.8em;
  244. line-height: 1.4;
  245. }
  246. }
  247. &__intro {
  248. margin-top: 1.8em;
  249. display: flex;
  250. justify-content: space-between;
  251. &__pic{
  252. width: 45%;
  253. img {
  254. width: 100%;
  255. height: auto;
  256. }
  257. }
  258. p {
  259. font-size: 0.8em;
  260. line-height: 1.7;
  261. }
  262. ul {
  263. width: 54%;
  264. list-style: none;
  265. li {
  266. position: relative;
  267. display: flex;
  268. &::before {
  269. content: "";
  270. display: block;
  271. position: absolute;
  272. width: 0.15em;
  273. height: 0.15em;
  274. background-color: $gray;
  275. border-radius: 100%;
  276. left: -0.7em;
  277. top: 0.5em;
  278. }
  279. }
  280. }
  281. }
  282. }
  283. }
  284. .modal-show {
  285. h3 {
  286. font-weight: 400;
  287. }
  288. .modal {
  289. &-body {
  290. padding: 2.5em 2.3em 2.3em;
  291. }
  292. &__title {
  293. margin-bottom: 1em;
  294. }
  295. &__preface {
  296. margin-bottom: 1.5em;
  297. }
  298. &__operation {
  299. margin-top: 0.8em;
  300. &__item {
  301. display: flex;
  302. align-items: flex-start;
  303. margin-bottom: 0.5em;
  304. p {
  305. font-size: 0.7em;
  306. }
  307. }
  308. &__step {
  309. background-color: $blue;
  310. padding: 0.2em 0.5em 0.4em;
  311. border-radius: 1em;
  312. margin-right: 0.7em;
  313. p {
  314. color: $white;
  315. white-space: nowrap;
  316. line-height: 1;
  317. }
  318. }
  319. &__text {
  320. flex: 1;
  321. padding-bottom: 0.5em;
  322. border-bottom: 0.1em solid rgba($gray, 0.3);
  323. }
  324. }
  325. &__feature {
  326. display: flex;
  327. justify-content: space-between;
  328. align-items: flex-start;
  329. height: 7em;
  330. margin-top: 0.8em;
  331. margin-bottom: 1em;
  332. &__item {
  333. width: 19%;
  334. height: 100%;
  335. border-radius: 0.5em;
  336. border: 0.1em solid rgba($gray, 0.3);
  337. display: flex;
  338. justify-content: center;
  339. align-items: center;
  340. p {
  341. text-align: center;
  342. font-size: 0.7em;
  343. .red {
  344. font-size: 1.3em;
  345. color: $red;
  346. }
  347. }
  348. }
  349. }
  350. &__video {
  351. width: 33.875em;
  352. margin: 0 auto 2em
  353. }
  354. }
  355. }
  356. .modal-test {
  357. .modal {
  358. &-body {
  359. padding: 2.5em 2.6em 2.3em;
  360. }
  361. &__title {
  362. margin-bottom: 0.4em;
  363. }
  364. &__preface {
  365. p {
  366. color: $blue;
  367. }
  368. }
  369. &__game {
  370. margin-top: 1.5em;
  371. &__item {
  372. border-radius: 0.4em;
  373. overflow: hidden;
  374. margin-bottom: 0.8em;
  375. &.active {
  376. .modal__game__ques {
  377. padding: 0.5em 0.6em 0.6em;
  378. }
  379. .modal__game__btns {
  380. display: none;
  381. }
  382. }
  383. }
  384. &__ques {
  385. position: relative;
  386. background-color: $blue;
  387. padding: 1em 0.6em 1.1em;
  388. p {
  389. color: $white;
  390. line-height: 1;
  391. .num {
  392. font-size: 1.2em;
  393. font-weight: 400;
  394. margin-right: 0.7em;
  395. }
  396. }
  397. }
  398. &__btns {
  399. position: absolute;
  400. top: 50%;
  401. transform: translateY(-50%);
  402. right: 0.4em;
  403. display: flex;
  404. &__btn {
  405. width: 2em;
  406. height: 2em;
  407. display: flex;
  408. justify-content: center;
  409. align-items: center;
  410. border-radius: 0.3em;
  411. transition: 0.3s;
  412. cursor: pointer;
  413. img {
  414. width: 65%;
  415. height: auto;
  416. }
  417. &:hover {
  418. background-color: rgba($white, 0.3);
  419. }
  420. }
  421. }
  422. &__ans {
  423. justify-content: flex-start;
  424. align-items: center;
  425. padding: 0.2em 0.6em 0.6em;
  426. display: none;
  427. border-radius: 0 0 0.4em 0.4em;
  428. border: 0.1em solid $blue;
  429. &__icon {
  430. width: 1.2em;
  431. margin-right: 0.7em;
  432. img {
  433. width: 100%;
  434. height: auto;
  435. }
  436. &-circle {
  437. width: 2em;
  438. }
  439. }
  440. p {
  441. margin-top: 0.3em;
  442. }
  443. }
  444. }
  445. }
  446. }
  447. @media screen and (max-width: 992px) {
  448. .modal {
  449. .modal-body {
  450. .video__icon {
  451. width: 4em;
  452. p {
  453. font-size: 0.8em;
  454. color: #0699d2;
  455. margin-top: 0.5em;
  456. }
  457. }
  458. }
  459. }
  460. .modal-research {
  461. .modal {
  462. &-dialog {
  463. margin: 1.5em 0.7em;
  464. }
  465. &-body {
  466. padding: 2.5em 1em 1em;
  467. h2 {
  468. font-size: 1.2em;
  469. font-weight: 600;
  470. }
  471. h3 {
  472. font-size: 0.9em;
  473. font-weight: 600;
  474. }
  475. h4 {
  476. font-size: 0.8em;
  477. }
  478. p {
  479. font-size: 0.7em;
  480. }
  481. }
  482. }
  483. }
  484. .modal-proud {
  485. flex: 0 0 3.5em;
  486. .modal {
  487. &-body {
  488. padding: 2.5em 1.5em 2em;
  489. }
  490. &__text {
  491. h4 {
  492. font-size: 0.8em;
  493. }
  494. p {
  495. font-size: 0.7em;
  496. word-break: break-all;
  497. }
  498. }
  499. &__pic {
  500. flex: 0 0 3.5em;
  501. }
  502. &__additional {
  503. &__icon {
  504. flex: 0 0 1.5em;
  505. width: 1.5em;
  506. }
  507. }
  508. }
  509. }
  510. .modal-feature {
  511. .modal {
  512. &-body {
  513. padding: 2.5em 1.3em 1em;
  514. }
  515. &__principle {
  516. flex-wrap: wrap;
  517. align-items: flex-start;
  518. h3 {
  519. font-size: 1em;
  520. font-weight: 300;
  521. }
  522. &__item {
  523. width: 6.5em;
  524. height: 6.5em;
  525. padding: 0;
  526. display: flex;
  527. justify-content: center;
  528. align-items: center;
  529. margin-bottom: 0.6em;
  530. &-blue {
  531. margin: 0 1em 0.6em;
  532. padding: 0;
  533. &::before {
  534. display: none;
  535. }
  536. }
  537. &-red {
  538. margin: 0 1em 0.6em;
  539. }
  540. }
  541. &__title {
  542. margin-bottom: 0;
  543. }
  544. &__text {
  545. p {
  546. color: $gray;
  547. }
  548. &-pc {
  549. display: none;
  550. }
  551. &-mb {
  552. width: 8.5em;
  553. display: block;
  554. }
  555. }
  556. }
  557. &__item {
  558. width: 50%;
  559. margin-bottom: 1em;
  560. }
  561. }
  562. }
  563. .modal-unlimit {
  564. .modal {
  565. &-body {
  566. padding: 2.5em 0.8em 1.3em;
  567. }
  568. &__preface {
  569. margin-bottom: 1em;
  570. }
  571. &__intro {
  572. display: block;
  573. margin-top: 0;
  574. &__pic {
  575. width: 65%;
  576. margin-bottom: 1.5em;
  577. }
  578. ul {
  579. width: 100%;
  580. list-style: none;
  581. padding-left: 0.8em;
  582. margin-bottom: 0;
  583. }
  584. }
  585. }
  586. }
  587. .modal-show {
  588. .modal {
  589. &__preface {
  590. margin-bottom: 1em;
  591. }
  592. &__operation {
  593. margin-bottom: 1em;
  594. }
  595. &__feature {
  596. flex-wrap: wrap;
  597. height: auto;
  598. &__item {
  599. height: 5.5em;
  600. margin-bottom: 0.5em;
  601. &:nth-child(1), &:nth-child(2), &:nth-child(3) {
  602. width: 32%;
  603. }
  604. &:nth-child(4), &:nth-child(5) {
  605. width: 49%;
  606. }
  607. p {
  608. width: 100%;
  609. .red {
  610. font-size: 1.1em;
  611. font-weight: 400;
  612. }
  613. }
  614. }
  615. }
  616. &__video {
  617. width: 100%;
  618. }
  619. }
  620. }
  621. .modal-test {
  622. .modal {
  623. &-body {
  624. padding: 2.5em 1em 0.7em;
  625. }
  626. &__title {
  627. margin-bottom: 0.2em;
  628. }
  629. &__game {
  630. margin-bottom: 0.6em;
  631. &__item {
  632. &.active {
  633. .modal__game__ques {
  634. padding: 0.3em 4.5em 0.5em 0.6em;
  635. }
  636. }
  637. }
  638. &__ques {
  639. padding: 0.3em 4.5em 0.5em 0.6em;
  640. p {
  641. line-height: 1.3;
  642. display: flex;
  643. justify-content: flex-start;
  644. align-items: center;
  645. }
  646. }
  647. &__btns {
  648. &__btn {
  649. width: 1.8em;
  650. height: 1.78em;
  651. }
  652. }
  653. &__ans {
  654. &__icon {
  655. flex: 0 0 1em;
  656. width: 1em;
  657. }
  658. }
  659. }
  660. }
  661. }
  662. }