@charset "utf-8";

:root {
  --i_color: #fe6b02;

  /* 全局颜色 */

  --i_color2: #fff;

  /* 副颜色 */

  --top_h: 1rem;

  /* 第一层导航*/

  --top_h1: 0.8rem;

  /* 第二层导航 */

  --header_height: 1.8rem;

  /* 导航总高度 */
}

/* html,

body {

  overflow-x: hidden;

} */

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

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

    --header_height: 0.7rem;
  }
}

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

    --header_height: 0.5rem;

    --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: 1400px;

  margin-left: auto;

  margin-right: auto;
}

.wrap02 {
  width: 1640px;

  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) {
}

@media screen and (min-width: 1025px) {
  header.TopHeader {
    --top_h: 0.7rem;

    --top_h1: 0.6rem;

    --header_height: 1.3rem;
  }
}

/* --------------------占位盒子----------------- */

.header_heightbox {
  height: calc(var(--header_height));
}

@media screen and (max-width: 768px) {
  .header_heightbox {
    height: var(--header_height);
  }
}

/* ---------------------------------public_title-------------------- */

.public_title {
}

.public_title h3 {
  font-family: "Montserrat";

  font-size: 0.38rem;

  font-weight: 600;

  color: #333333;

  margin-bottom: 0.25rem;

  text-align: center;
}

.public_title h4 {
  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.3rem;

  text-align: center;

  color: #666;
}

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

    margin-bottom: 0.2rem;
  }
}

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

    margin-bottom: 0.15rem;
  }

  .public_title h4 {
    font-size: 0.16rem;

    line-height: 0.28rem;
  }
}

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

    margin-bottom: 0.1rem;
  }

  .public_title h4 {
    font-size: 0.15rem;
  }
}

@media screen and (max-width: 560px) {
  .public_title h3 {
    font-size: 0.22rem;

    margin-bottom: 0.08rem;
  }

  .public_title h4 {
    font-size: 0.14rem;

    line-height: 0.24rem;
  }
}

@media screen and (max-width: 375px) {
  .public_title h3 {
    font-size: 0.2rem;

    margin-bottom: 0.08rem;
  }

  .public_title h4 {
    font-size: 0.12rem;

    line-height: 0.22rem;
  }
}

/* Paging */

.in_paging {
  --size: 30px;

  --border_radius: 5px;

  --curr_color: var(--i_color);

  box-sizing: border-box;
}

.in_paging ul {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  align-items: center;

  text-align: center;

  width: 100%;
}

.in_paging li {
  min-width: var(--size);

  margin: 0 4px;
}

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

  padding: 0 10px;

  height: var(--size);

  line-height: calc(var(--size) - 2px);

  font-size: 14px;

  color: #666;

  background: #fff;

  box-sizing: border-box;

  border: 1px solid #ccc;

  -webkit-border-radius: var(--border_radius);

  border-radius: var(--border_radius);

  overflow: hidden;
}

.in_paging ul li:not(:first-child):not(:last-of-type) a,
.in_paging ul li:not(:first-child):not(:last-of-type) span {
  border-radius: 50%;
}

.in_paging i {
  margin-top: 14px;

  width: 100%;

  font-size: 13px;

  color: #888;
}

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

  background: var(--curr_color);

  color: #fff !important;
}

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

.public_btn {
}

.public_btn a {
  font-family: "Montserrat";

  font-size: 0.18rem;

  font-weight: 500;

  line-height: 0.3rem;

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

  border-radius: 0.1rem;

  box-sizing: border-box;

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  overflow: hidden;

  transition: color 0.5s;

  z-index: 1;

  cursor: pointer;

  color: var(--i_color);

  width: 2rem;

  height: 0.5rem;

  background: transparent;
}

.public_btn a::before {
  content: "";

  position: absolute;

  z-index: -1;

  background: var(--i_color);

  height: 1rem;

  width: 3rem;

  border-radius: 50%;

  top: 100%;

  left: 100%;

  transition: all 0.7s;
}

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

.public_btn a:hover::before {
  top: -0.3rem;

  left: -0.3rem;
}

@media screen and (max-width: 1024px) {
  .public_btn a {
    width: 1.8rem;

    height: 0.45rem;

    font-size: 0.17rem;
  }
}

@media screen and (max-width: 560px) {
  .public_btn a {
    width: 1.5rem;

    height: 0.4rem;

    font-size: 0.15rem;
  }
}

@media screen and (max-width: 375px) {
  .public_btn a {
    width: 1.3rem;

    height: 0.35rem;

    font-size: 0.13rem;
  }
}

/* -------------------------------------other_btn--------------------------------- */

.other_btn {
}

.other_btn a {
  font-family: "Montserrat";

  font-size: 0.18rem;

  font-weight: 500;

  line-height: 0.3rem;

  border: 1px solid transparent;

  border-radius: 0.1rem;

  box-sizing: border-box;

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  overflow: hidden;

  transition: color 0.5s;

  z-index: 1;

  cursor: pointer;

  background: var(--i_color);

  color: #fff;

  width: 2rem;

  height: 0.5rem;
}

.other_btn a::before {
  content: "";

  position: absolute;

  z-index: -1;

  background: #fff;

  height: 1rem;

  width: 3rem;

  border-radius: 50%;

  top: 100%;

  left: 100%;

  transition: all 0.7s;
}

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

.other_btn a:hover::before {
  top: -0.3rem;

  left: -0.3rem;
}

.hhspm_btn {
  margin-top: 0.3rem;

  display: flex;

  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .other_btn a {
    width: 1.8rem;

    height: 0.45rem;

    font-size: 0.17rem;
  }
}

@media screen and (max-width: 560px) {
  .other_btn a {
    width: 1.5rem;

    height: 0.4rem;

    font-size: 0.15rem;
  }
}

@media screen and (max-width: 375px) {
  .other_btn a {
    width: 1.3rem;

    height: 0.35rem;

    font-size: 0.13rem;
  }
}

/* -------------------------public_company_btnbox----------------------------- */

.public_company_btnbox {
  display: flex;

  gap: 0.3rem;

  flex-wrap: wrap;
}

.public_company_btnbox li {
}

.public_company_btnbox li a {
  padding: 0.1rem 0.4rem;

  box-sizing: border-box;

  font-family: "Montserrat";

  font-size: 0.18rem;

  font-weight: 500;

  line-height: 0.3rem;

  text-align: center;

  color: var(--i_color);

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

  border-radius: 0.1rem;

  position: relative;

  overflow: hidden;

  z-index: 1;

  transition: color 0.5s;

  display: block;
}

.public_company_btnbox li a::before {
  content: "";

  position: absolute;

  z-index: -1;

  background: var(--i_color);

  width: 200%;

  height: 200%;

  border-radius: 50%;

  top: 100%;

  left: 100%;

  transition: all 0.7s;
}

.public_company_btnbox li a:hover {
  color: #fff;
}

.public_company_btnbox li a:hover::before {
  top: -50%;

  left: -50%;
}

.public_company_btnbox li.active a::before {
  top: -50%;

  left: -50%;
}

.public_company_btnbox li.active a {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .public_company_btnbox li a {
    padding: 0.1rem 0.2rem;

    font-size: 0.16rem;

    line-height: 0.2rem;
  }

  .public_company_btnbox {
  }
}

@media screen and (max-width: 768px) {
  .public_company_btnbox li a {
    padding: 0.1rem 0.15rem;

    font-size: 0.14rem;

    line-height: 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .public_company_btnbox {
    gap: 0.15rem;

    justify-content: left;
  }

  .about_solvic_company {
    padding: 0.3rem 0;
  }

  .public_company_btnbox li a {
    padding: 0.08rem 0.12rem;

    font-size: 0.12rem;
  }
}

/* -----------------滚动导航高度缩小--------------- */

@media screen and (min-width: 1025px) {
  .top_cont,
  .secondary_navigation {
    transition: all 0.4s ease;
  }

  header.TopHeader .logo img {
    max-height: 0.6rem;
  }

  header.TopHeader .sc_nav {
    gap: 0.4rem;
  }

  header.TopHeader .top_cont {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  header.TopHeader .top_search.on {
    visibility: visible;

    opacity: 1;

    top: var(--header_height);

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

  .top_cont {
    transform-origin: top;
  }

  header.TopHeader .top_cont {
    animation: headerShrink 0.7s ease forwards;
  }

  @keyframes headerShrink {
    0% {
      height: 1.8rem;
    }

    100% {
      height: 1.3rem;
    }
  }

  header:not(.TopHeader) .top_cont {
    animation: headerExpand 0.7s ease forwards;
  }

  @keyframes headerExpand {
    0% {
      height: 1.3rem;
    }

    100% {
      height: 1.8rem;
    }
  }
}

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

header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 2014;

  height: var(--header_height);

  transition: all 0.4s ease;
}

.top_cont {
  background: #f4f4f4;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  height: var(--header_height);

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  height: var(--top_h);
}

/* logo */

.logo {
  display: -webkit-flex;

  height: 80%;

  align-items: center;
}

.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;
  }

  .top_cont .top {
    width: 100%;
  }
}

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

@media screen and (max-width: 768px) {
  .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 {
    display: -webkit-flex;

    display: flex;

    flex-wrap: nowrap;

    gap: 0 0.5rem;

    z-index: 2014;

    margin-left: auto;

    height: 100%;

    align-items: center;
  }

  .i_nav > li {
    position: relative;

    height: 100%;

    display: flex;

    align-items: center;
  }

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

    position: absolute;

    left: 50%;

    bottom: 0;

    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: 0.16rem;

    color: #333;

    white-space: nowrap;

    box-sizing: border-box;

    font-weight: 500;

    font-family: "Montserrat";
  }

  .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: 50%;

    transform: translateX(-50%);

    min-width: 1.6rem;

    background: var(--i_color2);

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

    font-size: 0;

    top: 100%;
  }

  .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: #fff;
  }

  .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 (min-width: 1025px) {
  #menu-item-60 {
    display: none;
  }
}

@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;
  }
}

@media screen and (max-width: 768px) {
  .i_nav {
    top: calc(var(--top_h));
  }
}

/* 移动端导航按钮 */

.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);
}

/* search */

.top_r {
  display: -webkit-flex;

  display: flex;

  flex-wrap: nowrap;

  align-items: center;

  margin-left: 0.5rem;

  gap: 0 0.45rem;

  position: relative;
}

.top_r::before {
  position: absolute;

  left: 38%;

  top: 0;

  transform: translateX(-38%);

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

  width: 0.01rem;

  height: 100%;

  content: "";
}

.top_search {
  --search_height: 0.38rem;
}

.top_search {
  visibility: hidden;

  opacity: 0;

  position: fixed;

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

  right: 0;

  width: 100%;

  padding: 0.2rem 0;

  background: #f5f6f7;

  -webkit-transition: all 0.3s ease;

  transition: all 0.3s ease;

  z-index: 99;
}

.top_search.on {
  visibility: visible;

  opacity: 1;

  top: var(--header_height);

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

.top_search form {
  width: 90%;

  margin: 0 auto;

  max-width: 5rem;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  box-sizing: border-box;

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

  overflow: hidden;
}

.top_search_ipt {
  width: calc(100% - var(--search_height) * 2);

  height: var(--search_height);

  box-sizing: border-box;

  padding: 0 0 0 0.12rem;
}

.top_search_btn {
  font-size: 0;

  color: #fff;

  width: calc(var(--search_height) * 2);

  height: var(--search_height);

  background: var(--i_color)
    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="white" 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.24rem;

  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .top_search {
    --search_height: 0.34rem;
  }
}

.full_header_height {
  display: none;

  height: var(--header_height);
}

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

  .top_r {
    margin-left: auto;
  }
}

@media screen and (max-width: 560px) {
  .top_r {
    gap: 0 0.15rem;
  }

  .top_r::before {
    display: none;
  }
}

.top_language {
  position: relative;
}

.top_language_btn {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  padding-right: 0.2rem;

  cursor: pointer;

  position: relative;
}

.top_language_btn::after {
  content: "";

  position: absolute;

  top: 50%;

  right: 0.05rem;

  transform: translateY(-50%);

  width: 0;

  height: 0;

  border-left: 5px solid transparent;

  border-right: 5px solid transparent;

  border-top: 6px solid #333; /* 颜色 */
}

.top_language_btn p {
  font-size: 18px;

  color: #333;
}

.top_language_btn img {
  width: 0.22rem;

  height: 0.22rem;

  margin-right: 0.05rem;
}

.top_search_ico img,
.top_language_btn img {
  width: 0.2rem;

  height: 0.2rem;

  cursor: pointer;

  object-fit: contain;

  display: block;
}

.top_search_ico img:hover,
.top_search_ico.on img,
.top_language_btn.on img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(83%) saturate(1572%)
    hue-rotate(346deg) brightness(101%) contrast(101%);
}

.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: 150%;
}

.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 img {
    width: 0.2rem;

    height: 0.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .top_language_btn img {
    width: 0.2rem;

    height: 0.2rem;
  }

  .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;
  }
}

@media screen and (max-width: 560px) {
  .top_search_ico img,
  .top_language_btn img {
    width: 0.2rem;

    height: 0.2rem;
  }
}

/* -------------------------------第二层导航------------------------- */

.secondary_navigation {
  height: var(--top_h1);

  background: #fff;

  display: flex;

  justify-content: center;

  align-items: center;
}

.sn_box {
  width: fit-content;

  height: 100%;

  position: relative;

  display: flex;

  align-items: center;
}

.sc_nav {
  display: flex;

  gap: 0.65rem;

  align-items: center;

  height: 100%;
}

.sc_nav .sn_menu_item {
  align-items: center;

  height: 100%;

  display: flex;
}

.sc_nav .sn_menu_item .snmi_a {
  font-family: "Montserrat";

  font-size: 0.16rem;

  font-weight: 500;

  color: #333333;

  display: flex;

  align-items: center;

  position: relative;

  height: 100%;
}

.sc_nav .sn_menu_item .snmi_a::before {
  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 0;

  height: 0.03rem;

  content: "";

  background: var(--i_color);

  transition: all 0.5s ease;
}

.sc_nav .sn_menu_item.current-sn-menu-item .snmi_a {
  color: var(--i_color);
}

.sc_nav .sn_menu_item.current-sn-menu-item .snmi_a::before {
  width: 100%;
}

.sc_nav .sn_menu_item .snmi_a:hover {
  color: var(--i_color);
}

.sc_nav .sn_menu_item:hover .snmi_a::before {
  width: 100%;
}

/* 二级导航子导航 */

.sn_sub_menu_children {
  position: absolute;

  top: 99%;

  left: 0;

  width: 100%;

  background: #fff;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

  border-radius: 0.1rem;

  display: none;

  gap: 0.5rem;

  padding: 0.3rem 0.25rem 0.25rem 0.25rem;

  box-sizing: border-box;

  overflow: hidden;

  flex-wrap: wrap;

  min-width: 3rem;

  max-height: 6rem;

  overflow-y: auto;
}

.sn_sub_menu_children::-webkit-scrollbar {
  width: 0.03rem; /* 滚动条宽度 */
}

.sn_sub_menu_children::-webkit-scrollbar-track {
  background: transparent; /* 滚动条轨道 */
}

.sn_sub_menu_children::-webkit-scrollbar-thumb {
  background: var(--i_color); /* 滑块颜色 */

  border-radius: 10px;
}

.sn_sub_menu_children::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.sn_sub_menu_children li {
  margin-bottom: 0.1rem;

  box-sizing: border-box;
}

.sn_sub_menu_children li h3 {
  margin-bottom: 0.1rem;
}

.sn_sub_menu_children li h3 a {
  font-size: 0.16rem;

  line-height: 0.24rem;

  font-family: "Montserrat";

  color: #444;

  padding: 0.06rem 0.1rem;

  display: block;
}

.sn_sub_menu_children li h3 a:hover {
  background: rgba(36, 81, 127, 0.05);

  color: #0f52bc;
}

.sn_sub_menu_children li .snsm_ul {
  display: flex;

  flex-direction: column;
}

.sn_sub_menu_children li .snsm_ul li {
}

.sn_sub_menu_children li .snsm_ul li a {
  display: block;

  width: 100%;

  float: left;

  font-size: 0.14rem;

  line-height: 0.24rem;

  padding: 0.08rem 0;

  padding-left: 0.1rem;
}

