@charset "utf-8";
/* CSS Document */
/* 全局控制 */
body {
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-family: "微软雅黑", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
	background-color: #f8f9fa;
	color: #333333;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	line-height: 1.6;
}
/* 重置浏览器默认样�?*/
h1,h2,h3,ul,li,dl,dt,dd,p,img,input {
	margin: 0;
	padding: 0;
	list-style: none;
	border: none;
	outline: none;
}

/* 滚动条样�?*/
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #f0f0f0;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb {
	background: rgba(92,107,192,0.5);
	border-radius: 4px;
	transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(92,107,192,0.8);
}

/* 公共样式 */
a {
	text-decoration: none;
	transition: all 0.3s ease;
}

a:link,a:visited {
	color: #333;
}

a:hover {
	color: #5c6bc0;
}

/* siteNavWrap */
.siteNavWrap {
	width: 100%;
	height: 40px;
	line-height: 40px;
	background: #ffffff;
	border-bottom: 1px solid #e0e0e0;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
}

/* siteNav */
.siteNav {
	width: 100%;
	max-width: 1800px;
	height: 40px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #ffffff;
	padding: 0 20px;
}

.siteNav a:link,.siteNav a:visited {
	color: #666666;
	text-decoration: none;
	font-size: 13px;
	transition: all 0.3s ease;
}

.siteNav a:hover {
	color: #5c6bc0;
	text-decoration: none;
	transform: translateY(-2px);
}

/* -quickMenu- */
.quickMenu {
	height: 40px;
	display: flex;
	align-items: center;
}

.quickMenu li {
	height: 40px;
	padding: 0 16px;
	position: relative;
	transition: all 0.3s ease;
}

.quickMenu li:hover {
	transform: translateY(-2px);
}

.quickMenu li:not(:last-child)::after {
	content: '|';
	position: absolute;
	right: 0;
	color: #e0e0e0;
}

.icon1,.icon2,.icon3,.icon4 {
	position: relative;
	top: 3px;
	margin-right: 5px;
	transition: all 0.3s ease;
}

.icon3 {
	right: 0;
}

#myShop {
	width: 70px;
	padding-right: 14px;
	cursor: pointer;
	position: relative;
}

#myShop::after {
	content: '�?;
	position: absolute;
	right: 0;
	top: 0;
	font-size: 10px;
	transition: all 0.3s ease;
}

#myShop:hover::after {
	transform: rotate(180deg);
}

#ulshopconceal {
	width: 120px;
	overflow: hidden;
	border: 1px solid #e0e0e0;
	background: #ffffff;
	padding: 10px 0;
	display: none;
	position: absolute;
	z-index: 1001;
	left: 0;
	top: 100%;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	border-radius: 4px;
	margin-top: 5px;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}

#myShop:hover #ulshopconceal {
	display: block;
}

#ulshopconceal li {
	padding: 0 20px;
	width: 100%;
	height: 30px;
	line-height: 30px;
	white-space: nowrap;
	transition: all 0.3s ease;
}

#ulshopconceal li:hover {
	background: #f5f5f5;
	padding-left: 25px;
}

#ulshopconceal li::after {
	display: none;
}

.quickMenu .phone {
	width: 74px;
}

/* header */
#header {
	width: 100%;
	max-width: 1800px;
	height: 100px;
	margin: 0 auto;
	padding: 20px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	border-radius: 8px;
	margin-top: 10px;
}

#header h1 {
	width: 200px;
	height: 60px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

#header h1:hover {
	transform: scale(1.05);
}

#header h1 a {
	display: block;
	width: 100%;
	height: 100%;
}

#header h1 img {
	max-height: 100%;
	max-width: 100%;
	transition: all 0.3s ease;
}

.provice {
	width: 130px;
	padding: 0 30px;
	transition: all 0.3s ease;
}

.provice:hover {
	transform: translateY(-2px);
}

.provinceNow {
	width: 55px;
	font-size: 16px;
	font-weight: 600;
	color: #333333;
	margin-bottom: 5px;
	transition: all 0.3s ease;
}

.provice .province01 span {
	color: #999;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	transition: all 0.3s ease;
}

.provice .province01 span:hover {
	color: #5c6bc0;
	transform: translateX(5px);
}

.provice .province01 span img {
	display: inline-block;
	position: relative;
	top: 2px;
	margin-left: 5px;
	transition: all 0.3s ease;
}

.telphone {
	width: 284px;
	height: 56px;
	margin-top: 5px;
	padding-top: 8px;
	transition: all 0.3s ease;
}

.telphone:hover {
	transform: translateY(-2px);
}

.searchWrap {
	flex: 1;
	max-width: 500px;
	margin: 0 40px;
}

.search {
	width: 100%;
	height: 44px;
	overflow: hidden;
	display: flex;
	align-items: center;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	border-radius: 22px;
}

.search .text {
	flex: 1;
	height: 40px;
	border: 2px solid #5c6bc0;
	border-right: none;
	background: #ffffff;
	border-radius: 20px 0 0 20px;
	padding: 0 20px;
	font-size: 14px;
	color: #333333;
	transition: all 0.3s ease;
}

.search .text:focus {
	box-shadow: inset 0 0 0 1px rgba(0,170,255,0.3);
	transform: scale(1.02);
}

