
/* exosystem */
@import url(//at.alicdn.com/t/c/font_3923268_lt2izfo7iop.css);  
/* 多用户商城 */
@import url(//at.alicdn.com/t/c/font_4945805_2ao05bkx03u.css);

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  height: auto;
  font-size: 14px;
  line-height: unset;
  color: var(--default-font-color);
  background-color: #fff;
}

i {
  transition: all 0.3s;
}

img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

button,
input {
  background-color: transparent;
  border: none;
  outline: none;
}

button:hover {
  opacity: 0.85;
}

ul li {
  list-style: none;
}

a:hover {
  color: inherit;
}

p {
  word-break: break-word;
  margin: 0;
}

.cp{
  cursor: pointer;
}
.hide {
  display: none;
}

.iconfont {
  position: relative;
  left: unset;
  top: unset;
  transform: unset;
}
.public-container {
  height: 100%;
  overflow: auto;
}

.public-link {
  line-height: 20px;
  color: #007185;
  cursor: pointer;
}

.public-link:hover {
  text-decoration: underline;
  color: #c7511f;
}

.public-price {
  position: relative;
}

.public-price .int {
  font-size: 28px;
  margin: 0 2px 0 10px;
}

.public-price .small {
  position: absolute;
  top: -4px;
  font-size: 13px;
}

.public-mask {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.no-scroll {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
}

.panel-box {
  z-index: 3;
}

.public-banner {
  position: relative;
}

.public-layer {
  position: absolute;
  background-color: #fff;
  padding: 14px;
  border: 1px solid #bbb;
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.13);
  z-index: 999;
}

.public-layer::before {
  content: '';
  position: absolute;
  top: -9px;
  border: 9px solid transparent;
  border-top-width: 0;
  border-bottom: 9px solid #bbb;
}

.public-layer::after {
  content: '';
  position: absolute;
  top: -8px;
  border: 8px solid transparent;
  border-top-width: 0;
  border-bottom: 8px solid #fff;
}

.public-pupup {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1px solid #bbb;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.13);
  z-index: 4;
}

.public-iframe {
  width: 100%;
  overflow: hidden;
}

.public-iframe iframe {
  width: 100%;
  border: none;
  overflow: hidden;
}

.public-block {
  overflow: hidden;
  transition: height 0.3s linear;
}

.public-arrow {
  width: 14px;
  height: 14px;
  background-image: url(../image/icon-sprite.png);
  background-position: -249px -34px;
  margin-right: 20px;
  margin-left: 5px;
}

.public-arrow-down {
  transform: rotate(0);
}

.public-arrow-up {
  transform: rotate(180deg);
}

.public-jump {
  display: block;
  text-decoration: none;
  color: inherit;
}


::-webkit-scrollbar {
  width: 10px;
  /* 滚动条宽度 */
}

::-webkit-scrollbar-track {
  background: #f0f2f2;
  /* 滚动条轨道颜色 */
  border-radius: 10px;
  /* 轨道圆角 */
}

::-webkit-scrollbar-thumb {
  background-color: #d5d9d9;
  /* 滚动条滑块颜色 */
  border-radius: 10px;
  /* 滑块圆角 */
}
.full-text-content {
  position: relative;
}
.full-text-tooltip {
  display: none;
  position: absolute;
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  max-width: 400px;
  font-size: 14px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.full-text-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left:  20%; 
  width: 0;
  height: 0;
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: #333 transparent transparent;
  z-index: 1000; 
}
.model {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 375px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  box-shadow: 0 0 14px 0 rgba(15, 17, 17, 0.5);
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  z-index: 3;
}

.model .title {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: bold;
  color: 0f1111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d5d9d9;
  background-color: #f0f2f2;
}

.model .title .icon {
  width: 12px;
  height: 12px;
  background-image: url(../image/icon-sprite.png);
  background-position: -243px -270px;
  cursor: pointer;
}

.model .main {
  padding: 16px 24px 24px;
}

.model .main .tips {
  margin-bottom: 12px;
  color: #565959;
  font-size: 12px;
  line-height: 24px;
}

.model .main .link {
  color: #007185;
  text-decoration: none;
}

.model .main .link:hover {
  color: #c7511f;
  text-decoration: underline;
}

.model .main .input {
  box-shadow: 0 1px 2px rgba(15, 17, 17, 0.15) inset;
  border: 1px solid #888c8c;
  border-radius: 4px;
  height: 31px;
  padding: 3px 7px;
  width: 215px;
  outline: none;
}

.model .main .btn-apply {
  height: 29px;
  width: 100px;
  border-radius: 99px;
  border: 1px solid #888c8c;
  background-color: #fff;
  cursor: pointer;
  margin-left: 5px;
}

.model .main .btn-apply:hover {
  background-color: #f7fafa;
}

.model .main .small-title {
  color: #565959;
  font-size: 12px;
  position: relative;
  text-align: center;
  margin: 12px 0 14px;
}

.model .main .small-title::after {
  background-color: #d5d9d9;
  position: absolute;
  top: 50%;
  height: 1px;
  width: 100%;
  display: block;
  content: '';
  z-index: 5;
}

.model .main .small-title span {
  position: relative;
  z-index: 6;
  display: inline-block;
  background-color: #fff;
  padding: 0 7px;
}

.model .main .search-country .select-data {
  height: 31px;
}

.model .main .search-country .select-list {
  bottom: 32px;
  left: -3px;
}

.model .main .search-country .select-list .hr {
  height: 1px;
  padding: 0;
  border: none;
  background-color: #d5d9d9;
  margin: 7px 0;
}

.model .main .done-box {
  text-align: right;
  margin-top: 24px;
}

.model .main .done-box .btn-done {
  background-color: #ffd814;
  border: 1px solid #ffd814;
  border-radius: 100px;
  width: 55px;
  height: 31px;
  cursor: pointer;
}

.model .main .done-box .btn-done:hover {
  background-color: #f7ca00;
}

.model-fade-in {
  animation: show-model 0.1s ease-in-out;
}

.model-fade-out {
  animation: hide-model 0.1s ease-in-out;
}

@keyframes show-model {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hide-model {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.main-menu-fade-in {
  animation: show-main-menu 0.3s ease-in-out !important;
}

.main-menu-fade-out {
  animation: hide-main-menu 0.3s ease-in-out !important;
}

.detail-menu-fade-in {
  animation: show-detail-menu 0.3s ease-in-out !important;
}

.detail-menu-fade-out {
  animation: hide-detail-menu 0.3s ease-in-out !important;
}

@keyframes show-drawer {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes hide-drawer {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes show-main-menu {
  from {
    left: -100%;
  }

  to {
    left: 0;
  }
}

@keyframes hide-main-menu {
  from {
    left: 0;
  }

  to {
    left: -100%;
  }
}

@keyframes show-detail-menu {
  from {
    left: 100%;
  }

  to {
    left: 0;
  }
}

@keyframes hide-detail-menu {
  from {
    left: 0;
  }

  to {
    left: 100%;
  }
}

/* 定义向右滑动的动画 */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

/* 定义向左滑动的动画 */
@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

/* 添加动画类 */
.slide-in-from-right {
  animation: slideInFromRight 0.5s forwards;
}

.slide-in-from-left {
  animation: slideInFromLeft 0.5s forwards;
}

.is-login {
  background-color: rgb(231, 244, 245);
  border-radius: 8px;
  height: 68px;
  /*line-height: 68px;*/
  flex-direction: unset !important;
  color: #0f1111;
  padding: 15px;

}

.is-login .left {
  flex: 1;
}

.is-login .left img {
  float: left;
  max-height: 35px;
  max-width: 35px;
  position: absolute;
  border-radius: 50%;
}

.is-login .left span {
  margin-left: 50px;
}

.is-login .left p {
  margin: 0px 0px 0px 50px !important;
  color: #999999 !important;
}

.is-login .right {}

.is-login .right a {
  color: #137d7d;
  text-decoration: none;
}

.is-login .right a:hover {
  text-decoration: underline;
}

.public-disabled-img {
  opacity: 0.7;
  cursor: not-allowed !important;
}

.public-disabled-img:hover {
  opacity: 0.7 !important;
}

.item-header {
  padding: 2px;
}

.account_form h2 {
  font-size: 15px;
}

.customer_login .login-box .login-img img {
  width: 30px;
}

.customize-button-rfq {
  background-color: #febd69 !important;
}

.customize-keyword .btn-outline-secondary {
  background-color: #131921;
}

#form-register .password-switch i,
#form-login .password-switch i {
  z-index: 1;
}

.nav-main .left li a:hover {
  color: unset;
}

.plugin_css {
  display: flex;
  justify-content: center;
  opacity: 1;
}

.old_price {
  display: unset;
}

.item-header {
  padding-right: 0px;
}

.item-header.item-header-right {
  padding-right: 2px;
  padding-left: 0px;
  padding-bottom: 12px;
}

#ajax_load_footer {
  /* padding-top: 50px; */
}

.modal-body {
  padding-right: 16px;
}

.select-language .box .icon {
  display: none;
}

.select-language {
  width: 69px;
}

body,
html {
  font-family: "Open Sans", sans-serif !important;

}

.current-price {
  font-weight: 600 !important;
}

#cartModal {
  --bs-modal-width: 1100px;
}

.cart-new-data:nth-child(n+1),
.rfq-new-data:nth-child(n+1) {
  border-bottom: 1px dashed #999;
}

.pt30 {
  padding-top: 30px;
}

.public-list-title {
  max-width: 85%;
  text-align: center;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 10px;
}

.public-list-title .title {
  font-size: 30px;
  font-weight: 600;
  color: #274651;
  position: relative;
  display: inline-block;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: initial;
  padding-bottom: 5px;
}

.public-list-title .title p {
  overflow: hidden;
  text-overflow: ellipsis;
}

.public-list-title .title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  left: 0;
  bottom: 0;
  border-radius: 999px;
  background-color: var(--primary-color);
}

.public-list-title .tips {
  letter-spacing: 0.8px;
  font-size: 12px;
  color: #274651;
  max-height: 40px;
  overflow: hidden;
}

.public-see-more {
  display: block;
  text-align: right;
  position: relative;
  color: var(--primary-color);
  padding-right: 25px;
  line-height: 30px;
}

.public-see-more::after {
  position: absolute;
  bottom: 13px;
  right: 15px;
  content: '';
  border-width: 1px 1px 0 0;
  border-style: solid;
  padding: 1.75px;
  transform: rotate(45deg);
}

.public-see-more:hover {
  color: var(--primary-hover-color);
}

:root {
  --primary-color: #FF7E00;
  --primary-hover-color: #FFA64C;
  --default-color: #274651;
  --default-hover-color: #71919c;
  --current-price-color: #F65538;
  --original-price-color: #B5B5B5;
  --minor-font-color: #7F7F7F;
  --bg-gray: #F8F8F8;
  --light-orange: #FF7E001A;
  --red-color: #FF3503;
  --blue-color: #008EFF;
  --green-color: #179a4c;
  --orange-color: #FF6600;
  --default-font-color: #333;
}

[class^="public-star"] .iconfont {
  color: #ECECEC;
}

.public-star-1 .iconfont:nth-child(-n+1),
.public-star-2 .iconfont:nth-child(-n+2),
.public-star-3 .iconfont:nth-child(-n+3),
.public-star-4 .iconfont:nth-child(-n+4),
.public-star-5 .iconfont:nth-child(-n+5) {
  color: #FF7E00;
}

.public-paging-container {
  display: flex;
  align-items: center;
  column-gap: 10px;
  justify-content: center;
  margin-top: 40px;
}

.public-paging-container li {
    padding-right: 10px;
    width: max-content;
    min-width: 42px;
    height: 42px;
    border-radius: 99px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #707070;
    font-size: 18px;
    transition: all 0.3s;
    border: 1px solid #D7E2ED;
    user-select: none;
    padding-left: 10px;
}

.public-paging-container li .iconfont {
  font-size: 20px;
  font-weight: 600;
}

.public-paging-container li .iconfont.icon-xiangyoujiantou,
.public-paging-container li .iconfont.icon-xiangzuojiantou {
  font-size: 11px;
  font-weight: 600;
}

.public-paging-container li.item:hover,
.public-paging-container li.next:not(.disabled):hover,
.public-paging-container li.last:not(.disabled):hover {
  background-color: #eaeaea;
}

.public-paging-container li.item:hover,
.public-paging-container li.next:not(.disabled):hover,
.public-paging-container li.last:not(.disabled):hover {
  color: #274651;
}

.public-paging-container li.disabled {
  color: #AAAAAA;
  cursor: not-allowed;
}

.public-paging-container li.active {
  color: #fff;
  font-weight: 600;
  /* border-color: #13e0ea; */
  /* background-color: #13e0ea; */
  background: linear-gradient(315deg, #6772FF 0, #00F9E5 100%);
  cursor: default;
}

.public-paging-container li.active:hover {
  background-color: #232F3ECC;
}

.public-paging-container li.active:hover {
  color: #fff;
}

.public-paging-container li.omit {
  cursor: not-allowed;
}

.skiptranslate {
  /*position: unset !important;
  z-index:unset !important;*/
  top: 12px !important;
}

.VIpgJd-ZVi9od-xl07Ob-OEVmcd {
  top: 53px !important;
}

.VIpgJd-ZVi9od-vH1Gmf {
  border: 1px solid #bbb !important;
  border-radius: 3px !important;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.13) !important;
}

.nav-top .font-box {
  min-width: 150px;
  width: auto;
}

.language-cutomize-list {
  border-bottom: 1px solid #eee;
  padding-bottom: 13px;
  margin-bottom: 9px;
}

.language-customize-list li .customRadio:hover {
  color: #e47911;
  text-decoration: underline;
}

.public-header .nav-top .select-country .select-panel .language-customize-list li {
  display: flex;
  align-items: center;
  margin-top: 11px;
  position: relative;
}

/*
.language-customize-list li input[type='radio'] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}*/
/* .public-header .nav-top .select-country{
  width: 110px;
} */
#select-language {
  width: 100px;
}