.sn_sub_menu_children li .snsm_ul li a:hover {
  text-decoration: underline;

  color: #0f52bc;
}

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

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

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

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

.footer_maxBox {
  height: 100%;
}

.footer_topMaxBox {
  color: #fff;
}

.footer_topMaxBox .ft_maxul {
  display: flex;

  justify-content: space-between;

  padding: 0.8rem 0 0.7rem 0;

  box-sizing: border-box;

  gap: 0.8rem;
}

.footer_topMaxBox .ft_maxul li {
  display: flex;

  flex-direction: column;
}

.footer_topMaxBox .ft_maxul li:nth-child(1) {
  flex: 2;

  flex-shrink: 0;

  margin-right: 0.5rem;
}

.footer_topMaxBox .ft_maxul li:nth-child(2),
.footer_topMaxBox .ft_maxul li:nth-child(3) {
  flex: 1;
}

.footer_topMaxBox .ft_maxul li:nth-child(4) {
  flex: 1.5;
}

/* 公司信息li */

.ft_cinfo_li .ftil_logo_span {
  width: 2.5rem;

  height: 0.78rem;

  display: block;

  margin-bottom: 0.15rem;
}

.ft_cinfo_li .ftil_logo_span img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.ft_cinfo_li h3 {
  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.3rem;

  color: #ffffff;

  margin-bottom: 0.5rem;
}

.ft_cinfo_li .ftil_qrcode_span {
  width: 1.14rem;

  height: 1.14rem;

  display: block;
}

.ft_cinfo_li .ftil_qrcode_span img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

/* 菜单li */

.ft_menu_li h3 {
  font-family: "Roboto";

  font-size: 0.24rem;

  font-weight: bold;

  color: #ffffff;

  margin-bottom: 0.2rem;
}

.ft_menu_li ul {
  display: flex;

  flex-direction: column;

  gap: 0.1rem;
}

.ft_menu_li ul li {
  width: 100%;
}

.ft_menu_li ul li a {
  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.4rem;

  color: rgba(255, 255, 255, 0.7);

  word-break: break-all;

  display: flex;

  align-items: center;

  transform: translateX(-0.2rem);

  transition: all 0.45s ease;
}

.ft_menu_li ul li a iconify-icon {
  opacity: 0;

  font-size: 0.18rem;

  margin-right: 0.05rem;
}

.ft_menu_li ul li a:hover iconify-icon {
  opacity: 1;
}

.ft_menu_li a:hover {
  text-decoration: underline;

  transform: translateX(0);
}

/* 用户信息li */

.ft_uinfo_li h3 {
  font-family: "Roboto";

  font-size: 0.24rem;

  font-weight: bold;

  color: #ffffff;

  margin-bottom: 0.2rem;
}

.ft_uinfo_li ul {
  display: flex;

  flex-direction: column;

  gap: 0.1rem;
}

.ft_uinfo_li ul li {
  width: 100%;
}

.ft_uinfo_li ul li a {
  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.4rem;

  color: rgba(255, 255, 255, 0.7);

  word-break: break-all;

  transition: color 0.4s ease;

  display: flex;

  align-items: center;
}

.ft_uinfo_li ul li dl {
  display: flex;

  gap: 0.2rem;

  margin-top: 0.5rem;
}

.ft_uinfo_li ul li dl dt {
}

.ft_uinfo_li ul li dl dt a {
  width: 40px;

  height: 40px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  border: 1px solid #fff;

  box-sizing: border-box;

  background-clip: padding-box;

  position: relative;

  overflow: hidden;
}

.ft_uinfo_li ul li dl dt a::before {
  content: "";

  position: absolute;

  right: 0;

  bottom: 0;

  width: 0;

  height: 100%;

  background: var(--i_color);

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  border-radius: 50%;
}

.ft_uinfo_li ul li dl dt a:hover::before {
  right: initial;

  left: 0;

  width: 100%;
}

.ft_uinfo_li ul li dl dt a iconify-icon {
  font-size: 0.18rem;
}

.ft_uinfo_li ul li dl dt a:hover {
  border: 1px solid var(--i_color);
}

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

  text-decoration: underline;
}

.footer_bottomMaxBox {
  font-family: "Roboto";

  font-weight: 400;

  font-size: 16px;

  font-variation-settings: "opsz" auto;

  color: rgba(255, 255, 255, 0.6);

  padding: 0.25rem 0;

  box-sizing: border-box;

  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer_bottomMaxBox a {
  font-family: "Roboto";

  font-weight: 400;

  font-size: 16px;

  font-variation-settings: "opsz" auto;

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

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

  color: var(--i_color);
}

.ft_phone_img {
  display: none;
}

@media screen and (max-width: 1440px) {
  .footer_topMaxBox .ft_maxul li:nth-child(1) {
    margin-right: 0;
  }
}

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

@media screen and (max-width: 1024px) {
  .footer_topMaxBox .ft_maxul {
    padding: 0.4rem 0 0.3rem 0;

    gap: 0.2rem;
  }

  .ft_cinfo_li h3 {
    font-size: 0.16rem;

    line-height: 0.28rem;

    margin-bottom: 0.3rem;
  }

  .ft_cinfo_li .ftil_qrcode_span {
    width: 1rem;

    height: 1rem;
  }

  .ft_cinfo_li .ftil_logo_span {
    width: 2rem;

    height: 0.6rem;
  }

  .ft_menu_li h3 {
    font-size: 0.2rem;
  }

  .ft_menu_li ul li a {
    font-size: 0.16rem;

    line-height: 0.35rem;

    transform: translateX(-0.2rem);

    transition: all 0.45s ease;
  }

  .ft_uinfo_li h3 {
    font-size: 0.16rem;

    margin-bottom: 0.2rem;
  }

  .ft_uinfo_li ul li a {
    font-size: 0.16rem;

    line-height: 0.3rem;
  }

  .ft_uinfo_li ul li dl {
    margin-top: 0.3rem;
  }

  .ft_uinfo_li ul li dl dt a {
    width: 35px;

    height: 35px;
  }

  .ft_uinfo_li ul li dl dt a iconify-icon {
    font-size: 0.16rem;
  }

  .footer_bottomMaxBox {
    padding: 0.2rem 0;

    font-size: 0.14rem;
  }

  .footer_bottomMaxBox a {
    font-size: 0.14rem;
  }
}

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

  .footer_topMaxBox .ft_maxul {
    padding: 0.4rem 0 0.3rem 0;

    gap: 0.5rem;
  }

  .ft_uinfo_li h3 {
    font-size: 0.18rem;
  }

  .ft_cinfo_li h3 {
    font-size: 0.14rem;

    line-height: 0.25rem;
  }

  .ft_cinfo_li .ftil_qrcode_span {
    width: 0.8rem;

    height: 0.8rem;
  }

  .ft_uinfo_li ul li dl {
    margin-top: 0.1rem;
  }

  .ft_uinfo_li ul li a {
    font-size: 0.15rem;
  }
}

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

    padding: 0.1rem 0;
  }

  .footer_bottomMaxBox {
    font-size: 0.13rem;
  }

  .footer_topMaxBox .ft_maxul {
    flex-direction: column;
  }

  .ft_phone_img {
    display: block;

    width: 0.6rem;

    height: 0.6rem;
  }

  .ft_phone_img img {
    width: 100%;

    height: 100%;

    object-fit: contain;
  }

  .ft_cinfo_li .ftil_qrcode_span {
    display: none;
  }

  .footer_topMaxBox .ft_maxul {
    padding: 0.3rem 0;

    gap: 0.1rem;
  }

  .ft_cinfo_li h3 {
    margin-bottom: 0.1rem;
  }
}

@media screen and (max-width: 375px) {
  .ft_cinfo_li .ftil_logo_span {
    width: 1.8rem;

    height: 0.5rem;
  }

  .footer_topMaxBox .ft_maxul {
    padding: 0.2rem 0;
  }

  .ft_cinfo_li h3 {
    line-height: 0.24rem;
  }

  .ft_uinfo_li h3 {
    margin-bottom: 0.1rem;
  }
}

/* ---------------------------------index.html------------------------------- */

/* ----------------------banner----------------- */

.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 {
  padding-bottom: 37.62%;

  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;
}

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

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

@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;
  }
}

@media screen and (max-width: 560px) {
  .banner .swiper-slide {
    padding-bottom: 56%;

    position: relative;
  }
}

@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;
  }
}

/* --------------------------------home_aboout_company-------------------- */

.home_aboout_company {
  padding: 0 0 0.9rem 0;
}

.hac_maxbox {
}

.hacm_top {
  display: flex;

  flex-direction: column;

  align-items: center;
}

.hacm_span {
  width: 1.83rem;

  height: 0.7rem;

  margin-bottom: 0.2rem;
}

.hacm_span img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

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

.hac_maxbox h4 {
  color: #333;
}

.hacm_btn {
  margin-top: 0.3rem;

  display: flex;

  gap: 0.4rem;
}

@media screen and (max-width: 1200px) {
  .hacm_span {
    width: 1.5rem;

    height: 0.6rem;

    margin-bottom: 0.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .hacm_span {
    height: 0.5rem;
  }

  .home_aboout_company {
    padding: 0 0 0.6rem 0;
  }
}

@media screen and (max-width: 768px) {
  .hacm_span {
    height: 0.4rem;

    margin-bottom: 0.15rem;
  }
}

@media screen and (max-width: 560px) {
  .hacm_span {
    height: 0.3rem;
  }

  .hacm_btn {
    gap: 0.3rem;
  }

  .home_aboout_company {
    padding: 0 0 0.3rem 0;
  }
}

@media screen and (max-width: 320px) {
  .hacm_span {
    height: 0.2rem;

    margin-bottom: 0.1rem;
  }

  .hacm_btn {
    gap: 0.2rem;
  }
}

/* ----------------------------------home_choose_your_solution--------------------------- */

.home_choose_your_solution {
  padding: 0.6rem 0;

  background: #f4f4f4;
}

.hcys_maxbox {
  overflow: hidden;
}

.hcysm_top {
  margin-bottom: 0.5rem;
}

.hcysm_ul {
  display: flex;

  flex-wrap: wrap;
}

.hcysm_ul li {
  width: 25%;

  cursor: pointer;

  overflow: hidden;
}

.hcysm_ul li .hcysmu_span {
  position: relative;

  display: block;
}

.hcysm_ul li .hcysmu_span::before {
  content: "";

  display: block;

  padding-bottom: 137%;
}

.hcysm_ul li .hcysmu_span .hcysmus_bg {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hcysm_ul li .hcysmu_span p {
  position: absolute;

  bottom: 10%;

  left: 5.7%;

  font-family: "Roboto";

  font-size: 0.22rem;

  font-weight: bold;

  line-height: 0.28rem;

  color: #ffffff;

  display: block;

  width: 76%;
}

.hcysm_ul li .hcysmu_span p i {
  position: relative;

  display: block;

  padding-bottom: 0.2rem;

  font-weight: bold;
}

.hcysm_ul li .hcysmu_span p i::before {
  position: absolute;

  bottom: 0;

  left: 0;

  background: #fff;

  width: 22%;

  content: "";

  height: 0.04rem;
}

.hcysm_ul li:hover p {
  display: none;
}

.hcysm_ul li:hover .hcysmu_box {
  top: 0;
}

.hcysmu_box {
  background: rgba(0, 0, 0, 0.6);

  position: absolute;

  top: 100%;

  left: 0;

  height: 100%;

  width: 100%;

  padding: 0 0.25rem 0.3rem 0.25rem;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  transition: top 0.8s cubic-bezier(0.5, 0, 0.3, 1);
}

.hcysmu_box h3 {
  font-family: "Roboto";

  font-size: 0.22rem;

  font-weight: bold;

  line-height: 0.28rem;

  color: #ffffff;

  position: relative;

  padding-bottom: 0.2rem;

  margin-bottom: 0.2rem;
}

.hcysmu_box h3::before {
  position: absolute;

  content: "";

  display: block;

  width: 20%;

  height: 0.04rem;

  background: var(--i_color);

  left: 0;

  bottom: 0;
}

.hcysmu_box h4 {
  font-family: "Roboto";

  font-size: 0.16rem;

  line-height: 0.24rem;

  color: #ffffff;

  margin-bottom: 0.25rem;
}

.hcysmu_box .hcysmub_imgbox {
  width: 0.45rem;

  height: 0.45rem;

  background: var(--i_color);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;
}

.hcysmu_box .hcysmub_imgbox img {
  width: 60%;

  height: 60%;

  object-fit: contain;
}

@media screen and (max-width: 1024px) {
  .hcysm_ul li .hcysmu_span p {
    font-size: 0.18rem;

    width: 90%;
  }

  .hcysmu_box h3 {
    font-size: 0.18rem;

    padding-bottom: 0.1rem;

    margin-bottom: 0.1rem;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;
  }

  .hcysmu_box {
    padding: 0 0.2rem 0.2rem 0.2rem;
  }

  .hcysmu_box h4 {
    font-size: 0.14rem;

    line-height: 0.22rem;

    margin-bottom: 0.2rem;

    display: -webkit-box;

    -webkit-line-clamp: 6;

    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;
  }

  .hcysmu_box .hcysmub_imgbox {
    width: 0.35rem;

    height: 0.35rem;
  }
}

@media screen and (max-width: 768px) {
  .hcysm_ul li {
    width: 50%;
  }

  .hcysmu_box {
    padding: 0.5rem 0.2rem 0.3rem 0.2rem;

    justify-content: flex-start;
  }

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

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

  .home_choose_your_solution {
    padding: 0.3rem 0;
  }

  .hcysm_top {
    margin-bottom: 0.3rem;
  }

  .hcysmu_box h4 {
    margin-bottom: 0.4rem;
  }

  .hcysm_ul li .hcysmu_span::before {
    padding-bottom: 100%;
  }
}

@media screen and (max-width: 375px) {
  .hcysmu_box h3 {
    font-size: 0.16rem;
  }
}

/* -----------------------------------home_hot_sell_products---------------------------- */

.home_hot_sell_products {
  padding: 0.6rem 0;
}

.hhsp_maxbox {
}

.hhspm_top {
  margin-bottom: 0.5rem;
}

.hhspmt_title {
  display: flex;

  flex-direction: column;

  align-items: center;
}

.hhspmt_title h4 {
  width: 46%;
}

.hhspm_contain {
  position: relative;
}

.hhspmc_list {
  position: relative;

  overflow: hidden;

  padding-right: 2px;
}

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

  display: flex;

  position: relative;
}

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

  position: relative;

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

  border-radius: 0.1rem;

  overflow: hidden;

  cursor: pointer;

  box-sizing: border-box;
}

.hhspmc_list .swiper-slide:hover span p {
  color: var(--i_color);
}

.hhspmc_list .swiper-slide:hover span img {
  transform: scale(1.08);
}

.hhspmc_list .swiper-slide span {
  position: relative;

  display: block;

  overflow: hidden;
}

.hhspmc_list .swiper-slide span::before {
  content: "";

  display: block;

  padding-bottom: 132%;
}

.hhspmc_list .swiper-slide span img {
  position: absolute;

  width: 100%;

  height: 71.86%;

  object-fit: cover;

  top: 0;

  left: 0;

  transition: transform 0.4s ease;
}

.hhspmc_list .swiper-slide span .hhspmc_p {
  position: absolute;

  bottom: 0;

  left: 0;

  display: flex;

  justify-content: center;

  align-items: center;

  width: 100%;

  height: 28.14%;

  padding: 0 0.4rem;

  box-sizing: border-box;
}

.hhspmc_list .swiper-slide span p {
  font-family: "Roboto";

  font-size: 0.18rem;

  color: #333333;

  text-align: center;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.hhspmc_prev,
.hhspmc_next {
  background-color: transparent;

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

  width: 0.52rem;

  height: 0.52rem;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  position: absolute;

  cursor: pointer;

  z-index: 3;

  transition: all 0.4s ease;

  cursor: pointer;
}

.hhspmc_prev.swiper-button-disabled,
.hhspmc_next.swiper-button-disabled {
  opacity: 0.4; /* 变灰 */

  cursor: not-allowed; /* 禁止手型 */
}

.hhspmc_prev {
  top: 40%;

  left: -5%;
}

.hhspmc_next {
  top: 40%;

  right: -5%;
}

.hhspmc_prev img,
.hhspmc_next img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(83%) saturate(2270%)
    hue-rotate(350deg) brightness(101%) contrast(101%);

  width: 60%;

  height: 60%;

  object-fit: contain;

  transition: all 0.4s ease;
}

