 
 html,body{ 
  height: 100%;   
  max-width: 1920px;
  margin: auto;
}
 .d-flex{display:flex!important;}
.flex-column{flex-direction:column!important;}
.align-items-center{align-items:center!important;} 
.text-gold{color:#c6a57a!important;}
#loader{position:fixed;top:0;bottom:0;right:0;left:0;background:white;z-index:99;display:flex;justify-content:center;align-items:center;}
  
 
.loading{
  position: relative;
}
.loading:before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  height: 100%;
  content: "";
  background-color: rgba(255, 0.8);
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid lightblue;
  border-right-color: orange;
  animation: l2 1s infinite linear;
}
@keyframes l2 {to{transform: rotate(1turn)}} 

.loaded {
  animation: fadeOut 0.8s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none; 
  }
}
 
.cursor-allowed{
   cursor: not-allowed !important;
}
.loading-spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
 
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.spinner-box {
  width: 1.5em;
  height: 1.5em;
  margin-left:1rem;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?byu9vj');
  src:  url('fonts/icomoon.eot?byu9vj#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?byu9vj') format('truetype'),
    url('fonts/icomoon.woff?byu9vj') format('woff'),
    url('fonts/icomoon.svg?byu9vj#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-location:before {
  content: "\e91b";
}
.icon-pass-filled:before {
  content: "\e91c";
}
.icon-pass:before {
  content: "\e91d";
}
.icon-eye-closed:before {
  content: "\e91e";
}
.icon-eye:before {
  content: "\e91f";
}
.icon-debug-pause:before {
  content: "\e920";
}
.icon-attach:before {
  content: "\e921";
}
.icon-arrow-up:before {
  content: "\e922";
}
.icon-arrow-down:before {
  content: "\e923";
}
.icon-arrow-right:before {
  content: "\e924";
}
.icon-arrow-left:before {
  content: "\e925";
}
.icon-lightning:before {
  content: "\e918";
}
.icon-moon:before {
  content: "\e919";
}
.icon-sun:before {
  content: "\e91a";
}
.icon-add:before {
  content: "\e900";
}
.icon-ArrowVertical:before {
  content: "\e901";
}
.icon-back:before {
  content: "\e902";
}
.icon-cart:before {
  content: "\e903";
}
.icon-check:before {
  content: "\e904";
}
.icon-close:before {
  content: "\e905";
}
.icon-delete:before {
  content: "\e906";
}
.icon-exclamation:before {
  content: "\e907";
}
.icon-exclamation-fill:before {
  content: "\e908";
}
.icon-find:before {
  content: "\e909";
}
.icon-fold:before {
  content: "\e90a";
}
.icon-friend:before {
  content: "\e90b";
}
.icon-move:before {
  content: "\e90c";
}
.icon-my:before {
  content: "\e90d";
}
.icon-playFill:before {
  content: "\e90e";
}
.icon-right:before {
  content: "\e90f";
}
.icon-roundAdd:before {
  content: "\e910";
}
.icon-share:before {
  content: "\e911";
}
.icon-triangleDown_fill:before {
  content: "\e912";
}
.icon-triangleUpFill:before {
  content: "\e913";
}
.icon-unfold:before {
  content: "\e914";
}
.icon-usefullFill:before {
  content: "\e915";
}
.icon-voiceFill:before {
  content: "\e916";
}
.icon-voiceLight:before {
  content: "\e917";
}

  

  
/* 进入动画，刚刚加入的消息从上往下展示 */
.msg-fade-enter-active,
.msg-fade-leave-active {
    transition: all 0.3s ease;
}

/* 进入时的初始位置（上方） */
.msg-fade-enter,
.msg-fade-leave-to

/* .msg-fade-leave-active in <2.1.8 */
    {
    transform: translateY(-30px);
    opacity: 0;
}

/* 进入后恢复到原始位置 */
.msg-fade-enter-to,
.msg-fade-leave {
    transform: translateY(0);
    opacity: 1;
}

.topIn-enter-active, .topIn-leave-active {
	transition: transform 0.5s ease, opacity 0.5s ease;
  }
  
  .topIn-enter, .topIn-leave-to /* .topIn-leave-active in <2.1.8 */ {
	opacity: 0;
  }
  
  .topIn-enter {
	transform: translateY(-100px); /* 从上方进入 */
  }
  
  .topIn-leave-to {
	transform: translateY(100px); /* 离开时从下方离开 */
  }
.container-box{
  width: 85%;
  margin: 0 auto;
 
}
.shadow-33{
  -moz-box-shadow:0px 1px 4px #d0d0d0; -webkit-box-shadow:0px 1px 4px #d0d0d0; box-shadow:0px 1px 4px #d0d0d0;
}

 
.text-stroke {
  text-shadow: 0 -6px 4px #fff, 
  4px -4px 4px #fff,  
  6px 0 4px #fff, 
  4px 4px 4px #fff,  
  0 6px 4px #fff,  
  -4px 4px 4px #fff,  
  -6px 0 4px #fff,  
  -4px -4px 4px #fff;  
}
 

.fade-text {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.nav-sub::before { 
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0; 
  width: 100%;
  height:4px;
  background-color:#fff; 
  -webkit-transform: scaleX(0);
  transform: scaleX(0); 
  transition: -webkit-transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  
} 
.nav-sub:hover{
  color:#1357A0;
}
  .nav-sub:hover::before {  
  background-color:#1357a0; 
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  transition: -webkit-transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  
}
.activity-nav-sub{
  color:#1357A0;
}
.activity-nav-sub::before {  
  background-color:#1357a0;
  -webkit-transform: scaleX(1)!important;
  transform: scaleX(1)!important;  
}
.left-nav-sub  a{
  padding: 0.5rem 1rem;
  display: block;  
  position: relative;
}
.left-nav-sub  a:hover{
  color:#ccc;
}
.left-nav-sub  a::before {
  position: absolute; 
  content: "";
  left: 0;
  top: 50%;  
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  margin-top:-2px; 
}
.left-nav-sub  a:first-child::before{
  display: none; 
}
 
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#loader svg {
  animation: rotate 2s linear infinite;
}

.lyProducts_swiper .swiper-container .swiper-slide {

  background: linear-gradient(to bottom, #ffffff00, #ffffff00);

}