body {
  background: #fff;
  font-family: "Urbanist";
  font-size: 14px;
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.flex-bd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
}
.head {
  height: 38px;
  line-height: 38px;
  background: #f9bc3d;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.header {
  width: 100%;
  background: #fff;
  position: relative;
  padding: 15px 12%;
  box-sizing: border-box;
  height: 70px;
  top: 0;
  z-index: 99;
  transition: all ease 0.3s;
}
.header-blank {
  height: 80px;
  width: 100%;
  display: none;
}
.head-wrap {
  position: relative;
}
.header.fixed,
.mobile-header.fixed {
  position: fixed;
  border-bottom: 1px solid #eee;
}
.header.fixed + .header-blank {
  display: block;
}
.header .logo {
  float: left;
  line-height: 40px;
}

.header .logo img {
  height: 32px;
  vertical-align: middle;
}

.header .nav {
  position: absolute;
  left: 120px;
  right: 120px;
  text-align: center;
  height: 40px;
  line-height: 40px;
}

.header .nav-item {
  display: inline-block;
  margin: 0 25px;
  position: relative;
}

.header .nav-item a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
  font-weight: bold;
  font-size: 16px;
}

.header .nav-item a:hover {
  color: #f9bc3d;
}

.header .nav-item .drop-item {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  z-index: 10;
  width: 140px;
  margin-left: -80px;
  border-radius: 4px;
}

.header .nav-item:hover .drop-item {
  display: block;
}

.header .nav-item .drop-item a {
  display: block;
  padding: 8px 0;
  color: #333;
  line-height: 20px;
  font-size: 14px;
}

.header .nav-item .drop-item a:hover {
  color: #f9bc3d;
}

.header .search,
.header .btn {
  float: right;
  height: 40px;
  line-height: 40px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  margin-left: 30px;
}
.header .search i,
.header .btn i {
  font-size: 24px;
}
.header .btn .cartCount {
  position: absolute;
  width: auto;
  min-width: 8px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 100px;
  top: 0;
  right: -15px;
  background: #f9bc3d;
  color: #fff;
  font-size: 12px;
  padding: 0 5px;
}
.header.header-bor {
  border-bottom: 1px solid #eee;
  background: #fff;
  position: relative;
}
.header.header-bor.fixed {
  position: fixed;
}

.index-swiper {
  width: 100%;
  overflow: hidden;
}
.index-swiper .box {
  text-align: center;
  position: absolute;
  left: 10%;
  top: 50%;
  margin-top: -100px;
  width: 30%;
}
.index-swiper .box .subtitle {
  font-size: 56px;
}
.index-swiper .box .title {
  font-size: 24px;
  margin: 10px 0 20px 0;
}
.index-swiper .box .btn {
  background: #000;
  padding: 10px 0;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 90%;
  max-width: 450px;
}
.index-swiper .box .btn i {
  font-size: 12px;
  margin-left: 5px;
}
.index-swiper .box .btn:hover {
  background-color: #f9bc3d;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.image-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
}
.image-swiper .swiper-slide img {
  width: 100%;
}
.image-swiper .up-down {
  position: absolute;
  bottom: 10px;
  animation: slideDown 2s ease infinite;
  left: 50%;
  margin-left: -20px;
}
.image-swiper .up-down img {
  width: 40px;
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100%); /* Ã¤Â»Å½Ã©Â¡Â¶Ã©Æ'Â¨Ã¥Â¤â€"Ã©Æ'Â¨Ã¥Â¼â‚¬Ã¥Â§â€¹ */
  }
  100% {
    opacity: 1;
    transform: translateY(0%); /* Ã§Â§Â»Ã¥Å Â¨Ã¥Ë†Â°Ã¦Â­Â£Ã¥Â¸Â¸Ã¤Â½ÂÃ§Â½Â® */
  }
}

.index-title {
  font-size: 44px;
  text-align: center;
  color: #333;
  line-height: 1.2;
  position: relative;
  font-weight: bold;
}

.index-title .subtit {
  font-size: 16px;
  margin-top: 24px;
  display: block;
}

.index-product {
  overflow: hidden;
  margin: 50px 12%;
  background: #fff;
}

