:root {
    --nav-first-bg: #082B41;
    --nav-second-bg: #0E5385;
    --nav-product-bg: #ffffff;
    --nav-text-color: #ffffff;
    --nav-hover-color: #0E5385;
    --color-primary: #0E5385;
    --color-primary-dark: #082B41;
    --color-white: #fff;
    --color-black: #000;
    --color-dark: #222;
    --color-gray: #333;
    --color-light-gray: #E4E4E4;
    --color-very-dark: #0b0b0b;
    --color-danger: #e71616;
    --color-transparent: transparent;
    --link-font-size: 18px;
    --link-font-color: #222;
    --link-font-color-hover: #0E5385;
    --max-width: 1440px;
}

/* 基础样式 */
.xpy-header-special-second * {
    box-sizing: border-box;
}

.xpy-header-special-second p{
    margin-bottom: 0;
}

.xpy-header-special-second a {
    transition: all 0.5s;
    text-decoration: none;
}

.xpy-header-special-second a:hover {
    text-decoration: none;
}

.xpy-header-special-second ul,
.xpy-header-special-second ol,
.xpy-header-special-second li {
    margin: 0;
    list-style-type: none;
    padding: 0;
}

.xpy-header-special-second img {
    max-width: 100%;
    vertical-align: middle;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.xhl-content {
    width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

@media screen and (max-width: 1680px) {
    .xhl-content {
        width: 1320px;
    }
}

@media screen and (max-width: 1440px) {
    .xhl-content {
        width: 1120px;
    }
}

@media screen and (max-width: 1200px) {
    .xhl-content {
        width: 920px;
    }
}

@media screen and (max-width: 991px) {
    .xhl-content {
        width: 100%;
        padding: 0 40px;
    }
}

@media screen and (max-width: 768px) {
    .xhl-content {
        padding: 0 20px;
    }
}

/* 图片容器 */
.xhl_img_box {
    overflow: hidden;
    position: relative;
    display: block;
    padding-top: 100%;
}

.xhl_img_box img,
.xhl_img_box iframe,
.xhl_img_box video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

/* 特殊导航主容器 */
.xpy-header-special-second {
    display: block;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.5s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    z-index: 998;
}

.xpy-header-special-second .flexs {
    display: flex;
}

.xpy-header-special-second .xpy-header-special-second-center {
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06);
}

/* 一级分类 */
.xpy-header-special-second .xpy-special-first {
    width: 33.333333%;
    background-color: var(--nav-first-bg);
}

.xpy-header-special-second .xpy-special-first .lists li {
    transition: all 0.5s;
    background-color: transparent;
    color: var(--nav-text-color);
    font-size: 18px;
}

.xpy-header-special-second .xpy-special-first .lists li a {
    color: var(--nav-text-color);
    font-size: 18px;
    padding: 20px 20px;
    display: inline-block;
    width: 100%;
}

.xpy-header-special-second .xpy-special-first .lists li a:hover {
    text-decoration: underline;
}

.xpy-header-special-second .xpy-special-first .lists li:hover,
.xpy-header-special-second .xpy-special-first .lists li.active {
    background-color: var(--nav-hover-color);
}

/* 二级分类区域 */
.xpy-header-special-second .xpy-special-second {
    width: 66.666666%;
    background-color: var(--nav-second-bg);
}

.xpy-header-special-second .xpy-special-second .groups {
    height: 100%;
}

.xpy-header-special-second .xpy-special-second .flexs {
    display: flex;
    height: 100%;
}

.xpy-header-special-second .xpy-special-second .groups:not(:first-child) {
    display: none;
}

/* 二级分类列表 */
.xpy-header-special-second .xpy-special-second .lists {
    width: 50%;
    background-color: var(--nav-second-bg);
}

.xpy-header-special-second .xpy-special-second .lists li {
    transition: all 0.5s;
    background-color: transparent;
    color: var(--nav-text-color);
    font-size: 18px;
}

.xpy-header-special-second .xpy-special-second .lists li a {
    color: var(--nav-text-color);
    font-size: 18px;
    padding: 20px 20px;
    display: inline-block;
    width: 100%;
}

.xpy-header-special-second .xpy-special-second .lists li a:hover {
    text-decoration: underline;
}

.xpy-header-special-second .xpy-special-second .lists li:hover,
.xpy-header-special-second .xpy-special-second .lists li.active {
    background-color: var(--nav-product-bg);
}

.xpy-header-special-second .xpy-special-second .lists li:hover a,
.xpy-header-special-second .xpy-special-second .lists li.active a {
    color: var(--nav-hover-color);
}

/* 产品展示区 */
.xpy-header-special-second .xpy-special-second .show-products {
    width: 50%;
    background-color: var(--nav-product-bg);
}

.show-products-list:not(:first-child) {
    display: none;
}

.show-products-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
}