.searchR {
	width: 100px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	background: linear-gradient(135deg, #5c6bc0, #7e57c2);
	box-shadow: 0 2px 10px rgba(0,170,255,0.3);
	border-radius: 0 20px 20px 0;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.searchR::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s ease;
}

.searchR:hover::before {
	left: 100%;
}

.searchR:hover {
	box-shadow: 0 4px 20px rgba(0,170,255,0.5);
	transform: translateY(-2px);
}

.searchR a:link,.searchR a:visited {
	color: #ffffff;
	text-decoration: none;
	display: block;
	font-size: 16px;
	font-weight: 600;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

.searchR a:hover {
	text-decoration: none;
}

.hotSearch {
	width: 100%;
	height: 30px;
	line-height: 30px;
	margin-top: 5px;
	display: flex;
	flex-wrap: wrap;
}

.hotSearch li {
	margin: 0 10px 0 0;
	color: #999999;
	font-size: 13px;
	transition: all 0.3s ease;
}

.hotSearch li:hover {
	transform: translateY(-2px);
}

.hotSearch li a:link,.hotSearch li a:visited {
	color: #999999;
	text-decoration: none;
	transition: all 0.3s ease;
}

.hotSearch li a:hover {
	color: #5c6bc0;
	transform: translateX(5px);
}

/* shoppingCartWrap */
.shoppingCartWrap {
	width: 140px;
	height: 44px;
	line-height: 44px;
	background: #ffffff;
	border: 2px solid #5c6bc0;
	border-radius: 22px;
	box-shadow: 0 2px 10px rgba(0,170,255,0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.shoppingCartWrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0,170,255,0.1), transparent);
	transition: left 0.5s ease;
}

.shoppingCartWrap:hover::before {
	left: 100%;
}

.shoppingCartWrap:hover {
	border-color: #7e57c2;
	box-shadow: 0 4px 20px rgba(0,170,255,0.3);
	transform: translateY(-2px) scale(1.05);
}

.cartTitle:link,.cartTitle:visited {
	width: 80px;
	padding-left: 35px;
	font-size: 16px;
	color: #5c6bc0;
	text-align: center;
	display: inline-block;
	float: left;
	text-decoration: none;
	transition: all 0.3s ease;
	background: url(../images/gwc.png) no-repeat 10px center;
	background-size: 20px;
	position: relative;
	z-index: 1;
}

.cartTitle:hover {
	color: #7e57c2;
	transform: translateX(5px);
}

.numb:link,.numb:visited {
	width: 30px;
	font-size: 18px;
	color: #5c6bc0;
	text-align: center;
	display: inline-block;
	float: left;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease;
	background: rgba(0,170,255,0.1);
	border-radius: 15px;
	margin: 10px 5px;
	line-height: 24px;
	position: relative;
	z-index: 1;
}

.numb:hover {
	background: rgba(0,170,255,0.2);
	transform: scale(1.1);
}

/* navWrap */
.navWrap {
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	border: 1px solid #e0e0e0;
	margin-top: 20px;
	overflow: hidden;
	position: sticky;
	top: 40px;
	z-index: 999;
	backdrop-filter: blur(10px);
	background: rgba(255,255,255,0.95);
}

.nav {
	height: 50px;
	line-height: 50px;
	display: flex;
	align-items: center;
	padding: 0 20px;
}

.nav li {
	position: relative;
	margin: 0 5px;
	transition: all 0.3s ease;
}

.nav li:hover {
	transform: translateY(-2px);
}

.nav li::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #5c6bc0, #7e57c2);
	transition: all 0.3s ease;
	transform: translateX(-50%);
	border-radius: 2px;
}

.nav li:hover::after {
	width: 80%;
	box-shadow: 0 0 10px rgba(0,170,255,0.5);
}

.nav li a {
	color: #333333 !important;
	font-size: 16px;
	font-weight: 600;
	padding: 0 20px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	display: block;
	height: 100%;
}

.nav li a:hover {
	color: #5c6bc0 !important;
	text-shadow: 0 0 10px rgba(0,170,255,0.5);
}

.nav li .noline:link,.nav li .noline:visited {
	border-right: none;
}
/*contentWrap*/
.contentWrap {
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
	*margin-bottom: 20px;
	padding: 20px 0;
}

/*addWrap*/
.addWrap {
	float: right;
	width: 230px;
	height: 480px;
}