.index-cate {
  margin-top: 10px;
  position: relative;
}
.index-cate img {
  width: 100%;
}
.index-cate .text {
  margin-bottom: 10px;
}
.index-cate .text span {
  font-size: 28px;
  color: #fff;
  font-weight: bold;
}
.index-cate .btn {
  background: #f9bc3d;
  width: 90px;
  font-size: 14px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-weight: bold;
}

.index-cate .img {
  position: relative;
  overflow: hidden;
}
.index-cate a {
  display: block;
  overflow: hidden;
}
.index-cate .cover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px 30px;
  box-sizing: border-box;
  transition: all ease 0.5s;
}
.index-cate a:hover .cover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}
.index-new {
  padding: 50px 12%;
  background: #fefaf3;
}
.index-new .product-list {
  margin-top: 48px;
  position: relative;
}

.index-new .arrows {
}
.index-new .arrows .left {
  height: 30px;
  width: 30px;
  background: url(../images/arrow-left.png) no-repeat;
  background-size: 100%;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  left: -50px;
  z-index: 99;
  top: 50%;
  margin-top: -60px;
}
.index-new .arrows .right {
  height: 30px;
  width: 30px;
  background: url(../images/arrow-right.png) no-repeat;
  background-size: 100%;
  display: inline-block;
  margin-left: 15px;
  cursor: pointer;
  position: absolute;
  right: -50px;
  z-index: 99;
  top: 50%;
  margin-top: -60px;
}
.index-new .new-swiper {
  overflow: hidden;
}
.index-intro {
  position: relative;
}
.index-intro .title {
  font-size: 40px;
  font-weight: bold;
}
.index-intro .subtitle {
  font-size: 20px;
  color: #333;
  margin: 15px auto 0;
}
.index-intro .text {
  z-index: 2;
  background: #fff2e3;
  position: absolute;
  left: 0;
  width: 40%;
  height: 600px;
  display: flex;
  align-items: center;
}
.index-intro .text-wrap {
  padding: 0 40px;
}
.index-intro .bg {
  background-image: url(../images/intro-bg.jpg);
  height: 600px;
  margin-left: 40%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.index-intro a {
  font-size: 14px;
  display: inline-block;
  margin-top: 30px;
  font-weight: bold;
  background: #000;
  color: #fff;
  text-align: center;
  width: 140px;
  height: 42px;
  line-height: 42px;
}

.tabs {
  text-align: center;
  margin-bottom: 20px;
}
.tabs .item {
  display: none;
}
.tabs-head {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-size: 20px;
  color: #333;
  text-decoration: none;
  border-bottom: 2px solid #000;
  overflow: hidden;
  font-weight: bold;
}

.tabs-con {
}
.tabs-hd {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 48px;
}
.tabs-hd .item {
  display: inline-block;
  margin: 0 10px;
  background: #eee;
  padding: 5px 20px;
  cursor: pointer;
  font-weight: bold;
}
.tabs-hd .item.active {
  background: #000;
  color: #fff;
}
.product-list {
  overflow: hidden;
}

.product-item {
  cursor: pointer;
  overflow: hidden;
  width: 18.4%;
  float: left;
  margin-right: 2%;
  margin-bottom: 30px;
}
.product-item:nth-child(5n) {
  margin-right: 0;
}
.product-img img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  transition: all 0.3s ease;
  text-align: left;
}

.product-img {
  position: relative;
}
.product-img .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}
.product-img .tag span {
  font-size: 12px;
  background: #f9bc3d;
  padding: 0 8px;
  font-weight: bold;
  height: 20px;
  display: inline-block;
  line-height: 20px;
}
.product-name {
  font-size: 14px;
  color: #000;
  margin: 10px 0;
  font-weight: bold;
  height: 45px;
  text-overflow: ellipsis;
  overflow: hidden;
}

.product-desc {
  font-size: 14px;
  color: #333;
}

.tabs-more {
  text-align: center;
  margin: 30px 0 48px 0;
}

.tabs-more a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
  display: block;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  background: #000;
  font-weight: bold;
  width: 140px;
  height: 42px;
  line-height: 42px;
}
.tabs-more a span {
  position: relative;
  z-index: 1;
}
.tabs-more a span i {
  font-size: 12px;
}
.tabs-more a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #f9bc3d;
  transition: transform 0.3s ease;
  z-index: 0;
}
.tabs-more a:hover {
  color: #fff;
}
.tabs-more a:hover::before {
  transform: translateX(100%);
}

