style.scss 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. $maincolor: #ef7086;
  7. $subcolor: #f4c0d0;
  8. $desktop: 1025px;
  9. $table: 1024px;
  10. $moblie: 767px;
  11. #top {
  12. overflow-x: hidden !important;
  13. }
  14. .violetbeauty_line {
  15. margin: 0px auto 20px;
  16. border: 1px solid transparent;
  17. background: linear-gradient(to right, white, white), linear-gradient(to right, $subcolor, #d76478);
  18. background-clip: padding-box, border-box;
  19. background-origin: padding-box, border-box;
  20. width: 50px;
  21. opacity: 1 !important;
  22. }
  23. .playbutton {
  24. cursor: pointer;
  25. position: absolute;
  26. top: 50%;
  27. left: 50%;
  28. transform: translate(-50%, -50%);
  29. z-index: 101;
  30. transition: 0.3s;
  31. &:hover {
  32. opacity: 0.8;
  33. }
  34. }
  35. .likeSee__state {
  36. display: -webkit-box;
  37. display: -ms-flexbox;
  38. display: flex;
  39. -webkit-box-pack: justify;
  40. -ms-flex-pack: justify;
  41. justify-content: space-between;
  42. -webkit-box-align: center;
  43. -ms-flex-align: center;
  44. align-items: center;
  45. img {
  46. width: 40px;
  47. }
  48. }
  49. .learn_more {
  50. margin-top: 20px;
  51. padding: 5px;
  52. background: none;
  53. color: $subcolor;
  54. border-radius: 5px;
  55. border: 1px solid $subcolor;
  56. // border:none;
  57. transition: 0.3s;
  58. &:hover {
  59. color: #fff;
  60. background: $subcolor;
  61. }
  62. }
  63. .course_name_title {
  64. font-size: 1.2rem;
  65. color: $maincolor;
  66. font-weight: 900;
  67. }
  68. .course_name_text {
  69. color: $subcolor;
  70. margin-bottom: 5px;
  71. font-size: 1rem;
  72. }
  73. .Discounted_price {
  74. font-size: 24px;
  75. font-weight: 600;
  76. }
  77. .violetbeauty_content_title {
  78. color: $maincolor;
  79. font-weight: 900;
  80. font-size: 1.8rem;
  81. }
  82. .violetbeauty_content_text {
  83. color: $maincolor;
  84. font-size: 1rem;
  85. }
  86. .features_title {
  87. font-weight: 300 !important;
  88. letter-spacing: 2px;
  89. font: 1.9375em "微軟正黑體";
  90. line-height: 25px;
  91. text-align: center;
  92. color: #333;
  93. width: 100%;
  94. margin-bottom: 1rem;
  95. }
  96. .Down_line {
  97. width: 300px;
  98. object-fit: cover;
  99. }
  100. .card {
  101. border: none;
  102. .card-body {
  103. padding: 0.1rem;
  104. margin-top: 15px;
  105. }
  106. }
  107. .violetbeauty_CTA {
  108. margin-top: 50px;
  109. padding: 10px 50px;
  110. border: 1px solid $subcolor;
  111. background: #fff;
  112. border-radius: 30px;
  113. color: $maincolor;
  114. position: relative;
  115. transition: 0.5s;
  116. a {
  117. color: $maincolor;
  118. }
  119. .cta_flower {
  120. position: absolute;
  121. width: 60px;
  122. left: -25px;
  123. bottom: -10px;
  124. transition: 0.5s;
  125. }
  126. &:hover {
  127. background: $maincolor;
  128. a {
  129. color: #fff;
  130. }
  131. color: #fff;
  132. .cta_flower {
  133. transform: rotate(360deg);
  134. }
  135. }
  136. }
  137. .navbar-nav {
  138. flex-direction: row;
  139. width: 70%;
  140. margin: 0 auto;
  141. .nav-item {
  142. white-space: nowrap;
  143. }
  144. .nav-link {
  145. font: 1.2rem 微軟正黑體;
  146. font-weight: 300 !important;
  147. padding: 0.5rem 1rem;
  148. margin: 5px 1rem;
  149. text-align: center;
  150. color: #9f9f9f;
  151. color: #000;
  152. letter-spacing: 0;
  153. border-bottom: 5px solid #ffffff;
  154. box-sizing: border-box;
  155. cursor: pointer;
  156. &:hover {
  157. color: $maincolor;
  158. }
  159. }
  160. }
  161. // 手機導覽頁
  162. #Navigation {
  163. background: #fff;
  164. opacity: 1;
  165. height: 4.5vw;
  166. width: 100vw !important;
  167. position: fixed;
  168. z-index: 100;
  169. @media screen and(max-width:$table) {
  170. height: 8vw;
  171. }
  172. @media screen and(max-width:$moblie) {
  173. height: 20vw;
  174. position: fixed;
  175. z-index: 5;
  176. }
  177. .menu {
  178. font-size: 28px;
  179. margin-top: 30px;
  180. color: #6c6c6c;
  181. }
  182. #nav {
  183. width: 100vw;
  184. margin: 0 auto;
  185. }
  186. // rwd要注意高度
  187. #logo {
  188. padding-top: 1vw;
  189. @media screen and(max-width:$moblie) {
  190. padding-top: 2vw;
  191. }
  192. img {
  193. width: 120px;
  194. }
  195. }
  196. #link {
  197. text-align: right;
  198. padding: 1.5vw 3vw;
  199. @media screen and(max-width:$moblie) {
  200. display: none;
  201. }
  202. a {
  203. text-decoration: none;
  204. color: #000;
  205. letter-spacing: 1px;
  206. font-size: 0.9rem;
  207. font-weight: 600;
  208. cursor: pointer;
  209. padding: 15px;
  210. position: relative;
  211. :hover {
  212. opacity: 0.8;
  213. }
  214. &:after {
  215. content: "";
  216. display: block;
  217. width: 80%;
  218. height: 3px;
  219. background-color: #fff;
  220. position: absolute;
  221. left: 12%;
  222. bottom: 0;
  223. transition: all 0.3s;
  224. opacity: 0;
  225. }
  226. &:hover:after {
  227. width: 80%;
  228. opacity: 1;
  229. }
  230. }
  231. }
  232. }
  233. // 手機彈跳視窗
  234. #menu-box {
  235. top: 20vw;
  236. height: 25vh;
  237. width: 100vw;
  238. position: fixed;
  239. z-index: 998;
  240. overflow: hidden;
  241. display: none;
  242. background: rgba(0, 0, 0, 0.8);
  243. @media screen and(min-width:$desktop) {
  244. display: none;
  245. }
  246. @media screen and(max-width:$moblie) {
  247. height: 100vh;
  248. }
  249. @media screen and(max-width:350px) {
  250. height: 55vh;
  251. }
  252. hr {
  253. display: inline-block;
  254. margin: 0px auto !important;
  255. width: 55vw;
  256. background: #fff;
  257. opacity: 1 !important;
  258. }
  259. #menu-box2 {
  260. width: 100vw;
  261. height: 25vh;
  262. background-color: $subcolor;
  263. opacity: 0.95;
  264. z-index: 999;
  265. text-align: center;
  266. @media screen and(max-width:$moblie) {
  267. height: 45vh;
  268. }
  269. @media screen and(max-width:350px) {
  270. height: 55vh;
  271. }
  272. #menu-link {
  273. display: grid;
  274. grid-template-columns: repeat(4, 1fr);
  275. width: 60vw;
  276. margin: 0 auto;
  277. }
  278. .menu-logo {
  279. opacity: 1;
  280. img {
  281. width: 7vw;
  282. }
  283. }
  284. a {
  285. display: inline-block;
  286. text-decoration: none;
  287. color: #fff;
  288. font-size: 16px;
  289. margin-top: 20px;
  290. font-weight: 900;
  291. @media screen and(max-width:$moblie) {
  292. margin-top: 4vw;
  293. }
  294. }
  295. .menu-text {
  296. width: 70vw;
  297. text-align: center;
  298. margin-bottom: 10px;
  299. border-bottom: 1px solid #fff;
  300. margin: 0 auto;
  301. padding-bottom: 10px;
  302. @media screen and(max-width:$moblie) {
  303. margin-bottom: 5px !important;
  304. }
  305. }
  306. }
  307. }
  308. .slick-dotted.slick-slider {
  309. margin-bottom: 0px !important;
  310. }
  311. .sec_content_right_text {
  312. margin-top: 30px;
  313. p {
  314. margin-bottom: 0.5rem;
  315. color: $maincolor;
  316. }
  317. }
  318. .banner-slide {
  319. @media screen and(max-width:$moblie) {
  320. padding-top: 60px;
  321. }
  322. }
  323. .news {
  324. margin: 100px 0px;
  325. .news-slide {
  326. width: 80%;
  327. margin: 0 auto;
  328. @media screen and(max-width:$moblie) {
  329. width: 95%;
  330. }
  331. .slick-prev,
  332. .slick-next {
  333. width: 50px;
  334. object-fit: cover;
  335. height: auto;
  336. filter: invert(52%) sepia(75%) saturate(602%) hue-rotate(306deg) brightness(102%) contrast(87%);
  337. @media screen and(max-width:$moblie) {
  338. width: 30px;
  339. }
  340. }
  341. .slick-prev {
  342. left: -50px;
  343. @media screen and(max-width:$moblie) {
  344. display: none;
  345. }
  346. }
  347. .slick-next {
  348. right: -50px;
  349. @media screen and(max-width:$moblie) {
  350. display: none;
  351. }
  352. }
  353. // .slick-prev:before{
  354. // content: "〈";
  355. // color:#000;
  356. // font-size: 72px;
  357. // font-weight: 900;
  358. // right:100px;
  359. // z-index: 900;
  360. // }
  361. .banner-slide-item {
  362. img {
  363. padding: 10px;
  364. width: 100% !important;
  365. @media screen and(max-width:$moblie) {
  366. padding: 0px;
  367. }
  368. }
  369. }
  370. .slick-dots {
  371. bottom: -15px;
  372. li {
  373. // margin-top: -50px;
  374. // 上右下左
  375. button:before {
  376. font-size: 16px;
  377. font-weight: 900;
  378. top: 15px;
  379. content: "○";
  380. color: $maincolor;
  381. }
  382. }
  383. li.slick-active button:before {
  384. opacity: 0.75;
  385. color: $maincolor;
  386. content: "●";
  387. }
  388. }
  389. }
  390. }
  391. .violetbeauty_sec00 {
  392. overflow: hidden;
  393. background-size: cover;
  394. background-attachment: fixed;
  395. background-position: left center;
  396. background-repeat: no-repeat;
  397. position: relative;
  398. @media screen and(max-width:$moblie) {
  399. // background-attachment: inherit;
  400. background-position: right center;
  401. }
  402. .bg {
  403. background: rgba(0, 0, 0, 0.4);
  404. width: 100%;
  405. height: 100%;
  406. padding: 100px 0;
  407. }
  408. hr {
  409. background: #fff;
  410. opacity: 1 !important;
  411. height: 1px;
  412. width: 40px;
  413. margin: 15px auto;
  414. }
  415. p {
  416. color: #fff;
  417. }
  418. h4 {
  419. color: #fff;
  420. }
  421. .violetbeauty_sec00_box {
  422. width: 80%;
  423. margin: 0 auto;
  424. @media screen and(max-width:$moblie) {
  425. width: 90%;
  426. }
  427. .sec00_content_left_img {
  428. width: 70%;
  429. box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  430. @media screen and(max-width:$moblie) {
  431. width: 80%;
  432. }
  433. }
  434. .sec00_content_right {
  435. text-align: center;
  436. margin-top: 30px;
  437. p {
  438. margin-bottom: 0.8rem;
  439. }
  440. }
  441. }
  442. }
  443. // .slick-prev:before{
  444. // content: "〈";
  445. // color:#000;
  446. // font-size: 72px;
  447. // font-weight: 900;
  448. // right:100px;
  449. // z-index: 900;
  450. // }
  451. // .banner-slide {
  452. // .slick-dots {
  453. // bottom: 30px;
  454. // li {
  455. // // margin-top: -50px;
  456. // // 上右下左
  457. // button:before {
  458. // font-size: 16px;
  459. // font-weight: 900;
  460. // top: 15px;
  461. // content: "○";
  462. // color: #82689d;
  463. // }
  464. // }
  465. // li.slick-active button:before {
  466. // opacity: 0.75;
  467. // color: #82689d;
  468. // content: "●";
  469. // }
  470. // }
  471. // }
  472. // .violetbeauty_sec00 {
  473. // background: #f8f2f6;
  474. // padding: 80px 0;
  475. // position: relative;
  476. // .sec00_img1 {
  477. // left: 0px;
  478. // bottom: 20px;
  479. // width: 300px;
  480. // opacity: 0.8;
  481. // }
  482. // .sec00_img2 {
  483. // right: 0px;
  484. // top: 50px;
  485. // width: 180px;
  486. // opacity: 0.8;
  487. // transform: rotate(-90deg);
  488. // }
  489. // .sec00_img3 {
  490. // right: 100px;
  491. // bottom: 80px;
  492. // width: 60px;
  493. // opacity: 0.5;
  494. // transform: rotate(-30deg);
  495. // }
  496. // .violetbeauty_sec00_box {
  497. // width: 80%;
  498. // margin: 0 auto;
  499. // .sec00_content_left_img {
  500. // width: 60%;
  501. // box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  502. // }
  503. // .sec00_content_right {
  504. // text-align: center;
  505. // margin-top: 50px;
  506. // }
  507. // }
  508. // }
  509. // .violetbeauty_sec01,
  510. // .violetbeauty_sec02 {
  511. // padding: 50px 0;
  512. // .slick-prev:before {
  513. // content: "";
  514. // }
  515. // .slick-next:before {
  516. // content: "";
  517. // }
  518. // .violetbeauty_sec01_box {
  519. // width: 80%;
  520. // margin: 0 auto;
  521. // }
  522. // .violetbeauty_sec01_content {
  523. // margin-top: 30px;
  524. // .sec01_slide_item {
  525. // padding: 20px;
  526. // img {
  527. // // width: 180px;
  528. // height: 250px;
  529. // object-fit: cover;
  530. // margin: 0 auto;
  531. // }
  532. // }
  533. // }
  534. // }
  535. // .violetbeauty_sec02 {
  536. // background: $subcolor;
  537. // .card {
  538. // background: $subcolor;
  539. // }
  540. // .violetbeauty_sec02_content {
  541. // margin-top: 30px;
  542. // .violetbeauty_sec02_sub_title {
  543. // font-family: "Noto Sans TC", sans-serif;
  544. // font-size: 20px;
  545. // font-weight: normal;
  546. // color: $maincolor;
  547. // }
  548. // b {
  549. // width: 10px;
  550. // height: 10px;
  551. // background: $maincolor;
  552. // transform: rotate(45deg);
  553. // margin: 1rem 0;
  554. // display: inline-block;
  555. // }
  556. // }
  557. // .sec02_slide_item {
  558. // padding: 30px;
  559. // }
  560. // .violetbeauty_service_img {
  561. // img {
  562. // width: 290px;
  563. // height: 290px;
  564. // object-fit: cover;
  565. // border-radius: 50%;
  566. // margin: 0 auto;
  567. // }
  568. // }
  569. // .violetbeauty_service p {
  570. // margin: 10px 0;
  571. // font-family: "Noto Sans TC", sans-serif;
  572. // font-size: 16px;
  573. // color: $maincolor;
  574. // display: inline-block;
  575. // width: 90%;
  576. // border-bottom: 1px dashed $maincolor;
  577. // padding: 0.5rem 0;
  578. // cursor: pointer;
  579. // }
  580. // // .violetbeauty_service_item,p{
  581. // // margin: 10px 0;
  582. // // font-family: 'Noto Sans TC', sans-serif;
  583. // // font-size: 16px;
  584. // // color: #CC7DB7;
  585. // // display: inline-block;
  586. // // width: 100%;
  587. // // border-bottom: 1px dashed $maincolor;
  588. // // padding:0 1rem;
  589. // // display: -webkit-box;
  590. // // display: -ms-flexbox;
  591. // // display: flex;
  592. // // -webkit-box-pack: justify;
  593. // // -ms-flex-pack: justify;
  594. // // justify-content: space-around;;
  595. // // -webkit-box-align: center;
  596. // // -ms-flex-align: center;
  597. // // align-items: center;
  598. // // }
  599. // }
  600. .sec01_course {
  601. background: #fff2f1;
  602. }
  603. .sec02_course {
  604. background: #fff;
  605. }
  606. .sec01_course,
  607. .sec02_course {
  608. // margin:80px 0;
  609. padding: 50px 0;
  610. // background: #fff2f1;
  611. .sec01_course_box {
  612. width: 80%;
  613. margin: 0 auto;
  614. background: #fff;
  615. @media screen and(max-width:$moblie) {
  616. width: 90%;
  617. }
  618. .sec01_course_text {
  619. text-align: center;
  620. padding: 15px 5.6%;
  621. margin-top: 80px;
  622. @media screen and(max-width:$moblie) {
  623. padding: 15px 2.8%;
  624. }
  625. del {
  626. font-size: 1.2rem;
  627. color: #888;
  628. }
  629. span {
  630. color: #ef7086;
  631. font-size: 1.6rem;
  632. @media screen and(max-width:$moblie) {
  633. font-size: 1.4rem;
  634. }
  635. }
  636. p {
  637. font-size: 14px;
  638. color: #555;
  639. padding: 15px 0 0;
  640. }
  641. .submitbutton {
  642. width: 80%;
  643. margin: 20px auto;
  644. border: none;
  645. padding: 10px 12px;
  646. background: $subcolor;
  647. color: #fff;
  648. font-size: 20px;
  649. border-radius: 0.25rem;
  650. text-align: center;
  651. vertical-align: middle;
  652. border: 1px solid $subcolor;
  653. &:hover {
  654. color: $subcolor;
  655. background-color: #fff;
  656. border: 1px solid $subcolor;
  657. }
  658. }
  659. }
  660. }
  661. }
  662. .violetbeauty_sec03 {
  663. padding: 100px 0;
  664. margin-bottom: 50px;
  665. position: relative;
  666. .sec03_img1 {
  667. position: absolute;
  668. left: 50px;
  669. top: 50px;
  670. opacity: 0.5;
  671. }
  672. .sec03_img2 {
  673. position: absolute;
  674. right: -120px;
  675. width: 400px;
  676. top: 40%;
  677. opacity: 0.5;
  678. transform: rotate(-70deg);
  679. }
  680. .sec03_img3 {
  681. position: absolute;
  682. right: 0px;
  683. opacity: 0.5;
  684. width: 250px;
  685. bottom: 50px;
  686. transform: scaleX(-1) rotate(19deg);
  687. -moz-transform: scaleX(-1) rotate(19deg);
  688. -webkit-transform: scaleX(-1) rotate(19deg);
  689. -o-transform: scaleX(-1) rotate(19deg);
  690. }
  691. .violetbeauty_sec03_box {
  692. width: 75%;
  693. margin: 0 auto;
  694. @media screen and(max-width:$moblie) {
  695. width: 90%;
  696. }
  697. .violetbeauty_sec03_content {
  698. margin-top: 100px;
  699. @media screen and(max-width:$moblie) {
  700. margin-top: 50px;
  701. }
  702. }
  703. }
  704. .violetbeauty_contract_form {
  705. width: 70%;
  706. margin: 0 auto;
  707. @media screen and(max-width:$moblie) {
  708. width: 90%;
  709. }
  710. .submitbutton {
  711. width: 100%;
  712. margin: 16px auto;
  713. border: none;
  714. padding: 16px 12px;
  715. background: $subcolor;
  716. color: #fff;
  717. font-size: 20px;
  718. border-radius: 0.25rem;
  719. text-align: center;
  720. vertical-align: middle;
  721. &:hover {
  722. color: $subcolor;
  723. background-color: #fff;
  724. border: 1px solid $subcolor;
  725. }
  726. }
  727. #time,
  728. #datepicker {
  729. width: 45%;
  730. padding: 10px 15px;
  731. border-radius: 3px;
  732. margin: 10px 0px;
  733. border: 1px solid rgba(0, 0, 0, 0.3);
  734. }
  735. #time {
  736. margin-left: 8%;
  737. }
  738. #phone,
  739. #email,
  740. #loc,
  741. #name,
  742. #course_name {
  743. width: 100%;
  744. padding: 10px 15px;
  745. font-size: 16px;
  746. border-radius: 3px;
  747. margin: 10px 0px;
  748. border: 1px solid rgba(0, 0, 0, 0.3);
  749. }
  750. }
  751. }
  752. // .violetbeauty_sec01{
  753. // width: 80%;
  754. // margin:0 auto ;
  755. // .features{
  756. // width: 100%;
  757. // height: auto;
  758. // margin: 17px 0 0 0;
  759. // }
  760. // .violetbeauty_sec01_content{
  761. // margin-top: 30px;
  762. // .sec01_content_left{
  763. // width: 85%;
  764. // .sec01_content_box{
  765. // margin-top: 20%;
  766. // .sec01_content_title_1{
  767. // color: #452767;
  768. // font-size: 3.5rem;
  769. // text-align: center;
  770. // }
  771. // .sec01_content_title_2{
  772. // h3{
  773. // font-size:1.6rem ;
  774. // text-align: center;
  775. // color: #452767;
  776. // letter-spacing: 3px;
  777. // font-weight:600
  778. // }
  779. // }
  780. // .sec01_content_text{
  781. // p{
  782. // font-size: 1.2rem;
  783. // text-align: center;
  784. // }
  785. // }
  786. // }
  787. // }
  788. // .sec01_content_right{
  789. // .sec01_content_img{
  790. // width: 100%;
  791. // // margin: 0 auto;
  792. // }
  793. // }
  794. // }
  795. // }
  796. .logo {
  797. img {
  798. width: 300px;
  799. // height: 66px;
  800. object-fit: cover;
  801. }
  802. }
  803. .violetbeauty_logo {
  804. width: 300px;
  805. object-fit: cover;
  806. }
  807. #footer {
  808. // background: #edcde1;
  809. background: #fff2f1;
  810. color: #6c6c6c;
  811. .phone {
  812. transform: rotate(100deg);
  813. }
  814. .footer_content_box {
  815. padding: 50px 0;
  816. margin: 0 auto;
  817. width: 80%;
  818. @media screen and(max-width:$moblie) {
  819. width: 90%;
  820. }
  821. li a {
  822. width: 100%;
  823. text-align: left;
  824. color: #6c6c6c;
  825. }
  826. .border_line {
  827. margin-top: 30px;
  828. background: #ccc;
  829. opacity: 1 !important;
  830. margin-bottom: 0.5rem;
  831. }
  832. }
  833. .socail-link {
  834. a {
  835. margin-right: 8px;
  836. }
  837. }
  838. .footer_text_box {
  839. @media screen and(max-width:$moblie) {
  840. width: 80%;
  841. margin: 0 auto;
  842. }
  843. h3 {
  844. font-size: 1rem;
  845. }
  846. h3,
  847. p {
  848. letter-spacing: 2px;
  849. }
  850. .navbar-nav {
  851. width: auto;
  852. .nav-link {
  853. margin: 0;
  854. padding: 0;
  855. border-bottom: none;
  856. transition: all 0.2s;
  857. font-size: 1rem;
  858. text-align: center;
  859. &:hover {
  860. color: $maincolor;
  861. }
  862. }
  863. .nav-item {
  864. // width: 80px;
  865. margin-right: 20px;
  866. margin-bottom: 10px;
  867. min-width: auto;
  868. }
  869. }
  870. }
  871. .footer_text {
  872. margin-top: 15px;
  873. @media screen and(max-width:$moblie) {
  874. font-size: 0.85rem;
  875. }
  876. }
  877. .socail-link {
  878. margin-top: 30px;
  879. @media screen and(max-width:$moblie) {
  880. text-align: center;
  881. }
  882. a {
  883. transition: 0.3s;
  884. &:hover {
  885. opacity: 0.8;
  886. }
  887. }
  888. }
  889. .store {
  890. width: 85%;
  891. margin: 0 auto;
  892. @media screen and(max-width:$moblie) {
  893. margin-top: 50px;
  894. }
  895. p {
  896. margin-top: 10px;
  897. }
  898. h3 {
  899. font-size: 1.5rem;
  900. font-weight: 300 !important;
  901. }
  902. p {
  903. margin-bottom: 0.5rem;
  904. font-weight: 300 !important;
  905. }
  906. }
  907. .footer_logo {
  908. img {
  909. position: relative;
  910. right: 30px;
  911. width: 300px;
  912. object-fit: cover;
  913. }
  914. }
  915. .google_map {
  916. width: 47%;
  917. padding: 15px 20px;
  918. background: none;
  919. color: #3f51b5;
  920. border: 1px solid #3f51b5;
  921. border-radius: 3px;
  922. transition: 0.3s;
  923. overflow-x: hidden;
  924. a {
  925. text-decoration: none;
  926. color: #3f51b5;
  927. }
  928. &:hover {
  929. background: #3f51b5;
  930. color: #fff;
  931. a {
  932. color: #fff;
  933. }
  934. }
  935. }
  936. .line_Reserve {
  937. width: 45%;
  938. margin-left: 5%;
  939. padding: 15px 20px;
  940. background: #52b448;
  941. border: 1px solid #52b448;
  942. color: #fff;
  943. border: none;
  944. border-radius: 3px;
  945. transition: 0.3s;
  946. overflow-x: hidden;
  947. a {
  948. color: #fff;
  949. text-decoration: none;
  950. }
  951. &:hover {
  952. background: #fff;
  953. color: #52b448;
  954. a {
  955. color: #52b448;
  956. }
  957. }
  958. }
  959. }
  960. #footer-secondary {
  961. background: #fff2f1;
  962. color: #6c6c6c;
  963. .footer_content_box {
  964. padding: 50px 0;
  965. margin: 0 auto;
  966. width: 80%;
  967. @media (max-width: 767px) {
  968. width: 85%;
  969. }
  970. }
  971. h3 {
  972. font-size: 1rem;
  973. }
  974. h3,
  975. p {
  976. letter-spacing: 2px;
  977. }
  978. li a {
  979. width: 100%;
  980. text-align: left;
  981. color: #6c6c6c;
  982. }
  983. .navbar-nav {
  984. width: auto;
  985. .nav-link {
  986. margin: 0;
  987. padding: 0;
  988. border-bottom: none;
  989. transition: all 0.2s;
  990. &:hover {
  991. color: $maincolor;
  992. }
  993. }
  994. .nav-item {
  995. min-width: 105px;
  996. }
  997. @media (max-width: 767px) {
  998. .nav-item {
  999. min-width: auto;
  1000. width: 90px;
  1001. }
  1002. .nav-link {
  1003. font-size: 1rem;
  1004. text-align: center;
  1005. }
  1006. }
  1007. }
  1008. .socail-link {
  1009. img {
  1010. image-rendering: -webkit-optimize-contrast;
  1011. filter: invert(42%) sepia(0%) saturate(1863%) hue-rotate(226deg) brightness(100%) contrast(96%);
  1012. &:hover {
  1013. // #ef7086
  1014. // filter: invert(66%) sepia(60%) saturate(2844%) hue-rotate(307deg) brightness(99%) contrast(90%);
  1015. opacity: 0.8;
  1016. }
  1017. }
  1018. }
  1019. .footer_text {
  1020. margin-top: 15px;
  1021. @media (max-width: 767px) {
  1022. p {
  1023. font-size: 0.85rem;
  1024. }
  1025. }
  1026. }
  1027. .store_name {
  1028. color: $maincolor;
  1029. }
  1030. .store {
  1031. width: 85%;
  1032. margin: 0 auto;
  1033. p {
  1034. margin-top: 10px;
  1035. }
  1036. }
  1037. .footer_logo {
  1038. img {
  1039. position: relative;
  1040. right: 30px;
  1041. width: 250px;
  1042. object-fit: cover;
  1043. }
  1044. }
  1045. }
  1046. .gototop {
  1047. position: fixed;
  1048. right: 3vw;
  1049. bottom: 0.5vw;
  1050. z-index: 10;
  1051. border-radius: 80px;
  1052. font-size: 32px;
  1053. color: #fff;
  1054. width: 50px;
  1055. height: 50px;
  1056. background: $subcolor;
  1057. cursor: pointer;
  1058. }
  1059. /* banner */
  1060. .facial-banner,
  1061. .massage-banner,
  1062. .store-banner {
  1063. padding: 150px 0;
  1064. position: relative;
  1065. background-size: cover;
  1066. background-repeat: no-repeat;
  1067. image-rendering: -webkit-optimize-contrast;
  1068. p {
  1069. position: absolute;
  1070. right: 50%;
  1071. transform: translate(50%, 50%);
  1072. font-size: 40px;
  1073. color: white;
  1074. text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  1075. }
  1076. }
  1077. /* 臉部課程-facial start */
  1078. .facial-banner {
  1079. background-image: url(/img/banner-facial.jpg);
  1080. background-position: 25% 25%;
  1081. p {
  1082. bottom: 45%;
  1083. }
  1084. }
  1085. .facial-content {
  1086. margin: 100px auto;
  1087. p {
  1088. margin: 0;
  1089. line-height: 32px;
  1090. }
  1091. img {
  1092. height: 250px;
  1093. object-fit: cover;
  1094. }
  1095. button {
  1096. display: none;
  1097. padding: 7px 30px;
  1098. position: absolute;
  1099. bottom: -20px;
  1100. right: 50%;
  1101. transform: translate(50%, 0);
  1102. color: #ffffff;
  1103. background-color: $maincolor;
  1104. white-space: nowrap;
  1105. font-weight: bold;
  1106. transition: all 0.3s;
  1107. @media screen and(max-width:$moblie) {
  1108. display: block;
  1109. }
  1110. &::after {
  1111. content: "";
  1112. display: inline-block;
  1113. vertical-align: middle;
  1114. width: 8px;
  1115. height: 8px;
  1116. margin: 0 0 2px 10px;
  1117. border: 1px solid #fff;
  1118. border-left: 0 none;
  1119. border-bottom: 0 none;
  1120. -moz-transform: rotate(45deg);
  1121. -ms-transform: rotate(45deg);
  1122. -webkit-transform: rotate(45deg);
  1123. transform: rotate(45deg);
  1124. }
  1125. &:hover {
  1126. color: #ffffff;
  1127. background-color: $subcolor;
  1128. }
  1129. }
  1130. .card {
  1131. cursor: pointer;
  1132. border: 1px solid #cccccc;
  1133. .card-body {
  1134. padding: 10px 20px 20px;
  1135. }
  1136. &:hover {
  1137. button {
  1138. display: block;
  1139. }
  1140. .img-box img {
  1141. transform: scale(1.1, 1.1);
  1142. }
  1143. }
  1144. }
  1145. .badge {
  1146. height: 30px;
  1147. line-height: 1.9;
  1148. background-color: $maincolor;
  1149. }
  1150. .img-box {
  1151. overflow: hidden;
  1152. img {
  1153. width: 100%;
  1154. height: auto;
  1155. object-fit: contain;
  1156. transition: all 1s;
  1157. image-rendering: -webkit-optimize-contrast;
  1158. }
  1159. }
  1160. }
  1161. .modal-header {
  1162. border-bottom: none !important;
  1163. }
  1164. .modal-body {
  1165. letter-spacing: 1px;
  1166. p {
  1167. line-height: 32px;
  1168. }
  1169. h5 {
  1170. font-size: 25px;
  1171. }
  1172. img {
  1173. border-radius: 20px;
  1174. }
  1175. .price-box span {
  1176. font-size: 18px;
  1177. font-weight: bold;
  1178. color: $maincolor;
  1179. &:last-child {
  1180. font-size: 16px;
  1181. font-weight: normal;
  1182. text-decoration: line-through;
  1183. }
  1184. }
  1185. .recommend-item {
  1186. display: flex;
  1187. flex-direction: column;
  1188. align-items: center;
  1189. justify-content: center;
  1190. border-top: 1px dashed $subcolor;
  1191. span {
  1192. width: 100px;
  1193. padding: 10px;
  1194. margin: 25px 0 15px;
  1195. padding-left: 15px;
  1196. letter-spacing: 5px;
  1197. font-size: 16px;
  1198. color: #ffffff;
  1199. background-color: $maincolor;
  1200. }
  1201. li {
  1202. margin: 5px 0;
  1203. }
  1204. }
  1205. section {
  1206. height: 75%;
  1207. }
  1208. }
  1209. .time-box {
  1210. img {
  1211. width: 18px;
  1212. height: 18px;
  1213. margin-right: 5px;
  1214. image-rendering: -webkit-optimize-contrast;
  1215. }
  1216. p {
  1217. margin: 0;
  1218. font-size: 14px;
  1219. color: $maincolor;
  1220. }
  1221. span {
  1222. font-size: 20px;
  1223. font-weight: bold;
  1224. }
  1225. }
  1226. .modal-body img {
  1227. image-rendering: -webkit-optimize-contrast;
  1228. }
  1229. /* 臉部課程-facial end */
  1230. /* 門市資訊-store start */
  1231. .store-banner {
  1232. background-image: url(/img/banner-store.jpg);
  1233. background-position: 25% 30%;
  1234. p {
  1235. bottom: 45%;
  1236. }
  1237. }
  1238. .store-content {
  1239. margin: 150px auto;
  1240. letter-spacing: 1px;
  1241. i {
  1242. color: #b2adae;
  1243. font-size: 20px;
  1244. }
  1245. h3 {
  1246. margin-bottom: 20px;
  1247. font-weight: bold;
  1248. color: $maincolor;
  1249. }
  1250. img {
  1251. width: 100%;
  1252. border-radius: 20px 0 0 20px;
  1253. @media (max-width: 767px) {
  1254. border-radius: 20px 20px 0 0;
  1255. }
  1256. }
  1257. .info-box {
  1258. width: 270px;
  1259. margin: auto;
  1260. @media (max-width: 375px) {
  1261. width: 100%;
  1262. }
  1263. }
  1264. .Down_line {
  1265. width: 230px;
  1266. margin-top: -20px;
  1267. }
  1268. .row {
  1269. margin: 15%;
  1270. border: 1px solid #f4c0d0;
  1271. border-radius: 20px;
  1272. @media (max-width: 1200px) {
  1273. margin: 10%;
  1274. }
  1275. @media (max-width: 992px) {
  1276. margin: 0px;
  1277. }
  1278. }
  1279. .google_map {
  1280. width: 100%;
  1281. padding: 7px 15px;
  1282. margin-top: 1px;
  1283. background: none;
  1284. color: #3f51b5;
  1285. border: 1px solid #3f51b5;
  1286. border-radius: 3px;
  1287. -webkit-transition: 0.3s;
  1288. transition: 0.3s;
  1289. font-size: 15px;
  1290. letter-spacing: 1px;
  1291. overflow-x: hidden;
  1292. a {
  1293. text-decoration: none;
  1294. color: #3f51b5;
  1295. }
  1296. &:hover {
  1297. background: #3f51b5;
  1298. color: #fff;
  1299. a {
  1300. color: #fff;
  1301. }
  1302. }
  1303. }
  1304. .line_Reserve {
  1305. width: 100%;
  1306. margin-left: 10%;
  1307. padding: 8px 15px;
  1308. background: #52b448;
  1309. color: #fff;
  1310. border: 1px solid #52b448;
  1311. border-radius: 5px;
  1312. transition: 0.3s;
  1313. font-size: 15px;
  1314. letter-spacing: 1px;
  1315. overflow-x: hidden;
  1316. a {
  1317. color: #fff;
  1318. text-decoration: none;
  1319. }
  1320. &:hover {
  1321. background: #fff;
  1322. color: #52b448;
  1323. a {
  1324. color: #52b448;
  1325. }
  1326. }
  1327. @media (max-width: 575px) {
  1328. margin-left: 0;
  1329. margin-top: 5%;
  1330. }
  1331. }
  1332. @media (max-width: 992px) {
  1333. p {
  1334. font-size: 0.9rem;
  1335. }
  1336. h3 {
  1337. font-size: 1.3rem;
  1338. }
  1339. }
  1340. }
  1341. /* 門市資訊-store end */
  1342. /* 身體課程-massage start */
  1343. .massage-banner {
  1344. background-image: url(/img/banner-massage.jpg);
  1345. background-position: center;
  1346. p {
  1347. bottom: 45%;
  1348. }
  1349. }
  1350. .massage-modal-item {
  1351. .modal-body .badge {
  1352. width: auto;
  1353. padding-left: 13px;
  1354. letter-spacing: 2px;
  1355. }
  1356. }
  1357. /* 身體課程-massage end */
  1358. /* 關於我們-about start */
  1359. .about-content {
  1360. margin-bottom: 100px;
  1361. p {
  1362. padding: 0 60px;
  1363. line-height: 35px;
  1364. text-align: justify;
  1365. }
  1366. .title {
  1367. font-size: 30px;
  1368. letter-spacing: 3px;
  1369. font-weight: bold;
  1370. }
  1371. .container {
  1372. margin: 15% 5%;
  1373. }
  1374. .bg-item {
  1375. height: 120%;
  1376. background-color: #fff2f1;
  1377. position: absolute;
  1378. z-index: -1;
  1379. bottom: -10%;
  1380. left: -5%;
  1381. width: 90%;
  1382. }
  1383. .iframe-box {
  1384. position: relative;
  1385. width: 100%;
  1386. height: 0;
  1387. padding-bottom: 73%;
  1388. }
  1389. .iframe-box video {
  1390. position: absolute;
  1391. top: 0;
  1392. left: 0;
  1393. // width: 100%;
  1394. height: 100%;
  1395. box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  1396. }
  1397. .icon-box {
  1398. .row {
  1399. padding: 0 30px;
  1400. @media (max-width: 1200px) {
  1401. padding-left: 13%;
  1402. }
  1403. @media (max-width: 768px) {
  1404. padding: 0;
  1405. }
  1406. }
  1407. .col-6 {
  1408. flex-direction: row;
  1409. @media (max-width: 767px) {
  1410. flex-direction: column;
  1411. }
  1412. }
  1413. img {
  1414. width: 50px;
  1415. image-rendering: -webkit-optimize-contrast;
  1416. filter: invert(71%) sepia(13%) saturate(3318%) hue-rotate(302deg) brightness(90%) contrast(110%);
  1417. }
  1418. span {
  1419. margin: 15px;
  1420. font-weight: bold;
  1421. }
  1422. .icon-item {
  1423. padding: 15px;
  1424. margin: auto 0;
  1425. border: 1px solid $subcolor;
  1426. border-radius: 100%;
  1427. }
  1428. }
  1429. @media (max-width: 1200px) {
  1430. .container {
  1431. margin: 10% auto;
  1432. p {
  1433. padding: 0;
  1434. }
  1435. }
  1436. .content-box {
  1437. margin-top: 100px;
  1438. }
  1439. }
  1440. }
  1441. /* 關於我們-about end */
  1442. .bottom_line {
  1443. margin: 0px auto 20px;
  1444. border: 1px solid transparent;
  1445. background: linear-gradient(to right, white, white), linear-gradient(to right, $subcolor, #d76478);
  1446. background-clip: padding-box, border-box;
  1447. background-origin: padding-box, border-box;
  1448. width: 50px;
  1449. }