<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.logo {
  width: 130px;
  height: 130px;
  border-radius: 0 0 10px 10px;
}

.homelogo {
  width: 130px;
  height: 130px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  border-radius: 0 0 10px 10px;
}

.footerlogo {
  width: 120px;
  height: 120px;
}

.homenavbox {
  display: inline-block;
  position: sticky;
  font-size: 16px;
}

.homenavbox li {
  padding-right: 3rem;
}

.homenavbox li a {
  font-weight: bold;
  color: #3333338a;
}

.homenav {
  padding: 10px 40px;
  font-size: 18px;
}

@media screen and (max-width:1000px) {
  .homenavbox {
    display: none;
  }
}

.keyvision {
  width: 100%;
  min-height: 483px;
  max-height: 620px;
  position: relative;
}

.keytitle {
  position: absolute;
  width: 23vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width:768px) {
  .keytitle {
    width: 75vw;
    top: 45%;
  }
}

.vision01 {
  background: url('/website/tmpl/img/fleur/bg/bg001.jpg');
  background-size: cover;
  background-position: center bottom;
}

.vision02 {
  background: url('/website/tmpl/img/fleur/bg/bg002.jpg');
  background-size: cover;
  background-position: center bottom;
}

.vision03 {
  background: url('/website/tmpl/img/fleur/bg/bg003.jpg');
  background-size: cover;
  background-position: center bottom;
}

.maskvision {
  width: 100%;
  min-height: 483px;
  max-height: 620px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4.0px);
  -webkit-backdrop-filter: blur(4.0px);
}

/* ------------------------ */

.maintitle {
  width: auto;
  height: 50px;
  margin: 40px auto;
  z-index: 1;
}

.newsbox {
  padding: 10px 0 40px 0;
  border-bottom: 1px dotted #ba9b6d;
}

.categorybox {
  padding: 10px 0 40px 0;
  border-bottom: 1px dotted #ba9b6d;
  position: relative;
}

.marblebg {
  content: "";
  width: 100vw;
  height: 100%;
  background: url("/website/tmpl/img/fleur/bg/marblebg.jpg");
  top: 0;
  position: absolute;
  background-position: 10%;
  filter: brightness(105%) blur(.55px);
  z-index: 0;
  opacity: .2;
}

.goodsbox {
  padding: 10px 0 40px 0;
  border-bottom: 1px dotted #ba9b6d;
}

.morebtn {
  margin: 30px auto 0px;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 30px;
  border-radius: 99rem;
  background: rgba(15, 16, 60, 0.40);
  backdrop-filter: blur(6.5px);
  -webkit-backdrop-filter: blur(6.5px);
  transition: .7s;
}

.morebtn:hover {
  color: #ffffff;
  text-decoration: none;
  background: rgba(15, 16, 60, 0.80);
  box-shadow: 0 8px 32px 0 rgb(0 0 0 / 22%);
}

/* ------------------------ */

.newscardbox {
  flex-direction: row;
}

@media screen and (max-width:768px) {
  .newscardbox {
    flex-direction: column;
  }
}

.newscard {
  min-height: 260px;
  padding: 30px;
  margin: 10px;
  background-color: #0f103c;
  background-image: url('/website/tmpl/img/fleur/bg/bgflower.png');
  background-repeat: no-repeat;
  background-position-y: 85%;
  background-position-x: 95%;
  background-size: auto 120px;
  color: #ffffff;
  border-radius: 10px;
  transition: ease-in-out .5s;
}

.newscard:hover {
  background-color: #ba9b6d;
  box-shadow: 0 8px 32px 0 rgb(0 0 0 / 22%);
  color: #ffffff;
}

.newsdate {
  min-width: 55px;
  font-size: 12px;
  text-align: center;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #ffffff;
}

.newsdate:hover {
  text-decoration: none !important;
  color: #ffffff;
}

.newscontent {
  max-height: 190px;
  overflow: hidden;
}

.newscontent&gt;h4 {
  color: #ffffff;
  margin-bottom: 20px;
}

.newscontent&gt;p {
  color: #ffffff;
  line-height: 28px;
}

.newscontent:hover&gt;h4 {
  text-decoration: none !important;
}

.newscontent:hover&gt;p {
  text-decoration: none !important;
}

.clients-page {
  width: 550px;
  margin: 10px;
  margin-top: 10px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: solid 1px #eee;
}

/* ------------------------ */

.categorycardbox {
  flex-direction: row;
  flex-wrap: wrap;
}


.categorycard {
  width: 48%;
  margin: 10px 0;
  height: 227px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #ba9b6d;
  text-decoration: none !important;
  z-index: 2;
  position: relative;
  transition: ease-in-out .5s;
  background-size: cover;
}

.categorycard:hover {
  box-shadow: 0 8px 32px 0 rgb(0 0 0 / 22%);
}

