style.scss 28 KB

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