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

body,
html {
  font-size: 14px;
  line-height: 20px;
  color: var(--default-color);
  font-family: "Amazon Ember", Arial, sans-serif;
}

ul li {
  list-style: none;
}

p {
  word-break: break-word;
}

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

.public-select-box {
  position: relative;
  font-size: 13px;
}

.public-select-box .select-data {
  position: relative;
  min-height: 29px;
  background-color: #f0f2f2;
  border-radius: 8px;
  border: 1px solid #d5d9d9;
  cursor: pointer;
  padding: 0 10px 0 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.public-select-box .select-data:hover {
  background-color: #e3e6e6;
}

.public-select-box .select-data::after {
  content: '';
  position: absolute;
  right: 8px;
  transition: all 0.2s;
  border: 4px solid transparent;
  border-bottom-width: 0;
  border-top: 4px solid #666;
}

.public-select-box .select-list {
  display: none;
  position: absolute;
  width: calc(100% + 6px);
  max-height: 450px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(15, 17, 17, 0.15);
  border: 1px solid #bbbfbf;
  overflow: auto;
  border-radius: 8px;
  padding: 8px 0;
  z-index: 7;
}

.public-select-box .select-list li {
  line-height: 25px;
  cursor: pointer;
  padding: 2px 12px 1px 13px;
  border: 1px solid transparent;
}

.public-select-box .select-list li:hover {
  color: #c45500;
  background-color: #f0f2f2;
  border-color: #d5d9d9;
}

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

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

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

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

::-webkit-scrollbar-thumb {
  background-color: #d5d9d9;
  /* 滚动条滑块颜色 */
  border-radius: 10px;
  /* 滑块圆角 */
}

.public-header {
  width: 100%;
  min-width: 1440px;
  position: relative;
  z-index: 99999999;
  color: #fff;
}

.public-header .nav-top {
  background-color: #131921;
  height: 60px;
  width: 100%;
  padding: 5px 11px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.public-header .nav-top .logo-box {
  margin-left: 4px;
  height: 50px;
  width: 113px;
  cursor: pointer;
  margin-right: 10px;
  border: 1px solid transparent;
  /*background-image: url(../image/nav-sprite.png);*/
  background-position: 0px -40px;
  display: flex;
  align-items: center;
}

.public-header .nav-top .logo-box:hover {
  /*border-color: #fff;
  border-radius: 2px;*/
}

.public-header .nav-top .pos-box {
  display: flex;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid transparent;
}

.public-header .nav-top .pos-box .icon {
  width: 15px;
  height: 18px;
  margin-right: 4px;
  background-image: url(../image/nav-sprite.png);
  background-position: -71px -379px;
}

.public-header .nav-top .pos-box .right {
  display: flex;
  flex-direction: column;
  line-height: 17px;
}

.public-header .nav-top .pos-box .right span:first-child {
  font-size: 12px;
}

.public-header .nav-top .pos-box .right span:last-child {
  font-weight: bold;
}

.public-header .nav-top .search-box {
  margin: 0px 14px;
  height: 40px;
  flex: 1;
  display: flex;
  border-radius: 4px;
}

.public-header .nav-top .search-box:focus-within {
  box-shadow: 0 0 0 2px #f90, 0 0 0 3px rgba(255, 153, 0, 0.5);
}

.public-header .nav-top .search-box .search-select .select-data {
  padding: 0 23px 0 15px;
  height: 100%;
  font-size: 12px;
  color: #555;
  border-right: 1px solid #cdcdcd;
  border-radius: 4px 0 0 4px;
  background-color: #e6e6e6;
}

.public-header .nav-top .search-box .search-select .select-data:hover {
  background-color: #d4d4d4;
}

.public-header .nav-top .search-box .search-select .select-data::after {
  content: '';
  position: absolute;
  right: 8px;
  transition: all 0.2s;
  border: 4px solid transparent;
  border-bottom-width: 0;
  border-top: 4px solid #666;
}

.public-header .nav-top .search-box .search-select .select-list {
  width: 220px;
  left: 0;
  top: 42px;
  border-color: #bbb;
}

.public-header .nav-top .search-box .search-select .select-list li {
  padding: 0 0 0 10px;
  color: #0f1111;
}

.public-header .nav-top .search-box .search-select .select-list li:hover {
  background-color: #05a;
  color: #fff;
}

.public-header .nav-top .search-box .input-main {
  flex: 1;
  display: flex;
  background-color: #fff;
  position: relative
}

.public-header .nav-top .search-box .input-main .input-select {
  position: absolute;
  width: 100%;
  top: 42px;
  max-height: 450px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(15, 17, 17, 0.15);
  border: 1px solid #bbbfbf;
  overflow: auto;
  border-radius: 8px;
  padding: 8px 0;
  z-index: 7;
}

.public-header .nav-top .search-box .input-main .input-select li {
  padding: 0 0 0 10px;
  line-height: 25px;
  cursor: pointer;
  color: #0f1111;
}

.public-header .nav-top .search-box .input-main .input-select li:hover {
  background-color: #05a;
  color: #fff;
}

.public-header .nav-top .search-box .search-input {
  outline: none;
  padding: 0 8px;
  border: none;
  flex: 1;
  font-size: 15px;
  color: #111;
}

.public-header .nav-top .search-box .search-button {
  background-color: #febd69;
  width: 45px;
  border-radius: 0 4px 4px 0;
  background-image: url(../image/nav-sprite.png);
  background-position: 1px -280px;
  cursor: pointer;
}

.public-header .nav-top .search-box .search-button:hover {
  background-color: #f3a847;
}

.public-header .nav-top .select-language {
  position: relative;
}

.public-header .nav-top .select-language:hover .box::after {
  transform: rotate(180deg);
}

.public-header .nav-top .select-language .icon {
  width: 24px;
  height: 18px;
  background-image: url(../image/country-sprite.png);
  background-position: 0 -130px;
}

.public-header .nav-top .select-language .box {
  height: 48px;
  padding: 0 19px 0 9px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
}

.public-header .nav-top .select-language .box:hover {
  border-color: #fff;
  border-radius: 2px;
}

.public-header .nav-top .select-language .box::after {
  content: '';
  position: absolute;
  right: 9px;
  bottom: 18px;
  transition: all 0.2s;
  border: 5px solid transparent;
  border-bottom-width: 0;
  border-top: 5px solid #606060;
}

.public-header .nav-top .select-language .box .language {
  font-weight: bold;
  margin-right: 5px;
  color: #fff;
  margin-left: 5px;
}

.public-header .nav-top .select-language .select-panel {
  width: 240px;
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: #444;
  display: flex;
  flex-direction: column;
}

.public-header .nav-top .select-language .select-panel::before,
.public-header .nav-top .select-language .select-panel::after {
  left: 50%;
  transform: translateX(-50%);
}

.public-header .nav-top .select-language .select-panel a.more {
  color: #007185;
  font-size: 11px;
  margin-left: 5px;
}

.public-header .nav-top .select-language .select-panel a.more:hover {
  color: #c7511f;
}

.public-header .nav-top .select-language .select-panel .flex {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  padding-bottom: 13px;
  border-bottom: 1px solid #eee;
  margin-bottom: 9px;
}

.public-header .nav-top .select-language .select-panel .flex a {
  text-decoration: none;
}

.public-header .nav-top .select-language .select-panel .flex a:hover {
  text-decoration: underline;
}

.public-header .nav-top .select-language .select-panel .url {
  display: flex;
}

.public-header .nav-top .select-language .select-panel .url .icon {
  width: 17px;
  height: 13px;
  margin-right: 7px;
  margin-top: 4px;
}

.public-header .nav-top .select-language .select-panel .bottom {
  margin-top: 17px;
  color: #0066C0;
  cursor: pointer;
  text-align: center;
  display: block;
  text-decoration: none;
}

.public-header .nav-top .select-language .select-panel .bottom:hover {
  text-decoration-color: #c7511f;
  text-decoration: underline;
}

.public-header .nav-top .select-language .select-panel .language-list {
  border-bottom: 1px solid #eee;
  padding-bottom: 13px;
  margin-bottom: 9px;
}

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

.public-header .nav-top .select-language .select-panel .language-list li:first-child {
  padding-bottom: 13px;
}

.public-header .nav-top .select-language .select-panel .language-list li:first-child::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 26px;
  right: 0;
  height: 1px;
  background-color: #eee;
}

.public-header .nav-top .select-language .select-panel .language-list li .customRadio {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.public-header .nav-top .select-language .select-panel .language-list li .customRadio::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #aaa;
  top: 0;
  left: 0;
}

.public-header .nav-top .select-language .select-panel .language-list li .customRadio:hover {
  color: #e47911;
  text-decoration: underline;
}

.public-header .nav-top .select-language .select-panel .language-list li input[type='radio'] {
  /* 用于覆盖默认的外观 */
  appearance: none;
  /* Safari and Chrome */
  -webkit-appearance: none;
  /* Firefox */
  -moz-appearance: none;
}

.public-header .nav-top .select-language .select-panel .language-list li input[type='radio']:checked::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #f08804;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 6px;
}

