::-webkit-scrollbar {
  /* 垂直滚动条宽度，水平滚动条用height */
  width: 8px;
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: #fff;
  /* 轨道背景色 */
  border-radius: 4px;
  /* 轨道圆角，和滑块一致更美观 */
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  opacity: .8;
  /* 滑块默认颜色 */
  border-radius: 4px;
  /* 滑块圆角，柔化边缘 */
}

/* 滑块hover状态：高亮 */
::-webkit-scrollbar-thumb:hover {
  background: var(--theme-color);
  /* hover时加深颜色 */
  cursor: pointer;
  /* 鼠标移上显示手型 */
}

/* 分页样式 */
.page-pagination {
  text-align: center;
  width: 100%;
}

.page-pagination .pagination {
  display: inline-block;
  padding-left: 0;
  margin: 30px 0;
  border-radius: 8px;
}

.page-pagination .pagination>li {
  display: inline;
}

.page-pagination .pagination>li>a,
.page-pagination .pagination>li>span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: var(--theme-color);
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.page-pagination .pagination>li:first-child>a,
.page-pagination .pagination>li:first-child>span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.page-pagination .pagination>li:last-child>a,
.page-pagination .pagination>li:last-child>span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.page-pagination .pagination>li>a:focus,
.page-pagination .pagination>li>a:hover,
.page-pagination .pagination>li>span:focus,
.page-pagination .pagination>li>span:hover {
  z-index: 2;
  color: var(--theme-color);
  background-color: #eee;
  border-color: #ddd;
}

.page-pagination .pagination>.active>a,
.page-pagination .pagination>.active>a:focus,
.page-pagination .pagination>.active>a:hover,
.page-pagination .pagination>.active>span,
.page-pagination .pagination>.active>span:focus,
.page-pagination .pagination>.active>span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.page-pagination .pagination>.disabled>a,
.page-pagination .pagination>.disabled>a:focus,
.page-pagination .pagination>.disabled>a:hover,
.page-pagination .pagination>.disabled>span,
.page-pagination .pagination>.disabled>span:focus,
.page-pagination .pagination>.disabled>span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.page-pagination .pagination .jumpto {
  display: inline-block;
  margin-left: 2px;
}

.page-pagination .pagination .jumpto input {
  padding: 6px;
  /* line-height: 1.42857143; */
  color: #2c3e50;
  background-color: #fff;
  border: 1px solid #ddd;
  float: left;
  height: 34px;
}

.page-pagination .pagination .jumpto .page_number {
  width: 45px;
  margin-right: -1px;
}

/* 详情页的上一页下一页 */
.next-prev {
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #eee;
}

.next-prev .next-prev-left,
.next-prev .next-prev-right {
  font-size: 14px;
  color: #666;
}

.next-prev .next-prev-right {
  text-align: right;
}

.block .layout .next-prev .next-prev-left a,
.block .layout .next-prev .next-prev-right a {
  font-weight: normal;
}

.next-prev a {
  color: var(--theme-color);
}

a {
  text-decoration: none !important;
}

/* ================================ nav.html START ================================ */
.nav-right {
  display: flex;
  align-items: center;
}

.nav-right li.language img {
  width: 20px;
}

.nav-right li.language>img {
  margin-top: -2px;
  margin-right: 5px;
}

/* 绍兴越艺坊扇业有限公司定制 */
/* 2025.12.11 logo放导航左侧，这个可以隐藏了 */
.header-top {
  display: none;
  height: 80px;
}

.logo {
  height: 80px;
  line-height: 80px;
  top: -80px;
}

.logo img {
  height: 90%;
}

/* 2025.12.11 logo放导航左侧，这个可以隐藏了 */
#body,
.banner {
  margin-top: 100px;
}

#head nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#head .nav-left {
  flex: 1;
  display: flex;
  align-items: center;
  margin-left: 4%;
  height: 100%;
}

#head .nav-left .logo1 {
  min-width: 190px;
  height: 100%;
  text-align: center;
}

#head .nav-left .logo1 a {
  display: flex;
  align-items: center;
  height: 100%;
}

