style.css 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592
  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-bottom: 1rem;
  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: 20vw;
  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. @media screen and (max-width: 767px) {
  202. #Navigation #logo {
  203. padding-top: 2vw;
  204. }
  205. }
  206. #Navigation #logo img {
  207. width: 120px;
  208. }
  209. #Navigation #link {
  210. text-align: right;
  211. padding: 1.5vw 3vw;
  212. }
  213. @media screen and (max-width: 767px) {
  214. #Navigation #link {
  215. display: none;
  216. }
  217. }
  218. #Navigation #link a {
  219. text-decoration: none;
  220. color: #000;
  221. letter-spacing: 1px;
  222. font-size: 0.9rem;
  223. font-weight: 600;
  224. cursor: pointer;
  225. padding: 15px;
  226. position: relative;
  227. }
  228. #Navigation #link a :hover {
  229. opacity: 0.8;
  230. }
  231. #Navigation #link a:after {
  232. content: "";
  233. display: block;
  234. width: 80%;
  235. height: 3px;
  236. background-color: #fff;
  237. position: absolute;
  238. left: 12%;
  239. bottom: 0;
  240. -webkit-transition: all 0.3s;
  241. transition: all 0.3s;
  242. opacity: 0;
  243. }
  244. #Navigation #link a:hover:after {
  245. width: 80%;
  246. opacity: 1;
  247. }
  248. #menu-box {
  249. top: 20vw;
  250. height: 25vh;
  251. width: 100vw;
  252. position: fixed;
  253. z-index: 998;
  254. overflow: hidden;
  255. display: none;
  256. background: rgba(0, 0, 0, 0.8);
  257. }
  258. @media screen and (min-width: 1025px) {
  259. #menu-box {
  260. display: none;
  261. }
  262. }
  263. @media screen and (max-width: 767px) {
  264. #menu-box {
  265. height: 100vh;
  266. }
  267. }
  268. @media screen and (max-width: 350px) {
  269. #menu-box {
  270. height: 55vh;
  271. }
  272. }
  273. #menu-box hr {
  274. display: inline-block;
  275. margin: 0px auto !important;
  276. width: 55vw;
  277. background: #fff;
  278. opacity: 1 !important;
  279. }
  280. #menu-box #menu-box2 {
  281. width: 100vw;
  282. height: 25vh;
  283. background-color: #f4c0d0;
  284. opacity: 0.95;
  285. z-index: 999;
  286. text-align: center;
  287. }
  288. @media screen and (max-width: 767px) {
  289. #menu-box #menu-box2 {
  290. height: 45vh;
  291. }
  292. }
  293. @media screen and (max-width: 350px) {
  294. #menu-box #menu-box2 {
  295. height: 55vh;
  296. }
  297. }
  298. #menu-box #menu-box2 #menu-link {
  299. display: -ms-grid;
  300. display: grid;
  301. -ms-grid-columns: (1fr)[4];
  302. grid-template-columns: repeat(4, 1fr);
  303. width: 60vw;
  304. margin: 0 auto;
  305. }
  306. #menu-box #menu-box2 .menu-logo {
  307. opacity: 1;
  308. }
  309. #menu-box #menu-box2 .menu-logo img {
  310. width: 7vw;
  311. }
  312. #menu-box #menu-box2 a {
  313. display: inline-block;
  314. text-decoration: none;
  315. color: #fff;
  316. font-size: 16px;
  317. margin-top: 20px;
  318. font-weight: 900;
  319. }
  320. @media screen and (max-width: 767px) {
  321. #menu-box #menu-box2 a {
  322. margin-top: 4vw;
  323. }
  324. }
  325. #menu-box #menu-box2 .menu-text {
  326. width: 70vw;
  327. text-align: center;
  328. margin-bottom: 10px;
  329. border-bottom: 1px solid #fff;
  330. margin: 0 auto;
  331. padding-bottom: 10px;
  332. }
  333. @media screen and (max-width: 767px) {
  334. #menu-box #menu-box2 .menu-text {
  335. margin-bottom: 5px !important;
  336. }
  337. }
  338. .slick-dotted.slick-slider {
  339. margin-bottom: 0px !important;
  340. }
  341. .sec_content_right_text {
  342. margin-top: 30px;
  343. }
  344. .sec_content_right_text p {
  345. margin-bottom: 0.5rem;
  346. color: #ef7086;
  347. }
  348. @media screen and (max-width: 767px) {
  349. .banner-slide {
  350. padding-top: 60px;
  351. }
  352. }
  353. .news {
  354. margin: 100px 0px;
  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. margin-top: 80px;
  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. .sec01_course .sec01_course_box .sec01_course_text span,
  518. .sec02_course .sec01_course_box .sec01_course_text span {
  519. color: #ef7086;
  520. font-size: 1.6rem;
  521. }
  522. @media screen and (max-width: 767px) {
  523. .sec01_course .sec01_course_box .sec01_course_text span,
  524. .sec02_course .sec01_course_box .sec01_course_text span {
  525. font-size: 1.4rem;
  526. }
  527. }
  528. .sec01_course .sec01_course_box .sec01_course_text p,
  529. .sec02_course .sec01_course_box .sec01_course_text p {
  530. font-size: 14px;
  531. color: #555;
  532. padding: 15px 0 0;
  533. }
  534. .sec01_course .sec01_course_box .sec01_course_text .submitbutton,
  535. .sec02_course .sec01_course_box .sec01_course_text .submitbutton {
  536. width: 80%;
  537. margin: 20px auto;
  538. border: none;
  539. padding: 10px 12px;
  540. background: #f4c0d0;
  541. color: #fff;
  542. font-size: 20px;
  543. border-radius: 0.25rem;
  544. text-align: center;
  545. vertical-align: middle;
  546. border: 1px solid #f4c0d0;
  547. }
  548. .sec01_course .sec01_course_box .sec01_course_text .submitbutton:hover,
  549. .sec02_course .sec01_course_box .sec01_course_text .submitbutton:hover {
  550. color: #f4c0d0;
  551. background-color: #fff;
  552. border: 1px solid #f4c0d0;
  553. }
  554. .violetbeauty_sec03 {
  555. padding: 100px 0;
  556. margin-bottom: 50px;
  557. position: relative;
  558. }
  559. .violetbeauty_sec03 .sec03_img1 {
  560. position: absolute;
  561. left: 50px;
  562. top: 50px;
  563. opacity: 0.5;
  564. }
  565. .violetbeauty_sec03 .sec03_img2 {
  566. position: absolute;
  567. right: -120px;
  568. width: 400px;
  569. top: 40%;
  570. opacity: 0.5;
  571. -webkit-transform: rotate(-70deg);
  572. transform: rotate(-70deg);
  573. }
  574. .violetbeauty_sec03 .sec03_img3 {
  575. position: absolute;
  576. right: 0px;
  577. opacity: 0.5;
  578. width: 250px;
  579. bottom: 50px;
  580. transform: scaleX(-1) rotate(19deg);
  581. -moz-transform: scaleX(-1) rotate(19deg);
  582. -webkit-transform: scaleX(-1) rotate(19deg);
  583. -o-transform: scaleX(-1) rotate(19deg);
  584. }
  585. .violetbeauty_sec03 .violetbeauty_sec03_box {
  586. width: 75%;
  587. margin: 0 auto;
  588. }
  589. @media screen and (max-width: 767px) {
  590. .violetbeauty_sec03 .violetbeauty_sec03_box {
  591. width: 90%;
  592. }
  593. }
  594. .violetbeauty_sec03 .violetbeauty_sec03_box .violetbeauty_sec03_content {
  595. margin-top: 100px;
  596. }
  597. @media screen and (max-width: 767px) {
  598. .violetbeauty_sec03 .violetbeauty_sec03_box .violetbeauty_sec03_content {
  599. margin-top: 50px;
  600. }
  601. }
  602. .violetbeauty_sec03 .violetbeauty_contract_form {
  603. width: 70%;
  604. margin: 0 auto;
  605. }
  606. @media screen and (max-width: 767px) {
  607. .violetbeauty_sec03 .violetbeauty_contract_form {
  608. width: 90%;
  609. }
  610. }
  611. .violetbeauty_sec03 .violetbeauty_contract_form .submitbutton {
  612. width: 100%;
  613. margin: 16px auto;
  614. border: none;
  615. padding: 16px 12px;
  616. background: #f4c0d0;
  617. color: #fff;
  618. font-size: 20px;
  619. border-radius: 0.25rem;
  620. text-align: center;
  621. vertical-align: middle;
  622. }
  623. .violetbeauty_sec03 .violetbeauty_contract_form .submitbutton:hover {
  624. color: #f4c0d0;
  625. background-color: #fff;
  626. border: 1px solid #f4c0d0;
  627. }
  628. .violetbeauty_sec03 .violetbeauty_contract_form #time,
  629. .violetbeauty_sec03 .violetbeauty_contract_form #datepicker {
  630. width: 45%;
  631. padding: 10px 15px;
  632. border-radius: 3px;
  633. margin: 10px 0px;
  634. border: 1px solid rgba(0, 0, 0, 0.3);
  635. }
  636. .violetbeauty_sec03 .violetbeauty_contract_form #time {
  637. margin-left: 8%;
  638. }
  639. .violetbeauty_sec03 .violetbeauty_contract_form #phone,
  640. .violetbeauty_sec03 .violetbeauty_contract_form #email,
  641. .violetbeauty_sec03 .violetbeauty_contract_form #loc,
  642. .violetbeauty_sec03 .violetbeauty_contract_form #name,
  643. .violetbeauty_sec03 .violetbeauty_contract_form #course_name {
  644. width: 100%;
  645. padding: 10px 15px;
  646. font-size: 16px;
  647. border-radius: 3px;
  648. margin: 10px 0px;
  649. border: 1px solid rgba(0, 0, 0, 0.3);
  650. }
  651. .logo img {
  652. width: 300px;
  653. -o-object-fit: cover;
  654. object-fit: cover;
  655. }
  656. .violetbeauty_logo {
  657. width: 300px;
  658. -o-object-fit: cover;
  659. object-fit: cover;
  660. }
  661. #footer {
  662. background: #fff2f1;
  663. color: #6c6c6c;
  664. }
  665. #footer .phone {
  666. -webkit-transform: rotate(100deg);
  667. transform: rotate(100deg);
  668. }
  669. #footer .footer_content_box {
  670. padding: 50px 0;
  671. margin: 0 auto;
  672. width: 80%;
  673. }
  674. @media screen and (max-width: 767px) {
  675. #footer .footer_content_box {
  676. width: 90%;
  677. }
  678. }
  679. #footer .footer_content_box li a {
  680. width: 100%;
  681. text-align: left;
  682. color: #6c6c6c;
  683. }
  684. #footer .footer_content_box .border_line {
  685. margin-top: 30px;
  686. background: #ccc;
  687. opacity: 1 !important;
  688. margin-bottom: 0.5rem;
  689. }
  690. #footer .socail-link a {
  691. margin-right: 8px;
  692. }
  693. @media screen and (max-width: 767px) {
  694. #footer .footer_text_box {
  695. width: 80%;
  696. margin: 0 auto;
  697. }
  698. }
  699. #footer .footer_text_box h3 {
  700. font-size: 1rem;
  701. }
  702. #footer .footer_text_box h3,
  703. #footer .footer_text_box p {
  704. letter-spacing: 2px;
  705. }
  706. #footer .footer_text_box .navbar-nav {
  707. width: auto;
  708. }
  709. #footer .footer_text_box .navbar-nav .nav-link {
  710. margin: 0;
  711. padding: 0;
  712. border-bottom: none;
  713. -webkit-transition: all 0.2s;
  714. transition: all 0.2s;
  715. font-size: 1rem;
  716. text-align: center;
  717. }
  718. #footer .footer_text_box .navbar-nav .nav-link:hover {
  719. color: #ef7086;
  720. }
  721. #footer .footer_text_box .navbar-nav .nav-item {
  722. margin-right: 20px;
  723. margin-bottom: 10px;
  724. min-width: auto;
  725. }
  726. #footer .footer_text {
  727. margin-top: 15px;
  728. }
  729. @media screen and (max-width: 767px) {
  730. #footer .footer_text {
  731. font-size: 0.85rem;
  732. }
  733. }
  734. #footer .socail-link {
  735. margin-top: 30px;
  736. }
  737. @media screen and (max-width: 767px) {
  738. #footer .socail-link {
  739. text-align: center;
  740. }
  741. }
  742. #footer .socail-link a {
  743. -webkit-transition: 0.3s;
  744. transition: 0.3s;
  745. }
  746. #footer .socail-link a:hover {
  747. opacity: 0.8;
  748. }
  749. #footer .store {
  750. width: 85%;
  751. margin: 0 auto;
  752. }
  753. @media screen and (max-width: 767px) {
  754. #footer .store {
  755. margin-top: 50px;
  756. }
  757. }
  758. #footer .store p {
  759. margin-top: 10px;
  760. }
  761. #footer .store h3 {
  762. font-size: 1.5rem;
  763. font-weight: 300 !important;
  764. }
  765. #footer .store p {
  766. margin-bottom: 0.5rem;
  767. font-weight: 300 !important;
  768. }
  769. #footer .footer_logo img {
  770. position: relative;
  771. right: 30px;
  772. width: 300px;
  773. -o-object-fit: cover;
  774. object-fit: cover;
  775. }
  776. #footer .google_map {
  777. width: 47%;
  778. padding: 15px 20px;
  779. background: none;
  780. color: #3f51b5;
  781. border: 1px solid #3f51b5;
  782. border-radius: 3px;
  783. -webkit-transition: 0.3s;
  784. transition: 0.3s;
  785. overflow-x: hidden;
  786. }
  787. #footer .google_map a {
  788. text-decoration: none;
  789. color: #3f51b5;
  790. }
  791. #footer .google_map:hover {
  792. background: #3f51b5;
  793. color: #fff;
  794. }
  795. #footer .google_map:hover a {
  796. color: #fff;
  797. }
  798. #footer .line_Reserve {
  799. width: 45%;
  800. margin-left: 5%;
  801. padding: 15px 20px;
  802. background: #52b448;
  803. border: 1px solid #52b448;
  804. color: #fff;
  805. border: none;
  806. border-radius: 3px;
  807. -webkit-transition: 0.3s;
  808. transition: 0.3s;
  809. overflow-x: hidden;
  810. }
  811. #footer .line_Reserve a {
  812. color: #fff;
  813. text-decoration: none;
  814. }
  815. #footer .line_Reserve:hover {
  816. background: #fff;
  817. color: #52b448;
  818. }
  819. #footer .line_Reserve:hover a {
  820. color: #52b448;
  821. }
  822. #footer-secondary {
  823. background: #fff2f1;
  824. color: #6c6c6c;
  825. }
  826. #footer-secondary .footer_content_box {
  827. padding: 50px 0;
  828. margin: 0 auto;
  829. width: 80%;
  830. }
  831. @media (max-width: 767px) {
  832. #footer-secondary .footer_content_box {
  833. width: 85%;
  834. }
  835. }
  836. #footer-secondary h3 {
  837. font-size: 1rem;
  838. }
  839. #footer-secondary h3,
  840. #footer-secondary p {
  841. letter-spacing: 2px;
  842. }
  843. #footer-secondary li a {
  844. width: 100%;
  845. text-align: left;
  846. color: #6c6c6c;
  847. }
  848. #footer-secondary .navbar-nav {
  849. width: auto;
  850. }
  851. #footer-secondary .navbar-nav .nav-link {
  852. margin: 0;
  853. padding: 0;
  854. border-bottom: none;
  855. -webkit-transition: all 0.2s;
  856. transition: all 0.2s;
  857. }
  858. #footer-secondary .navbar-nav .nav-link:hover {
  859. color: #ef7086;
  860. }
  861. #footer-secondary .navbar-nav .nav-item {
  862. min-width: 105px;
  863. }
  864. @media (max-width: 767px) {
  865. #footer-secondary .navbar-nav .nav-item {
  866. min-width: auto;
  867. width: 90px;
  868. }
  869. #footer-secondary .navbar-nav .nav-link {
  870. font-size: 1rem;
  871. text-align: center;
  872. }
  873. }
  874. #footer-secondary .socail-link img {
  875. image-rendering: -webkit-optimize-contrast;
  876. -webkit-filter: invert(42%) sepia(0%) saturate(1863%) hue-rotate(226deg) brightness(100%) contrast(96%);
  877. filter: invert(42%) sepia(0%) saturate(1863%) hue-rotate(226deg) brightness(100%) contrast(96%);
  878. }
  879. #footer-secondary .socail-link img:hover {
  880. opacity: 0.8;
  881. }
  882. #footer-secondary .footer_text {
  883. margin-top: 15px;
  884. }
  885. @media (max-width: 767px) {
  886. #footer-secondary .footer_text p {
  887. font-size: 0.85rem;
  888. }
  889. }
  890. #footer-secondary .store_name {
  891. color: #ef7086;
  892. }
  893. #footer-secondary .store {
  894. width: 85%;
  895. margin: 0 auto;
  896. }
  897. #footer-secondary .store p {
  898. margin-top: 10px;
  899. }
  900. #footer-secondary .footer_logo img {
  901. position: relative;
  902. right: 30px;
  903. width: 250px;
  904. -o-object-fit: cover;
  905. object-fit: cover;
  906. }
  907. .gototop {
  908. position: fixed;
  909. right: 3vw;
  910. bottom: 0.5vw;
  911. z-index: 10;
  912. border-radius: 80px;
  913. font-size: 32px;
  914. color: #fff;
  915. width: 50px;
  916. height: 50px;
  917. background: #f4c0d0;
  918. cursor: pointer;
  919. }
  920. /* banner */
  921. .facial-banner,
  922. .massage-banner,
  923. .store-banner {
  924. padding: 150px 0;
  925. position: relative;
  926. background-size: cover;
  927. background-repeat: no-repeat;
  928. image-rendering: -webkit-optimize-contrast;
  929. }
  930. .facial-banner p,
  931. .massage-banner p,
  932. .store-banner p {
  933. position: absolute;
  934. right: 50%;
  935. -webkit-transform: translate(50%, 50%);
  936. transform: translate(50%, 50%);
  937. font-size: 40px;
  938. color: white;
  939. text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  940. }
  941. /* 臉部課程-facial start */
  942. .facial-banner {
  943. background-image: url(/img/banner-facial.jpg);
  944. background-position: 25% 25%;
  945. }
  946. .facial-banner p {
  947. bottom: 45%;
  948. }
  949. .facial-content {
  950. margin: 100px auto;
  951. }
  952. .facial-content p {
  953. margin: 0;
  954. line-height: 32px;
  955. }
  956. .facial-content img {
  957. height: 250px;
  958. -o-object-fit: cover;
  959. object-fit: cover;
  960. }
  961. .facial-content button {
  962. display: none;
  963. padding: 7px 30px;
  964. position: absolute;
  965. bottom: -20px;
  966. right: 50%;
  967. -webkit-transform: translate(50%, 0);
  968. transform: translate(50%, 0);
  969. color: #ffffff;
  970. background-color: #ef7086;
  971. white-space: nowrap;
  972. font-weight: bold;
  973. -webkit-transition: all 0.3s;
  974. transition: all 0.3s;
  975. }
  976. @media screen and (max-width: 767px) {
  977. .facial-content button {
  978. display: block;
  979. }
  980. }
  981. .facial-content button::after {
  982. content: "";
  983. display: inline-block;
  984. vertical-align: middle;
  985. width: 8px;
  986. height: 8px;
  987. margin: 0 0 2px 10px;
  988. border: 1px solid #fff;
  989. border-left: 0 none;
  990. border-bottom: 0 none;
  991. -webkit-transform: rotate(45deg);
  992. transform: rotate(45deg);
  993. }
  994. .facial-content button:hover {
  995. color: #ffffff;
  996. background-color: #f4c0d0;
  997. }
  998. .facial-content .card {
  999. cursor: pointer;
  1000. border: 1px solid #cccccc;
  1001. }
  1002. .facial-content .card .card-body {
  1003. padding: 10px 20px 20px;
  1004. }
  1005. .facial-content .card:hover button {
  1006. display: block;
  1007. }
  1008. .facial-content .card:hover .img-box img {
  1009. -webkit-transform: scale(1.1, 1.1);
  1010. transform: scale(1.1, 1.1);
  1011. }
  1012. .facial-content .badge {
  1013. height: 30px;
  1014. line-height: 1.9;
  1015. background-color: #ef7086;
  1016. }
  1017. .facial-content .img-box {
  1018. overflow: hidden;
  1019. }
  1020. .facial-content .img-box img {
  1021. width: 100%;
  1022. height: auto;
  1023. -o-object-fit: contain;
  1024. object-fit: contain;
  1025. -webkit-transition: all 1s;
  1026. transition: all 1s;
  1027. image-rendering: -webkit-optimize-contrast;
  1028. }
  1029. .modal-header {
  1030. border-bottom: none !important;
  1031. }
  1032. .modal-body {
  1033. letter-spacing: 1px;
  1034. }
  1035. .modal-body p {
  1036. line-height: 32px;
  1037. }
  1038. .modal-body h5 {
  1039. font-size: 25px;
  1040. }
  1041. .modal-body img {
  1042. border-radius: 20px;
  1043. }
  1044. .modal-body .price-box span {
  1045. font-size: 18px;
  1046. font-weight: bold;
  1047. color: #ef7086;
  1048. }
  1049. .modal-body .price-box span:last-child {
  1050. font-size: 16px;
  1051. font-weight: normal;
  1052. text-decoration: line-through;
  1053. }
  1054. .modal-body .recommend-item {
  1055. display: -webkit-box;
  1056. display: -ms-flexbox;
  1057. display: flex;
  1058. -webkit-box-orient: vertical;
  1059. -webkit-box-direction: normal;
  1060. -ms-flex-direction: column;
  1061. flex-direction: column;
  1062. -webkit-box-align: center;
  1063. -ms-flex-align: center;
  1064. align-items: center;
  1065. -webkit-box-pack: center;
  1066. -ms-flex-pack: center;
  1067. justify-content: center;
  1068. border-top: 1px dashed #f4c0d0;
  1069. }
  1070. .modal-body .recommend-item span {
  1071. width: 100px;
  1072. padding: 10px;
  1073. margin: 25px 0 15px;
  1074. padding-left: 15px;
  1075. letter-spacing: 5px;
  1076. font-size: 16px;
  1077. color: #ffffff;
  1078. background-color: #ef7086;
  1079. }
  1080. .modal-body .recommend-item li {
  1081. margin: 5px 0;
  1082. }
  1083. .modal-body section {
  1084. height: 75%;
  1085. }
  1086. .time-box img {
  1087. width: 18px;
  1088. height: 18px;
  1089. margin-right: 5px;
  1090. image-rendering: -webkit-optimize-contrast;
  1091. }
  1092. .time-box p {
  1093. margin: 0;
  1094. font-size: 14px;
  1095. color: #ef7086;
  1096. }
  1097. .time-box span {
  1098. font-size: 20px;
  1099. font-weight: bold;
  1100. }
  1101. .modal-body img {
  1102. image-rendering: -webkit-optimize-contrast;
  1103. }
  1104. /* 臉部課程-facial end */
  1105. /* 門市資訊-store start */
  1106. .store-banner {
  1107. background-image: url(/img/banner-store.jpg);
  1108. background-position: 25% 30%;
  1109. }
  1110. .store-banner p {
  1111. bottom: 45%;
  1112. }
  1113. .store-content {
  1114. margin: 150px auto;
  1115. letter-spacing: 1px;
  1116. }
  1117. .store-content i {
  1118. color: #b2adae;
  1119. font-size: 20px;
  1120. }
  1121. .store-content h3 {
  1122. margin-bottom: 20px;
  1123. font-weight: bold;
  1124. color: #ef7086;
  1125. }
  1126. .store-content img {
  1127. width: 100%;
  1128. border-radius: 20px 0 0 20px;
  1129. }
  1130. @media (max-width: 767px) {
  1131. .store-content img {
  1132. border-radius: 20px 20px 0 0;
  1133. }
  1134. }
  1135. .store-content .info-box {
  1136. width: 270px;
  1137. margin: auto;
  1138. }
  1139. @media (max-width: 375px) {
  1140. .store-content .info-box {
  1141. width: 100%;
  1142. }
  1143. }
  1144. .store-content .Down_line {
  1145. width: 230px;
  1146. margin-top: -20px;
  1147. }
  1148. .store-content .row {
  1149. margin: 15%;
  1150. border: 1px solid #f4c0d0;
  1151. border-radius: 20px;
  1152. }
  1153. @media (max-width: 1200px) {
  1154. .store-content .row {
  1155. margin: 10%;
  1156. }
  1157. }
  1158. @media (max-width: 992px) {
  1159. .store-content .row {
  1160. margin: 0px;
  1161. }
  1162. }
  1163. .store-content .google_map {
  1164. width: 100%;
  1165. padding: 7px 15px;
  1166. margin-top: 1px;
  1167. background: none;
  1168. color: #3f51b5;
  1169. border: 1px solid #3f51b5;
  1170. border-radius: 3px;
  1171. -webkit-transition: 0.3s;
  1172. transition: 0.3s;
  1173. font-size: 15px;
  1174. letter-spacing: 1px;
  1175. overflow-x: hidden;
  1176. }
  1177. .store-content .google_map a {
  1178. text-decoration: none;
  1179. color: #3f51b5;
  1180. }
  1181. .store-content .google_map:hover {
  1182. background: #3f51b5;
  1183. color: #fff;
  1184. }
  1185. .store-content .google_map:hover a {
  1186. color: #fff;
  1187. }
  1188. .store-content .line_Reserve {
  1189. width: 100%;
  1190. margin-left: 10%;
  1191. padding: 8px 15px;
  1192. background: #52b448;
  1193. color: #fff;
  1194. border: 1px solid #52b448;
  1195. border-radius: 5px;
  1196. -webkit-transition: 0.3s;
  1197. transition: 0.3s;
  1198. font-size: 15px;
  1199. letter-spacing: 1px;
  1200. overflow-x: hidden;
  1201. }
  1202. .store-content .line_Reserve a {
  1203. color: #fff;
  1204. text-decoration: none;
  1205. }
  1206. .store-content .line_Reserve:hover {
  1207. background: #fff;
  1208. color: #52b448;
  1209. }
  1210. .store-content .line_Reserve:hover a {
  1211. color: #52b448;
  1212. }
  1213. @media (max-width: 575px) {
  1214. .store-content .line_Reserve {
  1215. margin-left: 0;
  1216. margin-top: 5%;
  1217. }
  1218. }
  1219. @media (max-width: 992px) {
  1220. .store-content p {
  1221. font-size: 0.9rem;
  1222. }
  1223. .store-content h3 {
  1224. font-size: 1.3rem;
  1225. }
  1226. }
  1227. /* 門市資訊-store end */
  1228. /* 身體課程-massage start */
  1229. .massage-banner {
  1230. background-image: url(/img/banner-massage.jpg);
  1231. background-position: center;
  1232. }
  1233. .massage-banner p {
  1234. bottom: 45%;
  1235. }
  1236. .massage-modal-item .modal-body .badge {
  1237. width: auto;
  1238. padding-left: 13px;
  1239. letter-spacing: 2px;
  1240. }
  1241. /* 身體課程-massage end */
  1242. /* 關於我們-about start */
  1243. .about-content {
  1244. margin-bottom: 100px;
  1245. }
  1246. .about-content p {
  1247. padding: 0 60px;
  1248. line-height: 35px;
  1249. text-align: justify;
  1250. }
  1251. .about-content .title {
  1252. font-size: 30px;
  1253. letter-spacing: 3px;
  1254. font-weight: bold;
  1255. }
  1256. .about-content .container {
  1257. margin: 15% 5%;
  1258. }
  1259. .about-content .bg-item {
  1260. height: 120%;
  1261. background-color: #fff2f1;
  1262. position: absolute;
  1263. z-index: -1;
  1264. bottom: -10%;
  1265. left: -5%;
  1266. width: 90%;
  1267. }
  1268. .about-content .iframe-box {
  1269. position: relative;
  1270. width: 100%;
  1271. height: 0;
  1272. padding-bottom: 73%;
  1273. }
  1274. .about-content .iframe-box video {
  1275. position: absolute;
  1276. top: 0;
  1277. left: 0;
  1278. height: 100%;
  1279. -webkit-box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  1280. box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  1281. }
  1282. .about-content .icon-box .row {
  1283. padding: 0 30px;
  1284. }
  1285. @media (max-width: 1200px) {
  1286. .about-content .icon-box .row {
  1287. padding-left: 13%;
  1288. }
  1289. }
  1290. @media (max-width: 768px) {
  1291. .about-content .icon-box .row {
  1292. padding: 0;
  1293. }
  1294. }
  1295. .about-content .icon-box .col-6 {
  1296. -webkit-box-orient: horizontal;
  1297. -webkit-box-direction: normal;
  1298. -ms-flex-direction: row;
  1299. flex-direction: row;
  1300. }
  1301. @media (max-width: 767px) {
  1302. .about-content .icon-box .col-6 {
  1303. -webkit-box-orient: vertical;
  1304. -webkit-box-direction: normal;
  1305. -ms-flex-direction: column;
  1306. flex-direction: column;
  1307. }
  1308. }
  1309. .about-content .icon-box img {
  1310. width: 50px;
  1311. image-rendering: -webkit-optimize-contrast;
  1312. -webkit-filter: invert(71%) sepia(13%) saturate(3318%) hue-rotate(302deg) brightness(90%) contrast(110%);
  1313. filter: invert(71%) sepia(13%) saturate(3318%) hue-rotate(302deg) brightness(90%) contrast(110%);
  1314. }
  1315. .about-content .icon-box span {
  1316. margin: 15px;
  1317. font-weight: bold;
  1318. }
  1319. .about-content .icon-box .icon-item {
  1320. padding: 15px;
  1321. margin: auto 0;
  1322. border: 1px solid #f4c0d0;
  1323. border-radius: 100%;
  1324. }
  1325. @media (max-width: 1200px) {
  1326. .about-content .container {
  1327. margin: 10% auto;
  1328. }
  1329. .about-content .container p {
  1330. padding: 0;
  1331. }
  1332. .about-content .content-box {
  1333. margin-top: 100px;
  1334. }
  1335. }
  1336. /* 關於我們-about end */
  1337. .bottom_line {
  1338. margin: 0px auto 20px;
  1339. border: 1px solid transparent;
  1340. background: -webkit-gradient(linear, left top, right top, from(white), to(white)), -webkit-gradient(linear, left top, right top, from(#f4c0d0), to(#d76478));
  1341. background: linear-gradient(to right, white, white), linear-gradient(to right, #f4c0d0, #d76478);
  1342. background-clip: padding-box, border-box;
  1343. background-origin: padding-box, border-box;
  1344. width: 50px;
  1345. }
  1346. /*# sourceMappingURL=style.css.map */