about.scss 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918
  1. // 關於我頁面
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. font-family: 微軟正黑體;
  7. }
  8. $desktop: 1025px;
  9. $table: 1024px;
  10. $moblie: 767px;
  11. $Font-color: #fff;
  12. $title-color: #646464;
  13. $bgcolor: #f4fffc;
  14. $navbgcolor: #a9d0c5;
  15. body {
  16. position: relative;
  17. // background: url(../img/about/banner/banner.webp), linear-gradient(180deg, transparent 1%, #363636 1%);
  18. // background-size: 120vw;
  19. // background-repeat: no-repeat;
  20. background: #363636;
  21. @media screen and(max-width:$moblie) {
  22. background: #363636;
  23. }
  24. .arrow {
  25. position: fixed;
  26. right: 30px;
  27. bottom:150px;
  28. width: 45px;
  29. height: 40px;
  30. z-index: 10;
  31. @media screen and(max-width:$moblie) {
  32. top: 525px;
  33. }
  34. @media screen and(max-width:350px) {
  35. top: 445px;
  36. }
  37. a {
  38. margin: 30px 0px;
  39. }
  40. .icon {
  41. @media screen and(max-width:$moblie) {
  42. display: none;
  43. }
  44. }
  45. &:hover {
  46. box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  47. }
  48. }
  49. }
  50. #Navigation {
  51. background: rgba(112, 112, 112, 0.5);
  52. height: 4.5vw;
  53. width: 100vw !important;
  54. position: fixed;
  55. z-index: 10;
  56. @media screen and(max-width:$table) {
  57. height: 8vw;
  58. }
  59. @media screen and(max-width:$moblie) {
  60. height: 15vw;
  61. position: fixed;
  62. z-index: 5;
  63. background: rgba(0, 0, 0, 0.8);
  64. }
  65. #nav {
  66. width: 100vw;
  67. margin: 0 auto;
  68. }
  69. // rwd要注意高度
  70. #logo {
  71. padding-top: 0.5vw;
  72. @media screen and(max-width:$moblie) {
  73. padding-top: 0;
  74. }
  75. img {
  76. width: 120px;
  77. }
  78. }
  79. #link {
  80. text-align: right;
  81. padding: 1.5vw 3vw;
  82. @media screen and(max-width:$table) {
  83. padding-top: 2vw;
  84. }
  85. @media screen and(max-width:$moblie) {
  86. display: none;
  87. }
  88. a {
  89. text-decoration: none;
  90. color: $Font-color;
  91. letter-spacing: 1px;
  92. font-size: 0.9rem;
  93. font-weight: 600;
  94. cursor: pointer;
  95. padding: 5px;
  96. position: relative;
  97. img {
  98. object-fit: cover;
  99. }
  100. }
  101. }
  102. #menu-btn1 {
  103. position: absolute;
  104. right: 1vw;
  105. top: 1vw;
  106. width: 18vw;
  107. z-index: 6;
  108. @media screen and(min-width:$desktop) {
  109. display: none;
  110. }
  111. @media screen and(min-width:768px) {
  112. display: none;
  113. }
  114. }
  115. }
  116. #Navigation2 {
  117. background: rgba(112, 112, 112, 0.75);
  118. height: 4.5vw;
  119. width: 100vw !important;
  120. position: fixed;
  121. bottom: 0px;
  122. z-index: 10;
  123. @media screen and(min-width:$desktop) {
  124. display: none;
  125. }
  126. @media screen and(max-width:$table) {
  127. height: 8vw;
  128. }
  129. @media screen and(max-width:$moblie) {
  130. height: 15vw;
  131. position: fixed;
  132. z-index: 5;
  133. background: rgba(0, 0, 0, 0.8);
  134. }
  135. #nav {
  136. width: 90vw;
  137. margin: 0 auto;
  138. display: grid;
  139. grid-template-columns: repeat(5, 1fr);
  140. text-align: center;
  141. a {
  142. text-decoration: none;
  143. color: $Font-color;
  144. letter-spacing: 1px;
  145. font-size: 0.9rem;
  146. font-weight: 600;
  147. cursor: pointer;
  148. position: relative;
  149. img {
  150. margin: 10px auto;
  151. object-fit: cover;
  152. }
  153. }
  154. }
  155. // rwd要注意高度
  156. }
  157. #banner {
  158. position: relative;
  159. .banner-filter {
  160. position: absolute;
  161. z-index:-1;
  162. .bannerfilter{
  163. width: 100vw;
  164. object-fit: cover;
  165. height: 50vw;
  166. animation-delay:0.1s;
  167. @media screen and(max-width:$moblie) {
  168. height: 80vh;
  169. }
  170. }
  171. }
  172. #about-title {
  173. position: absolute;
  174. right: 50px;
  175. top: 100px;
  176. @media screen and(max-width:$moblie) {
  177. display: none;
  178. }
  179. }
  180. #bannerdes-img {
  181. position: absolute;
  182. z-index: -2;
  183. opacity: 1;
  184. .banner-img {
  185. width: 100vw;
  186. height: 50vw;
  187. object-fit: cover;
  188. @media screen and(max-width:$moblie) {
  189. height: 80vh;
  190. }
  191. }
  192. }
  193. @media screen and(max-width:$moblie) {
  194. // background-image: url(../img/about/banner/banner-m2.png);
  195. background-size: 110vw;
  196. background-repeat: no-repeat;
  197. }
  198. #banner-container {
  199. padding-top: 15vw;
  200. width: 90vw;
  201. @media screen and(max-width:$moblie) {
  202. width: 95vw;
  203. }
  204. .banner-des-about {
  205. @media screen and(max-width:$moblie) {
  206. display: none;
  207. }
  208. .banner-1{
  209. .btn{
  210. color:#fff;
  211. width: 60px;
  212. height: 40px;
  213. box-shadow:none;
  214. :focus{
  215. outline: 0 !important;
  216. box-shadow:none;
  217. }
  218. img{
  219. width: 24px;
  220. object-fit: cover;
  221. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  222. }
  223. }
  224. }
  225. .banner-2 {
  226. img {
  227. @media screen and(max-width:$moblie) {
  228. display: none;
  229. }
  230. }
  231. }
  232. .banner-3 {
  233. img {
  234. margin-bottom: -52px;
  235. }
  236. }
  237. }
  238. .banner-m {
  239. @media screen and(min-width:$desktop) {
  240. display: none;
  241. }
  242. .bannerm-1 {
  243. @media screen and(max-width:$moblie) {
  244. padding-right: 5px;
  245. padding-left: 7px;
  246. }
  247. .btn{
  248. color:#fff;
  249. width: 55px;
  250. height: 40px;
  251. box-shadow:none;
  252. @media screen and(max-width:350px) {
  253. width: 50px;
  254. height: 40px;
  255. }
  256. :focus{
  257. outline: 0 !important;
  258. box-shadow:none;
  259. }
  260. img{
  261. width: 22px;
  262. object-fit: cover;
  263. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  264. }
  265. }
  266. @media screen and(max-width:$moblie) {
  267. margin: 0;
  268. }
  269. background: rgba(141, 194, 31, 0.8);
  270. .banner1-1 {
  271. font-size: 18px;
  272. }
  273. }
  274. }
  275. ul {
  276. position: static;
  277. border-top-right-radius:30px;
  278. border-bottom-right-radius:30px;
  279. text-align: center;
  280. background: rgba(141, 194, 31, 0.8);
  281. @media screen and(min-width:$desktop) {
  282. margin-left: 8px;
  283. margin-bottom: 10px;
  284. }
  285. @media screen and(max-width:$moblie) {
  286. margin-top: 5vw;
  287. width: 100vw;
  288. }
  289. .nav-item {
  290. padding: 10px;
  291. @media screen and(max-width:$moblie) {
  292. padding: 6px;
  293. }
  294. .nav-item-achive {
  295. position: relative;
  296. &:before{
  297. content: url(../img/about/sec01/item-arrow.png);
  298. display: block;
  299. width: 100%;
  300. height: 8px;
  301. position: absolute;
  302. left: 5%;
  303. bottom: 0;
  304. transition: all 0.3s;
  305. opacity: 1;
  306. }
  307. }
  308. }
  309. }
  310. // 公司簡介
  311. .tab-content {
  312. .sec01{
  313. // 公司簡介
  314. .condition {
  315. padding:4vw 24px;
  316. font-size: 16px;
  317. padding-bottom: 10vw;
  318. @media screen and(max-width:$moblie) {
  319. padding:10vw 18px;
  320. padding-bottom: 15vw;
  321. }
  322. @media screen and(max-width:350px) {
  323. padding:10vw 10px;
  324. }
  325. table{
  326. th{
  327. width: 100px;
  328. padding: .4rem .1rem;
  329. @media screen and(max-width:350px) {
  330. width: 35%;
  331. }
  332. }
  333. td{
  334. padding: .4rem .1rem;
  335. }
  336. }
  337. }
  338. .idea {
  339. padding:4vw 24px;
  340. font-size: 16px;
  341. padding-bottom: 10vw;
  342. background-size: contain;
  343. background-repeat: no-repeat;
  344. background-blend-mode: overlay;
  345. @media screen and(max-width:$moblie) {
  346. padding:10vw 18px;
  347. padding-bottom: 15vw;
  348. }
  349. }
  350. .contact {
  351. padding-bottom: 10vw;
  352. padding:4vw 24px;
  353. font-size: 16px;
  354. background-size: contain;
  355. background-repeat: no-repeat;
  356. background-blend-mode: overlay;
  357. word-break: break-all;
  358. @media screen and(max-width:$moblie) {
  359. padding:10vw 5px;
  360. padding-bottom: 15vw;
  361. }
  362. a {
  363. text-decoration: none;
  364. color: #fff;
  365. }
  366. table{
  367. th{
  368. width: 100px;
  369. padding: .4rem .1rem;
  370. @media screen and(max-width:350px) {
  371. width: 35%;
  372. }
  373. }
  374. td{
  375. padding: .4rem .1rem;
  376. }
  377. }
  378. }
  379. }
  380. // 個案賞析
  381. .sec02,
  382. .sec04 {
  383. .col-lg-4 {
  384. position: relative;
  385. background: rgb(128, 171, 41);
  386. transition: 0.3s ease-in-out;
  387. cursor: pointer;
  388. .sec02-p-m {
  389. color: #fff;
  390. text-align: center;
  391. font-size: 14px;
  392. transition: 0.3s;
  393. transition: 0.3s ease-in-out;
  394. @media screen and(min-width:$desktop) {
  395. width: 100%;
  396. position: absolute;
  397. top: 35%;
  398. left: 0px;
  399. font-size: 18px;
  400. opacity: 0;
  401. }
  402. }
  403. &:hover {
  404. .play1 {
  405. opacity: 1;
  406. }
  407. .sec02-p-m,
  408. .sec03-p-m {
  409. opacity: 1;
  410. }
  411. img {
  412. opacity: 0.2;
  413. @media screen and(max-width:$moblie) {
  414. opacity: 1;
  415. }
  416. }
  417. }
  418. @media screen and(max-width:$moblie) {
  419. background: none;
  420. }
  421. img {
  422. object-fit: cover;
  423. width: 100% !important;
  424. height: 17vw ;
  425. opacity: 1;
  426. transition: 0.3s ease-in-out;
  427. @media screen and(max-width:$moblie) {
  428. height: 50vw;
  429. }
  430. }
  431. .sec03-img-m {
  432. text-align: center;
  433. width: 100%;
  434. position: absolute;
  435. top: 100px;
  436. }
  437. .sec03-img-m1 {
  438. text-align: center;
  439. width: 100%;
  440. position: absolute;
  441. @media screen and(max-width:$moblie) {
  442. top: 80px;
  443. }
  444. .play1 {
  445. width: 50px !important;
  446. height: 50px !important;
  447. @media screen and(max-width:$moblie) {
  448. display: none;
  449. }
  450. }
  451. }
  452. }
  453. }
  454. .sec03 {
  455. .col-lg-4 {
  456. position: relative;
  457. background: rgb(128, 171, 41);
  458. transition: 0.3s ease-in-out;
  459. cursor: pointer;
  460. .sec03-p-m {
  461. color: #fff;
  462. text-align: center;
  463. font-size: 14px;
  464. transition: 0.3s;
  465. transition: 0.3s ease-in-out;
  466. @media screen and(min-width:$desktop) {
  467. width: 100%;
  468. position: absolute;
  469. top: 100px;
  470. left: 0px;
  471. font-size: 16px;
  472. opacity: 0;
  473. }
  474. }
  475. .sec03-p-m {
  476. @media screen and(min-width:$desktop) {
  477. position: absolute;
  478. top: 30%;
  479. left: 0px;
  480. background-size: contain;
  481. opacity: 0;
  482. }
  483. }
  484. &:hover {
  485. .play1 {
  486. opacity: 1;
  487. }
  488. .sec02-p-m,
  489. .sec03-p-m {
  490. opacity: 1;
  491. }
  492. img {
  493. opacity: 0.2;
  494. @media screen and(max-width:$moblie) {
  495. opacity: 1;
  496. }
  497. }
  498. }
  499. @media screen and(max-width:$moblie) {
  500. background: none;
  501. }
  502. img {
  503. object-fit: cover;
  504. width: 100% !important;
  505. height: 17vw;
  506. opacity: 1;
  507. transition: 0.3s ease-in-out;
  508. @media screen and(max-width:$moblie) {
  509. height: 50vw;
  510. }
  511. }
  512. .sec03-img-m {
  513. text-align: center;
  514. width: 100%;
  515. position: absolute;
  516. top: 100px;
  517. }
  518. .sec03-img-m1 {
  519. text-align: center;
  520. width: 100%;
  521. position: absolute;
  522. @media screen and(max-width:$moblie) {
  523. top: 80px;
  524. }
  525. .play1 {
  526. width: 50px !important;
  527. height: 50px !important;
  528. }
  529. }
  530. }
  531. .sec03-1 {
  532. .sec05-row {
  533. background: rgba(0, 0, 0, 0.8);
  534. text-align: center;
  535. height: 600px;
  536. @media screen and(max-width:$moblie) {
  537. height: 300px;
  538. }
  539. p {
  540. letter-spacing: 5px;
  541. }
  542. }
  543. }
  544. }
  545. .sec04 {
  546. .col-lg-4 {
  547. position: relative;
  548. background: rgb(128, 171, 41);
  549. transition: 0.3s ease-in-out;
  550. cursor: pointer;
  551. .sec04-p-m {
  552. color: #fff;
  553. text-align: center;
  554. font-size: 14px;
  555. transition: 0.3s;
  556. transition: 0.3s ease-in-out;
  557. @media screen and(min-width:$desktop) {
  558. width: 100%;
  559. position: absolute;
  560. top: 50px;
  561. left: 0px;
  562. font-size: 18px;
  563. opacity: 0;
  564. }
  565. }
  566. &:hover {
  567. .play1 {
  568. opacity: 1;
  569. }
  570. .sec04-p-m {
  571. opacity: 1;
  572. }
  573. img {
  574. opacity: 0.2;
  575. @media screen and(max-width:$moblie) {
  576. opacity: 1;
  577. }
  578. }
  579. }
  580. @media screen and(max-width:$moblie) {
  581. background: none;
  582. }
  583. img {
  584. object-fit: cover;
  585. width: 100% !important;
  586. height: 16.5vw ;
  587. opacity: 1;
  588. transition: 0.3s ease-in-out;
  589. @media screen and(max-width:$moblie) {
  590. height: 50vw;
  591. }
  592. }
  593. .sec03-img-m {
  594. text-align: center;
  595. width: 100%;
  596. position: absolute;
  597. top: 100px;
  598. }
  599. .sec03-img-m1 {
  600. text-align: center;
  601. width: 100%;
  602. position: absolute;
  603. @media screen and(max-width:$moblie) {
  604. top: 80px;
  605. }
  606. .play1 {
  607. width: 50px !important;
  608. height: 50px !important;
  609. }
  610. }
  611. }
  612. .sec04-1 {
  613. .sec05-row {
  614. background: rgba(0, 0, 0, 0.8);
  615. text-align: center;
  616. width: 100% !important;
  617. height: 600px;
  618. @media screen and(max-width:$moblie) {
  619. height: 300px;
  620. }
  621. p {
  622. letter-spacing: 5px;
  623. }
  624. }
  625. }
  626. }
  627. }
  628. }
  629. }
  630. // 頁尾 footer
  631. #footer {
  632. background: #363636;
  633. text-align: center;
  634. width: 80vw;
  635. margin: 0 auto !important;
  636. padding-top: 2vw;
  637. padding:1vw;
  638. @media screen and(max-width:$moblie) {
  639. width: 95vw;
  640. padding: 30vw 5vw;
  641. }
  642. a {
  643. text-decoration: none;
  644. color: #fff;
  645. }
  646. p {
  647. color: #fff;
  648. }
  649. }
  650. #modal-dialog{
  651. width: 90vw;
  652. .modal-content{
  653. width: 80vw;
  654. @media screen and(max-width:$moblie) {
  655. width: 90vw;
  656. }
  657. }
  658. }
  659. #light-box{
  660. #form-lightbox{
  661. width: 70vw;
  662. margin: 0 auto;
  663. @media screen and(max-width:$moblie) {
  664. width: 80vw;
  665. }
  666. .form-title {
  667. margin: 0 auto;
  668. color: #5c5248;
  669. h1 {
  670. text-align: center;
  671. font-size: 32px;
  672. font-weight: 900;
  673. @media screen and(max-width:$moblie) {
  674. font-size: 24px;
  675. }
  676. @media screen and(max-width:350px) {
  677. font-size: 20px;
  678. }
  679. span{
  680. font-size:38px;
  681. @media screen and(max-width:$moblie) {
  682. font-size:28px;
  683. }
  684. @media screen and(max-width:350px) {
  685. font-size: 24px;
  686. }
  687. }
  688. }
  689. }
  690. .contact-text {
  691. margin: 0 auto;
  692. .text-p {
  693. font-size: 16px;
  694. font-weight: 600;
  695. @media screen and(max-width:350px) {
  696. font-size: 14px;
  697. }
  698. }
  699. }
  700. .contact-form1{
  701. margin: 0 auto;
  702. #contact-form {
  703. margin-top: 10px;
  704. .col-lg-2{
  705. .divider{
  706. position: relative;
  707. width: 1px;
  708. height:100%;
  709. border-left: 1px solid rgba(0,0,0,0.12);
  710. }
  711. }
  712. #loc,
  713. #type,
  714. #modal,
  715. #budget,
  716. #square,
  717. #style,
  718. #datepicker,
  719. #email,
  720. #name,
  721. #phone,
  722. #gender {
  723. width: 100%;
  724. height: 50px;
  725. margin: 10px 0;
  726. padding-left: 10px;
  727. border: 1px solid rgba(0, 0, 0, 0.3);
  728. padding: 10px 15px;
  729. font-size: 16px;
  730. border-radius: 3px;
  731. appearance: none;
  732. background: url(../img/icondown.webp) 95% 50% no-repeat scroll transparent;
  733. background-size: 10px 10px;
  734. background-color: #fff;
  735. }
  736. #form-left {
  737. margin: 0 auto;
  738. #rooms,
  739. #livingroom,
  740. #bathroom {
  741. width: 28.8%;
  742. border: 1px solid rgba(0, 0, 0, 0.3);
  743. height: 50px;
  744. margin: 15px 0;
  745. padding-right: 50px;
  746. padding: 10px 15px;
  747. font-size: 16px;
  748. border-radius: 3px;
  749. appearance: none;
  750. background: url(../img/icondown.webp) 85% 50% no-repeat scroll transparent;
  751. background-size: 10px 10px;
  752. background-color: #fff;
  753. @media screen and(max-width:$moblie) {
  754. width: 31%;
  755. }
  756. }
  757. #square,
  758. #datepicker {
  759. background: none;
  760. background-color: #fff;
  761. }
  762. }
  763. #form-right {
  764. margin: 0 auto;
  765. hr{
  766. @media screen and(min-width:$desktop) {
  767. display: none;
  768. }
  769. }
  770. }
  771. #fb-button {
  772. margin-top: 12px;
  773. width: 100%;
  774. height: 50px;
  775. border: 1px solid #3b5998;
  776. text-align: right;
  777. padding-right: 60px;
  778. background-size: 32px 32px;
  779. border-radius: 3px;
  780. background-color: #fff;
  781. transition: 0.3s;
  782. position: relative;
  783. @media screen and(max-width:$moblie) {
  784. margin: 10px 0;
  785. }
  786. p {
  787. position: absolute;
  788. top:1vw;
  789. left:12vw;
  790. color: #626262;
  791. @media screen and(max-width:$moblie) {
  792. left:32vw;
  793. top:3vw;
  794. }
  795. }
  796. #line {
  797. position: absolute;
  798. color: #9b9b9b;
  799. opacity: 0.8;;
  800. left:8vw;
  801. top:-0.1vw;
  802. @media screen and(max-width:$moblie) {
  803. left:20vw;
  804. }
  805. }
  806. img {
  807. position: absolute;
  808. left: 50px;
  809. top: 10px;
  810. width: 32px;
  811. height: 32px;
  812. @media screen and(max-width:$moblie) {
  813. left: 20px;
  814. }
  815. filter: invert(29%) sepia(70%) saturate(712%) hue-rotate(186deg) brightness(89%) contrast(81%);
  816. }
  817. &:hover {
  818. background-color: #2a4f91;
  819. color: #fff;
  820. img {
  821. filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  822. }
  823. p {
  824. color: #fff;
  825. }
  826. #line {
  827. color: #fff;
  828. }
  829. }
  830. }
  831. a {
  832. text-decoration: none;
  833. color: #ee751b;
  834. font-weight: 900;
  835. }
  836. #email,
  837. #name,
  838. #phone {
  839. background: none;
  840. background-color: #fff;
  841. }
  842. }
  843. }
  844. .btn {
  845. margin: 50px auto;
  846. border: none;
  847. padding: 15px;
  848. background: #edbc96;
  849. color: #4b515e;
  850. font-size: 20px;
  851. width: 400px;
  852. border-radius: 10px;
  853. @media screen and(max-width:$moblie) {
  854. width: 100%;
  855. }
  856. &:hover {
  857. color: #fff;
  858. background-color: #745c54;
  859. }
  860. }
  861. .form-btn {
  862. text-align: center;
  863. position: relative;
  864. width: 70vw;
  865. margin: 0 auto;
  866. @media screen and(max-width:$moblie) {
  867. width: 80vw;
  868. margin: 0 auto;
  869. }
  870. #phone1 {
  871. position: absolute;
  872. left: 500px;
  873. }
  874. }
  875. }
  876. }