/* 弹窗背景样式 */
.popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

/* 弹窗内容样式 */
.popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
}

/* 弹窗关闭按钮样式 */
.popup-close {
  font-size: 30px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

/* 弹窗关闭按钮 hover 效果 */
.popup-close:hover {
  color: #000;
}

#select-language ul li:hover,
#select-language input:hover,
#select-language .customRadio:hover {
  cursor: pointer;
}

.swal-overlay {

  z-index: 9999999999999999999999999999999999999999999999999999999;
}

/* 弹框背景遮罩 */
.email-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* 弹框内容 */
.email-modal-content {
  background-color: #fff;
  padding: 20px;
  width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

/* 标题和关闭按钮 */
.email-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.email-modal-title {
  color: #333;
}

.email-modal-close {
  font-size: 24px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
}

.email-modal-close:hover {
  color: #f56c6c;
}

/* 内容部分 */
.email-modal-body {
  margin-bottom: 20px;
}

.email-modal-body input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
}

/* 底部按钮 */
.email-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.email-modal-footer button {
  padding: 8px 16px;
  border: none;
  background-color: #409EFF;
  /* Element UI primary color */
  color: white;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.email-modal-footer button:hover {
  background-color: #66b1ff;
}

.email-modal-footer .cancel {
  background-color: #f5f7fa;
  color: #606266;
}

.email-modal-footer .cancel:hover {
  background-color: #ebedf0;
}

.public-small-scrollbar {
  overflow-y: scroll;
}

.public-small-scrollbar:hover::-webkit-scrollbar-thumb {
  background-color: #e4e4e4;
}

.public-small-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.public-small-scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
}

