about.scss 28 KB

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