style.css 28 KB

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