.seller-wrap.card {
  background: var(--background-1);
  box-shadow: 0px 1px 3px var(--shadow-1);
  padding: 16px 0 16px 0;
  margin-bottom: 17px;
  width: 100%;
}
.seller-wrap {
  padding: 20px 0 24px;
}
.seller-wrap h2 {
  font-weight: 700;
  font-size: 14px;
  color: var(--foreground-1);
  margin-bottom: 13px;
}

.seller-wrap .seller-border {
  border: 1px solid var(--stroke-2);
  margin: 16px 20px 0 20px;
}

/* 商店連結 */
.seller-wrap .store-link{
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  color: var(--foreground-1);
  padding-left: 20px;
  padding-right: 14px;
  margin-bottom: 12px;
}
.seller-wrap .store-link img{
  margin-right: 4px;
}

.seller-wrap .store-link.nolink{ /*無商店頁*/
  background-image: none;
  cursor: default;
}
.seller-wrap .store-link.nolink:hover{
  text-decoration: none;
}

/* 賣家資訊 */
.seller-wrap .seller-info{
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-left: 20px;
  margin-right: 20px;
  padding: 0;
}
.seller-wrap .seller-info .seller-info-right,
.seller-wrap .seller-info .seller-info-left{
  display: flex;
  align-items: center;
}
.seller-wrap .seller-info .seller-img{
  border: 1px solid var(--border-color-BorderOGray2);
  border-radius: 100%;
  overflow: hidden;
  margin-right: 10px;
}
.seller-wrap .seller-info .seller-name{
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--foreground-1);
  font-weight: 700;
  margin-right: 4px;
}
.seller-wrap .seller-info .seller-name:hover{
  text-decoration: none;
}
.seller-wrap .seller-info .seller-cb{
  font-size: 14px;
  color: #E51045;
  color: var(--text-color-Negative);
}
.seller-wrap .seller-info .seller-id{
  font-size: 13px;
  color: var(--foreground-4);
}
.seller-wrap .seller-info .seller-state{
  font-size: 10px;
  color: var(--text-color-BigGoB);
  background-color: var(--bg-color-BigGoB1);
  border-radius: 16px;
  padding: 3px 4px;
  margin-right: 10px;
}
.seller-wrap .seller-info .seller-detail{
  display: inline-flex;
  font-size: 13px;
  color: var(--foreground-4);
}
.seller-wrap .seller-info .seller-detail b{
  color: var(--foreground-1);
  margin-right: 4px;
}
.seller-wrap .seller-info .seller-detail span{
  margin-right: 16px;
  line-height: 14px;
}

/* 優惠活動 */
.seller-wrap .seller-promo h2{
  margin-left: 20px;
}

.seller-wrap .seller-promo hr{ /*分隔線(pc版賣家頁才要左右20)*/
  margin-top: 18px;
  margin-bottom: 18px;
  border-color: var(--stroke-2);
}
.seller-wrap.card .seller-promo hr{
  margin-left: 20px;
  margin-right: 20px;
}

.seller-wrap .seller-promo .empty-promo-text{
  font-weight: 500;
  font-size: 13px;
  color: var(--foreground-4);
}

.seller-wrap .seller-promo .seller-promo-page-btn-wrap{   /*切換按鈕*/
  margin-right: 20px;
  user-select: none;
}
.seller-wrap .seller-promo .prev,
.seller-wrap .seller-promo .next{
  width: 22px;
  height: 22px;
  cursor: pointer;
  border: 0;
  outline: none;
  background-color: unset;
  background-position: center;
  background-size: 7px 12px;
  background-repeat: no-repeat;
  background-image: url(/images/ic_arrow_green_go@2x.png);
  border-radius: 100%;
}
.seller-wrap .seller-promo .prev{
  transform: scaleX(-1);
  margin-right: 16px;
}
.seller-wrap .seller-promo .prev:hover,
.seller-wrap .seller-promo .next:hover{
  background-color: var(--background-3);
}

.seller-promo-scroll{
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
}
.seller-wrap .seller-promo-wrap{
  display: flex;
}
.seller-wrap .seller-promo-wrap::after{ /* scroll right間距 */
  content: '';
  display: block;
  min-width: 10px;
  height: 1px;
}
.seller-wrap .promo-item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #FFEBF0;
  background-color: var(--bg-color-Negative1);
  border-radius: 10px;
  padding: 12px;
  margin-right: 10px;
  position: relative;
  overflow: hidden;
  width: 275px;
  min-width: 275px;
}
[data-theme='dark'] .seller-wrap .promo-item{
  background-color: #2D131F;
}
.seller-wrap.card .promo-item{
  width: 258px;
  min-width: 258px;
}
.seller-wrap .promo-item .title{
  font-weight: 700;
  font-size: 13px;
  color: var(--foreground-2);
  margin-bottom: 6px;
}
.seller-wrap .promo-item .content{
  font-weight: 400;
  font-size: 13px;
  color: var(--foreground-3);
  margin-bottom: 6px;
}
.seller-wrap .promo-item .time{
  font-size: 12px;
  color: var(--text-color-Negative);
}
.seller-wrap .promo-more{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 13px;
  color: var(--foreground-2);
  background-color: #FFEBF0;
  background-color: var(--bg-color-Negative1);
  min-width: 137px;
  cursor: pointer;
}
[data-theme='dark'] .seller-wrap .promo-more{
  background-color: #2D131F;
}
.seller-wrap .promo-more:hover{
  text-decoration: none;
}
.seller-wrap .promo-more::before{
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(/images/ic_arrow_36@2x.png);
  background-repeat: no-repeat;
  background-size: 36px;
  background-position: center;
}