.index-about {
  overflow: hidden;
  background: #fff2e3;
}
.index-about .desc {
  width: 60%;
  margin: 40px auto;
  font-size: 20px;
  text-align: center;
}
.index-about-box {
  width: 100%;
  margin: 0 auto;
}

.index-about-box .left {
  float: left;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}
.index-about-box .left .box {
  padding: 0 40px;
}
.index-about-box .right {
  float: right;
  width: 60%;
  background-image: url("../img/index-about-bg.jpg");
  height: 600px;
  background-size: cover;
  background-position: center;
}

.index-about-box .right img {
  width: 100%;
  height: auto;
}

.index-about-box .title {
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 1.2;
  position: relative;
  font-weight: bold;
}

.index-about-box .con {
  font-size: 16px;
  line-height: 2;
}
.index-about-box .tabs-more,
.index-intro .tabs-more {
  text-align: left;
}
.index-about-box .tabs-more a,
.index-intro .tabs-more a {
  display: inline-block;
  text-align: center;
}
.footer .cols {
}
.footer .cols:nth-child(1) {
  width: 32%;
  margin: 20px 0;
}
.footer .cols:nth-child(2) {
  margin: 20px 5% 20px 13%;
  width: 15%;
  min-width: inherit;
}
.footer .cols:nth-child(3) {
}
.footer-about {
  font-size: 14px;
}

.menu-toggle {
  width: 35px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: fixed;
  top: 18px;
  right: 15px;
  z-index: 1000;
}