.addWrap li {
	float: right;
	width: 230px;
	height: 160px;
	margin-bottom: 20px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.addWrap li:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.addWrap li a {
	display: block;
	width: 100%;
	height: 100%;
}

.addWrap li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*smSlider*/
.smSlider {
	width: 100%;
	height: 480px;
	position: relative;
	*top: -480px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.sm-slider {
	height: 480px;
}

.sm-s-wrap {
}

.sm-s-wrap li {
	width: 100%;
	height: 480px;
	position: absolute;
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.sm-s-wrap li a,.sm-s-wrap li a img {
	display: block;
}

.sm-s-wrap li a img {
	margin: 0 auto;
	max-height: 100%;
}

/*dotCont*/
.dotCont {
	width: 160px;
	height: 20px;
	margin: 0 auto;
	position: relative;
	top: -40px;
	z-index: 998;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dotCont a:link,.dotCont a:visited {
	display: block;
	width: 12px;
	height: 12px;
	float: left;
	margin: 0 8px;
	background: rgba(255,255,255,0.6);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.dotCont a:hover,
.dotCont a.active {
	background: #5c6bc0;
	transform: scale(1.2);
	box-shadow: 0 0 10px rgba(0,170,255,0.8);
}

/*flashSaleWrap*/
.flashSaleWrap {
	width: 100% !important;
	max-width: 1800px !important;
	overflow: hidden;
	margin: 0 auto !important;
	margin-top: 40px;
	background: #ffffff;
	border-radius: 8px;
	padding: 20px !important;
	box-sizing: border-box;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
}

.flashSaleWrap:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.flashSaleTile {
	height: 50px;
	border-bottom: 2px solid #5c6bc0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.flashSaleTile::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100px;
	height: 2px;
	background: linear-gradient(90deg, #5c6bc0, #7e57c2);
	border-radius: 2px;
}

.flashSaleTileL {
	padding-top: 2px;
	font-size: 24px;
	color: #333333;
	font-weight: 600;
	text-shadow: 0 0 10px rgba(0,170,255,0.3);
	transition: all 0.3s ease;
}

.flashSaleTileL:hover {
	text-shadow: 0 0 20px rgba(0,170,255,0.6);
}

.flashSaleCont {
	padding-top: 28px;
	height: 360px;
	display: flex;
	justify-content: space-between;
	gap: 15px;
}

.dl1, .dl2, .dl3, .dl4, .dl5, .dl6, .dl7, .dl8, .dl9, .dl10, .dl11, .dl12, .dl13, .dl14, .dl15, .dl16, .dl17, .dl18, .dl19, .dl20{
	flex: 1;
	margin: 0;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
}

.dl1::before, .dl2::before, .dl3::before, .dl4::before, .dl5::before, .dl6::before, .dl7::before, .dl8::before, .dl9::before, .dl10::before, .dl11::before, .dl12::before, .dl13::before, .dl14::before, .dl15::before, .dl16::before, .dl17::before, .dl18::before, .dl19::before, .dl20::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0,170,255,0.1), transparent);
	transition: left 0.5s ease;
	pointer-events: none;
}

.dl1:hover::before, .dl2:hover::before, .dl3:hover::before, .dl4:hover::before, .dl5:hover::before, .dl6:hover::before, .dl7:hover::before, .dl8:hover::before, .dl9:hover::before, .dl10:hover::before, .dl11:hover::before, .dl12:hover::before, .dl13:hover::before, .dl14:hover::before, .dl15:hover::before, .dl16:hover::before, .dl17:hover::before, .dl18:hover::before, .dl19:hover::before, .dl20:hover::before {
	left: 100%;
}

.dl1:hover,.dl2:hover,.dl3:hover,.dl4:hover,.dl5:hover, .dl6:hover, .dl7:hover, .dl8:hover, .dl9:hover, .dl10:hover, .dl11:hover, .dl12:hover, .dl13:hover, .dl14:hover, .dl15:hover, .dl16:hover, .dl17:hover, .dl18:hover, .dl19:hover, .dl20:hover {
	border: 1px solid #5c6bc0;
	box-shadow: 0 4px 20px rgba(0,170,255,0.3);
	transform: translateY(-5px) scale(1.02);
}

.flashSaleCont dl dd {
	text-align: center;
	padding: 15px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.flashSaleCont dl .ddwhite {
	line-height: 24px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.flashSaleCont dl .ddwhite a:link,.flashSaleCont dl .ddwhite a:visited {
	font-size: 14px;
	color: #333333;
	font-weight: 500;
	transition: all 0.3s ease;
	display: block;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.flashSaleCont dl .ddwhite a:hover {
	color: #5c6bc0;
	transform: translateX(5px);
}

.flashSaleCont dl .ddyellow a:link,.flashSaleCont dl .ddyellow a:visited {
	color: #ff4400;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.3s ease;
	display: block;
}

.flashSaleCont dl .ddyellow a:hover {
	transform: scale(1.1);
	text-shadow: 0 0 10px rgba(255,68,0,0.5);
}

.goodsnew_time:link,.goodsnew_time:visited {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 30px;
	background: linear-gradient(90deg, #5c6bc0, #7e57c2);
	z-index: 999;
	text-align: center;
	text-decoration: none;
	border-radius: 8px 8px 0 0;
	transition: all 0.3s ease;
}

.goodsnew_time:hover {
	background: linear-gradient(90deg, #7e57c2, #5c6bc0);
	box-shadow: 0 2px 10px rgba(0,170,255,0.5);
}

.goodsnew_time span {
	display: block;
	line-height: 30px;
	font-size: 14px;
	color: #ffffff;
	font-weight: 600;
}

.flashSaleCont dl dt {
	height: 200px;
	overflow: hidden;
	border-radius: 8px 8px 0 0;
	position: relative;
}

.flashSaleCont dl dt img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.flashSaleCont dl:hover dt img {
	transform: scale(1.1);
}

.flashSaleCont dl dt::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1));
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
}

.flashSaleCont dl:hover dt::after {
	opacity: 1;
}/*brandRecommendationWrap开始公共样�?/
.brandRecommendationWrap,.womenWearWrap,.menWearWrap,.underWearWrap,.childSaleWrap,.sportsOutdoorsWrap,.shoesBagsWrap,.communityWrap,.AdPositionId {
	width: 100%;
	max-width: 1800px;
	overflow: hidden;
	margin: 0 auto;
	padding-top: 40px;
	transition: all 0.3s ease;
}

.brandRecommendationWrap:hover,.womenWearWrap:hover,.menWearWrap:hover,.underWearWrap:hover,.childSaleWrap:hover,.sportsOutdoorsWrap:hover,.shoesBagsWrap:hover,.communityWrap:hover {
	transform: translateY(-2px);
}

.AdPositionId {
	padding-top: 30px;
}

.brandRecommendationTile,.womenWearTile,.menWearTile,.underWearTile,.childSaleTile,.sportsOutdoorsTile,.shoesBagsTile,.communityTile {
	height: 50px;
	border-bottom: 2px solid #5c6bc0;
	font-size: 24px;
	color: #333333;
	font-weight: 600;
	text-shadow: 0 0 10px rgba(0,170,255,0.3);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	transition: all 0.3s ease;
}

.brandRecommendationTile::after,.womenWearTile::after,.menWearTile::after,.underWearTile::after,.childSaleTile::after,.sportsOutdoorsTile::after,.shoesBagsTile::after,.communityTile::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100px;
	height: 2px;
	background: linear-gradient(90deg, #5c6bc0, #7e57c2);
	border-radius: 2px;
}

.brandRecommendationTile:hover,.womenWearTile:hover,.menWearTile:hover,.underWearTile:hover,.childSaleTile:hover,.sportsOutdoorsTile:hover,.shoesBagsTile:hover,.communityTile:hover {
	text-shadow: 0 0 20px rgba(0,170,255,0.6);
}

.section-more {
	font-size: 14px;
	color: #999999;
	font-weight: normal;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}

.section-more::after {
	content: '�?;
	margin-left: 5px;
	transition: all 0.3s ease;
}

.section-more:hover {
	color: #5c6bc0;
	transform: translateX(5px);
}

.section-more:hover::after {
	transform: translateX(5px);
}

/*brandRecommendationWrap*/
.brandRecommendationCont {
	padding-top: 28px;
	display: flex;
	justify-content: space-between;
	gap: 15px;
}

.div1,.div2,.div3,.div4,.div5 {
	flex: 1;
	margin: 0;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	transition: all 0.3s ease;
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	overflow: hidden;
	position: relative;
}

.div1::before,.div2::before,.div3::before,.div4::before,.div5::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0,170,255,0.1), transparent);
	transition: left 0.5s ease;
}

.div1:hover::before,.div2:hover::before,.div3:hover::before,.div4:hover::before,.div5:hover::before {
	left: 100%;
}

.div1:hover,.div2:hover,.div3:hover,.div4:hover,.div5:hover {
	border: 1px solid #5c6bc0;
	box-shadow: 0 4px 20px rgba(0,170,255,0.3);
	transform: translateY(-5px) scale(1.02);
}

.div1 img,.div2 img,.div3 img,.div4 img,.div5 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.div1:hover img,.div2:hover img,.div3:hover img,.div4:hover img,.div5:hover img {
	transform: scale(1.05);
}

/*womenWearWrap精品女装/男装/内衣/母婴/运动户外/鞋靴箱包*/
.womenWearCont1,.womenWearCont2,.womenWearCont3,.womenWearCont4,.womenWearCont5,
.menWearCont1,.menWearCont2,.menWearCont3,.menWearCont4,.menWearCont5,
.underWearCont1,.underWearCont2,.underWearCont3,.underWearCont4,.underWearCont5,
.childSaleCont1,.childSaleCont2,.childSaleCont3,.childSaleCont4,.childSaleCont5,
.sportsOutdoorsCont1,.sportsOutdoorsCont2,.sportsOutdoorsCont3,.sportsOutdoorsCont4,.sportsOutdoorsCont5,
.shoesBagsCont1,.shoesBagsCont2,.shoesBagsCont3,.shoesBagsCont4,.shoesBagsCont5,
.brandWrap {
	width: 199px;
	height: 418px;
	border: 1px solid #e0e0e0;
	float: left;
	overflow: hidden;
	background: #ffffff;
	transition: all 0.3s ease;
	border-radius: 8px;
	margin: 10px;
	position: relative;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.womenWearCont1::before,.womenWearCont2::before,.womenWearCont3::before,.womenWearCont4::before,.womenWearCont5::before,
.menWearCont1::before,.menWearCont2::before,.menWearCont3::before,.menWearCont4::before,.menWearCont5::before,
.underWearCont1::before,.underWearCont2::before,.underWearCont3::before,.underWearCont4::before,.underWearCont5::before,
.childSaleCont1::before,.childSaleCont2::before,.childSaleCont3::before,.childSaleCont4::before,.childSaleCont5::before,
.sportsOutdoorsCont1::before,.sportsOutdoorsCont2::before,.sportsOutdoorsCont3::before,.sportsOutdoorsCont4::before,.sportsOutdoorsCont5::before,
.shoesBagsCont1::before,.shoesBagsCont2::before,.shoesBagsCont3::before,.shoesBagsCont4::before,.shoesBagsCont5::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0,170,255,0.1), transparent);
	transition: left 0.5s ease;
}

