* {
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
	font-family: "微软雅黑";

}

input,
button,
select {
	border: none;
	outline: none;
}

body {
	background: #f5f5f5;
}

.home_header {
	width: 100%;
	height: 60px;
	padding: 10px 4%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
}

.home_header .left {
	height: 40px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 60%;
}

.home_header .left img {
	height: 24px;
	border-radius: 24px;
}

.home_header .left p {
	font-size: 15px;
	margin-left: 0.5rem;
	font-weight: 600;
}

.home_header .left a {
	padding: 0.25rem 0.5rem;
	border-radius: 50px;
	background-image: linear-gradient(to right, #ff997b, #ff6934);
	font-size: 12px;
	color: #fff;
	margin-left: 0.5rem;
	animation: btns 3s ease-in-out infinite;
}

@keyframes btns {
	from {
		transform: scale(1);
	}

	33.33% {
		transform: scale(1.1);
	}

	to {
		transform: scale(1);
	}
}

.home_header .right input {
	width: 80%;
	float: right;
	height: 32px;
	padding: 0 0.5rem;
	box-sizing: border-box;
	border-radius: 50px;
	margin-top: 4px;
	background: #e9e9e9;
	font-size: 14px;
	color: #999;
	text-align: center;
}

.home_header .right input::placeholder {
	color: #999;
	font-size: 14px;

}


.home_banner {
	width: 92%;
	height: 10rem;
	margin: 0 4%;
}

.home_banner .swiper-container {
	width: 100%;
	height: 100%;
}

.home_banner .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	width: 88%;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.home_banner .swiper-slide img {
	width: 100%;
	height: 100%;
	border-radius: 0.5rem;
	object-fit: cover;

}

.home_banner .swiper-slide:nth-child(2n) {
	width: 88%;
}

.home_banner .swiper-slide:nth-child(3n) {
	width: 88%;
}

.home_nav {
	width: 92%;
	background: #fff;
	border-radius: 0.5rem;
	margin: 1rem 4%;
	padding: 0.75rem 0;
}

.home_nav li {
	width: 33.33%;
	float: left;
}

.home_nav li img {
	height: 2rem;
	display: block;
	margin: 0 auto;
}

.home_nav li p {
	font-size: 14px;
	text-align: center;
	margin-top: 0.25rem;
	color: #666;
}

.home_title {
	width: 92%;
	margin: 0 4%;
}

.home_title h4 {
	color: #ff2e23;
	font-size: 22px;
	display: inline-block;
}

.home_title a {
	float: right;
	font-size: 14px;
	height: 24px;
	line-height: 24px;
	color: #999;
}

.home_title h4 span {
	color: #4b4b4b;
	margin-left: 0.1rem;
}

.home_title p {
	font-size: 14px;
	margin-top: 0.15rem;
	color: #999;
}

.home_recommended_list {
	width: 92%;
	margin: 1rem 4%;
	overflow: scroll;
}

.home_recommended_list ul {
	display: flex;
	justify-content: flex-start;
}

.home_recommended_list li {
	width: 35%;
	padding: 0.35rem;
	background: #fff;
	border-radius: 0.25rem;
	float: left;
	box-sizing: border-box;
	flex-shrink: 0;
	margin-right: 3%;
}

.home_recommended_list li .img {
	width: 100%;
	height: 25vw;
	position: relative;
}

.home_recommended_list li .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.25rem;
}

.home_recommended_list li .img span {
	padding: 0.25rem 0.75rem;
	font-size: 12px;
	background: #f8d256;
	color: #fff;
	display: inline-block;
	position: absolute;
	top: 0;
	border-radius: 0 0.25rem 0 0.25rem;
	right: 0;
}

.home_recommended_list li .img p {
	width: 100%;
	background: rgba(0, 0, 0, .3);
	color: #fff;
	height: 1.75rem;
	line-height: 1.75rem;
	font-size: 12px;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	font-weight: normal;
}

.home_recommended_list li h4 {
	width: 100%;
	line-height: 1.5rem;
	font-size: 14px;
	height: 3rem;
	max-height: 3rem;
	margin: 0.25rem 0 0.5rem;
	color: #333;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;

}

.home_recommended_list li p {
	width: 100%;
	color: #f8d256;
	font-size: 16px;
	font-weight: bold;
}

.home_hot_list {
	width: 92%;
	margin: 1rem 4%;
}

