@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

* {
  font-family: '微軟正黑體', sans-serif, Arial, Helvetica;
}

.gotop {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9;
  visibility: hidden;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e70c12;
  color: #fff;
  text-align: center;
  transform: scale(0.8);
  opacity: 0;
  transition: .3s;
}

.gotop.show {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 1366px) {
  .gotop {
    right: 100px;
    bottom: 40px;
    transform: scale(1);
  }
  .gotop:hover {
    transform: scale(1.1);
  }
}

.gotop p {
  width: 100%;
  line-height: 32px;
}

.add-line {
  display: block;
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 9;
  width: 80px;
  height: 80px;
  background: url("../img/olily/icon_line.svg") center center no-repeat;
  background-size: 128%;
  text-align: center;
  visibility: hidden;
  transform: scale(0.8);
  opacity: 0;
  transition: .3s;
}

.add-line.show {
  visibility: visible;
  opacity: 1;
}

.add-line h3 {
  display: none;
  margin-bottom: 0;
  color: #4aac43;
  font-size: 32px;
  font-weight: bold;
  line-height: 55px;
}

.add-line p, .add-line span {
  display: none;
  color: #fff;
}

.add-line p {
  padding-bottom: 140px;
  font-size: 16px;
  line-height: 40px;
}

.add-line span {
  font-size: 14px;
  text-decoration: underline;
}

@media screen and (min-width: 1366px) {
  .add-line {
    right: 0;
    bottom: 160px;
    width: 181px;
    height: 265px;
    background: transparent url("../img/olily/line_bg.png") center center no-repeat;
    transform: scale(1);
  }
  .add-line h3 {
    display: block;
  }
  .add-line p, .add-line span {
    display: block;
  }
}

footer {
  font-family: '微軟正黑體', sans-serif, Arial, Helvetica;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #fff;
  background: #e70c12;
  padding: 20px;
}

footer p {
  text-align: center;
  font-size: 18px;
}

footer .footer-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

footer .logo {
  width: auto;
  height: auto;
  padding: 8px 0;
  margin: 0 auto;
  text-align: center;
}

@media screen and (min-width: 1366px) {
  footer .footer-wrap {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  footer .logo {
    position: absolute;
    left: 0;
    top: 0;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

header .logo-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background-color: #c30d24;
}

header .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: calc(100% - 37px);
  height: 80px;
  padding: 20px;
  text-align: center;
}

header .logo img {
  max-width: 100%;
}

header .social {
  display: none;
  justify-content: center;
  align-items: center;
}

header .social a {
  margin-left: 12px;
}

header .social img {
  width: 29px;
}

@media screen and (min-width: 1366px) {
  header .logo-group {
    justify-content: center;
    align-items: center;
  }
  header .logo-group .logo {
    width: auto;
  }
  header .logo-group img {
    max-width: 430px;
  }
  header .social {
    display: flex;
  }
}

.menu-icon {
  display: none;
  width: 30px;
  position: fixed;
  top: 25px;
  right: 30px;
  cursor: pointer;
}

.menu-icon img {
  width: 100%;
}

@media screen and (min-width: 1366px) {
  .menu-icon {
    top: 20px;
  }
}

.header-ul {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1200px;
  margin-right: 30px;
  position: relative;
  margin: 0 auto;
}

.header-ul a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 110px;
  font-size: 20px;
  color: #fff;
  padding: 24px 0;
  margin-left: 25px;
  position: relative;
}

.header-ul a::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 50%;
  transform-origin: right center;
  transform: translateX(50%) scaleX(0);
  width: 80px;
  height: 1px;
  background: #c30d24;
  transition: all 0.3s;
}

.header-ul li:hover a {
  filter: brightness(1.2);
}

.header-ul li:hover a::after {
  transform: translateX(50%) scaleX(1);
}

.header-ul li .social {
  display: flex;
  justify-content: center;
}

.header-ul li .social a {
  width: auto;
  height: auto;
  margin: 0 12px;
}

@media screen and (min-width: 1366px) {
  .header-ul {
    display: none;
  }
  .header-ul a {
    color: #000;
  }
  .header-ul li .social {
    display: none;
  }
}

