@charset "utf-8";

:root {
  --i_color: #2666a4;

  /* 全局颜色 */

  --i_color2: #fff;

  /* 副颜色 */

  --top_h: 1rem;

  --header_height: 1rem;

  /* 顶部高度 */

  --border_color: rgba(51, 51, 51, 0.2);

  /* 默认边框颜色 */

  --title_fz: 0.4rem;

  /* 标题字体大小 */

  --contain-width: 1.6rem;

  /* 盒子左右间距 */

  --box-bottom: 0.95rem;

  /* 盒子与盒子之间距离 */

  --border_color: rgba(51, 51, 51, 0.12);

  /* 默认边框颜色 */

  --boxShadow: 0 2px 10px rgb(0 88 167 / 20%);
}

@media screen and (max-width: 1366px) {
  :root {
    --contain-width: 0.5rem;

    --box-bottom: 0.55rem;
  }
}

@media screen and (max-width: 1024px) {
  :root {
    --top_h: 0.5rem;

    --header_height: 0.5rem;

    --title_fz: 0.3rem;

    --contain-width: 0.5rem;

    --box-bottom: 0.55rem;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --border_color: rgba(0, 0, 0, 0.06);
  }
}

@media screen and (max-width: 425px) {
  :root {
    --title_fz: 0.2rem;

    --contain-width: 0.2rem;

    --box-bottom: 0.3rem;
  }
}

.wrap {
  width: 94vw;

  max-width: 1500px;

  margin-left: auto;

  margin-right: auto;
}

.wrap_l {
  display: block;

  box-sizing: border-box;

  padding-left: 8.35%;
}

.wrap02 {
  width: 1500px;

  max-width: 94vw;

  margin-left: auto;

  margin-right: auto;
}

@media screen and (min-width: 1921px) {
  .wrap {
    width: 85vw;

    max-width: none;
  }
}

@media screen and (max-width: 1024px) {
  .wrap_l {
    padding-left: 3%;
  }
}

/* ---------------------------------public title--------------------------- */

.public_toptitle {
  text-align: center;

  margin-bottom: 0.5rem;
}

.public_toptitle h3 {
  font-family: Arial;

  font-size: 0.44rem;

  font-weight: bold;

  color: #333333;

  position: relative;

  display: inline-block;

  margin-bottom: 0.4rem;
}

.public_toptitle h3 span {
  color: #2666a4;
}

.public_toptitle h3::after {
  content: "";

  position: absolute;

  left: 50%;

  bottom: -0.1rem;

  transform: translateX(-50%);

  width: 0.68rem;

  height: 4px;

  background: #2666a4;
}

.public_toptitle h4 {
  font-family: Arial;

  font-size: 0.18rem;

  line-height: 0.24rem;

  text-align: center;

  color: #666666;
}

@media screen and (max-width: 1024px) {
  .public_toptitle h3 {
    font-size: 0.35rem;

    margin-bottom: 0.4rem;
  }

  .public_toptitle h4 {
    font-size: 0.16rem;

    line-height: 0.24rem;
  }
}

@media screen and (max-width: 768px) {
  .public_toptitle h3 {
    font-size: 0.3rem;

    margin-bottom: 0.3rem;
  }
}

@media screen and (max-width: 425px) {
  .public_toptitle {
    margin-bottom: 0.2rem;
  }

  .hot_products {
    padding: 0.3rem 0;
  }

  .public_toptitle h3 {
    font-size: 0.25rem;

    margin-bottom: 0.25rem;
  }

  .public_toptitle h4 {
    font-size: 0.14rem;

    line-height: 0.2rem;
  }
}

@media screen and (max-width: 320px) {
  .public_toptitle {
    margin-bottom: 0.2rem;
  }

  .public_toptitle h3 {
    font-size: 0.22rem;

    margin-bottom: 0.25rem;
  }

  .public_toptitle h4 {
    font-size: 0.13rem;

    line-height: 0.2rem;
  }
}

/* ----------------------------------public_btn------------------------------------- */

/* ------------------------------------header-------------------------------------- */

header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 2014;

  height: var(--top_h);
}

.top_cont {
  background: #fff;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  height: 100%;

  /* 阴影 */

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.top_cont .top {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  height: 100%;
}

/* @media screen and (max-width:1024px) {

	.top_cont{background: #373737;}

} */

/* logo */

.logo {
  display: -webkit-flex;

  height: 59%;
}

.logo a {
  display: -webkit-flex;

  display: flex;

  align-items: center;

  height: 100%;

  position: relative;
}

.logo img {
  max-height: 0.8rem;
}

@media screen and (max-width: 1440px) {
  .logo img {
    max-height: 0.7rem;
  }
}

@media screen and (max-width: 1024px) {
  .logo img {
    max-height: 0.4rem;
  }
}

@media screen and (max-width: 560px) {
  .logo img {
    max-height: 0.38rem;
  }
}

/* 导航 */

@media screen and (min-width: 1025px) {
  .i_nav {
    margin-left: 0.8rem;

    display: -webkit-flex;

    display: flex;

    flex-wrap: nowrap;

    gap: 0 0.72rem;

    z-index: 2014;
  }

  .i_nav > li {
    position: relative;
  }

  .i_nav > li::before {
    content: "";

    position: absolute;

    left: 50%;

    bottom: -0.1rem;

    width: 0;

    height: 3px;

    transform: translateX(-50%);

    background: var(--i_color);

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;

    /* display: none; */
  }

  .i_nav > .current-menu-item::before,
  .i_nav > .current-category-ancestor::before,
  .i_nav > .current-post-ancestor::before,
  .i_nav > .current-menu-ancestor::before,
  .i_nav > .current-menu-parent::before,
  .i_nav > li:hover::before,
  .i_nav > .active::before {
    width: 100%;
  }

  .i_nav > li > a {
    display: block;

    font-size: 18px;

    color: #333;

    /* line-height: var(--top_h); */

    line-height: 0.32rem;

    white-space: nowrap;

    box-sizing: border-box;

    font-weight: bold;
  }

  .i_nav > .current-menu-item > a,
  .i_nav > .current-category-ancestor > a,
  .i_nav > .current-post-ancestor > a,
  .i_nav > .current-menu-ancestor > a,
  .i_nav > .current-menu-parent > a,
  .i_nav > li:hover > a,
  .i_nav > .active > a {
    /* background-color: var(--i_color); */

    color: var(--i_color);
  }

  .i_nav > li > .sub-menu {
    display: none;

    position: absolute;

    left: 0;

    min-width: 1.6rem;

    background: var(--i_color2);

    box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);

    font-size: 0;

    top: calc(100% + 0.15rem);
  }

  .nav_dropdown_menu1 > .sub-menu,
  .nav_dropdown_menu2 > .sub-menu,
  .nav_dropdown_menu3 > .sub-menu,
  .nav_dropdown_menu4 > .sub-menu {
    display: none !important;
  }

  .i_nav > li > .sub-menu li {
    position: relative;

    border-bottom: 1px solid var(--border_color);
  }

  .i_nav > li > .sub-menu a {
    display: block;

    padding: 0 0.16rem;

    font-size: 0.15rem;

    color: #333;

    line-height: 0.36rem;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    position: relative;
  }

  .i_nav > li > .sub-menu > li:hover > a {
    background: var(--i_color);

    color: #979797;
  }

  .i_nav .sub-menu .sub-menu {
    position: absolute;

    top: 0;

    left: 100%;

    background: #979797;

    min-width: 1.4rem;
  }

  .i_nav .sub-menu .sub-menu li {
    border-bottom-color: rgb(255 255 255 / 15%);
  }

  .i_nav .sub-menu .sub-menu a {
    font-size: 14px;

    color: #fff;
  }

  .i_nav .sub-menu .sub-menu li:hover {
    background: #acacac;
  }
}

@media screen and (max-width: 1440px) {
  .i_nav > li > a {
    font-size: 16px;
  }
}

@media screen and (max-width: 1366px) {
  .i_nav > li > a {
    font-size: 15px;
  }
}

@media screen and (max-width: 1200px) {
  .i_nav {
    gap: 0 0.38rem;
  }

  .i_nav > li > a {
    font-size: 14px;
  }
}

@media screen and (max-width: 1024px) {
  .i_nav {
    display: none;

    position: fixed;

    top: var(--top_h);

    left: 0;

    width: 100%;

    width: 100vw;

    max-height: calc(100vh - var(--top_h));

    background: #fff;

    overflow-y: auto;

    z-index: 2;
  }

  /*滚动条*/

  .i_nav::-webkit-scrollbar {
    width: 3px;

    height: 8px;
  }

  .i_nav::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);

    background: #555;
  }

  .i_nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);

    border-radius: 0;

    background: #f1f1f1;
  }

  .i_nav > li {
    margin: 0 0 !important;

    border-bottom: 1px solid var(--border_color);

    position: relative;
  }

  .i_nav > .menu-item-has-children span {
    display: block;

    position: absolute;

    top: 0;

    right: 0;

    width: 0.44rem;

    height: 0.44rem;

    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 48 48"%3E%3Cpath fill="none" stroke="%23555" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M36 18L24 30L12 18"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;

    background-size: 0.24rem;

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;
  }

  .i_nav > .menu-item-has-children span.on {
    transform: rotate(180deg);

    background-size: 0.24rem;
  }

  .i_nav > li > a {
    padding: 0 3%;

    font-size: 0.16rem;

    color: #222;

    line-height: 0.44rem;

    text-transform: uppercase;
  }

  .i_nav > li > .sub-menu {
    display: none;
  }

  .i_nav > li > .sub-menu li {
    position: relative;
  }

  .i_nav .sub-menu a {
    padding: 0 0.4rem;

    font-size: 16px;

    color: #555;

    line-height: 0.4rem;

    position: relative;
  }

  /* .i_nav .sub-menu li:not(:last-child) {

		border-bottom: 1px solid var(--border_color)

	} */

  .i_nav > li > .sub-menu b {
    position: absolute;

    top: 0;

    right: 0;

    width: 0.4rem;

    height: 0.4rem;

    background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
      center;

    background-size: 0.16rem;
  }

  .i_nav > li > .sub-menu b.on {
    background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat
      center;

    background-size: 0.16rem;
  }

  .i_nav .sub-menu .sub-menu {
    display: none;
  }

  .i_nav .sub-menu .sub-menu a {
    padding: 0 0.6rem;

    font-size: 15px;

    color: #888;

    line-height: 0.36rem;

    position: relative;
  }

  .i_nav a {
    display: block;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
  }
}

/* 移动端导航按钮 */

.nav_menu {
  /* position: absolute;

	right: 0;

	top: 50%;

	transform: translateY(-50%); */

  position: relative;

  width: 22px;

  height: 16px;

  display: none;

  cursor: pointer;
}

.nav_menu i {
  display: block;

  width: 100%;

  height: 3px;

  position: absolute;

  top: 50%;

  margin-top: -2px;

  background: var(--i_color);

  border-radius: 0.1rem;

  transition: 0.5s;
}

.nav_menu::before,
.nav_menu::after {
  content: "";

  width: 100%;

  height: 3px;

  background: var(--i_color);

  position: absolute;

  left: 0;

  border-radius: 0.1rem;

  transition: 0.5s;
}

.nav_menu::before {
  top: 0;
}

.nav_menu::after {
  bottom: 0;
}

.nav_menu.on i {
  opacity: 0;
}

.nav_menu.on::before {
  transform: rotate(45deg);

  top: 50%;

  margin-top: -2px;
}

.nav_menu.on::after {
  transform: rotate(-45deg);

  top: 50%;

  margin-top: -2px;
}

@media screen and (max-width: 1024px) {
  .nav_menu {
    display: block !important;
  }
}

/* 导航下拉 */

.nav_dropdown {
  position: fixed;

  top: var(--top_h);

  left: 0;

  width: 100%;

  background: #fff;

  z-index: 2013;
}

.nav_dropdown_item {
  display: none;

  padding: 0.4rem 0;
}

.nav_dropdown_list {
  display: -webkit-flex;

  display: flex;

  flex-wrap: nowrap;

  justify-content: center;

  gap: 0 3%;
}

.nav_dropdown_list dt {
  width: 100%;

  max-width: 3.8rem;
}

.nav_p_cat_name a {
  font-size: 0.2rem;

  color: var(--i_color);

  font-weight: 900;
}

.nav_dropdown_list ul {
  margin-top: 0.2rem;
}

.nav_dropdown_list li {
  position: relative;

  padding-left: 0.24rem;
}

.nav_dropdown_list li::before {
  opacity: 0.5;

  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0;

  width: 0.2rem;

  height: 0.2rem;

  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 24 24"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cpath d="M24 0v24H0V0h24ZM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018Zm.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022Zm-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01l-.184-.092Z"%2F%3E%3Cpath fill="currentColor" d="M15.707 11.293a1 1 0 0 1 0 1.414l-5.657 5.657a1 1 0 1 1-1.414-1.414l4.95-4.95l-4.95-4.95a1 1 0 0 1 1.414-1.414l5.657 5.657Z"%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E')
    no-repeat center;

  background-size: contain;
}