.home_hot_list li {
	width: 100%;
	height: 7.5rem;
	background: #fff;
	padding: 0.75rem;
	box-sizing: border-box;
	border-radius: 0.5rem;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.home_hot_list li .text {
	width: 100%;
	height: 6.5rem;
	margin-right: 0.75rem;
	overflow: hidden;
}

.home_hot_list li .text h4 {
	width: 100%;
	height: 1.5rem;
	line-height: 1.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.home_hot_list li .text p:nth-child(2) {
	max-height: 3rem;
	height: 3rem;
	font-size: 13px;
	line-height: 1.5rem;
	color: #999;
	margin-top: 0.25rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.home_hot_list li .text p:nth-child(3) {
	margin-top: 0.25rem;
	height: 1.25rem;
	line-height: 1.25rem;
	font-size: 14px;
	font-weight: bold;
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.home_hot_list li .text p:nth-child(3) span:nth-child(1) {
	font-weight: bold;
	font-size: 16px;
	color: #f8d256;
}

.home_hot_list li .text p:nth-child(3) span {
	font-weight: normal;
	color: #ccc;
	font-size: 12px;

}

.home_hot_list li .img {
	width: 6rem;
	height: 6rem;
	flex-shrink: 0;
	margin-top: 0rem;
	position: relative;
}

.home_hot_list li .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.5rem;
}

.home_hot_list li .img span {
	padding: 0.25rem 0.75rem;
	font-size: 12px;
	background: #f8d256;
	color: #fff;
	display: inline-block;
	position: absolute;
	top: 0;
	border-radius: 0 0.25rem 0 0.25rem;
	right: 0;
}

.home_recommended_img {
	width: 92%;
	height: 6rem;
	margin: 0 4% 1rem;
}

.home_recommended_img img {
	width: 100%;
	height: 6rem;
	object-fit: cover;
	border-radius: 0.5rem;
}

.footer {
	width: 100%;
	height: 80px;
}

footer {
	width: 100%;
	height: 60px;
	background: #fff;
	position: fixed;
	bottom: 0;
	left: 0;
	box-shadow: 0 0 16px #e1e1e1;
	z-index: 999;
}

footer li {
	width: 33.33%;
	height: 60px;
	float: left;
}

footer li img {
	height: 1.6rem;
	display: block;
	margin: 0.4rem auto 0;
}

footer li p {
	width: 100%;
	height: 1.4rem;
	line-height: 1.4rem;
	text-align: center;
	font-size: 13px;
	color: #ccc;
}

footer li.action p {
	color: #000;
}

.home_comprehensive {
	width: 92%;
	margin: 1rem 4%;
}

.home_comprehensive ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.home_comprehensive li {
	width: 48%;
	height: 5rem;
	margin-bottom: 1rem;
}

.home_comprehensive li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.25rem;
}

.home_comprehensive li:last-child {
	margin-bottom: 0;
	width: 100%;
}

.classification_left {
	width: 25%;
	height: 100vh;
	background: #fff;
	position: fixed;
	top: 0px;
	left: 0;
	padding-top: 60px;
	z-index: 9;
}

.classification_left li {
	width: 100%;
	height: 50px;
	line-height: 50px;
	position: relative;
	text-align: center;
	font-size: 14px;
	color: #999;
}

.classification_left li span {
	width: 4px;
	height: 30px;
	background: #fff;
	display: block;
	position: absolute;
	top: 10px;
	left: 6px;
	display: none;
	border-radius: 50px;
}

.classification_left li.action {
	color: #f8d256;
	font-size: 16px;
	font-weight: 600;
	background: #f8d256;
	color: #fff;
}

.classification_left li.action span {
	display: none;
}

.classification_right {
	width: 100%;
	padding: 60px 3% 0 28%;
	box-sizing: border-box;
}

.classification_right li {
	width: 100%;
	height: 100px;
	background: red;
}


.classification_right li {
	width: 100%;
	height: 7.5rem;
	background: #fff;
	padding: 0.75rem;
	box-sizing: border-box;
	border-radius: 0.5rem;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.classification_right li .text {
	width: 100%;
	height: 6.5rem;
	margin-right: 0.75rem;
	overflow: hidden;
}

.classification_right li .text h4 {
	width: 100%;
	height: 1.5rem;
	line-height: 1.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.classification_right li .text p:nth-child(2) {
	max-height: 3rem;
	height: 3rem;
	font-size: 13px;
	line-height: 1.5rem;
	color: #999;
	margin-top: 0.25rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.classification_right li .text p:nth-child(3) {
	margin-top: 0.25rem;
	height: 1.25rem;
	line-height: 1.25rem;
	font-size: 14px;
	font-weight: bold;
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.classification_right li .text p:nth-child(3) span:nth-child(1) {
	font-weight: bold;
	font-size: 16px;
	color: #f8d256;
}

.classification_right li .text p:nth-child(3) span {
	font-weight: normal;
	color: #ccc;
	font-size: 12px;

}

.classification_right li .img {
	width: 6rem;
	height: 6rem;
	flex-shrink: 0;
	margin-top: 0rem;
	position: relative;
}

.classification_right li .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.5rem;
}

.classification_right li .img span {
	padding: 0.25rem 0.75rem;
	font-size: 12px;
	background: #f8d256;
	color: #fff;
	display: inline-block;
	position: absolute;
	top: 0;
	border-radius: 0 0.25rem 0 0.25rem;
	right: 0;
}

.my_top {
	width: 100%;
	height: 12.5rem;
	background-image: linear-gradient(#ff6934, #f5f5f5);
}

.my_top_user {
	width: 92%;
	height: 4rem;
	margin: 1rem 4%;
	float: left;
	display: flex;
	justify-content: flex-start;
}

.my_top_user img {
	width: 3rem;
	height: 3rem;
	flex-shrink: 0;
	border-radius: 50%;
	box-shadow: 0 0 8px #ccc;
	margin-top: 0.5rem;
}

.my_top_user .text {
	width: 100%;
	height: 3rem;
	margin-top: 0.5rem;
	margin-left: 4%;
}

.my_top_user .text h3 {
	width: 100%;
	height: 1.5rem;
	line-height: 1.5rem;
	font-size: 18px;
	color: #fff;
}

.my_top_user .text p {
	width: 100%;
	height: 1.5rem;
	line-height: 1.5rem;
	font-size: 14px;
	color: #fff;
}

.my_top_user .text a {
	padding: 0 1rem;
	background-image: linear-gradient(to right, #ff3a00, #ff6934);
	color: #fff;
	height: 1.5rem;
	line-height: 1.5rem;
	display: inline-block;
	font-size: 12px;
	border-radius: 50px;
	margin-left: 0.5rem;
}

.my_top_vip {
	width: 80%;
	height: 6rem;
	background-image: linear-gradient(to right, #31302c, #645c4f);
	float: left;
	margin: 0 10%;
	border-radius: 0.5rem;
	padding: 0.5rem 4%;
	box-sizing: border-box;
	position: relative;
}

.my_top_vip h3 {
	width: 100%;
	height: 1.5rem;
	line-height: 1.5rem;
	font-size: 17px;
	color: #ffe1a0;
}

.my_top_vip p {
	width: 100%;
	height: 1.5rem;
	line-height: 1.5rem;
	font-size: 12px;
	color: #ffeeaf;
}

.my_top_vip a {
	position: absolute;
	padding: 0 1.5rem;
	height: 1.5rem;
	line-height: 1.5rem;
	font-size: 12px;
	display: inline-block;
	background: #f9cd52;
	color: #000;
	position: absolute;
	top: 1.25rem;
	right: 4%;
	border-radius: 50px;
}

.my_nav {
	width: 92%;
	height: 5rem;
	background-image: linear-gradient(#fcf0bc, #fdfbee);
	position: relative;
	margin-left: 4%;
	float: left;
	border-radius: 0.5rem;
	display: flex;
	padding: 1rem;
	margin-top: -2.5rem;
	box-sizing: border-box;
	justify-content: flex-start;

}

.my_nav img {
	height: 3rem;
	display: block;
	flex-shrink: 0;
}

.my_nav .text {
	width: 100%;
	height: 3rem;
	margin-left: 0.5rem;
}

.my_nav .text h4 {
	width: 100%;
	height: 1.5rem;
	line-height: 1.5rem;
}

.my_nav .text p {
	font-size: 12px;
	height: 1.5rem;
	line-height: 1.5rem;
}

.my_order_list {
	width: 92%;
	background: #fff;
	float: left;
	margin: 1rem 4%;
	border-radius: 0.5rem;
}

.my_order_list .top {
	width: 100%;
	height: 2.5rem;
	line-height: 2.5rem;
	padding: 0 4%;
	box-sizing: border-box;
	font-size: 14px;
	color: #999;
	border-bottom: 1px #f5f5f5 solid;
}

.my_order_list ul {
	width: 92%;
	height: 11.5rem;
	margin: 1rem 4%;
	overflow-x: scroll;
}


.my_order_list li {
	width: 100%;
	height: 3.5rem;
	padding: 0rem;
	box-sizing: border-box;
	border-radius: 0.25rem;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.75rem;
}

.my_order_list li .text {
	width: 100%;
	height: 3.5rem;
	margin-right: 0.75rem;
	overflow: hidden;
}

.my_order_list li .text h4 {
	width: 100%;
	height: 1.5rem;
	line-height: 1.5rem;
	overflow: hidden;
	font-size: 15px;
	color: #666;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.my_order_list li .text p:nth-child(2) {
	height: 1.5rem;
	font-size: 13px;
	line-height: 1.5rem;
	color: #999;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.my_order_list li .text p:nth-child(3) {
	margin-top: 0.25rem;
	height: 1.25rem;
	line-height: 1.25rem;
	font-size: 14px;
	font-weight: bold;
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.my_order_list li .text p:nth-child(3) span:nth-child(1) {
	font-weight: bold;
	font-size: 16px;
	color: #f8d256;
}

.my_order_list li .text p:nth-child(3) span {
	font-weight: normal;
	color: #ccc;
	font-size: 12px;

}

.my_order_list li .img {
	width: 3.5rem;
	height: 3.5rem;
	flex-shrink: 0;
	margin-top: 0rem;
	position: relative;
}

.my_order_list li .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.5rem;
}

.my_order_list li .img span {
	padding: 0.25rem 0.75rem;
	font-size: 12px;
	background: #f8d256;
	color: #fff;
	display: inline-block;
	position: absolute;
	top: 0;
	border-radius: 0 0.25rem 0 0.25rem;
	right: 0;
}

.my_binding_box {
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, .4);
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
}

.my_binding_mobile {
	width: 92%;
	background: #fff;
	position: fixed;
	top: 30vh;
	border-radius: 0.5rem;
	left: 4%;
	padding: 1.5rem 4%;
	box-sizing: border-box;
}

.my_binding_mobile h3 {
	width: 100%;
	text-align: center;
	margin-bottom: 1.5rem;
	font-size: 16px;
}

.my_binding_mobile input {
	width: 100%;
	height: 2.5rem;
	background: #f5f5f5;
	border-radius: 0.25rem;
	padding: 0 4%;
	box-sizing: border-box;
}

.my_binding_mobile button {
	width: 100%;
	height: 2.5rem;
	background: #f9cd52;
	margin-top: 1.5rem;
	border-radius: 0.25rem;
	font-size: 15px;
	color: #fff;
}

.my_binding_mobile p {
	padding: 0 1rem;
	height: 2rem;
	line-height: 2rem;
	background: #f9cd52;
	display: inline-block;
	font-size: 14px;
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	border-radius: 0 0.5rem 0 0.5rem;
}

.classification_qrcode_box {
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, .4);
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
}

.classification_qrcode {
	width: 92%;
	background: #fff;
	position: fixed;
	top: 30vh;
	border-radius: 0.5rem;
	left: 4%;
	padding: 1.5rem 4%;
	box-sizing: border-box;
}

.classification_qrcode img {
	height: 8rem;
	display: block;
	margin: 0 auto;
}

.classification_qrcode h3 {
	width: 100%;
	text-align: center;
	margin-bottom: 1rem;
	font-size: 16px;
}

.classification_qrcode .gb {
	padding: 0 1rem;
	height: 2rem;
	line-height: 2rem;
	background: #f9cd52;
	display: inline-block;
	font-size: 14px;
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	border-radius: 0 0.5rem 0 0.5rem;
}

.classification_qrcode .tips {
	width: 100%;
	height: 2rem;
	line-height: 2rem;
	font-size: 14px;
	color: #999;
	text-align: center;
}
.vip_footer{
	width: 100%;
	height: 60px;
	background: #fff;
	position: fixed;
	bottom: 80px;
	left: 0;
	border-radius: 0.75rem 0.75rem 0 0;
	z-index: 999;
}
.vip_footer .left{
	width: 25%;
	height: 60px;
	float: left;
}
.vip_footer .left img{
	height: 26px;
	display: block;
	margin: 8px auto 2px;
}
.vip_footer .left p{
	width: 100%;
	height: 16px;
	line-height: 16px;
	font-size: 12px;
	text-align: center;
}
.vip_footer .right{
	width: 75%;
	float: right;
	height: 60px;
}
.vip_footer .right button{
	width: 100%;
	height: 66px;
	background-image: linear-gradient(#fd84eb, #f44dff);
	color: #fff;
	margin-top: -6px;
	font-size: 20px;
	font-weight: bold;
	border-radius: 0.75rem 0.75rem 0 0;
}