.sell-main-container p {
  margin-bottom: 0;
}

/* banner 头部  */
.banner {
  height: 412px;
  width: 100%;
  background: #F7F7F7 url('/cosmetic/images/highconcern/banner.png') no-repeat center center;
  background-size: auto 100%;
  position: relative;
}
.banner-content-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-content-right {
  width: 50%;
  height: 100%;
}
.banner .shopping-cart {
  position: absolute;
  right: 23px;
  top: 41px;
  width: 50px;
  height: 50px;
  border: 1px solid #E5E5E5;
  border-radius: 2px;
}
.shopping-cart-box {
  width: 100%;
  height: 100%;
  background: url('/cosmetic/images/highconcern/cart.png') no-repeat center center;
  background-size: 100% 100%;
  cursor: pointer;
}
.cart-num {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 24px;
  height: 24px;
  background-color: #CB2026;
  border-radius: 50%;
  color: #FFF;
  font-size: 12px;
  text-align: center;
  line-height: 24px;
}
.banner-content {
  width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
  height: 100%;
  display: flex;
}
.ban-tit {
  font-size: 40px;
  font-weight: bold;
  font-family: Helvetica, Helvetica;
}
.ban-txt {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #666666;
  margin-bottom: 12px !important;
}
.ban-txt-num {
  font-size: 12px;
  color: #F33472;
  margin-right: 10px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #FEEAF1;
  border-radius: 50%;
  text-align: center;
  line-height: 16px;
}
.shopping-cart-content {
  position: absolute;
  right: 16px;
  top: 100px;
  width: 364px;
  max-height: calc(100vh - 270px);
  overflow-y: auto;
  background-color: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}

.shopping-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.shopping-cart-header-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  flex: 1;
}
#shoppingCartClose {
  position: relative;
  bottom: 15px;
  left: 10px;
}