.close-icon {
  display: none;
  width: 30px;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

.close-icon img {
  width: 100%;
}

.content {
  width: 1200px;
  text-align: center;
}

.width1 {
  width: 1200px;
}

.width2 {
  width: 900px;
}

.m-block {
  display: inline-block;
}

@media screen and (min-width: 1366px) {
  .m-block {
    display: none;
  }
}

.m-none {
  display: none;
}

@media screen and (min-width: 1366px) {
  .m-none {
    display: inline-block;
  }
}

.xs-block {
  display: inline-block;
}

@media screen and (min-width: 720px) {
  .xs-block {
    display: none;
  }
}

.main-vision {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  background-color: #333;
}

.main-vision.vision3 {
  height: 280px;
  padding-top: 0;
  margin-top: 76px;
  background: url("../img/olily/bn-02@2x.jpg") center center no-repeat;
  background-size: cover;
}

.main-vision.vision3 .main-text h1 {
  padding-top: 0;
  font-size: 32px;
  line-height: 44px;
  text-shadow: 4.4px 6.7px 8.9px #1c1c1c;
}

.main-vision.vision3 .main-text h1 span {
  color: #f2b640;
  font-size: 48px;
  line-height: 66px;
}

.main-vision.vision3 .main-text p {
  padding-top: 12px;
  font-weight: bold;
  font-size: 18px;
  line-height: normal;
  text-shadow: 4.4px 6.7px 8.9px #1c1c1c;
}

@media screen and (min-width: 720px) {
  .main-vision.vision3 {
    height: 540px;
    padding-top: 80px;
  }
  .main-vision.vision3 .main-text h1 {
    padding-top: 24px;
    font-size: 50px;
    line-height: 74px;
    text-shadow: 4.4px 6.7px 8.9px #1c1c1c;
  }
  .main-vision.vision3 .main-text h1 span {
    color: #f2b640;
    font-size: 70px;
    line-height: 96px;
  }
  .main-vision.vision3 .main-text p {
    padding-top: 18px;
    font-weight: bold;
    font-size: 32px;
    line-height: normal;
    text-shadow: 4.4px 6.7px 8.9px #1c1c1c;
  }
}

@media screen and (min-width: 1366px) {
  .main-vision.vision3 {
    height: 900px;
  }
  .main-vision.vision3 .main-text h1 {
    font-size: 100px;
    line-height: 124px;
    text-shadow: 4.4px 6.7px 8.9px #1c1c1c;
  }
  .main-vision.vision3 .main-text h1 span {
    color: #f2b640;
    font-size: 120px;
    line-height: 146px;
  }
  .main-vision.vision3 .main-text p {
    padding-top: 120px;
    font-weight: bold;
    font-size: 44px;
    line-height: normal;
    text-shadow: 4.4px 6.7px 8.9px #1c1c1c;
  }
}

.main-vision.vision2 {
  background: #999;
}

.main-vision.vision2 .main-text h1 {
  font-size: 32px;
  line-height: 54px;
  text-shadow: 4.4px 6.7px 8.9px #1c1c1c;
}

.main-vision.vision2 .main-text h1 span {
  color: #f2b640;
  font-size: 48px;
  line-height: 66px;
}

.main-vision.vision2 .main-text p {
  padding-top: 18px;
  font-weight: bold;
  font-size: 32px;
  line-height: normal;
  text-shadow: 4.4px 6.7px 8.9px #1c1c1c;
}

@media screen and (min-width: 720px) {
  .main-vision.vision2 {
    padding-top: 80px;
  }
  .main-vision.vision2 .main-text h1 {
    font-size: 50px;
    line-height: 74px;
    text-shadow: 4.4px 6.7px 8.9px #1c1c1c;
  }
  .main-vision.vision2 .main-text h1 span {
    color: #f2b640;
    font-size: 70px;
    line-height: 96px;
  }
  .main-vision.vision2 .main-text p {
    padding-top: 18px;
    font-weight: bold;
    font-size: 32px;
    line-height: normal;
    text-shadow: 4.4px 6.7px 8.9px #1c1c1c;
  }
}

@media screen and (min-width: 1366px) {
  .main-vision.vision2 .main-text h1 {
    font-size: 100px;
    line-height: 124px;
    text-shadow: 4.4px 6.7px 8.9px #1c1c1c;
  }
  .main-vision.vision2 .main-text h1 span {
    color: #f2b640;
    font-size: 120px;
    line-height: 146px;
  }
  .main-vision.vision2 .main-text p {
    padding-top: 120px;
    font-weight: bold;
    font-size: 44px;
    line-height: normal;
    text-shadow: 4.4px 6.7px 8.9px #1c1c1c;
  }
}

.main-vision .main-text {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  padding-left: 24px;
  color: #fff;
}

.main-vision .main-text h1 {
  padding-top: 24px;
  margin-bottom: 10px;
  text-shadow: 0px 6px 3.7px rgba(59, 60, 60, 0.69);
  font-size: 40px;
  line-height: 56px;
  font-weight: bolder;
}

.main-vision .main-text h1 span {
  display: inline-block;
  font-size: 32px;
  line-height: 48px;
}

.main-vision .main-text p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 5px;
}

.main-vision .video {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding-right: 100px;
}

.main-vision .video video {
  max-width: 720px;
}

@media screen and (min-width: 720px) {
  .main-vision {
    height: 540px;
  }
  .main-vision .main-text {
    padding-left: 50px;
  }
  .main-vision .video {
    padding-right: 0;
  }
  .main-vision .video video {
    max-width: 1366px;
  }
}

@media screen and (min-width: 1366px) {
  .main-vision {
    height: 100vh;
  }
  .main-vision .main-text {
    padding-left: 24px;
  }
  .main-vision .main-text h1 {
    padding-top: 0;
    margin-bottom: 10px;
    font-size: 88px;
    line-height: 96px;
  }
  .main-vision .main-text h1 span {
    font-size: 63px;
  }
  .main-vision .main-text p {
    font-size: 35px;
    line-height: 55px;
    letter-spacing: 5px;
  }
  .main-vision .video {
    height: 100vh;
    padding-right: 0;
  }
  .main-vision .video video {
    max-width: none;
    height: 100%;
  }
}

@media screen and (min-width: 1920px) {
  .main-vision .video video {
    width: 100%;
    max-width: none;
    height: auto;
  }
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50px 0;
}