.public-header .nav-top .select-country {
  position: relative;
  min-width: 69px;
}

.public-header .nav-top .select-country:hover .box::after {
  transform: rotate(180deg);
}

.public-header .nav-top .select-country .icon {
  width: 24px;
  height: 18px;
  background-image: url(../image/country-sprite.png);
  background-position: 0 -130px;
}

.public-header .nav-top .select-country .box {
  height: 48px;
  padding: 0 19px 0 9px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
}

.public-header .nav-top .select-country .box:hover {
  border-color: #fff;
  border-radius: 2px;
}

.public-header .nav-top .select-country .box::after {
  content: '';
  position: absolute;
  right: 9px;
  transition: all 0.2s;
  border: 5px solid transparent;
  border-bottom-width: 0;
  border-top: 5px solid #606060;
}

.public-header .nav-top .select-country .box .language {
  font-weight: bold;
  margin-right: 5px;
  margin-left: 5px;
}

.public-header .nav-top .select-country .select-panel {
  width: 240px;
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: #444;
  display: flex;
  flex-direction: column;
}

.public-header .nav-top .select-country .select-panel::before,
.public-header .nav-top .select-country .select-panel::after {
  left: 50%;
  transform: translateX(-50%);
}

.public-header .nav-top .select-country .select-panel p {
  margin-bottom: 0;
}

