index.scss 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739
  1. .container {
  2. @include clearfix;
  3. margin: 0 auto;
  4. width: 1170px;
  5. @media screen and (max-width: 1170px) {
  6. width: 100%;
  7. }
  8. }
  9. // icon
  10. @for $i from 1 through 3{
  11. .icon-about-#{$i}{
  12. width: 80px;
  13. height: 80px;
  14. background-image: url("../images/icon-about-#{$i}.png");
  15. }
  16. }
  17. @for $i from 1 through 4{
  18. .icon-pt-#{$i}{
  19. width: 60px;
  20. height: 60px;
  21. background-image: url("../images/icon-pt-#{$i}.png");
  22. }
  23. .icon-step-#{$i}{
  24. width: 100px;
  25. height: 100px;
  26. background-image: url("../images/icon-step-#{$i}.png");
  27. }
  28. a:hover{
  29. .icon-step-#{$i}{
  30. background-image: url("../images/icon-step-#{$i}_hover.png");
  31. }
  32. }
  33. }
  34. @for $i from 1 through 4{
  35. .icon-in-#{$i}{
  36. width: 22px;
  37. height: 22px;
  38. background-image: url("../images/icon-in-#{$i}.png");
  39. }
  40. }
  41. .icon-er{
  42. width: 27px;
  43. height: 27px;
  44. background-image: url("../images/icon-er.png");
  45. }
  46. .btn {
  47. display: inline-block;
  48. border-radius: 20px;
  49. width: 170px;
  50. line-height: 40px;
  51. font-size: 16px;
  52. text-align: center;
  53. color: #fff;
  54. background-color: $theme-color;
  55. &:hover{
  56. background-color: darken($theme-color, 10%);
  57. }
  58. }
  59. .btn-small{
  60. @extend .btn;
  61. border-radius: 3px;
  62. width: 130px;
  63. }
  64. .btn-magnify{
  65. @extend .btn;
  66. border-radius: 3px;
  67. width: 100px;
  68. }
  69. .header {
  70. position: absolute;
  71. left: 0;
  72. right: 0;
  73. top: 0;
  74. z-index: 2000;
  75. padding: 15px 0;
  76. .logo {
  77. display: block;
  78. width: 147px;
  79. height: 48px;
  80. background: url("../images/logo_pc.png") no-repeat;
  81. background-size: 100%;
  82. }
  83. &.fixed{
  84. position: fixed;
  85. background-color: rgba(#fff, .8);
  86. .logo{
  87. background-image: url("../images/logo_m.png");
  88. }
  89. .nav li a{
  90. color: #202020;
  91. }
  92. .timber{
  93. background-color: #00acf1;
  94. }
  95. }
  96. &.borb{
  97. border-bottom: #eaeaea solid 1px;
  98. box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  99. }
  100. @media screen and (max-width: 800px){
  101. position: relative;
  102. padding: 10px;
  103. .logo{
  104. width: 120px;
  105. height: 40px;
  106. background-image: url("../images/logo_m.png");
  107. }
  108. }
  109. }
  110. .collapse {
  111. position: relative;
  112. .touch {
  113. display: none;
  114. }
  115. .timber{
  116. position: absolute;
  117. left: 58px;
  118. top: -15px;
  119. width: 64px;
  120. height: 4px;
  121. transition: left .5s ease-out;
  122. background-color: #fff;
  123. }
  124. @media screen and (max-width: 800px){
  125. margin-top: 15px;
  126. .touch{
  127. position: relative;
  128. display: block;
  129. border: #555 solid;
  130. border-width: 2px 0;
  131. width: 22px;
  132. height: 10px;
  133. &:after{
  134. position: absolute;
  135. top: 4px;
  136. width: 100%;
  137. height: 2px;
  138. content: '';
  139. background-color: #555;
  140. }
  141. }
  142. .timber{
  143. display: none;
  144. }
  145. }
  146. }
  147. .nav {
  148. @include clearfix;
  149. margin-top: 14px;
  150. li {
  151. float: left;
  152. margin-left: 60px;
  153. a {
  154. position: relative;
  155. font-size: 16px;
  156. color: #fff;
  157. }
  158. }
  159. @media screen and (max-width: 800px){
  160. display: none;
  161. position: absolute;
  162. top: 35px;
  163. right: -10px;
  164. z-index: 100;
  165. margin-top: 0;
  166. border-top: #eee solid 1px;
  167. background-color: rgba(255, 255, 255, .8);
  168. li{
  169. width: 100%;
  170. margin-left: 0;
  171. padding: 10px 0;
  172. a{
  173. display: block;
  174. text-align: center;
  175. color: #202020;
  176. }
  177. &.active {
  178. a {
  179. color: $theme-color;
  180. &:after {
  181. position: absolute;
  182. content: '';
  183. bottom: -7px;
  184. left: 50%;
  185. margin-left: -3px;
  186. border-radius: 50%;
  187. width: 6px;
  188. height: 6px;
  189. background-color: $theme-color;
  190. }
  191. }
  192. }
  193. }
  194. }
  195. }
  196. .banner {
  197. position: relative;
  198. width: 100%;
  199. height: 920px;
  200. background: url("../images/banner.jpg") no-repeat center;
  201. .intro{
  202. position: absolute;
  203. left: 50%;
  204. top: 50%;
  205. z-index: 1000;
  206. -webkit-transform: translate(-50%, -50%);
  207. -moz-transform: translate(-50%, -50%);
  208. -ms-transform: translate(-50%, -50%);
  209. -o-transform: translate(-50%, -50%);
  210. transform: translate(-50%, -50%);
  211. width: 630px;
  212. text-align: center;
  213. font-size: 16px;
  214. color: #fff;
  215. h1{
  216. border-bottom: rgba(#fff, .3) solid 1px;
  217. padding-bottom: 30px;
  218. line-height: 45px;
  219. letter-spacing: 7px;
  220. font-size: 38px;
  221. }
  222. .bottom{
  223. @include clearfix;
  224. padding: 25px 200px 0 0;
  225. }
  226. .r{
  227. margin-right: -200px;
  228. padding: 5px;
  229. border-radius: 3px;
  230. width: 160px;
  231. background-color: #fff;
  232. p{
  233. padding-bottom: 5px;
  234. color: #202020;
  235. }
  236. }
  237. .l{
  238. text-align: left;
  239. line-height: 27px;
  240. }
  241. img{
  242. width: 100%;
  243. }
  244. }
  245. @media screen and (max-width: 800px) {
  246. height: auto;
  247. background-size: cover;
  248. .intro{
  249. box-sizing: border-box;
  250. position: static;
  251. -webkit-transform: translate(0, 0);
  252. -moz-transform: translate(0, 0);
  253. -ms-transform: translate(0, 0);
  254. -o-transform: translate(0, 0);
  255. transform: translate(0, 0);
  256. padding: 30px;
  257. width: 100%;
  258. h1{
  259. font-size: 24px;
  260. }
  261. p{
  262. margin: 10px 0 20px;
  263. }
  264. }
  265. }
  266. @media screen and (max-width: 600px) {
  267. .intro{
  268. .bottom{
  269. padding-right: 0;
  270. }
  271. .l{
  272. float: none;
  273. text-align: center;
  274. }
  275. .r{
  276. float: none;
  277. margin: 0 auto;
  278. }
  279. }
  280. }
  281. }
  282. .whole {
  283. .hd {
  284. text-align: center;
  285. h1 {
  286. position: relative;
  287. padding: 25px 0;
  288. font-size: 36px;
  289. line-height: 1.5em;
  290. &:after{
  291. position: absolute;
  292. left: 50%;
  293. bottom: 5px;
  294. -webkit-transform: translate(-50%, 0);
  295. -moz-transform: translate(-50%, 0);
  296. -ms-transform: translate(-50%, 0);
  297. -o-transform: translate(-50%, 0);
  298. transform: translate(-50%, 0);
  299. width: 110px;
  300. height: 1px;
  301. content: '';
  302. background-color: #ebebeb;
  303. }
  304. &.white{
  305. color: #fff;
  306. &:after{
  307. background-color: #fff;
  308. }
  309. }
  310. }
  311. p {
  312. padding: 25px 285px;
  313. color: #959595;
  314. }
  315. }
  316. &.bt{
  317. border-top: #e7e7e7 solid 1px;
  318. @media screen and (max-width: 800px) {
  319. margin: 0 15px;
  320. }
  321. }
  322. &.half{
  323. position: absolute;
  324. left: 0;
  325. top: 50%;
  326. -webkit-transform: translate(0, -50%);
  327. -moz-transform: translate(0, -50%);
  328. -ms-transform: translate(0, -50%);
  329. -o-transform: translate(0, -50%);
  330. transform: translate(0, -50%);
  331. width: 50%;
  332. .hd{
  333. h1{
  334. padding-top: 0;
  335. }
  336. }
  337. @media screen and (max-width: 800px) {
  338. position: static;
  339. float: left;
  340. width: 100%;
  341. -webkit-transform: translate(0);
  342. -moz-transform: translate(0);
  343. -ms-transform: translate(0);
  344. -o-transform: translate(0);
  345. transform: translate(0);
  346. .hd{
  347. h1{
  348. padding-top: 25px;
  349. }
  350. }
  351. }
  352. }
  353. @media screen and (max-width: 800px){
  354. .hd{
  355. p{
  356. padding: 25px 30px;
  357. }
  358. }
  359. .bd{
  360. margin-top: 0;
  361. }
  362. }
  363. }
  364. .cf{
  365. @include clearfix;
  366. }
  367. .floor-1{
  368. padding-top: 20px;
  369. @media screen and (max-width: 800px){
  370. margin: 0;
  371. padding: 0;
  372. }
  373. }
  374. .about-r{
  375. float: right;
  376. li{
  377. margin-top: 40px;
  378. margin-bottom: 80px;
  379. padding-left: 110px;
  380. width: 475px;
  381. }
  382. i{
  383. float: left;
  384. margin-left: -110px;
  385. }
  386. h2{
  387. font-size: 28px;
  388. color: #00acf1;
  389. }
  390. p{
  391. margin-top: 20px;
  392. line-height: 25px;
  393. color: #959595;
  394. }
  395. @media screen and (max-width: 800px){
  396. padding: 0 30px;
  397. li{
  398. box-sizing: border-box;
  399. margin-bottom: 40px;
  400. width: 100%;
  401. }
  402. }
  403. }
  404. .about-l{
  405. float: left;
  406. width: 430px;
  407. @media screen and (max-width: 800px){
  408. display: none;
  409. }
  410. }
  411. .floor-2{
  412. padding-top: 70px;
  413. height: 638px;
  414. background: url("../images/floor-2_bg.jpg") no-repeat center;
  415. @media screen and (max-width: 800px){
  416. padding: 0;
  417. height: auto;
  418. background-size: cover;
  419. }
  420. }
  421. .zs{
  422. display: table;
  423. table-layout: fixed;
  424. margin-top: 70px;
  425. width: 100%;
  426. .item{
  427. display: table-cell;
  428. text-align: center;
  429. }
  430. .qrcode{
  431. display: inline-block;
  432. opacity: 0;
  433. padding: 20px;
  434. width: 225px;
  435. font-size: 18px;
  436. color: #fff;
  437. background-color: rgba(#000, .2);
  438. }
  439. img{
  440. width: 100%;
  441. }
  442. h3{
  443. margin: 20px 0;
  444. font-size: 24px;
  445. }
  446. i{
  447. margin-right: 10px;
  448. vertical-align: middle;
  449. }
  450. @media screen and (max-width: 800px){
  451. margin: 30px 0;
  452. .qrcode{
  453. width: 165px;
  454. }
  455. }
  456. @media screen and (max-width: 600px){
  457. display: block;
  458. .item{
  459. display: block;
  460. margin: 30px 0;
  461. }
  462. }
  463. }
  464. .floor-3{
  465. padding: 40px 0 300px;
  466. background-color: #f4fbff;
  467. @media screen and (max-width: 800px){
  468. padding: 0;
  469. }
  470. }
  471. .relative{
  472. position: relative;
  473. }
  474. .pt{
  475. @include clearfix;
  476. padding-top: 30px;
  477. li{
  478. box-sizing: border-box;
  479. float: left;
  480. padding: 30px 30px 30px 110px;
  481. width: 50%;
  482. }
  483. h2{
  484. margin-bottom: 10px;
  485. font-size: 28px;
  486. }
  487. p{
  488. color: #959595;
  489. }
  490. i{
  491. float: left;
  492. margin-left: -90px;
  493. }
  494. @media screen and (max-width: 630px){
  495. li{
  496. width: 100%;
  497. }
  498. }
  499. }
  500. .pt-img{
  501. position: absolute;
  502. bottom: -470px;
  503. left: 50%;
  504. margin-left: -500px;
  505. width: 1000px;
  506. img{
  507. width: 100%;
  508. }
  509. @media screen and (max-width: 800px){
  510. display: none;
  511. }
  512. }
  513. .co{
  514. @include clearfix;
  515. margin: 30px 0 50px;
  516. li{
  517. box-sizing: border-box;
  518. float: left;
  519. padding: 10px;
  520. width: 20%;
  521. }
  522. img{
  523. width: 100%;
  524. }
  525. @media screen and (max-width: 800px){
  526. li{
  527. width: 25%;
  528. }
  529. }
  530. @media screen and (max-width: 600px){
  531. li{
  532. width: 33.3%;
  533. }
  534. }
  535. @media screen and (max-width: 400px){
  536. li{
  537. width: 50%;
  538. }
  539. }
  540. }
  541. .footer{
  542. font-size: 16px;
  543. color: #95a9b1;
  544. .t{
  545. padding: 60px 0 40px;
  546. background-color: #212331;
  547. .l{
  548. margin-right: 120px;
  549. }
  550. p{
  551. margin-top: 20px;
  552. }
  553. i{
  554. margin-right: 7px;
  555. vertical-align: top;
  556. }
  557. }
  558. .b{
  559. padding: 20px 0;
  560. background-color: #181828;
  561. img{
  562. width: 147px;
  563. }
  564. }
  565. h3{
  566. position: relative;
  567. margin-bottom: 41px;
  568. font-size: 18px;
  569. color: #fff;
  570. &:after{
  571. position: absolute;
  572. left: 80px;
  573. bottom: 0;
  574. border: 6px solid;
  575. border-color: transparent transparent #00acf1 #00acf1;
  576. width: 0;
  577. height: 0;
  578. content: '';
  579. }
  580. }
  581. .qrcode{
  582. padding: 10px;
  583. width: 155px;
  584. background-color: rgba(#000, .2);
  585. text-align: center;
  586. color: #fff;
  587. img{
  588. width: 100%;
  589. }
  590. p{
  591. margin: 10px 0;
  592. }
  593. }
  594. a{
  595. color: #95a9b1;
  596. }
  597. .blue{
  598. color: #00acf1;
  599. }
  600. .mt13{
  601. margin-top: 13px;
  602. }
  603. @media screen and (max-width: 800px){
  604. .t{
  605. padding: 30px 150px;
  606. text-align: center;
  607. .l{
  608. float: none;
  609. display: inline-block;
  610. margin-right: 0;
  611. }
  612. }
  613. .qrcode{
  614. float: none;
  615. margin: 20px auto 0;
  616. }
  617. h3{
  618. margin-bottom: 20px;
  619. &:after{
  620. left: 50%;
  621. -webkit-transform: translate(45px, 0);
  622. -moz-transform: translate(45px, 0);
  623. -ms-transform: translate(45px, 0);
  624. -o-transform: translate(45px, 0);
  625. transform: translate(45px, 0);
  626. }
  627. }
  628. .b{
  629. padding: 20px 30px;
  630. }
  631. }
  632. @media screen and (max-width: 600px){
  633. .t{
  634. padding: 30px;
  635. }
  636. }
  637. @media screen and (max-width: 400px){
  638. .b{
  639. text-align: center;
  640. .l{
  641. float: none;
  642. }
  643. .r{
  644. float: none;
  645. margin-top: 20px;
  646. }
  647. }
  648. }
  649. }
  650. .floor-4{
  651. padding-top: 220px;
  652. @media screen and (max-width: 800px){
  653. padding-top: 0;
  654. }
  655. }
  656. .jm{
  657. @include clearfix;
  658. padding: 30px 220px;
  659. background: url("../images/jm_bg.png") no-repeat center;
  660. background-size: 200px;
  661. a{
  662. position: relative;
  663. display: inline-block;
  664. padding-top: 70px;
  665. width: 200px;
  666. text-align: center;
  667. color: #202020;
  668. &:hover{
  669. i{
  670. top: -30px;
  671. }
  672. }
  673. }
  674. i{
  675. position: absolute;
  676. left: 50%;
  677. top: 0;
  678. -webkit-transform: translate(-50%, 0);
  679. -moz-transform: translate(-50%, 0);
  680. -ms-transform: translate(-50%, 0);
  681. -o-transform: translate(-50%, 0);
  682. transform: translate(-50%, 0);
  683. transition: top .3s linear;
  684. }
  685. .txt{
  686. position: relative;
  687. z-index: 10;
  688. border-top: #e1e1e1 solid 1px;
  689. background-color: #fff;
  690. }
  691. h2{
  692. padding-top: 10px;
  693. line-height: 1.4;
  694. font-size: 28px;
  695. }
  696. p{
  697. color: #959595;
  698. }
  699. @media screen and (max-width: 800px){
  700. padding: 30px 50px;
  701. background: none;
  702. }
  703. @media screen and (max-width: 600px){
  704. padding: 0 100px;
  705. text-align: center;
  706. a{
  707. float: none;
  708. margin: 30px 0;
  709. }
  710. }
  711. }