.banner{
	width: 100%;
	margin-top: 1px;
}
.banner img{
	width: 100%;
} 
.applyShop{
	width: 100px;
	height: 40px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	border:2px solid #fff;
	top: 70%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	line-height: 40px;
}
.applyShop:hover{
	color: #ccc;
	border:2px solid #ccc;
	cursor: pointer;
}
/*店铺列表 S*/
.container{
	width: 96%;
	min-width: 1200px;
	max-width: 1440px;
	margin: 0 auto;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
	display: flex;
	align-items: center;
	padding: 20px 0;
	margin-bottom: 0;
	font-size: 16px;
	color: #838383;
	line-height: 20px;
}

.breadcrumb-item {
	color: #64748b;
	text-decoration: none;
	transition: color 0.2s ease;
	display: inline-flex;
	align-items: center;
	line-height: 1.5;
}

.breadcrumb-item:hover {
	color: var(--color);
}

.breadcrumb-item.breadcrumb-current {
	color: #000;
	font-weight: normal;
	cursor: default;
	pointer-events: none;
	font-size: 16px;
	margin: 0;
}

.breadcrumb-separator {
	margin: 0 10px;
	color: #838383;
	font-size: 16px;
	line-height: 20px;
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

/* Left-Right Layout */
.shoplist-layout {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

/* Left Filter Sidebar */
.filter-sidebar {
	width: 280px;
	flex-shrink: 0;
	background: #ffffff;
	border-radius: 10px;
	padding: 15px;
	box-shadow: none;
	position: sticky;
	top: 70px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
}

.filter-header {
	margin-bottom: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid #dfe5ec;
}

.filter-main-title {
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0;
}

.filter-main-title i {
	display: none;
}

.filter-section {
	margin-bottom: 0;
}

.filter-section:last-of-type {
	margin-bottom: 0;
}

.filter-section + .filter-section {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid #dfe5ec;
}

.filter-title {
	font-size: 14px;
	font-weight: 600;
	color: #000000;
	margin: 0 0 10px 0;
	padding-bottom: 0;
	border-bottom: none;
}

.filter-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.filter-option {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 0;
	min-height: 32px;
	transition: all 0.2s ease;
	user-select: none;
}

.filter-option:hover {
	color: var(--color);
}

.filter-option input[type="checkbox"] {
	margin-right: 8px;
	margin-top: 0;
	margin-bottom: 0;
	cursor: pointer;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	vertical-align: middle;
	align-self: center;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 1px solid #d8dee8;
	border-radius: 2px;
	background-color: #ffffff;
	outline: none;
	box-shadow: none;
}

.filter-option input[type="checkbox"]:checked {
	border-color: var(--color);
	background-color: var(--color);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 10px 10px;
}

.filter-option input[type="checkbox"]:focus,
.filter-option input[type="checkbox"]:focus-visible,
.filter-option input[type="checkbox"]:active {
	outline: none;
	box-shadow: none;
}

.filter-option span {
	font-size: 14px;
	color: #333333;
	line-height: 1.5;
	transition: color 0.2s ease;
	display: inline-flex;
	align-items: center;
}

.filter-option:hover span {
	color: var(--color);
}

.filter-option input:checked + span {
	color: var(--color);
	font-weight: 500;
}

.filter-region {
	width: 100%;
	padding: 10px 16px;
	text-align: left;
	color: #64748b;
	cursor: pointer;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #ffffff;
	transition: all 0.2s ease;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	line-height: 1.5;
}

.filter-region:hover {
	border-color: var(--color);
	color: var(--color);
	background: rgba(37, 99, 235, 0.05);
}

.filter-region i {
	font-size: 12px;
	color: #94a3b8;
	transition: all 0.2s ease;
}

.filter-region:hover i {
	color: var(--color);
	transform: translateY(2px);
}

/* Right Content Area */
.shoplist-content {
	flex: 1;
	min-width: 0;
}

/* Shop list pagination (align with platformshop effect) */
.shoplist-content .pagesContainer {
	margin: 0;
	padding: 12px 0 20px;
}

.shoplist-content .pagesList {
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.shoplist-content .pagesList li {
	min-height: 36px;
}

.shoplist-content .pagesList .pagesNumber {
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	line-height: 36px;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	color: #64748b;
	font-size: 13px;
	font-weight: 500;
	box-shadow: none;
}

.shoplist-content .pagesList .pagesNumber.now {
	background: var(--color);
	border-color: var(--color);
	color: #ffffff;
	font-weight: 600;
	box-shadow: 0 2px 8px color-mix(in srgb, var(--color) 35%, transparent);
}

.shoplist-content .pagesList .prevPages,
.shoplist-content .pagesList .nextPages {
	min-width: 90px;
	height: 36px;
	padding: 0 14px;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	color: #244462;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
}

.shoplist-content .pagesList .prevPages:hover,
.shoplist-content .pagesList .nextPages:hover {
	border-color: color-mix(in srgb, var(--color) 28%, #e2e8f0);
	background: color-mix(in srgb, var(--color) 8%, #ffffff);
	color: var(--color);
}

.shoplist-content .pagesList .prevPages.is-disabled,
.shoplist-content .pagesList .nextPages.is-disabled {
	border-color: #e2e8f0;
	background: #f8fafc;
	color: #cbd5e1;
	cursor: not-allowed;
	pointer-events: none;
	box-shadow: none;
}

/* Sort Select in Filter Sidebar */
.filter-section .sort-select {
	display: none;
}

.sort-option-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.sort-option-list .sort-option {
	width: 100%;
	padding: 0;
	min-height: 32px;
	border: none;
	background: transparent;
	color: #333333;
	font-size: 14px;
	cursor: pointer;
	text-align: left;
	line-height: 32px;
	font-family: inherit;
	transition: color 0.2s ease;
}

.sort-option-list .sort-option:hover {
	color: var(--color);
}

.sort-option-list .sort-option:focus-visible {
	outline: 1px solid rgba(var(--rgba4), 0.3);
	outline-offset: 2px;
	border-radius: 2px;
}

.sort-option-list .sort-option.is-active {
	color: #333333;
	font-weight: 400;
}
.shoplistInfoLis{
	width: 100%;
	background-color: #ffffff;
	box-shadow: none;
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	padding: 15px 20px 18px;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.shoplistInfoLis:hover {
	border-color: #dfe6ef;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

/* First Row: Logo and Shop Name */
.shoplistInfoLis .shopHeader {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	padding: 0;
	border-radius: 0;
	background: transparent;
}

.shoplistInfoLis .shopHeader .logoImgBox {
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	cursor: pointer;
	display: block;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background-color: #ffffff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* 直播中：头像容器（标签悬浮叠在头像靠下） */
.shoplistInfoLis .shopHeader .shopLogoLiveColumn {
	position: relative;
	width: 86px;
	height: 86px;
	flex-shrink: 0;
	cursor: pointer;
	outline: none;
	overflow: visible;
}

.shoplistInfoLis .shopHeader .shopLogoLiveColumn:focus-visible {
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(254, 44, 85, 0.35);
}

.shoplistInfoLis .shopHeader .shopLogoLiveBadge {
	position: absolute;
	left: 50%;
	bottom: 5px;
	transform: translateX(-50%);
	z-index: 3;
	display: inline-block;
	padding: 2px 7px;
	font-size: 10px;
	line-height: 1.3;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(90deg, #fe2c55, #ff6b9d);
	border-radius: 3px;
	white-space: nowrap;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.25);
	user-select: none;
	pointer-events: none;
}

/* 直播中：外圈单色 + 径向透明度（内实外虚）+ 呼吸缩放 */
.shoplistInfoLis .shopHeader .shopLogoLiveWrap {
	position: absolute;
	left: 0;
	top: 0;
	width: 86px;
	height: 86px;
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shoplistInfoLis .shopHeader .shopLogoLiveRing {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 86px;
	height: 86px;
	margin-left: 0;
	margin-top: 0;
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(1);
	transform-origin: center center;
	/* 由内向外：内侧色深（不透明度高），外侧渐浅至透明（单色 #fe2c55） */
	background: radial-gradient(
		circle at center,
		rgba(254, 44, 85, 0) 0%,
		rgba(254, 44, 85, 0) 66%,
		rgba(235, 28, 72, 0.98) 72%,
		rgba(254, 44, 85, 0.62) 84%,
		rgba(254, 44, 85, 0.22) 94%,
		rgba(254, 44, 85, 0) 100%
	);
	animation: shoplistLiveRingPulse 1.85s ease-in-out infinite;
}

.shoplistInfoLis .shopHeader .shopLogoLiveRing::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 4px;
	right: 4px;
	bottom: 4px;
	border-radius: 50%;
	background: #fff;
}

.shoplistInfoLis .shopHeader .logoImgBox.logoImgBox--liveInner {
	position: relative;
	z-index: 1;
	width: 74px;
	height: 74px;
	margin: 0;
	border-radius: 50%;
	border: 2px solid #fff;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
	transform: scale(1);
	transform-origin: center center;
}

@keyframes shoplistLiveRingPulse {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		transform: translate(-50%, -50%) scale(1.07);
	}
}

@keyframes shoplistLiveInnerPulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.93);
	}
}

.shoplistInfoLis .shopHeader .logoImgBox .shoplogo {
	display: none;
}

.shoplistInfoLis .shopHeader .shopInfo {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	min-width: 0;
}

.shoplistInfoLis .shopHeader .shopMessage {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
	gap: 16px;
}

.shoplistInfoLis .shopHeader .shopNameRow {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 8px;
	flex: 1;
	min-width: 0;
}

.shoplistInfoLis .shopHeader .shopName {
	color: #000000;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	flex: 0 1 auto;
	min-width: 0;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: middle;
	cursor: pointer;
}

.shoplistInfoLis .shopHeader .shopActions {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.shoplistInfoLis .shopHeader .collect {
	height: 36px;
	min-width: 126px;
	padding: 0 16px;
	border: 1px solid var(--color);
	border-radius: 100px;
	background: #ffffff;
	color: var(--color);
	font-size: 14px;
	line-height: 34px;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.shoplistInfoLis .shopHeader .collect:hover {
	background: color-mix(in srgb, var(--color) 8%, #ffffff);
}

.shoplistInfoLis .shopHeader .collect span {
	font-size: 14px;
	line-height: 1;
}

.shoplistInfoLis .shopHeader .shopMetaRow {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.shoplistInfoLis .shopHeader .shopLocation {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	line-height: 16px;
	color: #838383;
}

.shoplistInfoLis .shopHeader .shopMetaDivider {
	width: 1px;
	height: 14px;
	background: #838383;
	flex-shrink: 0;
}

.shoplistInfoLis .shopHeader .shopCountryFlag {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	object-fit: contain;
}

.shoplistInfoLis .shopHeader .shopReview {
	display: flex;
	align-items: center;
	gap: 2px;
	font-size: 12px;
	line-height: 16px;
	color: #838383;
}

.shoplistInfoLis .shopHeader .shopReviewScore {
	color: var(--color);
	font-weight: 600;
	font-style: normal;
}

.shoplistInfoLis .shopHeader .shopReviewCount {
	text-decoration: underline;
	text-underline-offset: 1px;
}

.shoplistInfoLis .shopHeader .shopBadges {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	margin-left: 20px;
}

.shoplistInfoLis .shopHeader .shopType,
.shoplistInfoLis .shopHeader .shopLevelId {
	box-sizing: border-box;
	display: inline-block;
	height: 16px;
	line-height: 16px;
	padding: 0 8px;
	font-size: 8px;
	font-weight: 600;
	border-radius: 100px;
	min-width: 48px;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

/* Official Store - 官方店铺 */
.shoplistInfoLis .shopHeader .shopType {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: white;
	border: none;
	box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.shoplistInfoLis .shopHeader .shopLevelId.shop-header-level {
	background: transparent;
	padding: 0;
	height: auto;
	line-height: normal;
	min-width: 0;
	border-radius: 0;
	margin-right: 0;
}

.shoplistInfoLis .shopHeader .shop-level-pill {
	position: relative;
	display: inline-flex;
	align-items: center;
	box-sizing: border-box;
	height: 16px;
	line-height: 16px;
	padding: 5px 6px 5px 15px;
	border-radius: 999px;
	overflow: visible;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}

.shoplistInfoLis .shopHeader .shop-header-level--1 .shop-level-pill {
	background: linear-gradient(90deg, #FFA179 0%, #EB5E22 51.67%);
}

.shoplistInfoLis .shopHeader .shop-header-level--2 .shop-level-pill {
	background: linear-gradient(90deg, #01EDFF 0%, #07A7F5 51.67%);
}

.shoplistInfoLis .shopHeader .shop-header-level--3 .shop-level-pill {
	background: linear-gradient(90deg, #CE62D7 0%, #8C3EA0 51.67%);
}

.shoplistInfoLis .shopHeader .shop-level-icon-wrap {
	position: absolute;
	left: -10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	box-sizing: border-box;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.shoplistInfoLis .shopHeader .shop-level-icon {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
	flex-shrink: 0;
	transform: translate(-20%, 0%);
}

.shoplistInfoLis .shopHeader .shop-level-name {
	position: relative;
	z-index: 1;
	font-size: 12px;
	transform: scale(0.8);
	line-height: 1.3;
	color: #ffffff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
	font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
	transform-origin: left center;
}

/* Second Row: Products */
.shoplistInfoLis .shopContent {
	display: flex;
	margin-top: 4px;
}

.shoplistInfoLis .shopRight {
	flex: 1;
	display: flex;
	min-width: 0;
	gap: 15px;
}
.shoplistInfoLis .shopRight .itemsList {
	flex: 0 0 calc((100% - 45px) / 4);
	width: calc((100% - 45px) / 4);
	min-width: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	cursor: pointer;
	box-sizing: border-box;
}
.shoplistInfoLis .shopRight .itemsList:last-child {
	border: none;
}
.shoplistInfoLis .itemsList .itemsThumb {
	width: 100%;
	height: 180px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.shoplistInfoLis .itemsList .itemsThumb img {
	max-width: 100%;
	max-height: 100%;
	margin: 0;
	display: block;
	object-fit: contain;
	border-radius: 0;
}
.shoplistInfoLis .itemsList .itemsTitle {
	width: 230px;
	max-width: 100%;
	min-height: 36px;
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 18px;
	font-weight: 500;
	color: #000000;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.shoplistInfoLis .itemsList .itemsInfo {
	margin-top: 8px;
	line-height: 18px;
	width: 230px;
	max-width: 100%;
	text-align: left;
}
.shoplistInfoLis .itemsList .itemsInfo {
	color: var(--color);
	font-size: 16px;
	font-weight: 800;
	display: block;
	margin: 0;
	text-align: left;
	margin-top: 8px;
}
.shoplistInfoLis .itemsList .itemsInfo .fr {
	font-size: 12px;
	color: #AFAFAF;
	display: inline-block;
	height: 20px;
	width: 85px;
	text-align: right;
	overflow: hidden;
	white-space: nowrap;
}
/*店铺列表 E*/
/*地址模态框*/
.addressesModal{
  width: 100%;
  height: 100%;
}
.addressesModal .addressesModalMasker{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.2);
}

.addressesModal .addressesModalContent{
  	position: absolute;
  	background-color: #fff;
  	font-size: 14px;
	width: 300px;
  	top: 270px;
  	left: 50%;
	border-radius: 4px;
  	transform: translateX(-174%);
  	box-shadow: 0 0 0 1px #ccc;
}
.addressesModal .addressesModalContent .addressesModalText{
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-indent: 15px;
	border-bottom: 1px dashed #eee;
	font-size: 14px;
	color: var(--color);
}
.addressesModal .addressesModalContent .addressesModal{
	width: 330px;
	height: 200px;
	overflow: auto;
}
.addressesModal .addressesModalContent .addressesModalBox{
	width: 100%;
	height: 200px;
	overflow: hidden;
}
.addressesModal .addressesModalContent .addressesModalDesc{
	text-indent: 15px;
	line-height: 30px;
	cursor: pointer;
}
.addressesModal .addressesModalContent .addressesModalDesc:hover{
	background-color: #eee;
}


/*搜索为空时候展示*/
.emptyList{
	width: 100%;
	height: 300px;
}
.emptyList .emptyModal{
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.emptyList .emptyModal img{
	width: 120px;
}
.emptyList .emptyModal .emptyWarning{
	color: var(--color);
	margin-bottom: 30px;
	font-size: 12px;
	margin-top: 15px;
}
.emptyList .emptyModal .emptySearch .emptyReSearch{
	font-weight: bold;
	font-size: 14px;
	color: var(--color);
}
.emptyList .emptyModal .emptySearch{
	line-height: 38px;
}
.emptyList .emptyModal .emptySearch input{
	width: 300px;
    height: 36px;
    border: 2px solid var(--color);
    text-indent: 1em;
    background-color: #F4F4F4;
}
.emptyList .emptyModal .emptySearch .emptySearchItems,.emptyList .emptyModal .emptySearch .emptySearchShops{
	display: inline-block;
	width: 96px;
    height: 38px;
    background-color: var(--color);
    border: 1px solid var(--color);
    color: #fff;
    font-size: 15px;
    font-weight: bold;
}

.shopLevelId{
	display: inline-block;
	background: var(--color);
	height: 15px;
	font-size: 10px;
	line-height: 15px;
	padding: 0 3px;
	border-radius: 2px;
	color: white;
	/* position: relative;
	top: -13px; */
	margin-right: 5px;
	box-sizing: border-box;
}