.public-small-scrollbar::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.customize-container {
  min-height: 500px !important;
}

#think_page_trace_open img {
  display: none;
}

.pagination .active {
  background: #ffc107;
  color: #ffffff;
}

/* 面包屑的样式 */
.public-crumbs {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 0;
}

.public-crumbs .item {
  margin-right: 10px;
  padding-right: 16px;
  position: relative;
  transition: all 0.2s;
  color: var(--minor-font-color);
}

.public-crumbs .item:not(:last-child):before {
  position: absolute;
  content: ">";
  right: 0;
  top: 50%;
  transform: translatey(-50%);
}

.public-crumbs .item:hover {
  color: var(--primary-color);
}

.public-crumbs .item:last-child {
  color: var(--default-font-color);
}

#ajax-keyword {
  /* display: none; */
}

.highlight-text {
  color: #1a1a1a;
}

.main-container,
.customize-container {
  padding-bottom: 50px;
}


.main-container {
  min-width: 100%;
  width: max-content;
}

.header_plugin,
.footer_plugin {
  width: max-content;
  min-width: 100%;
}

.sign-box .main .left {
  display: none;
}

.sign-box .main .right {
  border-left: unset !important;
}

/****rewrite pagination bof***/
.pagination ul {
  display: flex;
  align-items: center;
  column-gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.pagination ul li {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #274651;
  font-size: 16px;
  transition: all 0.3s;
}

.pagination ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination ul li .iconfont {
  font-size: 20px;
}

.pagination ul li .iconfont.icon-xiangyoujiantou,
.pagination ul li .iconfont.icon-xiangzuojiantou {
  font-size: 11px;
  font-weight: 600;
}

.pagination ul li.item:hover,
.pagination ul li.next:not(.disabled):hover,
.pagination ul li.last:not(.disabled):hover {
  background-color: #ece8e8;
}

.pagination ul li.item:hover a,
.pagination ul li.next:not(.disabled):hover a,
.pagination ul li.last:not(.disabled):hover a {
  color: #274651;
}

.pagination ul li.disabled {
  color: #AAAAAA;
  cursor: not-allowed;
}

.pagination ul li.active {
  color: #fff;
  border-color: #FF7E00;
  background-color: #FF7E00;
  cursor: not-allowed;
}

.pagination ul li.active:hover {
  background-color: #FF7E00;
}

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

.pagination ul li.omit {
  cursor: unset;
  font-weight: bold;
}

.pagination ul li a:hover {
  background-color: unset;
}

.pagination ul li.next {
  width: 46px;
}

.shop_toolbar.t_bottom {
  background-color: unset;
}

.shop_toolbar {
  border: unset;
}

.pagination {
  margin-top: -40px;
}

/****rewrite pagination eof***/
.cart-new-data .price,
.rfq-new-data .price {
  white-space: nowrap;
}

.is-login .left img {
  float: left;
  width: 35px;
  height: 35px;
  position: absolute;
  border-radius: 50%;
  object-fit: fill;
}

.shopping_cart_area .payment-method-content .checkout-cc {
  margin-top: 10px;
  display: none;
}

.shopping_cart_area .order-summary .cart-btn-card,
.shopping_cart_area .order-summary .cart-btn-google,
.shopping_cart_area .order-summary .cart-btn-apple {
  margin: 0;
  position: absolute;
  right: 10px;
  bottom: 50px;
}

.cart-btn-card,
.cart-btn-google,
.cart-btn-apple {
  width: 300px;
  line-height: 18px;
  background-color: #76BD55;
  margin: 0 auto 20px auto;
  border: 2px solid #76BD55;
  display: none;
}

.cart-btn-card:hover,
.cart-btn-google:hover,
.cart-btn-apple:hover {
  background-color: #8ab933;
  border: 2px solid #8ab933;
}

#confirmOrderModal {
  top: 80px;
  height: 90%;
}

.public-header .nav-main .dropdown-list {
  top: 38px;
  max-height: 250px;
  min-width: 190px;
  width: max-content;
  border-radius: 8px;
  display: flex;
  column-gap: 20px;
  row-gap: 15px;
  font-size: 12px;
  color: var(--default-color);
  padding: 15px 15px 10px 15px;
  flex-direction: column;
  flex-wrap: wrap;
}

.public-header .nav-main .dropdown-list .ul-box li {
  margin-bottom: 6px;
}

.public-header .nav-main .dropdown-list .ul-box li:hover {
  color: var(--default-color);
  text-decoration: underline;
}

.public-header .nav-main .dropdown-list .ul-box li.two-level-name {
  font-weight: 600;
  font-size: 13px;
}

.public-header .nav-main .dropdown-list .ul-box li a {
  padding: 0;
  white-space: nowrap;
}

#jstx-panel {
  z-index: 99999999 !important;
}

