header .shop-nav {
	background-color: var(--bgColor);
	z-index: 9999;
	display: flex;
	align-items: center;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

header .shop-nav .one-ul {
	width: 1400px;
	height: 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: auto;
}

header .shop-nav .one-ul .left {
	display: flex;
	align-items: center;
}

header .shop-nav .one-ul .logo {
	width: 120px;
	height: 60px;
	text-align: center;
}

header .shop-nav .one-ul .logo img {
	width: 120px;
	height: 60px;
}

header .shop-nav .shop-name {
	color: var(--fontColor);
	font-weight: bold;
	margin-left: 30px;
}

header .shop-nav .one-ul .search {
	display: flex;
	align-items: center;
}

header .shop-nav .one-ul .search input {
	background-color: #ffffff;
	border: 0;
	outline: none;
	width: 360px;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	box-sizing: border-box;
}

header .shop-nav .one-ul .search .search-btn {
	background-color: #df140e;
	width: 80px;
	line-height: 40px;
	color: #fff;
	border: 0;
	cursor: pointer;
}

header .menu-nav {
	width: calc(100% - 300px);
}

header .menu-nav .menu-list {
	margin: auto;
	display: flex;
}

header .menu-nav .menu-list .li {
	width: 100px;
	padding: 10px 0;
	text-align: center;
}

header .menu-nav .menu-list .li a {
	color: var(--fontColor);
}


.banner .swiper {
	width: 100%;
	height: 560px;
}

.banner .swiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper {
	--swiper-navigation-color: #a4a4a4;
}

.hot-cate {
	width: 1400px;
	margin: 30px auto;
}

.hot-cate .title-h {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hot-cate .title-h .line {
	width: calc(50% - 100px);
	height: 1px;
	background-color: #181818;
}

.hot-cate .cate {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 30px;
	row-gap: 30px;
}

.hot-cate .cate .one-ul .one-li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--bgColor);
	padding: 20px;
	border-radius: 6px;
	box-sizing: border-box;
}

.hot-cate .cate .one-ul .one-li .name {
	color: var(--fontColor);
	font-size: 20px;
}

.hot-cate .cate .one-ul .one-li img {
	width: 60px;
}

.hot-cate .cate .two-ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 10px;
	row-gap: 10px;
	margin-top: 10px;
}

.hot-cate .cate .two-ul .two-li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--bgColor);
	padding: 10px;
	border-radius: 6px;
	box-sizing: border-box;
}

.hot-cate .cate .two-ul .two-li .name {
	color: var(--fontColor);
}

.hot-cate .cate .two-ul .two-li .name span {
	font-size: 14px;
}

.hot-cate .cate .two-ul .two-li img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.goods-box {
	width: 1400px;
	margin: auto;
}

.goods-box .title-h {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 60px;
}

.goods-box .title-h .line {
	width: calc(50% - 100px);
	height: 1px;
	background-color: #181818;
}

.goods-list {
	width: 1400px;
	margin: 30px auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 10px;
	row-gap: 10px;
}

.goods-list .li {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
	background-color: #ffffff;
	overflow: hidden;
	margin-top: 20px;
	border-radius: 4px;
}

.goods-list .li .container {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
	position: relative;
}

.goods-list .li .container .picture {
	width: 100%;
	height: 320px;
	object-fit: contain;
}

.goods-list .li .container .title {
	width: 100%;
	height: 40px;
	text-align: center;
	padding: 0 10px;
	box-sizing: border-box;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-top: 10px;
}

.goods-list .li .container .year {
	text-align: center;
	margin: 5px 0;
	height: 20px;
}

.goods-list .li .container .tips {
	color: #808080;
	width: 100%;
	text-align: center;
	padding: 0 10px;
	box-sizing: border-box;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.goods-list .li .container .prices {
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
}

.goods-list .li .container .prices .price-l {
	width: 100%;
	padding: 5px 0;
	border-right: 1px dashed #e1e1e1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #df140e;
	font-size: 22px;
	font-weight: bold;
}

.goods-list .li .container .prices .price-l:last-child {
	border-right: 0;
}

.goods-list .li .container .prices .price-l img {
	width: 20px;
	margin-right: 5px;
}

.cate-list {
	width: 1400px;
	margin: auto;
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 10px;
	row-gap: 10px;
}

.cate-list .li {
	display: flex;
	align-items: center;
}

.cate-list .li img{
	width: 60px;
	height: 60px;
	object-fit: contain;
}

footer{
	background-color: var(--footer-bgColor);
}

footer .footer-box{
	width: 1400px;
	margin: auto;
}

footer .footer-box .logo {
	height: 60px;
	margin-bottom: 30px;
}

footer .footer-box .logo img{
	height: 100%;
}

.advertisement{
	width: 1400px;
	margin: auto;
	margin-bottom: 40px;
}

.advertisement img {
	width: 100%;
	border-radius: 10px;
}