.hhspmc_prev:hover,
.hhspmc_next:hover {
  background-color: var(--i_color);

  transform: scale(1.08);
}

.hhspmc_prev:hover img,
.hhspmc_next:hover img {
  filter: brightness(0) invert(1);
}

/* 指示器 */

.hhspm_contain .hhspmc_pagination {
  text-align: center;

  margin: 0.4rem auto 0;

  display: none;
}

.hhspm_contain .hhspmc_pagination .swiper-pagination-bullet {
  width: 0.1rem;

  height: 0.1rem;

  cursor: pointer;

  display: inline-block;

  margin: 0 0.05rem;

  box-sizing: border-box;

  border-radius: 50%;

  outline: none;
}

.hhspm_contain .hhspmc_pagination .swiper-pagination-bullet-active {
  position: relative;

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

  background: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .hhspm_contain {
    position: relative;

    padding: 0 0.8rem;
  }

  .hhspmc_prev {
    top: 40%;

    left: 0%;
  }

  .hhspmc_next {
    top: 40%;

    right: 0%;
  }
}

@media screen and (max-width: 1024px) {
  .hhspmc_prev,
  .hhspmc_next {
    width: 0.35rem;

    height: 0.35rem;
  }

  .hhspm_contain {
    position: relative;

    padding: 0 0.4rem;
  }

  .hhspmc_prev {
    top: 40%;

    left: -1%;
  }

  .hhspmc_next {
    top: 40%;

    right: -1%;
  }

  .hhspmc_list .swiper-slide span p {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 768px) {
  .hhspmc_list .swiper-slide span img {
    height: 75.86%;
  }

  .hhspmc_list .swiper-slide span .hhspmc_p {
    padding: 0 0.2rem;

    height: 24.14%;
  }

  .hhspmc_list .swiper-slide span p {
    font-size: 0.16rem;
  }

  .hhspm_contain .hhspmc_pagination {
    display: block;
  }

  .hhspmc_prev,
  .hhspmc_next {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .hhspmt_title h4 {
    width: 80%;
  }

  .home_hot_sell_products {
    padding: 0.3rem 0;
  }

  .hhspm_top {
    margin-bottom: 0.2rem;
  }

  .hhspm_contain .hhspmc_pagination {
    margin: 0.2rem auto 0;
  }

  .hhspm_btn {
    margin-top: 0.15rem;
  }

  .hhspm_contain {
    padding: 0 0.2rem;
  }
}

@media screen and (max-width: 375px) {
  .hhspmc_list .swiper-slide span p {
    font-size: 0.14rem;
  }

  .hhspm_contain .hhspmc_pagination {
    text-align: center;

    margin: 0.2rem auto 0;
  }
}

/* --------------------------------------------home_production_line----------------------------- */

.home_production_line {
  padding: 0.6rem 0;

  background: #f4f4f4;
}

.hpl_maxbox {
}

.hplm_top {
  margin-bottom: 0.4rem;
}

.hplm_title {
  display: flex;

  justify-content: space-between;
}

.hplm_title h3 {
  text-align: left;

  width: 41%;
}

.hplm_title h4 {
  width: 56.71%;

  text-align: left;
}

.product_line_list {
  position: relative;

  overflow: hidden;
}

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

  display: flex;

  position: relative;

  width: 100%;
}

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

  background: #fff;

  box-sizing: border-box;

  border: 1px solid #ddd;

  -webkit-border-radius: 0.2rem;

  border-radius: 0.2rem;

  position: relative;

  overflow: hidden;
}

/* 文字样式 */

.product_line_list .swiper-slide .img-des {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  z-index: 2;

  min-height: 0.4rem;

  padding-bottom: 0.1rem;

  display: flex;

  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.3rem;

  color: #ffffff;

  opacity: 1;

  display: flex;

  justify-content: center;
}

.product_line_list .swiper-slide:hover span img {
  transform: scale(1.2);
}

.product_line_list li span {
  display: block;

  width: 100%;

  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 60.5%;
}

.product_line_list li span::after {
  content: "";

  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 50%;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);

  opacity: 1;
}

.product_line_list .swiper-slide-active span::after {
  opacity: 1;

  transition: opacity 0.5s ease;
}

.product_line_list li span img {
  position: absolute;

  top: 0%;

  left: 0%;

  width: 100%;

  height: 100%;

  object-fit: cover;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.pll_prev,
.pll_next {
  background-color: transparent;

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

  width: 0.52rem;

  height: 0.52rem;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  position: absolute;

  cursor: pointer;

  z-index: 3;

  transition: all 0.4s ease;

  cursor: pointer;
}

.pll_prev.swiper-button-disabled,
.pll_next.swiper-button-disabled {
  opacity: 0.4; /* 变灰 */

  cursor: not-allowed; /* 禁止手型 */
}

.pll_prev {
  top: 40%;

  left: 12%;
}

.pll_next {
  top: 40%;

  right: 12%;
}

.pll_prev img,
.pll_next img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(83%) saturate(2270%)
    hue-rotate(350deg) brightness(101%) contrast(101%);

  width: 60%;

  height: 60%;

  object-fit: contain;

  transition: all 0.4s ease;
}

.pll_prev:hover,
.pll_next:hover {
  background-color: var(--i_color);

  transform: scale(1.08);
}

.pll_prev:hover img,
.pll_next:hover img {
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 1440px) {
  .pll_prev {
    top: 40%;

    left: 8%;
  }

  .pll_next {
    top: 40%;

    right: 8%;
  }
}

@media screen and (max-width: 1200px) {
  .pll_prev,
  .pll_next {
    width: 0.4rem;

    height: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  .product_line_list .swiper-slide .img-des {
    font-size: 0.16rem;

    padding-bottom: 0;
  }

  .pll_prev,
  .pll_next {
    width: 0.3rem;

    height: 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .hplm_title {
    display: flex;

    justify-content: space-between;

    flex-direction: column;
  }

  .hplm_title h3 {
    text-align: center;

    width: 100%;
  }

  .hplm_title h4 {
    width: 100%;

    text-align: center;
  }

  .home_production_line {
    padding: 0.3rem 0;
  }

  .hplm_top {
    margin-bottom: 0.2rem;
  }

  .pll_prev {
    top: 40%;

    left: 5%;
  }

  .pll_next {
    top: 40%;

    right: 5%;
  }
}

/* --------------------------------------------home_certificate_warranty--------------------------------*/

.home_certificate_warranty {
  padding: 0.6rem 0;

  position: relative;

  overflow: hidden;
}

.hcw_bg {
  position: absolute;

  right: 0;

  top: 0;

  height: 100%;

  width: 21%;

  pointer-events: none;
}

.hcw_bg img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hcw_maxbox {
}

.hcwm_top {
  margin-bottom: 0.3rem;
}

.hcwm_contain {
  display: flex;

  justify-content: space-between;
}

.hcwmc_certificate {
  width: 44%;
}

.hcwmc_certificate span {
  position: relative;

  display: block;
}

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

  display: block;

  padding-bottom: 66.5%;
}

.hcwmc_certificate span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: transform 0.4s ease;
}

.hcwmc_certificate span:hover img {
  transform: scale(1.08);
}

.hcwmc_downloadLink {
  width: 54%;

  display: flex;

  align-items: center;
}

.hcwmc_downloadLink ul {
  display: flex;

  justify-content: space-between;

  width: 100%;

  height: 100%;

  align-items: center;

  flex-wrap: wrap;
}

.hcwmc_downloadLink ul li {
  width: 48%;
}

.hcwmc_downloadLink ul li h3 {
  font-family: "Roboto";

  font-size: 0.3rem;

  font-weight: bold;

  color: var(--i_color);

  margin-bottom: 0.25rem;
}

.hcwmc_downloadLink ul li dl {
  display: flex;

  flex-direction: column;

  justify-content: space-between;

  gap: 0.05rem;
  height: 2.8rem;
  overflow-y: auto;
}
.hcwmc_downloadLink ul li dl::-webkit-scrollbar {
  width: 2px; /* 滚动条宽度 */
}

.hcwmc_downloadLink ul li dl::-webkit-scrollbar-track {
  background: transparent; /* 轨道 */
}

.hcwmc_downloadLink ul li dl::-webkit-scrollbar-thumb {
  background: var(--i_color); /* 滑块颜色 */
  border-radius: 10px;
}

.hcwmc_downloadLink ul li dl::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.hcwmc_downloadLink ul li dl dt {
}

.hcwmc_downloadLink ul li dl dt a {
  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.3rem;

  color: #333333;

  position: relative;

  transition: color 0.3s ease;

  display: block; /* 建议加 */

  white-space: nowrap; /* 不换行 */

  overflow: hidden; /* 超出隐藏 */

  text-overflow: ellipsis; /* 省略号 */

  padding-left: 0.2rem;
}

.hcwmc_downloadLink ul li dl dt a::before {
  position: absolute;

  content: "";

  display: block;

  width: 0.1rem;

  height: 0.1rem;

  border-radius: 50%;

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

  top: 50%;

  left: 0rem;

  transform: translateY(-50%) scale(1);

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.hcwmc_downloadLink ul li dl dt a:hover {
  text-decoration: underline;

  color: var(--i_color);
}

.hcwmc_downloadLink ul li dl dt a:hover::before {
  background: var(--i_color);

  transform: translateY(-50%) scale(1.05);
}

@media screen and (max-width: 1440px) {
  .hcw_bg {
    width: 31%;
  }
}

@media screen and (max-width: 1200px) {
  .hcwmc_downloadLink ul li h3 {
    font-size: 0.26rem;

    margin-bottom: 0.15rem;
  }

  .hcwmc_downloadLink ul li dl dt a {
    font-size: 0.16rem;
  }

  .hcwmc_downloadLink ul li dl dt a::before {
    width: 0.08rem;

    height: 0.08rem;

    left: 0rem;
  }
}

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

    flex-direction: column;

    align-items: center;
  }

  .hcwmc_certificate {
    width: 80%;
  }

  .hcwmc_downloadLink {
    width: 80%;
  }

  .hcw_bg {
    display: none;
  }
}

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

    margin-bottom: 0.1rem;
  }

  .hcwmc_downloadLink ul li dl dt a {
    font-size: 0.15rem;
  }
}

@media screen and (max-width: 560px) {
  .hcwmc_certificate {
    width: 90%;
  }

  .hcwmc_downloadLink {
    width: 90%;
  }

  .home_certificate_warranty {
    padding: 0.3rem 0;
  }

  .hcwmc_downloadLink ul li h3 {
    font-size: 0.2rem;
  }

  .hcwmc_downloadLink ul li dl dt a {
    font-size: 0.14rem;

    line-height: 0.2rem;
  }

  .hcwmc_downloadLink ul li dl dt {
  }

  .hcwmc_downloadLink ul li dl dt a::before {
    width: 0.06rem;

    height: 0.06rem;
  }

  .hcwmc_downloadLink ul {
    gap: 0.1rem;
  }

  .hcwmc_downloadLink ul li {
    width: 100%;
  }
}

/* ----------------------------home_our_projects---------------------------------- */

.home_our_projects {
  padding: 0.6rem 0;

  background: #f4f4f4;
}

.hop_maxbox {
}

.hopm_top {
  margin-bottom: 0.3rem;
}

.hopm_contain {
  position: relative;

  margin-bottom: 0.5rem;
}

.hopm_list {
  position: relative;

  overflow: hidden;

  padding: 0.1rem;
}

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

  display: flex;

  position: relative;

  width: 100%;

  box-sizing: border-box;
}

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

  transition: box-shadow 0.35s ease;

  box-sizing: border-box;

  border-radius: 0.1rem;

  position: relative;

  overflow: hidden;

  cursor: pointer;
}

.hopm_list .swiper-slide:hover {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}

.hopm_list .swiper-slide:hover .hopm_card_info h3 {
  color: var(--i_color);
}

.hopm_list .swiper-slide span {
  position: relative;

  display: block;

  overflow: hidden;
}

.hopm_list .swiper-slide span::before {
  content: "";

  display: block;

  padding-bottom: 70.8%;
}

.hopm_list .swiper-slide span img {
  width: 100%;

  height: 70%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: transform 0.5s ease;
}

.hopm_list .swiper-slide:hover span img {
  transform: scale(1.1);
}

.hopm_card_info {
  position: absolute;

  bottom: 0;

  left: 0;

  height: 30%;

  padding: 0.25rem 0.6rem 0.25rem 0.3rem;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  width: 100%;

  background: #fff;
}

.hopm_card_info h3 {
  font-family: "Roboto";

  font-size: 0.22rem;

  font-weight: bold;

  color: #333333;
}

.hopm_card_info dl {
  display: flex;

  justify-content: space-between;

  width: 100%;
}

.hopm_card_info dl dt:nth-child(1) {
  flex: 2;
}

.hopm_card_info dl dt:nth-child(2),
.hopm_card_info dl dt:nth-child(3) {
  flex: 1;
}

.hopm_card_info dl dt {
  display: flex;

  flex-direction: column;

  justify-content: space-between;

  gap: 0.05rem;

  min-width: 0;

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

.hopm_card_info dl dt p {
  font-family: "Roboto";

  font-size: 0.14rem;

  font-weight: 400;

  color: #666666;

  display: block; /* 建议加 */

  white-space: nowrap; /* 不换行 */

  overflow: hidden; /* 超出隐藏 */

  text-overflow: ellipsis; /* 省略号 */
}

.hopm_card_info dl dt i {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: 400;

  color: #333333;

  display: block; /* 建议加 */

  white-space: nowrap; /* 不换行 */

  overflow: hidden; /* 超出隐藏 */

  text-overflow: ellipsis; /* 省略号 */
}

.hopm_prev,
.hopm_next {
  background-color: transparent;

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

  width: 0.52rem;

  height: 0.52rem;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  position: absolute;

  cursor: pointer;

  z-index: 3;

  transition: all 0.4s ease;

  cursor: pointer;
}

.hopm_prev.swiper-button-disabled,
.hopm_next.swiper-button-disabled {
  opacity: 0.4; /* 变灰 */

  cursor: not-allowed; /* 禁止手型 */
}

.hopm_prev {
  top: 40%;

  left: -6%;
}

.hopm_next {
  top: 40%;

  right: -6%;
}

.hopm_prev img,
.hopm_next img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(83%) saturate(2270%)
    hue-rotate(350deg) brightness(101%) contrast(101%);

  width: 60%;

  height: 60%;

  object-fit: contain;

  transition: all 0.4s ease;
}

.hopm_prev:hover,
.hopm_next:hover {
  background-color: var(--i_color);

  transform: scale(1.08);
}

.hopm_prev:hover img,
.hopm_next:hover img {
  filter: brightness(0) invert(1);
}

.hopm_btn {
  display: flex;

  justify-content: center;
}

/* 指示器 */

.hopm_contain .hopm_pagination {
  text-align: center;

  margin: 0.4rem auto 0;

  display: none;
}

.hopm_contain .hopm_pagination .swiper-pagination-bullet {
  width: 0.1rem;

  height: 0.1rem;

  cursor: pointer;

  display: inline-block;

  margin: 0 0.05rem;

  box-sizing: border-box;

  border-radius: 50%;

  outline: none;
}

.hopm_contain .hopm_pagination .swiper-pagination-bullet-active {
  position: relative;

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

  background: var(--i_color);
}

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

  .hopm_prev {
    top: 40%;

    left: 0%;
  }

  .hopm_next {
    top: 40%;

    right: 0%;
  }

  .hopm_card_info {
    padding: 0.2rem 0.3rem 0.2rem 0.2rem;
  }
}

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

