style.scss 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. $maincolor: #ef7086;
  7. $subcolor: #f4c0d0;
  8. #top {
  9. overflow-x: hidden !important;
  10. }
  11. .crown {
  12. color: #f7c728;
  13. font-size: 20px;
  14. }
  15. .playbutton {
  16. cursor: pointer;
  17. position: absolute;
  18. top: 50%;
  19. left: 50%;
  20. transform: translate(-50%, -50%);
  21. z-index: 101;
  22. transition: 0.3s;
  23. &:hover {
  24. opacity: 0.8;
  25. }
  26. }
  27. .likeSee__state {
  28. display: -webkit-box;
  29. display: -ms-flexbox;
  30. display: flex;
  31. -webkit-box-pack: justify;
  32. -ms-flex-pack: justify;
  33. justify-content: space-between;
  34. -webkit-box-align: center;
  35. -ms-flex-align: center;
  36. align-items: center;
  37. img {
  38. width: 40px;
  39. }
  40. }
  41. .learn_more {
  42. margin-top: 20px;
  43. padding: 5px;
  44. background: none;
  45. color: $subcolor;
  46. border-radius: 5px;
  47. border: 1px solid $subcolor;
  48. // border:none;
  49. transition: 0.3s;
  50. &:hover {
  51. color: #fff;
  52. background: $subcolor;
  53. }
  54. }
  55. .course_name_title {
  56. font-size: 1.2rem;
  57. color: $maincolor;
  58. font-weight: 900;
  59. }
  60. .course_name_text {
  61. color: $subcolor;
  62. margin-bottom: 5px;
  63. font-size: 1rem;
  64. }
  65. .Discounted_price {
  66. font-size: 24px;
  67. font-weight: 600;
  68. }
  69. .violetbeauty_content_title {
  70. color: $maincolor;
  71. font-weight: 900;
  72. font-size: 1.8rem;
  73. }
  74. .violetbeauty_content_text {
  75. color: $maincolor;
  76. font-size: 1rem;
  77. }
  78. .features_title {
  79. font-weight: 900;
  80. letter-spacing: 2px;
  81. font: 1.9375em "微軟正黑體";
  82. line-height: 25px;
  83. text-align: center;
  84. color: $maincolor;
  85. width: 100%;
  86. margin-bottom: 1rem;
  87. }
  88. .Down_line {
  89. width: 300px;
  90. object-fit: cover;
  91. }
  92. .card {
  93. border: none;
  94. .card-body {
  95. padding: 0.1rem;
  96. margin-top: 15px;
  97. }
  98. }
  99. .violetbeauty_CTA {
  100. margin-top: 50px;
  101. padding: 10px 50px;
  102. border: 1px solid $subcolor;
  103. background: #fff;
  104. border-radius: 30px;
  105. color: $maincolor;
  106. position: relative;
  107. transition: 0.5s;
  108. a {
  109. color: $maincolor;
  110. }
  111. .cta_flower {
  112. position: absolute;
  113. width: 60px;
  114. left: -25px;
  115. bottom: -10px;
  116. transition: 0.5s;
  117. }
  118. &:hover {
  119. background: $maincolor;
  120. a {
  121. color: #fff;
  122. }
  123. color: #fff;
  124. .cta_flower {
  125. transform: rotate(360deg);
  126. }
  127. }
  128. }
  129. .navbar-nav {
  130. flex-direction: row;
  131. width: 70%;
  132. margin: 0 auto;
  133. .nav-link {
  134. font: 1.2rem 微軟正黑體;
  135. font-weight: 600;
  136. padding: 0.5rem 1rem;
  137. margin: 5px 1rem;
  138. text-align: center;
  139. color: $maincolor;
  140. letter-spacing: 0;
  141. border-bottom: 5px solid #ffffff;
  142. box-sizing: border-box;
  143. cursor: pointer;
  144. &:hover {
  145. opacity: 0.7;
  146. }
  147. }
  148. }
  149. .slick-dotted.slick-slider {
  150. margin-bottom: 0px !important;
  151. }
  152. .sec_content_right_text {
  153. margin-top: 30px;
  154. p {
  155. margin-bottom: 0.5rem;
  156. color: $maincolor;
  157. }
  158. }
  159. .banner-slide {
  160. .slick-dots {
  161. bottom: 30px;
  162. li {
  163. // margin-top: -50px;
  164. // 上右下左
  165. button:before {
  166. font-size: 16px;
  167. font-weight: 900;
  168. top: 15px;
  169. content: "○";
  170. color: #82689d;
  171. }
  172. }
  173. li.slick-active button:before {
  174. opacity: 0.75;
  175. color: #82689d;
  176. content: "●";
  177. }
  178. }
  179. }
  180. .violetbeauty_sec00 {
  181. background: #f8f2f6;
  182. padding: 80px 0;
  183. position: relative;
  184. .sec00_img1 {
  185. left: 0px;
  186. bottom: 20px;
  187. width: 300px;
  188. opacity: 0.8;
  189. }
  190. .sec00_img2 {
  191. right: 0px;
  192. top: 50px;
  193. width: 180px;
  194. opacity: 0.8;
  195. transform: rotate(-90deg);
  196. }
  197. .sec00_img3 {
  198. right: 100px;
  199. bottom: 80px;
  200. width: 60px;
  201. opacity: 0.5;
  202. transform: rotate(-30deg);
  203. }
  204. .violetbeauty_sec00_box {
  205. width: 80%;
  206. margin: 0 auto;
  207. .sec00_content_left_img {
  208. width: 60%;
  209. box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  210. }
  211. .sec00_content_right {
  212. text-align: center;
  213. margin-top: 50px;
  214. }
  215. }
  216. }
  217. .violetbeauty_sec01,
  218. .violetbeauty_sec02 {
  219. padding: 50px 0;
  220. .slick-prev:before {
  221. content: "";
  222. }
  223. .slick-next:before {
  224. content: "";
  225. }
  226. .violetbeauty_sec01_box {
  227. width: 80%;
  228. margin: 0 auto;
  229. }
  230. .violetbeauty_sec01_content {
  231. margin-top: 30px;
  232. .sec01_slide_item {
  233. padding: 20px;
  234. img {
  235. // width: 180px;
  236. height: 250px;
  237. object-fit: cover;
  238. margin: 0 auto;
  239. }
  240. }
  241. }
  242. }
  243. .violetbeauty_sec02 {
  244. background: $subcolor;
  245. .card {
  246. background: $subcolor;
  247. }
  248. .violetbeauty_sec02_content {
  249. margin-top: 30px;
  250. .violetbeauty_sec02_sub_title {
  251. font-family: "Noto Sans TC", sans-serif;
  252. font-size: 20px;
  253. font-weight: normal;
  254. color: $maincolor;
  255. }
  256. b {
  257. width: 10px;
  258. height: 10px;
  259. background: $maincolor;
  260. transform: rotate(45deg);
  261. margin: 1rem 0;
  262. display: inline-block;
  263. }
  264. }
  265. .sec02_slide_item {
  266. padding: 30px;
  267. }
  268. .violetbeauty_service_img {
  269. img {
  270. width: 290px;
  271. height: 290px;
  272. object-fit: cover;
  273. border-radius: 50%;
  274. margin: 0 auto;
  275. }
  276. }
  277. .violetbeauty_service p {
  278. margin: 10px 0;
  279. font-family: "Noto Sans TC", sans-serif;
  280. font-size: 16px;
  281. color: $maincolor;
  282. display: inline-block;
  283. width: 90%;
  284. border-bottom: 1px dashed $maincolor;
  285. padding: 0.5rem 0;
  286. cursor: pointer;
  287. }
  288. // .violetbeauty_service_item,p{
  289. // margin: 10px 0;
  290. // font-family: 'Noto Sans TC', sans-serif;
  291. // font-size: 16px;
  292. // color: #CC7DB7;
  293. // display: inline-block;
  294. // width: 100%;
  295. // border-bottom: 1px dashed $maincolor;
  296. // padding:0 1rem;
  297. // display: -webkit-box;
  298. // display: -ms-flexbox;
  299. // display: flex;
  300. // -webkit-box-pack: justify;
  301. // -ms-flex-pack: justify;
  302. // justify-content: space-around;;
  303. // -webkit-box-align: center;
  304. // -ms-flex-align: center;
  305. // align-items: center;
  306. // }
  307. }
  308. .violetbeauty_sec03 {
  309. padding: 100px 0;
  310. margin-bottom: 50px;
  311. position: relative;
  312. .sec03_img1 {
  313. position: absolute;
  314. left: 50px;
  315. top: 50px;
  316. opacity: 0.5;
  317. }
  318. .sec03_img2 {
  319. position: absolute;
  320. right: -120px;
  321. width: 400px;
  322. top: 40%;
  323. opacity: 0.5;
  324. transform: rotate(-70deg);
  325. }
  326. .sec03_img3 {
  327. position: absolute;
  328. right: 0px;
  329. opacity: 0.5;
  330. width: 250px;
  331. bottom: 50px;
  332. transform: scaleX(-1) rotate(19deg);
  333. -moz-transform: scaleX(-1) rotate(19deg);
  334. -webkit-transform: scaleX(-1) rotate(19deg);
  335. -o-transform: scaleX(-1) rotate(19deg);
  336. }
  337. .violetbeauty_sec03_box {
  338. width: 75%;
  339. margin: 0 auto;
  340. .violetbeauty_sec03_content {
  341. margin-top: 100px;
  342. }
  343. }
  344. .violetbeauty_contract_form {
  345. width: 70%;
  346. margin: 0 auto;
  347. #submitbutton {
  348. width: 100%;
  349. margin: 16px auto;
  350. border: none;
  351. padding: 16px 12px;
  352. background: $subcolor;
  353. color: #fff;
  354. font-size: 20px;
  355. border-radius: 0.25rem;
  356. text-align: center;
  357. vertical-align: middle;
  358. &:hover {
  359. color: $subcolor;
  360. background-color: #fff;
  361. border: 1px solid $subcolor;
  362. }
  363. }
  364. #time,
  365. #datepicker {
  366. width: 45%;
  367. padding: 10px 15px;
  368. border-radius: 3px;
  369. margin: 10px 0px;
  370. border: 1px solid rgba(0, 0, 0, 0.3);
  371. }
  372. #time {
  373. margin-left: 8%;
  374. }
  375. #phone,
  376. #email,
  377. #loc,
  378. #name,
  379. #course_name {
  380. width: 100%;
  381. padding: 10px 15px;
  382. font-size: 16px;
  383. border-radius: 3px;
  384. margin: 10px 0px;
  385. border: 1px solid rgba(0, 0, 0, 0.3);
  386. }
  387. }
  388. }
  389. // .violetbeauty_sec01{
  390. // width: 80%;
  391. // margin:0 auto ;
  392. // .features{
  393. // width: 100%;
  394. // height: auto;
  395. // margin: 17px 0 0 0;
  396. // }
  397. // .violetbeauty_sec01_content{
  398. // margin-top: 30px;
  399. // .sec01_content_left{
  400. // width: 85%;
  401. // .sec01_content_box{
  402. // margin-top: 20%;
  403. // .sec01_content_title_1{
  404. // color: #452767;
  405. // font-size: 3.5rem;
  406. // text-align: center;
  407. // }
  408. // .sec01_content_title_2{
  409. // h3{
  410. // font-size:1.6rem ;
  411. // text-align: center;
  412. // color: #452767;
  413. // letter-spacing: 3px;
  414. // font-weight:600
  415. // }
  416. // }
  417. // .sec01_content_text{
  418. // p{
  419. // font-size: 1.2rem;
  420. // text-align: center;
  421. // }
  422. // }
  423. // }
  424. // }
  425. // .sec01_content_right{
  426. // .sec01_content_img{
  427. // width: 100%;
  428. // // margin: 0 auto;
  429. // }
  430. // }
  431. // }
  432. // }
  433. .logo {
  434. img {
  435. width: 300px;
  436. // height: 66px;
  437. object-fit: cover;
  438. }
  439. }
  440. .violetbeauty_logo {
  441. width: 300px;
  442. object-fit: cover;
  443. }
  444. #footer {
  445. background: #edcde1;
  446. .footer_content_box {
  447. padding: 100px 0;
  448. margin: 0 auto;
  449. width: 80%;
  450. }
  451. h3 {
  452. font-size: 1.5rem;
  453. }
  454. p {
  455. margin-bottom: 0.5rem;
  456. }
  457. .socail-link {
  458. a {
  459. margin-right: 8px;
  460. }
  461. }
  462. .footer_text {
  463. margin-top: 15px;
  464. }
  465. .socail-link {
  466. margin-top: 30px;
  467. }
  468. .store_name {
  469. color: $maincolor;
  470. }
  471. .store {
  472. width: 85%;
  473. margin: 0 auto;
  474. p {
  475. margin-top: 10px;
  476. }
  477. }
  478. .footer_logo {
  479. img {
  480. position: relative;
  481. right: 30px;
  482. width: 300px;
  483. object-fit: cover;
  484. }
  485. }
  486. .google_map {
  487. width: 47%;
  488. padding: 15px 20px;
  489. background: none;
  490. color: #3f51b5;
  491. border: 1px solid #3f51b5;
  492. border-radius: 3px;
  493. transition: 0.3s;
  494. overflow-x: hidden;
  495. a {
  496. text-decoration: none;
  497. color: #3f51b5;
  498. }
  499. &:hover {
  500. background: #3f51b5;
  501. color: #fff;
  502. a {
  503. color: #fff;
  504. }
  505. }
  506. }
  507. .line_Reserve {
  508. width: 45%;
  509. margin-left: 5%;
  510. padding: 15px 20px;
  511. background: #52b448;
  512. border: 1px solid #52b448;
  513. color: #fff;
  514. border: none;
  515. border-radius: 3px;
  516. transition: 0.3s;
  517. overflow-x: hidden;
  518. a {
  519. color: #fff;
  520. text-decoration: none;
  521. }
  522. &:hover {
  523. background: #fff;
  524. color: #52b448;
  525. a {
  526. color: #52b448;
  527. }
  528. }
  529. }
  530. }
  531. .gototop {
  532. position: fixed;
  533. right: 3vw;
  534. bottom: 0.5vw;
  535. z-index: 10;
  536. border-radius: 80px;
  537. font-size: 32px;
  538. color: #fff;
  539. width: 50px;
  540. height: 50px;
  541. background: $subcolor;
  542. cursor: pointer;
  543. }
  544. /* banner */
  545. .facial-banner,
  546. .massage-banner,
  547. .store-banner {
  548. padding: 150px 0;
  549. position: relative;
  550. background-size: cover;
  551. background-repeat: no-repeat;
  552. image-rendering: -webkit-optimize-contrast;
  553. p {
  554. position: absolute;
  555. right: 50%;
  556. transform: translate(50%, 50%);
  557. font-size: 40px;
  558. color: white;
  559. text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  560. }
  561. }
  562. /* 臉部課程-facial start */
  563. .facial-banner {
  564. background-image: url(/img/banner-facial.jpg);
  565. background-position: 25% 25%;
  566. p {
  567. bottom: 45%;
  568. }
  569. }
  570. .facial-content {
  571. margin: 100px auto;
  572. p {
  573. margin: 0;
  574. line-height: 32px;
  575. }
  576. img {
  577. height: 250px;
  578. object-fit: cover;
  579. }
  580. button {
  581. display: none;
  582. padding: 7px 30px;
  583. position: absolute;
  584. bottom: -20px;
  585. right: 50%;
  586. transform: translate(50%, 0);
  587. color: #ffffff;
  588. background-color: $maincolor;
  589. white-space: nowrap;
  590. font-weight: bold;
  591. transition: all 0.3s;
  592. &::after {
  593. content: "";
  594. display: inline-block;
  595. vertical-align: middle;
  596. width: 8px;
  597. height: 8px;
  598. margin: 0 0 2px 10px;
  599. border: 1px solid #fff;
  600. border-left: 0 none;
  601. border-bottom: 0 none;
  602. -moz-transform: rotate(45deg);
  603. -ms-transform: rotate(45deg);
  604. -webkit-transform: rotate(45deg);
  605. transform: rotate(45deg);
  606. }
  607. &:hover {
  608. color: #ffffff;
  609. background-color: $subcolor;
  610. }
  611. }
  612. .card {
  613. cursor: pointer;
  614. border: 1px solid #cccccc;
  615. .card-body {
  616. padding: 10px 20px 20px;
  617. }
  618. &:hover {
  619. button {
  620. display: block;
  621. }
  622. .img-box img {
  623. transform: scale(1.2, 1.2);
  624. }
  625. }
  626. }
  627. .badge {
  628. height: 30px;
  629. line-height: 1.9;
  630. background-color: $maincolor;
  631. }
  632. .img-box {
  633. overflow: hidden;
  634. img {
  635. transition: all 1s;
  636. }
  637. }
  638. }
  639. .modal-header {
  640. border-bottom: none !important;
  641. }
  642. .modal-body {
  643. letter-spacing: 1px;
  644. p {
  645. line-height: 32px;
  646. }
  647. h5 {
  648. font-size: 25px;
  649. }
  650. img {
  651. border-radius: 20px;
  652. }
  653. .price-box span {
  654. font-size: 18px;
  655. font-weight: bold;
  656. color: $maincolor;
  657. &:last-child {
  658. font-size: 16px;
  659. font-weight: normal;
  660. text-decoration: line-through;
  661. }
  662. }
  663. .recommend-item {
  664. display: flex;
  665. flex-direction: column;
  666. align-items: center;
  667. justify-content: center;
  668. border-top: 1px dashed $subcolor;
  669. span {
  670. width: 100px;
  671. padding: 10px;
  672. margin: 25px 0 15px;
  673. padding-left: 15px;
  674. letter-spacing: 5px;
  675. font-size: 16px;
  676. color: #ffffff;
  677. background-color: $maincolor;
  678. }
  679. li {
  680. margin: 5px 0;
  681. }
  682. }
  683. section {
  684. height: 75%;
  685. }
  686. }
  687. .time-box {
  688. img {
  689. width: 18px;
  690. height: 18px;
  691. margin-right: 5px;
  692. image-rendering: -webkit-optimize-contrast;
  693. }
  694. p {
  695. margin: 0;
  696. font-size: 14px;
  697. color: $maincolor;
  698. }
  699. span {
  700. font-size: 20px;
  701. font-weight: bold;
  702. }
  703. }
  704. /* 臉部課程-facial end */
  705. /* 門市資訊-store start */
  706. .store-banner {
  707. background-image: url(/img/banner-store.jpg);
  708. background-position: 25% 30%;
  709. p {
  710. bottom: 45%;
  711. }
  712. }
  713. .store-content {
  714. margin: 100px;
  715. letter-spacing: 1px;
  716. h3 {
  717. margin-bottom: 20px;
  718. font-weight: bold;
  719. color: $maincolor;
  720. }
  721. img {
  722. width: 100%;
  723. }
  724. .Down_line {
  725. width: 230px;
  726. margin-top: -20px;
  727. }
  728. }
  729. /* 門市資訊-store end */
  730. /* 身體課程-massage start */
  731. .massage-banner {
  732. background-image: url(/img/banner-massage.jpg);
  733. background-position: center;
  734. p {
  735. bottom: 45%;
  736. }
  737. }
  738. .massage-modal-item {
  739. .modal-body .badge {
  740. width: auto;
  741. padding-left: 13px;
  742. letter-spacing: 2px;
  743. }
  744. }
  745. /* 身體課程-massage end */