.womenWearCont1:hover::before,.womenWearCont2:hover::before,.womenWearCont3:hover::before,.womenWearCont4:hover::before,.womenWearCont5:hover::before,
.menWearCont1:hover::before,.menWearCont2:hover::before,.menWearCont3:hover::before,.menWearCont4:hover::before,.menWearCont5:hover::before,
.underWearCont1:hover::before,.underWearCont2:hover::before,.underWearCont3:hover::before,.underWearCont4:hover::before,.underWearCont5:hover::before,
.childSaleCont1:hover::before,.childSaleCont2:hover::before,.childSaleCont3:hover::before,.childSaleCont4:hover::before,.childSaleCont5:hover::before,
.sportsOutdoorsCont1:hover::before,.sportsOutdoorsCont2:hover::before,.sportsOutdoorsCont3:hover::before,.sportsOutdoorsCont4:hover::before,.sportsOutdoorsCont5:hover::before,
.shoesBagsCont1:hover::before,.shoesBagsCont2:hover::before,.shoesBagsCont3:hover::before,.shoesBagsCont4:hover::before,.shoesBagsCont5:hover::before {
	left: 100%;
}

.womenWearCont1:hover,.womenWearCont2:hover,.womenWearCont3:hover,.womenWearCont4:hover,.womenWearCont5:hover,
.menWearCont1:hover,.menWearCont2:hover,.menWearCont3:hover,.menWearCont4:hover,.menWearCont5:hover,
.underWearCont1:hover,.underWearCont2:hover,.underWearCont3:hover,.underWearCont4:hover,.underWearCont5:hover,
.childSaleCont1:hover,.childSaleCont2:hover,.childSaleCont3:hover,.childSaleCont4:hover,.childSaleCont5:hover,
.sportsOutdoorsCont1:hover,.sportsOutdoorsCont2:hover,.sportsOutdoorsCont3:hover,.sportsOutdoorsCont4:hover,.sportsOutdoorsCont5:hover,
.shoesBagsCont1:hover,.shoesBagsCont2:hover,.shoesBagsCont3:hover,.shoesBagsCont4:hover,.shoesBagsCont5:hover {
	border-color: #5c6bc0;
	box-shadow: 0 4px 20px rgba(0,170,255,0.3);
	transform: translateY(-5px) scale(1.02);
}

.liTop {
	width: 199px;
	height: 260px;
	*height: 256px;
	overflow: hidden;
	border-radius: 8px 8px 0 0;
	position: relative;
}