@media screen and (max-width: 1200px) {
  .hopm_card_info {
    padding: 0.1rem 0.2rem 0.2rem 0.15rem;
  }

  .hopm_card_info h3 {
    font-size: 0.18rem;
  }

  .hopm_card_info dl dt i {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 1024px) {
  .hopm_prev,
  .hopm_next {
    width: 0.35rem;

    height: 0.35rem;
  }

  .hopm_prev {
    top: 40%;

    left: -1%;
  }

  .hopm_next {
    top: 40%;

    right: -1%;
  }

  .hopm_contain {
    padding: 0 0.4rem;
  }

  .home_our_projects {
    padding: 0.4rem 0;
  }

  .hopm_card_info {
    padding: 0.05rem 0.2rem 0.1rem 0.15rem;
  }

  .hopm_card_info h3 {
    font-size: 0.16rem;
  }

  .hopm_list .swiper-slide span::before {
    padding-bottom: 81%;
  }
}

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

  .hopm_prev,
  .hopm_next {
    display: none;
  }

  .hopm_list .swiper-slide span::before {
    padding-bottom: 66%;
  }

  .hopm_card_info {
    padding: 0.1rem 0.2rem 0.15rem 0.2rem;
  }

  .hopm_contain .hopm_pagination {
    margin: 0.2rem auto 0;
  }

  .hopm_contain {
    margin-bottom: 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .hhspmt_title h4 {
    width: 80%;
  }

  .home_our_projects {
    padding: 0.3rem 0;
  }

  .hhspm_top {
    margin-bottom: 0.2rem;
  }

  .hopm_contain .hopm_pagination {
    margin: 0.05rem auto 0;
  }

  .hhspm_btn {
    margin-top: 0.15rem;
  }

  .hopm_contain {
    padding: 0;
  }

  .hopm_top {
    margin-bottom: 0.1rem;
  }

  .hopm_list .swiper-slide span::before {
    padding-bottom: 79%;
  }

  .hopm_card_info {
    padding: 0.08rem 0.15rem 0.15rem 0.15rem;
  }

  .hopm_card_info h3 {
    font-size: 0.14rem;
  }

  .hopm_card_info dl dt p {
    font-size: 0.12rem;
  }

  .hopm_card_info dl dt i {
    font-size: 0.13rem;
  }

  .hopm_contain {
    margin-bottom: 0.15rem;
  }
}

@media screen and (max-width: 375px) {
  .hhspmc_list .swiper-slide span p {
    font-size: 0.14rem;
  }

  .hopm_contain .hopm_pagination {
    text-align: center;

    margin: 0.2rem auto 0;
  }
}

/* --------------------------------------home_our_valued_partner----------------------- */

.home_our_valued_partner {
  padding: 0.6rem 0;
}

.hovp_maxbox {
}

.hovpm_top {
  margin-bottom: 0.5rem;
}

.hovpm_contain {
}

.hovpm_contain ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.2rem;
}

.hovpm_contain ul li {
  width: calc((100% - 5 * 0.2rem) / 6);

  cursor: pointer;
}

.hovpm_contain ul li span {
  width: 100%;

  position: relative;

  display: block;

  background: #fff;

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

  border-radius: 0.1rem;

  overflow: hidden;
}

.hovpm_contain ul li span::before {
  content: "";

  padding-bottom: 58%;

  display: block;

  width: 100%;
}

.hovpm_contain ul li span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

  transition: transform 0.4s ease;
}

.hovpm_contain ul li:hover span img {
  transform: scale(1.1);
}

@media screen and (max-width: 560px) {
  .hovpm_contain ul {
    gap: 0.15rem;
  }

  .hovpm_contain ul li {
    width: calc((100% - 3 * 0.15rem) / 4);
  }

  .home_our_valued_partner {
    padding: 0.3rem 0;
  }

  .hovpm_top {
    margin-bottom: 0.2rem;
  }
}

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

.home_news {
  padding: 0.6rem 0;

  background: #f4f4f4;
}

.hn_maxbox {
}

.hnm_top {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 0.3rem;
}

.hnmt_title {
  width: 30%;
}

.hnmt_title h3 {
  text-align: left;

  margin-bottom: 0.1rem;
}

.hnmt_title h4 {
  text-align: left;
}

.hnm_btn {
  width: 50%;

  display: flex;

  justify-content: flex-end;
}

.hnm_contain {
}

.hnm_contain ul {
  padding-top: 0.3rem;

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

  gap: 0.55rem;

  display: flex;
}

.hnm_contain ul li {
  width: calc((100% - 2 * 0.55rem) / 3);
}

.hnm_contain ul li h3 {
  font-family: "Roboto";

  font-size: 0.18rem;

  color: #666666;

  margin-bottom: 0.2rem;
}

.hnm_contain ul li h4 {
  font-family: "Roboto";

  font-size: 0.24rem;

  font-weight: bold;

  line-height: 0.32rem;

  color: #333333;

  margin-bottom: 0.25rem;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.hnm_contain ul li span {
  position: relative;

  display: block;

  margin-bottom: 0.2rem;

  overflow: hidden;

  border-radius: 0.1rem;
}

.hnm_contain ul li span::before {
  content: "";

  display: block;

  padding-bottom: 81.5%;
}

.hnm_contain ul li span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.hnm_contain ul li .news_btn {
  font-family: "Montserrat";

  font-size: 0.18rem;

  font-weight: 500;

  line-height: 0.36rem;

  color: #333333;

  display: flex;

  align-items: center;
}

.hnm_contain ul li .news_btn img {
  width: 0.28rem;

  height: 0.28rem;

  object-fit: contain;

  margin-left: 0.05rem;
}

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

.hnm_contain ul li:hover span img {
  transform: scale(1.1);
}

.hnm_contain ul li:hover .news_btn {
  color: var(--i_color);
}

.hnm_contain ul li:hover .news_btn img {
  filter: brightness(0) saturate(100%) invert(55%) sepia(86%) saturate(1647%)
    hue-rotate(343deg) brightness(99%) contrast(102%);
}

@media screen and (max-width: 1024px) {
  .hnm_contain ul {
    padding-top: 0.2rem;

    gap: 0.3rem;
  }

  .hnm_contain ul li {
    width: calc((100% - 2 * 0.3rem) / 3);
  }

  .hnm_contain ul li h3 {
    font-size: 0.16rem;

    margin-bottom: 0.1rem;
  }

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

    line-height: 0.28rem;

    margin-bottom: 0.2rem;
  }

  .hnm_contain ul li span {
    margin-bottom: 0.15rem;
  }

  .hnm_contain ul li .news_btn {
    font-size: 0.16rem;

    line-height: 0.3rem;
  }

  .hnm_contain ul li .news_btn img {
    width: 0.22rem;

    height: 0.22rem;

    margin-left: 0.02rem;
  }
}

@media screen and (max-width: 768px) {
  .home_news {
    padding: 0.4rem 0;
  }

  .hnmt_title {
    width: 40%;
  }

  .hnm_contain ul {
    padding-top: 0.1rem;

    gap: 0.15rem;
  }

  .hnm_contain ul li {
    width: calc((100% - 2 * 0.15rem) / 3);
  }

  .hnm_contain ul li h3 {
    font-size: 0.14rem;

    margin-bottom: 0.05rem;
  }

  .hnm_contain ul li h4 {
    font-size: 0.16rem;

    line-height: 0.26rem;

    margin-bottom: 0.15rem;
  }

  .hnm_contain ul li span {
    margin-bottom: 0.1rem;
  }

  .hnm_contain ul li .news_btn {
    font-size: 0.14rem;
  }

  .hnm_contain ul li .news_btn img {
    width: 0.2rem;

    height: 0.2rem;
  }
}

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

  .hnm_top {
    flex-direction: column;

    margin-bottom: 0.1rem;
  }

  .hnmt_title {
    width: 100%;
  }

  .hnmt_title h3 {
    text-align: center;

    margin-bottom: 0.1rem;
  }

  .hnmt_title h4 {
    text-align: center;
  }

  .hnm_btn {
    display: none;
  }

  .hnm_contain ul {
    flex-wrap: wrap;

    border: none;
  }

  .hnm_contain ul li {
    width: 100%;

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

    padding-top: 0.1rem;
  }
}

/* -------------------------------------------about_solvic_banner------------------------- */

.about_solvic_banner {
  width: 100%;

  position: relative;
}

.about_solvic_banner::before {
  content: "";

  display: block;

  padding-bottom: 26.12%;
}

.about_solvic_banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;
}

@media screen and (max-width: 768px) {
  .about_solvic_banner::before {
    content: "";

    display: block;

    padding-bottom: 36.5%;
  }
}

@media screen and (max-width: 425px) {
  .about_solvic_banner::before {
    content: "";

    display: block;

    padding-bottom: 59.5%;
  }
}

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

.in_position {
  box-sizing: border-box;

  padding: 0.2rem 0;

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

  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: #333333;

  position: relative;

  line-height: 0.2rem;

  font-family: "Roboto";
}

.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;
  }
}

/* -----------------------------pas_position------------------------------- */

.pas_position {
  background: #fff;
}

/* ----------------------------------project_position---------------------- */

.project_position {
  background: #f4f4f4;
}

/* -----------------------------------company.html--------------------------- */

.about_solvic_company {
  background: linear-gradient(180deg, rgba(244, 244, 244, 0) 0%, #f4f4f4 100%);

  padding: 0.6rem 0;
}

.asc_maxbox {
}

.ascm_top {
  width: 100%;

  display: flex;

  justify-content: center;

  margin-bottom: 0.5rem;
}

.ascm_contain {
}

.ascmc_title h3 {
  text-align: left;
}

.ascmc_title h4 {
  text-align: left;

  margin-bottom: 0.5rem;

  color: #333;
}

.br-gap {
  display: block;

  height: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .br-gap {
    height: 0.1rem;
  }
}

@media screen and (max-width: 560px) {
  .br-gap {
    height: 0.05rem;
  }

  .about_solvic_company {
    padding: 0.3rem 0;
  }

  .ascm_top {
    margin-bottom: 0.3rem;
  }
}

.ascmc_video span {
  position: relative;

  display: block;

  border-radius: 0.1rem;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 46.5%;
}

.ascmc_video span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.ascmc_video i {
  display: block;

  width: 1.4rem;

  height: 0.56rem;

  cursor: pointer;

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

  background-size: contain;

  position: absolute;

  top: 50%;

  left: 50%;

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

.i_v_btn::before {
  content: "";

  position: absolute;

  left: 50%;

  top: 50%;

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

  border: 1px solid #fff;

  width: 100%;

  height: 100%;

  border-radius: 50%;

  opacity: 0;

  z-index: 2;

  /* animation: serv_one_border 2s 0s ease infinite; */
}

@keyframes serv_one_border {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;

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

    -ms-transform: translate(-50%, -50%) scale(1.5);

    -o-transform: translate(-50%, -50%) scale(1.5);

    -webkit-transform: translate(-50%, -50%) scale(1.5);

    -moz-transform: translate(-50%, -50%) scale(1.5);
  }
}

@keyframes yuan {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media screen and (max-width: 1024px) {
  .ascmc_video i {
    width: 1.2rem;

    height: 0.36rem;
  }
}

@media screen and (max-width: 768px) {
  .ascmc_video i {
    width: 1rem;

    height: 0.36rem;
  }
}

@media screen and (max-width: 560px) {
  .ascmc_video i {
    width: 0.8rem;

    height: 0.3rem;
  }

  .ascmc_title h4 {
    margin-bottom: 0.3rem;
  }
}

@media screen and (max-width: 375px) {
  .ascmc_video i {
    width: 0.6rem;

    height: 0.25rem;
  }
}

/* eject videos */

.vd_box {
  display: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  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;
  }
}

/* eject videos */

.vd_box {
  display: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  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;
  }
}

/* ---------------------------------about_solvic_employee---------------------------------- */

.about_solvic_employee {
  padding: 0.6rem 0;
}

.ase_maxbox {
  display: flex;

  justify-content: space-between;

  overflow: hidden;
}

.asem_info {
  width: 53%;

  padding-left: 0.5rem;

  box-sizing: border-box;
}

.asemi_top {
  position: relative;
}

.asemi_top::before {
  content: "";

  display: block;

  height: 100%;

  width: 0.06rem;

  background: var(--i_color);

  position: absolute;

  left: -0.4rem;

  top: 0;
}

.asemi_top h3 {
  font-family: "Montserrat" !important;

  font-size: 0.38rem;

  font-weight: 600;

  color: var(--i_color);

  margin-bottom: 0.15rem;
}

.asemi_top h4 {
  font-family: "Roboto" !important;

  font-size: 0.18rem;

  font-weight: bold;

  line-height: 0.3rem;

  color: #333333;

  margin-bottom: 0.3rem;
}

.asemi_contain {
  margin-top: 0.2rem;
}

.asemi_contain h3 {
  font-family: "Roboto";

  font-size: 0.16rem;

  color: #333333;

  margin-bottom: 0.2rem;
}

.asemi_contain h3 i {
  font-family: "Roboto";

  font-size: 0.22rem;

  font-weight: bold;

  color: var(--i_color);

  margin-right: 0.1rem;
}

.asemi_contain h4 {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.3rem;

  color: #666666;
}

.asem_pic {
  width: 45.5%;

  position: relative;
}

.asem_pic::before {
  content: "";

  display: block;

  padding-bottom: 118.5%;
}

.asem_pic img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;
}

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

    margin-bottom: 0.1rem;
  }

  .asemi_top h4 {
    font-size: 0.16rem;

    line-height: 0.26rem;

    margin-bottom: 0.3rem;
  }

  .asem_info {
    padding-left: 0.3rem;
  }
}

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

  .asem_info {
    padding-left: 0.1rem;
  }

  .asemi_top::before {
    width: 0.04rem;

    left: -0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .asem_info {
    width: 100%;

    padding: 0.15rem;
  }

  .ase_maxbox {
    flex-direction: column;
  }

  .asemi_top::before {
    width: 0.04rem;

    left: -0.15rem;
  }

  .asem_pic {
    width: 100%;
  }

  .asem_pic::before {
    padding-bottom: 100%;
  }

  .about_solvic_employee {
    padding: 0.3rem 0;
  }

  .asemi_top h3 {
    font-size: 0.24rem;
  }
}

@media screen and (max-width: 375px) {
  .asemi_top h3 {
    font-size: 0.2rem;
  }

  .asemi_top h4 {
    font-size: 0.14rem;

    line-height: 0.24rem;

    margin-bottom: 0.15rem;
  }
}

/* ------------------------------------about_solvic_otpt-------------------------------- */

.about_solvic_otpt {
  position: relative;

  box-sizing: border-box;
}

.aso_maxbox {
  position: relative;
}

.aso_maxbox::before {
  content: "";

  display: block;

  padding-bottom: 39.4%;
}

.aso_top {
  position: absolute;

  top: 0;

  left: 0;

  height: 51.45%;

  width: 100%;

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

.asot_title {
  padding: 0.6rem 0 0 0;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.asot_title h3 {
  color: #fff;
}

.asot_title h4 {
  color: #fff;

  width: 80%;
}

.aso_contain {
  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  height: 73.2%;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;
}

.asoc_list {
  position: relative;

  overflow: hidden;

  padding-right: 2px;
}

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

  display: flex;

  position: relative;
}

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

  position: relative;

  border-radius: 0.1rem;

  overflow: hidden;

  cursor: pointer;

  box-sizing: border-box;
}

.asoc_list .swiper-slide span {
  position: relative;

  display: block;
}

.asoc_list .swiper-slide span::before {
  content: "";

  display: block;

  padding-bottom: 155.5%;

  width: 100%;
}

.asoc_list .swiper-slide span img {
  position: absolute;

  left: 0;

  top: 0;

  height: 74%;

  width: 100%;

  object-fit: cover;

  transition: all 0.35s ease;
}

.asoc_list .swiper-slide span .asoc_info {
  height: 26%;

  width: 100%;

  position: absolute;

  left: 0;

  bottom: 0;

  display: flex;

  padding: 0.1rem;

  box-sizing: border-box;

  flex-direction: column;

  align-items: center;

  justify-content: center;
}

.asoc_list .swiper-slide span .asoc_info h3 {
  font-family: "Roboto";

  font-size: 0.24rem;

  font-weight: bold;

  line-height: 0.3rem;

  text-align: center;

  color: #333333;

  margin-bottom: 0.1rem;

  transition: all 0.35s ease;
}