.nav_dropdown_list li a {
  display: block;

  padding: 0.06rem 0;

  font-size: 0.15rem;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.nav_dropdown_list li:hover a {
  margin-left: 8px;

  color: var(--i_color);
}

.top_r {
  display: -webkit-flex;

  display: flex;

  flex-wrap: nowrap;

  align-items: center;

  margin-left: auto;

  gap: 0 0.3rem;
}

/* search */

.top_search_btn {
  display: none;
}

.search_cont {
  --search_height: 0.46rem;
}

.search_cont form {
  width: 2rem;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  box-sizing: border-box;

  border: 1px solid #333;

  -webkit-border-radius: 4px;

  border-radius: 4px;

  overflow: hidden;

  border-radius: 1.08rem;
}

.search_ipt {
  width: calc(100% - var(--search_height));

  height: var(--search_height);

  box-sizing: border-box;

  padding: 0 0.1rem 0 0.12rem;

  background: none;

  font-size: 0.18rem;

  color: #333;
}

.search_btn {
  font-size: 0;

  color: #fff;

  width: var(--search_height);

  height: var(--search_height);

  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="512" height="512" viewBox="0 0 512 512"%3E%3Cpath fill="%23333" d="M456.69 421.39L362.6 327.3a173.81 173.81 0 0 0 34.84-104.58C397.44 126.38 319.06 48 222.72 48S48 126.38 48 222.72s78.38 174.72 174.72 174.72A173.81 173.81 0 0 0 327.3 362.6l94.09 94.09a25 25 0 0 0 35.3-35.3ZM97.92 222.72a124.8 124.8 0 1 1 124.8 124.8a124.95 124.95 0 0 1-124.8-124.8Z"%2F%3E%3C%2Fsvg%3E')
    no-repeat center;

  background-size: 0.2rem;

  cursor: pointer;
}

@media screen and (max-width: 1366px) {
  .search_cont form {
    width: 1.6rem;
  }
}

@media screen and (max-width: 1200px) {
  .top_search_btn {
    display: -webkit-flex;

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    height: var(--header_height);

    cursor: pointer;

    position: relative;
  }

  .top_search_btn iconify-icon {
    font-size: 0.24rem;

    color: #333;
  }

  .search_cont {
    --search_height: 0.4rem;
  }

  .search_cont {
    opacity: 0;

    visibility: hidden;

    position: fixed;

    top: calc(var(--header_height) + 0.2rem);

    left: 0;

    width: 100%;

    background: #f5f6f7;

    box-sizing: border-box;

    padding: 0.2rem 0;

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;
  }

  .search_cont.on {
    opacity: 1;

    visibility: visible;

    top: var(--header_height);
    box-shadow: 0 4px 10px rgb(0 0 0 / 6%);
  }

  .search_cont form {
    width: 90%;

    max-width: 500px;

    margin-left: auto;

    margin-right: auto;

    border-color: #979797;
  }

  .search_ipt {
    font-size: 13px;
  }

  .search_btn {
    background-color: transparent;
  }
}

@media screen and (max-width: 1024px) {
  .logo {
    height: 70%;

    padding-bottom: 0;
  }

  .top_language_btn::before {
    display: none;
  }

  .search_cont {
    --search_height: 0.34rem;
  }

  .search_cont {
    padding: 0.14rem 0;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .top_search_btn iconify-icon {
    font-size: 20px;
  }
}

.top_language {
  position: relative;
}

.top_language_btn {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  height: var(--header_height);

  padding-right: 0.2rem;

  cursor: pointer;

  position: relative;
}

.top_language_btn::before,
.top_language_btn::after {
  content: "";

  position: absolute;

  top: 50%;

  right: 0;

  width: 8px;

  height: 2px;

  background: #333;
}

.top_language_btn::before {
  transform: translate(-4px, -50%) rotate(45deg);
}

.top_language_btn::after {
  transform: translate(0, -50%) rotate(-45deg);
}

.top_language_btn p {
  font-size: 18px;

  color: #333;
}

.top_language_btn iconify-icon {
  font-size: 0.26rem;

  margin-right: 0.05rem;
}

.language_list {
  opacity: 0;

  visibility: hidden;

  position: absolute;

  top: calc(var(--header_height) + 0.2rem);

  right: 0;

  background: #fff;

  min-width: 1.2rem;

  z-index: 2016;

  box-shadow: 0 8px 0.1rem rgb(0 0 0 / 10%);

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

  padding: 0.16rem 0.2rem;

  text-align: left;
}

.language_list.on {
  opacity: 1;

  visibility: visible;

  top: var(--header_height);
}

.language_list dt > h6 {
  margin-bottom: 0.08rem;

  font-size: 0.17rem;

  font-weight: bold;

  white-space: nowrap;
}

.curr_lang {
  margin-bottom: 0.12rem;

  padding-bottom: 0.12rem;

  border-bottom: 1px solid #eee;
}

.lang_list a {
  display: block;

  padding: 0.06rem 0;
}

.lang_list span img {
  display: none;
}

.lang_list .trp-ls-language-name {
  padding-left: 0.3rem;

  font-size: 14px;

  position: relative;
}

.lang_list .trp-ls-language-name::before {
  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0;

  width: 0.18rem;

  height: 0.18rem;

  box-sizing: border-box;

  border: 1px solid #aaa;

  -webkit-border-radius: 50%;

  border-radius: 50%;
}

.lang_list .trp-ls-language-name::after {
  display: none;

  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0.06rem;

  width: 0.06rem;

  height: 0.06rem;

  background: #006bb8;

  -webkit-border-radius: 50%;

  border-radius: 50%;
}

.lang_list li:hover .trp-ls-language-name::after,
.curr_lang .trp-ls-language-name::after {
  display: block;
}

.lang_list li:hover .trp-ls-language-name,
.curr_lang .trp-ls-language-name {
  color: #333;
}

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

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

@media screen and (max-width: 1200px) {
  .top_language_btn p {
    display: none;
  }

  .top_language_btn::before,
  .top_language_btn::after {
    display: none;
  }

  .top_language_btn iconify-icon {
    display: block;

    font-size: 0.24rem;
  }
}

@media screen and (max-width: 1024px) {
  .top_language_btn iconify-icon {
    font-size: 22px;
  }

  .language_list dt > h6 {
    font-size: 15px;
  }

  .lang_list a {
    padding: 2px 0;
  }

  .lang_list .trp-ls-language-name {
    padding-left: 20px;
  }

  .lang_list .trp-ls-language-name::before {
    width: 14px;

    height: 14px;
  }

  .lang_list .trp-ls-language-name::after {
    left: 4px;
  }
}

@media screen and (max-width: 768px) {
  .language_list dt > h6 {
    font-size: 15px;
  }
}

.full_header_height {
  display: none;

  height: var(--header_height);
}

@media screen and (max-width: 1024px) {
  .full_header_height {
    display: block;
  }
}

/* -------------------------------------------footer------------------------------------- */

footer {
}

.footer_maxBox {
  height: 100%;
}

.footer_topMaxBox {
  color: #fff;

  position: relative;
}

.ft_title {
  background: url(static/images/footer_topbg.webp) no-repeat center/cover;

  font-family: Arial;

  font-size: 0.4rem;

  font-weight: bold;

  line-height: 0.52rem;

  color: #ffffff;

  padding: 0.48rem 29.68%;

  box-sizing: border-box;

  text-align: left;
}

.ft_contain {
  padding: 1.22rem 0 0.88rem 0;

  background: #222222;
}

.ft_infobox {
}

.ft_infobox ul {
  display: flex;

  gap: 1rem;
}

.ft_infobox > ul > li:nth-child(1),
.ft_infobox > ul > li:nth-child(4) {
  flex: 1.5;
}

.ft_infobox > ul > li:nth-child(2),
.ft_infobox > ul > li:nth-child(3) {
  flex: 1;
}

.ft_infobox ul .first_li span {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: bold;

  color: #ffffff;

  display: flex;

  align-items: center;

  margin-bottom: 0.2rem;
}

.ft_infobox ul .first_li span img {
  width: 0.59rem;

  height: 0.48rem;

  object-fit: cover;

  margin-right: 0.1rem;
}

.ft_infobox ul .first_li h3 {
  font-family: Arial;

  font-size: 0.16rem;

  line-height: 0.24rem;

  color: #ffffff;

  margin-bottom: 1rem;
}

.ft_infobox ul .first_li .first_li_dt {
  display: flex;

  gap: 0.3rem;
}

.ft_infobox ul .first_li .first_li_dt dl a {
  width: 0.62rem;

  height: 0.62rem;

  border-radius: 0.08rem;

  background: rgba(255, 255, 255, 0.1);

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;
}

.ft_infobox ul .first_li .first_li_dt dl a iconify-icon {
  font-size: 0.26rem;
}

.ft_infobox ul .first_li .first_li_dt dl a:hover {
  background: #2666a4;
}

.ft_nav_li h3 {
  font-family: Arial;

  font-size: 0.32rem;

  font-weight: bold;

  color: #ffffff;

  margin-bottom: 0.35rem;
}

.ftnl_dt {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

.ftnl_dt li {
  display: flex;

  align-items: flex-start;
}

.ftnl_dt li a {
  color: #fff;

  font-family: Arial;

  font-size: 0.18rem;
}

.ftnl_dt li a:hover {
  text-decoration: underline;
}

.ftnl_dt li img {
  width: 0.22rem;

  height: 0.19rem;

  object-fit: contain;

  margin-right: 0.1rem;
}

.footer_bottomMaxBox {
  padding: 0.32rem 0;

  background: #333;

  color: #fff;

  display: flex;

  align-items: center;

  font-size: 0.16rem;
}

.footer_bottomMaxBox .wrap a {
  color: #fff;

  cursor: pointer;
}

.footer_bottomMaxBox .wrap a:hover {
  text-decoration: underline;
}

.footer_wj {
  position: absolute;

  left: 11%;

  top: -10%;

  width: 3.48rem;

  height: 3.48rem;
}

.footer_maxBox .footer_topMaxBox .fm_cuBtn {
  position: absolute;

  right: 10%;

  top: 15%;

  transform: translateY(-50%);

  z-index: 5;

  cursor: pointer;
}

.footer_maxBox .footer_topMaxBox .fm_cuBtn a {
  background: var(--i_color);

  padding: 0.18rem 0.5rem;

  border-radius: 1.12rem;

  font-size: 0.24rem;

  color: #fff;

  font-weight: bold;
}

@media screen and (max-width: 1440px) {
  .footer_bottomMaxBox {
    padding: 0.3rem 0;
  }

  .footer_wj {
    left: 3%;
  }
}

@media screen and (max-width: 1366px) {
  .ft_title {
    font-size: 0.3rem;

    line-height: 0.42rem;

    color: #ffffff;

    padding: 0.48rem 29.68%;

    box-sizing: border-box;
  }
}

@media screen and (max-width: 1200px) {
  .footer_bottomMaxBox {
    padding: 0.28rem 0;
  }
}

@media screen and (max-width: 1024px) {
  .ft_infobox > ul > li:nth-child(2),
  .ft_infobox > ul > li:nth-child(3) {
    display: none;
  }

  .footer_wj {
    position: absolute;

    top: -4%;

    width: 2.5rem;

    height: 2.5rem;
  }

  .ft_title {
    font-size: 0.25rem;

    line-height: 0.42rem;

    padding: 0.4rem 29.68%;
  }

  .ft_contain {
    padding: 1rem 0 0.88rem 0;
  }

  .ft_infobox ul .first_li h3 {
    margin-bottom: 0.8rem;
  }

  .ft_infobox ul .first_li .first_li_dt dl a {
    width: 0.5rem;

    height: 0.5rem;
  }

  .ft_infobox ul .first_li .first_li_dt dl a iconify-icon {
    font-size: 0.24rem;
  }

  .footer_maxBox .footer_topMaxBox .fm_cuBtn {
    display: none;
  }
}

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

  .ft_title {
    font-size: 0.25rem;

    line-height: 0.4rem;

    padding: 0.3rem 0.5rem;
  }

  .ft_contain {
    padding: 0.4rem 0;
  }

  .ft_infobox ul {
    display: block;
  }

  .ft_infobox ul .first_li h3 {
    margin-bottom: 0.2rem;
  }

  .ft_infobox ul .first_li .first_li_dt dl a {
    width: 0.4rem;

    height: 0.4rem;
  }

  .ft_infobox ul .first_li .first_li_dt dl a iconify-icon {
    font-size: 0.2rem;
  }

  .ft_infobox ul .first_li {
    margin-bottom: 0.2rem;
  }

  .ft_nav_li h3 {
    font-size: 0.28rem;

    font-weight: bold;

    margin-bottom: 0.35rem;
  }

  .ftnl_dt {
    display: flex;

    gap: 0.2rem;

    flex-direction: row;

    flex-wrap: wrap;
  }

  .ftnl_dt li {
    width: calc((100% - 0.2rem) / 2);
  }

  .ftnl_dt li a {
    font-size: 0.16rem;

    line-height: 0.25rem;
  }

  .ftnl_dt li img {
    width: 0.2rem;

    height: 0.16rem;
  }
}

@media screen and (max-width: 425px) {
  .footer_bottomMaxBox {
    font-size: 0.1rem;

    padding: 0.1rem 0;
  }

  .ftnl_dt li {
    width: 100%;
  }

  .ft_nav_li h3 {
    margin-bottom: 0.2rem;
  }

  .ft_title {
    font-size: 0.2rem;

    line-height: 0.3rem;

    padding: 0.3rem 0.4rem;
  }
}

@media screen and (max-width: 320px) {
  .ft_nav_li h3 {
    font-size: 0.24rem;
  }

  .ft_infobox ul .first_li h3 {
    font-size: 0.14rem;

    line-height: 0.24rem;
  }
}

/* -----------------------------------home_banner------------------------------- */

.banner {
  width: 100%;

  overflow: hidden;

  position: relative;
}

.banner .swiper-container {
  margin: 0 auto;

  position: relative;

  overflow: hidden;

  list-style: none;

  padding: 0;
}

.banner .swiper-slide {
  /* height: 0; */

  padding-bottom: 48%;

  /* 设置比例 */

  position: relative;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .banner-bg {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.banner-pagination {
  display: block;

  text-align: center;

  bottom: 0.3rem !important;

  position: absolute;

  left: 50% !important;

  transform: translate(-50%, 0);

  z-index: 3;
}

.banner-pagination .swiper-pagination-bullet {
  width: 0.14rem;

  height: 0.14rem;

  display: inline-block;

  margin: 0 0.06rem;

  background: #ccc;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  outline: none;

  cursor: pointer;
}

.banner-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

.banner-button-prev,
.banner-button-next {
  display: block;

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.6rem;

  height: 0.6rem;

  cursor: pointer;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  z-index: 3;
}

.banner-button-prev {
  left: -0.8rem;
}

.banner-button-next {
  right: -0.8rem;
}

.banner-button-prev iconify-icon,
.banner-button-next iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  font-size: 0.4rem;

  color: #666;
}

.banner-button-prev:hover iconify-icon,
.banner-button-next:hover iconify-icon {
  color: var(--i_color);
}

.banner:hover .banner-button-prev {
  left: 0;
}

.banner:hover .banner-button-next {
  right: 0;
}

.b_text1 {
  position: absolute;

  top: 10%;

  left: 50%;

  transform: translateX(-50%);

  text-align: center;

  width: 72%;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.b_text1_text {
  font-family: Arial;

  font-size: 0.58rem;

  line-height: 0.72rem;

  font-weight: bold;

  text-align: center;

  color: #ffffff;

  margin-bottom: 0.2rem;
}

.b_text1_text2 {
  background: linear-gradient(
    90deg,
    rgba(38, 102, 164, 0) 1%,

    #2666a4 51%,

    rgba(38, 102, 164, 0) 99%
  );

  font-family: Arial;

  font-size: 0.18rem;

  color: #ffffff;

  padding: 0.2rem 0;

  width: fit-content;
  margin-bottom: 0.2rem;
}

.b_text2_text2 {
  background: var(--i_color);

  font-family: Arial;

  font-size: 0.2rem;

  color: #fff;

  padding: 0.2rem 0.3rem;

  width: fit-content;

  margin-bottom: 0.8rem;
  position: relative;
}
/* 左边底部白线 */
.b_text2_text2::before,
.b_text2_text2::after {
  content: "";
  position: absolute;
  bottom: 0; /* 往下贴一点 */
  width: 50%; /* 边框长度 */
  height: 80%; /* “往上少一点”的关键 */
  border-bottom: 0.05rem solid #fff;
}

/* 左 */
.b_text2_text2::before {
  left: -0.05rem;
  border-left: 0.05rem solid #fff;
}

/* 右 */
.b_text2_text2::after {
  right: -0.05rem;
  border-right: 0.05rem solid #fff;
}
.b_text2_btn a {
  background: linear-gradient(120deg, #2666a4, #3b8bd9, #2666a4);

  background-size: 200% 200%;

  color: #fff;

  border-radius: 0.3rem 0.3rem 0 0.3rem;

  padding: 0.15rem 0.64rem;

  cursor: pointer;

  font-size: 0.18rem;

  transition: background-position 0.4s ease, transform 0.3s ease,
    box-shadow 0.3s ease;

  display: inline-block;

  font-weight: bold;
}

.b_text2_btn a:hover {
  background-position: 100% 0;

  transform: translateY(-4px);

  box-shadow: 0 8px 18px rgba(38, 102, 164, 0.35);
}

@media screen and (max-width: 1440px) {
  .b_text1_text {
    font-size: 0.5rem;

    line-height: 0.7rem;

    margin-bottom: 0.2rem;
  }
}

@media screen and (max-width: 1366px) {
  .b_text1_text {
    font-size: 0.45rem;

    line-height: 0.6rem;

    margin-bottom: 0.2rem;
  }

  .b_text2_text2 {
    font-size: 0.18rem;

    padding: 0.18rem 0.3rem;

    margin-bottom: 0.8rem;
  }
}

@media screen and (max-width: 1200px) {
  .b_text1_text {
    font-size: 0.4rem;

    line-height: 0.55rem;

    margin-bottom: 0.2rem;
  }

  .b_text2_text2 {
    font-size: 0.18rem;

    padding: 0.18rem 0.3rem;

    margin-bottom: 0.6rem;
  }

  .b_text2_text2 {
    font-size: 0.16rem;

    padding: 0.18rem 0.3rem;

    margin-bottom: 0.6rem;
  }
}

@media screen and (max-width: 1024px) {
  .banner-button-prev,
  .banner-button-next {
    display: none;
  }

  .banner-pagination {
    bottom: 0.1rem !important;
  }

  .b_text1_text {
    font-size: 0.3rem;

    line-height: 0.45rem;

    margin-bottom: 0.2rem;
  }

  .b_text1_text2 {
    font-size: 0.16rem;

    padding: 0.18rem 0;
  }
}

@media screen and (max-width: 768px) {
  .banner-pagination .swiper-pagination-bullet {
    width: 0.1rem;

    height: 0.1rem;

    display: inline-block;

    margin: 0 0.06rem;

    background: #ccc;

    -webkit-border-radius: 50%;

    border-radius: 50%;

    outline: none;

    cursor: pointer;
  }

  .b_text1_text {
    font-size: 0.25rem;

    line-height: 0.38rem;

    margin-bottom: 0.15rem;
  }

  .b_text1_text2 {
    font-size: 0.14rem;

    padding: 0.15rem 0;
  }

  .b_text2_text2 {
    font-size: 0.14rem;

    padding: 0.15rem 0.25rem;

    margin-bottom: 0.6rem;
  }

  .b_text2_btn a {
    background-color: var(--i_color);

    color: #fff;

    border-radius: 0.3rem 0.3rem 0px 0.3rem;

    padding: 0.1rem 0.5rem;

    cursor: pointer;

    font-size: 0.16rem;
  }
}

@media screen and (max-width: 425px) {
  .b_text1_text {
    font-size: 0.14rem;

    line-height: 0.24rem;

    margin-bottom: 0.3rem;
  }

  .b_text1_text2 {
    display: none;
  }

  .b_text2_text2 {
    display: none;
  }

  .b_text2_btn a {
    padding: 0.1rem 0.4rem;

    font-size: 0.12rem;
  }
}

@media screen and (max-width: 320px) {
  .banner-pagination .swiper-pagination-bullet {
    width: 0.08rem;

    height: 0.08rem;

    display: inline-block;

    margin: 0 0.03rem;

    background: #ccc;

    -webkit-border-radius: 50%;

    border-radius: 50%;

    outline: none;

    cursor: pointer;
  }

  .b_text1_text {
    font-size: 0.12rem;

    line-height: 0.2rem;

    margin-bottom: 0.15rem;
  }

  .b_text2_btn {
    display: none;
  }
}

/* ------------------------Product Classification---------------------*/

.product_classification {
  padding: 0.6rem 0;
}

.pc_maxbox {
  display: flex;

  position: relative;
}

.pc_leftbox {
  width: 50%;

  box-sizing: border-box;

  position: relative;
}

.pc_leftbox h3,
.pc_leftbox h4,
.pc_leftbox .b_text2_btn {
  position: absolute;

  z-index: 3;
}

.pc_leftbox h3 {
  font-family: Arial;

  font-size: 0.44rem;

  font-weight: bold;

  color: #ffffff;

  left: 21.9%;

  top: 12%;

  width: 64%;
}

.pc_leftbox h3 i {
  color: var(--i_color);

  font-family: Arial;

  font-size: 0.44rem;

  font-weight: bold;

  line-height: normal;

  text-transform: capitalize;

  letter-spacing: 0em;
}

.pc_leftbox h3::before {
  position: absolute;

  content: "";

  display: block;

  width: 8%;

  height: 0.04rem;

  background-color: var(--i_color);

  bottom: -0.1rem;

  left: 0;
}

.pc_leftbox h4 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.32rem;

  color: #ffffff;

  left: 21.9%;

  top: 23.9%;

  width: 64%;
}

.pc_leftbox .b_text2_btn {
  left: 21.9%;

  top: 63.24%;
}

.pc_leftbox p {
  width: 100%;

  position: relative;
}

.pc_leftbox p::before {
  content: "";

  display: block;

  padding-bottom: 77.5%;
}

.pc_leftbox p img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  z-index: 1;
}

.pc_rightbox {
  width: 50%;
}

.pc_rightbox .pc_rightimg {
  position: relative;

  display: none;
}

.pc_rightbox .pc_rightimg.active {
  display: block;

  animation: fadeScale 0.9s ease forwards;
}

@keyframes fadeScale {
  0% {
    transform: scale(0.8);

    opacity: 0;
  }

  100% {
    transform: scale(1);

    opacity: 1;
  }
}

.pc_rightbox .pc_rightimg::before {
  content: "";

  display: block;

  padding-bottom: 77.5%;
}

.pc_rightbox .pc_rightimg img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.pc_btnlist {
  position: absolute;

  left: 50%;

  transform: translate(-50%, -50%);

  top: 50%;

  z-index: 3;
}

.pc_btnlist ul {
  display: flex;

  flex-direction: column;

  gap: 0.15rem;

  box-sizing: border-box;
}

.pc_btnlist ul li {
  width: 1rem;

  height: 1rem;

  background-color: #fff;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;
}

.pc_btnlist ul li a {
  width: 90%;

  height: 90%;

  border-radius: 50%;

  border: var(--i_color) 1px dashed;

  display: flex;

  align-items: center;

  justify-content: center;
}

.pc_btnlist ul li a span {
  width: 75%;

  height: 75%;
}

.pc_btnlist ul li a span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  filter: brightness(0) saturate(100%) invert(29%) sepia(84%) saturate(3920%)
    hue-rotate(197deg) brightness(94%) contrast(96%);
}

.pc_btnlist ul li:hover {
  background-color: var(--i_color);
}

.pc_btnlist ul li:hover a {
  border: 1px dashed rgba(255, 255, 255, 0.4);
}

.pc_btnlist ul li:hover a span img {
  filter: brightness(0) invert(1);
}

.pc_btnlist ul li.active {
  background-color: var(--i_color);
}

.pc_btnlist ul li.active a {
  border: 1px dashed rgba(255, 255, 255, 0.4);
}

.pc_btnlist ul li.active a span img {
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 1440px) {
  .pc_leftbox h3 {
    left: 6%;
  }

  .pc_leftbox h4 {
    left: 6%;
  }

  .pc_leftbox .b_text2_btn {
    left: 6%;
  }

  .pc_btnlist ul li {
    width: 0.8rem;

    height: 0.8rem;
  }
}

@media screen and (max-width: 1366px) {
  .pc_leftbox h4 {
    top: 26.9%;

    width: 80%;
  }

  .pc_leftbox .b_text2_btn {
    top: 70.24%;
  }
}

@media screen and (max-width: 1200px) {
  .pc_leftbox h3 {
    font-size: 0.4rem;

    width: 80%;
  }

  .pc_leftbox h4 {
    font-size: 0.16rem;

    line-height: 0.3rem;
  }

  .pc_btnlist ul li {
    width: 0.65rem;

    height: 0.65rem;
  }
}

@media screen and (max-width: 1024px) {
  .pc_leftbox h3 {
    font-size: 0.3rem;

    text-align: center;

    width: 100%;

    left: 0;
  }

  .pc_leftbox h3 i {
    font-size: 0.3rem;
  }

  .pc_leftbox h3::before {
    left: 50%;

    transform: translateX(-50%);
  }

  .pc_leftbox h4 {
    line-height: 0.25rem;

    width: 90%;

    left: 5%;

    text-align: center;

    top: 32.9%;
  }

  .pc_leftbox .b_text2_btn {
    top: 81.24%;
  }

  .pc_maxbox {
    display: block;
  }

  .pc_leftbox {
    width: 100%;
  }

  .pc_rightbox {
    width: 100%;
  }

  .pc_leftbox p::before {
    content: "";

    display: block;

    padding-bottom: 34.5%;
  }

  .pc_leftbox .b_text2_btn {
    left: 75%;

    top: 78%;
  }

  .pc_btnlist {
    position: absolute;

    left: 31%;

    top: 33%;
  }

  .pc_btnlist ul {
    display: flex;

    flex-direction: row;

    gap: 0.3rem;
  }

  .pc_rightbox .pc_rightimg::before {
    content: "";

    display: block;

    padding-bottom: 50.5%;
  }
}

@media screen and (max-width: 768px) {
  .pc_leftbox h3 {
    font-size: 0.25rem;
  }

  .pc_leftbox h4 {
    font-size: 0.14rem;

    line-height: 0.22rem;
  }

  .pc_leftbox .b_text2_btn {
    left: 70%;

    top: 77%;
  }

  .pc_btnlist {
    left: 34%;

    top: 33%;
  }

  .pc_btnlist ul li {
    width: 0.5rem;

    height: 0.5rem;
  }
}

@media screen and (max-width: 425px) {
  .pc_leftbox p::before {
    padding-bottom: 83.5%;
  }

  .pc_leftbox .b_text2_btn {
    display: none;
  }

  .pc_btnlist ul {
    gap: 0.15rem;
  }

  .pc_btnlist {
    left: 50%;

    top: 52%;
  }

  .pc_leftbox h3 {
    top: 8.16%;
  }

  .pc_leftbox h4 {
    top: 25.9%;
  }

  .product_classification {
    padding: 0;
  }
}

@media screen and (max-width: 375px) {
  .pc_btnlist ul li {
    width: 0.4rem;

    height: 0.4rem;
  }

  .pc_btnlist {
    top: 54%;
  }
}

@media screen and (max-width: 320px) {
  .pc_leftbox h3 {
    font-size: 0.22rem;
  }

  .pc_leftbox h3 i {
    font-size: 0.22rem;
  }

  .pc_leftbox h4 {
    font-size: 0.13rem;

    line-height: 0.2rem;
  }

  .pc_leftbox p::before {
    padding-bottom: 109.5%;
  }

  .pc_btnlist {
    top: 58%;
  }

  .pc_btnlist ul {
    gap: 0.1rem;
  }
}

/* ----------------------------Hot Products------------------------- */

.hot_products {
  padding: 0.6rem 0;
}

.hp_maxbox {
}

.hp_btnlist {
  margin-bottom: 0.4rem;
}

.hp_btnlist ul {
  display: flex;

  gap: 0.1rem;
}

.hp_btnlist ul li {
  position: relative;

  overflow: hidden;

  background: #f1f1f1;

  padding: 0.26rem 0;

  text-align: center;

  width: calc((100% - 0.2rem) / 3);

  color: #333333;

  font-family: Arial;

  font-size: 0.24rem;

  font-weight: bold;

  cursor: pointer;
}

.hp_btnlist ul li a {
  position: relative;

  z-index: 1;

  display: block;
}

.hp_btnlist ul li::before {
  content: "";

  position: absolute;

  inset: 0;

  background: var(--i_color);

  transform: scaleX(0);

  transform-origin: center;

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

  z-index: 0;
}

.hp_btnlist ul li.active::before {
  transform: scaleX(1);
}

.hp_btnlist ul li.active a {
  color: #fff;
}

.hp_list_contain ul {
  display: none;
}

.hp_list_contain ul.active {
  display: flex;

  gap: 0.16rem;

  flex-wrap: wrap;
}

.hp_list_contain ul li {
  width: calc((100% - 0.16rem * 3) / 4);

  padding-bottom: 0.4rem;

  position: relative;

  cursor: pointer;

  border-bottom: #333333 2px solid;
}

.hp_list_contain ul li::before {
  content: "";

  position: absolute;

  left: 0;

  bottom: -0.02rem;

  width: 100%;

  height: 3px;

  background-color: var(--i_color);

  transform: scaleX(0); /* 初始是 0 */

  transform-origin: left;

  transition: transform 0.4s ease;
}

.hp_list_contain ul li::after {
  content: "+";

  position: absolute;

  left: 50%;

  bottom: -0.13rem;

  transform: translateX(-50%);

  width: 0.26rem;

  height: 0.26rem;

  line-height: 0.26rem;

  text-align: center;

  background: #333;

  color: #fff;

  font-size: 0.2rem;

  font-weight: bold;

  border-radius: 50%;
}

.hp_list_contain ul li a span {
  position: relative;

  display: block;
}

.hp_list_contain ul li a span::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.hp_list_contain ul li a span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hp_list_contain ul li a h3 {
  font-family: Arial;

  font-size: 0.16rem;

  color: #666666;

  padding: 0.12rem 0 0.2rem 0.12rem;
}

.hp_list_contain ul li a h4 {
  font-family: Arial;

  font-size: 0.2rem;

  font-weight: bold;

  line-height: 0.26rem;

  color: #333333;

  padding: 0 0 0.2rem 0.12rem;
}

.hp_list_contain ul li a h5 {
  margin: 0 0.12rem;

  padding: 0.2rem 0 0.1rem 0;

  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.24rem;

  border-top: 1px solid rgba(0, 0, 0, 0.12);

  color: #666666;
}

.hp_list_contain ul li a h5 i {
  color: #ed4141;

  font-family: Arial;

  font-weight: 700;

  font-size: 0.2rem;
}

.hp_list_contain ul li a h5 b {
  color: #333333;

  font-family: Arial;

  font-weight: 400;

  font-size: 0.16rem;
}

.hp_list_contain ul li a h6 {
  margin: 0 0.12rem;

  font-family: Arial;

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.24rem;

  color: #666666;
}

.hp_list_contain ul li a h6 b {
  color: #333333;
}

.hp_list_contain ul li:hover a h4 {
  color: var(--i_color);
}

.hp_list_contain ul li:hover::before {
  transform: scaleX(1);
}

.hp_list_contain ul li:hover::after {
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .hp_btnlist ul li {
    padding: 0.18rem 0;

    font-size: 0.22rem;
  }

  .hp_list_contain ul li {
    width: calc((100% - 0.16rem * 2) / 3);

    padding-bottom: 0.4rem;

    border-bottom: #333333 2px solid;

    position: relative;
  }

  .hp_btnlist {
    margin-bottom: 0.25rem;
  }

  .hp_list_contain ul li a h3 {
    padding: 0.1rem 0 0.1rem 0.12rem;
  }

  .hp_list_contain ul li a h4 {
    font-size: 0.18rem;

    line-height: 0.24rem;

    padding: 0 0 0.15rem 0.12rem;
  }

  .hp_list_contain ul li a h5 {
    padding: 0.15rem 0 0 0;

    font-size: 0.16rem;

    line-height: 0.24rem;
  }

  .hp_list_contain ul li a h5 i {
    font-size: 0.18rem;
  }

  .hp_list_contain ul li {
    padding-bottom: 0.3rem;
  }
}

@media screen and (max-width: 425px) {
  .hp_btnlist ul li {
    padding: 0.1rem 0;

    font-size: 0.16rem;
  }

  .hp_list_contain ul li {
    width: calc((100%));

    padding-bottom: 0.4rem;

    border-bottom: #333333 2px solid;

    position: relative;
  }

  .hot_products {
    padding: 0.3rem 0;
  }
}

/* -----------------------Company Profile----------------------- */

.company_profile {
  padding: 0.6rem 0;

  position: relative;
}

.company_profile .cp_bg {
  position: absolute;

  bottom: 0rem;

  right: 0rem;

  width: 21%;

  height: 71%;
}

.company_profile .cp_bg img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  z-index: 2;
}

.cp_maxbox {
  display: flex;

  justify-content: space-between;
}

.cp_leftbox {
  width: 47.7%;
}

.cp_leftbox .cp_leftmax_span {
  position: relative;
}

.cp_leftbox .cp_leftmax_span::before {
  content: "";

  display: block;

  padding-bottom: 103.5%;
}

.cp_leftbox .cp_leftmax_span::after {
  content: "";

  position: absolute;

  top: 0;

  left: 0.8rem;

  width: 0.15rem;

  height: 33.5%;

  background-color: var(--i_color);
}

.cp_leftbg1 {
  position: absolute;

  top: 0;

  right: 0;

  width: 84.5%;

  height: 87%;

  object-fit: cover;
}

.cp_leftbg2 {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 54.3%;

  height: 49%;

  object-fit: cover;
}

.cp_videodiv {
  width: 1.56rem;

  height: 1.56rem;

  border-radius: 50%;

  border: var(--i_color) 5px solid;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;
}

.cp_videodiv .cp_btnspan {
  width: 0.7rem;

  height: 0.7rem;

  border-radius: 50%;

  background-color: var(--i_color);

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;
}

.cp_videodiv .cp_btnspan img {
  width: 0.31rem;

  height: 0.31rem;

  object-fit: contain;
}

.cp_rightbox {
  width: 47.6%;

  padding: 0.58rem 0 0 0;

  z-index: 0;
}

.cp_rightbox .cpr_topp {
  font-family: Arial;

  font-size: 0.18rem;

  color: var(--i_color);

  position: relative;

  width: fit-content;

  margin-bottom: 0.1rem;
}

.cp_rightbox .cpr_topp::before {
  content: "";

  position: absolute;

  top: -0.15rem;

  left: 0;

  width: 50%;

  height: 0.05rem;

  background-color: var(--i_color);

  margin-bottom: 0.1rem;
}

.cp_rightbox h3 {
  font-family: Arial;

  font-size: 0.4rem;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.24rem;
}

.cp_rightbox h4 {
  font-family: Arial;

  font-size: 0.18rem;

  line-height: 150%;

  color: #666666;

  margin-bottom: 0.6rem;
}

.cp_right_ul {
  display: flex;

  gap: 0.3rem;

  flex-wrap: wrap;
}

.cp_right_ul li {
  width: calc((100% - 0.6rem) / 3);

  background: #f1f8ff;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 0.23rem;

  padding: 0.3rem 0.57rem;

  box-sizing: border-box;

  cursor: pointer;

  position: relative;
}

.cp_right_ul li::before {
  width: 0.12rem;

  height: 0.12rem;

  content: "";

  display: block;

  left: 0.2rem;

  top: 0.2rem;

  background: var(--i_color);

  border-radius: 50%;

  position: absolute;
}

.cp_right_ul li span {
  width: 0.82rem;

  height: 0.78rem;
}

.cp_right_ul li span img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.cp_right_ul li p {
  font-family: Arial;

  font-size: 0.18rem;

  line-height: 150%;

  color: var(--i_color);
}

@media screen and (max-width: 1400px) {
  .company_profile .cp_bg {
    position: absolute;

    bottom: 0rem;

    right: 0rem;

    width: 28%;

    height: 86%;
  }
}

@media screen and (max-width: 1200px) {
  .company_profile .cp_bg img {
    display: none;
  }

  .cp_leftbox .cp_leftmax_span::after {
    left: 0.6rem;
  }

  .cp_videodiv {
    width: 1.2rem;

    height: 1.2rem;
  }

  .cp_videodiv .cp_btnspan {
    width: 0.6rem;

    height: 0.6rem;
  }

  .cp_videodiv .cp_btnspan img {
    width: 0.25rem;

    height: 0.25rem;
  }

  .cp_rightbox {
    padding: 0.4rem 0 0 0;
  }

  .cp_rightbox h3 {
    font-size: 0.3rem;

    margin-bottom: 0.24rem;
  }

  .cp_right_ul li span {
    width: 0.7rem;

    height: 0.65rem;
  }

  .cp_right_ul li p {
    font-size: 0.15rem;
  }
}

@media screen and (max-width: 1024px) {
  .cp_leftbox .cp_leftmax_span::after {
    left: 0.45rem;

    width: 0.12rem;
  }

  .cp_videodiv {
    width: 1rem;

    height: 1rem;
  }

  .cp_videodiv .cp_btnspan {
    width: 0.5rem;

    height: 0.5rem;
  }

  .cp_leftbox {
    width: 47.7%;

    display: flex;

    flex-direction: column;

    justify-content: center;
  }

  .cp_rightbox h3 {
    font-size: 0.24rem;

    margin-bottom: 0.2rem;
  }

  .cp_rightbox h4 {
    margin-bottom: 0.4rem;

    font-size: 0.16rem;
  }

  .cp_right_ul li span {
    width: 0.55rem;

    height: 0.55rem;
  }

  .cp_right_ul li {
    padding: 0.2rem 0.57rem;
  }
}

@media screen and (max-width: 768px) {
  .cp_maxbox {
    display: block;
  }

  .cp_leftbox {
    width: 100%;
  }

  .cp_rightbox {
    width: 100%;
  }

  .cp_leftbox .cp_leftmax_span::after {
    left: 0.8rem;

    width: 0.12rem;
  }
}

@media screen and (max-width: 425px) {
  .cp_videodiv {
    width: 0.8rem;

    height: 0.8rem;
  }

  .cp_videodiv .cp_btnspan img {
    width: 0.2rem;

    height: 0.2rem;
  }

  .cp_leftbox .cp_leftmax_span::after {
    left: 0.4rem;

    width: 0.12rem;
  }

  .cp_right_ul li {
    width: calc((100% - 0.3rem) / 2);
  }

  .company_profile {
    padding: 0.3rem 0;
  }
}

@media screen and (max-width: 375px) {
  .cp_leftbox .cp_leftmax_span::after {
    left: 0.35rem;

    width: 0.12rem;
  }
}

@media screen and (max-width: 320px) {
  .cp_leftbox .cp_leftmax_span::after {
    left: 0.25rem;

    width: 0.12rem;
  }

  .cp_videodiv {
    width: 0.6rem;

    height: 0.6rem;
  }

  .cp_videodiv .cp_btnspan {
    width: 0.4rem;

    height: 0.4rem;
  }

  .cp_videodiv .cp_btnspan img {
    width: 0.16rem;

    height: 0.16rem;
  }
}

/* eject videos */

.vd_box {
  display: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100vh;

  background: rgba(0, 0, 0, 0.5);

  z-index: 999999;
}

.vd_box_area {
  position: absolute;

  top: 52%;

  left: 50%;

  transform: translate(-50%, -50%);

  z-index: 2014;

  width: 60%;

  max-height: 90%;
}

.vd_box_area::before {
  content: "";

  display: block;

  padding-bottom: 56.25%;
}

.close_v {
  position: absolute;

  top: -0.2rem;

  right: -0.2rem;

  width: 0.4rem;

  height: 0.4rem;

  background: var(--i_color);

  z-index: 2;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  cursor: pointer;
}

.close_v::before {
  content: "+";

  position: absolute;

  top: 46%;

  left: 53%;

  font-size: 0.44rem;

  color: #fff;

  -webkit-transform: translate(-50%, -50%) rotate(45deg);

  transform: translate(-50%, -50%) rotate(45deg);
}

.vd_box iframe {
  position: absolute;

  top: 0;

  right: 0;

  width: 100%;

  height: 100%;

  background: #000;

  object-fit: contain;
}

@media screen and (max-width: 1024px) {
  .vd_box_area {
    width: 80%;
  }

  .close_v::before {
    font-size: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  .vd_box_area {
    width: 88%;
  }

  .close_v {
    top: -0.15rem;

    right: -0.15rem;

    width: 0.3rem;

    height: 0.3rem;
  }

  .close_v::before {
    font-size: 0.3rem;
  }
}

/* ------------------------home_environment----------------------- */

.home_environment {
  padding: 0.6rem 0;
}

.he_maxbox {
}

.he_swiper_contain {
  margin: 0 auto;

  position: relative;

  overflow: hidden;

  list-style: none;

  padding: 0;
}

.he_swiper_contain .swiper-wrapper {
}

.he_swiper_contain .swiper-wrapper .swiper-slide {
  /* height: 0; */

  padding-bottom: 29%;

  /* 设置比例 */

  position: relative;
}

.he_swiper_contain .swiper-slide::after {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 87.5%;

  background: rgba(255, 255, 255, 0.6); /* 白色遮罩强度可调 */

  z-index: 2;

  pointer-events: none;
}

.he_swiper_contain .swiper-slide-active::after {
  opacity: 0;
}

.he_swiper_contain .swiper-wrapper .swiper-slide img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 87.5%;

  object-fit: cover;
}

.he_swiper_contain .swiper-wrapper .swiper-slide p {
  position: absolute;

  bottom: 0.2rem;

  left: 50%;

  transform: translateX(-50%);

  font-family: Arial;

  font-size: 0.24rem;

  font-weight: bold;

  line-height: 0.32rem;

  color: #333333;

  text-align: center;

  white-space: nowrap;

  display: none;
}

.he_swiper_contain .swiper-wrapper .swiper-slide-active p {
  display: block;
}

.he_btn_prev,
.he_btn_next {
  width: 0.44rem;

  height: 0.44rem;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid var(--i_color);

  position: absolute;

  z-index: 3;
}

.he_btn_prev img,
.he_btn_next img {
  filter: brightness(0) saturate(100%) invert(33%) sepia(69%) saturate(1900%)
    hue-rotate(196deg) brightness(90%) contrast(95%);
}

.he_btn_next {
  top: 41%;

  right: 23%;
}

.he_btn_prev {
  left: 23%;

  top: 41%;
}

.he_btn_prev:hover,
.he_btn_next:hover {
  background: var(--i_color);
}

.he_btn_prev:hover img,
.he_btn_next:hover img {
  filter: brightness(0) invert(1);
}

.he_btn_pagination {
  text-align: center;

  display: none;
}

.he_btn_pagination .swiper-pagination-bullet-active {
  background: var(--i_color);

  background-size: contain;

  border-radius: 50%;

  -webkit-border-radius: 0.24rem;

  -moz-border-radius: 0.24rem;

  -ms-border-radius: 0.24rem;

  -o-border-radius: 0.24rem;
}

@media screen and (max-width: 1440px) {
  .he_swiper_contain .swiper-wrapper .swiper-slide p {
    bottom: 0.1rem;
  }
}

@media screen and (max-width: 1200px) {
  .he_btn_prev {
    left: 22%;
  }

  .he_btn_next {
    right: 22%;
  }
}

@media screen and (max-width: 1024px) {
  .he_swiper_contain .swiper-wrapper .swiper-slide p {
    bottom: 0;

    font-size: 0.2rem;
  }

  .he_btn_prev,
  .he_btn_next {
    width: 0.4rem;

    height: 0.4rem;
  }

  .he_btn_prev {
    left: 21%;
  }

  .he_btn_next {
    right: 21%;
  }
}

@media screen and (max-width: 768px) {
  .he_btn_prev {
    left: 20%;

    top: 35%;
  }

  .he_btn_next {
    right: 20%;

    top: 35%;
  }

  .he_swiper_contain .swiper-wrapper .swiper-slide p {
    bottom: 0;

    font-size: 0.16rem;
  }

  .he_swiper_contain .swiper-wrapper .swiper-slide img {
    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 84.5%;
  }
}

@media screen and (max-width: 425px) {
  .he_swiper_contain .swiper-wrapper .swiper-slide p {
    display: none;
  }

  .he_btn_prev,
  .he_btn_next {
    display: none;
  }

  .he_swiper_contain .swiper-wrapper .swiper-slide {
    padding-bottom: 66%;
  }

  .he_swiper_contain .swiper-wrapper .swiper-slide img {
    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;
  }

  .he_swiper_contain .swiper-slide::after {
    opacity: 0;
  }

  .he_btn_pagination {
    display: block;
  }

  .home_environment {
    padding: 0.3rem 0;
  }
}

/* -------------------------------------home_news---------------------------- */

.home_news {
  padding: 0.6rem 0 1rem 0;
}

.hn_maxbox {
}

.hn_topbox {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.hn_leftbox {
  width: 70%;
}

.newtitle {
  text-align: left;
}

.newtitle h4 {
  text-align: left;
}

.hn_rightbox {
}

.hn_contain {
}

.hn_firstNews {
  margin-bottom: 0.2rem;
}

.hn_firstNews .hn_firUl {
  display: flex;

  justify-content: space-between;

  cursor: pointer;
}

.hn_firstNews .hn_firUl:hover .hn_firLi a h4 {
  color: var(--i_color);
}

.hn_firstNews .hn_firUl li:first-child {
  width: 46.5%;
}

.hn_firstNews .hn_firUl li:not(:first-child) {
  width: 50%;
}

.hn_firLi a h3 {
  font-family: Arial;

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.32rem;

  color: #999999;

  margin-bottom: 0.2rem;
}

.hn_firLi a h4 {
  font-family: Arial;

  font-size: 0.24rem;

  font-weight: bold;

  line-height: 0.32rem;

  color: #333333;

  margin-bottom: 0.2rem;
}

.hn_firLi a h5 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.28rem;

  color: #666666;

  margin-bottom: 0.2rem;
}

.hn_firLi a span {
  width: 0.15rem;

  height: 0.12rem;

  display: block;
}

.hn_firLi a span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  filter: brightness(0) saturate(100%) invert(33%) sepia(69%) saturate(1900%)
    hue-rotate(196deg) brightness(90%) contrast(95%);
}

