about.scss 28 KB

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