#head .nav-left .logo1 img {
  /* height: 90%; */
  margin-right: 10px;
}

@media (max-width: 991px) {

  #body,
  .banner {
    margin-top: 60px;
  }

  #head .nav-left {
    margin-left: 2%;
  }

  #head .nav-left .logo1 {
    min-width: 30%;
    max-width: 70%;
    height: 100%;
  }

  #head .nav-left .logo1 img {
    height: 98%;
    object-fit: contain;
  }
}

@media (min-width: 992px) {
  .nav li {
    padding: 0 10px;
  }
}

.nav .submenu2 {
  /* 移除 overflow 限制，允许三级菜单正常显示 */
}

.c-banner video,
.c-banner img {
  width: 100%;
}

/* ================================ nav.html END ================================ */



/* ================================ footer.html START ================================ */
.footer2 {
  background-color: rgba(0, 0, 0, .3);
}

footer .footer-up ul.shm {
  margin-top: 0 !important;
  display: -webkit-box;
  display: flex;
}

footer .footer-up ul.shm li,
footer .footer-up ul.shm li a {
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* footer .footer-up ul.shm li a path:hover {
    fill: #fff;
} */

.contact-foot>li {
  display: -webkit-box;
  display: flex;
  align-items: center;
}

/*
.icon-whatsapp.white {
    color: #fff;
} */

footer .fa-map-marker,
footer .fa-phone {
  font-size: 16px;
}

/* ================================ footer.html END ================================ */



/* ================================ list_video.html START ================================ */
.block .class-content .news-item .news-img {
  position: relative;
}

.products-list ul li img {
  width: 100%;
}

.block .classes .class-info p {
  margin-bottom: 10px;
}

.block .class-content .news-item .news-info p {
  text-align: left;
}

/* list_product.html */
.plistdeul {
  margin-top: 20px;
  padding-top: 20px;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  border-top: solid 1px #f4f4f4;
}

.block .layout .classes a,
.block .layout .product-right .opt a {
  font-weight: 600;
}

/* list_xxx page inner a bold */
.block .layout .classes a,
.block .layout .product-right .shown_products_b a {
  font-weight: 600;
}

/* search.html */
.block.search-block {
  padding: 110px 40px 0;
}

.block.search-block .search-empty {
  width: 100%;
  text-align: center;
  color: #999;
}

@media (max-width:991px) {
  .block.search-block {
    padding: 60px 0 0 0;
  }
}

/* ================================ list_video.html END ================================ */



/* ================================ index.html START ================================ */
.index-news figure figcaption {
  line-height: 30px;
}

.c-section .wp_media_bg {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media(min-width: 992px) {
  .c-section .wp-content {
    position: unset;
    width: 50%;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
    padding: 30px 0;
  }

  .c-section .wp-content.about-box {
    padding-right: 100px;
  }
}

@media (max-width: 991px) {
  .c-section .wp-content.image-box {
    display: none;
  }

  .section .index-news a {
    display: block;
    margin: 0 3px;
  }

  .section .index-news figure {
    padding: 15px 10px;
  }
}



/* why choose us */
.area-background-n4m-90 {
  position: relative;
  overflow: hidden
}

.area-background-n4m-90.zone {
  padding: 60px 40px 0 40px;
  margin-bottom: 80px
}

@media(max-width: 768px) {
  .area-background-n4m-90.zone {
    padding: 30px 25px 0 25px;
    margin-bottom: 40px
  }
}

.area-background-n4m-90.zone.lastaz {
  margin-bottom: 0 !important;
  padding-top: 0 !important
}

.area-background-n4m-90.zone>.area-background-cont {
  z-index: -20
}

.area-background-n4m-90.widget>.area-background-cont {
  z-index: -19
}

.area-background-n4m-90>.area-background-cont {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f2f2f2
}

.vertical-space-n101m-1 {
  display: block;
  padding: 0;
  margin: 0;
  background: transparent
}

.vertical-space-n101m-1 .blk {
  display: none;
  width: 100%;
  padding: 0;
  margin: 0
}

.vertical-space-n101m-1 .blk b {
  display: none
}

@media(max-width: 768px) {
  .vertical-space-n101m-1 .xs {
    display: block
  }
}

@media(min-width: 768px) and (max-width:992px) {
  .vertical-space-n101m-1 .sm {
    display: block
  }
}

@media(min-width: 992px) and (max-width:1200px) {
  .vertical-space-n101m-1 .md {
    display: block
  }
}

@media(min-width: 1200px) {
  .vertical-space-n101m-1 .lg {
    display: block
  }
}

.headline-n101m-67 {
  margin-bottom: 40px
}

.headline-n101m-67 h2 {
  margin: 0;
  line-height: 1.2;
  color: #002d57;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  font-size: 4rem
}

@media(max-width: 768px) {
  .headline-n101m-67 {
    margin-bottom: 20px
  }

  .headline-n101m-67 h2 {
    font-size: 2.6rem
  }
}

@media(min-width: 768px) {
  .headline-n101m-67 h2 {
    font-weight: bold;
    color: #002d57;
    text-transform: capitalize;
    text-align: center;
    padding-left: -15px;
    margin-left: -15;
    font-size: 3.2rem
  }
}

.product-list-n123m-16 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row
}

.product-list-n123m-16 .main-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin-bottom: 15px
}