h2 {
  font-size: 55px;
  line-height: 75px;
}

h3 {
  font-weight: bold;
  font-size: 35px;
  line-height: 55px;
  margin-bottom: 30px;
}

p {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 40px;
}

.about {
  background: url("../img/olily/service_bg2.jpg") center center no-repeat;
  background-size: 2000px;
}

.about .vision3 h2,
.about .vision2 h2 {
  margin-bottom: 8px;
  color: #e50012;
  font-weight: bold;
  font-size: 25px;
  line-height: 48px;
  text-align: center;
}

.about .vision3 h3,
.about .vision2 h3 {
  margin-bottom: 24px;
  color: #ff7610;
  font-weight: bold;
  font-size: 20px;
  line-height: 36px;
  text-align: justify;
}

.about .vision3 p,
.about .vision2 p {
  padding: 32px 15px 0;
  border-top: 1px solid #888;
  color: #020202;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
}

.about .vision3 img,
.about .vision2 img {
  margin-top: 36px;
}

@media screen and (min-width: 720px) {
  .about .vision3 h2,
  .about .vision2 h2 {
    margin-bottom: 18px;
    color: #e50012;
    font-weight: bold;
    font-size: 52px;
    line-height: 78px;
    text-align: center;
  }
  .about .vision3 h3,
  .about .vision2 h3 {
    margin-bottom: 24px;
    color: #ff7610;
    font-weight: bold;
    font-size: 32px;
    line-height: 46px;
    text-align: center;
  }
  .about .vision3 p,
  .about .vision2 p {
    padding: 32px 15px 0;
    border-top: 1px solid #888;
    color: #020202;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
  }
  .about .vision3 img,
  .about .vision2 img {
    margin-top: 36px;
  }
}

@media screen and (min-width: 1366px) {
  .about .vision3 h2,
  .about .vision2 h2 {
    margin-bottom: 35px;
    color: #e50012;
    font-weight: bold;
    font-size: 92px;
    line-height: 128px;
    text-align: center;
  }
  .about .vision3 h3,
  .about .vision2 h3 {
    margin-bottom: 45px;
    color: #ff7610;
    font-weight: bold;
    font-size: 38px;
    line-height: 56px;
    text-align: justify;
  }
  .about .vision3 p,
  .about .vision2 p {
    padding: 44px 15px 0;
    border-top: 1px solid #888;
    color: #020202;
    font-size: 33px;
    line-height: 49px;
    text-align: center;
  }
  .about .vision3 img,
  .about .vision2 img {
    margin-top: 36px;
  }
}

.about .vision2 h2 {
  text-align: center;
}

.about p {
  font-size: 22px;
}

.about img {
  max-width: 100%;
}

.service {
  background: url("../img/olily/service_bg.jpg") center center no-repeat;
  background-size: cover;
}

@media screen and (min-width: 1366px) {
  .service {
    background: url("../img/olily/service_bg_pc.jpeg") center center no-repeat;
    background-size: cover;
  }
}

.service .content {
  width: 100%;
  max-width: 1440px;
}

.service.vision2 {
  background: #fff;
}

.service.vision2 img {
  max-width: 100%;
}

.service.vision2 .media-pic {
  display: block;
}

.service.vision2 .service-detail {
  position: relative;
  max-width: 1440px;
  margin-bottom: 0;
}

@media screen and (min-width: 720px) {
  .service.vision2 .service-detail {
    margin-bottom: 50px;
  }
}

.service.vision2 .service-detail-wrapper {
  position: absolute;
  width: 20%;
  height: 80px;
  padding: 0;
}

.service.vision2 .service-detail-wrapper p {
  position: relative;
  left: auto;
  bottom: 0;
  transform: translateX(0%);
  width: 100%;
  max-width: 334px;
  height: 80px;
  padding: 20px 0px;
  border: 0;
  background: transparent;
  font-size: 14px;
  line-height: normal;
}

.service.vision2 .service-detail-wrapper p .more_btn {
  padding-top: 0px;
  font-size: 12px;
}

.service.vision2 .service-detail-wrapper p .more_btn i {
  max-width: 14px;
}

.service.vision2 .service-detail-wrapper.wrapper01 {
  left: 0;
  bottom: -45px;
}

.service.vision2 .service-detail-wrapper.wrapper02 {
  top: -25px;
  left: 20%;
}

.service.vision2 .service-detail-wrapper.wrapper03 {
  bottom: -45px;
  left: 39.5%;
}

.service.vision2 .service-detail-wrapper.wrapper04 {
  top: -25px;
  right: 21%;
}

.service.vision2 .service-detail-wrapper.wrapper05 {
  bottom: -45px;
  right: 0;
}