.hn_secLi span {
  position: relative;
}

.hn_secLi span::before {
  content: "";

  display: block;

  padding-bottom: 45.5%;
}

.hn_secLi span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hn_nextdiv {
}

.hn_nextdiv ul {
  display: flex;

  border: rgba(51, 51, 51, 0.2) 1px solid;

  border-left: none;

  border-right: none;

  position: relative;
}

.hn_nextdiv ul::before {
  content: "";

  position: absolute;

  width: 1px;

  height: 70%;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  background: rgba(51, 51, 51, 0.2);
}

.hn_nextdiv ul li {
  width: 50%;
}

.hn_nextdiv ul li:hover a span {
  color: var(--i_color);
}

.hn_nextdiv ul li:hover a::before {
  background: var(--i_color);
}

.hn_nextdiv ul li a {
  width: 100%;

  padding: 0.32rem;

  display: flex;

  justify-content: space-between;

  position: relative;

  cursor: pointer;

  box-sizing: border-box;
}

.hn_nextdiv ul li a::before {
  position: absolute;

  content: "";

  display: block;

  background: #333333;

  border-radius: 50%;

  width: 0.08rem;

  height: 0.08rem;

  top: 47%;

  left: 0.1rem;
}

.hn_nextdiv ul li a span {
  font-family: Arial;

  font-size: 0.24rem;

  font-weight: bold;

  line-height: 0.32rem;

  color: #333333;

  width: 75%;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

  display: inline-block;
}