.liBot {
	width: 199px;
	height: 157px;
	padding: 15px;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

/*价格价格价格*/
.price {
	width: 100%;
	height: 40px;
	line-height: 40px;
	position: relative;
	top: -40px;
	padding: 0 15px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
}

.price strong {
	font-size: 18px;
	color: #e6a23c;
	font-weight: bold;
}

.price del {
	color: #909399;
	font-size: 14px;
}

.liTop a,.liTop a img,.liBot a,.liBot a img,.womenWearCont a,.menWearCont a,.underWearCont a,.childSaleCont a,.sportsOutdoorsCont a,.shoesBagsCont a,.AdPositionId a,.AdPositionId img {
	display: block;
}

.liTop img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.liTop:hover img {
	transform: scale(1.1);
}

.liTop::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1));
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 1;
}

.liTop:hover::after {
	opacity: 1;
}

.liBot {
	border-top: 1px solid #e0e0e0;
}

.liBot h3 {
	font-size: 14px;
	font-weight: 600;
	color: #333333;
	margin-bottom: 10px;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: all 0.3s ease;
}

.liBot h3:hover {
	color: #5c6bc0;
	transform: translateX(5px);
}

.liBot .desc {
	font-size: 12px;
	color: #999999;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.liBot .tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	transition: all 0.3s ease;
}

.liBot .tag {
	font-size: 10px;
	padding: 2px 8px;
	background: rgba(0,170,255,0.1);
	color: #5c6bc0;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.liBot .tag:hover {
	background: rgba(0,170,255,0.2);
	transform: scale(1.1);
}

.liTop a:hover,.liBot a:hover {
	margin-left: -3px;
	transform: translateX(5px);
}

.womenWearCont1 a.moving:hover,.menWearCont1 a.moving:hover,.underWearCont1 a.moving:hover,.childSaleCont1 a.moving:hover,.sportsOutdoorsCont1 a.moving:hover,.shoesBagsCont1 a.moving:hover {
	margin-left: -1px;
}

.ContNav {
	width: 100%;
	height: 194px;
	background: linear-gradient(135deg, rgba(0,170,255,0.9), rgba(0,136,204,0.9));
	position: relative;
	top: -194px;
	left: 0;
	padding: 20px;
	box-sizing: border-box;
	color: #ffffff;
}

.selling {
	height: 108px;
}

.features {
	height: 86px;
}

.selling dt,.features dt {
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	padding-top: 10px;
	margin-bottom: 10px;
}

.selling dd,.features dd {
	width: 100%;
	overflow: hidden;
}

.selling dd a:link,.selling dd a:visited,.features dd a:link,.features dd a:visited {
	padding-right: 12px;
	font-size: 14px;
	color: rgba(255,255,255,0.9);
	display: inline-block;
	line-height: 24px;
}

.selling dd a:hover,.features dd a:hover {
	color: #ffffff;
	text-decoration: underline;
}

/*brandWrap*/
.brandWrap dl {
	height: 46px;
	display: flex;
	align-items: center;
	padding: 0 15px;
}

.brandWrap dl dt {
	float: left;
	padding-right: 10px;
}

.brandWrap dl dt a,.brandWrap dl dt a img {
	display: block;
}

.brandWrap dl dt img {
	height: 30px;
	object-fit: contain;
}

.brandWrap dl dd {
	float: left;
	line-height: 46px;
	font-size: 14px;
	color: #333333;
}

.brandWrap dl dd:hover {
	color: #5c6bc0;
}
/*communityWrap*/
.communityCont {
	width: 100%;
	max-width: 1198px;
	overflow: hidden;
	border: 1px solid #e0e0e0;
	border-top: none;
	background: #ffffff;
}

.share,.comment {
	float: left;
	width: 563px;
	padding: 14px 18px 0 18px;
}

.share {
	border-right: 1px solid #e0e0e0;
	padding-right: 17px;
}

.communityCont div .mc dl {
	height: 80px;
	border-bottom: 1px dashed #e0e0e0;
	padding: 18px 0;
}

.communityCont div .mc .share3,.communityCont div .mc .comment3 {
	border-bottom: none;
}

.communityCont div .mc dl dt {
	float: left;
	width: 80px;
}

.communityCont div .mc dl dd {
	float: right;
	width: 468px;
	line-height: 22px;
}

.communityCont div .mc dl a,.communityCont div .mc dl img {
	display: block;
}

.communityCont div .mc dl .shareTitle a:link,.communityCont div .mc dl .shareTitle a:visited,.communityCont div .mc dl .commentTitle a:link,.communityCont div .mc dl .commentTitle a:visited {
	color: #5c6bc0;
}

.communityCont dt img {
	border: 1px solid #e0e0e0;
	border-radius: 4px;
}

.communityCont dt img:hover {
	border: 1px solid #5c6bc0;
	box-shadow: 0 0 10px rgba(0,170,255,0.5);
}
/*footerWrap*/
#footerWrap {
	width: 100%;
	margin-top: auto;
	background-color: #f5f5f5;
	border-top: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

#footerWrap:hover {
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.footer {
	width: 100%;
	background: #f5f5f5;
	color: #333333;
	padding: 30px 0;
}

.footer a{
	color: #333333;
	transition: all 0.3s ease;
}

.footer a:hover {
	color: #5c6bc0;
	transform: translateX(5px);
}

.footer .icon-img{
	width: 15px;
	height: 15px;
	position: absolute;
	margin-left: -18px;
	margin-top: 3px;
	transition: all 0.3s ease;
}

#ft {
	margin-top: auto;
}