.public-header .nav-top .select-country .select-panel a.more {
  color: #007185;
  font-size: 11px;
  margin-left: 5px;
}

.public-header .nav-top .select-country .select-panel a.more:hover {
  color: #c7511f;
}

.public-header .nav-top .select-country .select-panel .flex {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  padding-bottom: 13px;
  border-bottom: 1px solid #eee;
  margin-bottom: 9px;
}

.public-header .nav-top .select-country .select-panel .flex a {
  text-decoration: none;
}

.public-header .nav-top .select-country .select-panel .flex a:hover {
  text-decoration: underline;
}

.public-header .nav-top .select-country .select-panel .url {
  display: flex;
}

.public-header .nav-top .select-country .select-panel .url .icon {
  width: 17px;
  height: 13px;
  margin-right: 7px;
  margin-top: 4px;
}

.public-header .nav-top .select-country .select-panel .bottom {
  margin-top: 17px;
  color: #0066C0;
  cursor: pointer;
  text-align: center;
  display: block;
  text-decoration: none;
}

.public-header .nav-top .select-country .select-panel .bottom:hover {
  text-decoration-color: #c7511f;
  text-decoration: underline;
}

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

.public-header .nav-top .select-country .select-panel .language-list li .customRadio {
  display: inline-block;
  position: relative;
  padding-left: 10px;
  cursor: pointer;
}

.public-header .nav-top .select-country .select-panel .language-list li .customRadio:hover {
  color: #e47911;
  text-decoration: underline;
}

.public-header .nav-top .select-country .select-panel .language-list li input[type='radio']:checked::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #f08804;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 6px;
}

.public-header .nav-top .sign-box {
  position: relative;
  min-width: 146px;
}

.public-header .nav-top .sign-box:hover .box::after {
  transform: rotate(180deg);
}

.public-header .nav-top .sign-box .box {
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 19px 0 9px;
  margin-left: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
}

.public-header .nav-top .sign-box .box:hover {
  border-color: #fff;
  border-radius: 2px;
}

.public-header .nav-top .sign-box .box::after {
  content: '';
  position: absolute;
  right: 9px;
  bottom: 13px;
  transition: all 0.2s;
  border: 5px solid transparent;
  border-bottom-width: 0;
  border-top: 5px solid #606060;
}

.public-header .nav-top .sign-box .box p {
  margin-right: 5px;
  margin-bottom: 0;
}

.public-header .nav-top .sign-box .box p:first-child {
  font-size: 12px;
  margin-bottom: 0;
}

.public-header .nav-top .sign-box .box p:last-child {
  font-weight: bold;
}

.public-header .nav-top .sign-box .sign-panel {
  width: 500px;
  top: 45px;
  right: -80px;
  padding-bottom: 7px;
  display: flex;
  flex-direction: column;
}

.public-header .nav-top .sign-box .sign-panel::before,
.public-header .nav-top .sign-box .sign-panel::after {
  right: 100px;
}

.public-header .nav-top .sign-box .sign-panel .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #eee;
  margin-bottom: 16px;
}

.public-header .nav-top .sign-box .sign-panel .top .btn-sign {
  background-color: #FFD814;
  border: 1px solid #FCD200;
  box-shadow: 0 2px 5px 0 rgba(213, 217, 217, 0.5);
  text-align: center;
  width: 220px;
  height: 33px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  color: #111;
}

.public-header .nav-top .sign-box .sign-panel .top .btn-sign:hover {
  text-decoration: underline;
  text-decoration-color: #c7511f;
}