.hn_nextdiv ul li a i {
  font-family: Arial;

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.32rem;

  color: #999999;

  display: flex;

  align-items: center;
}

.hn_nextdiv ul li:nth-child(2) {
  padding-left: 0.3rem;

  box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
  .hn_nextdiv ul li a span {
    font-size: 0.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .hn_firLi a h3 {
    font-size: 0.16rem;

    line-height: 0.25rem;

    margin-bottom: 0.1rem;
  }

  .hn_firLi a h4 {
    font-size: 0.2rem;

    line-height: 0.3rem;

    margin-bottom: 0.15rem;
  }

  .hn_firLi a h5 {
    font-size: 0.16rem;

    line-height: 0.25rem;

    margin-bottom: 0.15rem;
  }

  .hn_secLi {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;
  }

  .hn_secLi a {
    width: 100%;
  }

  .hn_nextdiv ul li a span {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 768px) {
  .hn_firstNews .hn_firUl {
    display: block;
  }

  .hn_firstNews .hn_firUl li:first-child {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .hn_firstNews .hn_firUl li:not(:first-child) {
    width: 100%;
  }

  .hn_nextdiv ul {
    display: block;
  }

  .hn_nextdiv ul li {
    width: 100%;
  }

  .hn_nextdiv ul li:first-child {
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  }

  .hn_nextdiv ul::before {
    display: none;
  }

  .hn_nextdiv ul li:nth-child(2) {
    padding-left: 0;
  }
}

@media screen and (max-width: 425px) {
  .hn_topbox {
    display: block;

    margin-bottom: 0.2rem;
  }

  .hn_leftbox {
    width: 100%;
  }

  .hn_rightbox {
    width: 100%;

    display: flex;

    justify-content: flex-end;
  }

  .hn_nextdiv ul li a i {
    font-size: 0.14rem;

    line-height: 0.25rem;
  }

  .hn_nextdiv ul li a {
    padding: 0.15rem 0.25rem;
  }

  .home_news {
    padding: 0.3rem 0;
  }

  .hn_nextdiv ul li a::before {
    top: 43%;
  }
}

@media screen and (max-width: 375px) {
  .hn_firLi a h3 {
    font-size: 0.14rem;

    line-height: 0.2rem;

    margin-bottom: 0.1rem;
  }

  .hn_firLi a h4 {
    font-size: 0.16rem;

    line-height: 0.25rem;

    margin-bottom: 0.1rem;
  }

  .hn_firLi a h5 {
    font-size: 0.14rem;

    line-height: 0.22rem;

    margin-bottom: 0.15rem;
  }

  .hn_nextdiv ul li a span {
    font-size: 0.14rem;
  }

  .hn_nextdiv ul li a i {
    font-size: 0.12rem;

    line-height: 0.22rem;

    display: flex;

    align-items: center;

    justify-content: center;
  }
}

/* ----------------------------------子页面banner---------------------------------- */

.products-banner {
  width: 100%;

  position: relative;
}

.products-banner::before {
  content: "";

  display: block;

  padding-bottom: 29.5%;
}

.products-banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;
}

/* ---------------------------------------Breadcrumb--------------------------------------- */

.in_position {
  box-sizing: border-box;

  padding: 0.2rem 0;

  background: rgba(249, 252, 255, 0.7);

  position: relative;
}

.in_position .wrap {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;
}

.in_position a {
  display: block;

  font-size: 0.16rem;

  color: #666666;

  position: relative;

  line-height: 0.2rem;
}

.in_position a:first-child {
  padding-left: 0.26rem;
}

.in_position a:first-child::before {
  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0;

  width: 0.18rem;

  height: 0.18rem;

  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="80" height="80" viewBox="0 0 2048 2048"%3E%3Cpath fill="currentColor" d="m1024 165l941 942l-90 90l-83-82v805h-640v-640H896v640H256v-805l-83 82l-90-90l941-942zm640 1627V987l-640-640l-640 640v805h384v-640h512v640h384z"%2F%3E%3C%2Fsvg%3E')
    no-repeat center;

  background-size: contain;
}

.in_position a:not(:last-child):after {
  content: ">";

  margin: 0 4px;

  color: #555;
}

.in_position a:last-child {
  color: var(--i_color) !important;
}

.in_position a:hover {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .in_position {
    padding: 0.16rem 0;
  }

  .in_position a {
    font-size: 14px;
  }
}

@media screen and (max-width: 560px) {
  .in_position {
    padding: 0.12rem 0;
  }

  .in_position a {
    font-size: 13px;
  }
}

/* ---------------------------------------products.html--------------------------------- */

/* ---------------------------------------products--------------------------------------- */

.products_bac {
  box-sizing: border-box;

  background-color: #fff;

  padding: 0.6rem 0;
}

.products {
  display: flex;

  gap: 0.8rem;
}

.products_left {
  width: 3.6rem;

  box-sizing: border-box;
}

.products_left_all {
  background-color: #f2f7fb;

  padding: 0.34rem 0.3rem;
}

.products_left_h2 {
  font-size: 0.2rem;

  text-transform: capitalize;

  box-sizing: border-box;

  text-align: center;

  color: #fff;

  background-color: var(--i_color);

  box-sizing: border-box;

  padding: 0.2rem;

  font-weight: bold;

  margin-bottom: 0.1rem;
}

.products_left_h2 iconify-icon {
  color: #fff;

  font-size: 0.34rem;

  margin-left: 0.1rem;

  font-weight: bold;

  margin-bottom: 2px;

  display: none;
}

.list {
  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  box-sizing: border-box;

  gap: 0.2rem;
}

.list li {
  position: relative;
}

/* .list li::after{

	content: '';

	position: absolute;

	bottom: 0;

	left: 50%;

	transform: translate(-50%,0);

	width: 100%;

	height: 1px;

	background-color: rgba(51, 51, 51, 0.2);

} */

.list_a {
  box-sizing: border-box;

  padding: 0.2rem 0.2rem;

  position: relative;

  z-index: 2;

  overflow: hidden;

  background-color: #fff;
}

.list_a::after {
  content: "";

  position: absolute;

  top: 0;

  right: 0;

  background-color: #fff;

  width: 0;

  height: 100%;

  transition: all 0.5s ease-in-out;

  z-index: -1;
}

.list .list_a a {
  font-size: 0.18rem;

  color: #222;

  font-weight: bold;

  box-sizing: border-box;

  line-height: 110%;

  transition: all 0.3s ease;

  display: block;
}

.list .list_a i {
  width: 0.5rem;

  height: 0.55rem;

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  right: 0;

  cursor: pointer;
}

.list .list_a i iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  font-size: 0.24rem;

  color: #222;

  transition: all 0.3s ease;
}

.list_dl {
  padding: 0.2rem 0.08rem 0 0.08rem;

  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  box-sizing: border-box;

  gap: 0.2rem;
}

.list_dl dt {
  box-sizing: border-box;
}

.list_dl dt a {
  font-size: 0.16rem;

  color: #222;

  display: block;

  transition: all 0.3s ease;

  position: relative;

  box-sizing: border-box;

  padding: 0rem 0.2rem;
}

.list_dl dt a::after {
  content: "";

  position: absolute;

  left: -0.1rem;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.07rem;

  height: 0.07rem;

  background-color: var(--i_color);

  opacity: 0;

  transition: all 0.3s ease;

  border-radius: 50%;
}

.list_dl dt a:hover::after,
.list_dl dt a:hover::before {
  opacity: 1;
}

.list_active {
}

.list_active .list_a::after {
  width: 100%;

  left: 0;

  right: auto;
}

.list_active .list_a i iconify-icon {
  color: var(--i_color);

  transform: translate(-50%, -50%) rotate(180deg);
}

.list_active .list_a a {
  color: var(--i_color);

  display: block;
}

.list_dl_active a::after,
.list_dl_active a::before {
  opacity: 1 !important;

  left: 0 !important;
}

.list_dl dt a:hover::after {
  opacity: 1 !important;

  left: 0 !important;
}

.list_dl dt a:hover {
  color: var(--i_color);
}

.list_dl_active a {
  color: var(--i_color) !important;
}

.list_active .list_dl {
}

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

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

@media screen and (max-width: 1200px) {
  .products_left_h2 {
    font-size: 0.28rem;
  }
}

@media screen and (max-width: 1024px) {
  .products_left {
    width: 100%;
  }

  .products_left_h2 iconify-icon {
    display: block;
  }

  .products_left_h2 {
    display: flex;

    display: -webkit-flex;

    align-items: center;

    justify-content: center;
  }

  .products_left_h2 {
    margin-bottom: 0;
  }

  .list {
    margin-top: 0.2rem;
  }

  .products_left_h2 {
    color: #fff;

    background-color: var(--i_color);

    box-sizing: border-box;

    padding: 0.15rem 0;
  }

  .list {
    padding-bottom: 0.2rem;
  }

  .products_left_all {
    padding: 0.2rem;
  }
}

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

@media screen and (max-width: 767px) {
  .products_left_h2 {
    font-size: 0.2rem;
  }

  .products_left_h2 iconify-icon {
    font-size: 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .products_left_h2 {
    font-size: 0.18rem;
  }

  .products_left_h2 iconify-icon {
    font-size: 0.25rem;
  }
}

@media screen and (max-width: 425px) {
  .products_bac {
    box-sizing: border-box;

    background-color: #fff;

    padding: 0.3rem 0;
  }
}

.products_right {
  flex: 1;
}

.products_right_top {
  display: flex;

  flex-direction: column;

  gap: 0.1rem;

  margin-bottom: 0.2rem;
}

.products_right_top_title {
  color: #333333;

  font-family: Roboto;

  font-weight: 600;

  font-size: var(--title_fz);
}

.products_right_top_des {
  font-size: 0.18rem;

  line-height: 0.3rem;

  color: #666666;
}

.products_right_contain_excavatorList {
  display: flex;

  flex-wrap: wrap;

  width: 100%;
}

.products_right_contain_excavatorList ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.3rem 0.25rem;

  width: 100%;
}

.products_right_contain_excavatorList ul li {
  width: calc((100% - 0.5rem) / 3);

  position: relative;

  box-sizing: border-box;

  padding-bottom: 0.3rem;

  border-bottom: #333333 2px solid;
}

.products_right_contain_excavatorList ul li::before {
  content: "";

  position: absolute;

  left: 0;

  bottom: -0.02rem;

  width: 100%;

  height: 3px;

  background-color: var(--i_color);

  transform: scaleX(0); /* 初始是 0 */

  transform-origin: left;

  transition: transform 0.4s ease;
}

.products_right_contain_excavatorList ul li::after {
  content: "+";

  position: absolute;

  left: 50%;

  bottom: -0.13rem;

  transform: translateX(-50%);

  width: 0.26rem;

  height: 0.26rem;

  line-height: 0.26rem;

  text-align: center;

  background: #333;

  color: #fff;

  font-size: 0.2rem;

  font-weight: bold;

  border-radius: 50%;
}

.products_right_contain_excavatorList ul li a span {
  position: relative;

  display: block;
}

.products_right_contain_excavatorList ul li a span::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.products_right_contain_excavatorList ul li a span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.products_right_contain_excavatorList ul li a h3 {
  font-family: Arial;

  font-size: 0.16rem;

  color: #666666;

  padding: 0.12rem 0 0.2rem 0.12rem;
}

.products_right_contain_excavatorList ul li a h4 {
  font-family: Arial;

  font-size: 0.2rem;

  font-weight: bold;

  line-height: 0.26rem;

  color: #333333;

  padding: 0 0 0.2rem 0.12rem;
}

.products_right_contain_excavatorList ul li a h5 {
  margin: 0 0.12rem;

  padding: 0.2rem 0 0.1rem 0;

  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.24rem;

  border-top: 1px solid rgba(0, 0, 0, 0.12);

  color: #666666;
}

.products_right_contain_excavatorList ul li a h5 i {
  color: #ed4141;

  font-family: Arial;

  font-weight: 700;

  font-size: 0.2rem;
}

.products_right_contain_excavatorList ul li a h5 b {
  color: #333333;

  font-family: Arial;

  font-weight: 400;

  font-size: 0.16rem;
}

.products_right_contain_excavatorList ul li a h6 {
  margin: 0 0.12rem;

  font-family: Arial;

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.24rem;

  color: #666666;
}

.products_right_contain_excavatorList ul li a h6 b {
  color: #333333;
}

.products_right_contain_excavatorList ul li:hover a h4 {
  color: var(--i_color);
}

.products_right_contain_excavatorList ul li:hover::before {
  transform: scaleX(1); /* hover 展开 */
}

.products_right_contain_excavatorList ul li:hover::after {
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .products_right_contain_excavatorList ul li {
    width: calc((100% - 0.25rem) / 2);

    padding-bottom: 0.4rem;

    border-bottom: #333333 2px solid;

    position: relative;
  }

  .products_right_contain_excavatorList ul li a h3 {
    padding: 0.1rem 0 0.1rem 0.12rem;
  }

  .products_right_contain_excavatorList ul li a h4 {
    font-size: 0.18rem;

    line-height: 0.24rem;

    padding: 0 0 0.15rem 0.12rem;
  }

  .products_right_contain_excavatorList ul li a h5 {
    padding: 0.15rem 0 0 0;

    font-size: 0.16rem;

    line-height: 0.24rem;
  }

  .products_right_contain_excavatorList ul li a h5 i {
    font-size: 0.18rem;
  }

  .products_right_contain_excavatorList ul li {
    padding-bottom: 0.3rem;
  }
}

@media screen and (max-width: 425px) {
  .products_right_contain_excavatorList ul li {
    width: calc((100%));

    padding-bottom: 0.4rem;

    border-bottom: #333333 2px solid;

    position: relative;
  }
}

@media screen and (max-width: 1024px) {
  .products_left {
    margin-bottom: 0.2rem;
  }

  .products {
    display: block;
  }

  .products_right_top_title {
    display: flex;

    justify-content: center;
  }

  .products_right_top_des {
    display: flex;

    justify-content: center;
  }
}

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

@media screen and (max-width: 425px) {
  .products_right_top_des {
    font-size: 0.15rem;

    line-height: 0.22rem;
  }
}

@media screen and (max-width: 375px) {
  .products_right_top_des {
    font-size: 0.13rem;

    line-height: 0.18rem;
  }
}

/* Number of pages */

.in_page_box {
  text-align: center;

  overflow: hidden;

  margin-top: 0.7rem;
}

.in_page {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;
}

.in_page_right .in_page {
  justify-content: flex-end;
}

.in_page_left .in_page {
  justify-content: flex-start;
}

.in_page li {
  min-width: 0.32rem;

  margin: 0 0.04rem;
}

.in_page a,
.in_page span {
  display: block;

  padding: 0 0.12rem;

  line-height: 0.32rem;

  font-size: 0.14rem;

  color: #666;

  background: #fff;

  -webkit-border-radius: 0.05rem;

  border-radius: 0.05rem;

  border: 1px solid var(--border_color);

  overflow: hidden;

  transition: all 0.3s ease;
}

.in_page > i {
  margin-top: 0.14rem;

  width: 100%;

  font-size: 0.13rem;

  color: #888;

  display: none;
}

.in_page a:hover,
.in_page .curr_page a,
.in_page .curr_page span {
  border-color: var(--i_color) !important;

  background: var(--i_color);

  color: #fff !important;
}

@media screen and (max-width: 1024px) {
  .in_page_box {
    margin-top: 0.6rem;
  }
}

@media screen and (max-width: 768px) {
  .in_page li {
    min-width: 0.28rem;
  }

  .in_page a,
  .in_page span {
    line-height: 0.28rem;

    padding: 0 0.1rem;
  }

  .in_page_box {
    margin-top: 0.4rem;
  }
}

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

/* ------------------------------------productsDetail.html---------------------- */

/* single_grid */

.single_grid_bac {
  box-sizing: border-box;

  padding: 0.4rem 0 0.8rem 0;

  background: #f3f9fe;
}

.single_grid {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

.single_grid_left {
  width: 37.3%;
}

/* 轮播图宽度 */

.in_grid_cont {
  --sm_pic_width: 17%;
}

.in_grid_cont {
  position: relative;

  overflow: hidden;
}

.in_grid_cont:before {
  content: "";

  display: block;

  padding-bottom: 80.4%;
}

/* 底部缩略图 */

.in_grid_list_box {
  position: absolute;

  top: 0;

  left: 0;

  width: var(--sm_pic_width);

  height: 100%;

  box-sizing: border-box;

  padding: 40px 0;
}

.in_grid_list {
  height: 100%;

  overflow: hidden;
}

.in_grid_list .swiper-slide {
  cursor: pointer;
}

.in_grid_list .img {
  width: 100%;

  height: 100%;

  box-sizing: border-box;

  border: 1px solid #d8d8d8;

  position: relative;

  overflow: hidden;
}

.in_grid_list .img::after {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.6); /* 半透明灰色 */

  pointer-events: none; /* 不影响鼠标事件 */
}

.in_grid_list .img img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.in_grid_list .swiper-slide-thumb-active .img {
  border: 1px solid #00a3e6;
}

.in_grid_list .swiper-slide-thumb-active img {
  filter: brightness(100%);

  -webkit-filter: brightness(100%);
}

.ingrid-button-prev.swiper-button-disabled,
.ingrid-button-next.swiper-button-disabled {
  cursor: not-allowed;
}

/* 轮播图 */

.in_grid_show_box {
  position: absolute;

  top: 0;

  right: 0;

  width: calc(100% - var(--sm_pic_width) - 20px);

  height: 100%;

  box-sizing: border-box;

  padding: 0 0;

  margin: 0 auto;
}

.in_grid_show {
  width: 100%;

  height: 100%;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;
}

.in_grid_show .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;

  height: 100%;

  z-index: 1;
}