@media screen and (min-width: 720px) {
  .service.vision2 .service-detail-wrapper {
    position: absolute;
    width: 20%;
    height: 100px;
    padding: 0;
  }
  .service.vision2 .service-detail-wrapper p {
    position: relative;
    left: auto;
    bottom: 0;
    transform: translateX(0%);
    width: 100%;
    max-width: 334px;
    height: 100px;
    padding: 20px 12px;
    border: 0;
    background: transparent;
    font-size: 22px;
    line-height: normal;
  }
  .service.vision2 .service-detail-wrapper p .more_btn {
    padding-top: 12px;
    font-size: 18px;
  }
  .service.vision2 .service-detail-wrapper p .more_btn i {
    max-width: none;
  }
  .service.vision2 .service-detail-wrapper.wrapper01 {
    left: 0;
    bottom: 0;
  }
  .service.vision2 .service-detail-wrapper.wrapper02 {
    top: 10px;
    left: 20%;
  }
  .service.vision2 .service-detail-wrapper.wrapper03 {
    bottom: 0;
    left: 39.5%;
  }
  .service.vision2 .service-detail-wrapper.wrapper04 {
    top: 10px;
    right: 21%;
  }
  .service.vision2 .service-detail-wrapper.wrapper05 {
    bottom: 0;
    right: 0;
  }
}

@media screen and (min-width: 1366px) {
  .service.vision2 .service-detail-wrapper {
    position: absolute;
    width: auto;
    height: 139px;
    padding: 0;
  }
  .service.vision2 .service-detail-wrapper p {
    position: relative;
    left: auto;
    bottom: 0;
    transform: translateX(0%);
    width: 100%;
    max-width: 334px;
    height: 139px;
    padding: 20px 12px;
    border: 0;
    background: transparent;
    font-size: 36px;
    line-height: normal;
  }
  .service.vision2 .service-detail-wrapper p .more_btn {
    padding-top: 17px;
    font-size: 24px;
  }
  .service.vision2 .service-detail-wrapper.wrapper01 {
    left: 0;
    bottom: 100px;
  }
  .service.vision2 .service-detail-wrapper.wrapper02 {
    top: 90px;
    left: 20%;
  }
  .service.vision2 .service-detail-wrapper.wrapper03 {
    bottom: 100px;
    left: 39.5%;
  }
  .service.vision2 .service-detail-wrapper.wrapper04 {
    top: 90px;
    right: 21%;
  }
  .service.vision2 .service-detail-wrapper.wrapper05 {
    bottom: 100px;
    right: 0;
  }
}

.service.vision3 {
  background: #fff;
}

.service.vision3 img {
  max-width: 100%;
}

.service.vision3 .media-pic {
  display: block;
}

.service.vision3 .service-detail {
  position: relative;
  max-width: 1440px;
  margin-bottom: 0;
}

@media screen and (min-width: 720px) {
  .service.vision3 .service-detail {
    margin-bottom: 50px;
  }
}

.service.vision3 .service-detail-wrapper {
  position: relative;
  width: 33%;
  height: 100px;
  padding: 0 5px;
  margin-top: 16px;
}

.service.vision3 .service-detail-wrapper p {
  position: static;
  bottom: 0;
  width: 100%;
  max-width: 334px;
  height: 100px;
  padding: 20px 12px;
  font-size: 18px;
}

.service.vision3 .service-detail-wrapper p .more_btn {
  padding-top: 0px;
  font-size: 16px;
}

.service.vision3 .service-detail-wrapper.wrapper02 p {
  transform: translateX(0%);
}

@media screen and (min-width: 720px) {
  .service.vision3 .service-detail-wrapper {
    position: relative;
    width: 33%;
    height: 139px;
    padding: 0 10px;
    margin-top: 16px;
  }
  .service.vision3 .service-detail-wrapper p {
    bottom: 0;
    width: 100%;
    max-width: none;
    height: 139px;
    padding: 20px 12px;
    font-size: 32px;
  }
  .service.vision3 .service-detail-wrapper p .more_btn {
    padding-top: 17px;
    font-size: 28px;
  }
}

@media screen and (min-width: 1366px) {
  .service.vision3 .service-detail-wrapper {
    position: relative;
    width: 33%;
    height: 139px;
    padding: 0;
    margin-top: 16px;
  }
  .service.vision3 .service-detail-wrapper p {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 334px;
    height: 139px;
    padding: 20px 12px;
    font-size: 46px;
  }
  .service.vision3 .service-detail-wrapper p .more_btn {
    padding-top: 17px;
    font-size: 28px;
  }
  .service.vision3 .service-detail-wrapper.wrapper02 p {
    transform: translateX(-50%);
  }
}

.service.vision3 .service-detail-wrapper.wrapper01 p {
  left: 40px;
  transform: translateX(0%);
}

.service.vision3 .service-detail-wrapper.wrapper03 p {
  left: auto;
  right: 40px;
  transform: translateX(0%);
}

.service-detail {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 50px auto;
}

.service-detail-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: 50%;
  max-width: 100%;
  height: 300px;
  padding: 0 16px;
  margin-bottom: 32px;
  cursor: pointer;
  transition: .3s;
}

.service-detail-wrapper .media {
  max-width: 100%;
}

.service-detail-wrapper:hover {
  transform: scale(1.1);
}

.service-detail-wrapper.wrapper05 .media {
  max-width: 160px;
}

@media screen and (min-width: 720px) {
  .service-detail-wrapper .media {
    max-width: 200px;
  }
  .service-detail-wrapper.wrapper05 .media {
    max-width: none;
    margin-top: -48px;
  }
}