/* 头部 */
.main-header {
  background-color: var(--primary-color);
  padding: 10px 20px 15px;
}
.main-header .main-box {
  /*max-width: 1440px;*/
  width: 100%;
  margin: 0 auto;
}
.main-header .main-box .action-bar .logo-box {
  height: 54px;
}
.main-header .main-box .action-bar .search-box {
  margin: 0 90px 0 90px;
  height: 42px;
  border-radius: 20px;
}
.main-header .main-box .action-bar .search-box .public-select-box::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #DAE2E9;
}
.main-header .main-box .action-bar .search-box .public-select-box .select-list {
  width: 220px;
  z-index: 999;
}
.main-header .main-box .action-bar .search-box .input-box input {
  width: 100%;
}
.main-header .main-box .action-bar .search-box .btn-search {
  background-color: #333E48;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0 20px 20px 0;
  color: #fff;
  height: 100%;
}
.main-header .main-box .action-bar .config-box {
  column-gap: 32px;
  /*margin-left: 26px;*/
  height: 52px;
}
.main-header .main-box .action-bar .config-box .box {
  cursor: pointer;
  column-gap: 8px;
  height: 45px;
}
.main-header .main-box .action-bar .config-box .box .name {
  font-size: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.main-header .main-box .action-bar .config-box .box .name .title {
  color: #ffc388;
  font-size: 11px;
}
.main-header .main-box .action-bar .config-box .box .name .text {
  font-size: 16px;
  font-weight: 600;
}
.main-header .main-box .action-bar .config-box .img-box-user {
  width: 28px;
  height: 28px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
}
.main-header .main-box .action-bar .config-box .img-box-user #user-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.main-header .main-box .action-bar .config-box .box .iconfont {
  color: #fff;
}
.main-header .main-box .action-bar .config-box .box .icon-language,
.main-header .main-box .action-bar .config-box .box .icon-currency,
.main-header .main-box .action-bar .config-box .box .icon-profile-picture,
.main-header .main-box .action-bar .config-box .box .icon-shoppingcart {
  font-size: 26px;
}
.main-header .main-box .action-bar .config-box .box .icon-shoucang6 {
  font-size: 24px;
}
.main-header .main-box .action-bar .config-box .box .select-list {
  width: 150px;
}
.main-header .main-box .action-bar .config-box .box .select-list li {
  line-height: 35px;
}
.main-header .main-box .menu-bar {
  margin-top: 12px;
  color: #fff;
  font-weight: 600;
}
.main-header .main-box .menu-bar .list-box {
  column-gap: 40px;
}
.main-header .main-box .menu-bar .list-box .home {
  position: relative;
}
.main-header .main-box .menu-bar .list-box .home::after {
  content: "";
  position: absolute;
  right: 65px;
  top: 13%;
  bottom: 13%;
  width: 1px;
  background: #fff;
}
.main-header .main-box .menu-bar .list-box.left-list {
  font-size: 16px;
}
.main-header .top-info {
  color: #fff;
  padding-bottom: 6px;
  /*max-width: 1440px;*/
  width: 100%;
  /*overflow: hidden;*/
}
.main-header .top-info .info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  font-size: 12px;
}
.main-header .top-info .info .telphone {
  position: relative;
}
.main-header .top-info .info .telphone .iconfont {
  font-size: 12px;
}
.main-header .top-info .info .telphone .telphone-line::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 0%;
  bottom: 0%;
  width: 1px;
  background: #fff;
  opacity: 0.2;
}
.main-header .top-info .right-info {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  font-size: 12px;
}
.main-header .top-info .right-info .language-box::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: #fff;
  opacity: 0.2;
}

.main-header .top-info .right-info .iconfont {
  font-size: 12px;
}
.main-header .top-info .right-info .icon-xiangxia {
  font-size: 8px;
  margin-left: 5px;
}
.main-header .top-info .right-info .select-list {
  width: max-content;
  color: #353D42;
  font-size: 14px;
  z-index: 999;
}
.main-header.fixed-header {
  height: 120px;
  padding-top: 15px;
  position: sticky;
  top: 0;
  z-index: 99999 !important;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  animation: scrollFixedHeader 0.2s ease-in-out;
}
.main-header.fixed-header .main-box .top-info {
  display: none;
}
/* 底部 */
.main-footer {
  background-color: #11191F;
  color: #fff;
}
.main-footer .back-top {
  background-color: #F5F9FD;
  height: 80px;
  color: #666;
  font-size: 26px;
  font-weight: 600;
}
.main-footer .footer-box {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0 70px;
  border-bottom: 1px solid #353D42;
}
.main-footer .footer-box .logo-box {
  max-width: 430px;
}
.main-footer .footer-box .logo-box .img-logo {
  height: 65px;
}
.main-footer .footer-box .logo-box .social-media {
  column-gap: 37px;
}
.main-footer .footer-box .logo-box .subscribe-box .desc {
  font-size: 12px;
}
.main-footer .footer-box .logo-box .subscribe-box .email-input {
  background-color: #fff;
  border: 1px solid #ECECEC;
  height: 32px;
  border-radius: 4px;
  width: 80%;
}
.main-footer .footer-box .list-box {
  row-gap: 12px;
}
.main-footer .footer-box .list-box a{
  font-size: 14px;
}
.main-footer .footer-box .list-box .title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}
.main-footer .copyright {
  max-width: 1440px;
  margin: 0 auto;
  line-height: 30px;
  text-align: center;
}

.main-footer .copyright .poweredBySalesdeep::after{
    content: "";
    position: absolute;
    right: -23px;
    top: 3px;
    width: 2px;
    background: #5a5c60;
    height: 15px;
    opacity: 0.6;
}

.main-footer {
  background-color: #11191F;
  color: #fff;
}

.main-footer .back-top {
  background-color: #F5F9FD;
  height: 80px;
  color: #666;
  font-size: 26px;
  font-weight: 600;
  user-select: none;
}

.main-footer .footer-box {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0 70px;
  border-bottom: 1px solid #353D42;
}

.main-footer .footer-box .logo-box {
  max-width: 430px;
}

.main-footer .footer-box .logo-box .img-logo {
  height: 65px;
}

.main-footer .footer-box .logo-box .social-media {
  column-gap: 37px;
  /* border-bottom: 1px solid #ECECEC; */
}
.main-footer .footer-box .logo-box .social-media .svg-item{
  background-color: #fff;
  border-radius: 2px;
  padding: 0px 10px;
}
.main-footer .footer-box .logo-box .subscribe-box .desc {
  font-size: 12px;
}

.main-footer .footer-box .logo-box .subscribe-box .email-input {
  background-color: #fff;
  border: 1px solid #ECECEC;
  height: 32px;
  border-radius: 4px;
  width: 80%;
}

.main-footer .footer-box .list-box {
  row-gap: 12px;
}

.main-footer .footer-box .list-box .title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.main-footer .copyright {
  max-width: 1440px;
  margin: 0 auto;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
}

/* 多用户商城用到的公共样式 */
.bgfff {
  background-color: #fff;
}

.tac {
  text-align: center;
}

.fwb {
  font-weight: 600;
}

.flex {
  display: flex;
}

.fdc {
  flex-direction: column;
}

.fdr {
  flex-direction: row;
}

.fww {
  flex-wrap: wrap;
}

.aic {
  align-items: center;
}

.ai-fs {
  align-items: flex-start;
}

.jc-c {
  justify-content: center;
}

.jc-fe {
  justify-content: flex-end;
}

.jc-sb {
  justify-content: space-between;
}
.jc-sa {
   justify-content: space-around;
}

.flex-item {
  flex: 1;
}

.pt-6 {
  padding-top: 6px;
}

.pr-6 {
  padding-right: 6px;
}

.pb-6 {
  padding-bottom: 6px;
}

.pl-6 {
  padding-left: 6px;
}