.public-header .nav-top .sign-box .sign-panel .top p {
  font-size: 11px;
  color: #333;
  margin: 7px 0 9px 0;
}

.public-header .nav-top .sign-box .sign-panel .top p a {
  color: #05a;
}

.public-header .nav-top .sign-box .sign-panel .top p a:hover {
  color: #e47911;
}

.public-header .nav-top .sign-box .sign-panel .main {
  display: flex;
}

.public-header .nav-top .sign-box .sign-panel .main>div {
  flex: 1;
}

.public-header .nav-top .sign-box .sign-panel .main>div p {
  color: #0f1111;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 10px;
}

.public-header .nav-top .sign-box .sign-panel .main>div ul li {
  padding-bottom: 7px;
}

.public-header .nav-top .sign-box .sign-panel .main>div ul li:hover a:hover {
  text-decoration: underline;
  color: #e47911;
}

.public-header .nav-top .sign-box .sign-panel .main>div ul li a {
  text-decoration: none;
  font-size: 13px;
  color: #444;
}

.public-header .nav-top .sign-box .sign-panel .main .right {
  padding-left: 20px;
  border-left: 1px solid #eee;
}

.public-header .nav-top .font-box {
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 0 9px;
  margin-left: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
}

.public-header .nav-top .font-box:hover {
  border-color: #fff;
  border-radius: 2px;
}

.public-header .nav-top .font-box p:first-child {
  font-size: 12px;
  margin-bottom: 0;
}

.public-header .nav-top .font-box p:last-child {
  font-weight: bold;
}

.public-header .nav-top .cart-box {
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  cursor: pointer;
  border: 1px solid transparent;
}

.public-header .nav-top .cart-box:hover {
  border-color: #fff;
  border-radius: 2px;
}

.public-header .nav-top .cart-box .icon {
  width: 38px;
  height: 30px;
  background-image: url(../image/nav-sprite.png);
  background-position: -10px -336px;
  position: relative;
}

.public-header .nav-top .cart-box .icon .num {
  position: absolute;
  top: 0;
  left: 58%;
  transform: translateX(-50%);
  color: #f08804;
  font-size: 16px;
  font-weight: bold;
}

.public-header .nav-top .cart-box .title {
  font-weight: bold;
  margin-bottom: -13px;
}

.public-header .nav-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #232f3e;
  height: 40px;
  padding: 0 10px;
}

.public-header .nav-main .left {
  display: flex;
  column-gap: 10px;
}

.public-header .nav-main .left li {

  cursor: pointer;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
}

.public-header .nav-main .left #show_drawer {
  padding: 8px 9px;
}

.public-header .nav-main .left li:hover {
  /*border-color: #fff;*/
  /*border-radius: 2px;*/
  color: var(--primary-color);
}

.public-header .nav-main .left li .icon {
  width: 23px;
  height: 15px;
  margin-right: 5px;
  background-image: url(../image/nav-sprite.png);
  background-position: -172px -255px;
}

.public-header .nav-main .right {
  padding: 5px 8px;
  cursor: pointer;
  border: 1px solid transparent;
}

.public-header .nav-main .right:hover {
  border-color: #fff;
  border-radius: 2px;
}

.public-header .nav-bottom {
  height: 50px;
  box-shadow: 0 0 1px #ddd;
  padding: 0 9px 0 15px;
  background-color: #fff;
  display: flex;
  position: relative;
}

.public-header .nav-bottom .custom-item {
  position: static !important;
}

.public-header .nav-bottom .custom-item .active::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  border: 9px solid transparent;
  border-top-width: 0;
  border-bottom: 9px solid #bbb;
  z-index: 5;
}

.public-header .nav-bottom .custom-item .active::after {
  content: '';
  position: absolute;
  top: 27px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-width: 0;
  border-bottom: 8px solid #fff;
  z-index: 5;
}

.public-header .nav-bottom .custom-item .popup-box1 {
  padding: 34px 24px;
  display: flex;
  justify-content: center;
  font-size: 12px;
}

.public-header .nav-bottom .custom-item .popup-box1 .box {
  max-width: 190px;
  min-width: 135px;
  margin: 0 10px;
}

.public-header .nav-bottom .custom-item .popup-box1 .ul-box ul:not(:last-child) {
  margin-bottom: 22px;
}

.public-header .nav-bottom .custom-item .popup-box1 .ul-box ul li {
  line-height: 16px;
  padding-bottom: 6px;
  color: #333;
}

.public-header .nav-bottom .custom-item .popup-box1 .ul-box ul li:first-child {
  font-weight: bold;
}

.public-header .nav-bottom .custom-item .popup-box1 .ul-box ul li:hover {
  text-decoration: underline;
}