.show-products-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 150px;
    padding: 20px 25px;
    transition: all 0.5s;
}

.show-products-list a .tits {
    font-size: 18px;
    color: var(--nav-hover-color);
    line-height: 1.65;
    width: calc(100% - 120px);
    padding-right: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.show-products-list a .imgs {
    width: 120px;
}

.show-products-list a:hover {
    background-color: var(--color-light-gray);
}





.xhl-content {
  width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (max-width: 1680px) {
  .xhl-content {
    width: 1320px;
  }
}
@media screen and (max-width: 1440px) {
  .xhl-content {
    width: 1120px;
  }
}
@media screen and (max-width: 1200px) {
  .xhl-content {
    width: 920px;
  }
}
@media screen and (max-width: 991px) {
  .xhl-content {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .xhl-content {
    padding: 0 20px;
  }
}
/* 图片限制 */
.xhl_img_box img,
.xhl_img_box iframe,
.xhl_img_box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.xhl_img_box {
  overflow: hidden;
  position: relative;
  display: block;
}
.xhl_img_box img {
  transition: all 0.5s;
  object-fit: cover;
}
/* 图片限制 end*/
.xpy-header-special-second {
  display: none;
}
.xpy-header-special-second {
  display: block;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  transition: all 0.5s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}


/* style - 1 */
.xpy-header-special-second.style-1 .flexs {
  display: flex;
}
.xpy-header-special-second.style-1 .xpy-header-special-second-center {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06);
}
.xpy-header-special-second.style-1 .xpy-special-first {
  width: 33.333333%;
  background-color: var(--color-primary-dark);
}
.xpy-header-special-second.style-1 .xpy-special-first .lists li {
  transition: all 0.5s;
  background-color: transparent;
  color: var(--color-white);
  font-size: 18px;
}
.xpy-header-special-second.style-1 .xpy-special-first .lists li a {
  color: var(--color-white);
  font-size: 18px;
  padding: 20px 20px;
  display: inline-block;
}
.xpy-header-special-second.style-1 .xpy-special-first .lists li a:hover {
  text-decoration: underline;
}
.xpy-header-special-second.style-1 .xpy-special-first .lists li:hover,
.xpy-header-special-second.style-1 .xpy-special-first .lists li.active {
  background-color: var(--link-font-color-hover);
}
.xpy-header-special-second.style-1 .xpy-special-second {
  width: 66.666666%;
  background-color: var(--link-font-color-hover);
}
.xpy-header-special-second.style-1 .xpy-special-second .groups {
  height: 100%;
}
.xpy-header-special-second.style-1 .xpy-special-second .flexs {
  display: flex;
  height: 100%;
}
.xpy-header-special-second.style-1 .xpy-special-second .groups:not(:first-child) {
  display: none;
}
.xpy-header-special-second.style-1 .xpy-special-second .lists {
  width: 50%;
  background-color: var(--link-font-color-hover);
}
.xpy-header-special-second.style-1 .xpy-special-second .lists li {
  transition: all 0.5s;
  background-color: transparent;
  color: var(--color-white);
  font-size: 18px;
}
.xpy-header-special-second.style-1 .xpy-special-second .lists li a {
  color: var(--color-white);
  font-size: 18px;
  padding: 20px 20px;
  display: inline-block;
}
.xpy-header-special-second.style-1 .xpy-special-second .lists li a:hover {
  text-decoration: underline;
}
.xpy-header-special-second.style-1 .xpy-special-second .lists li:hover,
.xpy-header-special-second.style-1 .xpy-special-second .lists li.active {
  background-color: var(--color-white);
}
.xpy-header-special-second.style-1 .xpy-special-second .lists li:hover a,
.xpy-header-special-second.style-1 .xpy-special-second .lists li.active a {
  color: var(--link-font-color-hover);
}
.xpy-header-special-second.style-1 .xpy-special-second .show-products {
  width: 50%;
  background-color: var(--color-white);
}
.xpy-header-special-second.style-1 .show-products-list:not(:first-child) {
  display: none;
}
.xpy-header-special-second.style-1 .show-products-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
}
.xpy-header-special-second.style-1 .show-products-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 150px;
  padding: 20px 25px;
  transition: all 0.5s;
}
.xpy-header-special-second.style-1 .show-products-list a .tits {
  font-size: 18px;
  color: var(--link-font-color-hover);
  line-height: 1.65;
  width: calc(100% - 120px);
  padding-right: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.xpy-header-special-second.style-1 .show-products-list a .imgs {
  width: 120px;
}
.xpy-header-special-second.style-1 .show-products-list a .imgs .img_box {
  padding-top: 100%;
}
.xpy-header-special-second.style-1 .show-products-list a:hover {
  background-color: var(--color-light-gray);
}
/* style - 1 end */
/* style - 2 */
.xpy-header-special-second.style-2 .special-second-content {
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.06);
  padding: 38px;
}
@media screen and (max-width: 1440px) {
  .xpy-header-special-second.style-2 .special-second-content {
    padding: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .xpy-header-special-second.style-2 .special-second-content {
    padding: 20px;
  }
}
.xpy-header-special-second.style-2 .special-second-list {
  display: flex;
  margin: 0 -18px;
}
@media screen and (max-width: 1200px) {
  .xpy-header-special-second.style-2 .special-second-list {
    margin: 0 -10px;
  }
}
.xpy-header-special-second.style-2 .special-second-item {
  width: 20%;
  padding: 0 18px;
}
@media screen and (max-width: 1200px) {
  .xpy-header-special-second.style-2 .special-second-item {
    padding: 0 10px;
  }
}
.xpy-header-special-second.style-2 .special-second-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 33px 10px;
  border-radius: 200px 200px 0 0;
  background-color: #F4F7FF;
}
@media screen and (max-width: 1440px) {
  .xpy-header-special-second.style-2 .special-second-link {
    padding: 16px 12px 25px;
  }
}
.xpy-header-special-second.style-2 .special-second-imgs {
  width: 150px;
  max-width: 80%;
  max-width: 100%;
}
.xpy-header-special-second.style-2 .special-second-imgs .xhl_img_box {
  padding-top: 100%;
  border-radius: 50%;
}
.xpy-header-special-second.style-2 .special-second-link:hover .special-second-imgs .xhl_img_box img {
  transform: scale(1.1);
}
.xpy-header-special-second.style-2 .special-second-tits {
  padding-top: 25px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 20px;
  color: #000;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .xpy-header-special-second.style-2 .special-second-tits {
    padding-top: 20px;
    margin-top: 24px;
  }
}
.xpy-header-special-second.style-2 .special-second-tits::before {
  content: "";
  position: absolute;
  width: 55%;
  height: 3px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: var(--main-color);
}
/* style - 2 end */
/* style - 3 */
.xpy-header-special-second.style-3 .special-second-content {
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  --widths: 220px;
}
.xpy-header-special-second.style-3 .special-second-lefts {
  width: var(--widths);
}
.xpy-header-special-second.style-3 .special-second-lefts li.active a {
  background-color: var(--main-color);
}
.xpy-header-special-second.style-3 .special-second-lefts li.active a p {
  color: #fff;
}
.xpy-header-special-second.style-3 .special-second-lefts a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 11px 10px;
  transition: all 0.5s;
}
.xpy-header-special-second.style-3 .special-second-lefts a img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.xpy-header-special-second.style-3 .special-second-lefts a p {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  color: #333;
  margin-top: 6px;
  transition: all 0.5s;
}
.xpy-header-special-second.style-3 .special-second-lefts a:hover {
  background-color: var(--main-color);
}
.xpy-header-special-second.style-3 .special-second-lefts a:hover p {
  color: #fff;
}
.xpy-header-special-second.style-3 .special-second-rights {
  width: calc(100% - var(--widths));
  position: relative;
  z-index: 1;
  padding: 30px;
}
.xpy-header-special-second.style-3 .special-second-rights .special-groups-items:not(:first-child) {
  display: none;
}
.xpy-header-special-second.style-3 .special-second-rights > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}
.xpy-header-special-second.style-3 .special-second-rights ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px -30px;
}
.xpy-header-special-second.style-3 .special-second-rights li {
  width: 33.333333%;
  padding: 0 15px;
  margin-bottom: 30px;
}
.xpy-header-special-second.style-3 .special-second-rights .content {
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #EEE;
  background-color: #fff;
}
.xpy-header-special-second.style-3 .special-second-rights .content .xhl_img_box {
  padding-top: 50.5%;
  background-color: #fff;
  display: block;
  width: 100%;
}
.xpy-header-special-second.style-3 .special-second-rights .content .xhl_img_box:hover img {
  transform: scale(1.1);
}
.xpy-header-special-second.style-3 .special-second-rights .content p > a {
  text-align: center;
  display: block;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  font-size: 18px;
  font-weight: 500;
  color: #060F24;
  transition: all 0.5s;
}
.xpy-header-special-second.style-3 .special-second-rights .content p > a:hover {
  color: var(--main-color);
}
.xpy-header-special-second.style-3 .special-second-links {
  width: 330px;
  height: 40px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
}
.xpy-header-special-second.style-3 .special-second-links svg {
  width: 18px;
  margin-right: 12px;
}
.xpy-header-special-second.style-3 .special-second-links p {
  color: #fff;
  line-height: 1.6;
  font-size: 18px;
}
/* style - 3 end*/
/* style - 4 */
.xpy-header-special-second.style-4 .xpy-header-special-content {
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.06);
  padding: 35px 50px 40px;
  display: flex;
  justify-content: space-around;
}
.xpy-header-special-second.style-4 .groups {
  max-width: 16.6666666%;
}
.xpy-header-special-second.style-4 .groups .tits,
.xpy-header-special-second.style-4 .groups .tits a {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.001rem;
  color: #333;
}
.xpy-header-special-second.style-4 .groups .tits a:hover {
  text-decoration: underline;
}
.xpy-header-special-second.style-4 .groups ul {
  margin-top: 15px;
}
.xpy-header-special-second.style-4 .groups li:not(:last-child) {
  margin-bottom: 8px;
}
.xpy-header-special-second.style-4 .groups li > a {
  font-size: 16px;
  line-height: 1.65;
  color: #555;
  display: inline-block;
}
.xpy-header-special-second.style-4 .groups li > a:hover {
  text-decoration: underline;
}
/* style - 4 end */
/* style - 5 */
.xpy-header-special-second.style-5 {
  --leftWidth: 300px;
}
.xpy-header-special-second.style-5 .xpy-header-special-content {
  padding: var(--padding-content-y) var(--padding-content-x);
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  padding: 40px 40px;
}
.xpy-header-special-second.style-5 .lefts {
  width: var(--leftWidth);
  padding-right: 30px;
}
.xpy-header-special-second.style-5 .lefts .subtit {
  font-size: 16px;
  color: #666;
  line-height: 1.65;
}
.xpy-header-special-second.style-5 .lefts ul {
  margin-top: 18px;
}
.xpy-header-special-second.style-5 .lefts li:not(:last-child) {
  margin-bottom: 16px;
}
.xpy-header-special-second.style-5 .lefts li {
  position: relative;
  z-index: 1;
}
.xpy-header-special-second.style-5 .lefts a {
  color: #333;
  font-size: 16px;
  line-height: 1.75;
  display: inline-block;
}
/* .xpy-header-special-second.style-5 .lefts li.new-active a::after {
  content: "New";
  display: inline-block;
  font-size: 12px;
  background-color: #000;
  color: #fff;
  line-height: 1;
  padding: 4px 6px 5px;
  border-radius: 6px;
  margin-left: 5px;
  transform: translateY(-1px);
} */