.pt-8 {
  padding-top: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.pt-10 {
  padding-top: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pt-12 {
  padding-top: 12px;
}

.pr-12 {
  padding-right: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pl-12 {
  padding-left: 12px;
}

.pt-15 {
  padding-top: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.pt-16 {
  padding-top: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}


.pt-20 {
  padding-top: 20px;
}

.pr-20 {
  padding-right: 20px;
}
.pr-25 {
  padding-right: 25px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pt-24 {
  padding-top: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pl-24 {
  padding-left: 24px;
}
.pl-25{
  padding-left: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pl-30 {
  padding-left: 30px;
}

.mt-5 {
  margin-top: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.mt-6 {
  margin-top: 6px;
}

.mr-6 {
  margin-right: 6px;
}

.mb-6 {
  margin-bottom: 6px;
}

.ml-6 {
  margin-left: 6px;
}

.mt-8 {
  margin-top: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.ml-12 {
  margin-left: 12px;
}

.mt-15 {
  margin-top: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.mt-16 {
  margin-top: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.ml-25 {
  margin-left: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.public-select-box {
  position: relative;
}

.public-select-box .select-data {
  column-gap: 4px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
}

.public-select-box .select-data .iconfont {
  font-size: 10px;
}

.public-select-box .select-list {
  display: none;
  position: absolute;
  max-height: 450px;
  overflow: auto;
  background-color: #fff;
  width: 100%;
  top: 40px;
  left: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  border: 1px solid #D7E2ED;
  padding: 5px 0;
  border-radius: 6px;
  animation: animation-select-list 0.3s;
}

.public-select-box .select-list li {
  line-height: 30px;
  padding: 0 10px;
  transition: all 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  user-select: none;
}

.public-select-box .select-list li:hover {
  background-color: #f2f2f2;
}

.public-select-box .select-list li.selected {
  background-color: var(--primary-color);
  color: #fff;
}

.public-select-box.active .select-data .icon-xiangxia {
  transform: rotate(180deg);
}

.public-select-box.active .select-list {
  display: block;
}

@keyframes animation-select-list {
  0% {
    transform: translate3d(0, 30px, 0);
    opacity: 0.3;
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.public-carousel-box {
  overflow: hidden;
  position: relative;
}

.public-carousel-box .change-page {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FFFFFFCC;
  box-shadow: 0px 0px 4px 0px #00000040;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s;
}

.public-carousel-box .change-page:hover {
  opacity: 0.7;
}

.public-carousel-box .change-page .iconfont {
  font-size: 36px;
}

.public-carousel-box .change-page.prev-page {
  left: 5px;
}

.public-carousel-box .change-page.next-page {
  right: 5px;
}

.public-carousel-box .change-page.disabled {
  cursor: not-allowed;
}

.public-carousel-box .change-page.disabled:hover {
  opacity: 1;
}

.public-carousel-box .carousel {
  transition: all 0.5s ease-in-out;
}

/* 复选框样式 */
.public-check-box {
  overflow: hidden;
}

input[type="checkbox"] {
  display: none;
}

.public-check-box input[type="checkbox"]+.check-label {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  transition: all 0.2s linear;
  user-select: none;
}
.public-check-box input[type="checkbox"]+.check-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid #0000004D;
  background-color: #fff;
  transition: all 0.2s linear;
}

.public-check-box input[type="checkbox"]:checked+.check-label:after {
  content: '\ebe6';
  position: absolute;
  font-family: "iconfont";
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 12px;
}

.public-check-box input[type="checkbox"]:checked+.check-label:before {
  border-color: var(--blue-color);
  background-color: var(--blue-color);
}

.public-check-box input[type="checkbox"]+.check-label:hover {
  color: var(--blue-color);
}

.public-check-box input[type="checkbox"]+.check-label:hover::before {
  border-color: var(--blue-color);
}

/* 开关样式 */
.public-switch-box input[type="checkbox"]+.switch-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 26px;
  width: 42px;
  border-radius: 15px;
  cursor: pointer;
  background-color: #F4F4F4;
  border: 1px solid #00000014;
  transition: all 0.1s linear;
}

.public-switch-box input[type="checkbox"]+.switch-label i {
  position: absolute;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: 0px 0px 2px 0px #0000002E;
  background-color: #fff;
  transition: 0.1s linear;
}

.public-switch-box input[type="checkbox"]:checked+.switch-label {
  border-color: var(--blue-color);
  background-color: var(--blue-color);
}

.public-switch-box input[type="checkbox"]:checked+.switch-label i {
  left: 100%;
  margin-left: -24px;
  background-color: #fff;
}

.public-expand-contract .header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.public-expand-contract .header .iconfont {
  font-size: 10px;
}

.public-expand-contract .header.expanded .iconfont {
  transform: rotate(180deg);
}

/* 定义旋转动画 */
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotate360-animation {
  animation: rotate360 0.5s ease-in-out;
  display: inline-block;
}

/* 滚动固定头部动画 */
@keyframes scrollFixedHeader {
  0% {
    top: -60px;
  }

  100% {
    top: 0;
  }
}

/* 步进器样式 */
.public-num-box {
  border-radius: 8px;
  border: 1px solid #CCCCCCED;
  display: flex;
  width: 130px;
  height: 42px;
}

.public-num-box .box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.public-num-box .box.public-jian-box,
.public-num-box .box.public-jia-box {
  font-size: 16px;
  cursor: pointer;
}

.public-num-box .box input {
  width: 100%;
  height: 100%;
  text-align: center;
  border-left: 1px solid #CCCCCCED;
  border-right: 1px solid #CCCCCCED;
}

.public-num-box .box.disabled {
  color: #CCCCCCED;
}

.public-model-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 99999;
}

.public-model-dialog .model-content {
  background-color: #fff;
  min-width: 350px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
}

.public-model-dialog .model-content .close-box {
  position: absolute;
  right: 20px;
  top: 20px;
}

.public-model-dialog .model-content .close-box .iconfont {
  font-size: 20px;
  cursor: pointer;
}
/***********add bof************/
.subscribe-box .arrow-box {
  position: absolute;
  right: 1px;
  top: 1px; 
  border-radius: 25px;
  background: #ff7e00;
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  padding: 7px 20px;
}
.subscribe-box .email-input-group {
  position: relative;
  width: 100%;
}
.subscribe-box .arrow-box .arrow {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #ddd;
  transition: all .3s;
}

.main-footer .footer-box .logo-box .subscribe-box .email-input{
  height: 35px;
  width: 100%;
  border-radius: 25px;
}
.subscribe-box .arrow-box button{
  float: right;
  background-color: #76BD55;
  border: 1px solid #76BD55;
  text-align: center;
  min-width: 50px;
  height: 33px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  color: #fff;
  padding: 0px 10px;
}
.subscribe-box .arrow-box button:hover{
  box-shadow: 0 2px 5px 0 rgba(213, 217, 217, 0.5);
}
.cart_add_btn_qj{
  cursor: pointer;
}
.rfq_add_btn_qj_msg{
  display: block;
  /*background-color: rgb(39, 70, 81);*/
  border-color: #008EFF;
  color: #008EFF;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  width: auto!important;
  padding-left: 15px;
  padding-right: 15px;
}
.rfq_add_btn_qj{
  display: block;
  /*background-color: rgb(39, 70, 81);*/
  /*border-color: #008EFF!important;*/
  /*color: #008EFF!important;*/
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  width: auto!important;
  padding-left: 15px;
  padding-right: 15px;
}
.rfq_add_btn_qj_msg{
  border-radius: 21px;
  line-height: 42px;
  padding: 0 20px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  background-color: #FF7E00;
}
.msg_content{
  margin-top: 20px;
  padding: 15px;
  width: 100%;
  height: 200px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.send-msg-btn,.send-msg-btn:hover,send-msg-btn:active{
  background-color: #FF7E00;
  border: 1px solid #FF7E00;
}
.msg_user_img{
  max-width: 60px;
  max-height: 60px;
  padding-left: 10px;
  padding-right: 10px;
}
.rfq_add_btn_qj_msg{
  background-color: #ffffff;
  line-height: 36px;
}
.homepage-container .sell-surplus .public-carousel-box .carousel .item .right .buy-box button{
  height: 36px!important;
}
/* 分类弹窗 */
.categories-popup {
  position: fixed;
  height: 100%;
  overflow-y: auto;
  width: 390px;
  max-height: calc(100% - 136px);
  box-sizing: border-box;
  top: 142px;
  left: 0;
  background-color: #fff;
  border-right: 1px solid #cccccc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 4px;
  padding: 24px 15px 10px 0;
}
/* 滚动切换的类名 */
.categories-popup-roll {
  position: fixed;
  height: 100%;
  overflow-y: auto;
  width: 390px;
  max-height: calc(100% - 120px);
  box-sizing: border-box;
  top: 120px;
  left: 0;
  background-color: #fff;
  border-right: 1px solid #cccccc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 4px;
  padding: 24px 15px 10px 0;
}
.categories-popup ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.categories-popup ::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #d5d9d9;
  cursor: pointer;
}
.categories-popup .sub-nav__title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 15px 48px;
  background-color: #fff;
}
.categories-popup .sub-nav__title .browse-all {
  text-decoration-line: underline;
  color: #11191F;
  font-size: 12px;
}
.categories-popup .sub-nav__title .title {
  color: #333;
  font-size: 18px;
  font-weight: 700;
}
.categories-popup .animated-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.categories-popup .animated-list li {
  position: relative;
  overflow: hidden;
  padding: 0 12px 0 48px;
  height: 55px;
  cursor: pointer;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.categories-popup .animated-list li a {
  position: relative;
  display: block;
  color: #333;
  text-decoration: none;
  transition: all 0.5s ease;
  z-index: 2;
  width: calc(100% - 30px);
  /* 减去图标的宽度 */
}
.categories-popup .animated-list li a .li-text {
  max-width: 210px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.categories-popup .animated-list li a .img-box {
  width: 55px;
  height: 45px;
  margin-right: 15px;
}
.categories-popup .animated-list li a .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
 .submenu-popup {
  position: fixed;
  left: 390px;
  top: 142px;
  width: max-content;
  min-width: 350px;
  height: calc(100% - 136px);
  background-color: #fff;
  border-right: 1px solid #cccccc;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  border-radius: 4px;
  padding: 28px 32px;
  overflow-y: auto;
  display: none;
}
.submenu-popup-roll {
  position: fixed;
  left: 390px;
  top: 120px;
  width: max-content;
  min-width: 350px;
  height: calc(100% - 120px);
  background-color: #fff;
  border-right: 1px solid #cccccc;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  border-radius: 4px;
  padding: 28px 32px;
  overflow-y: auto;
  display: none;
}
 .submenu-popup .submenu-popup-title {
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.submenu-popup .submenu-popup-title .title {
  color: #333;
  font-size: 18px;
  font-weight: 700;
}
 .submenu-popup .submenu-popup-title .browse-all {
  font-size: 12px;
  text-decoration: underline;
  margin-left: 10px;
  color: #000;
  cursor: pointer;
}
 .submenu-popup .list-grid {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 32px 24px;
  padding-right: 50px;
}
 .submenu-popup .list-grid .list-content .subcategories-name p {
  margin-bottom: 5px;
  font-size: 13px;
}
 .submenu-popup .list-grid .list-content .title {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}
 .submenu-popup .list-grid .list-content .viewAll {
  font-size: 13px;
  color: #0055b8;
  text-decoration: underline;
}
.categories-popup .animated-list .iconfont {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 12px;
}
.categories-popup .animated-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #e6eef8;
  transition: all 0.6s ease;
  z-index: 1;
}
.categories-popup .animated-list li:hover::before {
  left: 0;
}
.categories-popup .animated-list li:hover a {
  transform: translateX(20px);
}
.categories-popup .animated-list li:hover a .li-text {
  color: #0055b8;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #cccccc;
  cursor: pointer;
}
/* #user-photo{
  width: 26px;
  border-radius: 3px;
} */
.get-quote{
  display: none;
}
.swal-title,.swal-text{
  color:#333333!important;
  font-size: 24px!important;
  padding: 0px 16px 0px 16px!important;
}
.swal-button{
  width: 180px !important;
  background-color: #008eff!important;
  font-size: 16px!important;
  padding: 8px 8px !important;
}
.swal-footer{
  text-align: center!important;
  padding-bottom: 26px!important;
}
.swal-button--cancel{
  color: #333!important;
  background-color: #efefef!important;
}
.swal-icon--success__line{
  background-color: #43a50c!important;
}
.swal-overlay--show-modal .swal-modal{
  width: 420px!important;
}
/***********add eof************/

/* 询盘弹窗新版 */
.msg-modal-title {
  font-size: 18px;
  font-weight: 700;
}
.msg-modal-userInfo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
   padding-bottom: 10px;      
  border-bottom: 1px dashed #ccc;  
}
.msg-modal-userInfo .img-box {
    width: 22px;  
    height: 22px;     
    border-radius: 50%;
    border: 1px solid #ccc;
  overflow: hidden;
}
.msg-modal-info-text {
  font-weight: 700;
}
.msg-modal-product-info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 10px;      
  border-bottom: 1px dashed #ccc;  
}
.msg-modal-product-info .product-img {
  width: 74px;
  height: 67px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ccc;
}
.msg-modal-product-info .product-name-model {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.msg-modal-product-info .product-name-model .msg-quantity{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.msg-modal-product-info .product-name-model .msg-quantity input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.msg-modal-product-info .product-name-model .msg-model-info-text{
  font-size: 18px;
  font-weight: 700;
}
.msg-modal-textarea-sumbit .model-msg-content {
    margin-top: 10px;
    padding: 15px;
    width: 100%;
    min-width: 100;
    min-height: 95px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.msg-modal-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 16px;
  padding-bottom: 15px;
}
.not-login .not-login-tips {
  border-radius: 5px;
  background-color: #fef8e6;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  padding: 5px 0px 5px 5px;
  margin-top: 10px;
}
.not-login .not-login-tips i{
  font-size: 16 px;
  color: #ffb400;
}
.msg-login-div {
  background-color: #f3f4f6;
  padding: 10px 10px 20px 10px;
  border-radius: 5px;
  margin-top: 10px;
}
.msg-login-div .msg-login-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px;
  margin-bottom: 10px;
}
.msg-login-div .msg-login-info .msg-login-item input {
  width: 100%;
  border: 1px solid #dae4ee;
  padding: 5px 5px 5px 5px;
  border-radius: 5px;
  background-color: #fff;
  margin-top: 5px;
}
.is-login-fullLine {
   grid-column: 1 / -1;
}
.forget-password-dailog {
  position: fixed;
  top: 50%;       
  left: 50%;   
  transform: translate(-50%, -50%);
  border-radius: 5px;
  width: 400px;
  background-color: #ffffff;
  padding: 15px 10px 10px 15px;
  z-index: 10000;
}
.forget-password-dailog input{
   width: 100%;
   border: 1px solid #dae4ee;
   padding: 5px 5px 5px 5px;
   border-radius: 5px;
   background-color: #fff;
   margin-top: 5px;
   margin-bottom: 18px;
}
.forget-password-dailog .dailog-title{
   font-size: 18px;
   font-weight: 700;
   margin-bottom: 20px;
}
.forget-password-dailog .input-title{
   font-weight: 700;
}
.forget-password-dailog .send-email-code{
    padding: 6px 10px 6px 10px;
    background-color: #1fa738;
    color: #fff;
    border-radius: 5px;
    margin-left: 10px;
    margin-bottom: 13px;
}
.forget-password-dailog .btn-forget-password {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
.forget-password-dailog .btn-forget-password .cancel{
  padding: 5px 15px 5px 15px;
  background-color: #fff;
  color: #ff7e00;
  border: 1px solid #ff7e00;
  border-radius: 15px;
  cursor: pointer;
}
.forget-password-dailog .btn-forget-password .save{
  padding: 5px 15px 5px 15px;
  background-color: #ff7e00;
  color: #fff;
  border-radius: 15px;
  border: 1px solid #ff7e00;
  cursor: pointer;
}
.forget-password-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.textarea-num-tips {
  position: absolute;
  bottom: 15px;
  right: 10px;
  color: #999;
  font-size: 13px;
  background: white;  /* 避免被文本覆盖 */
  padding: 0 5px;
}
.select-list-language-mask {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 887;
}
.custom-select-country {
  position: relative;
}
.custom-select-country .country-select-selected {
    width: 100%;
    border: 1px solid #dae4ee;
    padding: 5px 5px 5px 5px;
    border-radius: 5px;
    background-color: #fff;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #757575;
    position: relative;
}
.custom-select-country .country-select-selected i{
   font-size: 12px;
}
.custom-select-country .country-select-items {
  position: absolute;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 5px;
  padding: 5px;
  min-width: 200px;
  max-height: 500px;
  overflow: hidden;
  overflow-y: auto;
  bottom: 100%;
  top: auto !important;
}
.custom-select-country .country-select-items div{
  padding: 5px;
  cursor: pointer;
}
.custom-select-country .country-select-items div:hover{
  background-color: #f3f4f6;
}
/* 注册页面*/
.register_submit input[type="checkbox"] {
  display: inline-block;
}
/* 头部搜索*/
.search-box{
  flex: 1;
  display: flex;
  background-color: #fff;
  position: relative;
}
.search-box .input-select-div {
  display: none;
  position: absolute;
  width: 100%;
  border: none;
  top: 44px;
  background-color: #fff;
  box-shadow: 0 2px 7px rgba(15, 17, 17, 0.30);
  border-radius: 18px;
  padding: 8px 0;
  z-index: 777;
  padding-top: 15px;
  padding-bottom: 15px;
}
.search-box .input-select {
  max-height: 450px;
  overflow: auto;

}
.search-box .input-select li {
      padding: 5px 0 5px 25px;
    line-height: 25px;
    font-size: 16px;
    cursor: pointer;
    color: #888baf;
}
.search-box .input-select li:hover {
  background-color: #f7f8fc;
  /* color: #fff; */
}
.no-data-content .title{
    font-weight: 700;
}
.no-data-content .item{
    padding-left: 25px;
    font-size: 16px;
    
}
.highlight {
    color: #1a1a1a;
    font-weight: 600;
}
/* 头部导航栏弹窗样式 */
.public-select-heard-box {
  position: relative;
}
  .icon-userinfo {
    width: 15px;
    height: 15px;
    fill: currentColor;
    overflow: hidden;
  }
.public-select-heard-box.active .select-data {
  padding-bottom: 5px;
  cursor: pointer;
}
.public-select-heard-box.active .select-data .icon-xiangxia {
  transform: rotate(180deg);
}

.public-select-heard-box.active .select-heard-list {
  display: block;
}
.public-select-heard-box .select-language-list {
    display: none;
    position: absolute;
    max-height: 450px;
    background-color: #fff;
    width: max-content;
    top: 21px;
    left: -70px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    border: 1px solid #D7E2ED;
    padding: 10px 16px 10px 16px;
    border-radius: 6px;
    color: #000;
}
.public-select-heard-box .select-currency-list {
    display: none;
    position: absolute;
    max-height: 450px;
    background-color: #fff;
    width: max-content;
    top: 21px;
    left: -145px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    border: 1px solid #D7E2ED;
    padding: 10px 16px 10px 16px;
    border-radius: 6px;
    color: #000;
}
.public-select-heard-box .select-userInfo-list {
    display: none;
    position: absolute;
    /*max-height: 450px;*/
    background-color: #fff;
    width: 245px;
    top: 42px;
    left: -85px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    border: 1px solid #D7E2ED;
    padding: 10px 16px 10px 16px;
    border-radius: 6px;
    color: #000;
}
.public-select-heard-box .select-favorite-list {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 345px;
    top: 42px;
    left: -176px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    border: 1px solid #D7E2ED;
    padding: 10px 16px 10px 16px;
    border-radius: 6px;
    color: #000;
}
.public-select-heard-box.active .select-heard-list {
    display: block;
}
.public-select-heard-box .select-userInfo-list:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 44%;
    width: 0;
    height: 0;
    border-width: 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent #fff; 
    z-index: 1; 
}
.public-select-heard-box .select-language-list:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border-width: 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent #fff; 
    z-index: 1; 
}
.public-select-heard-box .select-favorite-list:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: var(--triangle-left, 56%); 
    width: 0;
    height: 0;
    border-width: 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent #fff; 
    z-index: 1; 
}
.public-select-heard-box .select-currency-list:before {
   content: '';
    position: absolute;
    bottom: 100%;
    left: 75%;
    width: 0;
    height: 0;
    border-width: 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent #fff; 
    z-index: 1; 
}
.select-heard-list li .tick-icon {
    display: inline-block;
    margin-left: 8px;
    color: #19bfac;
    font-weight: 700;
}
.public-select-heard-box .select-heard-list .Language-hearder {
   border-bottom: 1px dashed #ccc;
   padding: 0px 0px 10px 0px;
}
.public-select-heard-box .select-heard-list .Language-hearder .Language-title{
   font-size: 16px;
   font-weight: 700;
}
.public-select-heard-box .select-heard-list li{
   height: 30px;
   padding: 5px 0px 5px 0px;
   cursor: pointer;
}
.public-select-heard-box .select-heard-list li:hover span{
    color: #19bfac;
    text-decoration: underline;
}
.public-mask-heard {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.select-userInfo-list .sign-btn {
  background-color: #ff7e00;
  border-radius: 25px;
  color: #fff;
  padding: 5px 30px 5px 30px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  cursor: pointer;
}
.select-userInfo-list .text{
  text-align: center;
  font-size: 12px;
  margin-top: 10px;
}
.select-userInfo-list .signIn-info{
    font-size: 12px;
    color: #888888;
     padding-bottom: 15px;
    border-bottom: 1px dashed #ccc;
}
.select-userInfo-list .signIn-info .blue-text{
    color: #0d79de;
    text-decoration: underline;
    cursor: pointer;
}
.select-userInfo-list .list-info {
   color: #555555;
   font-size: 14px;
   margin-top: 10px;
}
.select-userInfo-list .list-info div{
  cursor: pointer;
  padding: 5px 5px 5px 0px;

}
.select-userInfo-list .list-info div a:hover {
  font-weight: 600 !important;
}
.select-userInfo-list .list-info div i{
 font-size: 14px;
 margin-right: 5px;
}
.select-userInfo-list .icon-div span{
    padding: 10px 21px 10px 21px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    cursor: pointer;
}

.select-userInfo-list .icon-div span .img-card{
       width: 20px;
    height: 20px;
    overflow: hidden;
}
.select-userInfo-list .user-info-peronsen{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  padding-bottom: 15px;
  padding-top: 10px;
  border-bottom: 1px dashed #ccc;
}
.select-userInfo-list .user-info-peronsen .title{
 font-size: 16px;
 font-weight: 600;
}
.select-userInfo-list .user-info-peronsen .img-box{
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: #fae268;
  overflow: hidden;
  object-fit: cover;
  display: block;
}
.select-userInfo-list .login-out{
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px dashed #ccc;
  margin-top: 10px;
} 
.select-favorite-list .favorte-title {
  font-size: 16px;
  font-weight: 600;
  padding-top: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.select-favorite-list .favorite-list .img-box{
  width: 55px;
  height: 50px;
  border: 1px solid #ccc;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #fff;
}
.select-favorite-list .name {
  font-weight: 600;
  width: 243px;
  white-space: nowrap;      
  text-overflow: ellipsis;  
  overflow: hidden;
  margin-bottom: 10px;
}
.select-favorite-list .name:hover {
  text-decoration: underline;
}
.select-favorite-list .name span{
  font-size: 13px;
  color: #555555;
}
.select-favorite-list .favorite-list-item{
  margin-bottom: 15px;
}
.select-favorite-list .model-name{
  width: 160px;
  white-space: nowrap;      
  text-overflow: ellipsis;  
  overflow: hidden;
}
.select-favorite-list .cart-btn-go{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  box-shadow: 0 -4px 6px -2px rgba(0, 0, 0, 0.1);
  padding: 5px 20px 5px 20px;
}
.select-favorite-list .btn{
 width: 100%;
 background-color: #ff7e00;
 border-radius: 25px;
 color: #fff;
 /* text-align: center; */
 /* margin-top: 5px; */
}
.public-action-bar {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.login-show{
  display: block;
}
.login-hide{
  display: none;
}
.login-show-flex{
  display: flex;
}
/**头部全屏**/
.main-header .main-box{
  max-width: unset!important;
  width: 100%;
}

/**个人中心左边**/
.f555 {
  color: #555555;
}
.f333 {
  color: #333333;
}
/* Sidebar */
.sidebar {
  /*width: 250px;*/
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 20px 0;
  /* border-right: 1px solid #e0e0e0; */
}

.sidebar .userInfo {
  width: 100%;
  padding: 15px 0;
  border-radius: 4px;
  box-shadow: 0px 0px 4px 0px #00000026;
}

.sidebar .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
}
.sidebar nav {
  width: 100%;
  border-top: 1px solid #0000001A;
  border-bottom: 1px solid #0000001A;
}

.sidebar nav ul {
  list-style: none;
  width: 100%;
}

.sidebar nav ul li {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #333333;
  border-bottom: 1px dashed #0000001A
}
.sidebar nav ul li a{
  padding: 12px 15px;
  width: 100%;
}
.sidebar nav ul li:last-child {
  border: none;
}

.sidebar nav ul li.active,
.sidebar nav ul li:hover {
  background: #F5F9FB;
  font-weight: 700;
}

.sidebar nav ul li i {
  margin-right: 10px;
}

.sidebar .logout a {
  width: 80%;
  margin-top: 60px;
  padding: 10px;
  border-radius: 4px;
  border: none;
  background: #F2F5F9;
  cursor: pointer;
  text-align: center;
}

/* Newsletter & Banner */
.sidebar .newsletter {
  background: radial-gradient(138.57% 138.57% at 50% 100%,#F2F9FF 10%,#D9EDFB 40%);
  color: #083D70;
  padding: 30px;
  border-radius: 8px;
}

.sidebar .newsletter input {
  width: 100%;
  padding: 8px;
  margin-top: 50px;
  border: none;
  border-radius: 4px;
  background-color: #fff;

}

.sidebar .newsletter button {
  width: 100%;
  padding: 8px 12px;
  margin-top: 15px;
  border: none;
  border-radius: 4px;
  background: #ff9800;
  color: #fff;
  cursor: pointer;
}
.sidebar .subscribe-bottom {
  width: 100%;
  padding: 8px 12px;
  margin-top: 15px;
  margin-bottom: 30px;
  border: none;
  border-radius: 4px;
  background: #ff9800;
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
}

.sidebar .banner {
  background: #aaa;
  width: 100%;
  height: 300px;
  border-radius: 4px;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.2em;
}
.subscribe-pop-up {
  position: absolute;
  top: -110px;
  right: 50px;
  background-color: #fff;
  border-radius: 5px;
  z-index: 777;
  padding: 15px;
  color: black;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.subscribe-pop-up::after{
  content: '';
  position: absolute;
  bottom: -8px;
  left:  60%;
  width: 0;
  height: 0;
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: #fff transparent transparent;
  z-index: 1;
}
.subscribe-pop-up .subscribe-popup-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 13px;
  font-size: 14px;
}
.subscribe-pop-up .footer-btn-box{
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 13px;
  justify-content: flex-end;
  font-weight: 600;
}
.subscribe-pop-up .footer-btn-box .cancel{
  border: 1px solid #3370ff;
  color: #3370ff;
  border-radius: 5px;
  padding: 5px 12px;
  cursor: pointer;
}
.subscribe-pop-up .footer-btn-box .save{
  border: 1px solid #3370ff;
  color: #fff;
  background-color: #3370ff;
  border-radius:5px;
  padding: 5px 12px;
  cursor: pointer;
}
.subscribe-pop-up {
  position: absolute;
  top: -110px;
  right: 50px;
  background-color: #fff;
  border-radius: 5px;
  z-index: 777;
  padding: 15px;
  color: black;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.subscribe-pop-up::after{
  content: '';
  position: absolute;
  bottom: -8px;
  left:  60%;
  width: 0;
  height: 0;
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: #fff transparent transparent;
  z-index: 1;
}
.footer-subscribe-pop-up {
  position: absolute;
  top: -210px;
  right: 30px;
  background-color: #fff;
  border-radius: 5px;
  z-index: 777;
  padding: 15px;
  color: black;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.footer-subscribe-pop-up::after{
  content: '';
  position: absolute;
  bottom: -8px;
  left:  60%;
  width: 0;
  height: 0;
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: #fff transparent transparent;
  z-index: 1;
}
.subscribe-popup-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 13px;
  font-size: 14px;
}
.subscribe-pop-up .footer-btn-box{
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 13px;
  justify-content: flex-end;
  font-weight: 600;
}
.subscribe-pop-up .footer-btn-box .cancel{
  border: 1px solid #3370ff;
  color: #3370ff;
  border-radius: 5px;
  padding: 5px 12px;
  cursor: pointer;
}
.subscribe-pop-up .footer-btn-box .save{
  border: 1px solid #3370ff;
  color: #fff;
  background-color: #3370ff;
  border-radius:5px;
  padding: 5px 12px;
  cursor: pointer;
}
.font-bold {
  font-weight: bold !important;
}
.copyright a{
  margin-left:40px;
}
/*v-loading 样式*/
.loading-overlay-tow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 0;
  background: rgba(0, 0, 0, 0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.spinner-tow {
  width: 50px;
  height: 50px;
  border: 5px solid #b9b9b9bf;
  border-top: 5px solid white;
  border-radius: 50%;
  animation: spin-tow 1s linear infinite;
}
@keyframes spin-tow {
  to {
    transform: rotate(360deg);
  }
}