.bar {
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.mob-menu {
  position: fixed;
  z-index: 999;
  top: -100%;
  overflow-y: auto;
  width: 100vw;
  height: 100%;
  background: #fff;
  transition: top 0.5s ease;
  left: 0;
}
.mob-menu.active {
  top: 60px;
}
.mob-menu dl {
  display: block;
  border-top: #ddd 0.01rem solid;
  font-size: 18px;
  line-height: 40px;
}

.mob-menu dl dt a.active {
  background: #000;
  color: #fff;
}

.mob-menu dl dt a {
  position: relative;
  display: block;
  padding-right: 100px;
  color: #333;
  text-indent: 30px;
  line-height: 50px;
}

.mob-menu dl.sub-menu dt a::after {
  position: absolute;
  top: 50%;
  right: 5%;
  display: inline-block;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-color: #c8c8cd;
  border-style: solid;
  border-width: 3px 3px 0 0;
  content: " ";
  -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
}

.mob-menu dl.sub-menu.open dt a::after {
  border-color: #f9bc3d;
  -webkit-transform: matrix(0.71, 0.71, 0.71, -0.71, 0, 0);
  transform: matrix(0.71, 0.71, 0.71, -0.71, 0, 0);
}

.mob-menu dl.sub-menu.open dt a.active::after {
  border-color: #fff;
}

.mob-menu dl.sub-menu.open a {
  color: #f9bc3d;
  font-weight: 700;
}

.mob-menu dl.sub-menu.open a.active {
  color: #fff;
}

.mob-menu dl.sub-menu dd {
  padding: 0 30px;
  font-size: 0;
}

.mob-menu dl.sub-menu.open dd a {
  display: inline-block;
  margin: 8px 8px 0 0;
  padding: 0 15px;
  background: #f6f6f6;
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 34px;
  color: #121315;
}

.mob-menu dl.sub-menu.open dd a:nth-child(4n) {
  margin-right: 0;
}

.mob-menu dl dd {
  display: none;
}
.mobile-header {
  display: none;
}
.mobile-header .header-box {
  position: relative;
  z-index: 1000;
  background: #fff;
}
.mobile-header .logo img {
  height: 50px;
  vertical-align: middle;
}
.mobile-header .shopcart {
  position: absolute;
  right: 70px;
  top: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  z-index: 9999;
}
.mobile-header .shopcart i {
  font-size: 32px;
  color: #000;
}
.mobile-header .shopcart .cartCount {
  position: absolute;
  right: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  background: #f9bc3d;
  border-radius: 50%;
}
.fixed-bar {
  position: fixed;
  z-index: 3000;
  bottom: 60px;
  right: 30px;
  width: 50px;
  height: 160px;
}
.fixed-bar ul {
  position: relative;
}
.fixed-bar li {
  background: #000;
  line-height: 50px;
  width: 50px;
  font-size: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.36s ease;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}
.fixed-bar li:nth-child(2) {
  top: 55px;
}
.fixed-bar li:last-child {
  top: 110px;
}
.fixed-bar li i {
  width: 50px;
  font-size: 24px;
  color: #fff;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}
.fixed-bar li span {
  color: #fff;
  font-size: 16px;
  display: inline-block;
  padding-right: 2rem;
  vertical-align: middle;
}
.fixed-bar li a {
  color: #fff;
  font-size: 2.4rem;
  display: inline-block;
  padding-right: 2rem;
  vertical-align: middle;
}

.fixed-bar li i.bar-icon01 img {
  width: 2rem;
  vertical-align: middle;
}
.fixed-bar li i.bar-icon02 img {
  width: 2.6rem;
  vertical-align: middle;
}
.fixed-bar li:nth-child(1):hover {
  width: 200px;
}
.fixed-bar li:nth-child(2):hover {
  width: 240px;
}

.product-wrap {
  width: 1300px;
  margin: 50px auto;
}

.product-left {
  float: left;
  width: 240px;
}
.product-left .nav.active {
  top: 50px;
}
.product-left .nav .head {
  display: none;
}
.product-left .nav ul {
  list-style-type: none;
}
.product-left .nav li {
  list-style-type: none;
  border-top: 1px solid #eee;
}
.product-left .nav .fir {
  height: 50px;
  line-height: 50px;
  font-size: 16px;
}
.product-left .nav .fir .icon {
  float: right;
  cursor: pointer;
  font-size: 18px;
  transition: all ease 0.3s;
}
.product-left .nav li.active .fir .icon {
  transform: rotate(180deg);
}
.product-left .nav .fira {
  letter-spacing: 1px;
}
.product-left .nav .fira.active {
  font-weight: bold;
}
.product-left .nav li .drop {
  padding-bottom: 10px;
  display: none;
}

.product-left .nav li .drop a {
  display: block;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
}
.product-left .nav li .drop span {
  display: inline-block;
  border: 1px solid #ddd;
  width: 10px;
  height: 10px;
  margin-right: 4px;
  vertical-align: middle;
  margin-top: -2px;
}
.product-left .nav li .drop a.active {
  font-weight: bold;
}
.product-left .nav li .drop a.active span {
  border: 1px solid #000;
  background: #000;
}
.product-right {
  float: right;
  width: 1030px;
}

.product-right .product-item {
  width: 241px;
  float: left;
  margin-right: 22px;
  margin-bottom: 30px;
}
.product-right .product-item:nth-child(4n) {
  margin-right: 0;
}
.product-right .product-img {
}
.product-right .product-img img {
}
.product-right .product-info {
}
.product-right .product-name {
}
.product-right .product-desc {
}
.product-search {
  width: 100%;
  height: 40px;
  margin-bottom: 30px;
  position: relative;
  border: 1px solid #000;
}
.product-search .input {
  padding: 5px 50px 5px 10px;
  height: 30px;
}
.product-search input {
  outline: 0;
  border: 0;
  height: 30px;
  vertical-align: middle;
}
.product-search .button {
  background: #000;
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  cursor: pointer;
}
.product-search .icon {
  color: #fff;
}

.page-nav {
  text-align: center;
  padding: 50px 0;
}

.page-nav a {
  border: 1px solid #ccc;
  padding: 5px 15px;
  display: inline-block;
  color: #333;
  margin: 3px;
  font-size: 14px;
}

.page-nav a:hover {
  border: 1px solid #000;
  background: #000;
  color: #fff;
}

.detail-left {
  width: 500px;
  float: left;
}
.product-detail {
  width: 1300px;
  margin: 50px auto;
}
.detail-left .zoom-top,
.detail-left .zoom-thumbs {
  width: 100%;
  margin-bottom: 15px;
}
.detail-left .img-responsive {
  max-width: 100%;
  display: block;
}

.detail-left .zoom-thumbs .swiper-slide img {
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  transition: all 0.3s ease 0s;
  box-sizing: border-box;
}
.detail-left .zoom-thumbs .swiper-slide.swiper-slide-thumb-active img {
  border-color: #000;
}
.slider-nav-style-1 .swiper-buttons .swiper-button-next,
.slider-nav-style-1 .swiper-buttons .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 30px;
  height: 30px;
  line-height: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  margin: auto;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
  color: #212121;
  background-color: #fff;
  background-image: none;
  padding: 0;
}
.slider-nav-style-1 .swiper-buttons .swiper-button-next:hover,
.slider-nav-style-1 .swiper-buttons .swiper-button-prev:hover {
  background-color: #000;
  color: #fff;
}
.slider-nav-style-1:hover .swiper-button-next {
  right: 10px;
}
.slider-nav-style-1:hover .swiper-button-prev {
  left: 10px;
}
.slider-nav-style-1:hover .swiper-button-next,
.slider-nav-style-1:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}
.slider-nav-style-1 .swiper-button-next:after,
.slider-nav-style-1 .swiper-button-prev:after {
  font-size: 14px;
}
.detail-right {
  float: left;
  width: 760px;
  margin-left: 40px;
}
.detail-right .title {
  font-size: 28px;
  font-weight: bold;
}
.detail-right .desc .ceontent {
  display: none;
  line-height: 1.8;
}
.detail-right .desc .ceontent p,
.detail-right .desc .ceontent li {
  margin-bottom: 10px;
}
.detail-right .desc .arrow {
  transition: all ease 0.3s;
}
.detail-right .desc.active .arrow {
  transform: rotate(180deg);
}
.detail-right .desc {
  border-bottom: 1px solid #eee;
  margin: 15px 0;
}
.detail-right .h3 {
  font-size: 16px;
  cursor: pointer;
}
.detail-right .h3 span.tit {
  border-bottom: 2px solid #000;
  padding-bottom: 15px;
  display: inline-block;
  margin-bottom: -1px;
  width: 100px;
}
.detail-right .h3 span.arrow {
  float: right;
}
.detail-right .ceontent {
  font-size: 14px;
  padding: 20px 0;
}
.detail-right ul {
  list-style: disc outside;
  margin-left: 20px;
}
.detail-right .bot {
  margin-top: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.detail-right .share span {
  font-size: 14px;
}
.detail-right .share .social-info {
  display: inline-block;
}
.detail-right .share .social-info a {
  display: inline-block;
  margin-left: 10px;
}
.detail-right .share .social-info a:hover {
  color: #f9bc3d;
}
.detail-right .buy-btn {
  background: #f9bc3d;
  color: #000;
  width: 160px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.detail-right .buy-btn span {
  position: relative;
  z-index: 1;
}
.detail-right .buy-btn:hover {
  color: #fff;
}
.detail-right .buy-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: transform 0.3s ease;
  z-index: 0;
}
.detail-right .buy-btn:hover::before {
  transform: translateX(100%);
}
.detail-product-links {
  width: 1300px;
  margin: 100px auto;
}
.detail-product-links .title {
  text-align: center;
  border-bottom: 1px solid #eee;
  margin-bottom: 50px;
}
.detail-product-links .title span {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 2px solid #000;
  margin-bottom: -1px;
}
.detail-product-links .list {
}
.detail-product-links .list .product-item {
  width: 244px;
  float: left;
  margin-right: 20px;
}
.detail-product-links .list .product-item:last-child {
  margin-right: 0;
}
.page-banner {
  background-image: url(../img/pageBanner.jpg);
  background-size: cover;
  background-position: center;
  height: 250px;
  text-transform: uppercase;
}
.page-banner .wrap {
  width: 1300px;
  margin: 0 auto;
  line-height: 40px;
  padding-top: 180px;
}
.page-banner .wrap .left {
  font-size: 32px;
  float: left;
  color: #fff;
  font-weight: bold;
}
.page-banner .wrap .right {
  float: right;
  font-weight: bold;
  font-size: 16px;
}
.page-banner .wrap .right span {
  margin: 0 5px;
  padding: 5px 0;
  color: #fff;
}
.page-banner .wrap .right a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #f9bc3d;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
}
.page-banner .wrap .right a:hover:before {
  width: 100%;
}
.page-banner .wrap .right a {
  margin: 0 5px;
  padding: 5px 0;
  position: relative;
  color: #f9bc3d;
}
.page-about {
  margin: 50px auto;
  width: 1300px;
  line-height: 1.8;
  font-size: 16px;
}
.page-about p {
  margin: 15px 0;
}
.page-about h3 {
  margin: 15px 0;
}
.page-about ul {
  margin-left: 25px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.mob-navbtn {
  display: none;
}
.search-wrap {
}
.search-wrap .search {
  position: fixed;
  z-index: 10001;
  top: -50%;
  left: 50%;
  width: 600px;
  margin-left: -320px;
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 30px;
  transition: all ease 0.3s;
}
.search-wrap .search .icons {
  cursor: pointer;
}
.search-wrap .search .icons .icon {
  font-size: 24px;
}
.search-wrap .input {
  flex: 1;
  padding: 0 15px;
}
.search-wrap .input input {
  outline: 0;
  border: 0;
  width: 100%;
  font-size: 18px;
}
.search-wrap .wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: -1;
  transition: all ease 0.3s;
  opacity: 0;
}
.search-wrap.active .search {
  top: 10%;
}
.search-wrap.active .wrap {
  opacity: 1;
  z-index: 9999;
}
.search-res {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: right;
}
.swiper-button-next,
.swiper-button-prev {
  color: #ddd;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 5px;
  margin-top: -55px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 36px;
}