.shopping-cart-content.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.shopping-list {
  margin-top: 20px;
}
.shop-category-name {
  font-weight: bold;
  font-size: 16px;
  color: #F33472;
  padding-bottom: 10px;
  border-bottom: 2px solid #F33472;
}
.shop-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  margin-top: 16px;
  cursor: pointer;
  user-select: none;
}
.shop-country {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  padding-left: 24px;
  margin-top: 12px;
}
.shop-country-left {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}
.shop-line {
  width: 100%;
  height: 1px;
  background-color: #E5E5E5;
  margin: 20px 0;
}
.empty-img {
  width: 132px;
  height: 132px;
  margin: 0 auto;
  display: block;
}
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.cart-total-left {
  display: flex;
  align-items: center;
}
.cart-delete-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  margin-left: 18px;
  padding: 4px;
  border-radius: 2px;
}
.cart-delete-btn:hover {
  background-color: #F5F5F5;
}
.pay-btn {
  width: 100%;
  height: 40px;
  background: #F33472;
  border-radius: 2px;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  margin-top: 24px;
  cursor: pointer;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.pay-btn:hover {
  box-shadow: 0px 4px 15px 0px rgba(243, 52, 114, 0.3);
}
.pay-btn-disabled {
  background: #FEEAF1;
  cursor: not-allowed;
}

/* tab  */
.tab-box {
  background: #FEEAF1;
  height: 80px;
  display: flex;
  align-items: center;
}
.tab-box-content {
  width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.tab-item {
  flex: 1;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
}
.tab-item img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.tab-item-txt {
  font-size: 16px;
  color: #666666;
  font-weight: bold;
  font-size: 18px;
  color: #666666;
  transition: color 0.3s ease;
}

.tab-item.active {
  border-color: #F33472;
}

.tab-item.active .tab-item-txt {
  color: #F33472;
}

.tab-item {
  flex: 1;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

/* 内容区域样式  */
.substance-box, .category-box {
  width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  margin-top: 60px;
}

.sub-box {
  display: flex;
  flex-wrap: wrap;
}
.sub-list {
  width: 383px;
  height: 64px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 0 16px;
  cursor: pointer;
  /* transition: all 0.3s ease; */
  margin-right: 14px;
  margin-bottom: 16px;
  position: relative;
}
.sub-list:nth-child(3n) {
  margin-right: 0;
}
.country-box {
  position: absolute;
  top: calc(100% + 10px);
  width: 1178px;
  background-color: #ffffff;
  z-index: 100;
  box-shadow: 0px 4px 20px 0px rgba(204,204,204,0.5), inset 0px 4px 0px 0px #F33472;
  border: 1px solid #DEE2E6;
  border-radius: 8px;
  padding: 24px;
}
.sub-tit {
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.country-box-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.country-list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.country-name {
  font-size: 14px;
  user-select: none;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.country-list {
  width: 15%;
}
.request-more {
  width: 17%;
}
.sub-list-item-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  user-select: none;
}
.sub-list:hover {
  box-shadow: 0px 4px 20px 0px rgba(204,204,204,0.5);
}
.sub-list.active {
  background: #FEEAF1;
  border: 1px solid #F33472;
}
.sub-list.active .sub-arrow {
  transform: rotate(90deg);
}
.sub-list-item {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 95%;
}
.sub-name {
  font-size: 16px;
  font-weight: bold;
  font-size: 16px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 购物车中的物质名称和国家名称也使用省略号样式 */
.shop-sub-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sub-check {
  width: 14px;
  height: 14px;
}
.sub-arrow {
  font-size: 20px;
  color: #666666;
  transition: transform 0.3s ease;
}

/* category-box  */
.category-tab {
  display: flex;
  background: #F7F7F7;
  border-radius: 8px 8px 0 0;
  border-bottom: 2px solid #F33472;
  height: 48px;
  margin-bottom: 40px;
}
.category-tab-item {
  flex: 1;
  cursor: pointer;
  height: 100%;
  text-align: center;
  line-height: 48px;
  font-size: 14px;
  font-weight: bold;
  color: #666666 !important;
  border-radius: 8px 8px 0 0;
}
.cat-name {
  color: inherit;
}
.category-tab-item.active {
  background: #F33472;
  color: #FFFFFF !important;
}
.purchase-box {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.purchase-box-left span {
  font-weight: bold;
  font-size: 18px;
  color: #666666;
}
.purchase-box-right {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: #FA6634;
  border-radius: 2px;
  height: 40px;
  padding: 0 16px;
  position: relative;
}
.pur-tip {
  position: absolute;
  width: 400px;
  top: calc(-100% - 10px);
  right: 0;
  padding: 8px;
  border-radius: 6px;
  color: #ffffff;
  font-weight: normal !important;
  background: rgba(0,0,0,0.75);
  box-shadow: 0px 9px 28px 8px rgba(0,0,0,0.05), 0px 6px 16px 0px rgba(0,0,0,0.08), 0px 3px 6px -4px rgba(0,0,0,0.12);
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 14px;
}
.pur-tip-arrow {
  position: absolute;
  top: -11px;
  right: 50px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(0,0,0,0.7);
  opacity: 0;
  transition: all 0.3s ease;
}
.purchase-box-right:hover {
  box-shadow: 0px 4px 15px 0px rgba(243, 52, 114, 0.3);
}
.purchase-box-right:hover .pur-tip {
  opacity: 1;
}
.purchase-box-right:hover .pur-tip-arrow {
  opacity: 1;
}
.purchase-box-right img {
  width: 20px;
  height: 20px;
}
.purchase-box-right span {
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
}











/* FAQ  */
.faq-box {
  width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  margin-top: 88px;
}
.faq-tit {
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  margin-bottom: 32px !important;
}

/* FAQ列表样式 */

.faq-item {
  /* border-bottom: 1px solid #E5E5E5; */
  margin-bottom: 0;
  /* height: 68px; */
  background: #FFF8FA;
  box-shadow: inset 0px -1px 0px 0px #FFFFFF;
  /* padding: 0 24px; */
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #FEEAF1;
}

.faq-item.active .faq-question {
  background-color: #FEEAF1;
}

.faq-text {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  flex: 1;
  padding-right: 20px;
  height: 68px;
  line-height: 68px;
}

.faq-arrow {
  font-size: 20px;
  color: #666666;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(90deg);
  color: #F33472;
  content: "v";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #FAFAFA;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  padding: 20px 24px;
}

/* Our Services  */
.our-services {
  width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  margin-top: 100px;
}
.block-theme {
  color: #212121;
  font-weight: bold;
  font-size: 32px;
  line-height: 38px;
}
.our-services-block-container {
  padding: 30px 0;
  overflow: hidden;
}
.our-services-block {
  position: relative;
}
.our-services-carousel-item {
  display: flex;
}
.our-services-block-item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 280px;
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}
.our-services-block-item:hover {
  box-shadow: 0px 4px 20px 0px rgba(204, 204, 204, 0.5);
}
.our-services-block-item .tags-img {
  position: absolute;
  top: -11px;
  right: 12px;
  width: 48px;
  height: auto;
}
.our-services-block-item .item-bg {
  /* width: 300px; */
  height: 164px;
  border-radius: 4px 4px 0px 0px;
}
.our-services-block .swiper {
  width: 100%;
  height: 100%;
}

.our-services-block .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px !important;
  font-size: 18px;
  text-align: center;
  background: #fff;
}
.our-services-block-item-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 16px 20px 18px;
  text-align: left;
}
.our-services-block-item-bottom .theme {
  display: -webkit-box;
  overflow: hidden;
  color: #293a4c;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.our-services-block-item-bottom .more {
  position: relative;
  width: 55px;
  color: #F33472;
  font-size: 14px;
  line-height: 16px;
}
.our-services-block-item-bottom .more::after {
  position: absolute;
  top: 0.5px;
  margin-left: 8px;
  font-size: 15px;
  content: "→";
  transition: margin-left 0.3s ease;
}
.our-services-block-item-bottom .more:hover::after {
  margin-left: 12px;
}
.our-services-block-container .swiper-button-next,
.our-services-block-container .swiper-button-prev {
  position: absolute;
  top: 8.2%;
  right: 0;
  width: 32px;
  height: 32px;
  background-image: none;
  border: 1px solid #293a4c;
  border-radius: 50%;
}
.our-services-block-container .swiper-button-prev {
  right: 42px;
  left: auto;
}
.our-services-block-container .swiper-button-next .iconbanner_arrowr,
.our-services-block-container .swiper-button-prev .iconbanner_arrowr {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #293a4c;
  font-size: 14px;
  transform: translate(-62%, -46%);
}
.our-services-block-container .swiper-button-prev .iconbanner_arrowr {
  display: inline-block;
  transform: rotate(180deg) translate(34%, 51%);
}
.our-services-block-container .swiper-button-next:hover,
.our-services-block-container .swiper-button-prev:hover {
  background: #F33472;
  border: 1px solid #F33472;
}
.our-services-block-container .swiper-button-next:hover .iconbanner_arrowr,
.our-services-block-container .swiper-button-prev:hover .iconbanner_arrowr {
  color: #fff;
}

/* 联系我们  */
.contact-us {
  background: url('/cosmetic/images/highconcern/bg-bottom.png') no-repeat center center;
  background-size: 100% 100%;
  height: 252px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-us-tit {
  font-size: 32px;
  font-weight: bold;
  color: #FFFFFF;
}
.contact-us-block {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.contact-us-block p {
  width: 340px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 20px;
}
.contact-us-phone {
  background: #FFFFFF;
  color: #F33472 !important;
}
.contact-us-phone  img {
  width: 20px;
  height: 20px;
}
.contact-us-email {
  background: rgba(255,255,255,0.1);
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
}
.contact-us-email img {
  width: 20px;
  height: 20px;
  margin-top: 5px;
}

.purchase-tit {
  margin-bottom: 24px !important;
}
.pur-sub-box {
  background: #F7F7F7;
  padding: 16px;
}
.pur-sub-box-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}
.pur-sub-box-sub span {
  color: #F33472;
  font-size: 16px;
}
.pur-country-box {
  display: flex;
  flex-wrap: wrap;
}
.pur-country-sub {
  width: 25%;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px !important;
  cursor: pointer;
  user-select: none;
}
.pur-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px !important;
  font-size: 16px;
}
.pur-buy-btn {
  width: 100%;
  height: 40px;
  background: #F33472;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  margin-top: 20px !important;
  cursor: pointer;
}
.pur-buy-btn:hover {
  box-shadow: 0 4px 12px rgba(243, 52, 114, 0.3);
}
.pur-buy-btn-disabled {
  background: #FEEAF1;
}
.pur-buy-tip {
  font-size: 14px;
  color: #666666;
  margin: 20px 0 20px 0 !important;
}

.modal-overlay-hide {
  display: none;
  opacity: 0 !important;
}
/* Modal弹窗样式 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
  animation: fadeIn 0.3s ease-out forwards;
  opacity: 1 !important;
}

.sell-modal-container {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-width: 720px;
  width: 90%;
  max-height: 90vh;
  /* overflow: hidden; */
  transform: scale(0.9) translateY(20px);
  animation: modalSlideIn 0.3s ease-out forwards;
}

.sell-modal-body {
  padding: 24px;
  max-height: calc(90vh - 180px);
  overflow-y: auto;
}

.sell-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid #E5E5E5;
}

.sell-modal-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  margin: 0;
}