.asoc_list .swiper-slide:hover span .asoc_info h3 {
  color: var(--i_color);
}

.asoc_list .swiper-slide span .asoc_info h4 {
  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.3rem;

  text-align: center;

  color: #666666;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.asoc_name {
  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  top: 61%;

  width: 60%;

  height: 0.5rem;

  background: var(--i_color);

  color: #fff;

  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: bold;

  line-height: 0.3rem;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 0.1rem;
}

@media screen and (max-width: 1440px) {
  .aso_maxbox::before {
    padding-bottom: 49.4%;
  }
}

@media screen and (max-width: 1200px) {
  .aso_maxbox::before {
    padding-bottom: 51.4%;
  }

  .asoc_name {
    height: 0.45rem;

    font-size: 0.16rem;
  }

  .asoc_list .swiper-slide span .asoc_info h3 {
    font-size: 0.2rem;

    line-height: 0.3rem;

    margin-bottom: 0.05rem;
  }

  .asoc_list .swiper-slide span .asoc_info h4 {
    font-size: 0.16rem;

    line-height: 0.26rem;
  }
}

@media screen and (max-width: 1024px) {
  .aso_maxbox::before {
    padding-bottom: 67.4%;
  }
}

@media screen and (max-width: 768px) {
  .aso_maxbox::before {
    padding-bottom: 100%;
  }
}

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

  .aso_maxbox::before {
    padding-bottom: 173%;
  }

  .asoc_list .swiper-slide span::before {
    padding-bottom: 134.5%;
  }

  .asot_title h4 {
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  .aso_maxbox::before {
    padding-bottom: 194%;
  }

  .asoc_name {
    height: 0.35rem;

    font-size: 0.14rem;
  }

  .asoc_list .swiper-slide span .asoc_info h3 {
    font-size: 0.18rem;

    line-height: 0.3rem;

    margin-bottom: 0.05rem;
  }

  .asoc_list .swiper-slide span .asoc_info h4 {
    font-size: 0.14rem;

    line-height: 0.24rem;
  }
}

/* ----------------------------oversea_services_team------------------------------- */

.oversea_services_team {
  padding: 1.3rem 0 0.6rem 0;
}

.ost_maxbox {
  display: flex;
}

.ostm_info {
  width: 41%;
}

.ostmi_title h3 {
  text-align: left;
}

.ostmi_title h4 {
  text-align: left;

  color: #666;

  margin-bottom: 0.7rem;
}

.ostmit_ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.7rem;
}

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

.ostmit_ul li span {
}

.ostmit_ul li span h5 {
  font-family: "Montserrat";

  font-weight: 600;

  font-size: 0.24rem;

  color: var(--i_color);
}

.ostmit_ul li span h5 i {
  font-family: "Montserrat";

  font-weight: 600;

  font-size: 0.54rem;
}

.ostmit_ul li span h6 {
  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.24rem;

  color: #666666;
}

.ostm_pic {
  width: 59%;

  display: flex;

  align-items: center;
}

.ostm_pic span {
  width: 100%;

  display: block;

  position: relative;
}

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

  display: block;

  padding-bottom: 78%;
}

.ostm_pic span img {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

@media screen and (max-width: 1366px) {
  .ostmi_title h4 {
    margin-bottom: 0.5rem;
  }

  .ostmit_ul {
    gap: 0.5rem;
  }
}

@media screen and (max-width: 1200px) {
  .ostmit_ul li span h5 i {
    font-size: 0.5rem;
  }

  .ostmi_title h4 {
    margin-bottom: 0.3rem;
  }

  .ostmit_ul li span h5 {
    font-size: 0.22rem;
  }

  .ostmit_ul li span h6 {
    font-size: 0.16rem;

    line-height: 0.22rem;
  }

  .ostmit_ul {
    gap: 0.3rem;
  }
}

@media screen and (max-width: 1024px) {
  .ostmit_ul li span h5 i {
    font-size: 0.3rem;
  }

  .ostmit_ul li span h5 {
    font-size: 0.18rem;
  }

  .ostmit_ul li span h6 {
    font-size: 0.15rem;
  }

  .oversea_services_team {
    padding: 0.9rem 0 0.3rem 0;
  }
}

@media screen and (max-width: 768px) {
  .ost_maxbox {
    flex-direction: column;
  }

  .ostm_info {
    width: 100%;

    margin-bottom: 0.3rem;
  }

  .ostmi_title h3 {
    text-align: center;
  }

  .ostmi_title h4 {
    text-align: left;
  }

  .ostmit_ul li span {
    text-align: center;
  }

  .ostm_pic {
    width: 100%;

    display: flex;

    align-items: center;
  }

  .ostm_pic span::before {
    padding-bottom: 61%;
  }
}

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

  .ostmi_title h4 {
    margin-bottom: 0.2rem;
  }

  .ostmit_ul li span h5 i {
    font-size: 0.24rem;
  }

  .ostmit_ul li span h5 {
    font-size: 0.14rem;
  }

  .ostmit_ul li span h6 {
    font-size: 0.13rem;
  }
}

/* --------------------------------public_about_solvic----------------------- */

.public_about_solvic_top {
  background: linear-gradient(180deg, rgba(244, 244, 244, 0) 0%, #f4f4f4 100%);

  padding: 0.6rem 0;

  margin-bottom: 0.2rem;
}

.past_maxbox {
}

.pastm_top {
  display: flex;

  justify-content: center;

  margin-bottom: 0.5rem;
}

.pastm_contain {
  display: flex;

  justify-content: space-between;
}

.pastmc_pic {
  width: 49%;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.pastmc_pic span {
  position: relative;

  display: block;

  border-radius: 0.1rem;

  overflow: hidden;

  cursor: pointer;
}

.pastmc_pic:hover span img {
  transform: scale(1.1);
}

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

  display: block;

  padding-bottom: 60.5%;
}

.pastmc_pic span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.pastmc_info {
  width: 46%;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.pastmci_title {
}

.pastmci_title h3 {
  text-align: left;
}

.pastmci_title h4 {
  text-align: left;

  color: #666666;
}

@media screen and (max-width: 768px) {
  .pastm_contain {
    flex-direction: column-reverse;
  }

  .pastmc_info {
    width: 100%;

    margin-bottom: 0.3rem;
  }

  .pastmc_pic {
    width: 100%;
  }

  .pastmci_title h3 {
    text-align: center;
  }
}

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

  .pastm_top {
    margin-bottom: 0.3rem;
  }
}

/* ----------------------public_about_solvic_carousel----------------- */

.public_about_solvic_carousel {
}

.pasc_maxbox {
}

.pasc_list {
  position: relative;

  overflow: hidden;

  height: 200vh;
}

.pasc_list .swiper-wrapper {
  display: flex;
}

.pasc_list .swiper-slide {
  border-radius: 0.1rem;

  overflow: hidden;

  cursor: pointer;

  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .pasc_list {
    height: 180vh;
  }
}

@media screen and (max-width: 375px) {
  .pasc_list {
    height: 160vh;
  }
}

@media screen and (max-width: 320px) {
  .pasc_list {
    height: 150vh;
  }
}

/* -------------------------每个模块------------------- */

.pascl_card {
  padding: 0.6rem 0;
}

.pasclc_maxbox {
}

.pasclcm_top {
  margin-bottom: 0.3rem;
}

.pasclc_list {
  position: relative;

  overflow: hidden;
}

.pasclc_list .swiper-wrapper {
  display: flex;
}

.pasclc_list .swiper-slide {
  border-radius: 0.1rem;

  overflow: hidden;

  box-sizing: border-box;
}

.pasclc_list .swiper-slide .pasclcl_imgbox {
  position: relative;

  display: block;
}

.pasclc_list .swiper-slide .pasclcl_imgbox::before {
  content: "";

  display: block;

  padding-bottom: 76%;
}

.pasclc_list .swiper-slide .pasclcl_imgbox span {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 87%;

  overflow: hidden;

  border-radius: 0.1rem;
}

.pasclc_list .swiper-slide .pasclcl_imgbox span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  overflow: hidden;

  transition: transform 0.35s ease;
}

.pasclc_list .swiper-slide .pasclcl_imgbox p {
  position: absolute;

  left: 0;

  bottom: 0;

  height: 13%;

  width: 100%;

  display: flex;

  justify-content: center;

  align-items: flex-end;

  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.3rem;

  color: #333333;
}

.pasclc_list .swiper-slide:hover .pasclcl_imgbox p {
  color: var(--i_color);
}

.pasclc_list .swiper-slide:hover .pasclcl_imgbox span img {
  transform: scale(1.1);
}

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

@media screen and (max-width: 1024px) {
  .pasclc_list .swiper-slide .pasclcl_imgbox p {
    font-size: 0.16rem;

    line-height: 0.3rem;
  }
}

/* -----------------------------------------factory.html------------------------- */

.pasclc_list .swiper-slide .factory_box::before {
  content: "";

  display: block;

  padding-bottom: 112%;
}

.pasclc_list .swiper-slide .factory_box span {
  height: 89%;
}

.pasclc_list .swiper-slide .factory_box p {
  height: 11%;
}

.factory_list {
  height: 180vh;
}

@media screen and (max-width: 1440px) {
  .factory_list {
    height: 200vh;
  }
}

@media screen and (max-width: 1024px) {
  .factory_list {
    height: 210vh;
  }
}

@media screen and (max-width: 768px) {
  .factory_list {
    height: 180vh;
  }
}

@media screen and (max-width: 560px) {
  .factory_list {
    height: 200vh;
  }
}

@media screen and (max-width: 375px) {
  .factory_list {
    height: 180vh;
  }
}

@media screen and (max-width: 320px) {
  .factory_list {
    height: 160vh;
  }
}

/* ----------------------------packagingAndShipping.html-------------------------- */

.pas_top {
  background: #fff;
}

.pas_topinfo {
}

.pas_topinfo li {
  display: flex;

  align-items: center;
}

.pas_topinfo li:nth-child(1) {
  background: #fff;

  padding: 0.6rem 0;
}

.pas_topinfo li:nth-child(2) {
  background: #f4f4f4;

  padding: 0.6rem 0;
}

.pas_topinfo li:nth-child(1) .pastm_contain {
  display: flex;

  flex-direction: row-reverse;
}

.pas_list {
  height: 120vh;
}

.pas_list .swiper-slide .pasclcl_imgbox::before {
  content: "";

  display: block;

  padding-bottom: 80%;
}

.pas_list .swiper-slide .pasclcl_imgbox span {
  height: 86%;
}

.pas_list .swiper-slide .pasclcl_imgbox p {
  height: 14%;
}

.pas_list .swiper-wrapper {
  padding-bottom: 0.05rem;
}

.pas_p {
  background: #f4f4f4;

  transition: all 0.3s ease;
}

.pasl_box ul li {
  transition: all 0.3s ease;
}

.pasl_box ul li:hover .pas_p {
  background: #fff;
}

.pasl_box ul li:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 1024px) {
  .pas_list {
    height: 120vh;
  }
}

@media screen and (max-width: 768px) {
  .pas_list {
    height: 100vh;
  }

  .pas_topinfo li:nth-child(1) .pastm_contain {
    display: flex;

    flex-direction: column-reverse;
  }

  .pas_topinfo li:nth-child(1) {
    background: #fff;

    padding: 0.3rem 0;
  }
}

@media screen and (max-width: 560px) {
  .pas_list {
    height: 110vh;
  }
}

@media screen and (max-width: 375px) {
  .pas_list {
    height: 100vh;
  }
}

@media screen and (max-width: 320px) {
  .pas_list {
    height: 90vh;
  }
}

/* ------------------------------------video.html-------------------------- */

.about_solvic_video_top {
}

.asvt_title h3 {
  text-align: left;
}

.asvt_title h4 {
  text-align: left;
}

.video_maxbox {
  padding: 0.6rem 0;
}

.vmb_btnbox {
  display: flex;

  justify-content: center;

  margin-bottom: 0.5rem;
}

.vmb_videobox {
}

.vmb_videobox .vmbv_ul {
  display: flex;

  gap: 0.3rem;

  flex-wrap: wrap;
}

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

  cursor: pointer;
}

.vmb_videobox .vmbv_ul li .vmbvl_box {
  position: relative;
}

.vmb_videobox .vmbv_ul li .vmbvl_box::before {
  content: "";

  display: block;

  padding-bottom: 68.6%;
}

.vmb_videobox .vmbv_ul li .vmbvl_box span {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 85%;

  overflow: hidden;

  border-radius: 0.1rem;
}

.vmb_videobox .vmbv_ul li .vmbvl_box span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.vmb_videobox .vmbv_ul li .vmbvl_box:hover span img {
  transform: scale(1.1);
}

.vmb_videobox .vmbv_ul li .vmbvl_box p {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 15%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.3rem;

  color: #333333;
}

.vmbv_li {
  position: relative;
}

.vmbv_li i {
  display: block;

  width: 1.4rem;

  height: 0.33rem;

  cursor: pointer;

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

  background-size: contain;

  position: absolute;

  top: 50%;

  left: 50%;

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

.i_v_btn1::before {
  content: "";

  position: absolute;

  left: 50%;

  top: 50%;

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

  border: 1px solid #fff;

  width: 100%;

  height: 100%;

  border-radius: 50%;

  opacity: 0;

  z-index: 2;

  /* animation: serv_one_border 2s 0s ease infinite; */
}

@media screen and (max-width: 1024px) {
  .vmbv_li i {
    width: 1.1rem;

    height: 0.3rem;
  }
}

@media screen and (max-width: 768px) {
  .vmb_videobox .vmbv_ul li .vmbvl_box p {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 560px) {
  .vmb_videobox .vmbv_ul li {
    width: 100%;

    cursor: pointer;
  }

  .video_maxbox {
    padding: 0.3rem 0;
  }
}

/* --------------------------------project.html------------------------------- */

.project_maxbox {
  padding: 0.6rem 0;

  background: #f4f4f4;
}

.pm_box {
}

.pmb_top {
  margin-bottom: 0.5rem;
}

.pmbt_title {
  margin-bottom: 0.3rem;
}

.pmbt_btnbox {
  display: flex;

  justify-content: center;
}

.pmb_contain {
}

.pmb_contain ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.45rem 0.25rem;
}

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

  transition: all 0.35s ease;
}

.pmb_contain ul li:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pmb_contain ul li:hover .pmbc_info h3 {
  color: var(--i_color);
}

.pmb_contain ul li:hover .pmbc_box span img {
  transform: scale(1.1);
}

.pmbc_box {
}

.pmbc_box span {
  position: relative;

  display: block;

  border-radius: 0.1rem 0.1rem 0 0;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 62.5%;
}

.pmbc_box span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: all 0.35s ease;
}

.pmbc_info {
  background: #fff;

  padding: 0.18rem 0.2rem 0.22rem 0.28rem;

  box-sizing: border-box;

  border-radius: 0 0 0.1rem 0.1rem;

  overflow: hidden;
}

.pmbc_info h3 {
  font-family: "Roboto";

  font-size: 0.22rem;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.1rem;

  transition: all 0.35s ease;
}

.pmbc_info h4 {
  font-family: "Roboto";

  font-weight: 400;

  font-size: 0.16rem;

  color: #666666;

  margin-bottom: 0.02rem;
}

.pmbc_info h4 i {
  font-family: "Roboto";

  font-weight: 400;

  font-size: 0.16rem;

  color: #333333;
}

@media screen and (max-width: 1024px) {
  .pmbc_info {
    padding: 0.1rem 0.1rem 0.15rem 0.15rem;
  }

  .pmbc_info h3 {
    font-size: 0.18rem;
  }

  .pmbc_info h4,
  .pmbc_info h4 i {
    font-size: 0.14rem;
  }
}

@media screen and (max-width: 768px) {
  .pmb_contain ul {
    gap: 0.25rem 0.15rem;
  }

  .pmb_contain ul li {
    width: calc((100% - 0.15rem) / 2);
  }

  .pmbc_info h3 {
    font-size: 0.16rem;
  }

  .pmbc_info h4,
  .pmbc_info h4 i {
    font-size: 0.13rem;
  }
}

