style.scss 28 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519
  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. letter-spacing: 1px;
  623. @media screen and(max-width:$moblie) {
  624. padding: 15px 2.8%;
  625. }
  626. del {
  627. font-size: 1.2rem;
  628. color: #888;
  629. }
  630. span {
  631. color: #ef7086;
  632. font-size: 1.6rem;
  633. @media screen and(max-width:$moblie) {
  634. font-size: 1.4rem;
  635. }
  636. }
  637. p {
  638. font-size: 14px;
  639. color: #555;
  640. padding: 15px 0 0;
  641. }
  642. .submitbutton {
  643. width: 80%;
  644. margin: 20px auto;
  645. border: none;
  646. padding: 10px 12px;
  647. background: $subcolor;
  648. color: #fff;
  649. font-size: 20px;
  650. border-radius: 0.25rem;
  651. text-align: center;
  652. vertical-align: middle;
  653. border: 1px solid $subcolor;
  654. &:hover {
  655. color: $subcolor;
  656. background-color: #fff;
  657. border: 1px solid $subcolor;
  658. }
  659. }
  660. }
  661. }
  662. }
  663. .violetbeauty_sec03 {
  664. padding: 100px 0;
  665. margin-bottom: 50px;
  666. position: relative;
  667. letter-spacing: 1px;
  668. .sec03_img1 {
  669. position: absolute;
  670. left: 50px;
  671. top: 50px;
  672. opacity: 0.5;
  673. }
  674. .sec03_img2 {
  675. position: absolute;
  676. right: -120px;
  677. width: 400px;
  678. top: 40%;
  679. opacity: 0.5;
  680. transform: rotate(-70deg);
  681. }
  682. .sec03_img3 {
  683. position: absolute;
  684. right: 0px;
  685. opacity: 0.5;
  686. width: 250px;
  687. bottom: 50px;
  688. transform: scaleX(-1) rotate(19deg);
  689. -moz-transform: scaleX(-1) rotate(19deg);
  690. -webkit-transform: scaleX(-1) rotate(19deg);
  691. -o-transform: scaleX(-1) rotate(19deg);
  692. }
  693. .violetbeauty_sec03_box {
  694. width: 75%;
  695. margin: 0 auto;
  696. @media screen and(max-width:$moblie) {
  697. width: 90%;
  698. }
  699. .violetbeauty_sec03_content {
  700. margin-top: 100px;
  701. @media screen and(max-width:$moblie) {
  702. margin-top: 50px;
  703. }
  704. }
  705. }
  706. .violetbeauty_contract_form {
  707. width: 70%;
  708. margin: 0 auto;
  709. @media screen and(max-width:$moblie) {
  710. width: 90%;
  711. }
  712. .submitbutton {
  713. width: 100%;
  714. margin: 16px auto;
  715. border: none;
  716. padding: 16px 12px;
  717. background: $subcolor;
  718. color: #fff;
  719. font-size: 20px;
  720. border-radius: 0.25rem;
  721. text-align: center;
  722. vertical-align: middle;
  723. &:hover {
  724. color: $subcolor;
  725. background-color: #fff;
  726. border: 1px solid $subcolor;
  727. }
  728. }
  729. #time,
  730. #datepicker {
  731. width: 45%;
  732. padding: 10px 15px;
  733. border-radius: 3px;
  734. margin: 10px 0px;
  735. border: 1px solid rgba(0, 0, 0, 0.3);
  736. }
  737. #time {
  738. margin-left: 8%;
  739. }
  740. #phone,
  741. #email,
  742. #loc,
  743. #name,
  744. #course_name {
  745. width: 100%;
  746. padding: 10px 15px;
  747. font-size: 16px;
  748. border-radius: 3px;
  749. margin: 10px 0px;
  750. border: 1px solid rgba(0, 0, 0, 0.3);
  751. }
  752. }
  753. }
  754. // .violetbeauty_sec01{
  755. // width: 80%;
  756. // margin:0 auto ;
  757. // .features{
  758. // width: 100%;
  759. // height: auto;
  760. // margin: 17px 0 0 0;
  761. // }
  762. // .violetbeauty_sec01_content{
  763. // margin-top: 30px;
  764. // .sec01_content_left{
  765. // width: 85%;
  766. // .sec01_content_box{
  767. // margin-top: 20%;
  768. // .sec01_content_title_1{
  769. // color: #452767;
  770. // font-size: 3.5rem;
  771. // text-align: center;
  772. // }
  773. // .sec01_content_title_2{
  774. // h3{
  775. // font-size:1.6rem ;
  776. // text-align: center;
  777. // color: #452767;
  778. // letter-spacing: 3px;
  779. // font-weight:600
  780. // }
  781. // }
  782. // .sec01_content_text{
  783. // p{
  784. // font-size: 1.2rem;
  785. // text-align: center;
  786. // }
  787. // }
  788. // }
  789. // }
  790. // .sec01_content_right{
  791. // .sec01_content_img{
  792. // width: 100%;
  793. // // margin: 0 auto;
  794. // }
  795. // }
  796. // }
  797. // }
  798. .logo {
  799. img {
  800. width: 300px;
  801. // height: 66px;
  802. object-fit: cover;
  803. }
  804. }
  805. .violetbeauty_logo {
  806. width: 300px;
  807. object-fit: cover;
  808. }
  809. #footer {
  810. // background: #edcde1;
  811. background: #fff2f1;
  812. color: #6c6c6c;
  813. .phone {
  814. transform: rotate(100deg);
  815. }
  816. .footer_content_box {
  817. padding: 50px 0;
  818. margin: 0 auto;
  819. width: 80%;
  820. letter-spacing: 1px;
  821. @media screen and(max-width:$moblie) {
  822. width: 90%;
  823. }
  824. li a {
  825. width: 100%;
  826. text-align: left;
  827. color: #6c6c6c;
  828. }
  829. .border_line {
  830. margin-top: 30px;
  831. background: #ccc;
  832. opacity: 1 !important;
  833. margin-bottom: 0.5rem;
  834. }
  835. }
  836. .socail-link {
  837. a {
  838. margin-right: 8px;
  839. }
  840. }
  841. .footer_text_box {
  842. @media screen and(max-width:$moblie) {
  843. width: 80%;
  844. margin: 0 auto;
  845. }
  846. h3 {
  847. font-size: 1rem;
  848. }
  849. h3,
  850. p {
  851. letter-spacing: 2px;
  852. }
  853. .navbar-nav {
  854. width: auto;
  855. .nav-link {
  856. margin: 0;
  857. padding: 0;
  858. border-bottom: none;
  859. transition: all 0.2s;
  860. font-size: 1rem;
  861. text-align: center;
  862. &:hover {
  863. color: $maincolor;
  864. }
  865. }
  866. .nav-item {
  867. // width: 80px;
  868. margin-right: 20px;
  869. margin-bottom: 10px;
  870. min-width: auto;
  871. }
  872. }
  873. }
  874. .footer_text {
  875. margin-top: 15px;
  876. @media screen and(max-width:$moblie) {
  877. font-size: 0.85rem;
  878. }
  879. }
  880. .socail-link {
  881. margin-top: 30px;
  882. @media screen and(max-width:$moblie) {
  883. text-align: center;
  884. }
  885. a {
  886. transition: 0.3s;
  887. &:hover {
  888. opacity: 0.8;
  889. }
  890. }
  891. }
  892. .store {
  893. width: 85%;
  894. margin: 0 auto;
  895. @media screen and(max-width:$moblie) {
  896. margin-top: 50px;
  897. }
  898. p {
  899. margin-top: 10px;
  900. }
  901. h3 {
  902. font-size: 1.5rem;
  903. font-weight: 300 !important;
  904. }
  905. p {
  906. margin-bottom: 0.5rem;
  907. font-weight: 300 !important;
  908. }
  909. }
  910. .footer_logo {
  911. img {
  912. position: relative;
  913. right: 30px;
  914. width: 300px;
  915. object-fit: cover;
  916. }
  917. }
  918. .google_map {
  919. width: 100%;
  920. padding: 14px 20px;
  921. background: none;
  922. color: #3f51b5;
  923. border: 1px solid #3f51b5;
  924. border-radius: 3px;
  925. transition: 0.3s;
  926. overflow-x: hidden;
  927. a {
  928. text-decoration: none;
  929. color: #3f51b5;
  930. }
  931. &:hover {
  932. background: #3f51b5;
  933. color: #fff;
  934. a {
  935. color: #fff;
  936. }
  937. }
  938. }
  939. .line_Reserve {
  940. width: 100%;
  941. padding: 15px 20px;
  942. background: #52b448;
  943. border: 1px solid #52b448;
  944. color: #fff;
  945. border: none;
  946. border-radius: 3px;
  947. transition: 0.3s;
  948. overflow-x: hidden;
  949. a {
  950. color: #fff;
  951. text-decoration: none;
  952. }
  953. &:hover {
  954. background: #fff;
  955. color: #52b448;
  956. a {
  957. color: #52b448;
  958. }
  959. }
  960. }
  961. }
  962. #footer-secondary {
  963. background: #fff2f1;
  964. color: #6c6c6c;
  965. .footer_content_box {
  966. padding: 50px 0;
  967. margin: 0 auto;
  968. width: 80%;
  969. @media (max-width: 767px) {
  970. width: 85%;
  971. }
  972. }
  973. h3 {
  974. font-size: 1rem;
  975. }
  976. h3,
  977. p {
  978. letter-spacing: 2px;
  979. }
  980. li a {
  981. width: 100%;
  982. text-align: left;
  983. color: #6c6c6c;
  984. }
  985. .navbar-nav {
  986. width: auto;
  987. .nav-link {
  988. margin: 0;
  989. padding: 0;
  990. border-bottom: none;
  991. transition: all 0.2s;
  992. &:hover {
  993. color: $maincolor;
  994. }
  995. }
  996. .nav-item {
  997. min-width: 105px;
  998. }
  999. @media (max-width: 767px) {
  1000. .nav-item {
  1001. min-width: auto;
  1002. width: 90px;
  1003. }
  1004. .nav-link {
  1005. font-size: 1rem;
  1006. text-align: center;
  1007. }
  1008. }
  1009. }
  1010. .socail-link {
  1011. img {
  1012. image-rendering: -webkit-optimize-contrast;
  1013. filter: invert(42%) sepia(0%) saturate(1863%) hue-rotate(226deg) brightness(100%) contrast(96%);
  1014. &:hover {
  1015. // #ef7086
  1016. // filter: invert(66%) sepia(60%) saturate(2844%) hue-rotate(307deg) brightness(99%) contrast(90%);
  1017. opacity: 0.8;
  1018. }
  1019. }
  1020. }
  1021. .footer_text {
  1022. margin-top: 15px;
  1023. @media (max-width: 767px) {
  1024. p {
  1025. font-size: 0.85rem;
  1026. }
  1027. }
  1028. }
  1029. .store_name {
  1030. color: $maincolor;
  1031. }
  1032. .store {
  1033. width: 85%;
  1034. margin: 0 auto;
  1035. p {
  1036. margin-top: 10px;
  1037. }
  1038. }
  1039. .footer_logo {
  1040. img {
  1041. position: relative;
  1042. right: 30px;
  1043. width: 250px;
  1044. object-fit: cover;
  1045. }
  1046. }
  1047. }
  1048. .gototop {
  1049. position: fixed;
  1050. right: 3vw;
  1051. bottom: 0.5vw;
  1052. z-index: 10;
  1053. border-radius: 80px;
  1054. font-size: 32px;
  1055. color: #fff;
  1056. width: 50px;
  1057. height: 50px;
  1058. background: $subcolor;
  1059. cursor: pointer;
  1060. }
  1061. /* banner */
  1062. .facial-banner,
  1063. .massage-banner,
  1064. .store-banner {
  1065. padding: 150px 0;
  1066. position: relative;
  1067. background-size: cover;
  1068. background-repeat: no-repeat;
  1069. image-rendering: -webkit-optimize-contrast;
  1070. p {
  1071. position: absolute;
  1072. right: 50%;
  1073. transform: translate(50%, 50%);
  1074. font-size: 40px;
  1075. color: white;
  1076. text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  1077. }
  1078. }
  1079. /* 臉部課程-facial start */
  1080. .facial-banner {
  1081. background-image: url(/img/banner-facial.jpg);
  1082. background-position: 25% 25%;
  1083. p {
  1084. bottom: 45%;
  1085. }
  1086. }
  1087. .facial-content {
  1088. margin: 100px auto;
  1089. p {
  1090. margin: 0;
  1091. line-height: 32px;
  1092. }
  1093. img {
  1094. height: 250px;
  1095. object-fit: cover;
  1096. }
  1097. button {
  1098. display: none;
  1099. padding: 7px 30px;
  1100. position: absolute;
  1101. bottom: -20px;
  1102. right: 50%;
  1103. transform: translate(50%, 0);
  1104. color: #ffffff;
  1105. background-color: $maincolor;
  1106. white-space: nowrap;
  1107. font-weight: bold;
  1108. transition: all 0.3s;
  1109. @media screen and(max-width:$moblie) {
  1110. display: block;
  1111. }
  1112. &::after {
  1113. content: "";
  1114. display: inline-block;
  1115. vertical-align: middle;
  1116. width: 8px;
  1117. height: 8px;
  1118. margin: 0 0 2px 10px;
  1119. border: 1px solid #fff;
  1120. border-left: 0 none;
  1121. border-bottom: 0 none;
  1122. -moz-transform: rotate(45deg);
  1123. -ms-transform: rotate(45deg);
  1124. -webkit-transform: rotate(45deg);
  1125. transform: rotate(45deg);
  1126. }
  1127. &:hover {
  1128. color: #ffffff;
  1129. background-color: $subcolor;
  1130. }
  1131. }
  1132. .card {
  1133. cursor: pointer;
  1134. border: 1px solid #cccccc;
  1135. .card-body {
  1136. padding: 10px 20px 20px;
  1137. }
  1138. &:hover {
  1139. button {
  1140. display: block;
  1141. }
  1142. .img-box img {
  1143. transform: scale(1.1, 1.1);
  1144. }
  1145. }
  1146. }
  1147. .badge {
  1148. height: 30px;
  1149. line-height: 1.9;
  1150. background-color: $maincolor;
  1151. }
  1152. .img-box {
  1153. overflow: hidden;
  1154. img {
  1155. width: 100%;
  1156. height: auto;
  1157. object-fit: contain;
  1158. transition: all 1s;
  1159. image-rendering: -webkit-optimize-contrast;
  1160. }
  1161. }
  1162. }
  1163. .modal-header {
  1164. border-bottom: none !important;
  1165. }
  1166. .modal-body {
  1167. letter-spacing: 1px;
  1168. p {
  1169. line-height: 32px;
  1170. }
  1171. h5 {
  1172. font-size: 25px;
  1173. }
  1174. img {
  1175. border-radius: 20px;
  1176. }
  1177. .price-box span {
  1178. font-size: 18px;
  1179. font-weight: bold;
  1180. color: $maincolor;
  1181. &:last-child {
  1182. font-size: 16px;
  1183. font-weight: normal;
  1184. text-decoration: line-through;
  1185. }
  1186. }
  1187. .recommend-item {
  1188. display: flex;
  1189. flex-direction: column;
  1190. align-items: center;
  1191. justify-content: center;
  1192. border-top: 1px dashed $subcolor;
  1193. span {
  1194. width: 100px;
  1195. padding: 10px;
  1196. margin: 25px 0 15px;
  1197. padding-left: 15px;
  1198. letter-spacing: 5px;
  1199. font-size: 16px;
  1200. color: #ffffff;
  1201. background-color: $maincolor;
  1202. }
  1203. li {
  1204. margin: 5px 0;
  1205. }
  1206. }
  1207. section {
  1208. height: 75%;
  1209. }
  1210. }
  1211. .time-box {
  1212. img {
  1213. width: 18px;
  1214. height: 18px;
  1215. margin-right: 5px;
  1216. image-rendering: -webkit-optimize-contrast;
  1217. }
  1218. p {
  1219. margin: 0;
  1220. font-size: 14px;
  1221. color: $maincolor;
  1222. }
  1223. span {
  1224. font-size: 20px;
  1225. font-weight: bold;
  1226. }
  1227. }
  1228. .modal-body img {
  1229. image-rendering: -webkit-optimize-contrast;
  1230. }
  1231. /* 臉部課程-facial end */
  1232. /* 門市資訊-store start */
  1233. .store-banner {
  1234. background-image: url(/img/banner-store.jpg);
  1235. background-position: 25% 30%;
  1236. p {
  1237. bottom: 45%;
  1238. }
  1239. }
  1240. .store-content {
  1241. margin: 150px auto;
  1242. letter-spacing: 1px;
  1243. i {
  1244. color: #b2adae;
  1245. font-size: 20px;
  1246. }
  1247. h3 {
  1248. margin-bottom: 20px;
  1249. font-weight: bold;
  1250. color: $maincolor;
  1251. }
  1252. img {
  1253. width: 100%;
  1254. border-radius: 20px 0 0 20px;
  1255. @media (max-width: 767px) {
  1256. border-radius: 20px 20px 0 0;
  1257. }
  1258. }
  1259. .info-box {
  1260. width: 270px;
  1261. margin: auto;
  1262. @media (max-width: 375px) {
  1263. width: 100%;
  1264. }
  1265. }
  1266. .Down_line {
  1267. width: 230px;
  1268. margin-top: -20px;
  1269. }
  1270. .row {
  1271. margin: 15%;
  1272. border: 1px solid #f4c0d0;
  1273. border-radius: 20px;
  1274. @media (max-width: 1200px) {
  1275. margin: 10%;
  1276. }
  1277. @media (max-width: 992px) {
  1278. margin: 0px;
  1279. }
  1280. }
  1281. .google_map {
  1282. width: 100%;
  1283. padding: 7px 15px;
  1284. margin-top: 1px;
  1285. background: none;
  1286. color: #3f51b5;
  1287. border: 1px solid #3f51b5;
  1288. border-radius: 3px;
  1289. -webkit-transition: 0.3s;
  1290. transition: 0.3s;
  1291. font-size: 15px;
  1292. letter-spacing: 1px;
  1293. overflow-x: hidden;
  1294. a {
  1295. text-decoration: none;
  1296. color: #3f51b5;
  1297. }
  1298. &:hover {
  1299. background: #3f51b5;
  1300. color: #fff;
  1301. a {
  1302. color: #fff;
  1303. }
  1304. }
  1305. }
  1306. .line_Reserve {
  1307. width: 100%;
  1308. margin-left: 10%;
  1309. padding: 8px 15px;
  1310. background: #52b448;
  1311. color: #fff;
  1312. border: 1px solid #52b448;
  1313. border-radius: 5px;
  1314. transition: 0.3s;
  1315. font-size: 15px;
  1316. letter-spacing: 1px;
  1317. overflow-x: hidden;
  1318. a {
  1319. color: #fff;
  1320. text-decoration: none;
  1321. }
  1322. &:hover {
  1323. background: #fff;
  1324. color: #52b448;
  1325. a {
  1326. color: #52b448;
  1327. }
  1328. }
  1329. @media (max-width: 575px) {
  1330. margin-left: 0;
  1331. margin-top: 5%;
  1332. }
  1333. }
  1334. @media (max-width: 992px) {
  1335. p {
  1336. font-size: 0.9rem;
  1337. }
  1338. h3 {
  1339. font-size: 1.3rem;
  1340. }
  1341. }
  1342. }
  1343. /* 門市資訊-store end */
  1344. /* 身體課程-massage start */
  1345. .massage-banner {
  1346. background-image: url(/img/banner-massage.jpg);
  1347. background-position: center;
  1348. p {
  1349. bottom: 45%;
  1350. }
  1351. }
  1352. .massage-modal-item {
  1353. .modal-body .badge {
  1354. width: auto;
  1355. padding-left: 13px;
  1356. letter-spacing: 2px;
  1357. }
  1358. }
  1359. /* 身體課程-massage end */
  1360. /* 關於我們-about start */
  1361. .about-content {
  1362. margin-bottom: 100px;
  1363. p {
  1364. padding: 0 60px;
  1365. line-height: 35px;
  1366. text-align: justify;
  1367. }
  1368. .title {
  1369. font-size: 30px;
  1370. letter-spacing: 3px;
  1371. font-weight: bold;
  1372. }
  1373. .container {
  1374. margin: 15% 5%;
  1375. }
  1376. .bg-item {
  1377. height: 120%;
  1378. background-color: #fff2f1;
  1379. position: absolute;
  1380. z-index: -1;
  1381. bottom: -10%;
  1382. left: -5%;
  1383. width: 90%;
  1384. }
  1385. .iframe-box {
  1386. position: relative;
  1387. width: 100%;
  1388. height: 0;
  1389. padding-bottom: 73%;
  1390. }
  1391. .iframe-box video {
  1392. position: absolute;
  1393. top: 0;
  1394. left: 0;
  1395. // width: 100%;
  1396. height: 100%;
  1397. box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  1398. }
  1399. .icon-box {
  1400. .row {
  1401. padding: 0 30px;
  1402. @media (max-width: 1200px) {
  1403. padding-left: 13%;
  1404. }
  1405. @media (max-width: 768px) {
  1406. padding: 0;
  1407. }
  1408. }
  1409. .col-6 {
  1410. flex-direction: row;
  1411. @media (max-width: 767px) {
  1412. flex-direction: column;
  1413. }
  1414. }
  1415. img {
  1416. width: 50px;
  1417. image-rendering: -webkit-optimize-contrast;
  1418. filter: invert(71%) sepia(13%) saturate(3318%) hue-rotate(302deg) brightness(90%) contrast(110%);
  1419. }
  1420. span {
  1421. margin: 15px;
  1422. font-weight: bold;
  1423. }
  1424. .icon-item {
  1425. padding: 15px;
  1426. margin: auto 0;
  1427. border: 1px solid $subcolor;
  1428. border-radius: 100%;
  1429. }
  1430. }
  1431. @media (max-width: 1200px) {
  1432. .container {
  1433. margin: 10% auto;
  1434. p {
  1435. padding: 0;
  1436. }
  1437. }
  1438. .content-box {
  1439. margin-top: 100px;
  1440. }
  1441. }
  1442. }
  1443. /* 關於我們-about end */
  1444. .bottom_line {
  1445. margin: 0px auto 20px;
  1446. border: 1px solid transparent;
  1447. background: linear-gradient(to right, white, white), linear-gradient(to right, $subcolor, #d76478);
  1448. background-clip: padding-box, border-box;
  1449. background-origin: padding-box, border-box;
  1450. width: 50px;
  1451. }