.public-header .nav-bottom .custom-item .popup-box1 .img-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.public-header .nav-bottom .custom-item .popup-box1 .img-box img {
  width: 190px;
  height: 250px;
}

.public-header .nav-bottom .custom-item .popup-box1 .img-box .font {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #000;
}

.public-header .nav-bottom .custom-item .popup-box1 .img-box .font:hover {
  text-decoration: underline;
}

.public-header .nav-bottom .custom-item .popup-box1 .img-box .font .title {
  margin: 20px 0 6px 0;
  font-weight: bold;
}

.public-header .nav-bottom .custom-item .popup-box2 {
  height: 375px;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.public-header .nav-bottom .custom-item .popup-box2 .change-btn-box {
  padding: 5px;
  background-color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 9;
}

.public-header .nav-bottom .custom-item .popup-box2 .change-btn-box .page {
  border: 1px solid #888c8c;
  border-radius: 8px;
  width: 36px;
  height: 35px;
  background-image: url(../image/nav-sprite.png);
}

.public-header .nav-bottom .custom-item .popup-box2 .change-btn-box .page:hover {
  background-color: #f7fafa;
}

.public-header .nav-bottom .custom-item .popup-box2 .change-btn-box .last-page {
  transform: rotate(180deg);
  background-position: -152px -277px;
}

.public-header .nav-bottom .custom-item .popup-box2 .change-btn-box .next-page {
  background-position: -152px -277px;
}

.public-header .nav-bottom .custom-item .popup-box2 .main-page {
  flex: 1;
  height: 100%;
  margin: 0 35px;
}

.public-header .nav-bottom .custom-item .popup-box2 .main-page .page-box {
  display: flex;
  transition: transform 0.5s ease-out;
}

.public-header .nav-bottom .custom-item .popup-box2 .main-page .page-box .list-box {
  position: relative;
  display: flex;
  color: #0f1111;
}

.public-header .nav-bottom .custom-item .popup-box2 .main-page .page-box .list-box:first-child li:first-child {
  margin-left: 0;
}

.public-header .nav-bottom .custom-item .popup-box2 .main-page .page-box .list-box:not(:first-child) li:first-child {
  padding-left: 16px;
  border-left: 1px solid #ddd;
}

.public-header .nav-bottom .custom-item .popup-box2 .main-page .page-box .list-box .title {
  position: absolute;
  top: 0;
  left: 51px;
  font-weight: bold;
}

.public-header .nav-bottom .custom-item .popup-box2 .main-page .page-box .list-box li {
  flex: 1;
  margin-left: 35px;
  line-height: 20px;
  padding: 48px 0 0 0;
  text-align: center;
}

.public-header .nav-bottom .custom-item .popup-box2 .main-page .page-box .list-box li:hover img {
  opacity: 0.8;
}

.public-header .nav-bottom .custom-item .popup-box2 .main-page .page-box .list-box li img {
  width: 125px;
}

.public-header .nav-bottom .custom-item .popup-box2 .main-page .page-box .list-box li p {
  margin-top: 8px;
}

.public-header .nav-bottom .custom-item .popup-box2 .main-page .page-box .list-box li .name {
  font-weight: bold;
}

.public-header .nav-bottom .custom-item .popup-box2 .main-page .page-box .list-box li .intro {
  color: #565959;
}

.public-header .nav-bottom .custom-item .popup-box2 .main-page .page-box .list-box li .intro .list-price {
  text-decoration: line-through;
}

.public-header .nav-bottom .custom-item .popup-box2 .main-page .page-box .list-box li .price {
  color: #b12704;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
}

.public-header .nav-bottom .custom-item .popup-box3 {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.public-header .nav-bottom .custom-item .popup-box3 .list-box {
  display: flex;
}

.public-header .nav-bottom .custom-item .popup-box3 .list-box .list-item {
  color: #0f1111;
  margin: 24px 20px 26px 20px;
}

.public-header .nav-bottom .custom-item .popup-box3 .list-box .list-item p {
  font-weight: bold;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #cfcfcf;
}

.public-header .nav-bottom .custom-item .popup-box3 .list-box .list-item li {
  line-height: 20px;
  margin-bottom: 14px;
}

.public-header .nav-bottom .logo-box {
  padding: 0 13px;
  position: relative;
}

.public-header .nav-bottom .logo-box .logo {
  height: 50px;
  padding-top: 5px;
  cursor: pointer;
}

.public-header .nav-main .dropdown-list {
  left: 50%;
  transform: translateX(-50%);
  top: 38px;
  min-width: 190px;
  border-radius: 8px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  color: var(--default-color);
}

.public-header .nav-main .dropdown-list::before,
.public-header .nav-main .dropdown-list::after {
  left: 50%;
  transform: translateX(-50%);
}

.public-header .nav-main .dropdown-list li {
  margin-bottom: 14px;
  line-height: 24px;
  cursor: pointer;
}

.public-header .nav-main .dropdown-list li:hover {
  color: var(--primary-color);
}

.public-header .nav-main .dropdown-list li a {
  padding: 0;
}

.public-header .nav-bottom .menu-list {
  display: flex;
  align-items: center;
  color: #0f1111;
}

.public-header .nav-bottom .menu-list .menu-item {
  padding: 10px 40px;
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  cursor: pointer;
}

.public-header .nav-bottom .menu-list .menu-item .play {
  width: 40px;
  height: 40px;
}

.public-header .nav-bottom .menu-list .menu-item a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  font-size: 12px;
  height: 22px;
  color: #333;
  position: relative;
  display: flex;
  align-items: center;
  border: 2px solid transparent;
}

.public-header .nav-bottom .menu-list .menu-item a:hover {
  border-bottom-color: #f90;
}

.public-header .nav-bottom .menu-list .menu-item .detail-box {
  border-radius: 8px;
  min-width: 200px;
  display: flex;
  top: 50px;
  padding: 24px 27px;
}

.public-header .nav-bottom .menu-list .menu-item .detail-box ul:not(:last-child) {
  border-right: 1px solid #ddd;
  padding-right: 30px;
  margin-right: 20px;
}

.public-header .nav-bottom .menu-list .menu-item .detail-box ul li {
  line-height: 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.public-header .nav-bottom .menu-list .menu-item .detail-box ul li:not(:last-child) {
  margin-bottom: 14px;
}

.public-header .nav-bottom .menu-list .menu-item .detail-box ul li:hover {
  color: #c7511f;
}

.public-header .nav-bottom .menu-list .menu-item .detail-box ul li img {
  width: 24px;
  height: 24px;
  margin-right: 11px;
}

.public-header .nav-bottom .menu-list .menu-item .detail-box ul li span {
  white-space: nowrap;
}

.public-header .nav-bottom .menu-list .menu-item .detail-box ul .title {
  font-weight: bold;
}

.public-header .nav-bottom .menu-list .have-arrow-box:hover::after {
  transform: rotate(180deg);
}

.public-header .nav-bottom .menu-list .have-arrow-box::after {
  content: '';
  position: absolute;
  right: 23px;
  top: 43%;
  transition: all 0.2s;
  border: 4px solid transparent;
  border-bottom-width: 0;
  border-top: 4px solid #606060;
}

.public-header .nav-bottom .left {
  flex: 1;
}

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

.public-drawer {
  z-index: 99999999;
  position: fixed;
  width: 365px;
  background-color: #fff;
  box-shadow: 4px 0 10px 0 rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

.public-drawer .top {
  height: 50px;
  background-color: #232f3e;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.public-drawer .top .icon {
  margin: 0 10px 0 36px;
  width: 27px;
  height: 25px;
  background-image: url(../image/nav-sprite.png);
  background-position: -137px -340px;
}

.public-drawer .top span {
  color: #fff;
  font-weight: bold;
  font-size: 19px;
  margin-bottom: 2px;
}

.public-drawer .back {
  margin-top: 7px;
  height: 45px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #d5dbdb;
}

.public-drawer .back:hover {
  background-color: #eaeded;
}

.public-drawer .back .icon {
  margin: 0 10px 0 36px;
  height: 18px;
  width: 16px;
  background-image: url(../image/nav-sprite.png);
  background-position: -137px -307px;
}

.public-drawer .back span {
  font-weight: bold;
}

.public-drawer .list-box {
  padding: 7px 0 30px;
  color: #111;
}

.public-drawer .list-box .title {
  font-size: 16px;
  font-weight: 600;
  padding: 20px 10px 10px 36px;
  margin-bottom: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.public-drawer .list-box .title:not(:first-child) {
  border-top: 1px solid #d5dbdb;
}

.public-drawer .list-box .list {
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.public-drawer .list-box .list .hr {
  margin: 0 20px 0 36px;
  height: 1px;
  background-color: #d5dbdb;
}

.public-drawer .list-box .list .list-item,
.public-drawer .list-box .list .see {
  padding: 10px 20px 10px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.public-drawer .list-box .list .list-item:hover,
.public-drawer .list-box .list .see:hover {
  background-color: #eaeded;
}

.public-drawer .list-box .list .list-item a {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-drawer .list-box .list .list-item .icon,
.public-drawer .list-box .list .see .icon {
  width: 10px;
  height: 16px;
  background-image: url(../image/nav-sprite.png);
  background-position: -127px -288px;
  cursor: pointer;
  margin-left: 30px;
  padding: 5px 13px 5px 13px;
}

.public-drawer .list-box .list .see {
  justify-content: flex-start;
}

.public-drawer .list-box .list .see .arrow {
  width: 17px;
  height: 13px;
  margin-left: 10px;
  background-image: url(../image/nav-sprite.png);
  background-position: -183px -340px;
}

.public-drawer .list-box .list .see .arrow-down {
  transform: rotate(0);
}

.public-drawer .list-box .list .see .arrow-up {
  transform: rotate(180deg);
}

.public-drawer .list-box .list .custom-class {
  justify-content: flex-start;
}

.public-drawer .list-box .list .custom-class .icon {
  background-image: url(../image/country-sprite.png);
  margin-right: 10px;
}

.public-drawer .list-box .list .language .icon {
  background-position: -77px -51px;
  width: 15px;
  height: 15px;
}

.public-drawer .list-box .list .country .icon {
  background-position: -54px -108px;
  width: 18px;
  height: 12px;
}

.public-drawer .list-box .list .two-item .public-jump {
  padding: 13px 20px 13px 36px;
  display: flex;
  align-items: center;
}

.public-drawer .list-box .list .two-item .public-jump:hover {
  background-color: #eaeded;
}

.public-drawer .main-menu {
  height: calc(100% - 50px);
  overflow: auto;
  position: absolute;
  width: 100%;
}

.public-drawer .detail-menu {
  height: calc(100% - 50px);
  position: absolute;
  width: 100%;
}

.public-drawer .detail-menu .list-box {
  height: calc(100% - 52px);
  overflow: auto;
}

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

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

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

@media(max-width: 767px) {

  .public-header,
  .public-footer {
    width: 1440px;
  }
}

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

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

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

.select-language {
  width: 69px;
}

.public-header .nav-top .select-language .select-panel .language-list li:first-child {
  padding-bottom: unset;
}

.public-header .nav-top .select-language .select-panel .language-list li:first-child::after {
  background-color: unset;
}

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

.public-header .nav-main .left li a {
  padding: 8px 9px;
}

.fixedHeader .public-header .nav-top {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 99999 !important;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  animation: searchTop 0.2s ease-in-out;
}

@keyframes searchTop {
  0% {
    top: -60px;
  }

  100% {
    top: 0;
  }
}

.pt30 {
  padding-top: 30px;
}

.public-list-title {
  max-width: 430px;
  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;
  --default-star-color: #E4E4E4;
  --active-star-color: #FFCC53;
  --minor-font-color: #7F7F7F;
}

.public-star-rating {
  display: inline-block;
  position: relative;
  font-size: 15px;
  color: #E4E4E4;
  letter-spacing: 6px;
}

.public-star-rating::before {
  content: "\2605\2605\2605\2605\2605";
}

.public-star-rating .star-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #FFCC53;
}

.public-star-rating .star-fill::before {
  content: "\2605\2605\2605\2605\2605";
}

.public-star-rating.rating-0 .star-fill {
  width: 0%;
}

.public-star-rating.rating-0-5 .star-fill {
  width: 7.2%;
}

.public-star-rating.rating-1 .star-fill {
  width: 20%;
}

.public-star-rating.rating-1-5 .star-fill {
  width: 27.2%;
}

.public-star-rating.rating-2 .star-fill {
  width: 40%;
}

.public-star-rating.rating-2-5 .star-fill {
  width: 47.2%;
}

.public-star-rating.rating-3 .star-fill {
  width: 60%;
}

.public-star-rating.rating-3-5 .star-fill {
  width: 67.2%;
}

.public-star-rating.rating-4 .star-fill {
  width: 80%;
}

.public-star-rating.rating-4-5 .star-fill {
  width: 87.2%;
}

.public-star-rating.rating-5 .star-fill {
  width: 100%;
}

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

.public-paging-container 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;
}

.public-paging-container li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.public-paging-container li.active {
  color: #fff;
  border-color: #FF7E00;
  background-color: #FF7E00;
  cursor: not-allowed;
}

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

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

.public-paging-container li.omit {
  cursor: unset;
  font-weight: bold;
}

/*******language********/
.public-header .nav-top .select-country .select-panel .language-list-lg {
  border-bottom: 1px solid #eee;
  padding-bottom: 13px;
  margin-bottom: 9px;
}

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

.public-header .nav-top .select-country .select-panel .language-list-lg li:first-child {
  padding-bottom: 13px;
}

.public-header .nav-top .select-country .select-panel .language-list-lg li:first-child::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 26px;
  right: 0;
  height: 1px;
  background-color: #eee;
}

.public-header .nav-top .select-country .select-panel .language-list-lg li .customRadio {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.public-header .nav-top .select-country .select-panel .language-list-lg li .customRadio::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #aaa;
  top: 0;
  left: 0;
}

.public-header .nav-top .select-country .select-panel .language-list-lg li .customRadio:hover {
  color: #e47911;
  text-decoration: underline;
}

.public-header .nav-top .select-country .select-panel .language-list-lg li input[type='radio'] {
  /* 用于覆盖默认的外观 */
  appearance: none;
  /* Safari and Chrome */
  -webkit-appearance: none;
  /* Firefox */
  -moz-appearance: none;
}

.public-header .nav-top .select-country .select-panel .language-list-lg li input[type='radio']:checked::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #f08804;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 6px;
}

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

.public-header .nav-top .select-language .select-panel .language-customize-list {
  border-bottom: 1px solid #eee;
  padding-bottom: 13px;
  margin-bottom: 9px;
}

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

.public-header .nav-top .select-language .select-panel .language-customize-list li:first-child {
  padding-bottom: 13px;
}

.public-header .nav-top .select-language .select-panel .language-customize-list li:first-child::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 26px;
  right: 0;
  height: 1px;
  background-color: #eee;
}

.public-header .nav-top .select-language .select-panel .language-customize-list li .customRadio {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.public-header .nav-top .select-language .select-panel .language-customize-list li .customRadio::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #aaa;
  top: 0;
  left: 0;
}

.public-header .nav-top .select-language .select-panel .language-customize-list li .customRadio:hover {
  color: #e47911;
  text-decoration: underline;
}

.public-header .nav-top .select-language .select-panel .language-customize-list li input[type='radio'] {
  /* 用于覆盖默认的外观 */
  appearance: none;
  /* Safari and Chrome */
  -webkit-appearance: none;
  /* Firefox */
  -moz-appearance: none;
}

.public-header .nav-top .select-language .select-panel .language-customize-list li input[type='radio']:checked::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #f08804;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 6px;
}

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

/************zgz end**********/


/*底部新加的结构样式*/
.public-footer {
  min-width: 1440px;
  background-color: #232F3E;
}

.public-footer .back-top {
  height: 49px;
  background-color: #37475A;
  margin-bottom: 40px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  line-height: 49px;
  cursor: pointer;
}

.public-footer .back-top:hover {
  background-color: #485769;
}

.public-footer .main {
  width: 1440px;
  margin: 0 auto;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #3a4553;
}

.public-footer .main .list-box .title {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 6px 0 14px 0;
}

.public-footer .main .list-box li {
  margin-bottom: 10px;
}

.public-footer .main .list-box li a {
  color: #ddd;
  text-decoration: none;
}

.public-footer .main .list-box li a:hover {
  text-decoration: underline;
}

.public-footer .main .logo-box {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.public-footer .main .logo-box .img-logo {
  width: 200px;
  max-height: 70px;
  object-fit: contain;
}

.public-footer .main .logo-box .social-media {
  display: flex;
  align-items: center;
  column-gap: 24px;
}

.public-footer .main .logo-box .social-media img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.public-footer .main .logo-box .other .title {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 6px 0 14px 0;
}

.public-footer .main .logo-box .other .desc {
  color: #ddd;
  margin-bottom: 0;
  line-height: 26px;
}

.public-footer .main .logo-box .other .desc a {
  text-decoration: underline;
}

.public-footer .main .logo-box .other .desc a:hover {
  color: var(--primary-color);
}

.public-footer .main .logo-box .other .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  padding-right: 5px;
}

.public-footer .main .logo-box .other .bottom .email-input {
  border: none;
  height: 20px;
  width: calc(100% - 45px);
  background-color: transparent;
  color: #fff;
}

.public-footer .main .logo-box .other .bottom .email-input::placeholder {
  color: #ddd;
}

.public-footer .main .logo-box .other .bottom .arrow-box {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: relative;
}

.public-footer .main .logo-box .other .bottom .arrow-box:hover .arrow {
  left: 5px;
}

.public-footer .main .logo-box .other .bottom .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 0.3s;
}

.public-footer .main .logo-box .other .bottom .arrow-box .arrow::after {
  content: '';
  position: absolute;
  top: -3px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ddd;
  transform: rotate(45deg);
}

.public-footer .copyright {
  width: 1440px;
  margin: 0 auto;
  color: #fff;
  font-size: 12px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 弹窗背景样式 */
.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: 16px;
  font-weight: 600;
  line-height: 30px;
  padding: 22px 0;
}

.public-crumbs li {
  margin-right: 8px;
  padding-right: 14px;
  position: relative;
  transition: all 0.2s;
  color: #AAAAAA;
}

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

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

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

#ajax-keyword {
  display: none;
}

.highlight-text {
  color: #0d6efd;
}

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