.helpList {
	width: 100%;
	max-width: 1800px;
	height: auto;
	margin: 0 auto;
	padding-top: 20px;
	padding-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.helpList dl {
	width: 160px;
	line-height: 28px;
	transition: all 0.3s ease;
}

.helpList dl:hover {
	transform: translateY(-5px);
}

.helpList dl dt {
	font-size: 16px;
	font-weight: bold;
	color: #5c6bc0;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 2px solid rgba(0,170,255,0.2);
	transition: all 0.3s ease;
}

.helpList dl:hover dt {
	color: #7e57c2;
	border-bottom-color: rgba(0,170,255,0.5);
}

.helpList dl dd {
	font-size: 14px;
}

.helpList dl dd a:link,.helpList dl dd a:visited {
	color: #666666;
	text-decoration: none;
	transition: all 0.3s ease;
}

.helpList dl dd a:hover {
	color: #5c6bc0;
	text-decoration: underline;
	transform: translateX(5px);
}

.twoCode {
	margin-left: 0;
	float: none;
	display: flex;
	gap: 30px;
	align-items: center;
}

.twoCode li {
	float: none;
	width: 120px;
	text-align: center;
	font-size: 14px;
	color: #333333;
	transition: all 0.3s ease;
}

.twoCode li:hover {
	transform: translateY(-5px);
}

.twoCode li img {
	display: block;
	padding: 6px 0;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	transition: all 0.3s ease;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.twoCode li:hover img {
	box-shadow: 0 4px 15px rgba(0,170,255,0.3);
	transform: scale(1.05);
}

.guarantee {
	width: 100%;
	height: 60px;
	background: linear-gradient(135deg, #5c6bc0, #7e57c2);
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0,170,255,0.3);
}

.guarantee:hover {
	background: linear-gradient(135deg, #7e57c2, #5c6bc0);
	box-shadow: 0 4px 20px rgba(0,170,255,0.5);
}

.guarantee ul {
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 100%;
}

.guarantee ul li {
	float: none;
	line-height: 60px;
	font-size: 18px;
	color: #ffffff;
	width: 25%;
	background: url(../images/pic1.png) no-repeat left center;
	padding-left: 50px;
	transition: all 0.3s ease;
}

.guarantee ul li:hover {
	transform: translateY(-3px);
	text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.guarantee ul .li2 {
	background: url(../images/pic2.png) no-repeat left center;
}

.guarantee ul .li3 {
	background: url(../images/pic3.png) no-repeat left center;
}

.guarantee ul .li4 {
	background: url(../images/pic4.png) no-repeat left center;
}

.footMessage {
	text-align: center;
	padding-top: 30px;
	font-size: 13px;
	color: #666666;
	line-height: 24px;
	transition: all 0.3s ease;
}

.footMessage:hover {
	color: #5c6bc0;
}

.certification {
	width: 426px;
	margin: 0 auto;
	transition: all 0.3s ease;
}

.certification:hover {
	transform: translateY(-5px);
}

.certification li {
	float: left;
	padding: 20px 12px;
	transition: all 0.3s ease;
}

.certification li:hover {
	transform: translateY(-5px);
}

.certification li a,.certification li img {
	display: block;
	transition: all 0.3s ease;
}

.certification li:hover img {
	transform: scale(1.1);
	box-shadow: 0 2px 10px rgba(0,170,255,0.3);
}

.copyright {
	text-align: center;
	color: #666666;
	padding: 20px 0;
	font-size: 14px;
	transition: all 0.3s ease;
	background: #ffffff;
	border-top: 1px solid #e0e0e0;
}

.copyright:hover {
	color: #5c6bc0;
	box-shadow: 0 -2px 10px rgba(0,170,255,0.1);
}

.catebg {
	position: absolute;
	top: 8px;
	left: 10px;
	z-index: 3;
}

.ads_pictures div {
	position: absolute!important;
	top: 0;
	left: 0;
}

.hotStoreCont_dl {
	display: inline-block;
	width: 167px;
}




.user_dingdan tr td a div {
	border: 1px #5c6bc0 solid;
	padding-left: 5px;
	padding-right: 5px;
	margin-right: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
	white-space: nowrap;
	background: rgba(0,170,255,0.1);
	border-radius: 4px;
}




#backlayer {
	position: absolute;
	background-color: #000;
	z-index: 10;
	display: none;
	left: 0;
	top: 0;
	filter: alpha(opacity=10);
	opacity: 0.30;
}

/* 科技感特�?*/
.tech-glow {
	box-shadow: 0 0 15px rgba(0,170,255,0.5);
	transition: all 0.3s ease;
}

.tech-glow:hover {
	box-shadow: 0 0 25px rgba(0,170,255,0.8);
}

.tech-border {
	border: 1px solid rgba(0,170,255,0.3);
	transition: all 0.3s ease;
}

.tech-border:hover {
	border-color: rgba(0,170,255,0.8);
}

.tech-gradient {
	background: linear-gradient(135deg, #e8f4fc, #d4e9f7);
}

/* 网格背景 */
.tech-grid {
	background-image: 
		linear-gradient(rgba(0,170,255,0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0,170,255,0.1) 1px, transparent 1px);
	background-size: 20px 20px;
}

/* 发光文字 */
.tech-text-glow {
	text-shadow: 0 0 10px rgba(0,170,255,0.8);
	transition: all 0.3s ease;
}

.tech-text-glow:hover {
	text-shadow: 0 0 20px rgba(0,170,255,1);
}

/* 科技按钮 */
.tech-button {
	background: linear-gradient(135deg, #5c6bc0, #7e57c2);
	color: #ffffff;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 0 10px rgba(0,170,255,0.5);
}

.tech-button:hover {
	background: linear-gradient(135deg, #7e57c2, #5c6bc0);
	box-shadow: 0 0 20px rgba(0,170,255,0.8);
	transform: translateY(-2px);
}

/* 科技卡片 */
.tech-card {
	background: #ffffff;
	border: 1px solid rgba(0,170,255,0.2);
	border-radius: 8px;
	padding: 20px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tech-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0,170,255,0.1), transparent);
	transition: left 0.5s ease;
}

.tech-card:hover::before {
	left: 100%;
}

.tech-card:hover {
	border-color: rgba(0,170,255,0.5);
	box-shadow: 0 4px 20px rgba(0,170,255,0.3);
	transform: translateY(-5px);
}

/* 科技导航 */
.tech-nav {
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0,170,255,0.2);
}

/* 科技输入�?*/
.tech-input {
	background: #ffffff;
	border: 1px solid rgba(0,170,255,0.3);
	color: #333333;
	padding: 10px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.tech-input:focus {
	border-color: rgba(0,170,255,0.8);
	box-shadow: 0 0 10px rgba(0,170,255,0.5);
	outline: none;
}

/* 科技滚动�?*/
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #f0f0f0;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb {
	background: rgba(0,170,255,0.5);
	border-radius: 4px;
	transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(0,170,255,0.8);
	transform: scale(1.1);
}

/* 页面加载动画 */
.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.9);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.5s ease;
}

.loading.hidden {
	opacity: 0;
	visibility: hidden;
}

.loading-spinner {
	width: 50px;
	height: 50px;
	border: 5px solid rgba(0,170,255,0.3);
	border-top: 5px solid #5c6bc0;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* 淡入动画 */
.fade-in {
	animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* 缩放动画 */
.scale-in {
	animation: scaleIn 0.3s ease-in-out;
}

@keyframes scaleIn {
	from { opacity: 0; transform: scale(0.9); }
	to { opacity: 1; transform: scale(1); }
}

/* 滑动动画 */
.slide-in-left {
	animation: slideInLeft 0.5s ease-in-out;
}

@keyframes slideInLeft {
	from { opacity: 0; transform: translateX(-20px); }
	to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
	animation: slideInRight 0.5s ease-in-out;
}

@keyframes slideInRight {
	from { opacity: 0; transform: translateX(20px); }
	to { opacity: 1; transform: translateX(0); }
}

/* 按钮悬停效果 */
.btn-hover {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.btn-hover::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255,255,255,0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
}

.btn-hover:hover::before {
	width: 300px;
	height: 300px;
}

/* 卡片悬停效果 */
.card-hover {
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.card-hover::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0,170,255,0.1), transparent);
	transition: left 0.5s ease;
}

.card-hover:hover::after {
	left: 100%;
}

/* 文本高亮效果 */
.text-highlight {
	position: relative;
	display: inline-block;
}

.text-highlight::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #5c6bc0;
	transition: width 0.3s ease;
}