@media screen and (max-width: 560px) {
  .pmb_contain ul li {
    width: 100%;
  }

  .project_maxbox {
    padding: 0.3rem 0;
  }

  .pmb_top {
    margin-bottom: 0.3rem;
  }
}

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

.news_maxbox {
  padding: 0.6rem 0;
}

.nm_box {
}

.nmb_top {
  display: flex;

  justify-content: center;

  margin-bottom: 0.5rem;
}

.nmb_contain {
}

.nmbc_box ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.3rem;
}

.nmbc_box ul li {
  width: calc((100% - 2 * 0.3rem) / 3);
}

.nmbc_box ul li a {
  display: block;

  width: 100%;

  height: 100%;

  border-radius: 0.1rem;

  overflow: hidden;

  padding: 0.3rem 0.22rem 0.22rem 0.22rem;

  box-sizing: border-box;

  background: #f4f4f4;

  position: relative;

  z-index: 1;
}

.nmbc_box ul li a::before {
  content: "";

  position: absolute;

  inset: 0;

  background: #fff;

  transform: scaleY(0);

  transform-origin: top;

  transition: transform 0.5s ease;

  z-index: -1;
}

.nmbc_box ul li a h3 {
  font-family: "Roboto";

  font-size: 0.2rem;

  font-weight: bold;

  line-height: 0.3rem;

  color: #333333;

  margin-bottom: 0.15rem;

  transition: all 0.35s ease;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.nmbc_box ul li a h4 {
  font-family: "Roboto";

  font-size: 0.18rem;

  color: #666666;

  margin-bottom: 0.25rem;
}

.nmbc_box ul li a span {
  position: relative;

  display: block;

  border-radius: 0.1rem;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 81.5%;
}

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

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.35s ease;
}

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

.nmbc_box ul li:hover a span img {
  transform: scale(1.1);
}

.nmbc_box ul li:hover a {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.nmbc_box ul li:hover a::before {
  transform: scaleY(1);
}

@media screen and (max-width: 1024px) {
  .nmbc_box ul {
    gap: 0.2rem;
  }

  .nmbc_box ul li {
    width: calc((100% - 0.2rem * 2) / 3);
  }

  .nmbc_box ul li a h3 {
    font-size: 0.18rem;

    line-height: 0.28rem;

    margin-bottom: 0.1rem;
  }

  .nmbc_box ul li a {
    padding: 0.2rem 0.22rem 0.22rem 0.22rem;
  }

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

    margin-bottom: 0.15rem;
  }
}

@media screen and (max-width: 768px) {
  .nmbc_box ul li {
    width: calc((100% - 0.2rem) / 2);
  }
}

@media screen and (max-width: 560px) {
  .nmbc_box ul li {
    width: 100%;
  }

  .news_maxbox {
    padding: 0.3rem 0;
  }

  .nmb_top {
    margin-bottom: 0.3rem;
  }

  .nmbc_box ul li a h3 {
    font-size: 0.16rem;

    line-height: 0.26rem;
  }

  .nmbc_box ul li a h4 {
    font-size: 0.14rem;

    margin-bottom: 0.1rem;
  }
}

@media screen and (max-width: 375px) {
  .nmbc_box ul li a {
    padding: 0.15rem;
  }
}

/* ---------------------------------download.html-------------------------- */

.download_maxbox {
  padding: 0.6rem 0;
}

.dm_box {
}

.dmb_top {
  margin-bottom: 0.5rem;

  display: flex;

  flex-direction: column;

  gap: 0.3rem;
}

.download_tags {
  display: flex;

  gap: 0.6rem;

  padding-left: 0.3rem;

  flex-wrap: wrap;
}

.download_tags li a {
  font-family: "Montserrat";

  font-size: 0.16rem;

  font-weight: 500;

  color: #333333;
}

.download_tags li.active a {
  color: var(--i_color);

  text-decoration: underline;
}

.dmb_contain {
}

.dmb_box ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.3rem 0.25rem;

  align-self: stretch;
}

.dmb_box ul li {
  width: calc((100% - 2 * 0.25rem) / 3);
}

.dmb_box ul li a {
  display: flex;

  justify-content: space-between;

  align-items: center;

  background: #fff;

  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);

  border-radius: 0.1rem;

  overflow: hidden;

  padding: 0.14rem 0.16rem 0.1rem 0.23rem;

  box-sizing: border-box;

  position: relative;

  z-index: 1;

  transition: all 0.35s ease;

  height: 100%;
}

.dmb_box ul li a::before {
  content: "";

  position: absolute;

  inset: 0;

  background: #f4f4f4;

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.7s ease;

  z-index: -1;
}

.dmb_box ul li a p {
  width: 80%;

  display: block;

  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: bold;

  line-height: 0.22rem;

  color: #333333;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;

  transition: all 0.35s ease;

  align-items: center;

  display: flex;

  height: 0.44rem;
}

.dmb_box ul li a span {
  width: 15%;

  display: flex;

  justify-content: flex-end;
}

.dmb_box ul li a span img {
  width: 0.25rem;

  height: 0.25rem;

  object-fit: contain;
}

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

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

.dmb_box ul li:hover a {
  box-shadow: none;
}

@media screen and (max-width: 1024px) {
  .dmb_box ul li a p {
    width: 85%;

    font-size: 0.14rem;

    line-height: 0.2rem;

    height: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  .dmb_box ul {
    display: flex;

    flex-wrap: wrap;

    gap: 0.3rem 0.2rem;
  }

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

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

  .dmb_box ul li {
    width: 100%;
  }

  .download_tags {
    display: flex;

    gap: 0.2rem;

    flex-wrap: wrap;
  }

  .download_tags li a {
    font-size: 0.14rem;
  }

  .dmb_top {
    margin-bottom: 0.3rem;
  }

  .dmb_box ul li a span img {
    width: 0.2rem;

    height: 0.2rem;
  }

  .dmb_box ul {
    gap: 0.2rem;
  }
}

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

  .dmb_box ul li a p {
    font-size: 0.12rem;
  }
}

/* -------------------------------toBeOurDealer.html------------------------------- */

.tbod_maxbox {
  padding: 0.6rem 0;

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

.tbodm_title {
}

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

.tbodm_title h4 {
  color: #333333;

  margin-bottom: 0.35rem;
}

.tbodm_btnbox {
  display: flex;

  justify-content: center;
}

.tbodm_btn a {
  width: auto;

  padding: 0 0.15rem;
}

.tbod_contain {
}

.tbodc_maxbox {
  position: relative;

  overflow: hidden;

  height: 220vh;
}

.tbodc_maxbox .swiper-wrapper {
  display: flex;
}

.tbodc_maxbox .swiper-slide {
  border-radius: 0.1rem;

  overflow: hidden;

  cursor: pointer;

  box-sizing: border-box;

  display: flex;

  align-items: center;

  box-sizing: border-box;
}

.tbodc_maxbox ul {
  /* gap: 0.2rem; */
}

.tbodc_maxbox ul li {
}

.tbodc_maxbox ul li:nth-child(odd) {
  background: #fff;
}

.tbodc_maxbox ul li:nth-child(even) {
  background: #f4f4f4;
}

.tbodc_maxbox ul li:nth-child(even) a {
  flex-direction: row-reverse;
}

.tbodc_maxbox ul li a {
  display: flex;

  padding: 0.5rem 0;

  box-sizing: border-box;

  align-items: center;

  justify-content: space-between;
}

.tbodc_maxbox ul li a .tbodcm_info {
  width: 47%;
}

.tbodc_maxbox ul li a .tbodcm_info h3 {
  font-family: "Montserrat";

  font-size: 0.38rem;

  font-weight: 600;

  color: #333333;

  margin-bottom: 0.25rem;

  transform: all 0.35s ease;
}

.tbodc_maxbox ul li a .tbodcm_info h4 {
  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.3rem;

  color: #666666;
}

.tbodc_maxbox ul li a .tbodcm_pic {
  width: 49%;
}

.tbodc_maxbox ul li a .tbodcm_pic span {
  position: relative;

  width: 100%;

  display: block;

  border-radius: 0.1rem;

  overflow: hidden;
}

.tbodc_maxbox ul li a .tbodcm_pic span::before {
  content: "";

  display: block;

  padding-bottom: 66%;
}

.tbodc_maxbox ul li a .tbodcm_pic span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: all 0.35s ease;
}

.tbodc_maxbox ul li a:hover .tbodcm_info h3 {
  color: var(--i_color);
}

.tbodc_maxbox ul li a:hover .tbodcm_pic span img {
  transform: scale(1.1);
}

@media screen and (max-width: 1440px) {
  .tbodc_maxbox {
    height: 240vh;
  }
}

@media screen and (max-width: 1200px) {
  .tbodc_maxbox ul li a .tbodcm_info h3 {
    font-size: 0.33rem;
  }

  .tbodc_maxbox ul li a .tbodcm_info h4 {
    font-size: 0.16rem;

    line-height: 0.26rem;
  }
}

@media screen and (max-width: 1024px) {
  .tbodc_maxbox ul li a .tbodcm_info h3 {
    font-size: 0.28rem;
  }

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

  .tbodc_maxbox {
    height: 200vh;
  }
}

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

    margin-bottom: 0.1rem;
  }

  .tbodc_maxbox ul li a .tbodcm_info h4 {
    font-size: 0.13rem;

    line-height: 0.24rem;
  }

  .tbodc_maxbox ul li a {
    padding: 0.3rem 0;
  }

  .tbodc_maxbox {
    height: 150vh;
  }
}

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

  .tbodm_title h4 {
    margin-bottom: 0.2rem;
  }

  .tbodc_maxbox ul li a {
    flex-direction: column;
  }

  .tbodc_maxbox ul li:nth-child(even) a {
    flex-direction: column;
  }

  .tbodc_maxbox ul li a .tbodcm_info {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .tbodc_maxbox ul li a .tbodcm_pic {
    width: 100%;
  }

  .tbodc_maxbox ul li a .tbodcm_info h3 {
    font-size: 0.18rem;

    margin-bottom: 0.1rem;
  }

  .tbodc_maxbox ul li a .tbodcm_info h4 {
    font-size: 0.12rem;

    line-height: 0.23rem;
  }

  .tbodc_maxbox {
    height: 230vh;
  }
}

@media screen and (max-width: 375px) {
  .tbodc_maxbox ul li a {
    padding: 0.2rem 0;
  }
}

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

.contact_maxbox {
  padding: 0.6rem 0;

  background: #f4f4f4;
}

.cm_box {
  background: #fff;

  display: flex;

  justify-content: space-between;
}

.cmb_form {
  flex: 1;

  padding: 0.5rem 0.8rem 0.5rem 0.45rem;

  box-sizing: border-box;
}

.cmbf_title {
  margin-bottom: 0.3rem;
}

.cmbf_title h3 {
  color: var(--i_color);

  text-align: left;
}

.cmbf_title h4 {
  text-align: left;
}

.cmb_info {
  width: 31.5%;

  background: var(--i_color);

  padding: 0.45rem 0.25rem 0.6rem 0.25rem;

  box-sizing: border-box;
}

.cmb_info h3 {
  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.3rem;

  color: #ffffff;

  margin-bottom: 0.05rem;
}

.cmb_info h4 {
  font-family: "Montserrat";

  font-size: 0.38rem;

  font-weight: 600;

  color: #ffffff;

  margin-bottom: 0.05rem;
}

.cmb_info h5 {
  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.28rem;

  color: #ffffff;

  margin-bottom: 0.25rem;
}

.cmb_info ul {
  display: flex;

  flex-direction: column;

  border-top: 1px solid #fff;

  padding-top: 0.25rem;

  gap: 0.15rem;

  margin-bottom: 0.6rem;
}

.cmb_info ul li a {
  display: flex;

  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.28rem;

  color: #ffffff;

  align-items: center;

  word-break: break-all;
}

.cmb_info ul li a span {
  width: 0.4rem;

  height: 0.4rem;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #fff;

  flex-shrink: 0;

  margin-right: 0.1rem;
}

.cmb_info ul li a span img {
  width: 62.5%;

  height: 62.5%;

  object-fit: contain;

  transition: all 0.35s ease;
}

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

.cmb_info ul li a:hover span img {
  transform: rotateY(180deg);
}

.cmb_info h6 {
  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.28rem;

  color: #ffffff;
}

@media screen and (max-width: 1024px) {
  .cm_box {
    flex-direction: column-reverse;
  }

  .cmb_info {
    width: 100%;

    padding: 0.3rem 0.25rem 0.3rem 0.25rem;
  }

  .cmb_info ul {
    margin-bottom: 0.3rem;
  }

  .cmb_form {
    padding: 0.3rem 0.25rem 0.5rem 0.25rem;
  }
}

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

    line-height: 0.26rem;
  }

  .cmb_info h4 {
    font-size: 0.24rem;
  }

  .cmb_info h5 {
    font-size: 0.16rem;

    line-height: 0.26rem;

    margin-bottom: 0.2rem;
  }

  .cmb_info ul {
    margin-bottom: 0.2rem;
  }

  .cmb_info ul li a span {
    width: 0.3rem;

    height: 0.3rem;
  }

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

  .cmb_info h6 {
    font-size: 0.16rem;
  }

  .contact_maxbox {
    padding: 0.3rem 0;
  }
}

/* --------------------------------subProduct.html----------------------------------- */

/* -------------------------solar_solution_form--------------------- */

.solar_solution_form {
  padding: 0.6rem 0;

  background: #f4f4f4;
}

.ssf_maxbox {
  background: #fff;

  padding: 0.4rem;

  box-sizing: border-box;
}

.ssfm_top {
  margin-bottom: 0.5rem;
}

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

.ssfm_contain {
}

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

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

  .ssfm_top {
    margin-bottom: 0.3rem;
  }
}

/* -------------------------------sub_product_maxbox----------------------------- */

.sub_product_maxbox {
  padding: 0.6rem 0;

  background: #f4f4f4;
}

.spm_maxbox {
  display: flex;

  justify-content: space-between;
}

.products_left {
  width: 21%;

  box-sizing: border-box;

  flex-shrink: 0;

  position: sticky;

  top: var(--header_height);

  align-self: flex-start;
}

.products_left_all {
  background-color: transparent;
}

.list {
  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  box-sizing: border-box;

  border-radius: 0.06rem;
}

.list li {
  position: relative;
}

.list li:last-child {
  border-bottom: none;
}

.list_a {
  box-sizing: border-box;

  padding: 0.2rem 0.2rem;

  position: relative;

  z-index: 2;

  overflow: hidden;

  background-color: transparent;

  border-radius: 0.06rem;
}

.list_a::after {
  content: "";

  position: absolute;

  top: 0;

  right: 0;

  background-color: var(--i_color);

  width: 0;

  height: 100%;

  transition: all 0.5s ease-in-out;

  z-index: -1;
}

.list .list_a a {
  box-sizing: border-box;

  line-height: 110%;

  transition: all 0.3s ease;

  display: block;

  font-family: Montserrat;

  font-size: 0.18rem;

  font-weight: 600;

  color: #333333;
}

.list_dl {
  padding: 0.1rem 0.15rem 0 0.15rem;

  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  box-sizing: border-box;

  gap: 0.1rem;
}

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

  border-radius: 0.06rem;
}

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

  display: block;

  transition: all 0.3s ease;

  position: relative;

  box-sizing: border-box;

  font-family: "Montserrat";

  font-weight: 500;

  line-height: 0.3rem;

  color: #666666;

  padding: 0 0.1rem;
}

.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 a {
  color: #fff;

  display: block;
}

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

.list_active .list_dl {
}

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

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

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

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

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

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

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

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

.products_right {
  width: 75%;
}

.pr_maxbox {
  display: flex;

  flex-direction: column;

  gap: 0.6rem;
}

.prm_box .prmb_title {
  font-family: "Montserrat";

  font-size: 0.28rem;

  font-weight: 600;

  line-height: 0.3rem;

  color: #333333;

  margin-bottom: 0.15rem;
}

.prm_box .prmb_des {
  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.28rem;

  color: #666666;

  position: relative;

  padding-bottom: 0.4rem;

  margin-bottom: 0.4rem;
}

.prm_box .prmb_des::before {
  content: "";

  display: block;

  width: 0.8rem;

  height: 0.04rem;

  background: var(--i_color);

  position: absolute;

  bottom: 0;

  left: 0;
}