.categorycard::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  background: #cccccc38;
  border-radius: 10px;
  transition: .5s;
}

.categorycard:hover::before {
  background: #c9c6c621;
}

.categorycard:hover {
  text-decoration: none !important;
}

.categorycard&gt;h2 {
  line-height: 220px;
  color: #ffffff;
  text-decoration: none;
  z-index: 100;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.categorycard&gt;h2:hover {
  text-decoration: none;
}

.category01 {
  background-image: url('/website/tmpl/img/fleur/bg/bg003.jpg');
}

@media screen and (max-width:768px) {
  .categorycardbox {
    flex-direction: column;
  }

  .categorycard {
    width: 100%;
  }
}

/* ------------------------ */

.footer {
  /* color: #ffffff; */
  /* background-color: #0f103c; */
  /* background-image: url("/website/tmpl/img/fleur/bg.png"); */
  /* background-repeat: no-repeat; */
  /* background-position-y: center; */
  /* background-position-x: 90%; */
  /* background-size: auto 120px; */
  /* padding: 50px 0px; */
}

.contactus&gt;li {
  color: #ffffff;
  font-size: 14px;
  line-height: 30px;
}

.socialicon {
  width: 22px;
  height: 22px;
  margin-right: 20px;
}



@media screen and (max-width:768px) {
  /* .footer {
    color: #ffffff;
    background: #0f103c;
    padding: 50px 15px;
  } */
}

.copyright {
  color: #0f103c;
  background: #ffffff;
  padding: 10px 0;
}


/* ------------------------ */


.productcardbox {
  flex-wrap: wrap;
}

.productcard {
  margin-bottom: 20px;
  border-radius: 16px;
  transition: ease-in-out .5s;
}


@media screen and (max-width:768px) {

  .productcard {
    width: 50%;
  }
}

.productcard:hover {
  box-shadow: 0 8px 32px 0 rgb(0 0 0 / 22%);
}

.outer {
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
}

.inner {
  height: 0;
  padding-top: 100%;
  /* background: red; */
  background: url("/website/tmpl/img/fleur/bg/test01.jpg");
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}

@media screen and (min-width:1184px) {
  .productcard2 {
    margin-bottom: 20px;
    border-radius: 12px;
    transition: ease-in-out .1s;
    width: 293px;
    border: 2px solid #ffffff00;
  }

  .productcard2:hover {
    /* box-shadow: 0 8px 32px 0 rgb(0 0 0 / 22%); */
    border: 2px solid #ba9b6d;
    background: #ffffff;
  }

  .productcardtext2 {
    padding: 0 15px 15px 15px;
    text-align: center;
    max-width: 283px;
  }

  .productcard2 img {
    width: 265px;
  }
}

@media screen and (max-width:1184px) {
  .productcard2 {
    margin-bottom: 15px;
    border-radius: 12px;
    transition: ease-in-out .1s;
    width: 293px;
    border: 2px solid #ffffff00;
  }

  .productcard2:hover {
    /* box-shadow: 0 8px 32px 0 rgb(0 0 0 / 22%); */
    border: 2px solid #ba9b6d;
    background: #ffffff;
  }

  .productcardtext2 {
    padding: 0 15px 15px 15px;
    text-align: center;
    /* max-width: 220px; */
    max-width: 800px;
  }

  .productcard2 img {
    width: 190px;
  }

}

.productcardtext {
  padding: 0 15px 15px 15px;
  text-align: center;
  max-width: 273px;
}

.productcardtext&gt;h5 {
  margin-bottom: 10px;
}

.productcardtext&gt;p {
  color: #ba9b6d;
  font-size: 20px;
  margin-top: 15px;
}

.radius {
  border-radius: 10px;
}

.radius20 {
  border-radius: 20px;
}

.topbar {
  background: rgba(255, 255, 255, 0.6);
}

/* -------------�折�Nav蝵桐葉---------------- */

.fleur-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.fleur-nav {
  /* margin-top: 65px; */
}

.fleur-nav&gt;.navbar-nav {
  /* float: left;
  left: 50%;
  transform: translateX(-50%); */
}

.btn-addtoCart {
  margin-left: 15px;
  background: #8a745d;
  border: #8a745d;
}

.btn-addtoCart:hover {
  background: #C3996B;
  border: #C3996B;
}

.fleur-title {
  font-weight: 700;
}

.fleur-newstitle {
  font-size: 20px !important;
  line-height: 32px;
}

.homenav {
  font-size: 18px !important;
}

.displaySearchDesk {
  display: flex;
}

.displaySearchMobile {
  display: none;
}

@media screen and (max-width:768px) {
  .displaySearchDesk {
    display: none;
  }

  .fleur-nav&gt;.navbar-nav {
    transform: translateX(0);
  }

  .displaySearchMobile {
    display: flex;
  }

}</pre></body></html>