<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
html {
  max-width: 100vw;
  overflow-x: hidden;
  height: 100%;
  font-weight: 600;
  font-family: 'Noto Serif TC', serif;
}
html.ie7 {
  overflow-x: hidden;
}
html.ie7 body {
  overflow-x: visible;
}
html.ie7 em {
  font-style: normal;
}
body {
  max-width: 100vw;
  margin: 0;
  background-repeat: no-repeat;
  font-size: 18px;
  letter-spacing: 1px;
  color: #000;
  overflow-x: hidden;
  font-family: 'Noto Serif TC', serif;
}
* {
  box-sizing: border-box;
  font-family: 'Noto Serif TC', serif;
  letter-spacing: 0.5px;
}
a {
  text-decoration: none;
}
.luxy-box {
  background-color: #880a16;
}
.body-bg1 {
  width: 100%;
  height: 100%;
  background-image: url('../images/body-bg1.png');
}
.body-bg2 {
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-image: url('../images/body-bg2.png');
}
.body-bg3 {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(37, 5, 12, 0.4) 0%, rgb(37, 5, 12, 0.8) 100%);
}
.border-top {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #a4744a 3%, #ce9e74 8%, #d6a275 16%, #d6a275 23%, #f9c190 33%, #ce9c70 46%, #c59163 55%, #ffcda2 66%, #cc9565 78%, #dfab7e 88%, #d09766 95%, #806248 102%);
}
.border-bottom {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #a4744a 3%, #ce9e74 8%, #d6a275 16%, #d6a275 23%, #f9c190 33%, #ce9c70 46%, #c59163 55%, #ffcda2 66%, #cc9565 78%, #dfab7e 88%, #d09766 95%, #806248 102%);
}
.border-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #c99b7e 0%, #e6a676 20%, #f1bd94 50%, #ce9e74 70%, #d79059 100%);
}
.border-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #c99b7e 0%, #f1bd94 20%, #e6a676 50%, #ce9e74 70%, #d79059 100%);
}
.border-mid {
  position: absolute;
  top: 50%;
  left: calc(-50vw + 50%);
  width: 100vw;
  height: 2px;
  background: linear-gradient(to right, #a4744a 3%, #ce9e74 8%, #d6a275 16%, #d6a275 23%, #f9c190 33%, #ce9c70 46%, #c59163 55%, #ffcda2 66%, #cc9565 78%, #dfab7e 88%, #d09766 95%, #806248 102%);
}
.swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  opacity: 1;
  background-color: #fff;
  border: solid 1px #eab692;
  margin-right: 10px;
}
@media (max-width: 992px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #cf9e70;
  border: solid 1px #eab692;
}
.to-top {
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 195px;
  right: 25px;
  z-index: 5;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  transform: translateY(-30px);
  max-width: 70px;
}
.to-top img {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .to-top {
    width: 60px;
    height: 60px;
    bottom: 60px;
  }
}
.to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.to-top.active:hover {
  opacity: 0.9;
}
.loading-box {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.loading-box .loading-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.loading-box .loading-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  animation: potScale 10s linear 0s 1 forwards;
}
@media (max-width: 768px) {
  .loading-box .loading-content {
    animation: none;
  }
}
@keyframes potScale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.loading-box .loading-content .hot-pot {
  position: relative;
  width: 148px;
  height: 63px;
  background-image: url('../images/pot.png');
  transform: rotate(-2.5deg);
  transform-origin: center bottom;
}
@media (max-width: 576px) {
  .loading-box .loading-content .hot-pot {
    animation: potShakeM 0.25s ease 0s infinite forwards;
    transform: rotate(-2.5deg) scale(0.8) translateY(30px);
  }
}
@keyframes potShake {
  0% {
    transform: rotate(-2.5deg) scale(1);
  }
  50% {
    transform: rotate(-2deg) scale(1);
  }
  100% {
    transform: rotate(-2.5deg) scale(1);
  }
}
@keyframes potShakeM {
  0% {
    transform: rotate(-2.5deg) scale(0.8) translateY(30px);
  }
  50% {
    transform: rotate(-2deg) scale(0.8) translateY(30px);
  }
  100% {
    transform: rotate(-2.5deg) scale(0.8) translateY(30px);
  }
}
.loading-box .loading-content .hot-pot .chili-box .chili {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 50%;
}
.loading-box .loading-content .hot-pot .chili-box .chili.active2 {
  animation: chiliFall 1s ease 0s 1 forwards;
}
@keyframes chiliFall {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(0px);
  }
}
.loading-box .loading-content .hot-pot .chili-box .rotate-box {
  animation: chiliRotate 10s ease 0s infinite forwards;
}
@keyframes chiliRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-box .loading-content .hot-pot .chili-box .chili-1 .rotate-box {
  width: 22px;
  height: 21px;
  background-image: url('../images/chili-1.png');
}
.loading-box .loading-content .hot-pot .chili-box .chili-2 .rotate-box {
  width: 32px;
  height: 28px;
  background-image: url('../images/chili-2.png');
}
.loading-box .loading-content .hot-pot .chili-box .chili-3 .rotate-box {
  width: 37px;
  height: 25px;
  background-image: url('../images/chili-3.png');
}
.loading-box.hide * {
  animation: none !important;
}
.xl-btn {
  display: inline-block;
  background-color: #25050C;
  border: 2px solid #FFC298;
  border-radius: 30px;
  padding: 10px 45px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease;
  margin-top: 30px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .xl-btn {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .xl-btn {
    padding: 8px 45px;
  }
}
.xl-btn a {
  color: #FFC298;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
.xl-btn a span {
  color: #FFC298;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.xl-btn a .fa-angle-right {
  padding-left: 10px;
  font-weight: 900;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.xl-btn a .fa-angle-left {
  padding-right: 10px;
  font-weight: 900;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.xl-btn a .fa-angle-down {
  padding-left: 10px;
  font-weight: 900;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.xl-btn:hover span {
  color: #E9E9E9;
}
.xl-btn:hover i {
  color: #E9E9E9;
  animation: arrowMove 1.5s linear 0s infinite forwards;
}
.xl-btn:hover i.fa-angle-down {
  animation: arrowMove2 1.5s linear 0s infinite forwards;
}
@keyframes arrowMove2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.main-container {
  width: 100%;
  max-width: 85vw;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .main-container {
    max-width: 100vw;
  }
}
.xl-container {
  padding-top: 111px;
}
@media (max-width: 1600px) {
  .xl-container {
    padding-top: 90px;
  }
}
@media (max-width: 768px) {
  .xl-container {
    padding-top: 70px;
  }
}
.xl-container .title-container {
  position: relative;
}
.xl-container .xl-bg-img {
  background: url('../images/page/xiangla-bg-2025.png');
  background-attachment: fixed;
  left: 0;
  width: 100%;
  height: 100%;
}
.xl-container .xl-bg-gradient {
  background: linear-gradient(to bottom, rgb(37, 5, 12, 0.3) 0%, rgb(37, 5, 12, 0.6) 100%);
}
.xl-container .title-sec {
  padding: 40px 3vw;
  position: relative;
}
@media (max-width: 1600px) {
  .xl-container .title-sec {
    padding: 30px 60px;
  }
  .xl-container .title-sec .border-left {
    display: none;
  }
  .xl-container .title-sec .border-right {
    display: none;
  }
}
@media (max-width: 768px) {
  .xl-container .title-sec {
    padding: 30px;
  }
}
.xl-container .title-sec .title-en {
  font-size: 80px;
  color: transparent;
  background: transparent;
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px #FFC298;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 0 1px transparent, 0 0 0.32vw #731e21, 0 0 5px #fcbc99, 0 0 7px #fcbc99, 0 0 12px #fcbc99, 0 0 2.5vw #63040e;
  animation: neonsignTitle 2s linear 0s infinite forwards;
  padding-right: 30px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1600px) {
  .xl-container .title-sec .title-en {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .xl-container .title-sec .title-en {
    font-size: 40px;
    padding-right: 15px;
    -webkit-text-stroke: 1px #FFC298;
    text-shadow: 0 0 1px transparent, 0 0 0.32vw #731e21, 0 0 5px #fcbc99bb, 0 0 1px #fcbc99, 0 0 2.5vw #63040e;
  }
}
@keyframes neonsignTitle {
  from {
    opacity: 1;
  }
  4% {
    opacity: 0.9;
  }
  6% {
    opacity: 0.85;
  }
  8% {
    opacity: 0.95;
  }
  10% {
    opacity: 0.9;
  }
  11% {
    opacity: 0.922;
  }
  12% {
    opacity: 0.9;
  }
  14% {
    opacity: 0.95;
  }
  16% {
    opacity: 0.98;
  }
  17% {
    opacity: 0.9;
  }
  19% {
    opacity: 0.93;
  }
  20% {
    opacity: 0.99;
  }
  24% {
    opacity: 1;
  }
  26% {
    opacity: 0.94;
  }
  28% {
    opacity: 0.98;
  }
  37% {
    opacity: 0.93;
  }
  38% {
    opacity: 0.5;
  }
  39% {
    opacity: .96;
  }
  42% {
    opacity: 1;
  }
  44% {
    opacity: 0.97;
  }
  46% {
    opacity: 0.94;
  }
  56% {
    opacity: .9;
  }
  58% {
    opacity: 0.9;
  }
  60% {
    opacity: 0.99;
  }
  68% {
    opacity: 1;
  }
  70% {
    opacity: 0.9;
  }
  72% {
    opacity: 0.95;
  }
  93% {
    opacity: 0.93;
  }
  95% {
    opacity: 0.95;
  }
  97% {
    opacity: 0.93;
  }
  to {
    opacity: 1;
  }
}
.xl-container .title-sec .title-cn {
  color: #FFC298;
  font-size: 30px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1600px) {
  .xl-container .title-sec .title-cn {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .xl-container .title-sec .title-cn {
    font-size: 20px;
  }
}
.xl-container .title-sec .title-notice {
  display: block;
  color: #E9E9E9;
  font-size: 20px;
  line-height: 1.5em;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .xl-container .title-sec .title-notice {
    font-size: 18px;
  }
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
header {
  z-index: 5;
  position: fixed;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 111px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 160px 0 160px;
  background-repeat: repeat;
  background-color: #89040f;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1400px) {
  header {
    padding: 0 50px 0 50px;
  }
}
@media (max-width: 1600px) {
  header {
    height: 90px;
    padding: 0 0 0 60px;
  }
}
@media (max-width: 768px) {
  header {
    height: 70px;
    padding: 0 0 0 30px;
  }
}
header .logo-box {
  display: flex;
  align-items: center;
}
header .logo-box &gt; div:first-child {
  margin-right: 20px;
}
header .logo {
  float: left;
}
@media (max-width: 1200px) {
  header .logo {
    width: 180px;
  }
}
@media (max-width: 1100px) {
  header .logo {
    width: 150px;
  }
}
@media (max-width: 768px) {
  header .logo {
    width: 110px;
  }
}
header .logo a {
  display: block;
}
header .logo a img {
  width: 100%;
}
header .right-box {
  display: flex;
  height: 100%;
  align-items: center;
}
header ul {
  float: right;
  overflow: hidden;
}
@media (max-width: 1600px) {
  header ul {
    display: none;
  }
}
header ul li {
  cursor: pointer;
  float: left;
  font-size: 18px;
  font-weight: 600;
  padding: 32px 0px;
  color: #333;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header ul li:hover {
  color: #fff;
}
@media (max-width: 1200px) {
  header ul li {
    font-size: 16px;
  }
}
header ul li span {
  padding: 0 15px;
  border-right: solid 1px #FFC195;
}
header ul li a {
  color: #FFC195;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header ul li a:hover {
  color: #fff;
}
header ul li:last-child span {
  border-right: none;
}
header .menu-btn-mobile {
  display: none;
  cursor: pointer;
  float: right;
  font-size: 26px;
}
header .menu-btn-mobile i {
  display: block;
  width: 23px;
  height: 18px;
  background-image: url('../images/icon-bar.png');
}
@media (max-width: 1600px) {
  header .menu-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 100%;
    background-color: #9f1323;
  }
  header .menu-btn-mobile i {
    color: #fff;
  }
}
@media (max-width: 768px) {
  header .menu-btn-mobile {
    width: 70px;
  }
}
header.active {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
header.active ul li {
  color: #000;
  text-shadow: none;
}
.header-menu-for-mobile {
  transform: translateX(100%);
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  min-width: 150px;
  height: 100vh;
  background-color: #89040f;
  z-index: 10;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  -ms-transition: 0.7s;
  transition: 0.7s;
}
.header-menu-for-mobile .close-btn {
  position: absolute;
  top: 40px;
  right: 30px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  background-image: url('../images/mobile-menu-close.svg');
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-menu-for-mobile .close-btn:hover {
  filter: brightness(2);
}
.header-menu-for-mobile .header-menu {
  height: calc(100% - 250px);
  overflow: scroll;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header-menu-for-mobile .header-menu li {
  font-size: 18px;
  padding-bottom: 10px;
  padding: 15px 30px 15px 30px;
  text-align: center;
  color: #fff;
}
.header-menu-for-mobile .header-menu li a {
  display: block;
  text-decoration: none;
  color: #FFC298;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.header-menu-for-mobile .header-menu li:hover a {
  color: #fff;
}
.header-menu-for-mobile .logo-box {
  text-align: center;
}
.header-menu-for-mobile .logo-box img {
  width: 150px;
}
.header-menu-for-mobile.active {
  transform: translateX(0%);
}
.section1 {
  display: flex;
  overflow: hidden;
  margin-top: 111px;
}
@media (max-width: 1600px) {
  .section1 {
    margin-top: 70px;
  }
}
.section1 .left-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 160px;
  height: calc(100vh - 111px);
  max-height: 850px;
  background-color: #89040f;
}
@media all and (min-width: 768px) and (max-width: 1280px) {
  .section1 .left-box {
    width: 110px;
    height: calc((100vw - 110px) * 0.4857 );
  }
}
@media (max-width: 768px) {
  .section1 .left-box {
    display: none;
  }
}
.section1 .left-box img {
  display: block;
  height: 80%;
}
.section1 .kv-box {
  opacity: 0;
  position: relative;
  width: calc(100% - 160px);
  height: calc(100vh - 111px);
  max-height: 850px;
  overflow: hidden;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
@media all and (min-width: 768px) and (max-width: 1280px) {
  .section1 .kv-box {
    width: calc(100% - 110px);
    height: auto;
  }
}
@media (max-width: 768px) {
  .section1 .kv-box {
    height: calc(80vh - 90px);
  }
}
@media (max-width: 768px) {
  .section1 .kv-box {
    width: 100%;
    height: auto;
    max-height: initial;
  }
}
.section1 .kv-box .swiper-wrapper {
  max-height: 100vh;
}
@media all and (min-width: 768px) and (max-width: 1280px) {
  .section1 .kv-box .swiper-wrapper {
    height: auto;
  }
}
@media (max-width: 768px) {
  .section1 .kv-box .swiper-wrapper {
    height: auto;
  }
}
.section1 .kv-box .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100vh;
  transform: scale(1);
  -webkit-transition: 10s;
  -moz-transition: 10s;
  -o-transition: 10s;
  -ms-transition: 10s;
  transition: 10s;
}
@media all and (min-width: 768px) and (max-width: 1280px) {
  .section1 .kv-box .swiper-slide img {
    height: auto;
  }
}
@media (max-width: 768px) {
  .section1 .kv-box .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
.section1 .kv-box .swiper-slide.swiper-slide-active {
  overflow: hidden;
}
.section1 .kv-box .swiper-slide.swiper-slide-active img {
  animation: slideScale 8s linear 0s 1 both;
}
.section1 .kv-box .swiper-slide.swiper-slide-prev {
  overflow: hidden;
}
.section1 .kv-box .swiper-slide.swiper-slide-prev img {
  animation: slideScale 8s linear 0s 1 both;
}
@keyframes slideScale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes slideScale2 {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.section1 .btn-prev-kv,
.section1 .btn-next-kv {
  cursor: pointer;
  z-index: 1;
  position: absolute;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: none;
  opacity: 0.8;
  outline: none;
}
.section1 .btn-prev-kv:hover,
.section1 .btn-next-kv:hover {
  filter: brightness(2);
}
.section1 .btn-prev-kv {
  left: 20px;
  background-image: url(../images/btn-prev.svg);
}
@media (max-width: 768px) {
  .section1 .btn-prev-kv {
    display: block;
  }
}
.section1 .btn-next-kv {
  right: 20px;
  background-image: url(../images/btn-next.svg);
}
@media (max-width: 768px) {
  .section1 .btn-next-kv {
    display: block;
  }
}
.section1 .kv-box.for-desktop {
  display: block;
}
@media (max-width: 768px) {
  .section1 .kv-box.for-desktop {
    display: none;
  }
}
.section1 .kv-box.for-mobile {
  display: none;
}
@media (max-width: 768px) {
  .section1 .kv-box.for-mobile {
    display: block;
  }
}
.section1 .kv-box.active {
  opacity: 1;
}
section {
  position: relative;
  z-index: 2;
  max-width: 100%;
}
section .section-title {
  margin-bottom: 68px;
}
section .section-title .flex-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
section .section-title .title {
  font-size: 42px;
  color: #203567;
  margin: 0 5px;
  letter-spacing: 8.4px;
  font-weight: 300;
}
.section2 {
  z-index: 3;
  width: 100%;
}
.section2 .news-marquee-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 110px;
  margin: 0 auto;
  margin-bottom: 80px;
  background-color: #25050C;
}
@media (max-width: 768px) {
  .section2 .news-marquee-box {
    height: auto;
  }
}
.section2 .news-marquee-box .left-box {
  position: relative;
  width: 160px;
  height: 100%;
}
@media (max-width: 1600px) {
  .section2 .news-marquee-box .left-box {
    display: none;
  }
}
.section2 .news-marquee-box .right-box {
  position: relative;
  width: 160px;
  height: 100%;
}
@media (max-width: 1200px) {
  .section2 .news-marquee-box .right-box {
    display: none;
  }
}
.section2 .news-marquee-box .main-box {
  display: flex;
  align-items: center;
  width: calc(100% - 320px);
  height: 100%;
  padding: 28px 50px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .section2 .news-marquee-box .main-box {
    width: calc(100% - 160px);
  }
}
@media (max-width: 1600px) {
  .section2 .news-marquee-box .main-box {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .section2 .news-marquee-box .main-box {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .section2 .news-marquee-box .main-box {
    padding: 20px 20px 20px 16px;
  }
}
.section2 .news-marquee-box .main-box .swiper-container-news-marquee {
  width: calc(100% - 124px);
  overflow: hidden;
}
@media (max-width: 768px) {
  .section2 .news-marquee-box .main-box .swiper-container-news-marquee {
    width: calc(100% - 60px);
  }
}
.section2 .news-marquee-box .main-box .swiper-container {
  width: 100%;
  height: 100%;
}
.section2 .news-marquee-box .main-box .news {
  display: flex;
  align-items: center;
  width: 100%;
}
.section2 .news-marquee-box .main-box .news a {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section2 .news-marquee-box .main-box .news a .icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../images/deco-icon.svg');
  animation: neonsignTitle 2s linear 0s infinite forwards;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .section2 .news-marquee-box .main-box .news a .icon {
    width: 55px;
    height: 55px;
  }
}
.section2 .news-marquee-box .main-box .news a .news-title {
  width: calc(100% - 85px);
  font-size: 20px;
  color: #FFC298;
  line-height: 1.3;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .section2 .news-marquee-box .main-box .news a .news-title {
    font-size: 16px;
    width: 100%;
  }
}
.section2 .news-marquee-box .main-box .news a:hover .news-title {
  color: #fff;
}
@media (max-width: 768px) {
  .section2 .news-marquee-box .main-box .news a {
    height: auto;
  }
}
.section2 .news-marquee-box .btn-prev,
.section2 .news-marquee-box .btn-next {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  color: #F08300;
  border-radius: 50%;
  outline: none;
  filter: brightness(1);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.section2 .news-marquee-box .btn-prev:hover,
.section2 .news-marquee-box .btn-next:hover {
  filter: brightness(2);
}
@media (max-width: 768px) {
  .section2 .news-marquee-box .btn-prev,
  .section2 .news-marquee-box .btn-next {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }
}
.section2 .news-marquee-box .btn-prev {
  margin: 0 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('../images/btn-prev.svg');
}
.section2 .news-marquee-box .btn-next {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('../images/btn-next.svg');
}
.section2 .section2-title {
  z-index: 1;
  position: relative;
  width: 850px;
  height: 148px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .section2 .section2-title {
    width: 70%;
    max-width: 850px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .section2 .section2-title {
    width: 85%;
    margin-bottom: 10px;
  }
}
.section2 .section2-title img {
  position: relative;
  display: block;
  width: 100%;
}
.section2 .section2-subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 60px;
  max-width: 550px;
}
@media (max-width: 1200px) {
  .section2 .section2-subtitle {
    width: 48%;
    max-width: 550px;
    height: auto;
  }
}
@media (max-width: 576px) {
  .section2 .section2-subtitle {
    width: 70%;
    max-width: 550px;
    margin-bottom: 40px;
  }
}
.section2 .section2-subtitle img {
  width: 100%;
}
.section3 .container {
  width: 100%;
  max-width: 85vw;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .section3 .container {
    max-width: 100%;
    padding: 0 30px;
  }
}
.section3 .features-box {
  margin-bottom: 60px;
  padding: 0 5vw;
}
@media (max-width: 767px) {
  .section3 .features-box {
    padding: 0px;
  }
}
.section3 .features-box ul {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
}
@media (max-width: 768px) {
  .section3 .features-box ul {
    padding: 0px;
    flex-direction: column;
  }
}
.section3 .features-box ul li {
  position: relative;
  flex: 0 0 46%;
  margin: 0 2% 8%;
}
@media (max-width: 768px) {
  .section3 .features-box ul li {
    flex: 0 0 100%;
    margin: 0 0 60px;
  }
}
@media (max-width: 576px) {
  .section3 .features-box ul li {
    margin-bottom: 40px;
  }
}
.section3 .features-box ul li .img-box {
  padding: 2px;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #a4744a 3%, #ce9e74 8%, #d6a275 16%, #d6a275 23%, #f9c190 33%, #ce9c70 46%, #c59163 55%, #ffcda2 66%, #cc9565 78%, #dfab7e 88%, #d09766 95%, #806248 102%);
}
.section3 .features-box ul li .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section3 .features-box ul li .title-box {
  z-index: 1;
  position: relative;
}
.section3 .features-box ul li .title-box .icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  margin-top: -14px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('../images/deco-icon.svg');
  animation: neonsignTitle 2s linear 0s infinite forwards;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 1400px) {
  .section3 .features-box ul li .title-box .icon {
    width: 50px;
    height: 50px;
    margin-top: -6px;
  }
}
@media (max-width: 1280px) {
  .section3 .features-box ul li .title-box .icon {
    margin-top: -9px;
  }
}
@media (max-width: 768px) {
  .section3 .features-box ul li .title-box .icon {
    margin-top: -7px;
  }
}
@media (max-width: 576px) {
  .section3 .features-box ul li .title-box .icon {
    margin-top: -13px;
  }
}
.section3 .features-box ul li .title-box .title {
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  color: #FFC298;
  vertical-align: top;
  line-height: 1.4em;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 1400px) {
  .section3 .features-box ul li .title-box .title {
    font-size: 26px;
  }
}
@media (max-width: 1280px) {
  .section3 .features-box ul li .title-box .title {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .section3 .features-box ul li .title-box .title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .section3 .features-box ul li .title-box .title {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .section3 .features-box ul li .title-box .title {
    font-size: 20px;
  }
}
.section3 .features-box ul li .dec1 {
  position: absolute;
  bottom: 2%;
  right: -28%;
  width: 52%;
  padding-bottom: 40%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../images/features-box-dec1.png');
}
@media (max-width: 992px) {
  .section3 .features-box ul li .dec1 {
    width: 40%;
    right: -18%;
  }
}
@media (max-width: 768px) {
  .section3 .features-box ul li .dec1 {
    width: 30%;
    right: -5%;
    bottom: -13%;
  }
}
@media (max-width: 576px) {
  .section3 .features-box ul li .dec1 {
    bottom: 0%;
  }
}
.section3 .features-box ul li .dec2 {
  position: absolute;
  top: -8%;
  left: -33%;
  width: 52%;
  padding-bottom: 40%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../images/features-box-dec2.png');
}
@media (max-width: 992px) {
  .section3 .features-box ul li .dec2 {
    width: 40%;
    left: -18%;
  }
}
@media (max-width: 768px) {
  .section3 .features-box ul li .dec2 {
    display: none;
  }
}
.section3 .features-box ul li .dec2-m {
  position: absolute;
  bottom: -9%;
  right: -8%;
  width: 35%;
  padding-bottom: 40%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../images/features-box-dec2.png');
}
@media (min-width: 769px) {
  .section3 .features-box ul li .dec2-m {
    display: none;
  }
}
@media (max-width: 768px) {
  .section3 .features-box ul li .dec2-m {
    display: block;
  }
}
@media (max-width: 576px) {
  .section3 .features-box ul li .dec2-m {
    bottom: 0;
    width: 30%;
  }
}
.section3 .features-box ul li:nth-child(3),
.section3 .features-box ul li:nth-child(4) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section3 .features-box ul li:nth-child(3) {
    margin-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .section3 .features-box ul li:nth-child(3) {
    margin-bottom: 40px;
  }
}
.section3 .link-box {
  position: relative;
  display: flex;
  justify-content: center;
}
.section3 .link-box:after {
  content: '';
  display: table;
  clear: both;
}
.section3 .link-box .brand-story {
  position: relative;
  width: 40%;
  max-width: 700px;
  padding: 2px;
  padding-right: 1px;
  background: linear-gradient(45deg, #a4744a 3%, #ce9e74 8%, #d6a275 16%, #d6a275 23%, #f9c190 33%, #ce9c70 46%, #c59163 55%, #ffcda2 66%, #cc9565 78%, #dfab7e 88%, #d09766 95%, #fbdfc7 102%);
}
@media (max-width: 576px) {
  .section3 .link-box .brand-story {
    width: 50%;
  }
}
.section3 .link-box .brand-story a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  font-size: 22px;
  line-height: 1.5em;
  color: #FFC298;
  text-decoration: none;
  background-color: #63040e;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .section3 .link-box .brand-story a {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .section3 .link-box .brand-story a {
    padding: 8% 12%;
  }
}
@media (max-width: 768px) {
  .section3 .link-box .brand-story a {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .section3 .link-box .brand-story a {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.section3 .link-box .brand-story a i {
  font-weight: bold;
}
.section3 .link-box .brand-story:hover a {
  color: #fff;
}
.section3 .link-box .brand-story:hover i {
  animation: arrowMove 1.5s linear 0s infinite forwards;
}
.section3 .link-box .menu-list {
  position: relative;
  width: 40%;
  max-width: 700px;
  padding: 2px;
  padding-left: 1px;
  background: linear-gradient(45deg, #a4744a 3%, #ce9e74 8%, #d6a275 16%, #d6a275 23%, #f9c190 33%, #ce9c70 46%, #c59163 55%, #ffcda2 66%, #cc9565 78%, #dfab7e 88%, #d09766 95%, #fbdfc7 102%);
}
@media (max-width: 576px) {
  .section3 .link-box .menu-list {
    width: 50%;
  }
}
.section3 .link-box .menu-list a {
  display: flex;
  justify-content: space-between;
  padding: 30px 50px;
  align-items: center;
  color: #FFC298;
  font-size: 22px;
  line-height: 1.5em;
  text-decoration: none;
  background-color: #63040e;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .section3 .link-box .menu-list a {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .section3 .link-box .menu-list a {
    padding: 8% 12%;
  }
}
@media (max-width: 768px) {
  .section3 .link-box .menu-list a {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .section3 .link-box .menu-list a {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.section3 .link-box .menu-list a i {
  font-weight: bold;
}
.section3 .link-box .menu-list:hover a {
  color: #fff;
}
.section3 .link-box .menu-list:hover i {
  animation: arrowMove 1.5s linear 0s infinite forwards;
}
@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.section4-title {
  font-size: 8.9vw;
  color: transparent;
  background: transparent;
  -webkit-background-clip: text;
  -webkit-text-stroke: 0.15vw #fdbc9a;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 0 1px transparent, 0 0 0.32vw #731e21, 0 0 0.384vw #fcbc99, 0 0 0.32vw #fcbc99, 0 0 0.32vw #fcbc99, 0 0 0.32vw #fcbc99, 0 0 0.128vw #fcbc99, 0 0 1.5vw #fcbc99, 0 0 2.5vw #63040e;
  animation: neonsign01 2s linear 0s infinite forwards;
  padding: 80px 0px 85px 0px;
}
@media (max-width: 1280px) {
  .section4-title {
    padding: 60px 0px 65px 0px;
  }
  .section4-title span {
    display: block;
    line-height: 1.2em;
  }
}
@media (max-width: 768px) {
  .section4-title {
    font-size: 10vw;
    padding: 30px 0px 35px 0px;
    animation: neonsign02 2s linear 0s infinite forwards;
    text-shadow: 0 0 1px transparent, 0 0 0.32vw #731e21, 0 0 0.384vw #fcbc99, 0 0 0.32vw #fcbc99, 0 0 0.32vw #fcbc99, 0 0 0.128vw #fcbc99, 0 0 2.5vw #fcbc99, 0 0 2.5vw #63040e;
  }
}
@media (max-width: 576px) {
  .section4-title {
    font-size: 15vw;
    padding: 30px 0px 35px 0px;
  }
}
@keyframes neonsign01 {
  from {
    opacity: 1;
    text-shadow: 0 0 1px transparent, 0 0 0.32vw #731e21, 0 0 0.384vw #fcbc99, 0 0 0.32vw #fcbc99, 0 0 0.32vw #fcbc99, 0 0 0.128vw #fcbc99, 0 0 1.5vw #fcbc99, 0 0 2.5vw #63040e;
  }
  4% {
    opacity: 0.7;
  }
  6% {
    opacity: 0.85;
  }
  8% {
    opacity: 0.95;
  }
  10% {
    opacity: 0.9;
  }
  11% {
    opacity: 0.922;
  }
  12% {
    opacity: 0.8;
  }
  14% {
    opacity: 0.95;
  }
  16% {
    opacity: 0.98;
  }
  17% {
    opacity: 0.9;
  }
  19% {
    opacity: 0.93;
  }
  20% {
    opacity: 0.99;
  }
  24% {
    opacity: 1;
  }
  26% {
    opacity: 0.94;
  }
  28% {
    opacity: 0.98;
  }
  37% {
    opacity: 0.93;
  }
  38% {
    opacity: 0.5;
  }
  39% {
    opacity: .96;
    text-shadow: 0 0 1px transparent, 0 0 0.32vw #731e21, 0 0 0.384vw #fcbc99, 0 0 1.32vw #fcbc99, 0 0 0.32vw #fcbc99, 0 0 0.128vw #fcbc99, 0 0 1.5vw #fcbc99, 0 0 2.5vw #63040e;
  }
  42% {
    opacity: 1;
  }
  44% {
    opacity: 0.97;
  }
  46% {
    opacity: 0.94;
  }
  56% {
    opacity: .9;
  }
  58% {
    opacity: 0.9;
  }
  60% {
    opacity: 0.99;
  }
  68% {
    opacity: 1;
  }
  70% {
    opacity: 0.7;
  }
  72% {
    opacity: 0.95;
  }
  93% {
    opacity: 0.93;
  }
  95% {
    opacity: 0.95;
  }
  97% {
    opacity: 0.93;
  }
  to {
    opacity: 1;
    text-shadow: 0 0 1px transparent, 0 0 0.32vw #731e21, 0 0 0.384vw #fcbc99, 0 0 0.32vw #fcbc99, 0 0 0.32vw #fcbc99, 0 0 0.128vw #fcbc99, 0 0 1.5vw #fcbc99, 0 0 2.5vw #63040e;
  }
}
@keyframes neonsign02 {
  from {
    opacity: 1;
  }
  4% {
    opacity: 0.7;
  }
  6% {
    opacity: 0.85;
  }
  8% {
    opacity: 0.95;
  }
  10% {
    opacity: 0.9;
  }
  11% {
    opacity: 0.922;
  }
  12% {
    opacity: 0.8;
  }
  14% {
    opacity: 0.95;
  }
  16% {
    opacity: 0.98;
  }
  17% {
    opacity: 0.9;
  }
  19% {
    opacity: 0.93;
  }
  20% {
    opacity: 0.99;
  }
  24% {
    opacity: 1;
  }
  26% {
    opacity: 0.94;
  }
  28% {
    opacity: 0.98;
  }
  37% {
    opacity: 0.93;
  }
  38% {
    opacity: 0.5;
  }
  39% {
    opacity: .96;
  }
  42% {
    opacity: 1;
  }
  44% {
    opacity: 0.97;
  }
  46% {
    opacity: 0.94;
  }
  56% {
    opacity: .9;
  }
  58% {
    opacity: 0.9;
  }
  60% {
    opacity: 0.99;
  }
  68% {
    opacity: 1;
  }
  70% {
    opacity: 0.7;
  }
  72% {
    opacity: 0.95;
  }
  93% {
    opacity: 0.93;
  }
  95% {
    opacity: 0.95;
  }
  97% {
    opacity: 0.93;
  }
  to {
    opacity: 1;
  }
}
.section4 {
  position: relative;
  width: 100%;
  padding: 0 0 60px 0;
  padding-bottom: 0;
  overflow: hidden;
}
.section4 .product-slider-box {
  position: relative;
}
.section4 .product-slider-box .swiper-container2 {
  z-index: 2;
  position: relative;
  background-color: #25030a;
}
.section4 .product-slider-box .swiper-container2 .border-top,
.section4 .product-slider-box .swiper-container2 .border-bottom {
  z-index: 2;
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide {
  cursor: pointer;
  position: relative;
  opacity: 1;
  display: flex;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../images/food-orange-bg.png');
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
  transition: 1s;
}
@media (max-width: 992px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide {
    flex-direction: column;
  }
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .img-box {
  width: 65%;
  position: relative;
  overflow: hidden;
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .img-box .border-m {
  display: none;
}
@media (max-width: 992px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .img-box {
    width: 100%;
  }
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .img-box .border-m {
    display: block;
  }
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .img-box .icon {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../images/icon-play.png');
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .img-box .mask {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0,0.4);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box {
  width: 35%;
  background-color: #25030a;
}
@media (max-width: 992px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box {
    width: 100%;
  }
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box {
  position: relative;
  height: 85%;
  padding: 10%;
}
@media (max-width: 992px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box {
    padding: 40px 60px 20px 60px;
    height: auto;
  }
}
@media (max-width: 576px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box {
    padding: 30px 30px 20px 30px;
  }
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .title {
  font-size: 50px;
  line-height: 1.3;
  margin-bottom: 10%;
}
@media (max-width: 992px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .title {
    margin-bottom: 30px;
  }
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #FFC298;
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .title a:hover {
  color: #E9E9E9;
}
@media (max-width: 1600px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .title {
    font-size: 40px;
  }
}
@media (max-width: 1400px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .title {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .title {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .title {
    font-size: 24px;
  }
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .date {
  font-size: 16px;
  color: #DFA878;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .date {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .text {
  font-size: 22px;
  color: #DFA878;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-width: 60%;
  margin-top: 15px;
}
@media (max-width: 1400px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .text {
    font-size: 20px;
  }
}
@media (max-width: 1280px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .text {
    max-width: 70%;
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .text {
    margin-bottom: 0px;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .border-m {
    display: none;
  }
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .dec4 {
  position: absolute;
  bottom: -13%;
  right: -16%;
  width: 17vw;
  padding-bottom: 17vw;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  background-image: url(../images/index-sec4-deco.png);
}
@media (max-width: 1280px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .dec4 {
    width: 14vw;
    padding-bottom: 14vw;
    right: -10%;
  }
}
@media (max-width: 992px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .top-box .dec4 {
    display: none;
  }
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .bottom-box {
  display: flex;
  align-items: center;
  height: 15%;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .bottom-box {
    padding: 10px 60px 70px 60px;
    height: auto;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .bottom-box {
    padding: 10px 30px 70px 30px;
  }
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .bottom-box a {
  display: flex;
  align-content: center;
  font-size: 20px;
  color: #FFC590;
  text-decoration: none;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .bottom-box a i {
  font-weight: 900;
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .bottom-box a span {
  margin-right: 30px;
}
@media (max-width: 1280px) {
  .section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .bottom-box a {
    font-size: 16px;
  }
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .bottom-box a:hover {
  color: #fff;
}
.section4 .product-slider-box .swiper-wrapper .swiper-slide .right-box .bottom-box a:hover i {
  animation: arrowMove 1.5s linear 0s infinite forwards;
}
@media (max-width: 768px) {
  .section4 .product-slider-box .swiper-pagination {
    bottom: 20px;
  }
}
.section4 .more {
  z-index: 2;
  position: relative;
  padding: 2.5% 30px;
  text-align: center;
  background-color: #880a16;
}
@media (max-width: 576px) {
  .section4 .more {
    padding: 20px 30px;
  }
}
.section4 .more a {
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  color: #FFC298;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.section4 .more a i {
  font-weight: 900;
}
.section4 .more a:hover {
  color: #fff;
}
.section4 .more a:hover i {
  animation: arrowMove 1.5s linear 0s infinite forwards;
}
@media (max-width: 1280px) {
  .section4 .more a {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .section4 .more a {
    font-size: 16px;
  }
}
.section4 .more span {
  display: inline-block;
  margin-right: 20px;
}
footer {
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 160px;
  background-repeat: no-repeat;
  background: linear-gradient(to top, #250309, #78040e);
}
@media (max-width: 1400px) {
  footer {
    padding: 40px 50px;
  }
}
@media (max-width: 500px) {
  footer {
    padding: 20px 30px;
  }
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
footer .footer-box {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 1600px) {
  footer .footer-box {
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  footer .footer-box {
    width: 100%;
  }
}
footer .footer-box .footer-dec {
  margin-right: 30px;
}
@media (max-width: 1600px) {
  footer .footer-box .footer-dec {
    margin: 0 auto;
    margin-bottom: 15px;
    width: 150px;
  }
}
@media (max-width: 1600px) {
  footer .footer-box .footer-dec img {
    width: 100%;
  }
}
footer .footer-box .footer-main-box {
  width: 100%;
}
@media (max-width: 1600px) {
  footer .footer-box .footer-main-box {
    text-align: center;
  }
}
footer .footer-box .footer-main-box .logo {
  display: block;
  margin-bottom: 15px;
}
footer .footer-box .footer-main-box .logo img {
  width: 200px;
}
@media (max-width: 400px) {
  footer .footer-box .footer-main-box .logo img {
    width: 80px;
  }
}
footer .footer-box .footer-main-box &gt; ul {
  display: inline-block;
  overflow: hidden;
  margin: 0;
  margin-bottom: 15px;
  padding: 0;
}
@media (max-width: 1600px) {
  footer .footer-box .footer-main-box &gt; ul {
    margin-top: 15px;
  }
}
footer .footer-box .footer-main-box &gt; ul li {
  display: inline-block;
  padding: 0 15px;
  margin-bottom: 15px;
  border-right: solid 1px #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1600px) {
  footer .footer-box .footer-main-box &gt; ul li {
    border-right: none;
    padding: 0 10px;
  }
}
footer .footer-box .footer-main-box &gt; ul li a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5em;
  color: #E9E9E9;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  footer .footer-box .footer-main-box &gt; ul li a {
    font-size: 14px;
  }
}
footer .footer-box .footer-main-box &gt; ul li:hover {
  color: #FFC298;
}
footer .footer-box .footer-main-box &gt; ul li:hover a {
  color: #FFC298;
}
footer .footer-box .footer-main-box &gt; ul li:first-child {
  padding-left: 0;
}
footer .footer-box .footer-main-box &gt; ul li:last-child {
  border-right: none;
}
footer .footer-box .footer-main-box .bottom-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1600px) {
  footer .footer-box .footer-main-box .bottom-box {
    flex-direction: column;
  }
}
footer .footer-box .footer-main-box .bottom-box .copyright {
  font-size: 16px;
  line-height: 1.5em;
  color: #E9E9E9;
}
@media (max-width: 768px) {
  footer .footer-box .footer-main-box .bottom-box .copyright {
    font-size: 14px;
  }
}
@media (max-width: 1600px) {
  footer .footer-box .footer-main-box .bottom-box .copyright {
    order: 2;
  }
}
footer .footer-box .footer-main-box .bottom-box .icon-box {
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1600px) {
  footer .footer-box .footer-main-box .bottom-box .icon-box {
    margin-bottom: 20px;
    order: 1;
  }
}
footer .footer-box .footer-main-box .bottom-box .icon-box li {
  margin-left: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer-box .footer-main-box .bottom-box .icon-box li:first-child {
  margin-left: 0px;
}
footer .footer-box .footer-main-box .bottom-box .icon-box li:hover {
  opacity: 0.8;
}
.lightbox {
  display: none;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.lightbox .bg {
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0,0.8);
}
.lightbox .btn-close {
  cursor: pointer;
  position: absolute;
  top: -40px;
  right: 0px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lightbox .btn-close:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .lightbox .btn-close {
    top: -40px;
    right: -20px;
    transform: scale(0.5);
  }
}
.lightbox .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .lightbox .content {
    width: 80%;
    height: auto;
  }
}
@media (max-width: 1000px) {
  .lightbox .content img {
    width: 100%;
  }
}
.lightbox .content .swiper-container-lightbox {
  text-align: center;
}
.lightbox .content .swiper-container-lightbox .swiper-slide {
  opacity: 0 !important;
}
.lightbox .content .swiper-container-lightbox .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.lightbox .content .swiper-pagination-lightbox {
  text-align: center;
  margin-top: 0px;
}
.lightbox .content .swiper-pagination-lightbox .swiper-pagination-bullet {
  background-color: #fff;
}
.lightbox .content .swiper-pagination-lightbox .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #cf9e70;
  border: solid 1px #eab692;
}
.lightbox .content .btn-prev-lightbox,
.lightbox .content .btn-next-lightbox {
  z-index: 1;
  cursor: pointer;
  position: absolute;
  bottom: 50%;
  right: 0;
  margin-bottom: -26px;
  width: 52px;
  min-width: 52px;
  height: 52px;
  color: #F08300;
  border-radius: 50%;
  background-color: #25050c;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lightbox .content .btn-prev-lightbox:hover,
.lightbox .content .btn-next-lightbox:hover {
  opacity: 0.9;
}
@media (max-width: 1200px) {
  .lightbox .content .btn-prev-lightbox,
  .lightbox .content .btn-next-lightbox {
    transform: scale(0.7);
    right: -26px;
  }
}
@media (max-width: 600px) {
  .lightbox .content .btn-prev-lightbox,
  .lightbox .content .btn-next-lightbox {
    transform: scale(0.5);
  }
}
.lightbox .content .btn-prev-lightbox {
  right: auto;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../images/btn-prev.svg');
  outline: none;
}
@media (max-width: 1200px) {
  .lightbox .content .btn-prev-lightbox {
    left: -26px;
  }
}
.lightbox .content .btn-next-lightbox {
  margin-left: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../images/btn-next.svg');
}
.lightbox .content .swiper-container-lightbox &gt; .swiper-wrapper.disabled &gt; .swiper-slide {
  opacity: 1 !important;
}
.btn-prev-lightbox.disabled,
.btn-next-lightbox.disabled {
  display: none;
}
.contact-container {
  margin: 0;
  padding: 100px 3vw;
  align-items: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 1600px) {
  .contact-container {
    padding: 80px 60px;
  }
}
@media (max-width: 768px) {
  .contact-container {
    padding: 50px 30px;
  }
}
.contact-container .contact-box {
  display: flex;
}
@media (max-width: 1280px) {
  .contact-container .contact-box {
    flex-direction: column;
  }
}
.contact-container .contact-box .contact-left {
  width: 55%;
  margin-right: 3vw;
}
@media (max-width: 1280px) {
  .contact-container .contact-box .contact-left {
    width: 100%;
    margin-right: 0;
    display: none;
  }
}
.contact-container .contact-box .contact-left .image-cover {
  width: 100%;
  height: 100%;
}
.contact-container .contact-box .contact-left .image-cover img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.contact-container .contact-box .contact-left .contact-deco-box {
  position: relative;
  width: 100%;
}
@media (max-width: 1600px) {
  .contact-container .contact-box .contact-left .contact-deco-box {
    padding-top: 15vw;
  }
}
.contact-container .contact-box .contact-left .contact-deco-box .contact-deco {
  position: absolute;
  width: 45%;
  bottom: -4vw;
  left: -6vw;
}
.contact-container .contact-box .contact-right {
  width: 45%;
  margin-left: 3vw;
  padding-right: 3vw;
  padding: 1vw 0;
}
@media (max-width: 1280px) {
  .contact-container .contact-box .contact-right {
    width: 100%;
    padding-right: 3vw;
    padding-left: 3vw;
    margin-right: 0;
    margin-left: 0;
  }
}
.contact-container .contact-box .contact-right .contact-row {
  margin-bottom: 60px;
}
.contact-container .contact-box .contact-right .contact-row .contact-title {
  color: #E9E9E9;
  font-size: 30px;
  line-height: 1.5em;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-left: -15px;
}
@media (max-width: 768px) {
  .contact-container .contact-box .contact-right .contact-row .contact-title {
    font-size: 26px;
  }
}
.contact-container .contact-box .contact-right .contact-row .contact-title .contact-icon {
  width: 75px;
  height: 75px;
  animation: neonsignTitle 2s linear 0s infinite forwards;
  margin-right: 5px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .contact-container .contact-box .contact-right .contact-row .contact-title .contact-icon {
    width: 55px;
    height: 55px;
  }
}
.contact-container .contact-box .contact-right .contact-row .divider {
  background: linear-gradient(to right, #a4744a 3%, #ce9e74 8%, #d6a275 16%, #d6a275 23%, #f9c190 33%, #ce9c70 46%, #c59163 55%, #ffcda2 66%, #cc9565 78%, #dfab7e 88%, #d09766 95%, #806248 102%);
  height: 1px;
  width: 100%;
  margin-bottom: 15px;
}
.contact-container .contact-box .contact-right .contact-row .contact-info {
  color: #FFC298;
  font-size: 18px;
  line-height: 1.5em;
  padding-right: 2vw;
  font-weight: 400;
}
@media (max-width: 768px) {
  .contact-container .contact-box .contact-right .contact-row .contact-info {
    font-size: 16px;
  }
}
.contact-container .contact-box .contact-right .contact-row .contact-info a {
  color: #E9E9E9;
}
</pre></body></html>