.product-list-n123m-16 .text-box {
  width: 100%;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  flex-direction: column;
  padding: 0 5px
}

.product-list-n123m-16 .title {
  color: #343434;
  text-align: left;
  font-weight: bold;
  line-height: 1.3;
  margin: 5px 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  font-size: 1.8rem
}

.product-list-n123m-16 .desc {
  text-align: left;
  color: #505050;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  display: -webkit-box;
  font-size: 1.4rem
}

.product-list-n123m-16 .mbtn {
  margin: 5px 0;
  color: #002d57;
  padding: 5px 15px;
  border-radius: 0;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  font-size: 1.4rem
}

.product-list-n123m-16 .mbtn i {
  margin-left: 2px
}

.product-list-n123m-16 .mbtn:hover {
  color: #fff;
  background: #002d57
}

.product-list-n123m-16 .imgs-box {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 100%
}

.product-list-n123m-16 .imgs-box .square-cont {
  position: absolute;
  width: 100%;
  height: 100%
}

.product-list-n123m-16 .imgs-box .back-img>span {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  text-align: center
}

.product-list-n123m-16 .imgs-box .back-img>span>img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto
}

.product-list-n123m-16 .imgs-box .back-img img {
  pointer-events: none
}

.product-list-n123m-16 .multi-img {
  display: none
}

@media(min-width: 768px) {
  .product-list-n123m-16 {
    margin-bottom: 60px
  }

  .product-list-n123m-16 .text-box {
    align-items: flex-start
  }

  .product-list-n123m-16 .desc {
    -webkit-line-clamp: 2
  }

  .product-list-n123m-16 .title {
    text-align: center
  }

  .product-list-n123m-16 .imgs-box {
    display: none;
    width: 100%;
    padding-bottom: 100%
  }

  .product-list-n123m-16 .imgs-box .back-img>span>img {
    max-width: 50%;
    max-height: 50%
  }

  .product-list-n123m-16 .c-fbed7 {
    width: 50px;
    display: inline-block
  }
}

@media(max-width: 768px) {
  .product-list-n123m-16 {
    margin-bottom: 30px
  }

  .product-list-n123m-16 .main-box {
    flex-direction: column;
    padding: 10px 10px 5px 10px;
    position: initial
  }

  .product-list-n123m-16 .text-box {
    width: 100%;
    padding: 0
  }

  .product-list-n123m-16 .title {
    margin: 0 0 5px 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    font-size: 1.6rem
  }

  .product-list-n123m-16 .desc {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    font-size: 1.4rem
  }

  .product-list-n123m-16 .mbtn {
    margin: 5px 0 0 0
  }

  .product-list-n123m-16 .imgs-box {
    display: none
  }
}

/* 合作伙伴 */

.headline-n118m-74 {
  margin-bottom: 40px
}