.email-wrap {
}
.email-wrap .search {
  position: fixed;
  z-index: 10001;
  top: -50%;
  left: 50%;
  width: 600px;
  margin-left: -300px;
  background: #fff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  transition: all ease 0.3s;
  padding: 40px 30px;
  box-sizing: border-box;
  margin-top: -116px;
  border-radius: 6px;
}
.email-wrap .search .icons {
  cursor: pointer;
}
.email-wrap .search .icons .icon {
  font-size: 24px;
}
.email-wrap .input {
  padding: 15px 15px;
  background: #f6f6f6;
}
.email-wrap .input input {
  outline: 0;
  border: 0;
  width: 100%;
  font-size: 18px;
  background: transparent;
  height: 32px;
  line-height: 32px;
}
.email-wrap .wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: -1;
  transition: all ease 0.3s;
  opacity: 0;
}
.email-wrap.active .search {
  top: 50%;
}
.email-wrap.active .wrap {
  opacity: 1;
  z-index: 9999;
}
.email-wrap .btn {
  background: #000;
  height: 50px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  width: 200px;
  margin: 40px auto 0;
  cursor: pointer;
  font-size: 14px;
}
.footer-pic {
  position: relative;
}
.footer-pic img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}
.footer-box {
  position: absolute;
  left: 0;
  top: 0;
}
.footer-box .tips {
  font-size: 18px;
  font-weight: bold;
}
.footer-box .input {
  background: #fff;
}
.footer-box .input input {
}
.footer-box .btn {
}
@media (max-width: 1300px) {
  .header {
    padding: 15px 5%;
  }
  .index-new {
    padding: 50px 5%;
  }
  .index-product {
    margin: 50px 5%;
  }
  .index-about {
    padding: 80px 5%;
  }
  .footer .wrap {
    margin: 0 5%;
  }
  .index-about-box .right,
  .index-about-box .left {
    height: 450px;
  }
  .index-intro .bg,
  .index-intro .text {
    height: 500px;
  }
}
@media (max-width: 930px) {
  .header {
    display: none;
  }
  .mobile-header .logo img {
    height: 30px;
  }
  .mobile-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background: #fff;
    padding: 15px 0 15px 15px;
    box-sizing: border-box;
  }
  .index-swiper .box {
    top: 0;

    left: 0;

    width: 100%;

    padding: 15px;

    box-sizing: border-box;
  }
  .index-swiper .box .title {
    font-size: 16px;
  }
  .index-swiper .box .subtitle {
    margin-top: 50%;
    padding: 0 15px;
    font-size: 30px;
  }
  .index-swiper .box .btn {
    font-size: 12px;
    width: 40%;
  }
  .index-new .product-list {
    margin-top: 30px;
  }
  .index-about-box .left {
    width: 100%;
    height: auto;
  }
  .index-about-box .right {
    width: 100%;
    height: 300px;
  }
  .index-about .desc {
    width: 100%;
    font-size: 16px;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .index-about-box .con {
    font-size: 14px;
  }
  .index-about-box .left .box {
    padding: 15px 0;
  }
  .footer .cols {
    width: 100% !important;
    margin: 20px 0 !important;
  }
  .product-name {
    font-size: 14px;
  }
  .index-title {
    font-size: 24px;
  }
  .index-title .subtit {
    font-size: 14px;
    margin-top: 15px;
  }
  .fixed-bar {
    display: none;
  }
  .product-left {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
  }
  .product-right {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .product-left .nav {
    display: block;
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999;
    padding: 15px;
    box-sizing: border-box;
    top: -100%;
    transition: all ease 0.3s;
  }
  .header-blank {
    height: 50px;
  }
  .page-banner .wrap {
    width: 100%;
    padding-top: 80px;
  }
  .page-banner {
    padding: 20px 12px;
    height: 120px;
    margin-top: 60px;
  }
  .page-banner .wrap .left {
    font-size: 18px;
  }
  .page-banner .wrap .right {
    font-size: 14px;
  }
  .page-banner .wrap .right span {
    margin: 0;
  }
  .product-wrap {
    margin: 30px auto;
    width: 100%;
  }
  .product-right .product-item {
    width: 47%;
    margin-right: 6%;
    margin-bottom: 10px;
  }
  .product-right .product-item:nth-child(even) {
    margin-right: 0;
  }
  .product-search {
    flex: 1;
  }
  .mob-navbtn {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    text-align: center;
    line-height: 40px;
    color: #000;
    margin-left: 15px;
  }
  .product-left .nav .head {
    display: flex;
    padding-bottom: 15px;
    align-items: center;
    justify-content: center;
    height: initial;
    line-height: initial;
    background: transparent;
    text-align: initial;
    color: initial;
    font-size: initial;
  }
  .product-left .nav .head .left {
    font-size: 20px;
    font-weight: bold;
    flex: 1;
  }
  .product-left .nav .head .right {
  }
  .product-left .nav .head .right .icon {
    font-size: 20px;
  }
  .product-left .nav .head .right .close-icon {
    cursor: pointer;
  }
  .product-detail {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    margin: 30px auto;
  }
  .detail-left {
    width: 100%;
  }
  .detail-right {
    margin-left: 0;
    width: 100%;
  }
  .detail-right .title {
    font-size: 24px;
  }
  .detail-product-links {
    width: 100%;
    margin: 50px auto;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .detail-product-links .list .product-item {
    width: 47%;
    margin-right: 6%;
    margin-bottom: 10px;
  }
  .detail-product-links .list .product-item:nth-child(even) {
    margin-right: 0;
  }
  .page-about {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .index-cate {
    margin: 15px;
    overflow: hidden;
  }
  .index-cate a {
    width: 100%;
    margin-bottom: 15px;
  }
  .index-cate a:last-child {
    margin-right: 0;
  }
  .index-cate .text span {
    font-size: 18px;
  }
  .index-cate .swiper-wrapper {
    display: block;
  }
  .index-cate .swiper-button-prev,
  .index-cate .swiper-button-next {
    display: none;
  }
  .index-new {
    margin: 30px 0;
    padding: 30px 15px;
  }
  .index-title .arrows {
    line-height: 36px;
  }
  .index-title .arrows .left,
  .index-title .arrows .right {
    width: 24px;
  }
  .index-new .product-item:last-child {
    margin-right: 0;
  }
  .index-intro .title {
    font-size: 24px;
  }
  .index-intro .subtitle {
    font-size: 14px;
    width: 90%;
  }
  .index-intro .bg {
    margin: 0;
    height: 260px;
  }
  .index-intro .text {
    position: relative;

    width: 100%;

    height: 360px;
  }
  .index-product {
    margin: 50px 15px;
  }
  .product-item {
    width: 48%;
    margin-right: 4% !important;
  }
  .product-item:nth-child(even) {
    margin-right: 0 !important;
  }
  .index-about {
    padding: 30px 15px;
  }
  .index-about-box .title {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .head {
    display: none;
  }
  .tabs-more {
    margin: 15px 0 30px 0;
  }
  .footer-pic img {
    height: initial;
    object-fit: initial;
  }
  .footer {
    padding: 30px 0;
  }
}
.shopcart-list {
  padding: 50px 0;
}
.shopcart-list .wrap {
  width: 1300px;
  margin: 0 auto;
  display: flex;
}

.shopcart-list .cart-list {
  margin-bottom: 50px;
  flex: 1;
}

.shopcart-list .cart-header {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #d9d9d9;
  font-weight: bold;
}

.shopcart-list .cart-header .product {
  flex: 2;
}

.shopcart-list .cart-header .quantity,
.shopcart-list .cart-header .action {
  flex: 1;
  text-align: center;
}

.shopcart-list .cart-item {
  display: flex;
  padding: 20px 0;
  align-items: center;
}

.shopcart-list .cart-item .product {
  flex: 2;
  display: flex;
}

.shopcart-list .cart-item .product img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 20px;
}

.shopcart-list .cart-item .product .name {
  font-weight: bold;
  display: block;
}

.shopcart-list .cart-item .quantity {
  flex: 1;
  text-align: center;
}

.shopcart-list .cart-item .quantity .qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  height: 32px;
}

.shopcart-list .cart-item .quantity button {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.shopcart-list .cart-item .quantity .icon {
  font-size: 14px;
}

.shopcart-list .cart-item .quantity input {
  width: 50px;
  height: 32px;
  border: none;
  text-align: center;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 0;
  margin: 0;
  font-size: 14px;
  -moz-appearance: textfield;
  appearance: textfield;
  line-height: 32px;
}

.shopcart-list .cart-item .quantity input::-webkit-outer-spin-button,
.shopcart-list .cart-item .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.shopcart-list .cart-item .action {
  flex: 1;
  text-align: center;
}

.shopcart-list .cart-item .remove-btn {
  border: none;
  background: none;
  color: #666;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
  -webkit-text-decoration-color: #666;
  text-decoration-color: #666;
  text-underline-offset: 4px;
}
.shopcart-list .cart-item .remove-btn:hover {
  color: #000;
  -webkit-text-decoration-color: #000;
  text-decoration-color: #000;
}

.shopcart-list .cart-empty {
  text-align: center;
  padding: 50px 0;
  display: none;
}

.shopcart-list .cart-empty p {
  font-size: 24px;
  color: #999;
}
.shopcart-list .cart-empty .btn {
  margin-top: 30px;
  display: inline-block;
  text-decoration: underline;
  -webkit-text-decoration-color: #666;
  text-decoration-color: #666;
  text-underline-offset: 4px;
}
.shopcart-list .cart-empty .btn:hover {
  color: #000;
  -webkit-text-decoration-color: #000;
  text-decoration-color: #000;
}
.shopcart-list .cart-form {
  background: #f6f6f6;
  margin-left: 50px;
  padding: 50px;
  max-width: 300px;
  max-height: 360px;
}

.shopcart-list .cart-form h3 {
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.shopcart-list .form-group {
  margin-bottom: 20px;
}
.shopcart-list .form-group .form-label {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin-bottom: 5px;
}
.shopcart-list .form-group input,
.shopcart-list .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.shopcart-list .form-group textarea {
  height: 100px;
  resize: vertical;
}

.shopcart-list .submit-btn {
  width: 100%;
  padding: 15px;
  background: #f9bc3d;
  border: none;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shopcart-list .submit-btn:hover {
  background: #000;
  color: #fff;
}
.shopcart-list .tips {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
.shopcart-list .cart-item .mobile-btn {
  display: none;
}
@media (max-width: 930px) {
  .shopcart-list .wrap {
    width: 100%;
    flex-direction: column;
  }
  .shopcart-list .cart-list {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .shopcart-list .cart-form {
    max-width: 100%;
    padding: 30px;
    margin: 0 30px;
  }
  .shopcart .wrap {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .shopcart-list .cart-item .product img {
    width: 85px;
    height: 85px;
  }

  .shopcart-list .cart-item .product .name {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .shopcart-list .cart-header .quantity,
  .shopcart-list .cart-header .action {
    display: none;
  }

  .shopcart-list .cart-item .quantity,
  .shopcart-list .cart-item .action {
    display: none;
  }
  .shopcart-list .cart-item .mobile-btn {
    display: flex;
  }
  .shopcart-list .cart-item .mobile-btn .quantity,
  .shopcart-list .cart-item .mobile-btn .action {
    display: block;
    flex: none;
  }
  .shopcart-list .cart-item .mobile-btn .action {
    flex: 1;
    text-align: right;
  }
  .shopcart-list .cart-item .quantity .qty-control {
    height: 24px;
  }
  .shopcart-list .cart-item .quantity button {
    height: 24px;
    width: 24px;
  }
  .shopcart-list .cart-item .quantity input {
    height: 24px;
  }
}