.seller-wrap .promo-item::before,
.seller-wrap .promo-item::after{
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: var(--background-1);
  position: absolute;
  top: -8px;
  right: 55px;
}
.seller-wrap .promo-item::after{
  top: auto;
  bottom: -8px;
}

.seller-wrap .promo-item:hover,
.seller-wrap .promo-more:hover{
  background-color: #FFEBF0;
  background-color: var(--bg-color-Negative1);
}

[data-theme='dark'] .seller-wrap .promo-item:hover,
[data-theme='dark'] .seller-wrap .promo-more:hover{
  background-color: #2D131F;
}

/* 關於賣家 */
.seller-wrap .about-seller{
  font-size: 14px;
  color: var(--foreground-3);
  background-color: var(--background-2);
  border-radius: 6px;
  padding: 18px 16px;
  margin-top: 18px;
  margin-left: 20px;
  margin-right: 20px;
}

/* 關於賣家popup */
.sellerPage-about-seller {
  color: var(--foreground-3);
  font-size: 14px;
  line-height: 20px;
  align-items: center;
}
.sellerPage-about-seller-wrap .moreAbout-wrap {
  justify-content: center;
}
.sellerPage-about-seller-wrap .moreAbout {
  color: var(--foreground-3);
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  gap: 8px;
  height: 31px;
  font-size: 13px;
  line-height: 19px;
  cursor: pointer;
}
.sellerPage-about-seller-wrap .moreAbout:hover {
  color: var(--foreground-1);
}

.sellerPage-about-seller-wrap .moreAbout:hover i{
  filter: var(--foreground-1);
}
.sellerPage-about-seller .gradient {
  -webkit-mask: linear-gradient(#000 70%, transparent);
}
.sellerPage-about-seller #shopInfo::-webkit-scrollbar{
	width: 15px;
}
.sellerPage-about-seller #shopInfo::-webkit-scrollbar-thumb{
  width: 7px;
  border-radius: 6px;
}
*/

/* 商店頁 優選賣家 */
.seller-wrap.store-page-card {
  width: 100%;
  background: var(--bg-color-BgWhite);
  box-shadow: 0px 1px 3px var(--shadow-1);
  border: 1px solid var(--stroke-2);
  padding: 16px 0;
  margin-bottom: 12px;
}
.seller-wrap.store-page-card .seller-info{
  flex-direction: column;
  align-items: flex-start;
}
.seller-wrap.store-page-card .seller-info .seller-detail{
  margin-top: 15px;
  margin-bottom: 16px;
}
.seller-wrap.store-page-card .seller-info .seller-info-right,
.seller-wrap.store-page-card .seller-info ._biggo-btn{
  width: 100%;
}
.seller-info .seller-info-right ._biggo-btn{
  padding: 0 16px;
}
.seller-wrap.store-page-card .promo-more{
  width: 100%;
  min-width: auto;
}
.seller-wrap.store-page-card .seller-promo-wrap::after{
  display: none;
}

@media (min-width: 1920px){
  .seller-wrap.card{
    max-width: 1055px;
  }
}

@media (max-width: 768px){
  .seller-wrap.card{
    margin-top: 14px;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 0;
    border-radius: 10px;
    padding: 20px 0 17px;
  }
  .seller-wrap {
    padding: 16px 0;
  }

  .seller-wrap .seller-info{
    flex-direction: column;
    align-items: flex-start;

    padding: 0 16px;
    margin-left: 0px;
    margin-right: 0px;
    gap: 10px;
  }

  .seller-wrap .seller-info .seller-id{
    margin-right: 2px;
  }
  .seller-wrap .seller-info .seller-name{
    font-size: 14px;
  }
  .seller-wrap .seller-info .seller-cb{
    font-size: 12px;
  }

  .seller-wrap .seller-info .seller-info-right,
  .seller-wrap .seller-info ._biggo-btn{
    width: 100%;
  }

  .seller-wrap.card .seller-promo hr{
    margin-left: 0px;
    margin-right: 0px;
  }

  .seller-wrap .seller-promo .seller-promo-page-btn-wrap{
    display: none;
  }

  .seller-promo-scroll{
    -ms-overflow-style: none; /* 隱藏scroll for Internet Explorer, Edge */
    scrollbar-width: none; /* 隱藏scroll for Firefox */
    overflow-x: auto;
    margin-right: 0;
    margin-left: 0;
  }
  .seller-promo-scroll::-webkit-scrollbar {
    display: none; /* 隱藏scroll for Chrome, Safari, and Opera */
  }
  .seller-wrap .seller-promo-wrap{
    padding-left: 20px;
  }

  .seller-wrap .about-seller{
    margin-top: 16px;
  }

  /* 優選賣家 */
  .seller-wrap.store-page-card .seller-info{
    padding: 0 16px 0;
  }
  .seller-wrap.store-page-card .seller-promo{ /*優選賣家mweb不用出promo*/
    display: none;
  }

}