.headline-n118m-74 h2 {
  margin: 0;
  line-height: 1;
  color: #002d57;
  font-weight: normal;
  text-align: left;
  text-transform: uppercase;
  font-size: 4rem
}

@media(max-width: 1440px) {
  .headline-n118m-74 {
    margin-bottom: 25px
  }

  .headline-n118m-74 h2 {
    font-size: 3.2rem
  }
}

@media(max-width: 768px) {
  .headline-n118m-74 {
    margin-bottom: 20px
  }

  .headline-n118m-74 h2 {
    text-align: center;
    font-size: 2rem
  }
}

@media(min-width: 768px) {
  .headline-n118m-74 h2 {
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    font-size: 3.2rem
  }
}

.paragraph-n118m-8 {
  overflow: hidden;
  padding: 5px;
  margin-bottom: 60px
}

.paragraph-n118m-8 .text-content p {
  color: #343434;
  line-height: 1.6;
  letter-spacing: 1px;
  text-align: left;
  font-size: 1.6rem
}

.paragraph-n118m-8 .text-content table,
.paragraph-n118m-8 .text-content td,
.paragraph-n118m-8 .text-content p,
.paragraph-n118m-8 .text-content img,
.paragraph-n118m-8 .text-content video {
  max-width: 100%
}

.paragraph-n118m-8 .text-content .btn {
  position: relative;
  cursor: pointer;
  text-align: center;
  height: 40px;
  line-height: 40px;
  max-width: 150px;
  padding: 0 25px;
  display: block;
  text-transform: uppercase;
  color: #fff;
  background: #002d57;
  text-decoration: none;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  font-size: 1.6rem
}

.paragraph-n118m-8 .text-content .btn span {
  margin: 0 6px 0 0
}

.paragraph-n118m-8 .text-content .btn i {
  display: inline-block;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s
}

.paragraph-n118m-8 .text-content .btn:before {
  background: #002d57;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 0;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s
}

.paragraph-n118m-8 .text-content .btn:hover {
  background: #022f59
}

.paragraph-n118m-8 .text-content .btn:hover i {
  -ms-transform: translate(25px, 0);
  -moz-transform: translate(25px, 0);
  -webkit-transform: translate(25px, 0);
  -o-transform: translate(25px, 0);
  transform: translate(25px, 0)
}

.paragraph-n118m-8 .text-content .btn:hover:before {
  width: 38px;
  opacity: 1;
  background: #001933
}

@media(max-width: 1440px) {
  .paragraph-n118m-8 .text-content p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    display: -webkit-box
  }

  .paragraph-n118m-8 .text-content table,
  .paragraph-n118m-8 .text-content td,
  .paragraph-n118m-8 .text-content p,
  .paragraph-n118m-8 .text-content img,
  .paragraph-n118m-8 .text-content video {
    text-align: justify
  }
}

@media(max-width: 768px) {
  .paragraph-n118m-8 {
    margin-bottom: 40px
  }

  .paragraph-n118m-8 .text-content p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
    display: -webkit-box;
    margin: 0 25px;
    /*不知道为什么文本会被截断*/
  }

  .paragraph-n118m-8 .text-content .btn {
    margin: 0 auto
  }
}

@media(min-width: 768px) {

  .paragraph-n118m-8 .text-content table,
  .paragraph-n118m-8 .text-content td,
  .paragraph-n118m-8 .text-content p,
  .paragraph-n118m-8 .text-content img,
  .paragraph-n118m-8 .text-content video {
    text-align: left
  }

  .paragraph-n118m-8 .text-content .btn {
    display: none
  }

  .paragraph-n118m-8 .text-content div img {
    max-width: 50%
  }

  .paragraph-n118m-8 .text-content div p {
    color: #888;
    font-size: 1.6rem
  }

  .paragraph-n118m-8 .text-content table tbody tr td {
    color: #888;
    font-size: 1.6rem
  }
}

.product-list-n123m-18 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row
}

.product-list-n123m-18 .main-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin-bottom: 15px
}