.prmb_dl {
  display: flex;

  flex-direction: column;

  gap: 0.6rem;
}

.prm_box,
.prmb_dt {
  scroll-margin-top: var(--header_height);
}

.prmb_dl .prmb_dt .prmb_sub_title {
  font-family: "Montserrat";

  font-size: 0.22rem;

  font-weight: 600;

  line-height: 0.3rem;

  color: #333333;

  margin-bottom: 0.2rem;
}

.prmb_list {
  display: flex;

  flex-wrap: wrap;

  gap: 0.3rem;
}

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

.prmb_list li a {
  display: flex;

  flex-direction: column;

  justify-content: space-between;

  background: #fff;

  border-radius: 0.1rem;

  overflow: hidden;

  padding: 0.2rem 0.16rem;

  box-sizing: border-box;

  transition: all 0.35s ease;

  height: 100%;
}

.prmb_list li a h3 {
  font-family: "Roboto";

  font-weight: 700;

  font-size: 0.2rem;

  color: #333333;

  text-align: center;

  margin-bottom: 0.2rem;

  transition: all 0.35s ease;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.prmb_list li a dl {
  display: flex;

  flex-wrap: wrap;

  gap: 0.1rem;
}

.prmb_list li a dl dt {
  font-family: "Roboto";

  font-size: 0.14rem;

  color: #666666;

  background: #f4f4f4;

  padding: 0.1rem 0.2rem;

  box-sizing: border-box;

  width: fit-content;

  border-radius: 0.3rem;
}

.prmb_list li a span {
  width: 100%;

  display: block;

  position: relative;

  overflow: hidden;
}

.prmb_list li a span::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.prmb_list li a span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: all 0.35s ease;
}

.prmb_list li a:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.prmb_list li a:hover h3 {
  color: var(--i_color);
}

.prmb_list li a:hover span img {
  transform: scale(1.1);
}

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

  .prm_box .prmb_title {
    font-size: 0.24rem;
  }

  .prm_box .prmb_des {
    font-size: 0.16rem;

    line-height: 0.26rem;

    padding-bottom: 0.2rem;

    margin-bottom: 0.25rem;
  }

  .prmb_dl .prmb_dt .prmb_sub_title {
    font-size: 0.2rem;

    line-height: 0.3rem;
  }

  .prmb_list li a h3 {
    font-size: 0.18rem;
  }

  .prmb_list li a dl dt {
    font-size: 0.12rem;

    padding: 0.08rem 0.15rem;
  }
}

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

  .prm_box .prmb_title {
    font-size: 0.22rem;
  }

  .prm_box .prmb_des {
    font-size: 0.14rem;

    line-height: 0.24rem;

    padding-bottom: 0.2rem;

    margin-bottom: 0.2rem;
  }

  .prmb_list {
    gap: 0.2rem;
  }

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

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

/* -----------------------------------sub_edit_contain------------------------- */

.sub_edit_contain {
  padding: 0.6rem 0;
}

.sec_maxbox {
}

.sec_maxbox ul {
  display: flex;

  flex-direction: column;
}

.sec_maxbox ul li {
  display: flex;

  justify-content: space-between;

  padding: 0.2rem 0;

  box-sizing: border-box;

  cursor: pointer;
}

.sec_maxbox ul li:nth-child(even) {
  flex-direction: row-reverse;
}

.sec_maxbox ul li:hover .secm_pic span img {
  transform: scale(1.1);
}

.secm_pic {
  width: 49%;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.secm_pic span {
  position: relative;

  display: block;

  width: 100%;

  border-radius: 0.1rem;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 66%;
}

.secm_pic span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.35s ease;
}

.secm_info {
  width: 47%;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.secm_info h3 {
  text-align: left;

  font-family: "Montserrat";

  font-size: 0.38rem;

  font-weight: 600;

  color: #333333;

  margin-bottom: 0.2rem;
}

.secm_info h4 {
  text-align: left;

  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.3rem;

  color: #666666;
}

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

    margin-bottom: 0.2rem;
  }

  .secm_info h4 {
    font-size: 0.16rem;

    line-height: 0.26rem;
  }
}

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

    margin-bottom: 0.15rem;
  }

  .secm_info h4 {
    font-size: 0.14rem;

    line-height: 0.24rem;
  }
}

@media screen and (max-width: 768px) {
  .sec_maxbox ul li {
    flex-direction: column-reverse;
  }

  .sec_maxbox ul li:nth-child(even) {
    flex-direction: column-reverse;
  }

  .secm_pic {
    width: 100%;
  }

  .secm_info {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .sub_edit_contain {
    padding: 0.3rem 0;
  }
}

@media screen and (max-width: 560px) {
  .secm_info h3 {
    font-size: 0.2rem;

    margin-bottom: 0.1rem;
  }
}

@media screen and (max-width: 375px) {
  .secm_info h3 {
    font-size: 0.18rem;

    margin-bottom: 0.1rem;
  }
}

/* ------------------------subProductDetail.html------------------- */

.productDetail_maxbox {
  padding: 0.6rem 0;
}

.p_data {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  box-sizing: border-box;

  align-items: stretch;

  background-color: #fff;
}

/* atlas */

.p_atlas {
  width: 48.57%;

  height: 100%;

  position: relative;

  flex-shrink: 0;

  overflow: hidden;
}

.p_atlas::before {
  content: "";

  display: block;

  padding-bottom: 80%;
}

/* thumbnail */

.p_thumbnail {
  position: absolute;

  top: 0;

  left: 0;

  width: 15.5%;

  height: 100%;
}

.p_thumbnail_list {
  position: relative;

  top: 50%;

  transform: translate(0, -50%);

  width: 100%;

  height: 100%;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;
}

.p_thumbnail_list .swiper-wrapper {
  flex-direction: column;

  position: relative;

  width: 100%;
}

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

  position: relative;

  box-sizing: border-box;

  -webkit-border-radius: 0.14rem;

  border-radius: 0.14rem;

  overflow: hidden;

  cursor: pointer;
}

.p_thumbnail_list .swiper-slide img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* 默认的遮罩层 */

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

  position: absolute;

  inset: 0;

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

  border-radius: 4px;

  transition: opacity 0.3s;

  pointer-events: none;

  opacity: 1;
}

/* Swiper 选中缩略图会自动加这个类 */

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

.p_v_btn {
  position: absolute;

  top: 50%;

  left: 50%;

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

  width: 0.32rem;

  height: 0.26rem;

  background: var(--i_color);

  -webkit-border-radius: 0.1rem;

  border-radius: 0.1rem;

  font-size: 0.12rem;

  color: #fff;
}

.p_v_btn::before {
  position: absolute;

  top: 50%;

  left: 52%;

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

.p_thumbnail_list .swiper-slide-thumb-active {
  border-color: var(--i_color);
}

.p_atlas_list {
  position: absolute;

  top: 0;

  right: 0;

  width: calc(100% - 20%);

  height: 100%;

  box-sizing: border-box;

  overflow: hidden;
}

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

  display: flex;

  position: relative;

  height: 100%;
}

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

  flex-shrink: 0;

  position: relative;

  overflow: hidden;

  cursor: pointer;
}

.p_atlas_list .swiper-slide img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.p_atlas_list .swiper-slide iframe,
.p_atlas_list .swiper-slide video {
  width: 100%;

  height: 100%;

  background: #000;

  object-fit: contain;
}

@media screen and (max-width: 1024px) {
  .p_det > .wrap {
    flex-wrap: wrap;
  }

  .p_atlas {
    width: 100%;

    margin: 0 auto 0.2rem auto;

    max-width: 5rem;

    display: -webkit-flex;

    display: flex;

    flex-wrap: wrap;

    margin-bottom: 0.3rem;
  }

  .p_atlas::before {
    display: none;
  }

  .p_thumbnail {
    margin-top: 0.2rem;

    position: relative;

    width: 100%;
  }

  .p_thumbnail_list {
    position: initial;

    top: initial;

    transform: none;

    height: 1.3rem;
  }

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

    display: flex;

    flex-direction: initial;
  }

  .p_thumbnail_list .swiper-slide {
    border-width: 1px;
  }

  .p_atlas_list {
    order: -1;

    position: relative;

    width: 100%;
  }

  .p_atlas_list .swiper-slide {
    height: 0;

    padding-bottom: 100%;
  }

  .p_atlas_list .swiper-slide iframe,
  .p_atlas_list .swiper-slide video,
  .p_atlas_list .swiper-slide img {
    position: absolute;

    top: 0;

    left: 0;
  }
}

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

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

.p_dataInfo {
  width: 49%;
}

.p_dataInfo h1 {
  font-family: "Roboto";

  font-size: 0.24rem;

  font-weight: bold;

  line-height: 0.32rem;

  color: #333333;

  padding-bottom: 0.2rem;

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

.pd_taglist {
  margin: 0.3rem 0;
}

.pd_taglist ul {
  display: flex;

  gap: 0.2rem;
}

.pd_taglist ul li {
}

.pd_taglist ul li a {
  width: fit-content;

  padding: 0.11rem 0.2rem;

  background: #f4f4f4;

  border-radius: 0.3rem;

  font-family: "Roboto";

  font-size: 0.16rem;

  color: #666666;

  display: block;
}

.pd_btnbox {
  display: flex;

  gap: 0.4rem;

  margin-top: 0.3rem;
}

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

  .pd_taglist ul li a {
    padding: 0.1rem 0.15rem;

    font-size: 0.15rem;
  }

  .p_dataInfo h1 {
    padding-bottom: 0.1rem;

    margin-bottom: 0.1rem;
  }
}

@media screen and (max-width: 768px) {
  .p_dataInfo h1 {
    font-size: 0.2rem;
  }
}

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

  .pd_taglist ul li a {
    padding: 0.1rem 0.15rem;

    font-size: 0.14rem;
  }

  .pd_taglist {
    margin: 0.15rem 0;
  }
}

@media screen and (max-width: 320px) {
  .p_dataInfo h1 {
    font-size: 0.16rem;

    line-height: 0.26rem;
  }
}

/* --------------------------------productDetail_nav------------------------- */

.productDetail_nav {
  background: #f4f4f4;

  position: sticky;

  top: 1.3rem;

  z-index: 99;
}

.pdn_maxbox {
  display: flex;

  justify-content: center;
}

.pdn_maxbox ul {
  display: flex;

  gap: 0 0.6rem;

  flex-wrap: wrap;
}

.pdn_maxbox ul li {
  padding: 0.25rem 0;

  box-sizing: border-box;

  font-family: "Montserrat";

  font-size: 0.18rem;

  font-weight: 500;

  color: #333333;

  position: relative;

  cursor: pointer;

  transition: all 0.5s ease;
}

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

  display: block;

  width: 0;

  height: 0.02rem;

  background: var(--i_color);

  position: absolute;

  left: 50%;

  bottom: 0;

  transform: translateX(-50%);

  transition: all 0.5s ease;
}

.pdn_maxbox ul li.active a {
  color: var(--i_color);
}

.pdn_maxbox ul li.active::before {
  width: 100%;
}

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

.pdn_maxbox ul li:hover::before {
  width: 100%;
}

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

    font-size: 0.16rem;
  }

  .productDetail_nav {
    top: 0.7rem;
  }
}

@media screen and (max-width: 768px) {
  .pdn_maxbox ul {
    gap: 0 0.3rem;
  }

  .pdn_maxbox ul li {
    padding: 0.14rem 0;
  }

  .productDetail_nav {
    top: 0.5rem;
  }
}

@media screen and (max-width: 560px) {
  .pdn_maxbox ul {
    gap: 0 0.3rem;
  }
}

/* ------------------------productDetail_description------------------- */

.productDetail_description {
  padding: 0.4rem 0;
}

.pdd_maxbox .pddm_h3 {
  font-family: "Montserrat";

  font-size: 0.36rem;

  font-weight: 600;

  color: #333333;

  margin-bottom: 0.3rem;
}

@media screen and (max-width: 1440px) {
  .pdd_maxbox .pddm_h3 {
    font-size: 0.3rem;
  }

  .productDetail_description {
    padding: 0.25rem 0;
  }
}

@media screen and (max-width: 1366px) {
  .pdd_maxbox .pddm_h3 {
    font-size: 0.26rem;
  }
}

@media screen and (max-width: 1024px) {
  .pdd_maxbox .pddm_h3 {
    font-size: 0.22rem;
  }
}

@media screen and (max-width: 768px) {
  .pdd_maxbox .pddm_h3 {
    font-size: 0.2rem;
  }

  .productDetail_description {
    padding: 0.2rem 0;
  }
}

@media screen and (max-width: 560px) {
  .pdd_maxbox .pddm_h3 {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 375px) {
  .pdd_maxbox .pddm_h3 {
    font-size: 0.14rem;
  }
}

/* ------------------------------------Technical Data -------------------------- */

.productDetail_technical_data {
  background: #f4f4f4;

  padding: 0.4rem 0;
}

/* ------------------------------------Elemental Composition -------------------------- */

.productDetail_elemental_composition {
  background: #fff;

  padding: 0.4rem 0;
}

.productDetail_elemental_composition_article {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  align-items: center;
}

/* ------------------------------------Projects------------------------------ */

.productDetail_Projects {
  background: #f4f4f4;

  padding: 0.4rem 0;
}

/* ------------------------------------Download------------------------- */

.productDetail_Download {
  background: #fff;

  padding: 0.4rem 0;
}

.productDetail_description,
.productDetail_technical_data,
.productDetail_elemental_composition,
.productDetail_Projects,
.productDetail_Download {
  scroll-margin-top: 2.2rem;
}

@media screen and (max-width: 1024px) {
  .productDetail_description,
  .productDetail_technical_data,
  .productDetail_elemental_composition,
  .productDetail_Projects,
  .productDetail_Download {
    scroll-margin-top: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .productDetail_description,
  .productDetail_technical_data,
  .productDetail_elemental_composition,
  .productDetail_Projects,
  .productDetail_Download {
    scroll-margin-top: 1rem;
  }
}

@media screen and (max-width: 560px) {
  .productDetail_description,
  .productDetail_technical_data,
  .productDetail_elemental_composition,
  .productDetail_Projects,
  .productDetail_Download {
    scroll-margin-top: 1.3rem;

    padding: 0.2rem 0;
  }
}

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

.single_two_bac {
  background: #fff;

  box-sizing: border-box;

  padding: 0.6rem 0;
}

.single_two {
}

.bottom_single_tags {
  display: flex;

  display: -webkit-flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 0.15rem;

  box-sizing: border-box;

  padding-bottom: 0.2rem;

  margin-bottom: 0.2rem;

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

.bottom_single_tags p {
  font-size: 0.2rem;

  color: #333333;

  font-family: "Roboto";

  line-height: 0.42rem;

  font-weight: bold;
}

.bottom_single_tags a {
  display: inline-block;

  box-sizing: border-box;

  display: flex;

  align-items: center;

  font-size: 0.16rem;

  color: var(--i_color);

  font-family: "Montserrat";

  padding: 0.1rem 0.2rem;

  box-sizing: border-box;

  border-radius: 0.08rem;

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

  position: relative;

  z-index: 1;

  transition: all 0.35s ease;

  overflow: hidden;
}

.bottom_single_tags a::before {
  content: "";

  display: block;

  background: var(--i_color);

  position: absolute;

  right: 0;

  top: 0;

  width: 0;

  height: 100%;

  z-index: -1;

  transition: all 0.35s ease;
}

.bottom_single_tags a:hover {
  color: #fff;
}

.bottom_single_tags a:hover::before {
  width: 100%;

  left: 0;
}

.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_left a i,
.sx_right a i {
  width: 0.52rem;

  height: 0.52rem;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

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

  transition: all 0.35s ease;
}

.sx_left a i img,
.sx_right a i img {
  width: 60%;

  height: 60%;

  object-fit: contain;

  filter: invert(53%) sepia(93%) saturate(1633%) hue-rotate(2deg)
    brightness(101%) contrast(103%);

  transition: all 0.35s ease;
}

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

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

.sx p {
  font-size: 0.18rem;

  color: #333333;

  text-transform: capitalize;

  margin-right: 0.1rem;

  font-family: "Roboto";

  font-weight: bold;
}

.sx span {
  font-size: 0.18rem;

  color: #333333;

  transition: all 0.3s ease;

  font-family: "Roboto";
}

.sx_right a {
  justify-content: flex-end;
}

.sx .sx_left:hover span {
  color: var(--i_color) !important;
}

.sx .sx_left:hover p {
  color: var(--i_color) !important;
}

.sx .sx_left:hover i,
.sx .sx_right:hover i {
  background: var(--i_color);
}

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

.sx .sx_right:hover p {
  color: var(--i_color) !important;
}

.sx .sx_right:hover span {
  color: var(--i_color) !important;
}

@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) {
  .sx_left a i,
  .sx_right a i {
    width: 0.4rem;

    height: 0.4rem;
  }
}

@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.16rem;
  }

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

@media screen and (max-width: 560px) {
  .single_two_bac {
    background: #fff;

    box-sizing: border-box;

    padding: 0.3rem 0;
  }

  .bottom_single_tags {
    gap: 0.05rem;

    padding-bottom: 0.1rem;

    margin-bottom: 0.2rem;
  }

  .bottom_single_tags p {
    font-size: 0.16rem;
  }

  .sx p {
    font-size: 0.16rem;
  }
}

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

/* --------------------------------productDetail_related_product------------------- */

.productDetail_related_product {
  padding: 0.6rem 0;

  background: #f4f4f4;
}

.prpm_title {
  margin-bottom: 0.5rem;
}

.prpm_title h3 {
  color: #333;
}

.prpm_list {
  position: relative;

  overflow: hidden;

  padding-right: 2px;
}

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

  display: flex;

  position: relative;

  align-items: stretch;
}

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

  position: relative;

  border-radius: 0.1rem;

  overflow: hidden;

  cursor: pointer;

  box-sizing: border-box;

  height: auto;
}