@media screen and (min-width: 1366px) {
  .service-detail-wrapper.wrapper03 .media {
    margin-top: 30px;
  }
  .service-detail-wrapper.wrapper05 .media {
    margin-top: -48px;
  }
}

.service-detail-wrapper p {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: calc(100% - 12px);
  height: 96px;
  max-width: 220px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.7);
  color: #414141;
  font-weight: bold;
  font-size: 25px;
  text-align: center;
}

.service-detail-wrapper p .more_btn {
  color: #be1e2d;
  font-weight: bold;
  font-size: 18px;
}

.service-detail-wrapper p .more_btn i {
  display: inline-block;
  line-height: 0;
  vertical-align: middle;
}

.service-detail-wrapper p span {
  width: 100%;
}

@media screen and (min-width: 1366px) {
  .service-detail-wrapper p {
    width: 100%;
  }
}

@media screen and (min-width: 1366px) {
  .service-detail-wrapper {
    align-items: flex-start;
    height: auto;
    padding: 16px 16px;
    margin-bottom: 0;
    width: 50%;
    max-width: 50%;
    padding: 30px 24px;
  }
  .service-detail-wrapper p {
    bottom: 16px;
  }
}

@media screen and (min-width: 1440px) {
  .service-detail-wrapper {
    padding: 30px 24px;
  }
  .service-detail-wrapper p {
    bottom: 16px;
  }
}

.advantages {
  background: url("../img/olily/dot_bg.jpg") center center repeat-y;
  background-size: 2000px;
}

.advantages h3 {
  margin-bottom: 40px;
}

@media screen and (min-width: 1366px) {
  .advantages h3 {
    margin-bottom: 40px;
  }
}

.advantages-detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.advantages-detail-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: calc(100% / 2);
  height: 250px;
  padding: 0 12px;
  margin-bottom: 32px;
}

.advantages-detail-wrapper p {
  font-size: 25px;
  line-height: 40px;
}

.advantages-detail-wrapper .advantages-img {
  display: flex;
  align-items: center;
  height: 173px;
  overflow: hidden;
}

.advantages-detail-wrapper .advantages-img img {
  width: 85%;
}

.advantages-detail-wrapper .anime {
  display: none;
}

.advantages-detail-wrapper:hover .image {
  display: none;
}

.advantages-detail-wrapper:hover .anime {
  display: block;
  margin-top: -3px;
}

.advantages-detail-wrapper:last-of-type:hover .anime, .advantages-detail-wrapper:nth-of-type(4):hover .anime {
  margin-top: 0;
}

@media screen and (min-width: 1366px) {
  .advantages-detail-wrapper {
    width: calc(100% / 3);
    padding: 0;
  }
  .advantages-detail-wrapper .advantages-img img {
    width: 100%;
  }
}

.works {
  background: #eee;
}