.product-list-n123m-18 .text-box {
  width: 100%;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  flex-direction: column;
  padding: 0 5px
}

.product-list-n123m-18 .title {
  color: #343434;
  text-align: left;
  font-weight: bold;
  line-height: 1.3;
  margin: 5px 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  font-size: 1.8rem
}

.product-list-n123m-18 .desc {
  text-align: left;
  color: #505050;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  display: -webkit-box;
  font-size: 1.4rem
}

.product-list-n123m-18 .mbtn {
  margin: 5px 0;
  color: #002d57;
  padding: 5px 15px;
  border-radius: 0;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  font-size: 1.4rem
}

.product-list-n123m-18 .mbtn i {
  margin-left: 2px
}

.product-list-n123m-18 .mbtn:hover {
  color: #fff;
  background: #002d57
}

.product-list-n123m-18 .imgs-box {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 100%
}

.product-list-n123m-18 .imgs-box .square-cont {
  position: absolute;
  width: 100%;
  height: 100%
}

.product-list-n123m-18 .imgs-box .back-img>span {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  text-align: center
}

.product-list-n123m-18 .imgs-box .back-img>span>img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto
}

.product-list-n123m-18 .imgs-box .back-img img {
  pointer-events: none
}

.product-list-n123m-18 .multi-img {
  display: none
}

@media(min-width: 768px) {
  .product-list-n123m-18 {
    margin-bottom: 60px
  }

  .product-list-n123m-18 .text-box {
    align-items: flex-start
  }

  .product-list-n123m-18 .main-box {
    margin-left: 0;
    padding-right: 20px;
    align-items: flex-start;
    text-align: left;
    justify-content: initial;
    flex-direction: column
  }

  .product-list-n123m-18 .imgs-box {
    padding-bottom: 75%
  }

  .product-list-n123m-18 .mbtn {
    padding-right: 10px;
    padding-left: 0
  }

  .product-list-n123m-18 .desc {
    -webkit-line-clamp: 4
  }
}

@media(max-width: 768px) {
  .product-list-n123m-18 {
    margin-bottom: 30px
  }

  .product-list-n123m-18 .main-box {
    flex-direction: column;
    padding: 10px 10px 5px 10px;
    position: initial
  }

  .product-list-n123m-18 .text-box {
    width: 100%;
    padding: 0
  }

  .product-list-n123m-18 .title {
    margin: 0 0 5px 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    font-size: 1.6rem
  }

  .product-list-n123m-18 .desc {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    font-size: 1.4rem;
    margin: 0 20px;
    /*不知道为啥文字会被截断*/
  }

  .product-list-n123m-18 .mbtn {
    margin: 5px 0 0 0
  }
}

@media (max-width: 767px) {
  .area-background-n4m-90.container {
    padding: 0;
    width: 94%;
  }
}

/* ================================ index.html END ================================ */


/* ================================ contact-way 联系方式修复 START ================================ */
.contact-way ul li {
  display: flex;
  align-items: flex-start;
}

.contact-way ul li .col-lg-5 {
  flex-shrink: 0;
  width: auto;
  float: none;
  width: 100px;
  height: 100px;
}

.contact-way ul li:nth-child(1) .col-lg-5 {
  background: url('../images/contact-icon01.png') no-repeat center center;
  background-size: contain;
}

.contact-way ul li:nth-child(2) .col-lg-5 {
  background: url('../images/contact-icon02.png') no-repeat center center;
  background-size: contain;
}

.contact-way ul li:nth-child(3) .col-lg-5 {
  background: url('../images/contact-icon03.png') no-repeat center center;
  background-size: contain;
}

.contact-way ul li .col-lg-7 {
  flex: 1;
  width: auto;
  float: none;
  display: flex;
  align-items: center;
  /* 垂直居中 */
}

.contact-way ul li .col-lg-7 p {
  text-align: left;
  margin: 0;
  word-break: break-all;
  /* 在任意字符处换行，而不是连字符处 */
  hyphens: none;
  /* 禁止自动断字 */
}

@media (max-width: 991px) {
  .contact-way ul li {
    flex-direction: column;
    width: 80%;
  }
}

