/* 商品推荐开始 */
.common{
	margin-top: 4.125rem !important; 
}

footer{
	background: none ;
	color: #ccc ;
}
.welfare {
	display: flex;
	/* background:#f0f0f0; */
	justify-content: space-between;
	border-bottom: #FF6900 0.125rem solid;
}

.welfare .more>img {
	height: 1.25rem;
}


.welfare .more {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 0.3125rem;
	font-size: 0.75rem;
	color: #ccc;
}

.shop_list .item a{
    text-decoration: none;
    color:inherit;
}

.shop_list .item .item-txt .underline {
	color: #ccc;
	text-decoration: line-through;
	font-size: 0.875rem;
	margin-left: 1.25rem;
}

.shop_list .item .item-txt .price {
	color: #f72d09;
	font-size: 1rem;
	font-weight: bold;
}

.shop_list .item .item-txt .sale {
	color: #ccc;
	font-size: 0.75rem;
}

.shop_list .item .item-txt .title {
    width: 100%;
    white-space: nowrap; /* 防止文本换行 */
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 显示省略号来代表被修剪的文本 */
	font-size: 0.875rem
}

.shop_list .item .item-txt {
	padding: 5px 40px;
}
.shop_list .item .img>img{
    width: 75%;
}
.shop_list .item .img {
	margin: 0.3125rem auto;
    display: flex;
    justify-content: center;
}

.shop_list .item {
	width: 25%;
	display: flex;
	flex-direction: column;
	border: 0.5px solid #f0f0f0;
    padding: 10px 0;
}

.shop_list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.recommend h4>img {
	width: 0.9375rem;
	margin: 0 0.625rem;
}

.recommend h4 {
	padding: 10px;
	background: #f0f0f0;
	display: flex;
	/* justify-content: center; */
	align-items: center;
}

.recommend {
	display: flex;
	flex-direction: column;
	margin: 1.25rem 0;
}

/* 商品推荐结束 */

/* 轮播图开始 */
.carousel-container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	height: 400px;
	margin: 0 auto;
	overflow: hidden;
}

.carousel-slides {
	width: 100%;
	height: 100%;
}

.carousel-slides img {
	width: 100%;
	height: 100%;
	/* object-fit: cover; */
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.carousel-slides img.active {
	opacity: 1;
}

.carousel-prev,
.carousel-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.2);
	color: white;
	border: none;
	padding: 15px;
	cursor: pointer;
	font-size: 18px;
	border-radius: 20%;
}

.carousel-prev {
	left: 10px;
}

.carousel-next {
	right: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

/* 轮播图结束 */

/* 头部开始 */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.625rem;
}

.search-container input {
	height: 40px;
	border: 0.0625rem solid #FF6900;
}

ul {
	list-style: none;
	display: flex;
	margin: 0;
	background-color: #FF6900;
}

ul li {
	margin: 0 10px;
	padding: 10px 0;
}

ul li>a {
	color: white;
	text-decoration: none;
	padding: 5px 10px;
	transition: background-color 0.3s;
}

ul li>a:hover {
	background-color: #c17643;
	border-radius: 4px;
}
.phone{
	display: flex;
	flex-direction: row;
	align-items: center;
}
.nav-right{
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 头部结束 */