:root {

  --font-family: ltc-bodoni-175, serif;

  --font-sec-family: ltc-bodoni-175, serif;

  --font-color: #4B83F4;

  --font-hover:#4B83F4;

  --main-color: #4B83F4;

  --sec-color: #4B83F4;

  --border-color: rgba(0, 0, 0, 0.1);

}

a {
  text-decoration: none !important;
}
a:hover{
  color: var(--sec-color);
}


html,
body {

  position: relative;

}

#mobile-address-btn{
  opacity: 0.65;
}


/* button */
.button {

	pointer-events: auto;

	cursor: pointer;

	/* background: #e7e7e7; */

	border: none;

	/* padding: 1.5rem 3rem; */

	margin: 0;

	font-family: inherit;

	font-size: inherit;

	position: relative;

	display: inline-block;

}

.button::before,

.button::after {

	position: absolute;

	top: 0;

	left: 0;

	width: 100%;

	height: 100%;

}
.more {

	font-size: 1.15rem;

	color: #fff;

	background: none;

	padding: 0;

	width: 100%;

}



.more .button__bg {

	top: 0;

	left: 0;

	position: absolute;

	width: 100%;

	height: 100%;

	background: var(--sec-color);

	border-radius: 25px;

	overflow: hidden;

	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);

}



.more:hover .button__bg {

	transform: scale3d(1.1, 1.1, 1);
  border: 1px solid var(--sec-color);

}


.more .button__bg::before,

.more .button__bg::after {

	content: '';

	position: absolute;

	background: #ffffff;

}


.more .button__bg::before {

	width: 110%;

	height: 0;

	padding-bottom: 110%;

	top: 50%;

	left: 50%;

	border-radius: 50%;

	transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1);

}


.more:hover .button__bg::before {

	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);

	transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);

}



.more .button__bg::after {

	top: 0;

	left: 0;

	width: 100%;

	height: 100%;

	opacity: 0;

	transition: opacity 0.3s;

}



.more:hover .button__bg::after {

	opacity: 1;

	transition-duration: 0.01s;

	transition-delay: 0.3s;

}



.more span {

	display: block;

	position: relative;

	padding: 1rem 3rem;

	font-size: 14px;

	color: #FFFFFF;

	/* line-height: 2em; */

}

.more:hover span{
  color: var(--sec-color) ;
}

/* button-end */





/* 回到頂部 */
.backTop-btn {
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  background: var(--main-color);
  color: #fff;
  border-radius: 50%;
  position: fixed;
  bottom: 25px;
  right: 30px;
  text-align: center;
  line-height: 45px;
  z-index: 999;
  display: none;
}

.backTop-btn:active,
.backTop-btn:focus {
  background: var(--main-color);
  color: #fff;
}

.backTop-btn:hover {
  background: #fff;
  color: var(--main-color) !important;
}


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


  /* 回到頂部 */
  .backTop-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
    bottom: 70px;
    right: 8px;
    line-height: 40px;
  }
}



@media (min-width:1200px) {

  .container {

    width: 1598px;

  }

}



img {

  max-width: 100%;

  height: auto;

}



a:hover {

  text-decoration: none;

}

ul {
  padding: 0;
  list-style: none;
}




/* HEADER-start */

.header {
  position: relative;
  z-index: 999;
}

.headercontainer {
  display: flex;
  width: 100%;
  height: 100px;
  padding: 0;
  background: url(../pics/head.png) center no-repeat;
  justify-content: center;
  margin: 0 auto;
}

.headercontainer .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.headercontainer .logo a{
  display: inline-block;
  width: 106px;
}

.headercontainer .nav {
  height: 100%;
  padding: 0 0px 0 20px;
  display: flex;
  justify-content: flex-start;
}
.nav>ul{
  display: flex;
  list-style: none;
  align-items: center;
  height: 100%;
}
.nav>ul>li{
  padding: 0 20px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav>ul>li>a{
  font-size: 16px;
  color: #646464;
  line-height: 25px;
  font-weight: bold;
}
.nav>ul>li>a:hover{
  color: var(--sec-color);
}
.nav .active>a{
  color: var(--sec-color);
}
.nav .active::after,.nav>ul>li:hover::after{
  content: '';
  width: 30%;
  height: 2px;
  position: absolute;
  bottom: 30%;
  left: 35%;
  background-color: var(--main-color);

}
.nav .nav-right{
  display: flex;
  justify-content: center;
  column-gap: 20px;
  align-items: center;
}
.head-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
  margin-left: 15px;
}
.head-icon img{
  width: 30px;
}

