@charset "UTF-8";
body {
  background-color: #f7f7f7;
}

.m-page .m-page-header {
  height: 50px;
  background-color: #fff;
  position: relative;
  border-bottom: 1px solid #d8d8d8;
}
.m-page .m-page-header .logo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-page .m-page-header .logo img {
  height: 30px;
  display: block;
  margin: 0 auto;
}
.m-page .m-page-header .back {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}
.m-page .m-page-header .title {
  width: 50%;
  height: 100%;
  font-size: 16px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.m-page .m-page-header .search-input-group {
  height: 36px;
  background-color: #f7f7f7;
  border-radius: 18px;
  border: 1px solid #d8d8d8;
  position: absolute;
  width: calc(100% - 40px);
  left: 20px !important;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m-page .m-page-header .search-input-group .search-icon {
  width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.m-page .m-page-header .search-input-group .input-clear-group {
  flex: auto;
  height: 100%;
  padding: 0 8px 0 0;
}
.m-page .m-page-header .search-input-group .search-input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
}
.m-page .m-page-header .search-input-group .search-input:focus {
  outline: none;
  border: none;
}
.m-page .m-page-header .search-input-group .search-btn {
  flex: none;
  width: 100px;
  height: 100%;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.m-page .m-page-header .action-bar {
  height: 50px;
  display: flex;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.m-page .m-page-header .action-bar .action-item {
  color: #666;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.m-page .m-page-header .action-bar .action-item.lang-box {
  width: 100% !important;
}
.m-page .m-page-header .action-bar .action-item.lang-box .icon {
  width: 20px;
  height: 20px;
  flex: none;
  margin-right: 5px;
}
.m-page .m-page-header .action-bar .action-item .global-iconfont {
  font-size: 18px;
}
.m-page .m-page-footer {
  height: 60px;
  background-color: #fff;
  border-top: 1px solid #d8d8d8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  position: relative;
  z-index: 9999;
}
.m-page .m-page-footer .item {
  flex: 1;
}
.m-page .m-page-footer .item .menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
}
.m-page .m-page-footer .item .menu-item .icon {
  width: 28px;
  height: 28px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-page .m-page-footer .item .menu-item .text {
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}
.m-page .m-page-footer .item.active .menu-item {
  color: var(--main-color);
}
.m-page .m-page-footer.has-middle {
  position: relative;
}
.m-page .m-page-footer.has-middle .item:nth-child(3) {
  position: relative;
}
.m-page .m-page-footer.has-middle .item:nth-child(3):after {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  background-color: var(--main-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
  z-index: 1;
}
.m-page .m-page-footer.has-middle .item:nth-child(3) .menu-item {
  color: #fff;
  position: relative;
  z-index: 2;
  transform: translateY(-12px);
}
.m-page .m-page-footer.has-middle .item:nth-child(3).active .menu-item {
  color: #fff;
}
.m-page .m-page-footer.has-middle:before {
  content: '';
  display: block;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -26px;
  transform: translateX(-50%);
  z-index: 0;
  border-top: 1px solid #d8d8d8;
}
.m-page .member-header {
  padding: 20px 15px;
  display: flex;
  align-items: center;
}
.m-page .member-header .user-avatar {
  width: 80px;
  height: 80px;
  flex: none;
  border-radius: 50%;
  margin-right: 15px;
  background-color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 5px 10px rgba(var(--main-color), 0.3);
  -webkit-box-shadow: 0 5px 10px rgba(var(--main-color), 0.3);
}
.m-page .member-header .user-info {
  color: #333;
}
.m-page .member-header .user-info .name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.m-page .member-header .user-info .email {
  font-size: 14px;
  color: #666;
  line-height: 24px;
}
.m-page .member-header .user-info:before {
  content: '';
}
.m-page .member-tool {
  padding: 10px 15px 20px;
  display: flex;
}
.m-page .member-tool .tool-item {
  flex: 1;
  background-color: #fff;
  border-radius: 15px;
  padding: 15px;
  height: 95px;
  margin-right: 15px;
  box-shadow: 0 2px 4px rgba(var(--main-color), 0.3);
  -webkit-box-shadow: 0 2px 4px rgba(var(--main-color), 0.3);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 80px;
  background-image: url("/static/home/images/member/favorites_icon.png");
}
.m-page .member-tool .tool-item:last-child {
  margin-right: 0;
  background-image: url("/static/home/images/member/cart_icon.png");
}
.m-page .member-tool .tool-item .label {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}
.m-page .member-tool .tool-item .num {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}
.m-page .member-menus {
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 15px;
}
.m-page .member-menus .menu-item {
  padding: 15px;
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  color: #333;
}
.m-page .member-menus .menu-item .icon {
  width: 20px;
  height: 20px;
  flex: none;
  margin-right: 10px;
}
.m-page .member-menus .menu-item .icon img {
  width: 100%;
}
.m-page .member-menus .menu-item .label {
  flex: auto;
  min-width: 0;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-page .member-menus .menu-item .arrow-icon {
  font-size: 12px;
  color: #999;
}
.m-page .member-menus .menu-item:last-child {
  border-bottom: none;
}
.m-page .adv-wrap {
  width: 100%;
  height: auto;
}
.m-page .adv-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
}
.m-page .pre-next {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.m-page .pre-next .item {
  flex: 1;
  margin-right: 20px;
  background: #F2F3F4;
  border-radius: 8px;
  padding: 0;
}
.m-page .pre-next .item:last-child {
  margin-right: 0;
}
.m-page .pre-next .item .btn {
  width: auto;
  height: 42px;
  background: #F2F3F4;
  border-radius: 8px;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.m-page .pre-next .item .btn:before {
  content: '\e64e';
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "global-iconfont" !important;
  font-size: 12px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.m-page .pre-next .item .btn:hover {
  background-color: var(--main-color);
  color: #fff;
}
.m-page .pre-next .item .btn.disabled {
  background-color: #efefef;
  color: #999;
  border: none;
}
.m-page .pre-next .item .btn.disabled:hover {
  cursor: not-allowed;
  background-color: #f7f7f7;
  color: #999;
}
.m-page .pre-next .item.Next .btn:before {
  content: '\e646';
  order: 2;
}

.form-popup {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 !important;
  background-color: #fff;
}
.form-popup .form-header {
  height: 50px;
  border-bottom: 1px solid #d8d8d8;
  padding: 10px;
  background-color: #f7f7f7;
  position: relative;
}
.form-popup .form-header .tit {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-popup .form-header .close-icon {
  position: absolute;
  font-size: 18px;
  color: #999;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.form-popup .form-content {
  flex: auto;
  overflow-y: auto;
  padding: 15px;
}
.form-popup .form-footer {
  height: 60px;
  display: flex;
  border-top: 1px solid #d8d8d8;
  background-color: #f7f7f7;
  padding: 10px;
  align-items: center;
}
.form-popup .form-footer .custom-btn {
  height: 40px !important;
}

.address-page .address-list {
  padding: 15px;
}
.address-page .address-list .address-info-item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
}
.address-page .address-list .address-info-item .info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 10px;
  padding: 5px 15px;
  color: #333;
}
.address-page .address-list .address-info-item .info-item .icon {
  font-size: 18px;
  color: #999;
  flex: none;
  margin-right: 10px;
}
.address-page .address-list .address-info-item .info-item .name {
  font-size: 14px;
  font-weight: 600;
}
.address-page .address-list .address-info-item .info-item .tel {
  font-size: 12px;
  color: #666;
  margin-left: 10px;
}
.address-page .address-list .address-info-item .info-item.info-head {
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 1px solid #d8d8d8;
  background-color: #f7f7f7;
}
.address-page .address-list .address-info-item .action-box {
  padding: 0 10px 10px;
}
.address-page .address-list .address-info-item .action-box .action-item {
  font-size: 14px;
  color: #333;
}

.address-info-panel .contact-info {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 10px;
}
.address-info-panel .contact-info .name {
  font-weight: 600;
  color: #333;
}
.address-info-panel .contact-info .name::before {
  content: "\e726";
  font-family: "global-iconfont" !important;
  font-size: 16px;
  color: #999;
  font-weight: 500;
  margin-right: 5px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.address-info-panel .contact-info .phone {
  color: #333;
  margin-left: 10px;
  font-size: 14px;
}
.address-info-panel .contact-info .phone::before {
  content: "\e94f";
  font-family: "global-iconfont" !important;
  font-size: 16px;
  color: #999;
  font-weight: 500;
  margin-right: 5px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.address-info-panel .email {
  color: #333;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 10px;
}
.address-info-panel .email::before {
  content: "\e625";
  font-family: "global-iconfont" !important;
  font-size: 16px;
  color: #999;
  font-weight: 500;
  margin-right: 5px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.address-info-panel .address-info {
  font-size: 12px;
  line-height: 18px;
  display: flex;
  color: #333;
}
.address-info-panel .address-info::before {
  content: "\e615";
  font-family: "global-iconfont" !important;
  font-size: 16px;
  color: #999;
  font-weight: 500;
  margin-right: 5px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.address-info-panel .arrow-icon {
  color: #999;
  margin-left: 10px;
}

.goods-list-page .goods-search-bar {
  background-color: #fff;
}
.goods-list-page .goods-search-bar .search-header {
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d8d8d8;
}
.goods-list-page .goods-search-bar .search-header .tabs {
  display: flex;
  flex: auto;
}
.goods-list-page .goods-search-bar .search-header .tabs .item {
  padding: 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  height: 45px;
  display: flex;
  align-items: center;
  position: relative;
  flex: none;
}
.goods-list-page .goods-search-bar .search-header .tabs .item.active {
  color: var(--main-color);
}
.goods-list-page .goods-search-bar .search-header .tabs .item.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--main-color);
  border-radius: 3px;
}
.goods-list-page .goods-search-bar .search-header .action-box {
  display: flex;
  flex: none;
}
.goods-list-page .goods-search-bar .search-header .action-box .action-item {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: #666;
  font-family: "global-iconfont" !important;
  font-size: 18px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.goods-list-page .goods-search-bar .search-header .action-box .action-item.layout-icon:after {
  content: '';
  width: 0;
  height: 20px;
  border-right: 1px solid #d8d8d8;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.goods-list-page .goods-search-bar .search-header .action-box .action-item.grid:before {
  content: "";
}
.goods-list-page .goods-search-bar .search-header .action-box .action-item.list:before {
  content: "";
}
.goods-list-page .goods-search-bar .search-header .action-box .action-item.filter:before {
  content: "";
}
.goods-list-page .page-category-bar {
  padding: 0 40px 0 10px;
  height: 40px;
  background-color: #fff;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
}
.goods-list-page .page-category-bar .category-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.goods-list-page .page-category-bar .category-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.goods-list-page .page-category-bar .category-list .category-item {
  display: inline-block;
  flex: none;
  padding: 0 10px;
  margin-right: 10px;
}
.goods-list-page .page-category-bar .category-list .category-item a {
  display: flex;
  align-items: center;
  height: 40px;
  font-size: 12px;
  color: #333;
}
.goods-list-page .page-category-bar .category-list .category-item.active a {
  color: var(--main-color);
  font-weight: 600;
}
.goods-list-page .page-category-bar .category-list .fold-action {
  display: none;
}
.goods-list-page .page-category-bar .extend-action {
  width: 40px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to left, #FFFFFF 40%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  z-index: 99;
  right: 0;
  top: 0;
  color: #999;
}
.goods-list-page .page-category-bar.extend {
  position: relative;
  z-index: 99;
}
.goods-list-page .page-category-bar.extend .extend-action {
  display: none;
}
.goods-list-page .page-category-bar.extend .category-list {
  position: absolute;
  overflow: visible;
  top: 0;
  left: 0;
  width: 100%;
  flex-wrap: wrap;
  z-index: 98;
  padding: 10px 10px 40px;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.goods-list-page .page-category-bar.extend .category-list .category-item {
  padding: 0;
}
.goods-list-page .page-category-bar.extend .category-list .category-item a {
  height: 30px;
  margin: 5px 0;
  padding: 0 10px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
}
.goods-list-page .page-category-bar.extend .category-list .category-item.active a {
  background-color: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}
.goods-list-page .page-category-bar.extend .category-list .fold-action {
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  position: absolute;
  z-index: 99;
  left: 0;
  bottom: 0;
  color: #999;
}
.goods-list-page .goods-list-content {
  padding: 0 10px;
}
.goods-list-page .goods-list {
  margin-bottom: 30px;
}
.goods-list-page .goods-list .contact {
  margin-top: 10px;
}
.goods-list-page .goods-list .contact .btn {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.goods-list-page .goods-list .contact .btn .icon {
  line-height: 1;
}
.goods-list-page .goods-list.grid {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 10px);
}
.goods-list-page .goods-list.grid .list-item {
  width: calc(50% - 10px);
  border: 1px solid #d8d8d8;
  margin: 0 10px 10px 0;
  border-radius: 8px;
}
.goods-list-page .goods-list.grid .list-item .thumb-box {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  border-radius: 8px 8px 0 0;
}
.goods-list-page .goods-list.grid .list-item .thumb-box .discount-tag {
  font-size: 12px;
  padding: 2px 5px;
  background: #ff0000;
  color: #fff;
  margin-right: 5px;
  border-radius: 5px;
  position: absolute;
  z-index: 1;
  left: 10px;
  top: 10px;
}
.goods-list-page .goods-list.grid .list-item .thumb-box .thumb {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 8px 8px 0 0;
}
.goods-list-page .goods-list.grid .list-item .thumb-box .thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.03);
  z-index: 1;
}
.goods-list-page .goods-list.grid .list-item .thumb-box .thumb .goods-lazy-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.goods-list-page .goods-list.grid .list-item .info {
  background: #fff;
  padding: 10px;
  color: #333;
  border-radius: 8px;
}
.goods-list-page .goods-list.grid .list-item .info .title {
  font-size: 12px;
  color: var(--text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 18px;
  margin-bottom: 5px;
  min-width: 0;
  display: block;
}
.goods-list-page .goods-list.grid .list-item .info .title:hover {
  text-decoration: underline;
}
.goods-list-page .goods-list.grid .list-item .info .title:hover .discount-tag {
  text-decoration: none;
}
.goods-list-page .goods-list.grid .list-item .info .price-box {
  display: none;
}
.goods-list-page .goods-list.grid .list-item .info .item-desc {
  flex: 1;
  color: #333;
  line-height: 18px;
  margin: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.goods-list-page .goods-list.grid .list-item .info .item-desc:last-child {
  display: none;
}
.goods-list-page .goods-list.grid .list-item .info .item-desc .label {
  display: none;
  color: #999;
}
.goods-list-page .goods-list.grid .list-item .info .item-desc .price {
  font-size: 14px;
  font-weight: 600;
  color: #db3225;
}
.goods-list-page .goods-list.grid .list-item .info .item-desc .price .source-price {
  font-size: 12px;
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
}
.goods-list-page .goods-list.grid .list-item .info .item-desc .min-order, .goods-list-page .goods-list.grid .list-item .info .item-desc .value {
  font-size: 12px;
  color: #333;
}
.goods-list-page .goods-list.grid .list-item .info .item-desc .unit {
  font-weight: 500;
  font-size: 12px;
  color: #999;
}
.goods-list-page .goods-list.grid .list-item .info .item-desc:nth-child(n+3) {
  display: none;
}
.goods-list-page .goods-list.grid .list-item .info .samples-price-item .price {
  font-size: 16px;
  font-weight: 600;
}
.goods-list-page .goods-list.grid .list-item .info .samples-price-item .unit {
  font-weight: 500;
  font-size: 12px;
  color: #999;
}
.goods-list-page .goods-list.grid .list-item .info .samples-price-item .free {
  color: #ff0000;
}
.goods-list-page .goods-list.grid .list-item .info .supplier-info .supplier-features .features-item:before {
  margin-right: 0 !important;
}
.goods-list-page .goods-list.grid .list-item .info .supplier-info .supplier-link {
  display: flex;
  align-items: center;
  color: #666;
  margin-bottom: 10px;
}
.goods-list-page .goods-list.grid .list-item .info .supplier-info .supplier-link .icon {
  font-size: 14px;
  margin-right: 5px;
}
.goods-list-page .goods-list.grid .list-item .info .supplier-info .supplier-link:hover {
  color: var(--main-color);
}
.goods-list-page .goods-list.grid .list-item .info .supplier-info .supplier-link:hover .company-name {
  text-decoration: underline;
}
.goods-list-page .goods-list.grid .list-item .info .action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.goods-list-page .goods-list.grid .list-item .info .action .contact-btn {
  height: 30px;
  border-radius: 18px;
  font-size: 12px;
  flex: auto;
  color: var(--main-color);
  border-color: var(--main-color);
}
.goods-list-page .goods-list.grid .list-item .info .action .contact-btn:hover {
  color: #fff;
}
.goods-list-page .goods-list.grid .list-item .info .action .whatsapp-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #00c851;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goods-list-page .goods-list.grid .list-item .info .action .whatsapp-btn .icon {
  font-size: 18px;
}
.goods-list-page .goods-list.grid .list-item .supply-info-box {
  display: none;
}
.goods-list-page .goods-list.list {
  width: 100%;
}
.goods-list-page .goods-list.list .list-item {
  width: 100%;
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 10px;
}
.goods-list-page .goods-list.list .list-item .goods-item {
  width: 100%;
  display: flex;
  padding: 10px;
  min-width: 0;
}
.goods-list-page .goods-list.list .list-item .goods-item .supplier-info {
  display: none;
}
.goods-list-page .goods-list.list .list-item .goods-item .action {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.goods-list-page .goods-list.list .list-item .goods-item .action .contact-btn {
  height: 30px;
  border-radius: 18px;
  font-size: 12px;
  flex: auto;
  color: var(--main-color);
  border-color: var(--main-color);
}
.goods-list-page .goods-list.list .list-item .goods-item .action .contact-btn:hover {
  color: #fff;
}
.goods-list-page .goods-list.list .list-item .goods-item .action .whatsapp-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #00c851;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goods-list-page .goods-list.list .list-item .goods-item .action .whatsapp-btn .icon {
  font-size: 18px;
}
.goods-list-page .goods-list.list .list-item .supply-info-box {
  display: none;
  width: 100%;
  padding: 10px;
  flex: none;
  background-color: #f8f8f8;
}
.goods-list-page .goods-list.list .list-item .supply-info-box .btn {
  width: 100%;
  height: 46px;
  border-radius: 23px;
  border: 1px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-align: left;
}
.goods-list-page .goods-list.list .list-item .supply-info-box .btn .icon {
  width: 32px;
  height: 32px;
  flex: none;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goods-list-page .goods-list.list .list-item .supply-info-box .btn.whatsapp-btn .icon {
  background-color: #009f00;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
}
.goods-list-page .goods-list.list .list-item .supply-info-box .btn.contact-btn {
  background-color: var(--main-color);
  color: #fff;
}
.goods-list-page .goods-list.list .list-item .supply-info-box .btn.contact-btn .icon {
  font-size: 24px;
}
.goods-list-page .goods-list.list .list-item .supply-info-box .btn.contact-btn .tit {
  font-size: 14px;
  line-height: 16px;
}
.goods-list-page .goods-list.list .list-item .supply-info-box .btn.contact-btn .desc {
  font-size: 12px;
  line-height: 14px;
}
.goods-list-page .goods-list.list .list-item .supply-info-box .company-name {
  color: #666 !important;
}
.goods-list-page .goods-list.list .list-item .thumb-box {
  width: 150px;
  height: 150px;
  flex: none;
  margin-right: 15px;
  position: relative;
  border: 1px solid #d8d8d8;
  border-radius: 15px;
  overflow: hidden;
}
.goods-list-page .goods-list.list .list-item .thumb-box .thumb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.goods-list-page .goods-list.list .list-item .thumb-box .thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.03);
  z-index: 1;
}
.goods-list-page .goods-list.list .list-item .thumb-box .thumb .goods-lazy-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.goods-list-page .goods-list.list .list-item .info {
  color: #333;
  flex: auto;
  min-width: 0;
}
.goods-list-page .goods-list.list .list-item .info .title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--main-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 5px;
}
.goods-list-page .goods-list.list .list-item .info .price-box {
  display: block;
}
.goods-list-page .goods-list.list .list-item .info .price-box .price {
  font-size: 14px;
  font-weight: 600;
  color: #db3225;
  margin-right: 30px;
}
.goods-list-page .goods-list.list .list-item .info .price-box .btn {
  border-radius: 40px;
  height: 30px !important;
  color: var(--main-color);
  border-color: var(--main-color);
  font-size: 12px;
  padding: 0 20px;
}
.goods-list-page .goods-list.list .list-item .info .price-box .btn:hover {
  color: #fff;
}
.goods-list-page .goods-list.list .list-item .info .item-desc {
  color: #333;
  line-height: 18px;
  margin: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.goods-list-page .goods-list.list .list-item .info .item-desc.price-item {
  display: none;
}
.goods-list-page .goods-list.list .list-item .info .item-desc .label {
  display: inline-block;
  color: #999;
}
.goods-list-page .goods-list.list .list-item .info .item-desc .price {
  font-size: 14px;
  font-weight: 600;
}
.goods-list-page .goods-list.list .list-item .info .item-desc .min-order {
  font-size: 12px;
  color: #999;
}
.goods-list-page .goods-list.list .list-item .info .item-desc .unit {
  font-weight: 500;
  font-size: 12px;
  color: #999;
}
.goods-list-page .goods-list.list .list-item .info .goods-desc {
  display: block !important;
  width: 100%;
}
.goods-list-page .goods-list.list .list-item .info .goods-desc .item-desc .value {
  font-size: 12px;
  color: #333;
}
.goods-list-page .goods-list.list .list-item .info .supplier-info {
  display: none;
}
.goods-list-page .goods-list.list .list-item .contact {
  display: none;
}
.goods-list-page .goods-list.list .list-item .contact .btn {
  width: 160px;
}
.goods-list-page .goods-list.list .list-item .contact .lang-ru {
  width: 180px;
}
.goods-list-page .supplier-list .supplier-item {
  margin-bottom: 15px;
  border-radius: 10px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  background-image: url("/static/home/images/supplier-bg.png");
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}
.goods-list-page .supplier-list .supplier-item .supplier-box {
  padding: 15px;
}
.goods-list-page .supplier-list .supplier-item .supplier-box .features-item {
  margin-bottom: 0 !important;
}
.goods-list-page .supplier-list .supplier-item .supplier-box .action {
  display: flex;
  align-items: center;
}
.goods-list-page .supplier-list .supplier-item .supplier-box .action .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-align: left;
}
.goods-list-page .supplier-list .supplier-item .supplier-box .action .btn .icon {
  width: 24px;
  height: 24px;
  flex: none;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goods-list-page .supplier-list .supplier-item .supplier-box .action .btn.contact-btn {
  background-color: var(--main-color);
  color: #fff;
  height: 40px;
  border-radius: 20px;
  flex: auto;
}
.goods-list-page .supplier-list .supplier-item .supplier-box .action .btn.contact-btn .icon {
  font-size: 24px;
}
.goods-list-page .supplier-list .supplier-item .supplier-box .action .btn.contact-btn .tit {
  font-size: 14px;
  line-height: 16px;
}
.goods-list-page .supplier-list .supplier-item .supplier-box .action .btn.contact-btn .desc {
  font-size: 12px;
  line-height: 14px;
}
.goods-list-page .supplier-list .supplier-item .supplier-box .action .btn.whatsapp-btn {
  width: 40px;
  height: 40px;
  border: none;
  padding: 0;
}
.goods-list-page .supplier-list .supplier-item .supplier-box .action .btn.whatsapp-btn .icon {
  width: 100%;
  height: 100%;
  background-color: #009f00;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
}
.goods-list-page .supplier-list .supplier-item .collect-icon {
  font-size: 12px;
  height: 20px;
  border: 1px solid var(--main-color);
  padding: 0 10px;
  color: var(--main-color);
  margin-left: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.goods-list-page .supplier-list .supplier-item .collect-icon:before {
  content: '\e659';
  font-family: "global-iconfont" !important;
  font-size: 14px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  margin-right: 5px;
}
.goods-list-page .supplier-list .supplier-item .collect-icon.is-collect:before {
  content: '\e65a';
}
.goods-list-page .supplier-list .supplier-item .main-product {
  font-size: 12px;
  color: #666;
  line-height: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2 !important;
  overflow: hidden;
}
.goods-list-page .supplier-list .supplier-item .goods-box {
  padding: 0 15px;
  flex: none;
  position: relative;
  display: flex;
}
.goods-list-page .supplier-list .supplier-item .goods-box .goods-list {
  flex: auto;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
}
.goods-list-page .supplier-list .supplier-item .goods-box .goods-list .goods-item {
  width: calc(33.33% - 10px);
  margin-left: 15px;
}
.goods-list-page .supplier-list .supplier-item .goods-box .goods-list .goods-item:first-child {
  margin-left: 0;
}
.goods-list-page .supplier-list .supplier-item .goods-box .goods-list .goods-item .goods-thumb {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.goods-list-page .supplier-list .supplier-item .goods-box .goods-list .goods-item .goods-thumb .goods-lazy-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.goods-list-page .supplier-list .supplier-item .goods-box .goods-list .goods-item .goods-thumb:after {
  background: rgba(0, 0, 0, 0.03);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.goods-list-page .supplier-list .supplier-item .goods-box .goods-list .goods-item .goods-name {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
  height: 36px;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2 !important;
  overflow: hidden;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .goods-list .goods-item {
  width: calc(50% - 10px);
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .goods-list .goods-item:nth-child(3) {
  display: none;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper {
  width: 224px;
  height: 168px;
  flex: none;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-left: 20px;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .tool-bar {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .tool-bar .tool-item {
  display: inline-flex;
  height: 20px;
  border-radius: 10px;
  flex: none;
  padding: 0 10px;
  background-color: rgba(0, 0, 0, 0.5);
  margin-right: 10px;
  font-size: 12px;
  color: #fff;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .tool-bar .tool-item .icon {
  font-size: 12px;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .tool-bar .tool-item:last-child {
  margin-right: 0;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .tool-bar .tool-item.active {
  background-color: #fff;
  color: #333;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .vr-panel {
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .vr-panel .tips-icon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .vr-panel .tips-icon .icon {
  background-image: url("/static/home/images/720.png");
  width: 80px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin: 0 auto;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .vr-panel .tips-icon .text {
  font-size: 16px;
  color: #fff;
  padding-top: 10px;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .video-panel {
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .video-panel .play-icon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("/static/home/images/play.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
  border-radius: 15px;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .images-panel {
  width: 100%;
  height: 100%;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .swiper-button-next, .goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .swiper-button-prev {
  width: 30px;
  height: 30px;
  left: 5px;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .swiper-button-next:before, .goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .swiper-button-prev:before {
  font-size: 16px;
}
.goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .swiper-button-next, .goods-list-page .supplier-list .supplier-item .goods-box.has-swiper .supplier-item-swiper .swiper-container-rtl .swiper-button-prev {
  right: 5px !important;
  left: auto !important;
}
.goods-list-page .page-filter {
  position: fixed;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 999999;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.goods-list-page .page-filter .page-filter-content {
  width: 300px;
  height: 100%;
  position: absolute;
  right: -300px;
  top: 0;
  background-color: #fff;
  z-index: 1;
  box-shadow: 0 5px -8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px -8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.goods-list-page .page-filter .page-filter-content .filter-main {
  padding: 15px;
  height: calc(100% - 50px);
  overflow-y: auto;
}
.goods-list-page .page-filter .page-filter-content .filter-main::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.goods-list-page .page-filter .page-filter-content .filter-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d8d8d8;
}
.goods-list-page .page-filter .page-filter-content .filter-footer .action-item {
  flex: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #333;
}
.goods-list-page .page-filter .page-filter-content .filter-footer .action-item.submit {
  background-color: var(--main-color);
  color: #fff;
}
.goods-list-page .page-filter .page-filter-content .filter-tit {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.goods-list-page .page-filter .page-filter-content .filter-tit:after {
  content: '';
  width: 20px;
  height: 30px;
  background-image: url("/static/home/images/goods/icon.png");
  background-repeat: no-repeat;
  background-position: -120px center;
  background-size: auto 100%;
  position: absolute;
  left: 0;
  top: 2px;
}
.goods-list-page .page-filter .page-filter-content .filter-item {
  margin-bottom: 10px;
}
.goods-list-page .page-filter .page-filter-content .filter-item .filter-content {
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
}
.goods-list-page .page-filter .page-filter-content .filter-item .filter-content::-webkit-scrollbar {
  width: 3px;
}
.goods-list-page .page-filter .page-filter-content .filter-item .filter-content::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #7d7d7d;
}
.goods-list-page .page-filter .page-filter-content .filter-item .filter-content::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: #e7e7e7;
  border: 1px solid #cacaca;
}
.goods-list-page .page-filter .page-filter-content .filter-item dt {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
.goods-list-page .page-filter .page-filter-content .filter-item dt h3 {
  font-size: 14px;
  font-weight: 600;
}
.goods-list-page .page-filter .page-filter-content .filter-item dd {
  font-size: 12px;
  color: #666;
  line-height: 24px;
  padding: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.goods-list-page .page-filter .page-filter-content .filter-item dd .filter-options {
  color: #666;
}
.goods-list-page .page-filter .page-filter-content .filter-item dd .filter-options:hover {
  color: var(--main-color);
}
.goods-list-page .page-filter .page-filter-content .filter-item dd .filter-options.active {
  color: var(--main-color);
}
.goods-list-page .page-filter .page-filter-content .filter-item dd .selected-item {
  display: flex;
  padding: 2px 10px;
  background-color: #f7f7f7;
  border-radius: 3px;
}
.goods-list-page .page-filter .page-filter-content .filter-item dd .selected-item span {
  flex: auto;
  min-width: 0;
  font-size: 12px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.goods-list-page .page-filter .page-filter-content .filter-item dd .selected-item a {
  flex: none;
  color: #888;
}
.goods-list-page .page-filter .page-filter-content .filter-item dd .filter-input {
  width: 100%;
  height: 30px;
  padding: 5px 8px;
}
.goods-list-page .page-filter .page-filter-content .filter-item dd .filter-btn {
  height: 30px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
}
.goods-list-page .page-filter .page-filter-content .filter-item.checked-item .filter-options {
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}
.goods-list-page .page-filter .page-filter-content .filter-item.checked-item .filter-options:after {
  content: '';
  width: 16px;
  height: 16px;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.goods-list-page .page-filter .page-filter-content .filter-item.checked-item .filter-options.active:after {
  background-color: var(--main-color);
  border: none;
  content: '\e618';
  font-family: "global-iconfont" !important;
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.goods-list-page .page-filter .page-filter-content .filter-item.checked-item .filter-options .icon {
  width: 16px;
  height: 16px;
  flex: none;
  margin-right: 5px;
}
.goods-list-page .page-filter .page-filter-content .filter-item.checked-item .filter-options .icon img {
  width: 100%;
  height: 100%;
}
.goods-list-page .page-filter .page-filter-content .filter-item.payment-item dd {
  margin-left: -8px;
}
.goods-list-page .page-filter .page-filter-content .filter-item.payment-item .filter-options {
  margin-left: 8px;
}
.goods-list-page .page-filter .mask {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.goods-list-page .page-filter.close {
  opacity: 0;
  pointer-events: none;
}
.goods-list-page .page-filter.close .page-filter-content {
  right: -300px;
}
.goods-list-page .page-filter.open {
  opacity: 1;
  pointer-events: visible;
}
.goods-list-page .page-filter.open .page-filter-content {
  right: 0;
}
.goods-list-page .search-panel {
  padding: 10px;
}
.goods-list-page .search-panel .search-title {
  font-size: 16px;
  padding: 0 10px;
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.goods-list-page .search-panel .search-title .clear-btn {
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}
.goods-list-page .search-panel .search-title .action-box {
  display: flex;
}
.goods-list-page .search-panel .search-title .action-box .text {
  font-size: 12px;
  font-weight: 500;
  color: #333;
  display: none;
}
.goods-list-page .search-panel .search-items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-top: -10px;
}
.goods-list-page .search-panel .search-items .search-item {
  padding: 0 25px;
  background-color: #f6f7fb;
  margin-left: 10px;
  margin-top: 10px;
  height: 30px;
  border-radius: 15px;
  line-height: 30px;
  position: relative;
  color: #333;
  font-size: 12px;
}
.goods-list-page .search-panel.search-action .search-title .clear-btn {
  display: none;
}
.goods-list-page .search-panel.search-action .search-title .text {
  display: block;
}
.goods-list-page .search-panel.search-action .search-title .text.del-text {
  color: #ff0000;
  margin-right: 10px;
}
.goods-list-page .search-panel.search-action .search-title .text.close-text {
  color: #999;
}
.goods-list-page .search-panel.search-action .search-items .search-item {
  position: relative;
}
.goods-list-page .search-panel.search-action .search-items .search-item:before {
  content: '\e724';
  font-family: "global-iconfont" !important;
  font-size: 12px;
  color: #999;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.goods-info-page .goods-album {
  position: relative;
}
.goods-info-page .goods-album .goods-album-img {
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  overflow: hidden;
  object-fit: contain;
}
.goods-info-page .goods-album .action-bar .action-item {
  font-size: 14px;
  color: #999;
}
.goods-info-page .goods-album .action-bar .action-item.collect-action {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 99999;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.goods-info-page .goods-album .action-bar .action-item.collect-action .icon {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.goods-info-page .goods-info .goods-promoted {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FAF2C8;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.goods-info-page .goods-info .goods-promoted .promoted-text {
  color: #333;
  font-size: 14px;
}
.goods-info-page .goods-info .goods-promoted .promoted-text .text-contact {
  color: #274699;
}
.goods-info-page .goods-info .title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}
.goods-info-page .goods-info .desc {
  margin-bottom: 10px;
}
.goods-info-page .goods-info .desc .item {
  font-size: 12px;
  color: #999;
}
.goods-info-page .goods-info .activity-bar {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
}
.goods-info-page .goods-info .activity-bar.activity-bar-2-1 {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
.goods-info-page .goods-info .activity-bar.activity-bar-2-1 .tit {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.goods-info-page .goods-info .activity-bar.activity-bar-2-1 .time {
  color: #fff;
  font-size: 12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.goods-info-page .goods-info .activity-bar.activity-bar-2-1 .time .text {
  text-align: right;
}
.goods-info-page .goods-info .activity-bar.activity-bar-2-2 {
  background-color: #e2e3e5;
  padding: 5px 15px;
}
.goods-info-page .goods-info .activity-bar.activity-bar-2-2 .tit {
  color: #e73349;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.goods-info-page .goods-info .activity-bar.activity-bar-2-2 .tit:before {
  content: '\e785';
  font-family: "global-iconfont" !important;
  font-size: 24px;
  font-weight: 500;
  margin-right: 5px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.goods-info-page .goods-info .activity-bar.activity-bar-2-2 .discount-info .price {
  font-size: 14px;
  font-weight: 600;
}
.goods-info-page .goods-info .activity-bar.activity-bar-2-2 .discount-info .price .unit {
  font-size: 12px;
  font-weight: 500;
  color: #999;
}
.goods-info-page .goods-info .activity-bar.activity-bar-2-2 .discount-info .start-time {
  font-size: 12px;
  color: #999;
}
.goods-info-page .goods-info .activity-bar.activity-bar-2-2 .time {
  color: #333;
  font-size: 12px;
}
.goods-info-page .goods-info .activity-bar.activity-bar-2-2 .time .text {
  text-align: right;
}
.goods-info-page .goods-info .activity-bar .yomibox .yomiday, .goods-info-page .goods-info .activity-bar .yomibox .yomihour, .goods-info-page .goods-info .activity-bar .yomibox .yomimin, .goods-info-page .goods-info .activity-bar .yomibox .yomisec {
  background-color: #333;
  padding: 2px 5px;
  font-size: 12px;
  color: #fff;
  border-radius: 2px;
}
.goods-info-page .goods-info .activity-bar .yomibox .split {
  padding: 0 5px;
  font-size: 12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.goods-info-page .goods-info .activity-bar .yomibox .split.day:before {
  content: "D";
}
.goods-info-page .goods-info .activity-bar .yomibox .split.hour:before {
  content: "H";
}
.goods-info-page .goods-info .activity-bar .yomibox .split.min:before {
  content: "M";
}
.goods-info-page .goods-info .activity-bar .yomibox .split.sec {
  padding: 0;
}
.goods-info-page .goods-info .price-box {
  padding: 0 10px;
  border-radius: 10px;
}
.goods-info-page .goods-info .price-box .price-head {
  margin-bottom: 10px;
}
.goods-info-page .goods-info .price-box .price-content {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 10px 0;
}
.goods-info-page .goods-info .price-box .price-content .item {
  padding: 10px 10px;
  border-right: 1px solid #e8e8e8;
}
.goods-info-page .goods-info .price-box .price-content .item:last-child {
  border-right: none;
}
.goods-info-page .goods-info .price-box .price-content .item .price {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ff0000;
}
.goods-info-page .goods-info .price-box .price-content .item .number {
  font-size: 12px;
  color: #333;
  line-height: 24px;
}
.goods-info-page .goods-info .price-box .price-content .item .number .unit {
  color: #999;
}
.goods-info-page .goods-info .price-box .price-content .item .source-price {
  font-size: 12px;
  line-height: 24px;
  color: #999;
  text-decoration: line-through;
}
.goods-info-page .goods-info .price-box .price-content .item.item-row {
  display: flex;
  align-items: center;
}
.goods-info-page .goods-info .price-box .price-content .item.item-row .price {
  margin: 0;
}
.goods-info-page .goods-info .price-box .price-content .item.item-row .number {
  margin-left: 10px;
  color: #999;
}
.goods-info-page .goods-info .price-box .price-content .item.item-row .limit-buy {
  font-size: 14px;
  color: #333;
}
.goods-info-page .goods-info .price-box .price-content .item.item-row .min-order {
  font-size: 14px;
  color: #999;
  margin-left: 10px;
}
.goods-info-page .goods-info .price-box .price-content .item.item-row .source-price {
  margin-left: 10px;
}
.goods-info-page .goods-info .price-box .fob-price-tips .item {
  display: flex;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 10px;
}
.goods-info-page .goods-info .price-box .fob-price-tips .item .label {
  color: #999;
  margin-right: 5px;
  flex: none;
}
.goods-info-page .goods-info .price-box .fob-price-tips .item .value {
  font-size: 12px;
  font-weight: 600;
  flex: auto;
  min-width: 0;
  word-wrap: break-word;
  /* 强制英文数字在边界处换行 */
  overflow-wrap: break-word;
  /* 对于兼容性更好的情况 */
}
.goods-info-page .goods-info .price-box .fob-price-tips .item:last-child {
  margin-bottom: 0;
}
.goods-info-page .goods-info .supply-info-box {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  background-image: url("/static/home/images/supplier-bg.png");
  padding: 15px;
  border-radius: 10px;
}
.goods-info-page .goods-info .action-box {
  padding: 20px 0;
}
.goods-info-page .goods-info .action-box .btn {
  height: 46px;
  padding: 0 30px;
  border-radius: 23px;
  border: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-align: left;
}
.goods-info-page .goods-info .action-box .btn .icon {
  width: 32px;
  height: 32px;
  flex: none;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goods-info-page .goods-info .action-box .btn.whatsapp-btn .icon {
  background-color: #009f00;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
}
.goods-info-page .goods-info .action-box .btn.buy-btn .icon {
  font-size: 24px;
}
.goods-info-page .goods-info .action-box .btn.contact-btn {
  background-color: var(--main-color);
  color: #fff;
}
.goods-info-page .goods-info .action-box .btn.contact-btn .icon {
  font-size: 24px;
}
.goods-info-page .goods-info .action-box .btn.contact-btn .tit {
  font-size: 14px;
  line-height: 16px;
}
.goods-info-page .goods-info .action-box .btn.contact-btn .desc {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 0;
}
.goods-info-page .goods-info .attr-list {
  padding: 10px 10px;
  background-color: #fff;
  margin: 10px 0;
}
.goods-info-page .goods-info .attr-list .attr-line {
  border-top: 1px solid #d8d8d8;
  margin: 10px 0;
}
.goods-info-page .goods-info .attr-list .attr-item {
  display: flex;
  padding: 5px 0;
  line-height: 18px;
}
.goods-info-page .goods-info .attr-list .attr-item .label {
  flex: none;
  margin-right: 10px;
  font-size: 12px;
  color: #999;
  flex: 1;
  display: flex;
  align-items: center;
}
.goods-info-page .goods-info .attr-list .attr-item .value {
  font-size: 12px;
  color: #333;
  flex: 2;
}
.goods-info-page .goods-info .attr-list .attr-item .value .price {
  font-weight: 600;
  color: #ff0000;
}
.goods-info-page .goods-info .attr-list .attr-item .value .gray {
  color: #999;
}
.goods-info-page .goods-info .attr-list .attr-item .value .link {
  color: var(--main-color);
}
.goods-info-page .goods-info .attr-list .attr-item .value.color .color-items {
  display: flex;
  flex-wrap: wrap;
  margin: -10px 0 0 -10px;
}
.goods-info-page .goods-info .attr-list .attr-item .value.color .color-item {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-left: 10px;
}
.goods-info-page .goods-info .attr-list .attr-item .value.color .color-item .icon {
  width: 20px;
  height: 20px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  flex: none;
  margin-right: 5px;
}
.goods-info-page .goods-info .attr-list .attr-item .value.color .color-item .name {
  font-size: 12px;
}
.goods-info-page .goods-info .attr-list .attr-item .link {
  color: var(--main-color);
}
.goods-info-page .goods-info .attr-list .attr-item.goods-attr-item:nth-child(n+6) {
  display: none;
}
.goods-info-page .goods-info .pre-sale-entrance {
  padding: 10px 0;
  display: block;
}
.goods-info-page .goods-info .pre-sale-entrance .thumb {
  width: 451px;
  height: auto;
  padding-bottom: 15%;
  background-image: url("/static/home/images/99/pre_sale_entrance.png");
}
.goods-info-page .goods-info .pre-sale-entrance img {
  max-width: 100%;
}
.goods-info-page .goods-info .add-cart-box {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.goods-info-page .goods-info .add-cart-box .goods-stock {
  font-size: 14px;
  color: #999;
}
.goods-info-page .goods-info .ngk-list .hidden-row {
  display: none;
}
.goods-info-page .goods-info .ngk-list .view-all {
  padding: 10px 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(240, 240, 240, 0.85));
  margin-top: -36px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #DEE2E6;
  border-top: 0;
}
.goods-info-page .goods-info .ngk-list .view-all .btn {
  border: 1px solid var(--main-color);
  width: 250px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--main-color);
  line-height: 28px;
}
.goods-info-page .goods-detail-box .goods-detail-tabs {
  height: 45px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #d8d8d8;
  position: sticky;
  top: 0;
  z-index: 9999;
  padding: 0 10px;
  flex-wrap: nowrap;
}
.goods-info-page .goods-detail-box .goods-detail-tabs .nav-link {
  border: none;
  background-color: transparent;
  font-size: 14px;
  color: #333;
  height: 45px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  position: relative;
}
.goods-info-page .goods-detail-box .goods-detail-tabs .nav-link.active {
  background-color: #fff;
  font-weight: 600;
  color: var(--main-color);
  border: 1px solid #d8d8d8;
  border-width: 0 1px;
}
.goods-info-page .goods-detail-box .goods-detail-tabs .nav-link.active:after {
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main-color);
}
.goods-info-page .goods-detail-box .goods-tab-content {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  border-radius: 0 0 20px 20px;
  background-color: #fff;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane {
  display: none;
  min-height: 400px;
  white-space: normal;
  /* 保留空白符序列，但是正常换行 */
  word-break: break-all;
  /* 允许在单词内换行 */
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane table {
  width: 100%;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .goods-attr {
  margin-bottom: 15px;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .goods-attr .tit {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .goods-attr .attr-item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  font-size: 12px;
  color: #333;
  line-height: 20px;
  margin-top: -1px;
  border: 1px solid #d8d8d8;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .goods-attr .attr-item .label {
  flex: none;
  width: 100px;
  padding: 8px;
  background-color: #f8fafc;
  color: #999;
  border-right: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  text-align: right;
  justify-content: flex-end;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .goods-attr .attr-item .value {
  flex: auto;
  padding: 8px;
  min-width: 0;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane.active {
  display: block;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .swiper-nav-bar {
  border-bottom: 1px solid #d8d8d8;
  position: sticky;
  top: 45px;
  z-index: 99;
  background-color: #fff;
  margin-bottom: 10px;
  width: 100%;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .swiper-nav-bar .nav-item {
  flex: none;
  font-size: 12px;
  color: #333;
  height: 45px;
  position: relative;
  margin-left: 20px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  width: auto;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .swiper-nav-bar .nav-item.active {
  color: var(--main-color);
  font-weight: 600;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .swiper-nav-bar .nav-item.active:before {
  content: '';
  width: 100%;
  height: 3px;
  background-color: var(--main-color);
  position: absolute;
  bottom: -1px;
  left: 0;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .swiper-nav-bar .swiper-container {
  width: 100%;
  padding-right: 100px;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .swiper-nav-bar .swiper-container:before {
  content: '';
  width: 100px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .swiper-nav-bar .swiper-container .swiper-wrapper {
  position: relative;
  z-index: 0;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .swiper-nav-bar .swiper-container .swiper-button-next, .goods-info-page .goods-detail-box .goods-tab-content .tab-pane .swiper-nav-bar .swiper-container .swiper-button-prev {
  background-color: #fff;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .swiper-nav-bar .swiper-container .swiper-button-next:before, .goods-info-page .goods-detail-box .goods-tab-content .tab-pane .swiper-nav-bar .swiper-container .swiper-button-prev:before {
  color: #333;
  font-size: 14px;
}
.goods-info-page .goods-detail-box .goods-tab-content .tab-pane .swiper-nav-bar .swiper-container .swiper-button-prev {
  left: auto !important;
  right: 40px;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .car-attr-item {
  margin-bottom: 10px;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .car-attr-item .item-name {
  font-size: 18px;
  font-weight: 600;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #d8d8d8;
  border-bottom: 0;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .car-attr-item .item-content .car-attr-cell {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  font-size: 12px;
  color: #333;
  line-height: 20px;
  margin-top: -1px;
  border: 1px solid #d8d8d8;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .car-attr-item .item-content .car-attr-cell .label {
  flex: none;
  padding: 8px;
  background-color: #f8fafc;
  color: #999;
  border-right: 1px solid #d8d8d8;
  width: 100px;
  display: flex;
  align-items: center;
  text-align: right;
  justify-content: flex-end;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .car-attr-item .item-content .car-attr-cell .value {
  flex: 1;
  padding: 8px;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .car-attr-item .item-content .car-attr-cell .value.color .color-items {
  display: flex;
  flex-wrap: wrap;
  margin: -10px 0 0 -10px;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .car-attr-item .item-content .car-attr-cell .value.color .color-item {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-left: 10px;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .car-attr-item .item-content .car-attr-cell .value.color .color-item .icon {
  width: 20px;
  height: 20px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  flex: none;
  margin-right: 5px;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .car-attr-item .item-content .car-attr-cell .value.color .color-item .name {
  font-size: 12px;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .car-attr-item .item-content .car-attr-cell .value.relate-value {
  border-left: 1px solid #d8d8d8;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .relate-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d8d8d8;
  position: sticky;
  top: 45px;
  background-color: #fff;
  margin-bottom: -1px;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .relate-head .total {
  width: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  line-height: 24px;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .relate-head .total .num {
  font-size: 16px;
  color: var(--main-color);
  font-weight: 600;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .relate-head .car-name {
  flex: 1;
  padding: 15px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-left: 1px solid #d8d8d8;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .relate-head .car-name .goods-name {
  margin-bottom: 10px;
  color: var(--main-color);
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .relate-head .car-name .btn {
  border-radius: 40px;
  height: 30px !important;
  color: #2546A1;
  border-color: var(--main-color);
  font-size: 12px;
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.goods-info-page .goods-detail-box .goods-tab-content .car-attr-content .relate-head .car-name .btn:hover {
  color: #fff;
}
.goods-info-page .goods-detail-box .goods-tab-content img {
  max-width: 100%;
  height: auto;
  display: block;
  text-align: center;
  margin: 0 auto;
}
.goods-info-page .goods-detail-box .goods-tab-content .nav-tag {
  border-bottom: 2px solid #dfdfdf;
  padding-bottom: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}
.goods-info-page .goods-detail-box .goods-tab-content .nav-tag .style-identifier {
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
}
.goods-info-page .goods-detail-box .goods-tab-content .nav-tag .remove-tag {
  display: none;
}
.goods-info-page .goods-detail-box .inquiry-goods-box {
  background-color: #f3f5f8;
  border: 1px solid #d8d8d8;
}
.goods-info-page .goods-detail-box .supply-item {
  border-bottom: 1px solid #d8d8d8;
}
.goods-info-page .goods-detail-box .supply-item:last-child {
  border-bottom: none;
}
.goods-info-page .goods-detail-box .supply-item .supply-title {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 24px;
  border-bottom: 1px solid #d8d8d8;
}
.goods-info-page .goods-detail-box .supply-item .goods-item {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .thumb-box {
  width: 100px;
  height: 100px;
  flex: none;
  border: 1px solid #d8d8d8;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .info {
  flex: auto;
  padding: 10px;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .info .title {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  color: #294a9f;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .info .title:hover {
  color: #294a9f;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .info .form-item {
  padding: 0;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .info .form-item .error-msg {
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: translateY(100%);
}
.goods-info-page .goods-detail-box .supply-item .goods-item .info .item {
  display: flex;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .info .item .label {
  font-size: 14px;
  color: #999;
  margin-right: 10px;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .info .item .value {
  font-size: 14px;
  color: #333;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .info .item .value.price {
  font-weight: 600;
  color: #ff0000;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .goods-quantity {
  width: 200px;
  height: 42px;
  padding: 0;
  flex: none;
  display: flex;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  align-self: center;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .goods-quantity .quantity {
  width: 100px;
  flex: none;
  border: none;
  border-radius: 0;
  margin-right: 5px;
  font-size: 12px;
  border-right: 1px solid #d8d8d8;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .goods-quantity .unit {
  flex: auto;
  height: 40px;
  border: none;
  border-radius: 0;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .error-msg {
  height: 20px;
  color: #ff0000;
  font-size: 12px;
  line-height: 20px;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .close-icon {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #999;
}
.goods-info-page .goods-detail-box .supply-item .goods-item .close-icon:hover {
  color: #294a9f;
}
.goods-info-page .page-footer {
  padding: 10px;
  background-color: #fff;
}
.goods-info-page .page-footer .action-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goods-info-page .page-footer .action-icon .icon {
  font-size: 24px;
  color: #333;
}
.goods-info-page .page-footer .action-icon.whatsapp .icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #009f00;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
}
.goods-info-page .page-footer .get-best-price {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 20px;
}
.goods-info-page .page-footer .buy-btn {
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goods-info-page .page-footer .buy-btn .icon {
  font-size: 18px;
}

.start-order-box {
  padding: 20px;
}
.start-order-box .goods-info {
  display: flex;
  justify-content: space-between;
}
.start-order-box .goods-info .thumb {
  width: 100px;
  height: 100px;
  flex: none;
  border: 1px solid #d8d8d8;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.start-order-box .goods-info .info {
  flex: auto;
  min-width: 0;
}
.start-order-box .goods-info .info .goods-name {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2 !important;
  overflow: hidden;
}
.start-order-box .goods-info .info .price-box {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #db3225;
  margin-bottom: 10px;
}
.start-order-box .goods-info .info .item-row {
  font-size: 12px;
  line-height: 18px;
  color: #333;
}
.start-order-box .goods-info .info .item-row .label {
  color: #999;
  margin-right: 10px;
}
.start-order-box .attr-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  line-height: 22px;
}
.start-order-box .attr-item .label {
  width: 160px;
  flex: none;
  font-size: 14px;
  color: #999;
}
.start-order-box .attr-item .value {
  flex: auto;
  font-size: 14px;
  color: #333;
}
.start-order-box .attr-item .price-box {
  color: #333;
  font-weight: 600;
  font-size: 14px;
}
.start-order-box .attr-item .price-box.total {
  color: #db3225;
  font-size: 16px;
}
.start-order-box .action-box {
  display: flex;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
}
.start-order-box .action-box .btn {
  flex: 1;
  height: 40px;
  border-radius: 20px;
}

.start-order-popup .layui-layer-title {
  display: none;
}
.start-order-popup .layui-layer-content {
  height: 100% !important;
  overflow: hidden;
}

.m-inquiry-sub-page {
  background-color: #fff;
}
.m-inquiry-sub-page .inquiry-goods-box {
  background-color: #f3f5f8;
  border: 1px solid #d8d8d8;
}
.m-inquiry-sub-page .supply-item {
  border-bottom: 1px solid #d8d8d8;
}
.m-inquiry-sub-page .supply-item:last-child {
  border-bottom: none;
}
.m-inquiry-sub-page .supply-item .supply-title {
  padding: 10px;
  font-size: 14px;
  line-height: 24px;
  border-bottom: 1px solid #d8d8d8;
}
.m-inquiry-sub-page .supply-item .goods-item {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.m-inquiry-sub-page .supply-item .goods-item .thumb-box {
  width: 80px;
  height: 80px;
  flex: none;
  border: 1px solid #d8d8d8;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.m-inquiry-sub-page .supply-item .goods-item .info {
  flex: auto;
}
.m-inquiry-sub-page .supply-item .goods-item .info .title {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  color: #294a9f;
}
.m-inquiry-sub-page .supply-item .goods-item .info .title:hover {
  color: #294a9f;
}
.m-inquiry-sub-page .supply-item .goods-item .info .form-item {
  padding: 0;
  width: 100%;
}
.m-inquiry-sub-page .supply-item .goods-item .info .form-item .error-msg {
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: translateY(100%);
}
.m-inquiry-sub-page .supply-item .goods-item .info .item {
  display: flex;
}
.m-inquiry-sub-page .supply-item .goods-item .info .item .label {
  font-size: 14px;
  color: #999;
  margin-right: 10px;
}
.m-inquiry-sub-page .supply-item .goods-item .info .item .value {
  font-size: 14px;
  color: #333;
}
.m-inquiry-sub-page .supply-item .goods-item .info .item .value.price {
  font-weight: 600;
  color: #ff0000;
}
.m-inquiry-sub-page .supply-item .goods-item .goods-quantity {
  width: 100%;
  height: 42px;
  padding: 0;
  flex: none;
  display: flex;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  align-self: center;
}
.m-inquiry-sub-page .supply-item .goods-item .goods-quantity .quantity {
  flex: auto;
  border: none;
  border-radius: 0;
  margin-right: 5px;
  font-size: 12px;
  border-right: 1px solid #d8d8d8;
}
.m-inquiry-sub-page .supply-item .goods-item .goods-quantity .unit {
  width: 130px;
  flex: none;
  height: 40px;
  border: none;
  border-radius: 0;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.m-inquiry-sub-page .supply-item .goods-item .error-msg {
  height: 20px;
  color: #ff0000;
  font-size: 12px;
  line-height: 20px;
}
.m-inquiry-sub-page .supply-item .goods-item .close-icon {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #999;
}
.m-inquiry-sub-page .supply-item .goods-item .close-icon:hover {
  color: #294a9f;
}

.relate-car-box {
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: auto;
}
.relate-car-box::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.relate-car-box .car-attr-item {
  margin-bottom: 10px;
  position: relative;
  z-index: 0;
}
.relate-car-box .car-attr-item .item-name {
  font-size: 18px;
  font-weight: 600;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #d8d8d8;
  border-bottom: 0;
}
.relate-car-box .car-attr-item .item-content .car-attr-cell {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  font-size: 12px;
  color: #333;
  line-height: 20px;
  margin-top: -1px;
  border: 1px solid #d8d8d8;
}
.relate-car-box .car-attr-item .item-content .car-attr-cell .label {
  flex: none;
  padding: 8px;
  background-color: #f8fafc;
  color: #999;
  border-right: 1px solid #d8d8d8;
  width: 100px;
  display: flex;
  align-items: center;
  text-align: right;
  justify-content: flex-end;
  position: sticky;
  left: 0;
}
.relate-car-box .car-attr-item .item-content .car-attr-cell .value {
  flex: none;
  width: 300px;
  padding: 8px;
}
.relate-car-box .car-attr-item .item-content .car-attr-cell .value.color .color-items {
  display: flex;
  flex-wrap: wrap;
  margin: -10px 0 0 -10px;
}
.relate-car-box .car-attr-item .item-content .car-attr-cell .value.color .color-item {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-left: 10px;
}
.relate-car-box .car-attr-item .item-content .car-attr-cell .value.color .color-item .icon {
  width: 20px;
  height: 20px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  flex: none;
  margin-right: 5px;
}
.relate-car-box .car-attr-item .item-content .car-attr-cell .value.color .color-item .name {
  font-size: 12px;
}
.relate-car-box .car-attr-item .item-content .car-attr-cell .value.relate-value {
  border-left: 1px solid #d8d8d8;
}
.relate-car-box .relate-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d8d8d8;
  position: sticky;
  top: 0;
  background-color: #fff;
  margin-bottom: -1px;
  z-index: 1;
}
.relate-car-box .relate-head .total {
  width: 100px;
  height: 88px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  line-height: 24px;
  flex: none;
  position: sticky;
  left: 0;
  top: 0;
  background-color: #fff;
  border-right: 1px solid #d8d8d8;
  z-index: 999999;
}
.relate-car-box .relate-head .total .num {
  font-size: 16px;
  color: var(--main-color);
  font-weight: 600;
}
.relate-car-box .relate-head .car-name {
  flex: none;
  width: 300px;
  padding: 15px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-left: 1px solid #d8d8d8;
}
.relate-car-box .relate-head .car-name .goods-name {
  margin-bottom: 10px;
  color: var(--main-color);
}
.relate-car-box .relate-head .car-name .btn {
  border-radius: 40px;
  height: 30px !important;
  color: #2546A1;
  border-color: var(--main-color);
  font-size: 12px;
  padding: 0 20px;
}
.relate-car-box .relate-head .car-name .btn:hover {
  color: #fff;
}

.input-number {
  width: 120px;
  height: 40px;
}
.input-number button {
  width: 38px;
  height: 38px;
  font-size: 16px;
}
.input-number .alignment {
  line-height: 38px;
}

input.form-control, .form-select {
  border-radius: 20px;
  padding: 8px 20px;
}
input.form-control.sm, .form-select.sm {
  height: 30px;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
}

.custom-btn {
  height: 50px;
  border-radius: 25px;
}

.google-auth-box {
  display: flex;
  align-items: center;
}
.google-auth-box .text {
  font-size: 12px;
  color: #333;
  margin-right: 10px;
}
.google-auth-box .google-auth-btn {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background-color: #cfe5fa;
  border: none;
}
.google-auth-box .google-auth-btn:before {
  margin-right: 0;
}

.form-login .form-header .form-title, .custom-form .form-header .form-title {
  font-size: 18px;
  font-weight: 600;
}

.form-login .form-item .input-item, .custom-form .form-item .input-item {
  padding-bottom: 15px;
}

.form-login .form-item .input-item .error-msg, .custom-form .form-item .input-item .error-msg {
  bottom: -3px;
  left: 20px;
  transform: translateY(0);
}

.form-login .form-item, .custom-form .form-item {
  margin-bottom: 0;
}

.form-login .form-item .label.required .label-name, .custom-form .form-item .label.required .label-name {
  padding-left: 10px;
}

.form-login .form-item .label.required .label-name:before, .custom-form .form-item .label.required .label-name:before {
  left: 0;
}

.hideShowPassword-toggle {
  right: 10px !important;
}

.yidun.yidun--light .yidun_control {
  border-radius: 20px !important;
}
.yidun.yidun--light .yidun_slide_indicator {
  border-radius: 20px !important;
}
.yidun.yidun--light .yidun_slider {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
}

.register-content .form-box {
  position: relative;
}
.register-content .form-box .register-step-box {
  margin-bottom: 20px;
}
.register-content .form-box .register-step-box .item {
  font-size: 12px;
  text-align: center;
  color: #999;
  padding: 10px;
  position: relative;
}
.register-content .form-box .register-step-box .item .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.register-content .form-box .register-step-box .item:after, .register-content .form-box .register-step-box .item:before {
  content: '';
  width: calc(50% - 16px);
  height: 0;
  border-top: 2px solid #d8d8d8;
  position: absolute;
  left: 0;
  top: 26px;
}
.register-content .form-box .register-step-box .item:before {
  left: auto;
  right: 0;
}
.register-content .form-box .register-step-box .item:first-child:after {
  display: none;
}
.register-content .form-box .register-step-box .item:last-child:before {
  display: none;
}
.register-content .form-box .register-step-box.step-1 .item:nth-child(-n + 1) .icon {
  background-color: #294a9f;
  color: #fff;
}
.register-content .form-box .register-step-box.step-1 .item:nth-child(-n + 1):after, .register-content .form-box .register-step-box.step-1 .item:nth-child(-n + 1):before {
  border-color: #294a9f;
}
.register-content .form-box .register-step-box.step-2 .item:nth-child(-n + 2) .icon {
  background-color: #294a9f;
  color: #fff;
}
.register-content .form-box .register-step-box.step-2 .item:nth-child(-n + 2):after, .register-content .form-box .register-step-box.step-2 .item:nth-child(-n + 2):before {
  border-color: #294a9f;
}
.register-content .form-box .register-step-box.step-3 .item:nth-child(-n + 3) .icon {
  background-color: #294a9f;
  color: #fff;
}
.register-content .form-box .register-step-box.step-3 .item:nth-child(-n + 3):after, .register-content .form-box .register-step-box.step-3 .item:nth-child(-n + 3):before {
  border-color: #294a9f;
}
.register-content .form-box .register-step-box.step-4 .item:nth-child(-n + 4) .icon {
  background-color: #294a9f;
  color: #fff;
}
.register-content .form-box .register-step-box.step-4 .item:nth-child(-n + 4):after, .register-content .form-box .register-step-box.step-4 .item:nth-child(-n + 4):before {
  border-color: #294a9f;
}
.register-content .form-box .register-step-box.step-5 .item:nth-child(-n + 5) .icon {
  background-color: #294a9f;
  color: #fff;
}
.register-content .form-box .register-step-box.step-5 .item:nth-child(-n + 5):after, .register-content .form-box .register-step-box.step-5 .item:nth-child(-n + 5):before {
  border-color: #294a9f;
}
.register-content .form-box .register-step-box.step-6 .item:nth-child(-n + 6) .icon {
  background-color: #294a9f;
  color: #fff;
}
.register-content .form-box .register-step-box.step-6 .item:nth-child(-n + 6):after, .register-content .form-box .register-step-box.step-6 .item:nth-child(-n + 6):before {
  border-color: #294a9f;
}
.register-content .form-box .register-step-box.step-7 .item:nth-child(-n + 7) .icon {
  background-color: #294a9f;
  color: #fff;
}
.register-content .form-box .register-step-box.step-7 .item:nth-child(-n + 7):after, .register-content .form-box .register-step-box.step-7 .item:nth-child(-n + 7):before {
  border-color: #294a9f;
}
.register-content .form-box .register-step-box.step-8 .item:nth-child(-n + 8) .icon {
  background-color: #294a9f;
  color: #fff;
}
.register-content .form-box .register-step-box.step-8 .item:nth-child(-n + 8):after, .register-content .form-box .register-step-box.step-8 .item:nth-child(-n + 8):before {
  border-color: #294a9f;
}
.register-content .form-box .register-step-box.step-9 .item:nth-child(-n + 9) .icon {
  background-color: #294a9f;
  color: #fff;
}
.register-content .form-box .register-step-box.step-9 .item:nth-child(-n + 9):after, .register-content .form-box .register-step-box.step-9 .item:nth-child(-n + 9):before {
  border-color: #294a9f;
}
.register-content .form-box .register-step-box.step-10 .item:nth-child(-n + 10) .icon {
  background-color: #294a9f;
  color: #fff;
}
.register-content .form-box .register-step-box.step-10 .item:nth-child(-n + 10):after, .register-content .form-box .register-step-box.step-10 .item:nth-child(-n + 10):before {
  border-color: #294a9f;
}
.register-content .form-box .Verification-code-title {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  text-align: left;
}
.register-content .form-box .Verification-code-title .send-email {
  color: #294a9f;
}
.register-content .form-box .Verification-code-desc {
  font-size: 12px;
  color: #999;
  line-height: 18px;
  margin-bottom: 10px;
}
.register-content .form-box .disc-ul {
  padding-left: 20px;
}
.register-content .form-box .disc-ul li {
  list-style: disc;
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
  line-height: 18px;
}
.register-content .form-box .disc-ul li .link {
  color: #294a9f;
}
.register-content .form-box .form-footer {
  width: 100%;
  padding: 20px;
  font-size: 12px;
}
.register-content .form-box .form-footer .link {
  color: #294a9f;
}

.order-list-page .status-tabs-bar {
  height: 36px;
  background-color: #fff;
}
.order-list-page .status-tabs-bar .item {
  width: auto;
  display: inline-flex;
  padding: 0 10px;
  height: 36px;
  font-size: 14px;
  align-items: center;
  color: #333;
  position: relative;
}
.order-list-page .status-tabs-bar .item.active {
  color: var(--main-color);
}
.order-list-page .status-tabs-bar .item.active:after {
  content: '';
  width: 30px;
  height: 5px;
  border-radius: 5px;
  background-color: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.order-list-page .status-tabs-bar .item .badge {
  position: absolute;
  right: -15px;
  top: 0;
  transform: scale(0.8);
}
.order-list-page .search-form {
  padding: 10px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
.order-list-page .search-form .search-btn {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-list-page .page-main {
  height: calc(100vh - 146px);
  overflow-y: auto;
}
.order-list-page .order-list {
  padding: 10px;
}
.order-list-page .order-list .order-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
}
.order-list-page .order-list .order-item .order-head {
  padding: 10px;
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-list-page .order-list .order-item .order-head .order-sn {
  font-size: 12px;
  line-height: 20px;
  display: flex;
  align-items: center;
}
.order-list-page .order-list .order-item .order-head .order-sn .order-sn-label {
  color: #999;
}
.order-list-page .order-list .order-item .order-head .order-sn .order-type-tags {
  padding: 0 5px;
  height: 20px;
  line-height: 20px;
  margin-left: 5px;
  flex: none;
  background: var(--main-color);
  color: #FFFFFF;
  border-radius: 12px;
}
.order-list-page .order-list .order-item .order-head .order-time {
  font-size: 12px;
  color: #333;
}
.order-list-page .order-list .order-item .order-content {
  padding: 10px;
}
.order-list-page .order-list .order-item .order-content .supplier-info-box {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #f7f7f7;
}
.order-list-page .order-list .order-item .order-content .supplier-info-box .logo {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #f7f7f7;
  flex: none;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.order-list-page .order-list .order-item .order-content .supplier-info-box .company-name {
  font-size: 14px;
  color: var(--main-color);
  flex: auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.order-list-page .order-list .order-item .order-content .supplier-info-box .arrow {
  flex: none;
  magrin-left: 10px;
  font-family: "global-iconfont" !important;
  font-size: 12px;
  color: #999;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.order-list-page .order-list .order-item .order-content .supplier-info-box .arrow:before {
  content: "\e646";
}
.order-list-page .order-list .order-item .order-content .goods-list {
  padding: 10px 0;
}
.order-list-page .order-list .order-item .order-content .goods-list .goods-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.order-list-page .order-list .order-item .order-content .goods-list .goods-item:last-child {
  margin-bottom: 0;
}
.order-list-page .order-list .order-item .order-content .goods-list .goods-item .goods-thumb {
  width: 50px;
  height: 50px;
  flex: none;
  border: 1px solid #d8d8d8;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  flex: none;
}
.order-list-page .order-list .order-item .order-content .goods-list .goods-item .goods-info {
  flex: auto;
  min-width: 0;
}
.order-list-page .order-list .order-item .order-content .goods-list .goods-item .goods-info .goods_name {
  width: 100%;
  min-width: 0;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 5px;
  color: #333;
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.order-list-page .order-list .order-item .order-content .goods-list .goods-item .goods-info .desc {
  font-size: 12px;
  color: #999;
  line-height: 18px;
}
.order-list-page .order-list .order-item .order-content .total-price {
  padding: 10px 0;
  text-align: right;
}
.order-list-page .order-list .order-item .order-content .total-price .label {
  font-size: 12px;
  color: #999;
}
.order-list-page .order-list .order-item .order-content .total-price .value {
  font-size: 14px;
  color: #ff0036;
  margin-left: 10px;
  font-weight: 600;
}
.order-list-page .order-list .order-item .order-foot {
  padding: 10px;
  border-top: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-list-page .order-list .order-item .order-foot .order-action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.order-list-page .order-list .order-item .order-foot .order-action .action-item {
  margin-left: 10px;
  height: 30px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.f-upload-file {
  width: 100%;
  background-color: #f7f7f7;
  border-radius: 20px;
}
.f-upload-file .upload-handle {
  height: 40px;
  padding: 10px 15px;
  font-size: 12px !important;
}
.f-upload-file .upload-handle .file-num {
  padding-left: 5px;
}
.f-upload-file .upload-tips {
  display: none;
}
.f-upload-file .file-list {
  width: 100%;
  max-width: 100% !important;
}
.f-upload-file .file-list .file-item {
  height: 40px;
  padding: 10px;
  margin-bottom: 0 !important;
}
.f-upload-file .file-list .file-item .status-icon,
.f-upload-file .file-list .file-item .del-icon {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.f-upload-file .file-list .file-item:last-child {
  margin-bottom: 15px !important;
}