/* ================================ contact-way 联系方式修复 END ================================ */



/* 永荣定制 */
.co-8 {
  background-color: rgb(245, 235, 225);
}

.co-8 nav,
.co-8 footer {
  background: rgb(217, 200, 182, 1);
}

.co-8 .block .product-left .lefttitle,
.co-8 .shown_products_a_right h4 a,
.co-8 .shown_products_b_a .descr {
  background-color: rgb(235, 223, 210);
}

/* 一级导航 二级导航 底部文字图标 产品详情页大标题 字体颜色改为 #00804F */
.co-8 .nav_en.site_383055>li>a,
.co-8 .nav_en.site_383055 .submenu li a,
.co-8 footer .tit,
.co-8 footer ul li a,
.co-8 footer ul li,
.co-8 .block .product-left .lefttitle,
.co-8 .shown_products_a_right h4 a,
.co-8 .shown_products_b_a .descr {
  color: #00804F !important;
}

/* 鼠标悬停时一级导航字体颜色改为白色 */
.co-8 .nav_en.site_383055>li>a:hover,
.co-8 .emali a,
.co-8 .phone a,
.co-8 .gz {
  color: #fff !important;
}

/* 二级导航鼠标悬停时字体颜色保留黑色 */
.co-8 .nav_en.site_383055 .submenu li a:hover {
  color: #000 !important;
}

.co-8 .nav_en.site_383055>li>a:after,
.co-8 .nav_en.site_383055>li>a:hover:after {
  background-color: #fff;
}

.co-8 .emali i,
.co-8 .phone i {
  color: rgba(14, 97, 225, 1);
}

.co-8 .block .class-content .news-item .news-info .news-btn {
  background-color: rgba(14, 97, 225, 1);
}

.co-8 .block .class-content .news-item .news-info .news-btn:hover {
  background-color: #303030;
}


/* 焱池汽车科技 */
body.co-48 {
  font-family: Microsoft YaHei, Helvetica, Arial, sans-serif;
}

.co-48 #head .nav {
  font-family: Microsoft YaHei, Helvetica, Arial, sans-serif;
  font-weight: 600;
}

.co-48 .nav-right .horizon {
  display: none;
}

/* .co-48 .block.news-block .classes h1,
.co-48 .block.news-detail-block .classes h1 {
    text-align: left;
} */
.co-48 .block.detail_page .classes h1 {
  text-align: left;
  font-size: 30px;
}

.co-48 footer ul li a,
.co-48 .footer-down,
.co-48 footer .tit,
.co-48 footer a:hover,
.co-48 footer .fa,
.co-48 footer ul li {
  /* color: #000; */
  color: #fff;
}

.co-48 .Tiktok svg path {
  fill: #fff;
}

/* .co-48 footer .footer-up .col-md-7 ul.shm li a.Tiktok path {
    fill: #000;
} */

.co-48 .contact-way ul li:nth-child(1) .col-lg-5 {
  background-image: url('../images/co-48-contact-icon01.png');
}

.co-48 .contact-way ul li:nth-child(2) .col-lg-5 {
  background-image: url('../images/co-48-contact-icon02.png');
}

.co-48 .contact-way ul li:nth-child(3) .col-lg-5 {
  background-image: url('../images/co-48-contact-icon03.png');
}

@media (min-width: 992px) {
  .co-48 .nav li {
    padding: 0 8px;
  }

  /* .co-48 .nav>ul>li:last-child .submenu2 {
      left: unset;
      right: 100%;
  } */

  .co-48 .block.news-block .classes h1 {
    padding-left: 1%;
  }
}

.co-218 .products-nav ul li {
  width: unset;
}

.co-218 .c-section .image-box {
  display: none;
}
.co-218 .c-section .wp_media_bg {
  min-height: 500px;
  align-items: center;
}

/* ================================ 91缩放调整================================ */

/*
 * 不能让父级裁剪突破容器的Banner
 */
.co-91 {
  overflow: visible !important;
}