.in_grid_show .swiper-slide {
  height: 100%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-shrink: 0;

  position: relative;

  cursor: pointer;
}

.in_grid_show .img {
  width: 100%;

  height: 100%;

  position: relative;

  overflow: hidden;

  cursor: pointer;
}

.ingrid-pagination {
  display: block;

  position: absolute;

  top: 0.2rem;

  right: 0.2rem;

  width: 0.5rem;

  height: 0.5rem;

  background-color: rgba(1, 167, 255, 0.15);

  border-radius: 50%;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;

  font-size: 0.18rem;

  color: var(--i_color);
}

.ingrid-pagination .swiper-pagination-bullet {
  width: 8px;

  height: 8px;

  display: inline-block;

  margin: 0 4px;

  background: #e5e5e5;

  -webkit-border-radius: 50%;

  -moz-border-radius: 50%;

  -o-border-radius: 50%;

  border-radius: 50%;

  outline: none;
}

.ingrid-pagination .swiper-pagination-bullet-active {
  position: relative;

  background: var(--i_color);
}

.in_grid_cont:before {
  display: none;
}

.in_grid_show_box {
  position: initial;

  width: 100%;

  border-radius: 0.04rem;

  overflow: hidden;

  border: 1px solid #d8d8d8;
}

/* 放大显示区域 */

.img-zoom-box {
  width: 100%;

  height: 100%;

  border: 1px solid #eee;

  background-repeat: no-repeat;

  background-size: 200% 200%;

  display: none;

  z-index: 9999;

  position: absolute;

  top: 0;

  left: 0;

  pointer-events: none;
}

.in_grid_show .img {
  width: 100%;

  position: relative;

  overflow: hidden;
}

.in_grid_show .img:before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.in_grid_show .img img {
  position: absolute;

  top: 0%;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.in_grid_list_box {
  margin-top: 0.2rem;

  padding: 0 0;

  position: relative;

  width: 100%;

  height: initial;
}

.in_grid_list {
  width: 100%;

  margin: 0 auto;
}

.in_grid_list_box .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;

  z-index: 1;
}

.in_grid_list_box .swiper-slide {
  height: 100%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-shrink: 0;

  position: relative;

  cursor: pointer;
}

.in_grid_list .img {
  height: auto;

  border-radius: 0.04rem;
}

.in_grid_list .img:before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.in_grid_list .img img {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  object-fit: cover;

  width: 100%;

  height: 100%;
}

.swiper-slide-thumb-active .img::after {
  background: rgba(255, 255, 255, 0);
}

/* 左右箭头 */

.ingrid-button-prev,
.ingrid-button-next {
  position: absolute;

  top: 75%;

  transform: translate(0, -50%);

  width: 0.44rem;

  height: 0.44rem;

  z-index: 999;

  cursor: pointer;

  outline: none;

  transition: all 0.3s ease;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  background: #666666;

  box-sizing: border-box;
}

.ingrid-button-prev img,
.ingrid-button-next img {
  filter: brightness(0) invert(1);
}

.ingrid-button-prev {
  left: 2.5%;
}

.ingrid-button-next {
  left: 14%;
}

.ingrid-button-prev:hover,
.ingrid-button-next:hover {
  background-color: var(--i_color);
}

.ingrid-button-prev:hover img,
.ingrid-button-next:hover img {
  filter: brightness(0) invert(1);
}

.single_grid_right {
  width: 58.8%;
}

.single_grid_right h1 {
  font-family: Arial;

  font-size: 0.28rem;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.2rem;
}

.single_grid_right h3 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.3rem;

  padding-bottom: 0.1rem;

  border-bottom: 2px solid var(--i_color);
}

.single_grid_right h3 span {
  color: var(--i_color);
}

.sgr_description {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);

  padding: 0.15rem 0;
}

.sgr_advBtn {
  padding: 0.2rem 0;
}

.sgr_advBtn ul {
  display: flex;

  justify-content: space-around;
}

.sgr_advBtn ul li {
  flex: 1;

  display: flex;

  flex-direction: column;

  align-items: center;

  cursor: pointer;
}

.sgr_advBtn ul li:hover span {
  background: var(--i_color);
}

.sgr_advBtn ul li:hover p {
  color: var(--i_color);
}

