* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "PingFangSC", "PingFang SC";
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  background: #f3f4f6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  color: #181818;
  font-family: "PingFangSC", "PingFang SC";
  font-weight: 400;
  margin: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #181818;
}

a:hover {
  color: #ffd757;
}

img {
  display: inline-block;
  max-width: 100%;
}
i,
span,
a {
  display: inline-block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1280px;
}

/*====================================
    sticky-header css
====================================*/

header.main-header {
  background-color: #fff;
  position: relative;
  /* z-index: 100; */
}
header.main-header .header-sticky {
  position: relative;
  top: 0;
  z-index: 100;
}
header.main-header .sticky-header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 9999;
  background-color: #fff;
}
.navbar {
  padding: 20px 0;
  align-items: center;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  padding: 0 40px 0 0;
  margin: 0;
}
.navbar-brand img {
  max-height: 48px;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
}

.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}

.main-menu .nav-menu-wrapper > ul li {
  margin: 0 20px;
  position: relative;
  text-align: center;
}

.main-menu .nav-menu-wrapper > ul li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 2px;
  padding: 0 !important;
  color: #999999;
  transition: all 0.3s ease-in-out;
}
.main-menu .nav-menu-wrapper > ul li a span {
  font-weight: 500;
  font-size: 10px;
  color: #999999;
  line-height: 14px;
  display: block;
  transition: all 0.3s ease-in-out;
}
.main-menu .nav-menu-wrapper > ul li.active a,
.main-menu .nav-menu-wrapper > ul li.active a span,
.main-menu .nav-menu-wrapper > ul li:hover a,
.main-menu .nav-menu-wrapper > ul li:hover a span {
  color: #000 !important;
}
.main-menu .nav-menu-wrapper > ul li a.nav-link:before,
.main-menu .nav-menu-wrapper > ul li.active a.nav-link:before {
  position: absolute;
  content: "";
  bottom: -12px;
  left: 0;
  width: 0;
  height: 4px;
  background: #000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease 0s;
  transform: skew(40deg, 0deg);
  -webkit-transform: skew(40deg, 0deg);
  -ms-transform: skew(40deg, 0deg);
  -o-transform: skew(40deg, 0deg);
}

.main-menu .nav-menu-wrapper > ul li a.nav-link:hover:before,
.main-menu .nav-menu-wrapper > ul li.active a.nav-link:before {
  visibility: visible;
  opacity: 1;
  width: 100%;
}

.main-menu .header-btn ul {
  align-items: center;
  display: inline-flex;
}
.main-menu .header-btn ul li {
  margin: 0 12px;
  position: relative;
}
.main-menu .header-btn ul li .qr-code {
  position: absolute;
  top: 80px;
  left: 50%;
  width: 130px;
  margin-left: -60px;
  padding: 10px 0;
  text-align: center;
  background: #ffffff;
  border-radius: 4px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}
.main-menu .header-btn ul li .qr-code img {
  width: 110px;
  height: 110px;
  margin: 0 auto;
}
.main-menu .header-btn ul li:hover .qr-code {
  opacity: 1;
  top: 60px;
  visibility: visible;
}
.main-menu .header-btn ul li:last-child {
  margin-right: 0;
}
.main-menu .header-btn ul li a {
  font-weight: 500;
  font-size: 11px;
  color: #111111;
  line-height: 16px;
  text-align: center;
}
.main-menu .header-btn ul li a img {
  margin: 0 auto 4px;
  width: 24px;
  height: 24px;
  display: block;
}

.navbar-toggle {
  position: relative;
  cursor: pointer;
  height: 32px;
  width: 30px;
}
.navbar-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  width: 24px;
  background-color: #000000;
  margin: auto;
  transition: 0.5s;
}
.navbar-toggle span:first-child {
  top: 8px;
}
.navbar-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.navbar-toggle span:last-child {
  bottom: 8px;
}

.navbar-toggle.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
  /* transform-origin: top left; */
}

.navbar-toggle.active span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.navbar-toggle.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
  /* transform-origin: bottom left; */
}

.mobile-nav {
  position: fixed;
  right: -380px;
  top: 3.75rem;
  bottom: 0;
  width: 300px;
  scroll-behavior: smooth;
  overflow-y: scroll;
  transition: right 0.25s ease-in;
  background-color: #ffffff;
  padding: 15px;
  z-index: 999;
  border-top: 1px solid #ebe9e8;
}
.mobile-nav.show {
  right: 0;
}

.mobile-nav .sidebar-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: transparent;
}

.mobile-nav .sidebar-nav .metismenu {
  display: flex;
  flex-direction: column;
}

.mobile-nav .sidebar-nav .metismenu > li {
  position: relative;
  display: flex;
  flex-direction: column;
}