.xpy-header-special-second.style-5 .lefts li a span {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 4px 6px 5px;
  border-radius: 6px;
  margin-left: 5px;
  transform: translateY(-1px);
}
.xpy-header-special-second.style-5 .lefts li.active a {
  color: var(--main-color);
  text-decoration: underline;
}
.xpy-header-special-second.style-5 .lefts li:hover a {
  color: var(--main-color);
  text-decoration: underline;
}
.xpy-header-special-second.style-5 .rights {
  width: calc(100% - var(--leftWidth));
}
.xpy-header-special-second.style-5 .rights ul {
  display: flex;
  margin: 0 -15px;
}
.xpy-header-special-second.style-5 .rights li {
  padding: 0 15px;
  width: 25%;
}
.xpy-header-special-second.style-5 .rights .xhl_img_box {
  padding-top: 93.52941176%;
  border-radius: 10px;
}
.xpy-header-special-second.style-5 .rights .xhl_img_box:hover img {
  transform: scale(1.06);
}
.xpy-header-special-second.style-5 .rights .tits {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  font-weight: bold;
  display: block;
}
.xpy-header-special-second.style-5 .rights .tits:hover {
  color: var(--main-color);
}
.xpy-header-special-second.style-5 .rights .texts {
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.65;
  color: #666;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.xpy-header-special-second.style-5 .rights .mores {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 0;
}
.xpy-header-special-second.style-5 .rights .mores p {
  font-size: 16px;
  color: #515151;
}
.xpy-header-special-second.style-5 .rights .mores svg {
  width: 18px;
  margin-left: 10px;
  transition: all 0.5s;
  transform: translateY(2px);
}
.xpy-header-special-second.style-5 .rights .mores:hover svg {
  transform: translateX(5px) translateY(2px);
}
.xpy-header-special-second.style-5 .xpy-product-group-item:not(:first-child) {
  display: none;
}
/* style - 5 end */
/* style - 6 */
.xpy-header-special-second.style-6 {
  --padd20: 20px;
  --padd12: 12px;
}
.xpy-header-special-second.style-6 .xpy-header-special-content {
  border-top: 3px solid var(--main-color);
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.06);
}
.xpy-header-special-second.style-6 .special-groups {
  display: flex;
}
.xpy-header-special-second.style-6 .special-groups-item {
  width: 25%;
  border-right: 1px solid #eee;
}
.xpy-header-special-second.style-6 .special-groups-item:last-child {
  border-right: none;
}
.xpy-header-special-second.style-6 .special-groups-top {
  display: block;
  padding: var(--padd12) var(--padd20);
  transition: all 0.5s;
}
.xpy-header-special-second.style-6 .special-groups-top > p {
  font-size: 14px;
  line-height: 1.55;
  color: #555;
  margin-top: 10px;
  padding-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
@media screen and (max-width: 1200px) {
  .xpy-header-special-second.style-6 .special-groups-top > p {
    margin-top: 5px;
    -webkit-line-clamp: 2;
  }
}
.xpy-header-special-second.style-6 .special-groups-top:hover {
  background-color: #f3f3f3;
}
.xpy-header-special-second.style-6 .special-groups-top:hover .imgs .xhl_img_box img {
  transform: scale(1.06);
}
.xpy-header-special-second.style-6 .special-flexs {
  display: flex;
  align-items: center;
  --width: 160px;
}
@media screen and (max-width: 1440px) {
  .xpy-header-special-second.style-6 .special-flexs {
    --width: 140px;
  }
}
@media screen and (max-width: 1200px) {
  .xpy-header-special-second.style-6 .special-flexs {
    flex-direction: column;
  }
}
.xpy-header-special-second.style-6 .special-flexs .imgs {
  width: var(--width);
}
@media screen and (max-width: 1200px) {
  .xpy-header-special-second.style-6 .special-flexs .imgs {
    width: 100%;
  }
}
.xpy-header-special-second.style-6 .special-flexs .imgs .xhl_img_box {
  padding-top: 100%;
}
.xpy-header-special-second.style-6 .special-flexs .tits {
  width: calc(100% - 160px);
  padding-left: 15px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 1200px) {
  .xpy-header-special-second.style-6 .special-flexs .tits {
    width: 100%;
    padding-left: 0px;
    padding-top: 6px;
  }
}
.xpy-header-special-second.style-6 .special-items {
  border-top: 1px solid #eee;
  transition: all 0.5s;
}
.xpy-header-special-second.style-6 .special-items:hover {
  background-color: #f3f3f3;
}
.xpy-header-special-second.style-6 .special-items:last-child {
  border-bottom: 1px solid #eee;
}
.xpy-header-special-second.style-6 .special-links {
  padding: var(--padd12) var(--padd20);
  font-size: 16px;
  line-height: 1.2;
  display: block;
  color: #444;
}
/* style - 6 end */

/* style - 7 */
.xpy-header-special-second.style-7 {
  /*display: block !important;*/
  /*opacity: 1 !important;*/
  /*pointer-events: all !important;*/
  /*visibility: initial !important;*/
  
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.06);
  padding: 0;
}
.xpy-header-special-second.style-7 .xpy-header-special-content {
  display: flex;
  --widthRight: 610px;
}
.xpy-header-special-second.style-7 .xpy-header-special-content.active-reverse {
  flex-direction: row-reverse;
}
.xpy-header-special-second.style-7 .special-left {
  width: calc(100% - 32.2614654%);
  background-color: #F5F5F5;
  padding: 35px;
}
.xpy-header-special-second.style-7 .special-right {
  width: 32.2614654%;
  background-color: #fff;
  padding: 22px 30px;
}
.xpy-header-special-second.style-7 .special-left-list {
  display: flex;
  margin: 0 -15px;
}
.xpy-header-special-second.style-7 .special-left-item {
  width: 33.3333333%;
  margin: 0 15px;
}
.xpy-header-special-second.style-7 .special-left-content {
  z-index: 1;
  position: relative;
  background-color: #fff;
  height: 100%;
  display: block;
}
.xpy-header-special-second.style-7 .special-left-content .xhl_img_box {
  padding-top: 100%;
}
.xpy-header-special-second.style-7 .special-left-content .tits {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 10px 24px;
  font-size: 18px;
  line-height: 1.75;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.5s;
}
.xpy-header-special-second.style-7 .special-left-content:hover .xhl_img_box img {
  transform: scale(1.05);
}
.xpy-header-special-second.style-7 .special-left-content:hover .tits {
  background-color: var(--main-color);
}
.xpy-header-special-second.style-7 .special-left-group {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.xpy-header-special-second.style-7 .special-left-group .items {
  margin-bottom: 20px;
  display: flex;
  width: 100%;
  background-color: #fff;
  transition: all 0.5s;
}
.xpy-header-special-second.style-7 .special-left-group .items .imgs {
  width: 190px;
}



.xpy-header-special-second.style-7 .special-left-group .items .imgs .xhl_img_box {
  padding-top: 100%;
}
.xpy-header-special-second.style-7 .special-left-group .items .infos {
  width: calc(100% - 190px);
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.xpy-header-special-second.style-7 .special-left-group .items .infos .tits {
  font-size: 16px;
  font-weight: bold;
  color: #222;
  transition: all 0.5s;
}
.xpy-header-special-second.style-7 .special-left-group .items .infos .mores {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.xpy-header-special-second.style-7 .special-left-group .items .infos .mores p {
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  transition: all 0.5s;
}
.xpy-header-special-second.style-7 .special-left-group .items .infos .mores img,
.xpy-header-special-second.style-7 .special-left-group .items .infos .mores svg{
  width: 20px;
  transition: all 0.5s;
}
.xpy-header-special-second.style-7 .special-left-group .items:hover {
  box-shadow: 0 4px 4px -10px rgba(0, 0, 0, 0.04), 0 13px 13px -10px rgba(0, 0, 0, 0.06), 0 40px 60px -10px rgba(0, 0, 0, 0.08);
}
.xpy-header-special-second.style-7 .special-left-group .items:hover .imgs .xhl_img_box img {
  transform: scale(1.06);
}
.xpy-header-special-second.style-7 .special-left-group .items:hover .infos .tits {
  color: var(--main-color);
}
.xpy-header-special-second.style-7 .special-left-group .items:hover .infos .mores img,
.xpy-header-special-second.style-7 .special-left-group .items:hover .infos .mores svg{
  transform: translateX(4px);
}
.xpy-header-special-second.style-7 .special-left-group .items:last-child {
  margin-bottom: 0;
}
.xpy-header-special-second.style-7 .special-right-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
}
.xpy-header-special-second.style-7 .special-right-link p {
  font-size: 18px;
  color: #606060;
  line-height: 1.65;
  padding-right: 20px;
  transition: all 0.5s;
}
.xpy-header-special-second.style-7 .special-right-link img,
.xpy-header-special-second.style-7 .special-right-link svg{
  width: 22px;
  flex-shrink: 0;
  transition: all 0.5s;
}
.xpy-header-special-second.style-7 .special-right-item.active .special-right-link {
  background-color: var(--main-color);
}
.xpy-header-special-second.style-7 .special-right-item.active .special-right-link p {
  color: #fff;
}
.xpy-header-special-second.style-7 .special-right-item.active .special-right-link img,
.xpy-header-special-second.style-7 .special-right-item.active .special-right-link svg{
  filter: brightness(0) invert(1);
}
.xpy-header-special-second.style-7 .special-right-link:hover {
  background-color: var(--main-color);
}
.xpy-header-special-second.style-7 .special-right-link:hover p {
  color: #fff;
}
.xpy-header-special-second.style-7 .special-right-link:hover img,
.xpy-header-special-second.style-7 .special-right-link:hover svg{
  filter: brightness(0) invert(1);
}
.xpy-header-special-second.style-7 .xpy-product-group-item:not(:first-child) {
  display: none;
}
/* style - 7 end */

/* style - 1 */
.xpy-header-special-second.style-8{
     /*display: block !important;*/
     /*opacity: 1 !important;*/
     /*pointer-events: all !important;*/
     /*visibility: initial !important;*/
}
.xpy-header-special-second.style-8 .xhl-content {
  width: 100%;
}
.xpy-header-special-second.style-8 .special-second-content {
  background-color: #F8F8F8;
  padding: 60px 0;
  transition: all 0.4s;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
  width: 100%;
}
.xpy-header-special-second.style-8 .special-second-content::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 100%;
  height: 40px;
  opacity: 0;
  pointer-events: none;
}
.xpy-header-special-second.style-8 .special-second-content .xpy-container {
  text-align: center;
}
.xpy-header-special-second.style-8 .xpy-header-special-nav {
  display: inline-flex;
  justify-content: center;
}
.xpy-header-special-second.style-8 .xpy-header-special-nav .items {
  padding: 10px 25px;
  font-size: 18px;
  margin: 0 12px;
  border-radius: 60px;
  line-height: 1.65;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  cursor: pointer;
  border: 2px solid #000000;
  color: #000000;
}
.xpy-header-special-second.style-8 .xpy-header-special-nav .items:hover {
  background-color: var(--main-color);
  color: #fff;
  border: 2px solid var(--main-color);
}
.xpy-header-special-second.style-8 .xpy-header-special-nav:not(:hover) .items.active {
  background-color: var(--main-color);
  color: #fff;
  border: 2px solid var(--main-color);
}
.xpy-header-special-second.style-8 .xpy-header-special-list {
  display: flex;
  margin-top: 50px;
}
.xpy-header-special-second.style-8 .xpy-header-special-list .items {
  width: 20%;
  padding: 0 15px;
}
.xpy-header-special-second.style-8 .xpy-header-special-list .xhl_img_box {
  padding-top: 100%;
  display: block;
}
.xpy-header-special-second.style-8 .xpy-header-special-list .xhl_img_box:hover img {
  transform: scale(1.06);
}
.xpy-header-special-second.style-8 .xpy-header-special-list .tits {
  text-align: center;
  margin-top: 15px;
}
.xpy-header-special-second.style-8 .xpy-header-special-list .tits,
.xpy-header-special-second.style-8 .xpy-header-special-list .tits a {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  line-height: 1.65;
}
.xpy-header-special-second.style-8 .xpy-header-special-list .tits a:hover {
  color: var(--main-color);
}
/* style - 01 end */