.prpm_contain {
  position: relative;
}

.prpm_list ul {
  display: flex;

  align-self: stretch;
}

.prpm_list ul li {
}

.prpm_list ul li a {
  display: flex;

  flex-direction: column;

  justify-content: space-between;

  background: #fff;

  padding: 0.35rem 0.2rem 0.15rem 0.2rem;

  border-radius: 0.1rem;

  overflow: hidden;

  transition: all 0.35s ease;

  height: 100%;

  box-sizing: border-box;
}

.prpm_list ul li a h3 {
  font-family: "Roboto";

  font-size: 0.2rem;

  font-weight: bold;

  line-height: 0.26rem;

  color: #333333;

  margin-bottom: 0.3rem;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.prpm_list dl {
  display: flex;

  gap: 0.1rem;
}

.prpm_list dl dt {
  background: #f4f4f4;

  border-radius: 0.3rem;

  font-family: Roboto;

  font-size: 0.14rem;

  color: #666666;

  padding: 0.1rem 0.2rem;

  box-sizing: border-box;
}

.prpm_list ul li a span {
  position: relative;

  display: block;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 100%;
}

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

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: all 0.35s ease;
}

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

.prpm_list ul li a:hover span img {
  transform: scale(1.1);
}

.prpm_prev,
.prpm_next {
  background-color: transparent;

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

  width: 0.52rem;

  height: 0.52rem;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  position: absolute;

  cursor: pointer;

  z-index: 3;

  transition: all 0.4s ease;

  cursor: pointer;
}

.prpm_prev.swiper-button-disabled,
.prpm_next.swiper-button-disabled {
  opacity: 0.4; /* 变灰 */

  cursor: not-allowed; /* 禁止手型 */
}

.prpm_prev {
  top: 40%;

  left: -5%;
}

.prpm_next {
  top: 40%;

  right: -5%;
}

.prpm_prev img,
.prpm_next img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(83%) saturate(2270%)
    hue-rotate(350deg) brightness(101%) contrast(101%);

  width: 60%;

  height: 60%;

  object-fit: contain;

  transition: all 0.4s ease;
}

.prpm_prev:hover,
.prpm_next:hover {
  background-color: var(--i_color);

  transform: scale(1.08);
}

.prpm_prev:hover img,
.prpm_next:hover img {
  filter: brightness(0) invert(1);
}

/* 指示器 */

.prpm_contain .prpm_pagination {
  text-align: center;

  margin: 0.2rem auto 0;

  display: none;
}

.prpm_contain .prpm_pagination .swiper-pagination-bullet {
  width: 0.1rem;

  height: 0.1rem;

  cursor: pointer;

  display: inline-block;

  margin: 0 0.05rem;

  box-sizing: border-box;

  border-radius: 50%;

  outline: none;
}

.prpm_contain .prpm_pagination .swiper-pagination-bullet-active {
  position: relative;

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

  background: var(--i_color);
}

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

  .prpm_prev {
    left: -1%;
  }

  .prpm_next {
    right: -1%;
  }
}

@media screen and (max-width: 1200px) {
  .prpm_list ul li a h3 {
    font-size: 0.18rem;

    line-height: 0.26rem;

    margin-bottom: 0.2rem;
  }

  .prpm_list ul li a {
    padding: 0.2rem 0.2rem 0.15rem 0.2rem;
  }

  .prpm_list dl dt {
    font-size: 0.14rem;

    padding: 0.05rem 0.15rem;
  }
}

@media screen and (max-width: 1024px) {
  .prpm_prev,
  .prpm_next {
    width: 0.4rem;

    height: 0.4rem;
  }

  .prpm_prev {
    left: 0%;
  }

  .prpm_next {
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  .prpm_prev,
  .prpm_next {
    width: 0.35rem;

    height: 0.35rem;
  }

  .prpm_contain {
    padding: 0 0.5rem;
  }
}

@media screen and (max-width: 560px) {
  .prpm_prev,
  .prpm_next {
    display: none;
  }

  .prpm_contain .prpm_pagination {
    display: block;
  }

  .productDetail_related_product {
    padding: 0.3rem 0;
  }

  .prpm_title {
    margin-bottom: 0.3rem;
  }

  .prpm_contain {
    padding: 0;
  }

  .prpm_list ul li a h3 {
    font-size: 0.16rem;
  }
}

/* -----------------------------productDetail_faqs------------------------------ */

.productDetail_faqs {
  padding: 0.6rem 0;
}

.pdf_maxbox {
}

.pdfm_top {
  margin-bottom: 0.5rem;
}

.pdfm_contain {
}

.faq_ul {
  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  gap: 0.3rem;

  margin-top: 0.4rem;
}

.faq_ul li {
  border-radius: 0.1rem;

  overflow: hidden;
}

.faq_q {
  background-color: #f4f4f4;

  box-sizing: border-box;

  padding: 0.2rem 0.3rem;

  border-radius: 0rem;

  display: flex;

  display: -webkit-flex;

  cursor: pointer;

  display: flex;

  align-items: center;
}

.faq_q i {
  font-family: "Montserrat";

  font-size: 0.2rem;

  font-weight: 600;

  background: #666666;

  color: #fff;

  width: 0.32rem;

  height: 0.32rem;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 0.1rem;

  margin-right: 0.1rem;
}

.faq_q h2 {
  font-family: "Roboto";

  font-size: 0.2rem;

  font-weight: 500;

  color: #333333;

  font-weight: bold;

  width: calc(100% - 0.72rem);

  box-sizing: border-box;

  display: flex;

  align-items: center;
}

.faq_a {
  display: flex;

  display: -webkit-flex;

  box-sizing: border-box;

  padding: 0.2rem 0.3rem;

  background: #f4f4f4;
}

.faq_a i {
  color: #fff;

  width: 0.32rem;

  height: 0.32rem;

  border-radius: 0.1rem;

  font-weight: 600;

  background: var(--i_color);

  display: flex;

  justify-content: center;

  align-items: center;

  margin-right: 0.1rem;

  display: flex;

  justify-content: center;

  align-items: center;
}

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

  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.28rem;

  color: #666666;
}

.faq_ul li.on .faq_q {
  background-color: #f7f7f7;
}

.faq_ul li.on .faq_q i {
  /* opacity: 0; */
}

.faq_ul li.on .faq_q h2 {
  color: #333 !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) {
}

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

  .faq_q {
    padding: 0.15rem 0.3rem;
  }
}

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

@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.1rem 0.2rem;
  }

  .faq_ul i {
    width: 0.3rem;

    height: 0.3rem;
  }

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

    font-size: 0.14rem;
  }

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

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

  .faq_ul {
    gap: 0.2rem;
  }

  .faq_ul {
    margin-top: 0.2rem;
  }

  .productDetail_faq h3 {
    font-size: 0.2rem;
  }

  .productDetail_faqs {
    padding: 0.3rem 0;
  }

  .pdfm_top {
    margin-bottom: 0.3rem;
  }
}

@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;
  }
}

/* ---------------------contactUs表单-------------- */

#wpforms-273 {
  --wpforms_input_height: 55px;

  --wpforms_textarea_height: 155px;

  --wpforms_input_font_size: 18px;

  width: 100%;
}

#wpforms-273 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}

div.wpforms-container-full .wpforms-form .wpforms-field {
  padding: 0px 0;

  clear: both;
}

/* 字段样式 */

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

  /* padding: 0 1px 20px; */

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;

  background: #f4f4f4;

  border-radius: 0.1rem;
}

#wpforms-273-field_5 {
  width: 100%;

  background: #f4f4f4;

  border: transparent 1px solid;
}

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

#wpforms-273-field_1::placeholder,
#wpforms-273-field_2::placeholder,
#wpforms-273-field_3::placeholder,
#wpforms-273-field_4::placeholder,
#wpforms-273-field_5::placeholder {
  color: #999999;

  opacity: 1;
}

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

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0 0;

  border: 1px solid transparent;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #222;

  border-radius: 0.05rem;

  font-family: Arial;
}

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

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

  /* border: #fff 1px solid; */
}

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

  background: rgba(255, 255, 255, 0.25);
}

#wpforms-273 input::placeholder,
#wpforms-273 textarea::placeholder,
#wpforms-273 select::placeholder {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-273 select:invalid {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-273 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-273 .wpforms-field-container textarea:hover,
#wpforms-273 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-273 .wpforms-field-container textarea:focus {
  border: transparent 1px solid;

  outline: none;

  box-shadow: none;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: -0.18rem;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

#wpforms-273 .wpforms-field-container .wpforms-field-label {
  height: 0;

  font-size: 0;

  margin: 0 0;
}

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

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: "Roboto";
}

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

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

  flex-wrap: wrap;

  justify-content: space-between;
}

#wpforms-273-field_1-container,
#wpforms-273-field_2-container,
#wpforms-273-field_3-container,
#wpforms-273-field_4-container {
  width: 49% !important;
}

#wpforms-273-field_5-container {
  width: 100% !important;
}

/* 提交按钮样式 */

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

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: left;

  /* margin-left: auto;

  margin-right: auto; */
}

#wpforms-273 .wpforms-submit-container button {
  width: 27%;

  height: 0.5rem;

  font-size: 0.18rem;

  color: #fff;

  font-weight: bold;

  background: var(--i_color);

  border: none;

  border-radius: 0.1rem;

  font-family: "Montserrat";
}

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

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

#wpforms-273 .wpforms-submit-container button:hover {
  background: transparent;

  color: var(--i_color);

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

@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-273 {
    --wpforms_input_height: 48px;

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

  #wpforms-273 .wpforms-submit-container {
    margin: 0.2rem auto 0;
  }

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

  .contact_our_team {
    padding: 0.3rem 0;
  }

  .cot_maxbox {
    flex-direction: column;
  }

  .cotm_title {
    width: 100%;

    margin-bottom: 0.3rem;
  }

  .cotmt_t h4 {
    margin-bottom: 0.2rem;
  }

  .cotm_form {
    width: 100%;
  }

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

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

@media screen and (max-width: 768px) {
  #wpforms-273 {
    --input_height: 0.5rem;
  }
}

@media screen and (max-width: 560px) {
  #wpforms-273-field_1-container,
  #wpforms-273-field_2-container,
  #wpforms-273-field_3-container,
  #wpforms-273-field_4-container {
    width: 100% !important;
  }

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

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

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 14px;

    width: 100%;
  }

  #wpforms-273 .wpforms-submit-container button {
    height: 0.4rem;

    font-size: 0.16rem;
  }

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

  #wpforms-273 .wpforms-submit-container {
    margin: 0 auto 0;
  }
}

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

.hide {
  display: none !important;
}

/* ---------------------产品列表表单-------------- */

#wpforms-276 {
  --wpforms_input_height: 55px;

  --wpforms_textarea_height: 155px;

  --wpforms_input_font_size: 18px;

  width: 100%;
}

#wpforms-276 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}

div.wpforms-container-full .wpforms-form .wpforms-field {
  padding: 0px 0;

  clear: both;
}

/* 字段样式 */

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

  /* padding: 0 1px 20px; */

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;

  /* background: #f4f4f4; */

  border-radius: 0.1rem;
}

#wpforms-276-field_5 {
  width: 100%;

  background: #f4f4f4;

  border: transparent 1px solid;
}

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

#wpforms-276-field_1::placeholder,
#wpforms-276-field_2::placeholder,
#wpforms-276-field_3::placeholder,
#wpforms-276-field_4::placeholder,
#wpforms-276-field_5::placeholder {
  color: #999999;

  opacity: 1;
}

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

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0 0;

  border: 1px solid transparent;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #222;

  border-radius: 0.05rem;

  font-family: Arial;
}

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

  background: #f4f4f4;

  /* border: #fff 1px solid; */
}

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

  background: #f4f4f4;
}

#wpforms-276 input::placeholder,
#wpforms-276 textarea::placeholder,
#wpforms-276 select::placeholder {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-276 select:invalid {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-276 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-276 .wpforms-field-container textarea:hover,
#wpforms-276 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-276 .wpforms-field-container textarea:focus {
  border: transparent 1px solid;

  outline: none;

  box-shadow: none;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: 0;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

/* #wpforms-276 .wpforms-field-container .wpforms-field-label {

  height: 0;



  font-size: 0;



  margin: 0 0;

} */

#wpforms-276 .wpforms-field-container .wpforms-required-label {
  /* position: absolute; */

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: "Roboto";
}

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

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

  flex-wrap: wrap;

  justify-content: space-between;
}

#wpforms-276-field_1-container,
#wpforms-276-field_2-container {
  width: 49% !important;
}

#wpforms-276-field_3-container {
  width: 100% !important;
}

/* 提交按钮样式 */

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

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;

  margin-left: auto;

  margin-right: auto;
}

#wpforms-276 .wpforms-submit-container button {
  width: 30%;

  height: 0.65rem;

  font-size: 0.18rem;

  color: #fff;

  font-weight: bold;

  background: var(--i_color);

  border: none;

  border-radius: 0.1rem;

  font-family: "Montserrat";
}

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

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

#wpforms-276 .wpforms-submit-container button:hover {
  background: transparent;

  color: var(--i_color);

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

div.wpforms-container-full .wpforms-form .wpforms-field-label {
  font-size: 0.18rem;
}

@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-276 {
    --wpforms_input_height: 48px;

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

  #wpforms-276 .wpforms-submit-container {
    margin: 0.2rem auto 0;
  }

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

  .contact_our_team {
    padding: 0.3rem 0;
  }

  .cot_maxbox {
    flex-direction: column;
  }

  .cotm_title {
    width: 100%;

    margin-bottom: 0.3rem;
  }

  .cotmt_t h4 {
    margin-bottom: 0.2rem;
  }

  .cotm_form {
    width: 100%;
  }

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

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

@media screen and (max-width: 768px) {
  #wpforms-273 {
    --input_height: 0.5rem;
  }
}

@media screen and (max-width: 560px) {
  #wpforms-276-field_1-container,
  #wpforms-276-field_2-container,
  #wpforms-276-field_3-container,
  #wpforms-276-field_4-container {
    width: 100% !important;
  }

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

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

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 14px;

    width: 100%;
  }

  #wpforms-276 .wpforms-submit-container button {
    height: 0.4rem;

    font-size: 0.16rem;
  }

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

  #wpforms-276 .wpforms-submit-container {
    margin: 0 auto 0;
  }

  div.wpforms-container-full .wpforms-form .wpforms-field-label {
    font-size: 0.16rem;
  }
}

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