.text-highlight:hover::after {
	width: 100%;
}

/* 滚动触发动画 */
.scroll-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.scroll-reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* 鼠标跟随效果 */
.mouse-follow {
	position: fixed;
	width: 20px;
	height: 20px;
	background: rgba(0,170,255,0.5);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transition: all 0.1s ease;
	mix-blend-mode: difference;
}

/* 脉冲动画 */
.pulse {
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.05); opacity: 0.8; }
	100% { transform: scale(1); opacity: 1; }
}

/* 呼吸动画 */
.breath {
	animation: breath 3s ease-in-out infinite;
}

@keyframes breath {
	0% { transform: scale(1); }
	50% { transform: scale(1.03); }
	100% { transform: scale(1); }
}

/* 闪光效果 */
.glow {
	box-shadow: 0 0 15px rgba(0,170,255,0.5);
	animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
	from { box-shadow: 0 0 15px rgba(0,170,255,0.5); }
	to { box-shadow: 0 0 25px rgba(0,170,255,0.8); }
}

/* 响应式设�?*/
@media screen and (max-width: 1200px) {
	.siteNav,
	#header,
	.navWrap,
	.contentWrap,
	.flashSaleWrap,
	.brandRecommendationWrap,
	.womenWearWrap,
	.menWearWrap,
	.underWearWrap,
	.childSaleWrap,
	.sportsOutdoorsWrap,
	.shoesBagsWrap,
	.communityWrap,
	.helpList,
	.guarantee ul {
		width: 95%;
	}
	
	.searchWrap {
		width: 400px;
	}
	
	.nav {
		margin-left: 0;
		justify-content: center;
	}
	
	.nav li a:link,
	.nav li a:visited {
		padding: 0 15px;
	}
	
	.flashSaleCont {
		gap: 10px;
	}
	
	.dl1, .dl2, .dl3, .dl4, .dl5, .dl6, .dl7, .dl8, .dl9, .dl10, .dl11, .dl12, .dl13, .dl14, .dl15, .dl16, .dl17, .dl18, .dl19, .dl20 {
		width: 180px;
		height: 300px;
	}
	
	.womenWearCont1,
	.womenWearCont2,
	.womenWearCont3,
	.womenWearCont4,
	.womenWearCont5,
	.menWearCont1,
	.menWearCont2,
	.menWearCont3,
	.menWearCont4,
	.menWearCont5,
	.underWearCont1,
	.underWearCont2,
	.underWearCont3,
	.underWearCont4,
	.underWearCont5,
	.childSaleCont1,
	.childSaleCont2,
	.childSaleCont3,
	.childSaleCont4,
	.childSaleCont5,
	.sportsOutdoorsCont1,
	.sportsOutdoorsCont2,
	.sportsOutdoorsCont3,
	.sportsOutdoorsCont4,
	.sportsOutdoorsCont5,
	.shoesBagsCont1,
	.shoesBagsCont2,
	.shoesBagsCont3,
	.shoesBagsCont4,
	.shoesBagsCont5 {
		width: 160px;
		height: 350px;
	}
	
	.home-page .header-wrap .container .row {
		margin-left: -15px;
		margin-right: -15px;
	}
	
	.home-page .header-wrap .container .col-lg-3 {
		width: 25%;
		float: left;
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media screen and (max-width: 992px) {
	.searchWrap {
		width: 300px;
	}
	
	.nav {
		margin-left: 0;
		overflow-x: auto;
		white-space: nowrap;
		justify-content: flex-start;
	}
	
	.nav li a:link,
	.nav li a:visited {
		padding: 0 10px;
		font-size: 14px;
	}
	
	.flashSaleCont {
		gap: 10px;
	}
	
	.dl1, .dl2, .dl3, .dl4, .dl5, .dl6, .dl7, .dl8, .dl9, .dl10, .dl11, .dl12, .dl13, .dl14, .dl15, .dl16, .dl17, .dl18, .dl19, .dl20 {
		width: 140px;
		height: 250px;
	}
	
	.addWrap {
		display: none;
	}
	
	.home-page .header-wrap .container .col-lg-3 {
		width: 50%;
		margin-bottom: 20px;
	}
	
	.home-page-top ul li {
		padding-left: 0 !important;
		text-align: center;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 768px) {
	#header {
		height: auto;
		padding: 15px;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	#header h1 {
		width: 150px;
		height: 40px;
		align-self: center;
	}
	
	.provice {
		display: none;
	}
	
	.telphone {
		display: none;
	}
	
	.searchWrap {
		width: 100%;
		margin: 0;
	}
	
	.shoppingCartWrap {
		align-self: center;
		margin-top: 10px;
	}
	
	.nav {
		margin-left: 0;
		overflow-x: auto;
		white-space: nowrap;
		justify-content: flex-start;
	}
	
	.nav li {
		display: inline-block;
		float: none;
	}
	
	.smSlider {
		height: 300px;
	}
	
	.sm-slider {
		height: 300px;
	}
	
	.sm-s-wrap li {
		height: 300px;
	}
	
	.flashSaleCont {
		height: auto;
		flex-wrap: wrap;
	}
	
	.dl1, .dl2, .dl3, .dl4, .dl5, .dl6, .dl7, .dl8, .dl9, .dl10, .dl11, .dl12, .dl13, .dl14, .dl15, .dl16, .dl17, .dl18, .dl19, .dl20 {
		width: 48%;
		margin: 0 1% 15px 1%;
	}
	
	.brandRecommendationCont {
		flex-wrap: wrap;
	}
	
	.div1, .div2, .div3, .div4, .div5 {
		width: 48%;
		margin: 0 1% 15px 1%;
	}
	
	.womenWearCont1,
	.womenWearCont2,
	.womenWearCont3,
	.womenWearCont4,
	.womenWearCont5,
	.menWearCont1,
	.menWearCont2,
	.menWearCont3,
	.menWearCont4,
	.menWearCont5,
	.underWearCont1,
	.underWearCont2,
	.underWearCont3,
	.underWearCont4,
	.underWearCont5,
	.childSaleCont1,
	.childSaleCont2,
	.childSaleCont3,
	.childSaleCont4,
	.childSaleCont5,
	.sportsOutdoorsCont1,
	.sportsOutdoorsCont2,
	.sportsOutdoorsCont3,
	.sportsOutdoorsCont4,
	.sportsOutdoorsCont5,
	.shoesBagsCont1,
	.shoesBagsCont2,
	.shoesBagsCont3,
	.shoesBagsCont4,
	.shoesBagsCont5 {
		width: 48%;
		margin: 0 1% 15px 1%;
		border-right: none;
	}
	
	.share,
	.comment {
		float: none;
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
	}
	
	.helpList dl {
		width: 33%;
		margin-bottom: 20px;
	}
	
	.guarantee ul li {
		width: 50%;
		font-size: 16px;
		padding-left: 40px;
	}
	
	.home-page .header-wrap .container .col-lg-3 {
		width: 100%;
		text-align: center;
	}
	
	.home-page-top h2 {
		font-size: 20px;
		text-align: center;
	}
	
	.map-box {
		height: 300px !important;
	}
}

@media screen and (max-width: 480px) {
	.quickMenu {
		display: none;
	}
	
	#header {
		padding: 10px;
	}
	
	.searchWrap {
		width: 100%;
	}
	
	.search .text {
		padding: 0 15px;
	}
	
	.searchR {
		width: 80px;
	}
	
	.flashSaleCont {
		flex-direction: column;
		gap: 15px;
	}
	
	.dl1, .dl2, .dl3, .dl4, .dl5, .dl6, .dl7, .dl8, .dl9, .dl10, .dl11, .dl12, .dl13, .dl14, .dl15, .dl16, .dl17, .dl18, .dl19, .dl20 {
		width: 100%;
		margin: 0 0 15px 0;
	}
	
	.brandRecommendationCont {
		flex-direction: column;
		gap: 15px;
	}
	
	.div1, .div2, .div3, .div4, .div5 {
		width: 100%;
		margin: 0 0 15px 0;
	}
	
	.womenWearCont1,
	.womenWearCont2,
	.womenWearCont3,
	.womenWearCont4,
	.womenWearCont5,
	.menWearCont1,
	.menWearCont2,
	.menWearCont3,
	.menWearCont4,
	.menWearCont5,
	.underWearCont1,
	.underWearCont2,
	.underWearCont3,
	.underWearCont4,
	.underWearCont5,
	.childSaleCont1,
	.childSaleCont2,
	.childSaleCont3,
	.childSaleCont4,
	.childSaleCont5,
	.sportsOutdoorsCont1,
	.sportsOutdoorsCont2,
	.sportsOutdoorsCont3,
	.sportsOutdoorsCont4,
	.sportsOutdoorsCont5,
	.shoesBagsCont1,
	.shoesBagsCont2,
	.shoesBagsCont3,
	.shoesBagsCont4,
	.shoesBagsCont5 {
		width: 100%;
		margin: 0 0 15px 0;
	}
	
	.helpList dl {
		width: 50%;
	}
	
	.guarantee ul li {
		width: 100%;
		font-size: 14px;
		padding-left: 30px;
	}
	
	.flashSaleTileL,
	.brandRecommendationTile,
	.womenWearTile,
	.menWearTile,
	.underWearTile,
	.childSaleTile,
	.sportsOutdoorsTile,
	.shoesBagsTile,
	.communityTile {
		font-size: 20px;
	}
	
	.twoCode li {
		width: 100%;
		margin-bottom: 20px;
	}
	
	.map-box {
		height: 200px !important;
	}
	
	.home-page-top ul li {
		font-size: 12px;
	}
	
	.nav {
		padding: 0 10px;
	}
	
	.nav li a:link,
	.nav li a:visited {
		padding: 0 8px;
		font-size: 13px;
	}
}
