.main-content{
    max-width: 1200px;
    margin: 0 auto;
}

.main-fuid{
    max-width: 1920px;
    margin: 0 auto;
}

.footer-fuid{
    width: 100%;
    margin: 0 auto;
}


.bkgnd{
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
}

.payment{
	position:fixed;
	width:600px;
	height:400px;
	background-color: #fff;
	padding:20px;
	z-index: 66;
	left:50%;
	border-radius: 5px;
	top:-600px;
	margin-left:-300px;
	margin-top:0;
	transition: all .3s ease-out;
}

.payment .btn-exit{
	position:absolute;
	right:5px;
	top:5px;
	width:40px;
	height:40px;
	display:flex;
	align-items:center;
	justify-content:center;
	z-index:2;
	cursor:pointer;
}

.payment .btn-exit i{
	font-size:30px;
	color:#999;
	width:25px;
	height:25px;
}


.payment-mask{
	position:fixed;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-color: rgba(0, 0, 0, .2);
	z-index:3;
	display: none;
}

.btn-reset{
	background-color: #EFF5F3;
	color:#006934;
	padding:5px 10px;
	text-align: center;
	border-radius: 3px;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.btn-reset img{
	width:16px;
	height:16px;
	margin-right:5px;
}

.btn-add{
	background-color: #006934;
	color:#fff;
	border-radius: 3px;
	padding:5px 30px;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.btn-add:hover{
	text-decoration: none;
	color:#fff;
}

.btn-add img{
	width:14px;
	height:14px;
	margin-right:5px;
}

.btn-gray{
	color:#999;
}

.btn-gray:hover{
	text-decoration: none;
}

.payment-method{
	background-color:transparent;
}

.pay-footer{
	position: absolute;
	bottom:0;
	border-radius:5px;
	height:80px;
	left:0;
	right:0;
}

.payment-method-item{
	background-color:#FFF;
	border-radius:5px;
	cursor:pointer;
	display:flex;
	align-items: center;
	min-width: 200px;
	margin:10px 0;
	padding:5px 10px;
	border:1px solid #FFF;
	user-select: none;
}
.payment-method-item img{
	width:20px;
}

.payment-method > .item-sel{
	border-color:#006934 !important;
	position: relative;
}

.payment-method > .item-sel::before{
	content:"";
	position: absolute;
	right:0;
	width:14px;
	height:14px;
	bottom:0;
	background-color: #006934;
	border-top-left-radius: 5px;
	
}
.payment-method > .item-sel::after{
	content:"";
	position: absolute;
	right:4px;
	bottom:4px;
	width:4px;
	height:8px;
	border-left:2px solid #fff;
	border-top:2px solid #fff;
	transform: rotate(-135deg);
}

.category-item-content > img{
	width:60px
}
.category-item-content > .price{
	background-color:rgba(0, 105, 52, 0.05);
	padding:2px 15px;
	flex-shrink: 0;
	border-radius: 20px;
}
.category-item-content > .price >.money{
	color:#FF7b18;
	font-weight:bold;
}
.category-item-content > .price >.charater{
	color:#999;
}

.home-banner{
	padding-bottom: 36.88% !important;
}

.footer-items-center{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
@media screen and (max-width: 768px) {
	.main-content{
		width: 100%;
		overflow-x: hidden;
	}
	
	.main-fuid{
		width: 100%;
		overflow-x: hidden;
	}

	.footer-items-center{
		align-items: center;
	}

	.payment{
		display: none;
		left:0;
		right:0;
		bottom:0;
		top:0;
		margin:0 !important;
		width:100%;
		height:100%;
	}
}