/* Banner突破父级容器，铺满浏览器窗口 */
.co-91 .c-banner {
  position: relative;

  width: 100vw !important;
  max-width: none !important;
  min-width: 0 !important;

  /* 从父级内容区突破到浏览器两侧 */
  left: 50%;
  margin-left: -50vw !important;

  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

/* Banner容器，实际宽度由JS控制 */
.co-91 #header-banner {
  position: relative;

  /*
   * JS设置的内联width才能生效
   */
  width: 100%;
  max-width: none !important;
  min-width: 0 !important;


  aspect-ratio: 20 / 9;

  height: auto !important;

  /* JS放大或缩小时始终居中 */
  margin-left: 50%;
  transform: translateX(-50%);

  overflow: hidden;
  box-sizing: border-box;
}

/* 所有轮播图片共用同一个容器 */
.co-91 #header-banner .swiper-wrapper {
  position: relative;
  display: block !important;

  width: 100%;
  height: 100% !important;

  transform-style: preserve-3d;
}

/* 默认隐藏所有轮播项 */
.co-91 #header-banner .swiper-slide {
  position: absolute !important;
  top: 0;
  left: 0;

  width: 100% !important;
  height: 100% !important;

  margin: 0 !important;
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;

  overflow: hidden;
  transition: opacity 0.6s ease;
}

/* 只显示当前图片 */
.co-91 #header-banner .swiper-slide-active {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

/* 图片和视频完整显示 */
.co-91 #header-banner .swiper-slide img,
.co-91 #header-banner .swiper-slide video {
  display: block;

  width: 100% !important;
  height: 100% !important;
  max-width: none !important;

  /*object-fit: contain !important;*/
  object-position: center;
}

/* 分页和切换按钮 */
.co-91 #header-banner .swiper-pagination,
.co-91 #header-banner .banner-btn,
.co-91 #header-banner .swiper-button-prev,
.co-91 #header-banner .swiper-button-next {
  position: absolute;
  z-index: 10;
}
/*.co-91 #header-banner .swiper-slide img,*/
/*.co-91 #header-banner .swiper-slide video {*/
/*  display: block;*/

/*  width: 100% !important;*/
/*  height: 100% !important;*/

/*  max-width: none !important;*/
/*  object-fit: contain !important;*/
/*  object-position: center;*/
/*}*/


/*.co-91 .template-diy-index_about_after .container{*/
/*  width: calc(100% - 100px) !important;*/
/*  max-width: 2200px !important;*/
/*  min-width: 0 !important;*/
/*}*/

/* Banner：大屏最大1920px，小屏自动缩小到视口宽度 */
/* Banner 外层 */
.co-91 .banner {
  width: var(--banner-width, 100%);
  max-width: none !important;

  position: relative;
  left: 50%;
  transform: translateX(-50%);

  margin: 100px 0 0;
  padding: 0;

  box-sizing: border-box;
  overflow: visible;
}

/* 链接 */
.co-91 .banner .item {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

/* 图片 */
.co-91 .banner .item img {
  display: block;

  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;

  height: auto !important;
  max-height: none !important;

  margin: 0;
  padding: 0;

  object-fit: contain !important;
  object-position: center center;
}



.footer-social {
  width: 100%;
  float: left;
  background-color: #3d4042;
}


.footer-social ul.shm-social {
  margin-top: 0 !important;
  padding: 10px;
  list-style: none;
  display: -webkit-box;
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* 图标多、空间不够时自动换行,不需要可以去掉 */
}

.footer-social ul.shm-social li {
  float: left;
  margin-right: 16px; /* 图标间距,按需调整 */
}

.footer-social ul.shm-social li:last-child {
  margin-right: 0;
}

.footer-social ul.shm-social li,
.footer-social ul.shm-social li a {
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social ul.shm-social li .iconfont {
  font-size: 32px;
}

.co-91 .iconfont {
  font-family: "iconfont" !important;
  font-size: 20px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.co-91 .tiktok:hover {
  color: #000;
}
.co-91 .footer-social .shm-social a {
  color: #FFFFFF !important;
}

.co-91 .footer-social .shm-social a:hover {
  color: #FFFFFF !important;
}