@charset "UTF-8";
@font-face {
  font-family: Quicksand_Bold;
  src: url(../font/Quicksand-Bold.otf);
}

@font-face {
  font-family: Quicksand_Book;
  src: url(../font/Quicksand-Book.otf);
}

@font-face {
  font-family: Inter;
  src: url(../font/AlibabaPuHuiTi-Regular.woff);
}

@font-face {
  font-family: Inter_bold;
  src: url(../font/AlibabaPuHuiTi-Bold.woff2);
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ellipsis-l2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ellipsis-l3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.br {
  border: 1px solid red;
}

* {
  margin: 0;
  padding: 0;
  font-family: Inter;
  box-sizing: border-box;
  list-style: none;
}

a {
  color: currentcolor;
  text-decoration: none;
  cursor: pointer;
}

img {
  display: block;
}

button {
  border: none;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.item_haeder {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item_haeder .ih_title {
  font-size: 72px;
  line-height: 67px;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  color: #000000;
  text-align: center;
  padding: 10px;
  font-family: Quicksand_Book;
}

.item_haeder .ih_desc {
  margin-top: 10px;
  line-height: 20px;
  color: #9E9E9E;
  font-size: 16px;
  text-align: center;
}

.path_bar {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  margin-top: 30px;
}

.path_bar ul {
  display: flex;
}

.path_bar ul li::after {
  content: '>';
  margin: 0 13px;
  color: #9E9E9E;
}

.path_bar ul li a {
  color: #9E9E9E;
  font-size: 16px;
}

.path_bar ul li:last-child::after {
  content: '';
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 160px 0 0 0;
  gap: 15px;
}

.pagination .disabled {
  cursor: not-allowed;
}

.pagination li {
  box-sizing: content-box;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  font-size: 16px;
  background: #FFFFFF;
  color: #999999;
  line-height: 45px;
  text-align: center;
  cursor: pointer;
}

.pagination li:first-child, .pagination li:last-child {
  font-size: 30px;
  display: grid;
  place-items: center;
}

.pagination li a {
  color: #999999;
}

.pagination .active a, .pagination .active span, .pagination li:hover a, .pagination li:hover span {
  color: #1A1A1A;
  font-weight: bold;
}

.pagination .extend,
.pagination .current2 {
  display: none;
}

.content1600 {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
}

.content1400 {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
}

.content1200 {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}

.content1000 {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}

.placeholder {
  height: 0;
  visibility: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 99999;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.header {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
  height: 80px;
  color: #000000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  border-bottom: 1px solid #F0F0F0;
}

.header .hd_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}

.header .hd_content .nav {
  font-size: 20px;
  color: #000000;
  font-family: Quicksand_Bold;
  line-height: 80px;
}

.header .hd_content .nav_products {
  position: relative;
}

.header .hd_content .logo {
  margin: 0 6.25vw;
  display: flex;
  align-items: center;
}

.header .hd_content .logo img {
  width: 98px;
  display: block;
}

.header .hd_rihgt {
  display: flex;
  align-items: center;
}

.header .hd_rihgt em {
  cursor: pointer;
}

.header .hd_rihgt ul {
  display: flex;
  align-items: center;
  height: 80px;
}

.header .hd_rihgt ul li {
  padding-left: 28px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 30px;
}

.header .hd_rihgt ul li a {
  display: flex;
  align-items: center;
}

.header .hd_rihgt ul li .language_text {
  margin-left: 6px;
  font-weight: bold;
  color: #000;
  font-family: Inter_bold;
}

.header .hd_rihgt ul li img {
  width: 26px;
  cursor: pointer;
}

.header .hd_rihgt ul li .search {
  font-size: 32px;
}

.header .hd_rihgt ul li .collect_hover {
  position: absolute;
  top: 100%;
  z-index: 99;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 1.25s;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.header .hd_rihgt ul li .collect_hover .zwf {
  width: 100%;
  height: 10px;
}

.header .hd_rihgt ul li .collect_hover .collect_list {
  width: 265px;
  height: 470px;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 20px;
  position: relative;
}

.header .hd_rihgt ul li .collect_hover .collect_list .kong {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 18px;
}

.header .hd_rihgt ul li .collect_hover .collect_list .kong em {
  font-size: 100px;
}

.header .hd_rihgt ul li .collect_hover .collect_list .list_content {
  width: 100%;
  height: 390px;
  display: flex;
  flex-direction: column;
  padding: 0px;
  gap: 10px;
}

.header .hd_rihgt ul li .collect_hover .collect_list .list_content .item {
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 90px;
}

.header .hd_rihgt ul li .collect_hover .collect_list .list_content .item .left {
  display: flex;
}

.header .hd_rihgt ul li .collect_hover .collect_list .list_content .item .left .left_img {
  width: 80px;
  height: 80px;
  margin-right: 10px;
  background-color: rgba(238, 238, 238, 0.2);
}

.header .hd_rihgt ul li .collect_hover .collect_list .list_content .item .left img {
  width: 100%;
  height: 100%;
}

.header .hd_rihgt ul li .collect_hover .collect_list .list_content .item .right img {
  width: 16px;
  height: 16px;
}

.header .hd_rihgt ul li .collect_hover .collect_list .collect_pagination {
  margin-top: 15px;
  height: 24px;
  display: flex;
  justify-content: center;
}

.header .hd_rihgt ul li .collect_hover .collect_list .collect_pagination li {
  width: 24px;
  height: 24px;
  padding-left: 0;
  cursor: pointer;
}

.header .hd_rihgt ul li .vip_hover {
  position: absolute;
  top: 100%;
  right: -50px;
  z-index: 99;
  display: none;
}

.header .hd_rihgt ul li .vip_hover .zwf {
  width: 100%;
  height: 10px;
}

.header .hd_rihgt ul li .vip_hover .userInfo {
  text-align: center;
  border: 1px solid #696969;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 8px;
}

.header .hd_rihgt ul li .vip_hover .userInfo .email {
  color: #000;
  font-size: 22px;
  white-space: nowrap;
}

.header .hd_rihgt ul li .vip_hover .userInfo .logOut {
  padding: 3px 5px;
  border-width: 0px 0px 1px 0px;
  border-style: solid;
  border-color: #696969;
  font-size: 18px;
  color: #696969;
  background-color: transparent;
  margin-top: 15px;
}

.header .hd_rihgt ul .language {
  display: none;
}

.header .hd_rihgt .burger {
  position: relative;
  width: 30px;
  height: 22px;
  background: transparent;
  cursor: pointer;
  display: block;
}

.header .hd_rihgt .burger input {
  display: none;
}

.header .hd_rihgt .burger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.header .hd_rihgt .burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.header .hd_rihgt .burger span:nth-of-type(2) {
  top: 50%;
  transform-origin: left center;
}

.header .hd_rihgt .burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
}

.header .hd_rihgt .burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 0px;
}

.header .hd_rihgt .burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.header .hd_rihgt .burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 21px;
  left: 0px;
}

.header .header_menu_bg {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 98;
  background-color: rgba(0, 0, 0, 0.5);
  height: calc(100vh - 80px);
  display: none;
}

.header .header_menu {
  position: fixed;
  top: 80px;
  right: -150%;
  height: calc(100vh - 80px);
  z-index: 99;
  list-style: none;
  background: #FFFFFF;
  transition: all .75s;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header .header_menu .head_nav {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}

.header .header_menu .head_nav li {
  position: relative;
}

.header .header_menu .head_nav li a {
  color: #696969;
  font-size: 36px;
  line-height: 50px;
  font-weight: bold;
}

.header .header_menu .head_nav li a:hover {
  color: #000;
}

.header .header_menu .head_nav li .menu_products {
  display: flex;
  align-items: center;
}

.header .header_menu .head_nav li .menu_products img {
  width: 25px;
  margin-right: 15px;
}

.header .header_menu .head_nav li .sub-menu {
  position: absolute;
  left: 250px;
  top: 0;
  z-index: 5;
  display: none;
}

.header .header_menu .head_nav li .sub-menu li {
  margin-bottom: 20px;
}

.header .header_menu .head_nav li .sub-menu a {
  font-weight: 400;
  font-size: 24px !important;
  line-height: 30px !important;
  display: flex;
  flex-direction: column;
}

.header .header_menu .head_nav li .sub-menu a:hover {
  font-weight: bold;
}

.header .header_menu .head_nav li .sub-menu a:hover::after {
  content: '';
  width: 30px;
  height: 2px;
  background: #000;
  margin-top: -5px;
}

.header .header_menu .header_contact .contact_title {
  font-size: 18px;
  font-weight: bold;
  color: #696969;
  line-height: 25px;
}

.header .header_menu .header_contact .contact_list {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 10px;
}

.header .header_menu .header_contact .contact_list img {
  width: 16px;
  height: 16px;
}

.header .header_menu .header_contact .contact_list .cl_item ul {
  display: flex;
  gap: 30px;
}

.header .header_menu .header_contact .contact_list .cl_item2 {
  display: flex;
  align-items: center;
}

.header .header_menu .header_contact .contact_list .cl_item2 a {
  display: flex;
  align-items: center;
  color: #000;
}

.header .header_menu .header_contact .contact_list .cl_item2 a .info {
  margin-left: 18px;
}

.header .header_menu .header_contact .contact_list .cl_item2 a .info .title {
  font-weight: bold;
}

.header .header_menu .header_contact .contact_list .cl_item2::before {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  margin: 0 40px;
  background: #696969;
}

.header .products_hover {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100vw;
  z-index: 99;
  background-color: #fff;
  height: 0;
  overflow: hidden;
  transition: all 1.5s;
}

.header .products_hover .pHover_content {
  padding: 30px 0 60px 0;
}

.header .products_hover .pHover_content .pc_title {
  font-size: 36px;
  font-family: Quicksand_Bold;
}

.header .products_hover .pHover_content .pc_content {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.header .products_hover .pHover_content .pc_content .type_list {
  width: 25%;
  padding-right: 60px;
  padding-top: 40px;
  border-right: 2px solid #EDEDED;
  margin-right: 60px;
}

.header .products_hover .pHover_content .pc_content .type_list .type {
  margin-bottom: 30px;
  padding: 10px;
  font-size: 18px;
  line-height: 25px;
  display: flex;
  justify-content: space-between;
  color: #696969;
}

.header .products_hover .pHover_content .pc_content .type_list .type:hover {
  font-weight: bold;
  border-bottom: 2px solid #BDBDBD;
  color: #000;
}

.header .products_hover .pHover_content .pc_content .ph_banner {
  border-radius: 6px;
  width: 69.8%;
  height: fit-content;
}

.header .vip_active {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100vw;
  z-index: 99;
  background: #292929;
  display: none;
}

.header .vip_active .vip_close {
  position: absolute;
  right: 60px;
  top: 60px;
  width: 40px;
  cursor: pointer;
  z-index: 99;
}

.header .vip_active .vip_login {
  padding: 60px 0 50px 0;
  display: flex;
  justify-content: space-between;
}

.header .vip_active .vip_login .vl_left {
  width: 40%;
}

.header .vip_active .vip_login .vl_left .title {
  line-height: 60px;
  font-size: 64px;
  color: #FFFFFF;
}

.header .vip_active .vip_login .vl_left .title::after {
  content: "";
  margin-top: 20px;
  display: block;
  height: 4px;
  width: 134px;
  background: #FFFFFF;
}

.header .vip_active .vip_login .vl_left .vl_form {
  position: relative;
}

.header .vip_active .vip_login .vl_left .vl_form .to {
  position: absolute;
  bottom: 12px;
  left: 180px;
}

.header .vip_active .vip_login .vl_left .vl_form .to a {
  color: #BDBDBD;
}

.header .vip_active .vip_login .vl_left .vl_form .to a:hover {
  border-bottom: 1px solid #fff;
}

.header .vip_active .vip_login .vl_left .vl_form .Register {
  display: none;
  margin-top: 10px;
}

.header .vip_active .vip_login .vl_left .inquiry_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}

.header .vip_active .vip_login .vl_left .inquiry_form .inquiry_li {
  width: 100%;
  margin-bottom: 20px;
}

.header .vip_active .vip_login .vl_left .inquiry_form .inquiry_li input {
  width: 100%;
  padding: 18px 30px;
  border-radius: 138px;
  background: #FFFFFF;
  font-size: 18px;
  color: #9E9E9E;
  border: 0;
}

.header .vip_active .vip_login .vl_left .inquiry_form .inquiry_submit {
  margin-top: 10px;
}

.header .vip_active .vip_login .vl_left .inquiry_form .inquiry_submit button {
  border: 1px solid #BDBDBD;
  padding: 10px 45px;
  color: #9E9E9E;
  font-size: 18px;
  border-radius: 50px;
  background-color: transparent;
}

.header .vip_active .vip_login .vl_left .inquiry_form .inquiry_submit .inquiry_error {
  color: red;
  margin-top: 20px;
  font-size: 16px;
}

.header .vip_active .vip_login .vl_right {
  display: flex;
  align-items: end;
  position: relative;
}

.header .vip_active .vip_login .vl_right a {
  color: #BDBDBD;
  font-weight: bold;
  font-size: 14px;
  margin: 0 14px 65px 0;
}

.header .vip_active .vip_login .vl_right a:hover {
  border-bottom: 1px solid #fff;
}

.header .vip_active .vip_login .vl_right .vr_text {
  font-size: 44px;
  line-height: 60px;
  color: #FFFFFF;
  position: absolute;
  left: 0;
  top: 40px;
}

.header .search_box {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100vw;
  padding: 40px 0 30px 0;
  background: #ffffff;
  z-index: 10;
  display: none;
  border-top: 1px solid #d8d8d8;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

.header .search_box .search_box_view {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 62.5vw;
  margin: 0 auto;
  border-bottom: 1px solid #d8d8d8;
  padding: 10px 0;
}

.header .search_box .search_box_view em {
  font-size: 30px !important;
}

.header .search_box .search_box_view .content {
  flex: 1;
}

.header .search_box .search_box_view .content form {
  display: flex;
  width: 100%;
}

.header .search_box .search_box_view .content form button {
  background: none;
}

.header .search_box .search_box_view .content form button em {
  color: #BDBDBD;
}

.header .search_box .search_box_view .content form input {
  flex: 1;
  border: none;
  color: #9e9e9e;
  font-size: 24px;
}

.header .search_box .search_box_view .content form input:focus {
  outline: none;
}

.header .search_box .search_box_view .close {
  cursor: pointer;
}

main .banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

main .banner .banner_img {
  width: 100%;
  display: block;
  min-height: 300px;
  object-fit: cover;
}

main .banner .text {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: transparent;
  -webkit-transition: background .2s ease;
  transition: background .2s ease;
}

main .banner .text .text_content {
  width: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.7s cubic-bezier(0.62, 0.28, 0.23, 0.99);
  transform: translateY(0);
}

main .banner .text .text_content .title {
  line-height: 64px;
  font-size: 64px;
  margin-bottom: 20px;
  text-align: center;
}

main .banner .text .text_content .hover_box {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.62, 0.28, 0.23, 0.99);
}

main .banner .text .text_content .hover_box .desc {
  width: 90%;
  font-size: 18px;
  text-align: center;
}

main .banner .text .text_content .hover_box .jtx {
  margin-top: 80px;
  width: 36px;
  cursor: pointer;
}

main .banner_hovered .text {
  background: rgba(0, 0, 0, 0.7);
}

main .banner_hovered .text .text_content {
  transform: translateY(-50px);
}

main .banner_hovered .text .text_content .hover_box {
  opacity: 1;
}

main .main_item {
  margin-top: 8.3333vw !important;
}

main .stock {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}

main .stock .stock_product {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

main .stock .stock_product img {
  border-radius: 8px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
}

main .stock .stock_product .tab_up {
  width: 100%;
  margin-bottom: 5%;
}

main .stock .stock_product .item1 {
  position: relative;
}

main .stock .stock_product .item1 .item_text {
  position: absolute;
  top: 3.125vw;
  left: 2.9688vw;
  font-size: 36px;
  color: #fff;
  font-family: Quicksand_Book;
  display: flex;
  flex-direction: column;
}

main .stock .stock_product .item1 .item_text::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 15px;
  background: #FFFFFF;
}

main .stock .stock_product .tab {
  transition: width .6s ease-in-out;
  position: relative;
}

main .stock .stock_product .tab .item_text {
  position: absolute;
  bottom: 2.3958vw;
  left: 2.7604vw;
  font-size: 36px;
  color: #fff;
  font-family: Quicksand_Book;
  display: flex;
  flex-direction: column;
}

main .stock .stock_product .tab .item_text::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 15px;
  background: #FFFFFF;
}

main .stock .stock_product .tab:nth-of-type(2) {
  width: 65%;
}

main .stock .stock_product .tab:nth-of-type(3) {
  width: 30%;
}

main .stock .stock_product .tab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main .stock .stock_text {
  margin-top: 60px;
  border-radius: 8px;
  background: #FAFAFA;
  display: flex;
  min-height: 360px;
}

main .stock .stock_text .img {
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

main .featuredItems {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .featuredItems .FI_content {
  width: 100%;
  margin-top: 30px;
}

main .featuredItems .FI_content .indexSwiper {
  width: 100%;
  background: #FAFAFA;
  padding: 60px 0;
}

main .featuredItems .FI_content .indexSwiper .swiper-wrapper {
  display: flex;
}

main .featuredItems .FI_content .indexSwiper .swiper-wrapper .FI_slider {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5625vw;
  width: 280px;
}

main .featuredItems .FI_content .indexSwiper .swiper-wrapper .FI_slider a {
  color: #000;
  width: 100%;
}

main .featuredItems .FI_content .indexSwiper .swiper-wrapper .FI_slider img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 6px;
}

main .featuredItems .FI_content .indexSwiper .swiper-wrapper .FI_slider .slider_name {
  padding: 20px 0 0 20px;
  width: 100%;
}

main .featuredItems .FI_content .indexSwiper .swiper-wrapper .FI_slider .slider_name span {
  font-size: 18px;
  line-height: 20px;
  margin-top: 20px;
}

main .featuredItems .FI_content .indexSwiper .swiper-wrapper .FI_slider .mb_slider_text {
  z-index: 99;
}

main .featuredItems .FI_content .indexSwiper .swiper-wrapper .FI_slider .mb_slider_text span:nth-child(1) {
  color: #E1E1E1;
}

main .featuredCase {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}

main .featuredCase .fc_product {
  margin-top: 60PX;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

main .featuredCase .fc_product img {
  width: 100%;
  border-radius: 8px;
}

main .featuredCase .fc_product a:first-child {
  width: 100%;
  margin-bottom: 5%;
}

main .featuredCase .fc_product a:nth-child(2) {
  width: 30%;
}

main .featuredCase .fc_product a:nth-child(3) {
  width: 65%;
}

main .featuredCase .fc_product .item {
  position: relative;
}

main .featuredCase .fc_product .item .item_text {
  height: 65%;
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

main .featuredCase .fc_product .item .item_text .text1 {
  font-size: 64px;
  font-family: Quicksand_Book;
}

main .featuredCase .fc_product .item .item_text .text2 {
  font-size: 18px;
  font-family: Quicksand_Book;
}

main .featuredCase .desc {
  padding: 20px 0 0 20px;
  font-size: 18px;
  line-height: 16px;
  color: #696969;
}

main .technological_process .tp_banner {
  margin-top: 60px;
  position: relative;
}

main .technological_process .tp_banner img {
  width: 100%;
}

main .technological_process .tp_banner .xian {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background: #D8D8D8;
}

main .hola_center .item_haeder {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}

main .hola_center .item_haeder .ih_title {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

main .hola_center .hola_content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  margin-top: 60px;
}

main .hola_center .hola_content p {
  color: #9E9E9E;
  font-size: 20px;
  font-weight: normal;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: center;
}

main .hola_center .hc_img {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  transition: transform 0.3s ease;
}

main .news {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .news .news_content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

main .news .news_content .lItem_content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}

main .news .news_content .lItem_content .lc_title {
  font-size: 36px;
  font-weight: bold;
  line-height: 30px;
  color: #000000;
  margin-bottom: 20px;
  font-family: Inter_bold;
}

main .news .news_content .lItem_content .lc_desc {
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
  letter-spacing: 0em;
  color: #696969;
}

main .news .news_content .lItem_content .lc_button {
  margin-top: 38px;
  border: 1px solid #BDBDBD;
  padding: 10px 20px;
  font-size: 18px;
  color: #696969;
  font-weight: bold;
  border-radius: 6px;
  background-color: #FFFFFF;
  align-self: flex-end;
  position: relative;
  transition: all .3s ease-in-out;
  z-index: 1;
}

main .news .news_content .lItem_content .lc_button::before {
  content: "";
  background-color: #8DCB63;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width .4s ease-in-out;
  display: inline-block;
}

main .news .news_content .lItem_content .lc_button:hover {
  color: #fff;
}

main .news .news_content .lItem_content .lc_button:hover::before {
  width: 100%;
}

main .news .news_content .news_left {
  width: 58.33%;
}

main .news .news_content .news_left .left_item {
  width: 100%;
  margin-bottom: 60px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

main .news .news_content .news_left .left_item img {
  border-radius: 8px 8px 0 0;
  width: 100%;
}

main .news .news_content .news_left .left_item:hover {
  box-shadow: 0px 4px 10px 0px #8DCB63;
}

main .news .news_content .news_right {
  width: 36.67%;
}

main .news .news_content .news_right .right_item {
  width: 100%;
  margin-bottom: 60px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

main .news .news_content .news_right .right_item img {
  border-radius: 8px 8px 0 0;
  width: 100%;
}

main .news .news_content .news_right .right_item:hover {
  box-shadow: 0px 4px 10px 0px #8DCB63;
}

main .news .news_button {
  border-radius: 6px;
  padding: 20px 40px;
  background: #8DCB63;
  color: #FFFFFF;
  font-size: 18px;
}

main .news .news_button:hover {
  opacity: .8;
}

.index_main {
  overflow: hidden;
}

.index_main .index_video {
  width: 100%;
  height: calc(100vh - 80px);
}

.index_main .index_video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.index_main .indexMobileSwiper {
  display: none;
  width: 100%;
}

.index_main .indexMobileSwiper .im_slider {
  width: 100%;
}

.index_main .indexMobileSwiper .im_slider img {
  width: 100%;
}

.about .about_item1 {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
  margin-top: 67px;
}

.about .about_item1 .item1_content {
  border-radius: 8px;
  background: #000000;
  width: 100%;
  margin-top: 60px;
  padding-top: 110px;
  max-height: 820px;
}

.about .about_item1 .item1_content .aboutSwiper {
  width: 100%;
  max-height: 710px;
  color: #FAFAFA;
  display: flex;
  padding: 0 0 210px 7.8125vw;
  position: relative;
}

.about .about_item1 .item1_content .aboutSwiper .swiper-wrapper {
  padding-top: 50px;
  padding-bottom: 200px;
  height: auto !important;
}

.about .about_item1 .item1_content .aboutSwiper .swiper-slide,
.about .about_item1 .item1_content .aboutSwiper .about_slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 500px !important;
}

.about .about_item1 .item1_content .aboutSwiper .swiper-slide .slide_left,
.about .about_item1 .item1_content .aboutSwiper .about_slide .slide_left {
  max-width: 560px;
  text-align: center;
  margin-right: 10px;
  opacity: 0;
}

.about .about_item1 .item1_content .aboutSwiper .swiper-slide .slide_left .title,
.about .about_item1 .item1_content .aboutSwiper .about_slide .slide_left .title {
  padding: 10px;
  font-size: 64px;
  line-height: 93px;
  border-width: 0px 0px 1px 0px;
  border-style: solid;
  border-color: #FFFFFF;
}

.about .about_item1 .item1_content .aboutSwiper .swiper-slide .slide_left .desc,
.about .about_item1 .item1_content .aboutSwiper .about_slide .slide_left .desc {
  margin-top: 26px;
}

.about .about_item1 .item1_content .aboutSwiper .swiper-slide .slide_left .desc *,
.about .about_item1 .item1_content .aboutSwiper .about_slide .slide_left .desc * {
  font-size: 18px !important;
  font-weight: normal;
  line-height: 36px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #696969 !important;
  background-color: transparent !important;
}

.about .about_item1 .item1_content .aboutSwiper .swiper-slide .slide_right,
.about .about_item1 .item1_content .aboutSwiper .about_slide .slide_right {
  width: 55%;
  padding-right: 60px;
}

.about .about_item1 .item1_content .aboutSwiper .swiper-slide .slide_right img,
.about .about_item1 .item1_content .aboutSwiper .about_slide .slide_right img {
  width: 38.0208vw;
  transform: scale(0.5);
  transform-origin: top right;
  transition: transform 2s;
}

.about .about_item1 .item1_content .aboutSwiper .swiper-slide-active .slide_left {
  opacity: 1;
}

.about .about_item1 .item1_content .aboutSwiper .swiper-slide-active .slide_right img {
  transform: scale(1);
}

.about .about_item1 .item1_content .aboutSwiper .aboutSwiper-pagination {
  padding: 0 0 120px 0;
  width: 7.8125vw;
  min-width: 80px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #fff;
}

.about .about_item1 .item1_content .aboutSwiper .aboutSwiper-pagination .swiper-pagination-bullet {
  width: auto;
  opacity: .7;
  text-align: center;
}

.about .about_item1 .item1_content .aboutSwiper .aboutSwiper-pagination .swiper-pagination-bullet-active {
  background: none;
  font-weight: bold;
  opacity: 1;
}

.about .about_item2 {
  max-width: 1445px;
  width: 95%;
  margin: 160px auto 137px auto;
}

.about .about_item2 img {
  width: 100%;
}

.about .about_item2 .item2_content {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}

.about .about_item2 .item2_content .img {
  width: 49.3%;
}

.about .about_item2 .item2_content .text {
  margin: 5.9896vw 0 0 3.8542vw;
}

.about .about_item2 .item2_content .text .title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
}

.about .about_item2 .item2_content .text .desc {
  margin-top: 15px;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0.04em;
  color: #696969;
}

.news {
  margin-bottom: 160px !important;
}

.news .exhibition {
  max-width: 1200px;
  width: 95%;
  margin: 106px auto 0 auto;
}

.news .exhibition .exhibition_img {
  width: 100%;
  margin-top: 60px;
}

.news .news_list {
  max-width: 1200px;
  width: 95%;
  margin: 106px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news .news_list .list_title {
  width: 100%;
  overflow: hidden;
}

.news .news_list .list_title p {
  width: 100%;
  font-size: 72px;
  line-height: 72px;
  white-space: nowrap;
  font-family: Quicksand_Book;
}

.news .news_list .list_title .left {
  animation: scrollLeft 15s linear infinite;
}

.news .news_list .list_title .right {
  animation: scrollRight 15s linear infinite;
}

@keyframes scrollLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.news .news_list .itemIist {
  padding-top: 60px;
}

.news .news_list .itemIist .item {
  display: flex;
  justify-content: space-between;
  margin-top: 170px;
  width: 100%;
}

.news .news_list .itemIist .item .i_left {
  width: 49.17%;
  position: relative;
  display: flex;
  align-items: center;
}

.news .news_list .itemIist .item .i_left .bg {
  position: absolute;
  background: #F0F0F0;
  width: 89.83%;
  height: 438px;
}

.news .news_list .itemIist .item .i_left .img {
  width: 89.83%;
  margin-left: 30px;
  z-index: 2;
  border-radius: 8px;
}

.news .news_list .itemIist .item .i_left .type2 {
  right: 0;
}

.news .news_list .itemIist .item .i_right {
  width: 45.83%;
}

.news .news_list .itemIist .item .i_right .title {
  font-size: 36px;
  font-weight: bold;
  line-height: 44px;
  letter-spacing: 0.04em;
}

.news .news_list .itemIist .item .i_right .desc {
  margin-top: 32px;
  font-size: 20px;
  font-weight: normal;
  line-height: 32px;
  text-transform: capitalize;
  letter-spacing: 0.04em;
  color: #696969;
}

.news .news_list .itemIist .item .i_right .st_button {
  margin-top: 60px;
  border-radius: 6px;
  padding: 10px 20px;
  background: #8DCB63;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 30px;
  width: fit-content;
  cursor: pointer;
}

.news .news_list .itemIist .item .i_right .st_button:hover, .news .news_list .itemIist .item .i_right .st_button:active {
  opacity: .8;
}

.news .news_list .news_button {
  border-radius: 6px;
  padding: 20px 40px;
  background: #8DCB63;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  margin-top: 90px;
}

.news .news_list .news_button:hover, .news .news_list .news_button:active {
  opacity: .8;
}

.new_detail_content {
  margin-top: 45px;
}

.new_detail_content .content {
  font-size: 24px;
}

.new_detail_content .content img {
  display: inline !important;
  width: 100% !important;
}

.new_detail_content .content .title {
  font-size: 40px;
  font-weight: bold;
  color: #000;
}

.new_detail_content .content .date {
  text-align: center;
  color: #bdbdbd;
  font-size: 22px;
  padding: 1% 0;
}

.contact {
  padding-bottom: 290px;
}

.contact .module1 {
  display: flex;
}

.contact .module1 .contact_left {
  width: 50%;
}

.contact .module1 .contact_left img {
  width: 100%;
  min-height: 1043px;
  object-fit: cover;
}

.contact .module1 .contact_right {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.contact .module1 .contact_right .info {
  width: 100%;
  flex: 1;
}

.contact .module1 .contact_right .info .content {
  max-width: 800px;
  padding-bottom: 60px;
  width: 95%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.contact .module1 .contact_right .info .content .c_title {
  margin-top: 50px;
  font-size: 36px;
  line-height: 50px;
  font-weight: bold;
  color: #000000;
  height: fit-content;
}

.contact .module1 .contact_right .info .content .c_title::after {
  content: "";
  display: block;
  width: 134px;
  height: 4px;
  background: #000;
  margin-top: 10px;
}

.contact .module1 .contact_right .info .content .contact_list {
  width: 58%;
  margin-top: 84px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact .module1 .contact_right .info .content .contact_list .cl_item {
  font-size: 18px;
  line-height: 26px;
}

.contact .module1 .contact_right .info .content .contact_list .cl_item .title {
  font-weight: bold;
}

.contact .module1 .contact_right .form {
  width: 100%;
  flex: 1;
  background: #000;
}

.contact .module1 .contact_right .form .form_content {
  max-width: 800px;
  padding-bottom: 60px;
  width: 95%;
  margin: 0 auto;
}

.contact .module1 .contact_right .form .form_content .fc_title {
  margin-top: 50px;
  font-size: 36px;
  line-height: 50px;
  font-weight: bold;
  color: #fff;
  height: fit-content;
}

.contact .module1 .contact_right .form .form_content .fc_title::after {
  content: "";
  display: block;
  width: 134px;
  height: 4px;
  background: #fff;
  margin-top: 10px;
}

.contact .module1 .contact_right .form .form_content .contact_form {
  margin-top: 60px;
}

.contact .module1 .contact_right .form .form_content .contact_form .inquiry_form_succeed {
  margin-bottom: 10px;
  color: #3bce7f;
  font-size: 16px;
  display: none;
}

.contact .module1 .contact_right .form .form_content .inquiry_form {
  color: #fff;
}

.contact .module1 .contact_right .form .form_content .inquiry_form .inquiry_li {
  width: 100%;
  margin-bottom: 20px;
}

.contact .module1 .contact_right .form .form_content .inquiry_form .inquiry_li .inquiry_image {
  display: none;
}

.contact .module1 .contact_right .form .form_content .inquiry_form .inquiry_li .inquiry_title {
  display: none;
}

.contact .module1 .contact_right .form .form_content .inquiry_form .inquiry_li .inquiry_item {
  width: 100%;
}

.contact .module1 .contact_right .form .form_content .inquiry_form .inquiry_li .inquiry_item input {
  width: 100%;
  padding: 10px;
  color: #9E9E9E;
  font-size: 18px;
  line-height: 25px;
  border: none;
  background: #000;
  border-width: 0px 0px 1px 0px;
  border-style: solid;
  border-color: #FFFFFF;
}

.contact .module1 .contact_right .form .form_content .inquiry_form .inquiry_submit {
  width: 100%;
}

.contact .module1 .contact_right .form .form_content .inquiry_form .inquiry_submit button {
  margin-top: 10px;
  width: 100%;
  height: 45px;
  border-radius: 137px;
  border: 1px solid #BDBDBD;
  color: #9E9E9E;
  font-size: 18px;
  background: #000;
}

.contact .module1 .contact_right .form .form_content .inquiry_form .inquiry_submit button:hover, .contact .module1 .contact_right .form .form_content .inquiry_form .inquiry_submit button:active {
  border: 2px solid #BDBDBD;
  font-weight: bold;
}

.contact .module2 {
  margin-top: 134px;
}

.contact .module2 .title {
  width: 100%;
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  text-align: center;
}

.contact .module2 .content {
  margin-top: 80px;
  width: 100%;
  overflow-x: hidden;
}

.contact .module2 .content .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.contact .module2 .content .swiper-container .swiper-slide {
  cursor: pointer;
  transition: 300ms;
  transform: scale(0.82);
}

.contact .module2 .content .swiper-container .swiper-slide img {
  width: 100%;
}

.contact .module2 .content .swiper-container .swiper-slide-active, .contact .module2 .content .swiper-container .swiper-slide-duplicate-active {
  transform: scale(1);
}

.contact .module2 .content .swiper-container .contact_navigation {
  transform: scale(0.75);
  color: #4C4C4C;
}

.contact .module2 .content .swiper-container .swiper-button-prev {
  left: 0px;
}

.contact .module2 .content .swiper-container .swiper-button-next {
  right: 0px;
}

.contact .module3 {
  margin-top: 180px;
  display: flex;
  justify-content: space-between;
}

.contact .module3 .module_left {
  max-width: 454px;
  margin-right: 65px;
  color: #000000;
}

.contact .module3 .module_left .title {
  font-size: 36px;
  font-weight: bold;
}

.contact .module3 .module_left .desc {
  margin-top: 33px;
  font-size: 16px;
  line-height: 30px;
  color: #9E9E9E;
  letter-spacing: 0.06em;
}

.contact .module3 .module_right video {
  width: 100%;
}

.products {
  padding-bottom: 160px;
}

.products .filter {
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 15px;
}

.products .filter .filter_item {
  width: 33.3%;
  min-width: 400px;
  display: flex;
  font-size: 18px;
  color: #9E9E9E;
  padding-bottom: 15px;
}

.products .filter .filter_item .fi_title {
  margin-right: 30px;
}

.products .filter .filter_item select {
  width: 190px;
  color: #9E9E9E;
  font-size: 18px;
  border: none;
  border-bottom: 1px solid #D8D8D8;
}

.products .tips {
  margin-top: 30px;
  font-size: 24px;
}

.products .product_list {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0 8.6458vw;
}

.products .product_list .product {
  display: flex;
  margin-top: 87px;
  width: calc((100% - 25.9375vw)/4);
  position: relative;
}

.products .product_list .product .product_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products .product_list .product .product_content .product_img {
  width: 100%;
  transition: all 0.75s;
}

.products .product_list .product .product_content .product_name {
  font-size: 18px;
  margin-top: 30px;
  color: #000000;
}

.products .product_list .product .product_content:hover img {
  transform: scale(1.2);
}

.products .product_list .product::after {
  content: "";
  display: block;
  position: absolute;
  left: 100%;
  top: 0;
  width: 2px;
  height: 100%;
  margin: 0 4.2708vw;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #E7E7E7 52%, rgba(255, 255, 255, 0) 100%);
}

.products .product_list .product:nth-child(4n)::after {
  display: none;
}

.products .product_list .product:last-child::after {
  display: none;
}

.product_detail .product_content {
  margin-top: 110px;
  margin-bottom: 160px;
}

.product_detail .product_content .info {
  display: flex;
  justify-content: space-between;
}

.product_detail .product_content .info .info_left {
  display: flex;
}

.product_detail .product_content .info .info_left .productSwiper-pagination {
  display: flex;
  flex-direction: column;
  width: auto;
  height: 100%;
}

.product_detail .product_content .info .info_left .productSwiper-pagination .swiper-pagination-bullet {
  height: 20%;
  width: auto;
}

.product_detail .product_content .info .info_left .productSwiper-pagination .swiper-pagination-bullet img {
  height: 100%;
  aspect-ratio: 1/1;
}

.product_detail .product_content .info .info_left .productDetailSwiper {
  display: flex;
}

.product_detail .product_content .info .info_left .productDetailSwiper .swiper-wrapper {
  width: 24.2188vw;
  min-width: 430px;
}

.product_detail .product_content .info .info_left .productDetailSwiper .swiper-wrapper img {
  width: 100%;
}

.product_detail .product_content .info .info_right {
  flex: 1;
  color: #000000;
  margin-left: 30px;
}

.product_detail .product_content .info .info_right .item1 {
  display: flex;
  justify-content: space-between;
}

.product_detail .product_content .info .info_right .item1 .product_name {
  font-size: 36px;
  line-height: 50px;
  font-weight: bold;
}

.product_detail .product_content .info .info_right .item1 .collect {
  width: 40px;
  height: 40px;
  border: 1px solid #EDEDED;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.product_detail .product_content .info .info_right .item1 .collect input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.product_detail .product_content .info .info_right .item1 .collect input .active_svg {
  fill: #E3474F;
}

.product_detail .product_content .info .info_right .item1 .collect svg {
  position: relative;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  transition: all 0.3s;
  fill: #000000;
}

.product_detail .product_content .info .info_right .item1 .collect svg:hover {
  transform: scale(1.1);
}

.product_detail .product_content .info .info_right .label_list {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.product_detail .product_content .info .info_right .label_list .label_item {
  padding: 8px 10px;
  background: #873A3A;
  font-size: 12px;
  color: #fff;
}

.product_detail .product_content .info .info_right .texture_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin-top: 30px;
}

.product_detail .product_content .info .info_right .texture_list .textureItem {
  width: 100%;
  height: 25px;
  display: flex;
  align-items: center;
  font-size: 18px;
}

.product_detail .product_content .info .info_right .texture_list .textureItem .name {
  font-weight: bold;
  margin-right: 30px;
}

.product_detail .product_content .info .info_right .texture_list .active {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.product_detail .product_content .info .info_right .price {
  margin: 37px 0 55px 0;
  line-height: 50%;
  font-weight: bold;
  font-size: 36px;
  color: #000000;
}

.product_detail .product_content .info .info_right .download {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.product_detail .product_content .info .info_right .download .item {
  cursor: pointer;
  border: 1px solid #EDEDED;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(50% - 15px);
  border-radius: 8px;
}

.product_detail .product_content .info .info_right .download .item .item_letf {
  display: flex;
  align-items: center;
}

.product_detail .product_content .info .info_right .download .item .item_letf img {
  width: 26px;
  height: 26px;
}

.product_detail .product_content .info .info_right .download .item .item_letf p {
  margin-left: 8px;
  font-size: 14px;
  color: #9E9E9E;
}

.product_detail .product_content .info .info_right .download .item .item_right {
  width: 22px;
  height: 22px;
}

.product_detail .product_content .info .info_right .product_size {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.product_detail .product_content .info .info_right .product_size .table {
  width: 100%;
}

.product_detail .product_content .info .info_right .product_size .table table {
  width: 100%;
}

.product_detail .product_content .info .info_right .product_size .table table tbody {
  width: 100%;
}

.product_detail .product_content .info .info_right .product_size .table table tbody tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.product_detail .product_content .info .info_right .product_size .table table tbody tr td {
  width: 23%;
}

.product_detail .product_content .info .info_right .product_size .table table tbody tr td * {
  font-size: 16px !important;
}

.product_detail .product_content .info .info_right .product_size .table table tbody tr td:nth-child(2n+1) * {
  font-weight: bold;
  color: #000 !important;
  white-space: nowrap;
}

.product_detail .product_content .info .info_right .product_size .table table tbody tr td:nth-child(2) {
  margin-right: 8%;
}

.product_detail .product_content .info .info_right .product_size .table table tbody tr td:nth-child(2n) {
  text-align: end;
}

.product_detail .product_content .info .info_right .product_size .table table tbody tr td:nth-child(2n) * {
  color: #873A3A !important;
}

.product_detail .product_content .webGL {
  display: flex;
}

.product_detail .product_content .webGL iframe {
  width: 44.17%;
  margin-right: 3.125vw;
}

.product_detail .product_content .webGL .webGL_right {
  flex: 1;
  color: #000000;
}

.product_detail .product_content .webGL .webGL_right .product_name {
  font-size: 36px;
  line-height: 50px;
  font-weight: bold;
  margin-top: 30px;
}

.product_detail .product_content .webGL .webGL_right .collect {
  width: 40px;
  height: 40px;
  border: 1px solid #EDEDED;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.product_detail .product_content .webGL .webGL_right .collect input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.product_detail .product_content .webGL .webGL_right .collect input .active_svg {
  fill: #E3474F;
}

.product_detail .product_content .webGL .webGL_right .collect svg {
  position: relative;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  transition: all 0.3s;
  fill: #000000;
}

.product_detail .product_content .webGL .webGL_right .collect svg:hover {
  transform: scale(1.1);
}

.product_detail .product_content .webGL .webGL_right .texture_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin-top: 30px;
}

.product_detail .product_content .webGL .webGL_right .texture_list .textureItem {
  width: 100%;
  height: 80px;
  border: 1px solid #EDEDED;
  display: flex;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}

.product_detail .product_content .webGL .webGL_right .texture_list .textureItem img {
  border-radius: 50%;
  margin-left: 20px;
}

.product_detail .product_content .webGL .webGL_right .texture_list .textureItem .name {
  font-weight: bold;
  margin: 0 30px;
}

.product_detail .product_content .webGL .webGL_right .texture_list .active {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.product_detail .product_content .webGL .webGL_right .download {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.product_detail .product_content .webGL .webGL_right .download .item {
  cursor: pointer;
  border: 1px solid #EDEDED;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(50% - 15px);
  border-radius: 8px;
}

.product_detail .product_content .webGL .webGL_right .download .item .item_letf {
  display: flex;
  align-items: center;
}

.product_detail .product_content .webGL .webGL_right .download .item .item_letf img {
  width: 26px;
  height: 26px;
}

.product_detail .product_content .webGL .webGL_right .download .item .item_letf p {
  margin-left: 8px;
  font-size: 14px;
  color: #9E9E9E;
}

.product_detail .product_content .webGL .webGL_right .download .item .item_right {
  width: 22px;
  height: 22px;
}

.product_detail .product_content .product_info {
  margin-top: 62px;
}

.product_detail .product_content .product_info .info_title {
  line-height: 50px;
  font-size: 36px;
  font-weight: bold;
}

.product_detail .product_content .product_info .info_content {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

.product_detail .product_content .product_info .info_content .description {
  width: 44.17%;
}

.product_detail .product_content .product_info .info_content .description .description_title {
  font-size: 18px;
  line-height: 25px;
  font-weight: bold;
}

.product_detail .product_content .product_info .info_content .description .description_desc {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #9E9E9E;
}

.product_detail .product_content .product_info .info_content .product_size {
  width: 50.83%;
}

.product_detail .product_content .product_info .info_content .product_size .size_title {
  font-size: 18px;
  line-height: 25px;
  font-weight: bold;
}

.product_detail .product_content .product_info .info_content .product_size .size_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.product_detail .product_content .product_info .info_content .product_size .size_list .table {
  width: 100%;
}

.product_detail .product_content .product_info .info_content .product_size .size_list .table table {
  width: 100%;
}

.product_detail .product_content .product_info .info_content .product_size .size_list .table table tbody {
  width: 100%;
}

.product_detail .product_content .product_info .info_content .product_size .size_list .table table tbody tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.product_detail .product_content .product_info .info_content .product_size .size_list .table table tbody tr td {
  width: 23%;
}

.product_detail .product_content .product_info .info_content .product_size .size_list .table table tbody tr td * {
  font-size: 18px !important;
}

.product_detail .product_content .product_info .info_content .product_size .size_list .table table tbody tr td:nth-child(2n+1) * {
  color: #9E9E9E !important;
  white-space: nowrap;
}

.product_detail .product_content .product_info .info_content .product_size .size_list .table table tbody tr td:nth-child(2) {
  margin-right: 8%;
}

.product_detail .product_content .product_info .info_content .product_size .size_list .table table tbody tr td:nth-child(2n) {
  text-align: end;
}

.product_detail .product_content .product_info .info_content .product_size .size_list .table table tbody tr td:nth-child(2n) * {
  color: #000000 !important;
  font-weight: bold;
}

.product_detail .product_content .additionalDetails {
  display: grid;
  grid-template-columns: repeat(3, calc(33.3% - 1.0417vw));
  grid-template-rows: auto auto;
  gap: 1.5625vw;
  margin-top: 120px;
}

.product_detail .product_content .additionalDetails .ad_item .detail_img {
  width: 100%;
}

.product_detail .product_content .additionalDetails .dt3 {
  grid-row: 1/3;
  grid-column: 2/3;
}

.product_detail .product_content .additionalDetails .dt4 {
  grid-row: 1/3;
  grid-column: 3/4;
}

.product_detail .product_content .moreProducts {
  margin-top: 120px;
}

.product_detail .product_content .moreProducts .more_title {
  font-size: 36px;
  line-height: 50px;
  font-weight: bold;
  text-align: center;
}

.product_detail .product_content .moreProducts .more_list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product_detail .product_content .moreProducts .more_list .detailSwiper {
  width: 100%;
  display: flex;
}

.product_detail .product_content .moreProducts .more_list .detailSwiper .pd_slider {
  border: 1px solid #EDEDED;
}

.product_detail .product_content .moreProducts .more_list .detailSwiper .pd_slider:hover {
  border: 2px solid #888585;
  transition: all .5s !important;
}

.product_detail .product_content .moreProducts .more_list .detailSwiper .pd_slider a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product_detail .product_content .moreProducts .more_list .detailSwiper .pd_slider a img {
  width: 100%;
}

.product_detail .product_content .moreProducts .more_list .detailSwiper .pd_slider a .name {
  font-size: 18px;
  line-height: 25px;
  color: #000000;
  margin: 30px 0 15px 0;
}

.product_detail .product_content .moreProducts .more_list .detailSwiper_pagination {
  width: auto !important;
  margin-top: 20px;
}

.product_detail .product_content .moreProducts .more_list .detailSwiper_pagination .swiper-pagination-bullet-active {
  background-color: #000;
}

.faq {
  padding-bottom: 160px;
}

.faq .faq_content {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
}

.faq .faq_content .faq_left {
  max-width: 270px;
}

.faq .faq_content .faq_left p {
  font-size: 18px;
}

.faq .faq_content .faq_right {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
}

.faq .faq_content .faq_right .faq_item {
  max-width: 810px;
  padding: 30px;
  border: 1px solid #EDEDED;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.faq .faq_content .faq_right .faq_item .title {
  font-size: 36px;
  font-weight: bold;
  line-height: 27px;
}

.faq .faq_content .faq_right .faq_item .desc_content {
  padding: 10px;
  background: #FAFAFA;
  margin-top: 30px;
}

.faq .faq_content .faq_right .faq_item .desc {
  font-size: 16px;
  line-height: 22px;
  color: #3C3F44;
  height: auto;
  transition: all 1s ease;
  /* 设置过渡效果，高度变化需要0.3秒，并使用ease缓动函数 */
}

.faq .faq_content .faq_right .faq_item .unfold {
  margin-top: 36px;
  line-height: 27px;
  font-size: 14px;
  color: #696969;
  display: flex;
  align-items: center;
  cursor: pointer;
  align-self: flex-end;
}

.faq .faq_content .faq_right .faq_item .unfold img {
  width: 16px;
  height: 16px;
  margin-left: 15px;
}

.faq .faq_content .faq_right .faq_item .unfold .rotate-icon {
  /* 使用transform来实现旋转180度 */
  transform: rotate(180deg);
  /* 添加过渡效果以实现平滑的旋转动画 */
  transition: transform .5s ease;
}

.technology .technology_content {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.technology .content {
  height: 100vh;
  background: #333333;
  display: flex;
  position: absolute;
  padding: 100px 120px;
  font-size: 18px;
  color: #FFFFFF;
  transform: translateX(0);
  inset: 0 auto auto 0px;
}

.technology .content .item {
  height: 100%;
}

.technology .content .tItem1 {
  display: flex;
  align-items: end;
  margin-right: 13.8021vw;
}

.technology .content .tItem1 .img1 {
  height: 100%;
  margin-right: 80px;
}

.technology .content .tItem1 .tItem1_right p {
  width: 424px;
  margin-bottom: 3.2813vw;
}

.technology .content .tItem1 .tItem1_right img {
  height: 59.7%;
}

.technology .content .tItem2 {
  display: flex;
  align-items: end;
  margin-right: 13.8021vw;
  margin-bottom: 2.6042vw;
}

.technology .content .tItem2 .img1 {
  height: 28.3%;
  margin-bottom: 31.5%;
}

.technology .content .tItem2 .tItem2_right {
  margin-left: -224px;
  margin-bottom: 8%;
}

.technology .content .tItem2 .tItem2_right p {
  width: 602px;
  margin-top: 30px;
}

.technology .content .tItem2 .tItem2_right img {
  height: 16.7%;
}

.technology .content .tItem3 {
  display: flex;
  margin-left: -350px;
}

.technology .content .tItem3 img {
  height: 61.3%;
}

.technology .content .tItem3 p {
  width: 550px;
  margin-top: 78px;
  margin-left: 40px;
}

.technology .content .tItem4 {
  align-self: flex-end;
  margin-left: -200px;
  margin-right: 275px;
  display: flex;
  align-items: end;
}

.technology .content .tItem4 .img1 {
  height: 59.7%;
}

.technology .content .tItem4 .tItem4_right {
  margin-left: -60px;
}

.technology .content .tItem4 .tItem4_right p {
  max-width: 350px;
  margin: 64px 0 80px 115px;
}

.technology .content .tItem4 .tItem4_right img {
  height: 41.3%;
}

.technology .content .tItem5 {
  margin-top: 57px;
  display: flex;
  margin-right: 200px;
}

.technology .content .tItem5 .img1 {
  height: 73.3%;
}

.technology .content .tItem5 .tItem5_right {
  margin-left: 80px;
}

.technology .content .tItem5 .tItem5_right p {
  width: 424px;
  margin: 6.4479vw 0 5.8854vw 0;
}

.technology .content .tItem5 .tItem5_right img {
  height: 34.7%;
}

.technology .content .tItem6 {
  display: flex;
}

.technology .content .tItem6 img {
  height: 100%;
}

.technology .content .tItem6 p {
  width: 424px;
  margin-left: 80px;
  margin-top: 35%;
}

.register {
  width: 100%;
  height: calc(100vh - 80px);
  background: url(../images/register_bg.jpg);
  background-blend-mode: multiply, normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register .content {
  width: 560px;
  position: relative;
}

.register .content .register_title {
  width: 100%;
  margin-bottom: 77px;
}

.register .content .inquiry_form_succeed {
  color: #fff;
  margin: 0 0 10px 10px;
  display: none;
}

.register .content .register_form {
  width: 100%;
}

.register .content .register_form .inquiry_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #9E9E9E;
}

.register .content .register_form .inquiry_form .inquiry_li {
  width: 100%;
  margin-bottom: 20px;
}

.register .content .register_form .inquiry_form .inquiry_li .inquiry_title {
  display: none;
}

.register .content .register_form .inquiry_form .inquiry_li input,
.register .content .register_form .inquiry_form .inquiry_li select {
  width: 100%;
  padding: 18px 30px;
  border-radius: 138px;
  background: #FFFFFF;
  font-size: 18px;
  color: #9E9E9E;
}

.register .content .register_form .inquiry_form .inquiry_li select {
  background-repeat: no-repeat;
  background-position: left center;
  /* 设置箭头图标在右侧中心位置 */
}

.register .content .register_form .inquiry_form .inquiry_li input::placeholder {
  color: #9E9E9E;
}

.register .content .register_form .inquiry_form .inquiry_li textarea {
  width: 100%;
  height: 170px;
  font-size: 14px;
  border-radius: 13px;
  padding: 18px 30px;
}

.register .content .register_form .inquiry_form .inquiry_submit {
  margin-top: 10px;
  display: flex;
  justify-content: end;
}

.register .content .register_form .inquiry_form .inquiry_submit button {
  border: 1px solid #BDBDBD;
  padding: 10px 45px;
  color: #9E9E9E;
  font-size: 18px;
  border-radius: 50px;
  background-color: transparent;
}

.register .tip {
  position: absolute;
  bottom: 0;
  left: 30px;
  color: #BDBDBD;
  font-size: 14px;
  font-weight: bold;
}

footer .footer_service {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0 60px 0;
  background: url(../images/footer_bg.jpg), #FAFAFA;
  background-blend-mode: multiply, normal;
  box-shadow: inset 0px 0px 31px 1px rgba(0, 0, 0, 0.02);
}

footer .footer_service .service_list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 1.5625vw 3.125vw;
  align-content: flex-start;
}

footer .footer_service .service_list .sl_item {
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

footer .footer_service .service_list .sl_item .type1 {
  width: 70px;
  height: 70px;
}

footer .footer_service .service_list .sl_item .type2 {
  width: 60px;
  height: 60px;
}

footer .footer_service .service_list .sl_item .type3 {
  width: 70px;
  height: 43px;
}

footer .footer_service .service_list .sl_item p {
  margin-left: 20px;
  font-size: 18px;
}

footer .footer_contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  background: #333333;
  color: #FFFFFF;
}

footer .footer_contact .contact_title {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 20px;
  font-family: Inter_bold;
}

footer .footer_contact .contact_desc {
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  letter-spacing: 0em;
  color: #BDBDBD;
  letter-spacing: 0.1em;
}

footer .footer_contact .footer_form {
  margin: 30px 0 60px 0;
}

footer .footer_contact .footer_form .inquiry_form_succeed {
  margin-bottom: 10px;
  color: #3bce7f;
  font-size: 16px;
  display: none;
}

footer .footer_contact .inquiry_form {
  width: 450px;
  display: flex;
  position: relative;
}

footer .footer_contact .inquiry_form .inquiry_image,
footer .footer_contact .inquiry_form .inquiry_title {
  display: none;
}

footer .footer_contact .inquiry_form .inquiry_li {
  width: 100%;
}

footer .footer_contact .inquiry_form input {
  border: 1px solid #FFFFFF;
  padding: 0px 0px 0px 20px;
  width: 100%;
  height: 45px;
  border-radius: 180px;
  box-sizing: border-box;
  font-size: 14px;
  color: #9E9E9E;
  background: #333333;
}

footer .footer_contact .inquiry_form input::placeholder {
  color: #9E9E9E;
  /* 设置你想要的颜色，这里使用了灰色 (#999) 作为示例 */
}

footer .footer_contact .inquiry_form input:focus {
  outline: none;
}

footer .footer_contact .inquiry_form .inquiry_error {
  white-space: nowrap;
  margin-top: 5px;
}

footer .footer_contact .inquiry_form button {
  position: absolute;
  right: 0;
  top: 0;
  font-family: Inter_bold;
  font-size: 14px;
  width: 140px;
  height: 45px;
  border-radius: 0 180px 180px 0;
  opacity: 1;
  background: #fff;
  border: none;
  color: #333333;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

footer .footer_contact .inquiry_form button:active {
  box-shadow: 0px 1px 3px 0px rgba(9, 104, 75, 0.5);
}

footer .footer_contact .contact_list {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

footer .footer_contact .contact_list img {
  width: 16px;
  height: 16px;
}

footer .footer_contact .contact_list em {
  font-size: 16px;
  color: #fff;
}

footer .footer_contact .contact_list .cl_item ul {
  display: flex;
  gap: 30px;
}

footer .footer_contact .contact_list .cl_item2 {
  display: flex;
  align-items: center;
}

footer .footer_contact .contact_list .cl_item2 a {
  display: flex;
  align-items: center;
  color: #fff;
}

footer .footer_contact .contact_list .cl_item2 a .info {
  margin-left: 18px;
}

footer .footer_contact .contact_list .cl_item2::before {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  margin: 0 40px;
  background: #696969;
}

footer .footer_contact .all {
  display: flex;
}

footer .footer_contact .all .all_title {
  color: #BDBDBD;
  font-size: 24px;
  font-weight: bold;
  line-height: 26px;
  margin-right: 30px;
}

footer .footer_contact .all .all_desc {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.06em;
  color: #BDBDBD;
  max-width: 515px;
}

.WeChat {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.WeChat .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0b0b;
  opacity: 0.8;
  cursor: pointer;
}

.WeChat .content {
  position: relative;
}

.WeChat .content .wx {
  width: 50vw;
  max-width: 550px;
}

.WeChat .content .close {
  position: absolute;
  right: -50px;
  top: 0;
  width: 30px;
  cursor: pointer;
}

.fadeInUp {
  animation-duration: 1.5s;
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

@media screen and (max-width: 1100px) {
  header .header {
    justify-content: space-between;
  }
  header .header .hd_content {
    transform: none;
    position: static;
  }
  header .header .hd_content .logo {
    margin: 0;
  }
  header .header .hd_content .nav {
    display: none;
  }
  .contact .module3 {
    flex-direction: column;
  }
  .contact .module3 .module_left {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .stock .stock_product .item_text {
    font-size: 20px !important;
  }
  .featuredCase .fc_product .item .item_text .text1 {
    font-size: 40px !important;
  }
  .vip_active .vip_login .vl_left {
    width: 70% !important;
  }
  .vip_active .vip_login .vl_left .to {
    bottom: 0 !important;
  }
  .vip_active .vip_login .vl_left .to .Register {
    display: block !important;
  }
  .vip_active .vip_login .vl_right {
    display: none !important;
  }
  .products .filter {
    justify-content: flex-start;
  }
  .product_detail .product_content .info {
    flex-direction: column;
  }
  .product_detail .product_content .info .info_right {
    margin-left: 0;
    margin-top: 30px;
  }
  .about .about_item2 .item2_content {
    flex-direction: column;
  }
  .about .about_item2 .item2_content .img {
    width: 100%;
  }
  .about .about_item2 .item2_content .text {
    margin: 30px 0 0 0;
  }
  .about .about_item2 .item2_content .text .title {
    font-size: 32px;
  }
}

@media screen and (max-width: 960px) {
  .contact .module1 {
    flex-direction: column;
  }
  .contact .module1 .contact_left {
    width: 100%;
  }
  .contact .module1 .contact_left img {
    min-height: 300px;
  }
  .contact .module1 .contact_right {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .about .about_item1 .item1_content {
    padding: 40px 0 !important;
  }
  .about .about_item1 .item1_content .aboutSwiper {
    padding-left: 80px !important;
  }
  .about .about_item1 .item1_content .aboutSwiper .swiper-wrapper {
    padding-top: 0 !important;
  }
  .about .about_item1 .item1_content .aboutSwiper .about_slide {
    flex-direction: column !important;
  }
  .about .about_item1 .item1_content .aboutSwiper .about_slide .slide_left {
    width: 95%;
    margin-right: 0 !important;
    margin-bottom: 20px;
  }
  .about .about_item1 .item1_content .aboutSwiper .about_slide .slide_left .desc * {
    font-size: 16px !important;
  }
  .about .about_item1 .item1_content .aboutSwiper .about_slide .slide_right {
    width: 95%;
    padding-right: 0 !important;
    display: flex;
    justify-content: center;
  }
  .about .about_item1 .item1_content .aboutSwiper .about_slide .slide_right img {
    width: 80%;
    opacity: 0;
  }
  .about .about_item1 .item1_content .aboutSwiper .swiper-slide-active .slide_right img {
    opacity: 1 !important;
  }
  .news .lItem_content .lc_title {
    font-size: 28px !important;
  }
  .faq .faq_content {
    margin-top: 30px;
    flex-direction: column;
  }
  .faq .faq_content .faq_left {
    width: 100%;
    max-width: none;
  }
  .faq .faq_content .faq_right {
    width: 100%;
    margin-top: 15px;
    gap: 30px 0;
  }
  .faq .faq_content .faq_right .faq_item {
    padding: 20px;
  }
  .faq .faq_content .faq_right .faq_item .title {
    font-size: 24px;
  }
  .faq .faq_content .faq_right .faq_item .desc {
    margin-top: 15px;
  }
  .faq .faq_content .faq_right .faq_item .unfold {
    margin-top: 8px;
  }
}

@media screen and (max-width: 800px) {
  .header .header_menu {
    width: 100%;
  }
  .header .header_menu .head_nav li a {
    font-size: 30px !important;
    line-height: 42px !important;
  }
  .header .header_menu .header_contact .cl_item2 {
    display: none !important;
  }
  main .banner .text .text_content .title {
    line-height: 42px;
    font-size: 42px;
    margin-bottom: 10px;
  }
  .products .product_list {
    justify-content: space-between;
  }
  .products .product_list .product {
    width: calc((100% - 10vw)/2);
  }
  .products .product_list .product::after {
    margin: 0 5vw;
  }
  .products .product_list .product:nth-child(4n)::after {
    display: block;
  }
  .products .product_list .product:nth-child(2n)::after, .products .product_list .product:last-child::after {
    display: none;
  }
  .product_detail .product_content {
    margin-bottom: 40px;
  }
  .product_detail .product_content .webGL {
    flex-direction: column;
  }
  .product_detail .product_content .webGL iframe {
    width: 100%;
  }
  .product_detail .product_content .product_info .info_content {
    flex-direction: column;
  }
  .product_detail .product_content .product_info .info_content .description {
    width: 100%;
  }
  .product_detail .product_content .product_info .info_content .product_size {
    width: 100%;
    margin-top: 20px;
  }
  .product_detail .product_content .additionalDetails {
    grid-template-columns: repeat(2, calc(50% - 1.0417vw));
    margin-top: 15px;
  }
  .product_detail .product_content .additionalDetails .ad_item {
    grid-row: unset;
    grid-column: unset;
  }
  .product_detail .product_content .moreProducts {
    margin-top: 40px;
  }
  .news .news_list .itemIist .item {
    flex-direction: column;
    margin-top: 55px;
    background: #F0F0F0;
  }
  .news .news_list .itemIist .item .i_left {
    width: 100%;
    justify-content: center;
    padding: 20px;
  }
  .news .news_list .itemIist .item .i_left .bg {
    display: none;
  }
  .news .news_list .itemIist .item .i_left .img {
    margin-left: 0;
    width: 100% !important;
  }
  .news .news_list .itemIist .item .i_right {
    width: 100%;
    padding: 20px;
  }
  .news .news_list .itemIist .item .i_right .title {
    font-size: 32px;
    line-height: 38px;
  }
  .news .news_list .itemIist .item .i_right .desc {
    margin-top: 20px;
  }
  .news .news_list .itemIist .item .i_right .st_button {
    margin-top: 30px;
  }
  footer .footer_service .service_list {
    grid-template-columns: auto auto;
  }
}

@media screen and (max-width: 700px) {
  .item_haeder .ih_title {
    font-size: 40px;
    line-height: 50px;
  }
  .index_video {
    display: none;
  }
  .index_main .indexMobileSwiper {
    display: block;
  }
  .stock .stock_text {
    padding-top: 4.4271vw;
    flex-direction: column;
    align-items: center;
  }
  .stock .stock_text .img {
    width: 90% !important;
  }
  .news .lItem_content .lc_title {
    font-size: 24px !important;
  }
  .news .lItem_content .lc_desc {
    font-size: 18px !important;
    line-height: 22px !important;
  }
  .news .lItem_content .lc_button {
    font-size: 16px !important;
  }
  .footer_contact .inquiry_form {
    width: 320px !important;
  }
  .footer_contact .inquiry_form input {
    min-width: 188px !important;
  }
  .footer_contact .inquiry_form button {
    width: 110px !important;
  }
  .footer_contact .all {
    width: 95% !important;
  }
  .footer_contact .all .all_title {
    font-size: 20px !important;
    margin-right: 10px !important;
  }
  .footer_contact .all .all_desc {
    font-size: 14px !important;
  }
  .footer_contact .contact_title {
    font-size: 30px !important;
  }
  .footer_contact .contact_desc {
    width: 95%;
    text-align: center;
    font-size: 14px !important;
  }
  .footer_contact .contact_list {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .footer_contact .contact_list .cl_item2 {
    margin-top: 15px;
  }
  .footer_contact .contact_list .cl_item2::before {
    display: none !important;
  }
  .contact {
    padding-bottom: 120px;
  }
  .contact .module2 {
    margin-top: 50px;
  }
  .contact .module2 .title {
    font-size: 28px;
  }
  .contact .module3 {
    margin-top: 80px;
  }
  .contact .module3 .title {
    font-size: 28px !important;
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .WeChat .content .wx {
    width: 65vw;
  }
  .featuredCase .fc_product .item .item_text .text1 {
    font-size: 22px !important;
  }
  .featuredCase .fc_product .item .item_text .text2 {
    font-size: 14px !important;
  }
  footer .footer_service .service_list {
    grid-template-columns: auto;
  }
  .header .vip_active {
    background-image: url(../images/login_bg.jpg);
    border-bottom: 1px solid #F0F0F0;
  }
  .header .vip_active .vip_close {
    width: 32px;
    right: 2%;
    top: 30px;
  }
  .header .vip_active .vip_login {
    padding: 30px 0 20px 0;
  }
  .header .vip_active .vip_login .vl_left {
    width: 100% !important;
  }
  .header .vip_active .vip_login .vl_left .title {
    line-height: 32px;
    font-size: 30px;
  }
  .header .vip_active .vip_login .vl_left .title::after {
    margin-top: 10px;
  }
  .header .vip_active .vip_login .vl_left .inquiry_form {
    margin-top: 35px;
  }
  main .news .news_content {
    margin-top: 30px !important;
    flex-wrap: wrap;
  }
  main .news .news_content .lItem_content {
    padding: 25px 20px;
  }
  main .news .news_content .news_left {
    width: 100%;
  }
  main .news .news_content .news_left .left_item {
    margin-bottom: 30px;
  }
  main .news .news_content .news_right {
    width: 100%;
  }
  main .news .news_content .news_right .right_item {
    margin-bottom: 30px;
  }
  .contact .contact_right .info .content {
    flex-direction: column !important;
  }
  .contact .contact_right .info .content .c_title {
    margin-top: 30px !important;
  }
  .contact .contact_right .info .content .contact_list {
    width: 100% !important;
    margin-top: 40px !important;
  }
}

@media screen and (max-width: 525px) {
  .header .hd_rihgt .language {
    display: none;
  }
  .header .header_menu {
    padding: 60px 10px 60px 40px !important;
  }
  .header .header_menu .head_nav li a {
    font-size: 24px !important;
  }
  .header .header_menu .head_nav li .sub-menu {
    left: 155px !important;
  }
  .item_haeder .ih_title {
    font-size: 32px;
    line-height: 42px;
  }
  .about .about_item1 .item1_content .aboutSwiper {
    padding-left: 60px !important;
  }
  .about .about_item1 .item1_content .aboutSwiper .about_slide .slide_left .title {
    font-size: 34px;
    line-height: 54px;
  }
  .about .about_item1 .item1_content .aboutSwiper .about_slide .slide_left .desc * {
    font-size: 14px !important;
  }
  .about .about_item1 .item1_content .aboutSwiper .about_slide .slide_right img {
    width: 100% !important;
  }
  .about .about_item1 .item1_content .aboutSwiper .aboutSwiper-pagination {
    min-width: 60px !important;
    font-size: 16px !important;
  }
  .news {
    margin-bottom: 40px !important;
  }
  .news .exhibition {
    margin: 20px auto 0 auto;
  }
  .news .news_list {
    margin: 40px auto 0 auto;
  }
  .news .news_list .news_button {
    margin-top: 30px;
  }
  .news .news_list .itemIist {
    padding-top: 0;
  }
  .news .news_list .itemIist .item {
    margin-top: 30px;
  }
  .news .news_list .itemIist .item .i_right {
    padding-top: 0;
    order: 2;
  }
  .news .news_list .itemIist .item .i_right .title {
    font-size: 22px;
    line-height: 28px;
  }
  .news .news_list .itemIist .item .i_right .desc {
    font-size: 16px;
    line-height: 24px;
  }
  .news .news_list .list_title p {
    font-size: 40px;
    line-height: 40px;
  }
  .new_detail_content .content img {
    width: 100% !important;
  }
  .product_detail .product_content .product_info .info_content .product_size .size_list .table table tbody tr td * {
    font-size: 16px !important;
  }
  .footer_service .service_list {
    justify-content: center !important;
  }
  .footer_service .service_list .sl_item {
    width: 35%;
    min-width: 240px;
    margin-bottom: 15px;
  }
}