.sgr_advBtn ul li span {
  background: #999999;

  width: 0.57rem;

  height: 0.57rem;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 0.15rem;
}

.sgr_advBtn ul li span img {
  width: 0.34rem;

  height: 0.34rem;

  object-fit: contain;
}

.sgr_advBtn ul li p {
  font-family: Arial;

  font-size: 0.18rem;

  color: #333333;
}

.sgr_btnmaxbox {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.sgr_btndiv {
  display: flex;

  gap: 0.2rem;

  padding: 0.2rem 0;
}

.public_btn {
  background-color: transparent;

  border: 1px solid var(--i_color);
}

.public_btn a {
  display: flex;

  padding: 0.13rem 0.25rem;

  align-items: center;
}

.public_btn a h6 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: bold;

  color: #2666a4;

  margin-right: 0.18rem;
}

.public_btn a span img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(73%) saturate(546%)
    hue-rotate(176deg) brightness(92%) contrast(92%);
}

.public_btn:hover {
  background-color: var(--i_color);
}

.public_btn:hover a h6 {
  color: #fff;
}

.public_btn:hover a span img {
  filter: brightness(0) invert(1);
}

.sgr_share_btn {
  display: flex;

  gap: 0.15rem;

  align-items: center;
}

.sgr_share_btn span {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: bold;

  line-height: 0.22rem;

  color: #333333;
}

.single_grid_dl {
  display: flex;

  gap: 0.1rem;
}

.single_grid_dl dt a {
  display: flex;

  align-items: center;

  justify-content: center;
}

.single_grid_dl dt a iconify-icon {
  font-size: 0.26rem;
}

.single_grid_dl dt a:hover iconify-icon {
  color: var(--i_color) !important;
}

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

@media screen and (max-width: 1200px) {
  .single_grid_bac {
    padding: 0.4rem 0 0.6rem 0;
  }
}

@media screen and (max-width: 1024px) {
  .ingrid-button-next {
    left: 19%;
  }

  .ingrid-button-prev,
  .ingrid-button-next {
    top: 72%;
  }

  .sgr_advBtn ul li p {
    font-size: 0.14rem;
  }

  .single_grid_right h1 {
    font-size: 0.26rem;
  }

  .single_grid_right h3 {
    font-size: 0.16rem;

    line-height: 0.2rem;

    padding-bottom: 0.1rem;
  }

  .public_btn a {
    padding: 0.1rem 0.2rem;
  }

  .public_btn a h6 {
    font-size: 0.16rem;

    margin-right: 0.14rem;
  }
}

@media screen and (max-width: 768px) {
  .single_grid_left {
    width: 100%;
  }

  .single_grid_right {
    width: 100%;

    margin-top: 0.4rem;

    padding-left: 0%;
  }

  .ingrid-button-prev,
  .ingrid-button-next {
    top: 76%;
  }

  .ingrid-button-next {
    left: 13%;
  }
}

@media screen and (max-width: 425px) {
  .ingrid-button-prev,
  .ingrid-button-next {
    top: 72%;
  }

  .ingrid-button-next {
    left: 18%;
  }

  .sgr_advBtn ul {
    display: flex;

    gap: 0.2rem;

    flex-wrap: wrap;
  }

  .sgr_advBtn ul li {
    width: calc((100% - 0.2rem) / 2);

    flex: 0 0 auto;
  }

  .sgr_btnmaxbox {
    display: block;
  }

  .sgr_share_btn {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 375px) {
  .public_btn a h6 {
    font-size: 0.14rem;

    margin-right: 0.1rem;
  }
}

@media screen and (max-width: 320px) {
  .public_btn a {
    padding: 0.06rem 0.15rem;
  }
}

/* pd_max_contain */

.pd_max_contain {
  background: #f9f9f9;

  padding: 0 0 0.6rem 0;
}

.pdm_contain {
}

.pdm_btn {
  display: flex;

  border-bottom: #e5e5e5 2px solid;
}

.pdm_btn li {
  padding: 0.14rem 0.39rem;

  box-sizing: border-box;

  font-family: Arial;

  font-size: 0.24rem;

  font-weight: bold;

  color: #333333;

  cursor: pointer;
}

.pdm_btn li.active {
  background-color: var(--i_color);

  color: #fff;
}

.pdm_panel {
  display: none;
}

.pdm_panel.active {
  display: block;
}

@media screen and (max-width: 1024px) {
  .pdm_btn li {
    font-size: 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .pdm_btn li {
    font-size: 0.18rem;
  }
}

@media screen and (max-width: 425px) {
  .pdm_btn li {
    font-size: 0.16rem;

    padding: 0.1rem 0.3rem;
  }
}

@media screen and (max-width: 320px) {
  .pdm_btn li {
    font-size: 0.14rem;

    padding: 0.1rem 0.3rem;
  }
}

/* ------------------------------------------single_two------------------------------------------ */

.single_two_bac {
  background: var(--i_color);

  box-sizing: border-box;

  padding: 0.56rem var(--contain-width);

  margin-bottom: var(--box-bottom);
}

.single_two {
  width: 100%;
}

.bottom_single_tags {
  display: flex;

  display: -webkit-flex;

  flex-wrap: wrap;

  gap: 0.15rem;

  box-sizing: border-box;

  padding-bottom: 0.3rem;

  margin-bottom: 0.3rem;

  border-bottom: 1px solid #5a8cbc;
}

.bottom_single_tags p {
  font-size: 0.18rem;

  color: #fff;

  font-family: "bold";

  line-height: 0.42rem;
}

.bottom_single_tags a {
  display: inline-block;

  box-sizing: border-box;

  padding: 0.1rem 0.12rem;

  font-size: 0.16rem;

  color: rgba(255, 255, 255, 0.8);
}

.bottom_single_tags a:hover {
  color: #fff;

  font-weight: bold;
}

.sx {
  display: flex;

  display: -webkit-flex;

  justify-content: space-between;

  flex-wrap: wrap;
}

.sx > div {
  width: 48%;
}

.sx_left {
}

.sx a {
  display: block;

  width: 100%;

  display: flex;

  display: -webkit-flex;

  align-items: center;
}

.sx .sx_left i,
.sx .sx_right i {
  background: transparent;

  border: 1px solid #fff;

  width: 0.44rem;

  height: 0.44rem;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;
}

.sx .sx_left i {
  margin-right: 0.1rem;
}

.sx .sx_right i {
  margin-left: 0.1rem;
}

.sx .sx_left i img,
.sx .sx_right i img {
  filter: brightness(0) invert(1);
}

.sx_left:hover i img,
.sx_right:hover i img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(73%) saturate(546%)
    hue-rotate(176deg) brightness(92%) contrast(92%);
}

.sx_left:hover i,
.sx_right:hover i {
  background-color: #fff;
}

.sx p {
  font-size: 0.18rem;

  color: #fff;

  text-transform: capitalize;

  margin-right: 0.1rem;

  font-weight: bold;
}

.sx span {
  font-size: 0.16rem;

  color: #fff;

  transition: all 0.3s ease;
}

.sx_right a {
  display: flex;

  justify-content: flex-end;
}

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

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

@media screen and (max-width: 1200px) {
  .bottom_single_tags a {
    padding: 0.08rem 0.1rem;

    font-size: 0.14rem;
  }

  .bottom_single_tags {
    align-items: center;
  }
}

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

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

@media screen and (max-width: 768px) {
  .sx {
    gap: 0.2rem 0;
  }

  .sx > div {
    width: 100%;
  }

  .sx a {
    flex-wrap: wrap;
  }

  .sx_right a {
    justify-content: normal;
  }

  .sx .sx_left span,
  .sx .sx_right span {
    font-size: 0.12rem;
  }

  .sx .sx_left i,
  .sx .sx_right i {
    display: none;
  }
}

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

@media screen and (max-width: 425px) {
  .bottom_single_tags {
    gap: 0;

    padding-bottom: 0.1rem;

    margin-bottom: 0.2rem;
  }
}

/* -----------------------------Related Products--------------------- */

.productDetail_related_products {
  padding: 0.6rem 0 1rem 0;
}

.pdrp_maxbox {
}

.related_products_contain {
  margin-top: 0.2rem;

  position: relative;

  overflow: hidden;

  box-sizing: border-box;

  width: 100%;
}

.related_products_contain .swiper-wrapper {
  display: -webkit-flex;

  display: flex;

  position: relative;

  width: 100%;

  /* padding: 0.05rem; */
}

.related_products_contain .swiper-slide {
  flex-shrink: 0;

  background: #fff;

  box-sizing: border-box;

  position: relative;

  /* overflow: hidden; */
}

.related-pagination {
  text-align: center;
}

.related-pagination .swiper-pagination-bullet {
  width: 0.1rem;

  height: 0.1rem;

  display: inline-block;

  margin: 0 0.08rem !important;

  border-radius: 0;

  background: rgba(0, 0, 0, 0.4);

  cursor: pointer;

  position: relative;

  -webkit-transition: width 0.5s ease;

  transition: width 0.5s ease;
}

.related-pagination .swiper-pagination-bullet-active {
  width: 0.4rem;

  height: 0.1rem;

  background: var(--i_color);

  background-size: contain;

  border-radius: 0;
}

.related_products_contain ul {
  display: none;
}

.related_products_contain ul.active {
  display: flex;

  gap: 0.16rem;

  flex-wrap: wrap;
}

.related_products_contain ul li {
  width: calc((100% - 0.16rem * 3) / 4);

  padding-bottom: 0.4rem;

  border-bottom: #333333 2px solid;

  position: relative;
}

.related_products_contain ul li::before {
  content: "";

  position: absolute;

  left: 0;

  bottom: -0.02rem;

  width: 100%;

  height: 3px;

  background-color: var(--i_color);

  transform: scaleX(0); /* 初始是 0 */

  transform-origin: left;

  transition: transform 0.4s ease;
}

.related_products_contain ul li::after {
  content: "+";

  position: absolute;

  left: 50%;

  bottom: -0.13rem;

  transform: translateX(-50%);

  width: 0.26rem;

  height: 0.26rem;

  line-height: 0.26rem;

  text-align: center;

  background: #333;

  color: #fff;

  font-size: 0.2rem;

  font-weight: bold;

  border-radius: 50%;
}

.related_products_contain ul li a span {
  position: relative;

  display: block;
}

.related_products_contain ul li a span::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.related_products_contain ul li a span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.related_products_contain ul li a h3 {
  font-family: Arial;

  font-size: 0.16rem;

  color: #666666;

  padding: 0.12rem 0 0.2rem 0.12rem;
}

.related_products_contain ul li a h4 {
  font-family: Arial;

  font-size: 0.2rem;

  font-weight: bold;

  line-height: 0.26rem;

  color: #333333;

  padding: 0 0 0.2rem 0.12rem;
}

.related_products_contain ul li a h5 {
  margin: 0 0.12rem;

  padding: 0.2rem 0 0.1rem 0;

  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.24rem;

  border-top: 1px solid rgba(0, 0, 0, 0.12);

  color: #666666;
}

.related_products_contain ul li a h5 i {
  color: #ed4141;

  font-family: Arial;

  font-weight: 700;

  font-size: 0.2rem;
}

.related_products_contain ul li a h5 b {
  color: #333333;

  font-family: Arial;

  font-weight: 400;

  font-size: 0.16rem;
}

.related_products_contain ul li a h6 {
  margin: 0 0.12rem;

  font-family: Arial;

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.24rem;

  color: #666666;
}

.related_products_contain ul li a h6 b {
  color: #333333;
}

.related_products_contain ul li:hover a h4 {
  color: var(--i_color);
}

.related_products_contain ul li:hover::before {
  transform: scaleX(1); /* hover 展开 */
}

.related_products_contain ul li:hover::after {
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .hp_btnlist ul li {
    padding: 0.18rem 0;

    font-size: 0.22rem;
  }

  .related_products_contain ul li {
    width: calc((100% - 0.16rem * 2) / 3);

    padding-bottom: 0.4rem;

    border-bottom: #333333 2px solid;

    position: relative;
  }

  .hp_btnlist {
    margin-bottom: 0.25rem;
  }

  .related_products_contain ul li a h3 {
    padding: 0.1rem 0 0.1rem 0.12rem;
  }

  .related_products_contain ul li a h4 {
    font-size: 0.18rem;

    line-height: 0.24rem;

    padding: 0 0 0.15rem 0.12rem;
  }

  .related_products_contain ul li a h5 {
    padding: 0.15rem 0 0 0;

    font-size: 0.16rem;

    line-height: 0.24rem;
  }

  .related_products_contain ul li a h5 i {
    font-size: 0.18rem;
  }

  .related_products_contain ul li {
    padding-bottom: 0.3rem;
  }
}

@media screen and (max-width: 425px) {
  .hp_btnlist ul li {
    padding: 0.1rem 0;

    font-size: 0.16rem;
  }

  .related_products_contain ul li {
    width: calc((100%));

    padding-bottom: 0.4rem;

    border-bottom: #333333 2px solid;

    position: relative;
  }

  .productDetail_related_products {
    padding: 0.3rem 0 0.5rem 0;
  }
}

/* -----------------------------------aboutUs.html-------------------------------- */

.aboutUS_aboutbox {
  padding: 1rem 0;
}

.iaboxs {
  background: url(static/images/abj2.webp) no-repeat center/contain;
}

.iaboxs .wraps {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

.iaboxs .wraps .left {
  width: 51%;
}

.iaboxs .wraps .left > img {
  width: 100%;

  object-fit: cover;
}

.iaboxs .wraps .right {
  width: 45.5%;
}

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

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

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

@media screen and (max-width: 1024px) {
  .iaboxs .wraps .left {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .iaboxs .wraps .right {
    width: 100%;

    margin-bottom: 0.1rem;
  }
}

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

@media screen and (max-width: 560px) {
  .aboutUS_aboutbox {
    padding: 0.3rem 0;
  }
}

.video_boxs {
}

.video_boxs {
  position: relative;
}

.video_boxs > img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.video_boxs .imgs {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);
}

.video_boxs .imgs img {
  /* height: 0.5rem; */

  /* animation: zoom2 1.5s infinite alternate; */
}

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

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

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

@media screen and (max-width: 1024px) {
  .video_boxs .imgs img {
    height: 0.3rem;
  }
}

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

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

.numlist {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: start;

  justify-content: space-around;

  gap: 10px 0;
}

.numlist li {
  box-sizing: border-box;

  padding: 0.2rem 0;
}

.numlist li p {
  margin-bottom: 0.1rem;

  display: flex;

  align-items: center;

  gap: 0.1rem;
}

.fz64 {
  font-size: 0.64rem;

  font-weight: bold;
}

.numlist li h6 i {
  color: var(--i_color);
}

.iaboxs .wraps .right p {
  font-weight: bold;
}

.iaboxs .wraps .right h6 {
  font-family: Arial;

  font-size: 0.18rem;

  line-height: 0.3rem;

  color: #666666;
}

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

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

@media screen and (max-width: 1200px) {
  .fz64 {
    font-size: 0.4rem;
  }
}

@media screen and (max-width: 1024px) {
  .fz64 {
    font-size: 0.26rem;
  }

  .numlist li {
    width: 49%;

    border: 1px solid var(--border_color);

    box-shadow: rgba(0, 0, 0, 0.13) 0px 2px 38px 0px;

    text-align: center;

    padding: 0.2rem;
  }

  .numlist li p {
    gap: 0 5px;
  }

  .numlist li img {
    height: 0.3rem;
  }
}

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

@media screen and (max-width: 560px) {
  .iaboxs .wraps .right h6 {
    font-size: 0.16rem;

    line-height: 0.25rem;
  }
}

@media screen and (max-width: 375px) {
  .numlist li {
    width: 100%;
  }
}

/* --------------------------aboutUs_company_advantage------------------- */

.aboutUs_company_advantage {
}

/* about_choose */

.about_choose_bac {
  background: url("static/images/about_company_advantage_bg.webp") center
    no-repeat;

  background-size: cover;

  box-sizing: border-box;

  padding: 0.8rem 0;
}

.about_choose {
}

.aca_title h3,
.aca_title h4 {
  color: #fff !important;
}

.about_choose_box {
  background-color: #fff;

  margin-top: 0.4rem;

  display: flex;

  flex-wrap: wrap;
}

.about_choose_text {
  width: 45.33%;

  box-sizing: border-box;

  padding: 0.53rem 0.6rem 0.5rem 0.22rem;
}

.about_choose_ul {
  display: flex;

  flex-direction: column;

  gap: 0.25rem;
}

.about_choose_ul li {
  display: flex;

  border-bottom: 1px solid #e5e5e5;

  box-sizing: border-box;

  padding-bottom: 0.25rem;

  cursor: pointer;
}

.about_choose_ul li span {
  display: flex;

  justify-content: center;
}

.about_choose_ul li span img {
  width: 0.35rem;

  height: 0.35rem;

  object-fit: contain;
}

.about_choose_ul li.current .about_choose_txt h4 {
  color: var(--i_color);
}

.about_choose_txt {
  width: calc(100% - 0.4rem);

  box-sizing: border-box;

  padding-left: 0.15rem;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.about_choose_txt h4 {
  font-size: 0.2rem;

  color: #333;

  font-weight: bold;

  text-transform: capitalize;
}

.about_choose_txt h5 {
  display: none;

  font-size: 0.18rem;

  color: #666;

  line-height: 0.3rem;

  height: 1.5rem;

  overflow: auto;

  box-sizing: border-box;

  padding-right: 0.1rem;

  margin-top: 0.15rem;

  animation: ooo 0.7s ease;
}

/*滚动条*/

.about_choose_txt h5::-webkit-scrollbar {
  width: 1px;

  height: 1px;
}

.about_choose_txt h5::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);

  background: #333;
}

.about_choose_txt h5::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);

  border-radius: 0;

  background: #f1f1f1;
}