.works .content {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (min-width: 1366px) {
  .works {
    padding: 50px 96px;
  }
}

.modal-content {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  padding: 0 10px;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content.show {
  display: flex;
}

.modal-content .service-modal {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: auto;
  padding: 56px 45px;
  border: 2px solid #e70c12;
  border-radius: 12px;
  color: #fff;
}

.modal-content .service-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal-content .service-modal h4 {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 24px;
  line-height: 44px;
}

.modal-content .service-modal p {
  font-size: 18px;
  line-height: 44px;
}

.modal-content .service-modal .modal-btn {
  position: absolute;
  bottom: 30px;
  right: 45px;
  width: 98px;
  border-radius: 8px;
  background-color: #e70c12;
  color: #fff;
  line-height: 35px;
  text-align: center;
  transition: .3s;
}

.modal-content .service-modal .modal-btn:hover {
  transform: scale(1.1);
}

.works-slick {
  cursor: grab;
}

.works-slick .slick-list {
  padding: 10px 0;
}

.works-slick .works-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.works-slick .works-button img {
  width: 20px;
}

.works-slick .works-button.prev {
  left: -12px;
}

.works-slick .works-button.next {
  right: -12px;
}

@media screen and (min-width: 1366px) {
  .works-slick .works-button img {
    width: auto;
  }
  .works-slick .works-button.prev {
    left: -72px;
  }
  .works-slick .works-button.next {
    right: -72px;
  }
}

.work-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 20px;
  transition: .3s;
}

.work-wrapper:hover {
  outline: none;
  cursor: pointer;
  transform: scale(1.05);
}

.work-wrapper:focus {
  outline: none;
  cursor: pointer;
}

.work-wrapper img {
  width: 100%;
}

.work-wrapper p {
  width: 100%;
  height: 40px;
  margin-top: -1px;
  background-color: #4d4d4d;
  color: #fff;
  font-size: 20px;
  line-height: 40px;
}

.permutations {
  background: url("../img/olily/dot_bg_l.jpg") center center repeat-y;
  background-size: 2000px;
}

.permutations .content {
  width: 100%;
}

.permutations.vision2 h3, .permutations.vision3 h3 {
  font-weight: bold;
}

.permutations.vision2 .caption, .permutations.vision3 .caption {
  color: #666;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
}

@media screen and (min-width: 720px) {
  .permutations.vision2 .caption, .permutations.vision3 .caption {
    font-size: 24px;
    line-height: 32px;
  }
}

@media screen and (min-width: 1366px) {
  .permutations.vision2 .caption, .permutations.vision3 .caption {
    font-size: 36px;
    line-height: 52px;
  }
}

@media screen and (min-width: 1366px) {
  .permutations .content {
    width: 1200px;
  }
}

.permutations .permutations-slick {
  width: 100%;
  position: relative;
}

@media screen and (min-width: 1366px) {
  .permutations .permutations-slick {
    width: 84%;
  }
}

.permutations .permutations-detail-wrapper {
  display: flex;
  justify-content: center;
}

.permutations .permutations-detail-wrapper img {
  width: 100px;
}

@media screen and (min-width: 1366px) {
  .permutations .permutations-detail-wrapper {
    justify-content: flex-start;
    align-items: stretch;
  }
}

.permutations .pernutations-img {
  position: relative;
}

.permutations .pernutations-img.slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.permutations .pernutations-img img {
  width: 100%;
  max-width: calc(100% - 40px);
  border: 1px solid #999;
  vertical-align: middle;
}

.permutations .pernutations-img p {
  flex: 1 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: calc(100% - 40px);
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  line-height: 50px;
}

.permutations .pernutations-img p br {
  display: none;
}

.permutations .pernutations-img p span {
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  font-weight: bold;
  line-height: normal;
}

.permutations .pernutations-img p span::after {
  content: ' / ';
}

@media screen and (min-width: 1366px) {
  .permutations .pernutations-img.slick-slide {
    justify-content: flex-start;
  }
  .permutations .pernutations-img img {
    width: 100%;
    max-width: 800px;
    vertical-align: middle;
  }
  .permutations .pernutations-img p {
    position: static;
    flex: 1 0 200px;
    max-width: 200px;
    transform: translateX(0);
    width: 100%;
    height: auto;
    background-color: transparent;
    color: #111;
    line-height: normal;
  }
  .permutations .pernutations-img p br {
    display: block;
  }
  .permutations .pernutations-img p span {
    padding: 4px 8px;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 8px;
    border-radius: 8px;
    background-color: #ccc;
    color: #333;
    font-size: 24px;
  }
  .permutations .pernutations-img p span::after {
    content: none;
  }
}

.permutations .pernutations-button {
  position: absolute;
  top: calc(50% - 23.5px);
  right: 0;
  width: auto;
}

.permutations .pernutations-button button {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 40px;
  padding: 10px 24px;
  color: #fff;
  font-size: 16px;
}

.permutations .pernutations-button button:hover {
  background: #333;
  filter: brightness(1.2);
  outline: none;
}

.permutations .pernutations-button button:focus {
  background: #333;
  filter: brightness(1.2);
  outline: none;
}

.permutations .pernutations-button img {
  width: 20px;
}

@media screen and (min-width: 1366px) {
  .permutations .pernutations-button {
    position: absolute;
    top: calc(50% - 23.5px);
    right: -36%;
    width: 200px;
  }
  .permutations .pernutations-button button {
    padding: 10px 30px;
    border-radius: 40px;
    background: #111;
    color: #ccc;
    font-size: 20px;
    transition: .3s;
  }
  .permutations .pernutations-button button:hover {
    background: #e70c12;
    filter: brightness(1.2);
    outline: none;
  }
  .permutations .pernutations-button button:focus {
    background: #333;
    filter: brightness(1.2);
    outline: none;
  }
}

.permutations .permutations-nav {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  padding: 12px 0 12px 12px;
}

@media screen and (min-width: 1366px) {
  .permutations .permutations-nav {
    display: flex;
  }
}

.permutations .permutations-nav img {
  width: 100%;
  border: 1px solid #999;
  cursor: pointer;
  transition: .3s;
}

.permutations .permutations-nav img:hover {
  transform: scale(1.05);
}

.permutations-detail {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.slick-prev {
  display: none;
}

.price {
  color: #000;
  background: #eee;
}

.price.vision2 .price-detail-wrapper {
  width: 100%;
}

@media screen and (min-width: 1366px) {
  .price.vision2 .price-detail-wrapper {
    width: calc((100% - 60px) / 3);
  }
}

.price.vision2 .price-descript {
  padding: 0 18px;
  text-align: left;
}

.price.vision2 .price-content li {
  padding-left: 48px;
  text-align: left;
}

.price.vision2 .price-content li:last-child {
  margin-bottom: 15px;
  border-bottom: 0;
}

.price.vision3 .price-detail-wrapper {
  width: 100%;
  max-width: 1200px;
}

.price.vision3 .price-descript {
  max-width: 657px;
  height: auto;
  padding: 0 18px;
  margin: 0 auto;
  font-size: 20px;
  text-align: left;
}

@media screen and (min-width: 1366px) {
  .price.vision3 .price-descript {
    font-size: 25px;
  }
}

.price.vision3 .real-price {
  height: auto;
  font-size: 46px;
  line-height: 80px;
}

@media screen and (min-width: 720px) {
  .price.vision3 .real-price {
    font-size: 46px;
    line-height: 80px;
  }
}

@media screen and (min-width: 1366px) {
  .price.vision3 .real-price {
    font-size: 123px;
    line-height: 206px;
  }
}

.price.vision3 .price-content {
  max-width: 657px;
  margin: 32px auto 55px;
}

.price.vision3 .price-content li {
  height: auto;
  padding: 0 0 0 15px;
  border-bottom: 0;
  font-size: 20px;
  text-align: left;
  line-height: 51px;
}

.price.vision3 .price-content p {
  display: inline;
  position: static;
  transform: translateX(0%);
  width: auto;
  font-size: 20px;
}

@media screen and (min-width: 1366px) {
  .price.vision3 .price-content li {
    font-size: 27px;
  }
  .price.vision3 .price-content p {
    font-size: 24px;
  }
}

.price-detail {
  display: flex;
  justify-content: center;
}

.price-detail-wrapper {
  width: calc((100% - 60px) / 4);
  margin: 0 10px;
  color: #333;
  font-weight: bold;
  background: #fff;
}

.price-detail-wrapper:first-child {
  margin-left: 0;
}

.price-detail-wrapper:last-child {
  margin-right: 0;
}

.price-title {
  width: 100%;
  font-size: 25px;
  line-height: 40px;
  font-weight: bold;
  color: #fff;
  background: #e70c12;
  padding: 20px 0;
}

.real-price {
  height: 100px;
  font-size: 46px;
  line-height: 100px;
  color: #e70c12;
}

.real-price span {
  font-size: 16px;
}

.price-descript {
  height: 80px;
  line-height: 28px;
  padding: 0 8px;
  font-weight: bold;
  font-size: 20px;
}

.price-content li {
  height: 60px;
  border-bottom: 1px solid #666;
  padding: 20px 0;
  position: relative;
  font-size: 20px;
}

.price-content p {
  font-size: 14px;
  color: #999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.price-date {
  font-size: 20px;
  padding: 30px 0;
}

.price-button {
  display: inline-block;
  font-size: 20px;
  background: transparent;
  border: 2px solid #e70c12;
  border-radius: 30px;
  padding: 10px 30px;
  margin-bottom: 30px;
  transition: all 0.3s;
  color: #e70c12;
}

.price-button:hover {
  color: #fff;
  background: #e70c12;
  filter: brightness(1.2);
}

.price-button:focus {
  background: #e70c12;
  filter: brightness(1.2);
  color: #fff;
  outline: none;
}

.price-note {
  text-align: left;
  margin-top: 30px;
}

.price-note p {
  line-height: 25px;
}

.contact {
  background: url("../img/olily/dot_bg_l.jpg") center center repeat-y;
  background-size: 2000px;
}

.contact * {
  box-sizing: border-box;
}

.contact .contact-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact .contact-form {
  width: 100%;
  max-width: 603px;
}

.contact .contact-form .form-group {
  width: 100%;
  padding-bottom: 24px;
}

.contact .contact-form .form-group input, .contact .contact-form .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e70c12;
  border-radius: 8px;
}

.contact .contact-form .form-group input:focus, .contact .contact-form .form-group textarea:focus {
  outline: 0;
}

.contact .contact-form .form-group input {
  height: 43px;
  padding: 0 15px;
}

.contact .contact-form .btn-fill {
  width: 124px;
  height: 51px;
  border-radius: 26px;
  background-color: #e70c12;
  color: #fff;
  font-size: 18px;
  letter-spacing: 1.8px;
  transition: .3s;
}

.contact .contact-form .btn-fill:hover {
  background-color: #ee5156;
}

.contact address {
  align-self: flex-end;
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: left;
  font-size: 18px;
}

.contact address h6 {
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.contact address p {
  margin-top: 10px;
  line-height: 30px;
}

.contact address p i {
  display: inline-block;
  margin-right: 4px;
  line-height: 0;
  vertical-align: text-top;
}

.contact address p i img {
  display: inline-block;
}

@media screen and (min-width: 960px) {
  .contact address {
    padding-left: 32px;
  }
}

@media screen and (min-width: 1366px) {
  .contact .contact-wrap {
    justify-content: space-between;
  }
  .contact .contact-form {
    flex: 1 0 auto;
  }
  .contact .address {
    flex: 1 0 auto;
    padding-top: 0px;
    padding-bottom: 75px;
    padding-left: 0;
  }
}

@media screen and (max-width: 1300px) {
  .logo {
    width: 400px;
    height: 70px;
    padding: 18px;
  }
  .header-ul a {
    width: 60px;
    height: 60px;
    font-size: 14px;
    margin-left: 15px;
  }
  .header-ul a::after {
    bottom: 10px;
  }
  .content {
    width: 900px;
  }
  .width1 {
    width: 900px;
  }
  .width2 {
    width: 900px;
  }
  h1 {
    font-size: 50px;
    line-height: 70px;
    margin-bottom: 0px;
  }
  .main-text p {
    font-size: 30px;
    line-height: 45px;
    letter-spacing: 4px;
  }
  h2 {
    font-size: 50px;
    line-height: 70px;
  }
  h3 {
    font-size: 30px;
    line-height: 45px;
  }
  p {
    font-size: 14px;
    line-height: 25px;
  }
  .service-detail-wrapper p {
    font-size: 20px;
    line-height: 30px;
  }
  .advantages-detail-wrapper {
    height: 200px;
  }
  .advantages-detail-wrapper p {
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
  }
  .pernutations-button button {
    font-size: 16px;
  }
  .price-detail {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .price-detail-wrapper {
    width: calc(90% / 2);
    margin: 30px 0;
  }
  .price-title {
    font-size: 20px;
    line-height: 30px;
    padding: 15px 0;
  }
  .real-price {
    height: 80px;
    font-size: 46px;
    line-height: 80px;
  }
  .price-descript {
    height: 64px;
    line-height: 24px;
    padding: 0 5px;
  }
  .price-content li {
    height: 55px;
    padding: 15px 0;
  }
  .price-content p {
    top: 60%;
  }
  .price-date {
    padding: 20px 0;
  }
  .price-button {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .price-note {
    margin-top: 0px;
  }
  footer {
    padding: 10px;
  }
  footer p {
    font-size: 14px;
  }
}

@media screen and (max-width: 1365px) {
  .content {
    width: 90%;
  }
  .width1 {
    width: 90%;
  }
  .width2 {
    width: 90%;
  }
  .menu-icon {
    display: block;
  }
  .close-icon {
    display: block;
  }
  .header-ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 500px;
    max-width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    right: -100%;
    margin-right: 0;
    transition: all 0.5s linear;
  }
  .header-ul li {
    width: 100%;
  }
  .header-ul a {
    align-items: center;
    width: 100%;
    height: 80px;
    font-size: 20px;
    margin-left: 0;
  }
  .header-ul a::after {
    height: 3px;
  }
  .menu-open {
    right: 0;
  }
  .service-detail {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 45px;
    line-height: 60px;
  }
  .main-text p {
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 3px;
  }
  h2 {
    font-size: 45px;
    line-height: 60px;
  }
  h3 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 10px;
  }
  .permutations-name {
    width: 100px;
  }
  .pernutations-button {
    width: 100px;
    right: -100px;
  }
  .pernutations-button button {
    font-size: 16px;
    padding: 10px 20px;
  }
  .price-detail-wrapper {
    width: 60%;
  }
}

@media screen and (max-width: 540px) {
  .logo {
    width: 250px;
    height: 55px;
  }
  .menu-icon {
    width: 25px;
    right: 15px;
  }
  .close-icon {
    width: 25px;
    top: 15px;
    right: 15px;
  }
  .header-ul {
    width: 100%;
  }
  .header-ul a {
    height: 60px;
    font-size: 16px;
  }
  h1 {
    font-size: 35px;
    line-height: 50px;
  }
  .main-text p {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 2px;
  }
  h2 {
    font-size: 35px;
    line-height: 50px;
  }
  address {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .advantages-detail {
    width: 100%;
    margin: 0 auto;
  }
  .advantages-detail-wrapper {
    width: calc(100% / 2);
    height: 180px;
  }
  .advantages-detail-wrapper p {
    font-size: 16px;
    line-height: 20px;
  }
  .permutations-name {
    width: 60px;
  }
  .permutations-slick {
    width: calc(100% - 130px);
  }
  .pernutations-button {
    width: 80px;
    right: -80px;
  }
  .pernutations-button button {
    font-size: 14px;
    padding: 8px 15px;
  }
  .price-detail-wrapper {
    width: 92%;
  }
}

@media screen and (max-width: 320px) {
  .main-text p {
    font-size: 15px;
    line-height: 20px;
  }
  h3 {
    font-size: 16px;
    line-height: 25px;
  }
  p {
    font-size: 14px;
    line-height: 22px;
  }
  section {
    padding: 30px 0;
  }
  .service-detail {
    margin: 10px 0;
  }
  .service-detail-wrapper p {
    font-size: 18px;
    line-height: 25px;
  }
  .advantages-detail {
    width: 100%;
  }
  .permutations-detail {
    margin-top: 30px;
  }
  .permutations-name {
    display: none;
  }
  .permutations-slick {
    width: calc(100% - 50px);
  }
  .pernutations-button {
    width: 40px;
    right: -50px;
  }
  .pernutations-button button {
    padding: 10px 5px;
    width: 30px;
    border-radius: 10px;
  }
  .price-detail-wrapper {
    width: 100%;
  }
  footer {
    padding: 5px 10px;
  }
  footer p {
    font-size: 12px;
    transform: scale(0.9);
    line-height: 17px;
  }
}

@media screen and (max-width: 318px) {
  .logo {
    width: 200px;
    height: 50px;
  }
  h1 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .main-text p {
    font-size: 12px;
  }
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .advantages-detail-wrapper p {
    font-size: 14px;
  }
  .work-wrapper {
    margin: 0;
  }
  .real-price {
    font-size: 40px;
  }
  .price-content p {
    display: none;
  }
  h6 {
    font-size: 18px;
    margin-bottom: 0px;
  }
  address p {
    line-height: 20px;
  }
}

/*revemp start 202202*/

.sec5 .md_title.white {
	color: #fff;
  }

.sec5 .horizontal-list{
	  
	  display: flex ;
		/*水平對齊*/
	  justify-content: center;
	  /*垂直對齊*/
	  align-items: center;
	  display: flex;
	  /*排列方向*/
	  flex-direction: row;
  }

  section.sec5 {
	padding: 38px 15px;
	background-color: rgb(137, 137, 137);
	background-size: cover;
	color: #fff;
  }
  
  /*revemp end*/