.sell-modal-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.sell-modal-close-btn span {
  font-size: 24px;
  color: #999999 !important;
  position: relative;
  bottom: 2px;
}

.sell-modal-close-btn:hover {
  background-color: #F5F5F5;
  color: #666666;
}

.sell-modal-footer {
  display: flex;
  padding: 16px 24px 24px 24px;
}

.modal-btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.modal-btn-cancel {
  background-color: #F5F5F5;
  color: #666666;
}

.modal-btn-cancel:hover {
  background-color: #E5E5E5;
}

.modal-btn-confirm {
  background-color: #F33472;
  color: #FFFFFF;
}

.modal-btn-confirm:hover {
  background-color: #E02E66;
}

.btn-cancel {
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #E5E5E5;
  background-color: #FFFFFF;
  color: #666666;
  transition: all 0.2s ease;
}

.btn-cancel:hover {
  background-color: #F5F5F5;
  border-color: #D0D0D0;
}

.btn-confirm {
  padding: 12px 19px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background-color: #F33472;
  color: #FFFFFF;
  transition: all 0.2s ease;
}

.btn-confirm:hover {
  background-color: #E02E66;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(243, 52, 114, 0.3);
}

/* 动画效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes modalSlideOut {
  from {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  to {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }
}

.modal-overlay.fade-out {
  animation: fadeIn 0.2s ease-out reverse;
}

.modal-container.slide-out {
  animation: modalSlideOut 0.2s ease-out forwards;
}

.request-sub-modal {
  width: 480px;
}
.req-sub-txt {
  font-size: 16px;
  color: #293A4C;
  margin-bottom: 20px !important;
}
.req-sub-name {
  font-weight: bold;
  font-size: 16px;
  color: #F33472;
  background: #F7F7F7;
  padding: 16px;
  margin-bottom: 20px !important;
}
.req-sub-form-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px !important;
}
.req-sub-form-item input {
  width: 100%;
  height: 44px;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  color: #333333;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.req-sub-form-item input:hover,
.req-sub-form-item input:focus {
  border-color: #E44245;
}

.req-sub-form-item textarea {
  width: 100%;
  min-height: 80px;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  padding: 12px;
  font-size: 14px;
  color: #333333;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  resize: vertical;
}

.req-sub-form-item textarea:hover,
.req-sub-form-item textarea:focus {
  border-color: #E44245;
}

.req-label {
  font-size: 16px;
  color: #293A4C;
  margin-bottom: 6px;
}

.req-label .required {
  color: #E44245;
  margin-left: 2px;
}

.req-sub-form-item.error input,
.req-sub-form-item.error textarea {
  border-color: #E44245;
}

.error-message {
  color: #E44245;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.req-sub-form-item.error .error-message {
  display: block;
}