.about_choose_img {
  width: 54.67%;
}

.about_choose_dl {
  height: 100%;
}

.about_choose_dl dt {
  height: 100%;

  animation: ooo 0.7s ease;

  position: relative;
}

.about_choose_dl dt::before {
  content: "";

  display: block;

  padding-bottom: 59%;
}

.about_choose_dl dt img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.about_choose_ul li.current h5 {
  display: block;
}

@keyframes ooo {
  0% {
    opacity: 0;

    transform: translateY(0.1rem);
  }

  100% {
    opacity: 1;

    transform: translateY(0);
  }
}

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

@media screen and (max-width: 1200px) {
  .about_choose_text {
    padding: 0.4rem;
  }

  .about_choose_txt h5 {
    font-size: 0.16rem;

    line-height: 0.25rem;

    height: 1.25rem;
  }

  .about_choose_bac {
    padding: 0.6rem 0;
  }

  .about_choose_txt h4 {
    font-size: 0.18rem;
  }
}

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

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

@media screen and (max-width: 767px) {
  .about_choose_text {
    width: 100%;
  }

  .about_choose_img {
    width: 100%;
  }

  .about_choose_box {
    flex-direction: column-reverse;
  }

  .about_choose_txt h5 {
    height: 1rem;
  }
}

@media screen and (max-width: 560px) {
  .about_choose_text {
    padding: 0.4rem 0.2rem;
  }
}

@media screen and (max-width: 425px) {
  .about_choose_bac {
    padding: 0.3rem 0;
  }
}

/* -----------------------------------Global Customers-------------------- */

.aboutUs_global_customers {
  padding: 0.6rem 0;
}

.agc_maxbox {
}

.customers_list {
  width: 100%;

  padding: 0;

  margin: 0 auto;

  position: relative;

  overflow: hidden;

  z-index: 1;
}

.customers_list .swiper-wrapper {
  position: relative;

  width: 100%;

  height: 100%;

  z-index: 1;

  transition-property: transform, -webkit-transform;

  display: flex;
}

.customers_list li {
  width: 7rem;

  max-width: 80%;

  flex-shrink: 0;

  position: relative;

  cursor: pointer;

  transform-style: preserve-3d;

  transition-property: transform;

  border-radius: 0.05rem;

  overflow: hidden;
}

.customers_list li::after {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.7);

  z-index: 3;

  transition: all 0.5s ease;
}

.customers_list li.swiper-slide-active::after {
  background: rgba(255, 255, 255, 0);

  height: 0%;
}

.customers_list .img {
  width: 100%;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;
}

.customers_list .img::after {
  content: "";

  display: block;

  padding-bottom: 66%;
}

.customers_list .img img {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.customers-pagination {
  text-align: center;

  border-radius: 0;
}

.customers-pagination .swiper-pagination-bullet {
  width: 0.1rem;

  height: 0.1rem;

  display: inline-block;

  margin: 0 0.08rem !important;

  border-radius: 0;

  background: rgba(0, 0, 0, 0.4);

  cursor: pointer;

  position: relative;

  -webkit-transition: width 0.5s ease;

  transition: width 0.5s ease;
}

.customers-pagination .swiper-pagination-bullet-active {
  width: 0.4rem;

  height: 0.1rem;

  background: var(--i_color);

  background-size: contain;

  border-radius: 0;
}

@media screen and (max-width: 425px) {
  .aboutUs_global_customers {
    padding: 0.3rem 0;
  }
}

/* --------------------------------------Partner-------------------------- */

.aboutUs_partner {
}

.cooperative-partner {
  margin-bottom: var(--box-bottom);

  padding: 0rem 0.61rem;

  box-sizing: border-box;

  overflow: hidden;
}

.cooperative-partner-top {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;

  align-items: center;

  justify-content: space-around;

  margin-bottom: 0.2rem;
}

.cooperative-partner-top-title {
  font-size: var(--title_fz);

  font-weight: 600;

  display: flex;

  justify-content: center;
}

.cooperative-partner-top-title-left {
  color: #333333;

  margin-right: 0.1rem;

  position: relative;

  padding: 0.15rem 0;
}

.cooperative-partner-top-title-left::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 0.06rem;

  background: linear-gradient(92deg, #006bb8 -4%, #4abfed 96%);

  clip-path: polygon(0 0, 100% 0, calc(100% - 0.12rem) 100%, 0 100%);
}

.cooperative-partner-top-title-right {
  background: linear-gradient(180deg, #006bb8 4%, #4abfed 94%);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

  padding: 0.15rem 0;
}

.cooperative-partner-top-des {
  color: #333333;

  text-align: center;

  font-size: 0.18rem;
}

.partner_list {
  position: relative;

  overflow: hidden;

  padding: 0.1rem;

  box-sizing: border-box;
}

.partner_list .swiper-wrapper {
  display: -webkit-flex;

  display: flex;

  position: relative;

  width: 100%;

  padding: 0.05rem;
}

.partner_list .swiper-slide {
  flex-shrink: 0;

  background: #fff;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;

  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);

  transition: box-shadow 0.25s ease;

  -webkit-transition: box-shadow 0.25s ease;

  -moz-transition: box-shadow 0.25s ease;

  -ms-transition: box-shadow 0.25s ease;

  -o-transition: box-shadow 0.25s ease;
}

.partner_list li span {
  display: block;

  width: 100%;

  position: relative;

  overflow: hidden;
}

.partner_list li span::before {
  content: "";

  display: block;

  padding-bottom: 51%;
}

.partner_list li span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.public-pagination {
  text-align: center;
}

.public-pagination .swiper-pagination-bullet {
  width: 0.12rem;

  height: 0.12rem;

  display: inline-block;

  margin: 0 6px;

  -webkit-border-radius: 2rem;

  border-radius: 2rem;

  background: #ccc;

  outline: none;

  cursor: pointer;

  position: relative;

  -webkit-transition: width 0.5s ease;

  transition: width 0.5s ease;
}

.public-pagination .swiper-pagination-bullet-active {
  width: 0.36rem;

  background: #006bb8;

  background-size: contain;

  border-radius: 0.24rem;

  -webkit-border-radius: 0.24rem;

  -moz-border-radius: 0.24rem;

  -ms-border-radius: 0.24rem;

  -o-border-radius: 0.24rem;
}

@media screen and (max-width: 768px) {
  .cooperative-partner {
    padding: 0rem 0.3rem;
  }
}

@media screen and (max-width: 425px) {
  .cooperative-partner-top-des {
    font-size: 0.15rem;
  }
}

/* --------------------------------Our Services------------------------- */

.ul_list333 {
  padding: 0.6rem 0;

  background: #fff;
}

.ul_list333 .wrap {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

.ul_list333 .wrap .left {
  width: 48.5%;

  position: relative;
}

.ul_list333 .wrap .left span {
  position: relative;
}

/* 732 610 */

.ul_list333 .wrap .left span::before {
  content: "";

  display: block;

  padding-bottom: 84%;
}

.ul_list333 .wrap .left span img {
  width: 100%;

  height: 100%;

  position: absolute;

  top: 0;

  left: 0;

  object-fit: cover;
}

.ul_list333 .left .centerbox {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  padding: 0.36rem 0.31rem;

  background: var(--i_color);

  text-align: center;

  overflow: hidden;
}

.ul_list333 .left .centerbox p {
  font-weight: bold;

  margin-bottom: 0.1rem;
}

.ul_list333 .left .centerbox p,
.ul_list333 .left .centerbox h6 {
  color: #fff;
}

.ul_list333 .wrap .right {
  width: 46%;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 0.6rem;
}

.ul_list333 .wrap .right h3 {
  display: block;

  margin-bottom: 0.1rem;
}

.ul_list333 .wrap .right .tit {
  padding-bottom: 0.2rem;

  margin-bottom: 0.2rem;

  border-bottom: 1px solid #333;
}

.ul_list333 .wrap .right li {
  margin-bottom: 0.2rem;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  align-items: start;
}

.ul_list333 .wrap .right li span {
  display: block;

  width: 92%;
}

.ul_list333 .wrap .right li img {
  /* height: 0.5rem; */

  width: 0.34rem;

  height: 0.37rem;

  object-fit: contain;
}

.ul_list333 .wrap .right li p {
  font-family: Arial;

  font-size: 0.24rem;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.15rem;

  line-height: 0.35rem;
}

.ul_list333 .wrap .right li h6 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.24rem;

  color: #666666;
}

.ul_list333 .btn b {
  background: #333 !important;
}

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

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

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

@media screen and (max-width: 1024px) {
  .ul_list333 .wrap .right li img {
    margin: 0 auto;
  }

  .ul_list333 .wrap .right li p {
    text-align: center;

    margin: 0.1rem 0;
  }

  .ul_list333 .wrap .right li h6 {
    text-align: center;
  }

  .ul_list333 .wrap .left {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .ul_list333 .wrap .right li {
    margin-bottom: 0.2rem;

    padding: 0.2rem;

    box-sizing: border-box;

    border: 1px solid #333;

    border-radius: 0.1rem;
  }

  .ul_list333 .wrap .right {
    width: 100%;

    order: -2;

    gap: 0rem;
  }

  .ul_list333 .left .centerbox {
    display: none;
  }

  .ul_list333 .wrap {
    padding-bottom: 0rem !important;
  }
}

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

@media screen and (max-width: 560px) {
  .ul_list333 {
    padding: 0.3rem 0;
  }
}

/* -------------------------------How To Buy------------------------------ */

.services_how_to_by {
  padding: 0.6rem 0;

  background: url(static/images/service_howtoby_bg.webp) no-repeat center/cover;
}

.shtb_maxbox {
}

.how_to_by_title h3 {
  color: #fff;
}

.how_to_by_title h4 {
  color: #fff;
}

.customization_process_ul {
  display: flex;

  display: -webkit-flex;

  gap: 0.43rem;

  margin-top: 0.6rem;

  align-items: flex-start;

  position: relative;

  z-index: 2;
}

.customization_process_ul li {
  width: calc((100% - 4 * 0.43rem) / 5);

  box-sizing: border-box;

  padding: 0.45rem 0.2rem 0.6rem 0.2rem;

  border-radius: 0.06rem;

  background-color: #fff;

  box-shadow: 0 0.29rem 0.35rem rgba(115, 169, 212, 0.3);

  cursor: pointer;
}

.customization_process_ul li:nth-child(even) {
  margin-top: 0.8rem;
}

.customization_process_img {
  width: 1rem;

  height: 1rem;

  background: #b9b9b9;

  position: relative;

  border-radius: 0.04rem;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;

  margin: 0 auto;

  transition: all 0.3s ease;
}

.customization_process_img h3 {
  font-size: 0.26rem;

  color: #fff;

  position: absolute;

  width: 0.4rem;

  height: 0.4rem;

  flex-shrink: 0;

  background: var(--i_color);

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  top: -0.18rem;

  left: 50%;

  transform: translateX(-50%);

  transition: all 0.3s ease;
}

.customization_process_img img {
  width: 0.6rem;

  height: 0.6rem;

  object-fit: contain;

  margin-top: 0.1rem;
}

.customization_process_text {
}

.customization_process_text h4 {
  font-size: 0.2rem;

  color: #333;

  font-weight: bold;

  margin: 0.2rem 0 0.15rem 0;

  text-align: center;

  text-transform: capitalize;

  transition: all 0.3s ease;
}

.customization_process_text h5 {
  font-size: 0.16rem;

  color: #5a6c7b;

  text-align: center;
}

.customization_process_ul li:hover .customization_process_img {
  background: var(--i_color);
}

.customization_process_ul li:hover .customization_process_img h3 {
  background-color: var(--i_color);
}

.customization_process_ul li:hover .customization_process_text h4 {
  color: var(--i_color);
}

.customization_process_ul li:hover .customization_process_img h3 {
  background: #999;
}

@media screen and (max-width: 1440px) {
  .customization_process_ul {
    gap: 0.5rem;
  }

  .customization_process_ul li {
    width: calc((100% - 2rem) / 5);
  }

  .customization_process_text h4 {
    font-size: 0.22rem;
  }
}

@media screen and (max-width: 1200px) {
  .customization_process_ul {
    gap: 0.4rem;
  }

  .customization_process_ul li {
    width: calc((100% - 1.6rem) / 5);
  }

  .customization_process_text h4 {
    font-size: 0.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .customization_process_bac {
    padding: 60px 0;
  }

  .customization_process_ul {
    gap: 0.3rem;
  }

  .customization_process_ul li {
    width: calc((100% - 1.2rem) / 5);
  }

  .customization_process_text h4 {
    font-size: 0.18rem;
  }
}

@media screen and (max-width: 959px) {
  .customization_process_ul {
    gap: 0.2rem;
  }

  .customization_process_ul li {
    width: calc((100% - 0.8rem) / 5);
  }

  .customization_process_text h4 {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 768px) {
  .customization_process_ul li {
    width: calc((100% - 0.4rem) / 3);
  }

  .customization_process_ul li {
    padding: 0.4rem 0.1rem 0.4rem 0.1rem;
  }

  .customization_process_ul {
    flex-wrap: wrap;
  }

  .customization_process_ul li:nth-child(even) {
    margin-top: 0rem;
  }

  .customization_process_ul {
    align-items: unset;
  }

  .customization_process_img img {
    width: 0.5rem;

    height: 0.5rem;
  }

  .customization_process_ul {
    justify-content: center;
  }
}

@media screen and (max-width: 560px) {
  .customization_process_bac {
    padding: 40px 0;

    background: #111;
  }

  .customization_process_bac::after {
    display: none;
  }

  .customization_process_ul li {
    width: calc((100% - 0.2rem) / 2);
  }

  .customization_process_img {
    width: 0.8rem;

    height: 0.8rem;
  }

  .customization_process_img img {
    width: 0.4rem;

    height: 0.4rem;
  }

  .customization_process_ul li:nth-child(5) {
    width: 100%;
  }
}

/* -----------------------------------Service_Advantages------------------------------- */

.Service_Advantages {
  padding: 0.6rem 0;
}

.companyAdv_list {
  height: 0;

  padding-bottom: 40%;

  position: relative;

  overflow: hidden;
}

.companyAdv_list dl {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  display: -webkit-flex;

  display: flex;

  flex-wrap: nowrap;

  gap: 0.2rem;
}

.companyAdv_list dt {
  width: 24%;

  height: 100%;

  position: relative;

  -webkit-transition: all 0.7s ease;

  transition: all 0.7s ease;

  overflow: hidden;

  cursor: pointer;
}

.companyAdv_list dt::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%; /* 覆盖整个区域 */

  background: rgba(0, 0, 0, 0.35); /* 灰色遮罩 */

  pointer-events: none; /* 不影响点击 */

  z-index: 2;
}

.companyAdv_list .cover {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;
}

.companyAdv_list .cover img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.companyAdv_list .tit {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  box-sizing: border-box;

  padding: 0.3rem 0.4rem;

  text-align: center;

  z-index: 3;
}

.companyAdv_list .tit h6 {
  font-size: 0.24rem;

  color: #fff;

  /* font-weight: bold; */
}

.companyAdv_list .tit p {
  display: block;

  margin-top: 0.2rem;

  opacity: 0;

  height: 0;

  text-align: left;

  width: 36vw;

  font-size: 18px;

  color: #fff;
}

.companyAdv_list dt.curr .tit {
  text-align: left;
}

.companyAdv_list dt.curr .tit p {
  opacity: 1;

  height: auto;

  -webkit-transition: all 0.7s ease;

  transition: all 0.7s ease;
}

.companyAdv_list dt.curr::after {
  height: 100%;

  -webkit-transition: all 0.7s ease;

  transition: all 0.7s ease;
}
.companyAdv_list dt.curr .tit h6 {
  font-weight: bold;
}
@media screen and (max-width: 1440px) {
  .companyAdv_list .tit p {
    width: 42vw;
  }
}

@media screen and (max-width: 1024px) {
  .companyAdv_list {
    height: auto;

    padding-bottom: 0;
  }

  .companyAdv_list dl {
    position: relative;

    display: block;
  }

  .companyAdv_list dt {
    width: 100%;

    height: auto;

    margin-bottom: 50px;
  }

  .companyAdv_list dt::after {
    display: none;
  }

  .companyAdv_list .cover {
    position: relative;

    overflow: hidden;
  }

  .companyAdv_list .cover::before {
    content: "";

    display: block;

    padding-bottom: 70%;
  }

  .companyAdv_list .tit {
    position: initial;

    margin-top: 20px;

    padding: 0 0;
  }

  .companyAdv_list .tit h6 {
    font-size: 20px;

    color: #333;
  }

  .companyAdv_list .tit p {
    opacity: 1;

    height: auto;

    color: #666;

    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .companyAdv_list dt {
    margin-bottom: 40px;
  }

  .companyAdv_list .tit h6 {
    font-size: 18px;
  }

  .companyAdv_list .tit p {
    font-size: 13px;
  }

  .Service_Advantages {
    padding: 0.3rem 0;
  }
}

/* -----------------------------FQA----------------------------- */

.service_fqa {
  padding: 0.6rem 0 1rem 0;
}

.sf_maxbox {
  display: flex;

  justify-content: space-between;
}

.sfm_leftbox {
  width: 42.8%;

  position: relative;
}

.sfm_leftbox::before {
  content: "";

  display: block;

  padding-bottom: 131%;
}

.sfm_leftbox img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.sfm_rightbox {
  width: 53.3%;
}

.sfm_title {
  font-family: Arial;

  font-size: 0.44rem;

  font-weight: bold;

  line-height: normal;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;

  color: #2666a4;

  position: relative;

  width: fit-content;
}

.sfm_title::before {
  content: "";

  display: block;

  position: absolute;

  bottom: -0.1rem;

  left: 0;

  width: 75%;

  height: 0.04rem;

  background: var(--i_color);
}

.faq_ul {
  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  gap: 0.3rem;

  margin-top: 0.4rem;

  width: 100%;
}

.faq_ul li {
}

.faq_q {
  background-color: #fff;

  border: 1px solid rgba(51, 51, 51, 0.2);

  box-sizing: border-box;

  padding: 0.2rem 0.3rem;

  border-radius: 0rem;

  display: flex;

  display: -webkit-flex;

  cursor: pointer;

  justify-content: space-between;
}

.faq_q h2 {
  font-size: 0.24rem;

  color: #333333;

  box-sizing: border-box;

  display: flex;

  font-family: Arial;

  align-items: center;
}

.faq_q span {
  background-color: transparent;

  border: 1px solid #666;

  border-radius: 50%;

  width: 0.36rem;

  height: 0.36rem;

  display: flex;

  align-items: center;

  justify-content: center;
}

.faq_q span img {
  width: 0.16rem;

  height: 0.16rem;

  object-fit: contain;

  filter: brightness(0) saturate(100%) invert(41%) sepia(0%);
}

.faq_a {
  display: flex;

  display: -webkit-flex;

  box-sizing: border-box;

  padding: 0.2rem 0.3rem;

  border: 1px solid rgba(51, 51, 51, 0.2);
}

.faq_a p {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.28rem;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;

  color: #666666;
}

.faq_ul li.on .faq_q {
  background-color: var(--i_color);
}

.faq_ul li.on .faq_q h2 {
  color: #fff;

  font-weight: bold;
}

.faq_ul li.on .faq_q span {
  background-color: #fff;

  border: transparent 1px solid;
}

.faq_ul li.on .faq_q span img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(73%) saturate(546%)
    hue-rotate(176deg) brightness(92%) contrast(92%);
}

.faq_ul li.on .faq_q h2 {
  color: #fff !important;
}

@media screen and (max-width: 1440px) {
  .faq_q h2 {
    font-size: 0.2rem;

    /* padding-left: 0.15rem; */
  }

  .faq_a p {
    /* padding-left: 0.15rem; */

    font-size: 0.14rem;

    line-height: 0.24rem;
  }
}

@media screen and (max-width: 1366px) {
  .faq_q {
    padding: 0.15rem 0.3rem;
  }
}

@media screen and (max-width: 1200px) {
  .faq_bac {
    padding-bottom: 0.6rem;
  }

  .faq_q {
    padding: 0.15rem 0.3rem;
  }

  .sfm_title {
    font-family: Arial;

    font-size: 0.36rem;

    font-weight: bold;

    position: relative;

    width: fit-content;
  }
}

@media screen and (max-width: 1024px) {
  .faq_q h2 {
    font-size: 0.18rem;
  }

  .sf_maxbox {
    display: block;
  }

  .sfm_leftbox {
    display: none;
  }

  .sfm_rightbox {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .faq_q span {
    width: 0.3rem;

    height: 0.3rem;
  }

  .faq_q span img {
    width: 0.14rem;

    height: 0.14rem;
  }
}

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

@media screen and (max-width: 767px) {
  .faq_q h2 {
    font-size: 0.18rem;

    /* padding-left: 0.1rem; */
  }

  .faq_a p {
    /* padding-left: 0.1rem; */
  }

  .faq_q {
    padding: 0.2rem 0.4rem;
  }
}

@media screen and (max-width: 560px) {
  .faq_q {
    padding: 0.2rem;
  }

  .faq_a {
    padding: 0.15rem;
  }

  .faq_ul i {
    width: 0.3rem;

    height: 0.3rem;
  }

  .faq_q h2 {
    width: calc(100% - 0.3rem);
  }

  .faq_a p {
    width: calc(100% - 0.3rem);
  }

  .faq_ul i {
    font-size: 0.16rem;
  }

  .faq_ul {
    gap: 0.2rem;
  }
}

@media screen and (max-width: 425px) {
  .faq_q {
    padding: 0.1rem 0.2rem;
  }

  .home_customers_like_title .home_customers_like_title_phone {
    font-size: 0.13rem;
  }

  .service_fqa {
    padding: 0.3rem 0 0.5rem 0;
  }

  .faq_q span {
    width: 0.24rem;

    height: 0.24rem;
  }

  .faq_q span img {
    width: 0.12rem;

    height: 0.12rem;
  }

  .faq_q h2 {
    font-size: 0.15rem;

    /* padding-left: 0.1rem; */
  }
}

/* ----------------------------------news.html--------------------- */

.news {
  padding: 0.6rem 0;
}

.news_maxbox {
}

.news_conain {
}

.news_conain .news_listul {
  display: flex;

  gap: 0.3rem;

  flex-wrap: wrap;
}

.news_conain .news_listul li {
  width: calc((100% - 2 * 0.3rem) / 3);

  cursor: pointer;

  position: relative;
}

.news_conain .news_listul li:hover .newsC_info h3 {
  color: var(--i_color);
}

.news_conain .news_listul li span {
  position: relative;

  width: 100%;
}

.news_conain .news_listul li span::before {
  content: "";

  display: block;

  padding-bottom: 75%;
}

.news_conain .news_listul li span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.news_conain .news_listul li i {
  position: absolute;

  top: 6%;

  right: 0;

  font-family: Arial;

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.16rem;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;

  color: #ffffff;

  background: linear-gradient(270deg, rgba(38, 102, 164, 0) 0%, #2666a4 100%);

  padding: 0.1rem 0.4rem 0.1rem 0.16rem;

  box-sizing: border-box;
}

.news_conain .news_listul li .newsC_info {
  padding: 0.16rem;

  box-sizing: border-box;
}

.newsC_info h3 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: bold;

  line-height: 0.32rem;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;

  color: #333;

  margin-bottom: 0.1rem;
}

.newsC_info h4 {
  font-family: Arial;

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.26rem;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;

  color: #666666;

  margin-bottom: 0.1rem;
}

.newsC_info p {
  width: 0.15rem;

  height: 0.12rem;
}

.newsC_info p img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  filter: brightness(0) saturate(100%) invert(32%) sepia(73%) saturate(546%)
    hue-rotate(176deg) brightness(92%) contrast(92%);
}

@media screen and (max-width: 1024px) {
  .newsC_info h3 {
    font-size: 0.16rem;

    line-height: 0.25rem;
  }

  .newsC_info h4 {
    font-size: 0.14rem;

    line-height: 0.22rem;
  }

  .news_conain .news_listul li i {
    font-size: 0.14rem;
  }
}

@media screen and (max-width: 768px) {
  .news_conain .news_listul li {
    width: calc((100% - 0.3rem) / 2);
  }
}

@media screen and (max-width: 425px) {
  .news_conain .news_listul li {
    width: 100%;
  }

  .news {
    padding: 0.3rem 0;
  }
}

/* ------------------------------contact.html----------------------- */

/* ------------------------Contact Our Team ---------------------- */

.contactUs_form {
  background: url(static/images/contactUs_topbg.webp) no-repeat center/cover;

  padding: 0.6rem 0;
}

@media screen and (max-width: 425px) {
  .contactUs_form {
    padding: 0.3rem 0;
  }
}

#wpforms-148 {
  --wpforms_input_height: 48px;

  --wpforms_textarea_height: 120px;

  --wpforms_input_font_size: 16px;

  width: 100%;
}

#wpforms-148 {
  margin: 0;

  padding: 0;
}

#wpforms-form-148 {
  width: 100%;

  position: relative;
}