.mobile-nav .sidebar-nav .metismenu a {
  position: relative;
  display: block;
  padding: 15px;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  line-height: 22px;
  letter-spacing: 2px;
  border-bottom: 1px solid #f3f4f6;
}
.mobile-nav .sidebar-nav .metismenu a span {
  margin-left: 10px;
  font-weight: 500;
  font-size: 12px;
  color: #999999;
}
.mobile-nav .sidebar-nav .metismenu ul a {
  padding: 10px 15px 10px 35px;
  position: relative;
}

.mobile-nav .sidebar-nav .metismenu ul a:hover {
  padding-left: 40px;
}

.mobile-nav .sidebar-nav .metismenu ul a:hover::before {
  background-color: #fff;
}

.mobile-nav .sidebar-nav .metismenu ul a::before {
  position: absolute;
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  content: "";
  top: 50%;
  transition: all 0.3s ease-in-out;
  transform: translateY(-50%);
}
.mobile-nav .model-link {
  text-align: center;
  margin-top: 20px;
}
.mobile-nav .model-link a img {
  max-width: 145px;
}
.mobile-nav .model-link a {
  margin-bottom: 10px;
}
.overlay {
  position: fixed;
  top: 3.75rem;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #383431;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.overlay.active {
  opacity: 0.6;
  visibility: visible;
}

/*====================================
    home-slider css
====================================*/