.about_dropdown{
  position: absolute;
  width: 120px;
  top: 80%;
  left: -10%;
  background-color: #ffffff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  z-index: 1;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border-radius: 10px;
}
.about_dropdown.show {
  display: block;
  opacity: 1;
  visibility: visible;
}
.about_dropdown li{
  border-bottom: 1px solid  rgba(255,255,255,0.2);
  border-radius: 5px;
}
.about_dropdown li:hover{
  background-color: var(--sec-color);
}
.about_dropdown li:hover a{
  color: #ffffff;
}
.about_dropdown li:last-child{
  border: none;
}
.about_dropdown li>a{
  font-size: 14px;
  color: #333333;
  line-height: 22px;
  padding: 10px 10px;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.headercontainer.stricky{
  position: fixed;
  top: 0%;
}
.header-device-mobile.stricky{
  position: fixed;
  top: 0%;
}

.language-item{
  padding: 0 5px !important;
}
.language-item>a{
  color: #4B83F4 !important;
}
.language-item .about_dropdown{
  width: 50px;
  text-align: center;
  left: -35%;
}

/* HEADER-end */







/* FOOTER-start */
.footer {
  height: fit-content;
  padding: 80px 0 0px 0;
  background: var(--font-color);
  border-radius: 30px 30px 0 0;
}

.footercontainer {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.foot-logo img{
  width: 218px;
}
.foot-logo p{
  margin-top: 30px;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 35px;
}
.foot-nav ul{
  display: flex;
  flex-direction: column;
  list-style: none;
}
.foot-nav ul>li{
  padding: 0;
}
.foot-nav ul>li>a{
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 43px;
}
.foot-nav ul>li>a:hover{
  color: #ffffff;
}
.foot-link p,.foot-link a{
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 38px;
}
.foot{
  border-top: 1px solid #CBD5E0;
  background-color: var(--main-color);
  height: 60px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foot>p{
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin: 0;
}
.footer h5{
  font-weight: bold;
  font-size: 22px;
  color: #FFFFFF;
  line-height: 26px;
}
.foot-list{
  display: flex;
  column-gap: 50px;
}
.foot-link .link{
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  column-gap: 20px;
}
.foot-link .link img{
  width: 44px;
}
.link-div{
  margin-top: 40px;
}
.link-div p{
  margin: 0;
}
.foot-link p>a:hover{
  color: #ffffff;
}

/* FOOTER-end */





/**
*手機端
*/
/* mobile-header-start */
.mobile-header {
  display: none;

}

.mobilecontainer {
  padding: 0 15px;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}

.mobilecontainer.whitenav {
  background-color: #fff;
}

.mobilecontainer.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobilecontainer .mobile-head {
  height: 100px;
  display: flex;
  align-items: center;
}

.mobilecontainer .mobile-logo {
  margin: 0 auto;
}

.mobilecontainer .mobile-logo>a {
  width: 180px;
  display: inline-block;
}

.mobilecontainer .nav-overlay {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 90%;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  z-index: 999;
  display: none;
  /* 默认隐藏 */
}

.mobilecontainer .mobile-navbar {
  position: fixed;
  top: -100%;
  /* 初始位置在屏幕外 */
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  transition: top 0.3s ease-in-out;

}

.mobilecontainer .mobile-navbar>ul {
  padding: 0;
  margin-bottom: 0;
}

.mobilecontainer .mobile-navbar>ul>li {
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-bottom: 1px solid #f0e5e3;
}

.mobilecontainer .mobile-navbar>ul>li>a {
  font-size: 18px;
  color: #333;
  line-height: 20px;
}

.mobilecontainer .mobile-navbar>ul>li:hover a,
.mobilecontainer .mobile-navbar>ul>li>a:active {
  color: #7B2B26;
  font-weight: bold;
}

.mobilecontainer .mobile-navbar>ul>li.mobile-active a {
  color: #7B2B26;
  font-weight: bold;
}

.mobilecontainer .mobile-navbar .mobile-has-children>img {
  padding: 0 0 5px 3px;
  transition: transform 0.3s;
  width: 16px;
}

/* 子菜單*/
.mobilecontainer .mobile-navbar .mobile-has-children .mobile-children {
  display: none;
}

.mobilecontainer .mobile-navbar .mobile-has-children .mobile-children>li {
  height: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 16px;
  color: #777777;
  /* border-top: 1px solid #f0e5e3; */
}

.mobilecontainer .mobile-navbar .mobile-has-children .mobile-children>li>img {
  width: 15px;
  padding: 0 0 3px 3px;
  transition: transform 0.3s;
}

.mobilecontainer .mobile-navbar .mobile-has-children {
  min-height: 0;
  height: auto;
  padding-left: 20px;
}

.mobilecontainer .mobile-navbar .mobile-has-children.open a {
  color: #7B2B26;
}

.mobilecontainer .mobile-navbar .mobile-has-children.open>img {
  transform: rotate(180deg);
  padding: 5px 3px 0 0;
}


.mobile-footer{
  display: none;
}


/* banner */
.bannercontainer>img {
  width: 100%;
}

.childcontainer>img {
  width: 100%;
}

.tj-cart{
  max-width: 80%; margin:0 auto;
}

/* mobile-header-end */
@media screen and (max-width:1250px) {
  .num.counter-container{
    justify-content: flex-end;
  }

  .header-nav-wapper {
    column-gap: 1em;
  }

  .header-nav .menu-main-menu {
    column-gap: 1em;
  }

  .stricky-header-nav .stricky-menu {
    column-gap: 1em;
  }

  .menu-item {
    padding: 0 13px;
  }

  .menu-main-menu .menu-item>a {
    font-size: 16px;
  }

  .stricky-menu .menu-item>a {
    font-size: 16px;
  }
}

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

  /* footer */
  .footer {
    padding: 30px 0;
  }

  .footercontainer {
    padding: 0 30px;
  }

  .footercontainer .foot-left h1 {
    font-size: 100px;
    line-height: 100px;
  }
}

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

  /* banner */
  .bannercontainer>img {
    height: 200px;
  }

  .childcontainer>img {
    height: 200px;
  }

  /* 底部 */
  .footer{
    display: none;
  }
  .mobile-footer{
    display: block;
    margin-bottom: 60px;
  }
  .mobile-footer .mobile-footcontainer{
    padding: 26px 0;
    background: linear-gradient( 180deg, rgba(75,131,244,0.16) 0%, rgba(75,131,244,0.3) 46%, rgba(75,131,244,0.6) 100%);
  }
  .mobile-footcontact{
    padding: 0 10px;
  }
  .mobile-footcontact p,.mobile-footcontact a{
    font-size: 14px;
    color: #2462FF;
    line-height: 13px;
    margin: 15px 0;
  }
  .mobile-footcontainer .foot-logo{
    width: 130px;
    margin-bottom: 20px;
    padding: 0 10px;
  }
  .mobile-footnav{
    display: flex;
    flex-wrap: wrap;
  }


  .mobile-footnav .fnav-item a{
    font-size: 14px;
    color: #2462FF;
    line-height: 30px;
    padding: 0 10px;
    position: relative;
  }
  .mobile-footnav .fnav-item a::after{
    content: '';
    width: 2px;
    height: 15px;
    background-color: #2462FF;
    position: absolute;
    top: 3%;
    right: 0%;
  }
  .mobile-footnav .fnav-item:last-child a::after{
    display: none;
  }
  .copytxt{
    padding: 0 10px;
  }
  .copytxt p{
    font-size: 12px;
    color: #2462FF;
    line-height: 15px;
    text-align: center;
  }
  .mobile-footlink{
    padding: 0 10px;
  }
  .mobile-footlink a img{
    width: 40px;
  }

  .mobile-footer .footer-nav{
    /* background: #4B83F4; */
    height: 90px;
    display: flex;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    background: url(../images/footer-nav.png) no-repeat top;
    background-size: cover;
  }
  .footer-nav .item{
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 13px;
  }
  .footer-nav .item a{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5px;
  }
  .footer-nav p{
    font-size: 15px;
    color: #FFFFFF;
    line-height: 14px;
    text-align: center;
  }
  .footer-nav img{
    width: 30px;
  }
  .footer-nav .toCart{
    padding-top: 0;
  }
  .footer-nav .toCart .circle{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #FFFFFF;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    /* border: 8px solid #4B83F4; */
    position: relative;
    margin-top: -25px;
    /* margin-left: 1px; */
  }
  .toCart img{
    width: 38px;
    position: absolute;
    top: 7px;
    left: 7px;
  }

  .scart-modal .cart-dialog{
    width: 100vw !important;
  }
  .spay-dialog .modal-content{
    overflow-y: auto;
    height: 90vh;
  }
  .fail-dialog,.success-dialog{
    margin-left: 0;
  }

  .language-item{
    display: none;
  }

}