/* 字段样式 */

#wpforms-148 .wpforms-field-container > .wpforms-field {
  width: 100%;

  padding: 0 1px 20px;

  margin: 0 0 6px;

  overflow-x: initial !important;

  position: relative;
}

#wpforms-148 label.wpforms-field-label {
  display: block;

  margin-bottom: 8px;

  font-size: 16px;

  font-weight: bold;

  padding-left: 0.13rem;
}

#wpforms-148
  .wpforms-field-container
  #wpforms-148-field_1-container
  .wpforms-field-label,
#wpforms-148
  .wpforms-field-container
  #wpforms-148-field_3-container
  .wpforms-field-label {
  padding-left: 0;
}

#wpforms-148 .wpforms-field-container .wpforms-required-label {
  color: #d63637;
}

#wpforms-148 .wpforms-field-container .wpforms-field > input,
#wpforms-148 .wpforms-field-container textarea {
  width: 100%;

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0 0;

  border: 1px solid #ccc;

  background: #fff;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-148 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);
}

#wpforms-148 .wpforms-field-container textarea {
  height: var(--wpforms_textarea_height);
}

#wpforms-148 input::placeholder,
#wpforms-148 textarea::placeholder {
  color: #aaa;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-148 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-148 .wpforms-field-container textarea:hover,
#wpforms-148 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-148 .wpforms-field-container textarea:focus {
  border-color: var(--i_color);
}

/* 验证错误提示 */

#wpforms-148 label.wpforms-error,
#wpforms-148 em.wpforms-error {
  position: absolute;

  left: 0;

  bottom: 0;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

#wpforms-148 .wpforms-field-container .wpforms-field-label {
  /* height: 0;

  font-size: 0;

  margin: 0 0; */
}

#wpforms-148 .wpforms-field-container .wpforms-required-label {
  position: absolute;

  top: 0px;

  left: 4px;

  font-size: 16px;

  font-weight: bold;
}

/* 输入框水平排列，一行两个 */

#wpforms-148 .wpforms-field-container {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

#wpforms-148-field_1-container,
#wpforms-148-field_2-container,
#wpforms-148-field_3-container {
  width: 32.5% !important;
}

#wpforms-148-field_4-container {
  width: 100% !important;
}

/* 提交按钮样式 */

#wpforms-148 .wpforms-submit-container {
  width: 100%;

  padding: 0 0;

  position: relative;

  overflow: hidden;
}

#wpforms-148 .wpforms-submit-container button {
  width: 20%;

  height: 53px;

  font-size: 18px;

  color: #fff;

  background: var(--i_color);
}

#wpforms-148 .wpforms-submit-container img {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

#wpforms-148 .wpforms-submit-container button:hover {
  background: #00a2f9;
}

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

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

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

@media screen and (max-width: 1024px) {
  #wpforms-148 .wpforms-submit-container {
    margin: 0.2rem auto 0;
  }

  #wpforms-148 .wpforms-submit-container button {
    width: 40%;
  }
}

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

@media screen and (max-width: 768px) {
  #wpforms-148 .wpforms-field:nth-child(1),
  #wpforms-148 .wpforms-field:nth-child(2) {
    margin-right: 0rem;
  }

  #wpforms-148 .wpforms-field:nth-child(1),
  #wpforms-148 .wpforms-field:nth-child(2),
  #wpforms-148 .wpforms-field:nth-child(3) {
    width: 100%;
  }

  #wpforms-148 {
    --input_height: 0.5rem;
  }
}

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

@media screen and (max-width: 425px) {
  /* 输入框水平排列，一行两个 */

  #wpforms-148 .wpforms-field-container {
    display: block;

    justify-content: space-between;
  }

  #wpforms-148-field_1-container,
  #wpforms-148-field_2-container,
  #wpforms-148-field_3-container {
    width: 100% !important;
  }

  #wpforms-148 .wpforms-submit-container button {
    width: 100%;
  }
}

.hide {
  display: none !important;
}

/* ---------------------------contatc_info---------------------------- */

.contatc_info {
  padding: 1rem 0;
}

.ci_maxbox {
}

.ci_maxbox ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.5rem 0;
}

.ci_maxbox ul li {
  display: flex;

  flex-direction: column;

  gap: 0.15rem;

  align-items: flex-start;

  padding-bottom: 0.1rem;

  border-bottom: #e5e5e5 1px solid;

  cursor: pointer;

  position: relative;
}

.ci_maxbox ul li::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 2px;

  background-color: var(--i_color);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.5s ease;
}

.ci_maxbox ul li:hover::after {
  transform: scaleX(1);
}

.ci_maxbox ul li:nth-child(-n + 3) {
  flex: 0 0 33.3333%;
}

.ci_maxbox ul li:nth-child(4) {
  flex: 0 0 100%;
}

.ci_maxbox ul li h3 {
  font-family: Arial;

  font-size: 0.22rem;

  font-weight: bold;

  line-height: normal;

  letter-spacing: 0em;

  color: #333333;
}

.ci_maxbox ul li h4 a {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.26rem;

  letter-spacing: 0em;

  color: #333333;
}

.ci_maxbox ul li:hover h3,
.ci_maxbox ul li:hover h4 a {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .ci_maxbox ul li:nth-child(-n + 4) {
    flex: 0 0 50%;
  }
}

@media screen and (max-width: 768px) {
  .ci_maxbox ul li h3 {
    font-size: 0.2rem;
  }

  .ci_maxbox ul li h4 a {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 425px) {
  .ci_maxbox ul li:nth-child(-n + 4) {
    flex: 0 0 100%;
  }

  .ci_maxbox ul li {
    gap: 0.1rem;
  }

  .ci_maxbox ul {
    gap: 0.2rem 0;
  }
  .contatc_info {
    padding: 0.3rem 0;
  }
}

/* ---------------------------------contact_map------------------------------- */

.contact_map_bac {
  box-sizing: border-box;

  margin-bottom: 1rem;
}

.contact_map {
  height: 5.8rem;
}

.contact_map #simpleMap,
.contact_map .fluid-width-video-wrapper,
.contact_map iframe {
  width: 100%;

  height: 100% !important;
}

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

@media screen and (max-width: 1200px) {
  .contact_map {
    height: 5rem;
  }
}

@media screen and (max-width: 1024px) {
  .contact_map {
    height: 4.5rem;
  }
}

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

@media screen and (max-width: 768px) {
  .contact_map {
    height: 4rem;
  }
}

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

@media screen and (max-width: 425px) {
  .contact_map_bac {
    margin-bottom: 0;
  }
}

.contact_related-pagination {
  text-align: center;
}

.contact_related-pagination .swiper-pagination-bullet {
  width: 0.1rem;

  height: 0.1rem;

  display: inline-block;

  margin: 0 0.08rem !important;

  border-radius: 0;

  background: rgba(0, 0, 0, 0.4);

  cursor: pointer;

  position: relative;

  -webkit-transition: width 0.5s ease;

  transition: width 0.5s ease;
}

.contact_related-pagination .swiper-pagination-bullet-active {
  width: 0.4rem;

  height: 0.1rem;

  background: var(--i_color);

  background-size: contain;

  border-radius: 0;
}