.banner-section {
  position: relative;
  overflow: hidden;
}
.banner-section .owl-stage-outer .slide-item {
  position: relative;
  width: 100%;
  padding-bottom: 50%;
}
.banner-section .slide-item .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}
.banner-section .owl-stage-outer .slide-item .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.banner-section .slide-item .content-box {
  position: relative;
  padding-top: 80px;
  padding-left: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner-section .slide-item .content-box .title {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 30px;
  color: #ffffff;
  line-height: 42px;
  letter-spacing: 2px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  text-align: left;
}
.banner-section .slide-item .content-box .sub-title {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
  letter-spacing: 1px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  text-align: left;
  margin-top: 32px;
}
.banner-section .slide-item .content-box .btn-box {
  margin-top: 72px;
  text-align: left;
}
.banner-section .slide-item .content-box .btn-box a {
  position: relative;
  padding: 10px 26px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  border: 1px solid #fff;
}
.banner-section .slide-item .content-box .btn-box a:hover {
  color: #000 !important;
}
.banner-section .slide-item .content-box .btn-box a::after {
  background: #ffffff !important;
}
.banner-section .slide-item .content-box .btn-box i {
  margin-left: 6px;
  font-size: 12px;
}
.banner-owl-carousel .animate-1,
.banner-owl-carousel .animate-2,
.banner-owl-carousel .animate-3 {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.banner-owl-carousel .active .animate-1,
.banner-owl-carousel .active .animate-2,
.banner-owl-carousel .active .animate-3 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.banner-owl-carousel .active .animate-2 {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}
.banner-owl-carousel .active .animate-3 {
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
}

/*====================================
    new-product css
====================================*/
.new-product .product-item {
  position: relative;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 30px;
  width: 100%;
  top: 0;
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  transition: all 0.3s ease-in-out;
}
.new-product .product-item .product-item-img {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.new-product .product-item .product-item-img img {
  width: 256px;
  height: 256px;
  transition: all 500ms ease;
}
.new-product .product-item .product-item-content {
  position: relative;
  text-align: center;
  padding: 20px 16px;
}
.new-product .product-item .product-item-content .product-item-title {
  font-weight: 500;
  font-size: 16px;
  color: #444444;
  line-height: 22px;
  margin-bottom: 12px;
}
.new-product .product-item .product-item-content .product-item-cats {
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  line-height: 20px;
}
.new-product .product-item .product-item-content .product-item-btn,
.product-details .product-detail-content .buy-btn {
  background: #edeef0;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  color: #111111;
  width: 140px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  margin: 20px auto 0;
  z-index: 1;
  overflow: hidden;
}
.new-product .product-item .product-item-content .product-item-btn i,
.product-details .product-detail-content .buy-btn i {
  margin-left: 8px;
  font-weight: 400;
  font-size: 12px;
}

.new-product .product-item:hover {
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
  top: -5px;
  transition: all 0.3s ease-in-out;
}
.new-product .product-item:hover .product-item-img img {
  transform: scale(1.15);
}
.new-product .product-item:hover .product-item-btn {
  color: #ffffff;
}
.new-product .product-item:hover .btn-default::after {
  width: 100%;
}
/*====================================
    index-product-cates css
====================================*/
.product-cates .cate-item {
  position: relative;
  background: #f2f3f5;
  border-radius: 4px;
  padding: 24px;
  top: 0px;
  height: 260px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.product-cates .cate-item {
  text-align: center;
}
.product-cates .cate-item img {
  width: auto;
  max-height: 80px;
  margin: 0 auto;
}
.product-cates .cate-item .cate-item-content {
  position: relative;
  text-align: center;
  padding-top: 8px;
}
.product-cates .cate-item .cate-item-content .cate-item-title {
  font-weight: bold;
  font-size: 64px;
  color: #000000;
  line-height: 78px;
  letter-spacing: 2px;
}
.product-cates .cate-item .cate-item-content .cate-item-btn {
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  width: 32px;
  height: 20px;
  line-height: 20px;
  background: #000000;
  border-radius: 10px;
  margin: 8px auto 0;
  overflow: hidden;
  text-align: center;
  transition: 0.3s all ease;
}
.product-cates .cate-item .cate-item-content .cate-item-btn span {
  opacity: 0;
  position: absolute;
}
.product-cates .cate-item .cate-item-content .cate-item-btn i {
  font-size: 12px;
  font-weight: 400;
}
.product-cates .cate-item:hover {
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
  top: -5px;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
}
.product-cates .cate-item:hover .cate-item-content .cate-item-btn {
  width: 120px;
  height: 36px;
  line-height: 36px;
  background: #000000;
  border-radius: 4px;
}
.product-cates .cate-item:hover .cate-item-content .cate-item-btn span {
  opacity: 1;
  position: relative;
  transition: 0.3s all ease;
}
.product-cates .cate-item:hover .cate-item-content .cate-item-btn i {
  margin-left: 8px;
  transition: 0.3s all ease;
}
/*====================================
   index-news css
====================================*/
.news .news-item a {
  position: relative;
  width: 100%;
}
.news .news-item .news-item-image {
  position: relative;
  width: 100%;
  padding-bottom: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.news .news-item .news-item-title {
  padding-top: 20px;
  padding-bottom: 16px;
  font-weight: 500;
  font-size: 24px;
  color: #000000;
  line-height: 33px;
  text-align: left;
}
.news .news-item .news-item-subtitle {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 22px;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news .animate-1 {
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.news .active .animate-1 {
  opacity: 1;
}
.news .owl-carousel .owl-dots {
  bottom: inherit;
  top: 560px;
}
/*====================================
    footer css
====================================*/
.news-page .sec-title {
  position: relative;
  padding: 35px 0;
  margin-bottom: 0;
}
.news-page .sec-title .sec-image {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.news-page .sec-title-list {
  display: flex;
}
.news-page .sec-title-list li {
  flex: 1;
}
.news-page .sec-title .sec-title-item a {
  font-weight: 500;
  font-size: 24px;
  color: #999999;
  line-height: 33px;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
}
.news-page .sec-title .sec-title-item a span {
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 1px;
  display: block;
}
.news-page .sec-title .sec-title-item.active a,
.news-page .sec-title .sec-title-item:hover a {
  color: #000000;
  transition: all 0.5s ease;
}
.news-list .news-item {
  background: #ffffff;
  padding: 24px;
  position: relative;
  margin-bottom: 24px;
  display: flex;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.news-list .news-item:hover {
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}
.news-list .news-item .image-box {
  position: relative;
  height: 190px;
  width: 380px;
  padding-right: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-list .news-item .image-box img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.news-list .news-item .news-item-content {
  flex: 1;
  position: relative;
}
.news-list .news-item .news-item-content a {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}
.news-list .news-item .news-item-content a .n-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
}
.news-list .news-item .news-item-content a .n-subtitle {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 22px;
  margin-top: 16px;
}
.news-list .news-item .news-item-content a .n-time {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 16px;
  color: #999999;
  z-index: 1;
}
.news-list .news-item .news-item-content .n-time span {
  flex: 1;
}
.news-list .news-item .news-item-content .btn-default {
  background: #edeef0;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  color: #111111;
  width: 140px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}
.news-list .news-item .news-item-content .btn-default i {
  margin-left: 8px;
  font-weight: 400;
  font-size: 12px;
}

.news-list .news-item:hover .btn-default {
  color: #ffffff;
}
.news-list .news-item:hover .btn-default::after {
  width: 100%;
}
/*====================================
    news details
====================================*/
.news-details .sec-title,
.product-details .sec-title {
  position: relative;
  padding: 35px 0;
  margin-bottom: 0;
}
.news-details .sec-title .sec-image,
.product-details .sec-title .sec-image {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.news-details .sec-title h2,
.product-details .sec-title h2 {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  text-align: left;
}
.news-details .news-details-content {
  padding-top: 20px;
}
.news-details .news-details-content .news-details-title {
  font-weight: 500;
  font-size: 24px;
  color: #000000;
  line-height: 33px;
}
.news-details .news-details-content .news-details-time {
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  line-height: 22px;
  padding: 15px 0 20px;
  border-bottom: 1px solid #f3f4f6;
}
.news-details .news-details-content .news-details-text {
  padding-top: 20px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
  overflow: hidden;
}

.news-details .news-details-content .news-details-text p {
  margin-bottom: 10px;
}
.news-details-pagination {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.news-details-pagination span {
  display: none;
}
.news-details-pagination .prev i {
  margin-right: 4px;
}
.news-details-pagination .next i {
  margin-left: 4px;
}
/*====================================
    product-page css
====================================*/
.product-page .sec-title,
.about-page .sec-title {
  margin-bottom: 0;
  height: 60px;
  overflow: hidden;
}
.product-page .product-sidebar {
  position: relative;
  background: #ffffff;
  border-radius: 4px;
  padding: 0 12px;
  min-height: 800px;
}

.product-page .product-sidebar.active {
  position: sticky;
  top: 7rem;
  z-index: 10;
}
.product-page .product-sidebar .product-sidebar-item {
  padding: 24px 0;
  border-bottom: 1px solid #e8e9ec;
}
.product-page .product-sidebar .product-sidebar-item:last-child {
  border-bottom: none;
}
.product-page .product-sidebar .product-sidebar-item .sidebar-item-title {
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  padding-bottom: 10px;
}
.product-page .product-sidebar .product-sidebar-item .sidebar-item-title span {
  font-weight: 400;
  font-size: 13px;
  color: #999999;
  line-height: 18px;
  margin-left: 4px;
}
.product-sidebar-tag {
  display: flex;
  flex-wrap: wrap;
}
.product-sidebar-tag li {
  margin: 0px 5px 5px 0px;
}
.product-sidebar-tag li a {
  font-weight: 400;
  font-size: 13px;
  color: #333333;
  height: 30px;
  display: flex;
  align-items: center;
  padding: 0px 12px;
  background: #f3f4f6;
  border-radius: 2px;
  line-height: 1;
}
.product-sidebar-tag li a span {
  margin-left: 8px;
  font-size: 11px;
  color: #bbbbbb;
}
.sidebar-cates-list li {
  position: relative;
  display: block;
  margin-bottom: 6px;
}
.sidebar-cates-list li:last-child {
  margin-bottom: 0;
}
.sidebar-cates-list li .check-box input {
  display: none;
  transition: all 500ms ease;
}

.sidebar-cates-list li .check-box label {
  display: block;
  position: relative;
  font-weight: 400;
  font-size: 13px;
  color: #999999;
  padding-left: 22px;
  cursor: pointer;
  margin-bottom: 0;
}
.sidebar-cates-list li .check-box label:before {
  position: absolute;
  content: "";
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: #e5e5e5;
  background: transparent;
}
.sidebar-cates-list li .check-box label:after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f00c";
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  opacity: 0;
  color: #000;
  background: #ffd757;
  font-weight: 100;
}
.sidebar-cates-list li .check-box input:checked + label {
  color: #111111;
}
.sidebar-cates-list li .check-box input:checked + label:after {
  opacity: 1;
}
.sidebar-cates-list li .check-box input:checked + label:before {
  border-color: #ffd757;
}
.product-list .new-product {
  display: flex;
  flex-wrap: wrap;
}
.product-list .product-item-wrap {
  width: calc(50% - var(--bs-gutter-x) * 0.5);
  margin: 0 var(--bs-gutter-x) var(--bs-gutter-x) 0;
}
.product-list .product-item-wrap:nth-child(even) {
  margin-right: 0;
}
.product-list .product-item-wrap .product-item {
  margin-bottom: 0;
}

.product-page .search {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  width: 100%;
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.product-page .search i {
  position: absolute;
  left: 16px;
  color: #bbbbbb;
}
.product-page .search input {
  width: 100%;
  line-height: 50px;
  height: 50px;
  padding-left: 40px;
  border: none;
  outline: 0;
  background-color: transparent;
  color: #111111;
}
.product-page .mobile-search {
  display: none;
}
/*====================================
     product-details-page 
====================================*/
.product-details {
  border-bottom: 40px;
}
.product-details .details-img-owl,
.product-details .img-controls-owl .slide-item {
  border: 1px solid #e8e9ec;
  cursor: pointer;
}
.product-details .details-img-owl .slide-item a {
  width: 100%;
  outline: none;
  text-align: center;
}
/* .product-details .details-img-owl .slide-item {
  position: relative;
  height: 440px;
} */
.product-details .details-img-owl .slide-item .zoom-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px;
  z-index: 99;
  border-radius: 50%;
  background: rgba(232, 233, 236, 0.8);
  text-align: center;
}
.product-details .details-img-owl .slide-item .zoom-btn img {
  width: 20px;
  height: 20px;
}
.product-details .details-img-owl .owl-dots,
.product-details .img-controls-owl .owl-dots {
  display: none;
}
.product-details .img-controls-owl {
  margin-top: 16px;
  padding: 0 20px;
  position: relative;
}

.product-details .img-controls-owl .owl-nav {
  display: block;
}
.product-details .img-controls-owl .owl-prev,
.product-details .img-controls-owl .owl-next {
  position: absolute;
  color: #666666;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 4px;
}
.product-details .img-controls-owl .owl-next {
  left: inherit;
  right: 0;
}
.product-details .product-detail-content .product-detail-title {
  font-weight: 500;
  font-size: 24px;
  color: #000000;
  line-height: 33px;
  text-align: left;
}
.product-details .product-detail-content .product-detail-subtitle {
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  line-height: 25px;
  text-align: left;
  margin-top: 6px;
}
.product-details .product-detail-content .product-detail-attr {
  padding: 20px 0 8px;
  border-top: 1px solid #e8e9ec;
  position: relative;
  margin-top: 20px;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
}
.product-details .product-detail-content .product-detail-info {
  font-weight: 500;
  font-size: 14px;
}
.product-details
  .product-detail-content
  .product-detail-attr.title-color::before {
  position: absolute;
  content: "";
  left: 0;
  top: -4px;
  width: 140px;
  height: 4px;
  background: #ffd757;
}
.product-details .product-detail-content .product-detail-attr label {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 28px;
  text-align: left;
  display: block;
}
.product-details .product-detail-content .product-detail-attr .price {
  font-weight: 600;
  font-size: 24px;
  color: #000000;
  line-height: 24px;
  text-align: left;
}
.product-details .product-detail-content .product-detail-mattr {
  display: flex;
  flex-wrap: wrap;
}
.product-details .product-detail-content .product-detail-mattr li {
  width: 50%;
  margin-top: 16px;
}
.product-details .product-detail-content .buy-btn {
  margin: 0 auto;
  position: relative;
}
.product-details .product-detail-content .buy-btn:hover {
  color: #ffffff;
}
.product-details .product-detail-content .buy-box {
  position: relative;
  display: flex;
  align-items: center;
}
.product-details .product-detail-content .buy-box .product-qrcode {
  position: absolute;
  top: -250px;
  left: 50%;
  background: #ffffff;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 20px;
  width: 166px;
  margin-left: -83px;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
}
.product-details .product-detail-content .buy-box .product-qrcode img {
  width: 126px;
  height: 126px;
  margin: 0 auto;
  display: block;
}

.product-details .product-detail-content .buy-box:hover > .product-qrcode {
  visibility: visible;
  opacity: 1;
  top: -188px;
}
.product-details .product-detail-description {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e8e9ec;
}
.same-products {
  padding: 50px 0 70px;
  background: #f3f4f6;
}
.same-products .product-item {
  margin-bottom: 0;
}
/*====================================
    footer css
====================================*/
.about-page .detail-content {
  font-size: 14px;
}
/*====================================
    footer css
====================================*/
.footer {
  border-top: 4px solid #ffd757;
  background: #f3f4f6;
}
.footer .footer-content {
  padding: 32px 0;
  background: #ffffff;
}
.footer .footer-content .model-link {
  background: #f3f4f6;
  text-align: center;
  padding: 25px 32px;
}
.footer .footer-content .model-link img {
  width: 144px;
  height: 120px;
  margin: 0 auto;
}
.footer .footer-content .model-link .line {
  width: 100%;
  height: 1px;
  background: #d7d8dc;
  margin: 16px auto;
}
.footer .footer-content .case-item h4 {
  font-weight: 600;
  font-size: 20px;
  color: #000000;
  line-height: 28px;
  letter-spacing: 2px;
  text-align: center;
}
.footer .footer-content .case-item h4 span {
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  line-height: 20px;
  letter-spacing: 1px;
  display: block;
}
.footer .footer-content .case-item .case-item-arrow {
  margin-top: 20px;
  margin-bottom: 5px;
}
.footer .footer-content .case-item .case-item-arrow img {
  width: 100%;
  height: 9px;
  margin: 0 auto;
}
.footer .footer-content .case-item li {
  margin-bottom: 16px;
  text-align: center;
}
.footer .footer-content .case-item li a {
  z-index: 0;
  width: 100%;
}
.footer .footer-content .case-item li a img {
  z-index: 10;
  max-height: 72px;
  margin: 0 auto;
}
.footer .footer-content .case-item li .btn-default::after {
  background: #f3f4f6 !important;
}
.footer .footer-bottom {
  font-weight: 500;
  font-size: 14px;
  color: #111111;
  line-height: 60px;
  letter-spacing: 1px;
  text-align: center;
}
.footer .footer-bottom .line {
  position: relative;
}
.footer .footer-bottom .line::after {
  position: absolute;
  content: "";
  top: 20px;
  right: 0;
  width: 1px;
  height: 20px;
  background: #111111;
}
.footer .footer-bottom .company span:first-child {
  margin-right: 8px;
}
/*====================================
    public css
====================================*/
.owl-carousel .owl-nav {
  display: none;
}
.owl-carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 30px;
}
.owl-carousel .owl-dots .owl-dot span {
  background-color: rgba(255, 255, 255, 0.4);
  display: inline-block;
  width: 60px;
  height: 4px;
  margin: 0 5px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.owl-carousel .owl-dots .owl-dot.active span {
  background-color: rgba(255, 255, 255, 1);
}

.sec-bm {
  padding-bottom: 80px;
}
.sec-title {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.sec-title .sec-image {
  height: 96px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.sec-title .sec-logo img {
  width: 160px;
  height: 40px;
  margin: -20px auto 0;
  display: block;
}
.sec-title h2 {
  font-weight: 500;
  font-size: 30px;
  color: #000000;
  line-height: 42px;
  letter-spacing: 4px;
  text-align: center;
}
.sec-title a {
  font-size: 16px;
}
.sec-title h2 span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  line-height: 20px;
  letter-spacing: 2px;
}
.empty {
  /* display: none; */
  font-size: 12px;
  color: rgb(181, 181, 181);
  background: #ffffff;
  padding: 200px 0;
  text-align: center;
  border-radius: 4px;
}
.empty i {
  font-size: 48px;
}
.more-btn {
  background: #ffffff;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  color: #111111;
  width: 140px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  margin: 20px auto 0;
  z-index: 1;
  overflow: hidden;
}
.more-btn i {
  margin-left: 8px;
  font-weight: 400;
  font-size: 12px;
}
.btn-default {
  transition: 0.35s ease-in-out;
  position: relative;
  cursor: pointer;
}
.btn-default::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: #000000;
  transition: 0.3s ease-in-out;
  z-index: -1;
}
.btn-default:hover {
  color: #ffffff;
}
.btn-default:hover::after {
  width: 100%;
}
.load-more,
.no-more {
  color: #666;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-more {
  display: none;
}
.load-more .spinner-border {
  margin-right: 6px;
  width: 1rem;
  height: 1rem;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 1);
}
.go-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 24px;
  border: 0;
  outline: 0;
  border-radius: 50px;
  color: #ffffff;
  background-color: #ffd757;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 80px;
}
.go-top:hover {
  color: #fff;
}
.list-paddingleft-2 {
  padding-left: 16px;
}
.clamp-1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  white-space: normal !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.clamp-2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  white-space: normal !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.dflex-b {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex1 {
  flex: 1;
}
.hide {
  display: none;
}
.no-scroll {
  overflow: hidden;
}
input::placeholder {
  color: #bbbbbb;
}
input::input-placeholder {
  color: #bbbbbb;
}
::-webkit-input-placeholder {
  color: #bbbbbb;
}
:-moz-placeholder {
  color: #bbbbbb;
}
::-moz-placeholder {
  color: #bbbbbb;
}
:-ms-input-placeholder {
  color: #bbbbbb;
}
@media (max-width: 1024px) {
  .banner-section .slide-item .content-box {
    padding-top: 60px;
    padding-left: 40px;
  }
  /* .banner-section .owl-stage-outer,
  .banner-section .owl-stage-outer .slide-item {
    height: 540px !important;
  } */
}
@media (max-width: 991px) {
  /* .banner-section .owl-stage-outer,
  .banner-section .owl-stage-outer .slide-item {
    height: 440px !important;
  } */
  /* .news .news-item .news-item-image {
    height: 320px;
  } */
  .news .owl-carousel .owl-dots {
    top: 320px;
  }
}
@media (max-width: 767px) {
  header.main-header .header-sticky {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 9999;
    background: #ffffff;
  }
  .header-placeholder {
    display: block !important;
    width: 100%;
    height: 3.75rem;
  }
  .navbar {
    padding: 10px 0;
  }
  .navbar-brand img {
    max-height: 40px;
  }

  /* .banner-section .owl-stage-outer,
  .banner-section .owl-stage-outer .slide-item {
    height: 280px !important;
  } */
  /* .banner-owl-carousel .slide-item .bg-image {
    position: relative;
  } */
  .banner-owl-carousel .slide-item .bg-image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    color: transparent;
  }
  .banner-section .owl-stage-outer .slide-item .slide-content {
    display: none;
  }
  .banner-section .owl-carousel .owl-dots {
    bottom: 15px;
  }
  .owl-carousel .owl-dots .owl-dot span {
    width: 20px;
    height: 2px;
    margin: 0 2px;
  }
  .product-details .details-img-owl .owl-dots .owl-dot span {
    background: rgba(0, 0, 0, 0.2);
  }
  .product-details .details-img-owl .owl-dots .owl-dot.active span {
    background: rgba(0, 0, 0, 0.8);
  }

  .new-product .product-item {
    margin-bottom: 15px;
  }
  .new-product .product-item .product-item-img img {
    width: 230px;
    height: 230px;
  }
  .new-product .product-item:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    top: 0;
  }
  .new-product .product-item:hover .product-item-img img {
    transform: scale(1);
  }
  .new-product .product-item .product-item-content .product-item-btn,
  .product-details .product-detail-content .buy-btn {
    background: #000000;
    color: #ffffff;
  }
  .product-cates .col-sm-6 {
    flex: 0 0 auto;
    width: 50% !important;
  }
  .product-cates .cate-item {
    padding: 16px;
    background: #ffffff;
    height: auto;
  }
  .product-cates .cate-item img {
    max-height: 48px;
  }
  .product-cates .cate-item .cate-item-content {
    padding-top: 4px;
  }
  .product-cates .cate-item .cate-item-content .cate-item-title {
    font-size: 37px;
    line-height: 45px;
  }
  .product-cates .cate-item .cate-item-content .cate-item-btn {
    width: 80px;
    height: 24px;
    line-height: 24px;
    background: #000000;
    border-radius: 2px;
    font-weight: 400;
    font-size: 11px;
    margin-top: 10px;
  }
  .product-cates .cate-item .cate-item-content .cate-item-btn span {
    opacity: 1;
    position: relative;
  }
  .product-cates .cate-item .cate-item-content .cate-item-btn i {
    margin-left: 4px;
    font-size: 11px;
  }
  .news .animate-1 {
    opacity: 1;
  }
  .news .news-owl-carousel.owl-carousel {
    display: block;
  }
  /* .news .news-item .news-item-image {
    height: 240px;
  } */
  .news .news-item .news-item-title {
    font-size: 16px;
    line-height: 22px;
  }
  .news .owl-carousel .owl-dots,
  .news .news-item .news-item-subtitle {
    display: none;
  }
  .new-product .btn-default::after,
  .product-cates .btn-default::after,
  .product-item .product-item-content .btn-default::after {
    background: #ffffff;
  }
  .new-product .btn-default:hover,
  .product-cates .btn-default:hover,
  .product-item .product-item-content .btn-default:hover {
    color: #111111;
  }
  .product-item .product-item-content .btn-default::after {
    background: #000000;
  }
  .product-item .product-item-content .btn-default:hover {
    color: #ffffff;
  }

  .product-page .sec-title,
  .product-page .product-sidebar {
    display: none;
  }
  .product-page .product-list .product-item-wrap {
    width: 100%;
    margin: 0 auto calc(var(--bs-gutter-x) * 0.5);
  }
  .product-page .product-list .search {
    display: none;
  }
  .product-page .mobile-search {
    display: block;
    padding: calc(1.5rem * 0.5);
    background: #ffffff;
    margin-bottom: calc(1.5rem * 0.5);
  }
  .product-page .search {
    background: #f3f4f6;
    border-radius: 4px;
  }
  .product-page .search input {
    line-height: 36px;
    height: 36px;
    font-size: 14px;
  }
  .mobile-search .filter-box .filter-title {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-search .filter-box .filter-title span {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 14px;
    font-weight: bold;
    background: #ffd757;
    color: #000000;
    text-align: center;
  }
  .mobile-search .product-sidebar-tag li {
    margin: 5px 5px 0px 0px;
  }
  .filter-menu {
    position: fixed;
    left: 0;
    right: 0;
    height: auto;
    background: #ffffff;
    top: -100%;
    z-index: 99;
    display: flex;
    flex-direction: column;
    transition: top 0.25s ease-in;
  }
  .filter-menu.active {
    top: 3.75rem;
  }
  .filter-menu .filter-menu-content {
    display: flex;
    flex: 1;
  }
  .filter-menu .left-sidebar {
    width: 110px;
    height: 100%;
    background: #f3f4f6;
  }
  .filter-menu .left-sidebar .left-sidebar-item {
    font-weight: 600;
    font-size: 14px;
    color: #999999;
    line-height: 16px;
    text-align: left;
    padding: 10px 15px;
  }
  .filter-menu .left-sidebar .left-sidebar-item span {
    font-size: 10px;
    line-height: 13px;
  }
  .filter-menu .left-sidebar .left-sidebar-item.active {
    color: #333333;
    background: #ffffff;
  }
  .filter-menu .right-sidebar {
    flex: 1;
    padding: 0 15px;
    height: 28rem;
    overflow-y: auto;
  }
  .sidebar-cates-list li {
    margin-bottom: 0;
  }
  .filter-menu .right-sidebar .sidebar-cates-list li .check-box label {
    padding: 10px 0;
  }
  .filter-menu .right-sidebar .sidebar-cates-list li .check-box label:before,
  .sidebar-cates-list li .check-box label:after {
    left: inherit;
    right: 0;
    top: 15px;
  }
  .filter-menu .filter-menu-bottom {
    width: 100%;
    height: 50px;
    display: flex;
  }
  .filter-menu .filter-menu-bottom .reset-btn {
    width: 110px;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
    line-height: 50px;
    text-align: center;
  }
  .filter-menu .filter-menu-bottom .count-btn {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    line-height: 50px;
    text-align: center;
    background: #000000;
  }

  .product-details {
    overflow: hidden;
  }
  .product-details .sec-title,
  .product-details .img-controls-owl {
    display: none;
  }
  .product-details .details-img-owl {
    border: none;
    min-height: calc(100vw - var(--bs-gutter-x));
    margin-top: calc(var(--bs-gutter-x) * 0.5);
  }
  .product-details .details-img-owl .owl-dots {
    display: block;
    text-align: center;
  }
  .product-details .product-detail-content .product-detail-title {
    font-size: 16px;
    color: #000000;
    line-height: 22px;
  }
  .product-details .product-detail-content .product-detail-subtitle {
    font-size: 14px;
    color: #666666;
    line-height: 20px;
  }
  .product-details
    .product-detail-content
    .product-detail-attr.title-color::before {
    display: none;
  }
  .product-details .product-detail-content .product-detail-attr {
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    border-top: none;
    padding: 0;
  }
  .product-details .product-detail-content .product-detail-attr label {
    font-size: 13px;
    color: #999999;
    line-height: 18px;
  }
  .product-details .product-detail-content .buy-box .product-qrcode {
    display: none;
  }
  .product-details .product-detail-description {
    margin-top: 0;
    border-top: none;
  }
  .product-details .detail-line {
    width: 120%;
    height: 10px;
    background: #f3f4f6;
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    margin-top: 20px;
  }
  .same-products {
    padding: 20px 0 20px;
  }

  .news-page .sec-title {
    padding: 0;
    margin-bottom: 12px;
  }
  .news-page .sec-title .sec-title-item a {
    font-size: 14px;
    line-height: 40px;
    letter-spacing: 1px;
    position: relative;
  }
  .news-page .sec-title .sec-title-item.active a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 30px;
    height: 2px;
    background: #000000;
    transform: translateX(30px) translateX(-50%);
    transition-duration: 0.3s;
  }
  .news-page .sec-title .sec-image,
  .news-page .sec-title .sec-title-item a span {
    display: none;
  }
  .news-list .news-item {
    display: inline-block;
    padding: 15px;
    margin-bottom: 15px;
    width: 100%;
  }
  .news-list .news-item .image-box {
    width: 100%;
    padding-right: 0;
    padding-bottom: 50%;
    position: relative;
    height: auto;
  }
  .news-list .news-item .image-box a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .news-list .news-item .image-box img {
    width: 100%;
  }
  .news-list .news-item .news-item-content {
    padding-top: 10px;
  }
  .news-list .news-item .news-item-content a {
    position: relative;
  }
  .news-list .news-item .news-item-content a .n-time {
    position: relative;
    margin-top: 10px;
  }
  .news-list .news-item .news-item-content a .n-title {
    font-size: 14px;
    color: #000000;
    line-height: 20px;
  }
  .news-list .news-item .news-item-content a .n-subtitle {
    display: none;
  }
  .news-list .news-item .news-item-content a .btn-default {
    width: 100px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    color: #ffffff !important;
    background: #000000;
  }
  .news-list .news-item .news-item-content a .n-time span {
    font-size: 11px;
    color: #999999;
  }
  .news-details .sec-title {
    display: none;
  }
  .news-details .news-details-content .news-details-title {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    line-height: 22px;
  }
  .news-details .news-details-content .news-details-time {
    padding: 10px 0 15px;
  }
  .news-details .news-details-content .news-details-text {
    padding-top: 10px;
  }
  .news-details-pagination {
    display: block;
  }
  .news-details-pagination i {
    display: none;
  }
  .news-details-pagination span {
    display: inline;
  }

  .footer .sums-company {
    display: none;
  }
  .footer .footer-content .case-item li .btn-default {
    background: #f3f4f6;
  }
  .footer .footer-content {
    padding: 6px 16px 16px;
  }
  .footer .footer-content .col-sm-6 {
    padding-top: 20px;
    /* border-top: 1px solid #e8e9ec;
    margin-top: 24px; */
  }

  .footer .footer-content .case-item .case-item-arrow {
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .footer .footer-bottom {
    padding: 24px 0;
    line-height: 40px;
  }
  .footer .footer-bottom .line::after {
    display: none;
  }
  .footer .footer-bottom .company span {
    display: block;
  }
  .footer .footer-bottom .company span:first-child {
    margin-right: 0;
  }
  .sec-title {
    margin-bottom: 16px;
  }
  .sec-title .sec-image {
    height: 36px;
  }
  .sec-title .sec-logo img {
    width: 104px;
    height: 26px;
  }
  .sec-title h2 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
  }
  .sec-title h2 span {
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 1px;
  }
  .sec-bm {
    padding-bottom: 30px;
  }
  .more-btn {
    width: 120px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    margin-top: 0px;
  }
  .go-top.active {
    bottom: 30px;
  }
}
/* @media (max-width: 576px) {
  .banner-section .owl-stage-outer,
  .banner-section .owl-stage-outer .slide-item {
    height: 240px !important;
  }  
} */
