body {
	margin: 0;
	padding: 0;
	/* background-color: #f7f7f7; */
}

.paddingLeft {
	padding-left: 1rem;
}

.marginBottom {
	margin-bottom: 1rem;
}

.info {
	margin-top: 1rem;
}

.bg {
	/* margin-left: 1rem;
	margin-right: 1rem; */
	padding: 1rem 0 0;
	background-color: #fff;
	border-radius: 1rem;
	opacity: 0.85;
}

.borderBottom {
	margin: 0.5rem 0rem;
	border-bottom: 0.01rem solid #ccc;
}

.flex {
	display: flex;
}

.flexDir {
	display: flex;
	flex-direction: column;
}

.flexCenter {
	display: flex;
	justify-content: center;
}

.flexBetween {
	display: flex;
	justify-content: space-between;
}

.img {
	width: 5rem;
	height: 5rem;
	border-radius: 100%;
	overflow: hidden;
	margin: auto;
}

.shopName {
	margin: 0.5rem 0;
}

.icon {
	width: 10rem;
	object-fit: contain;
	margin: 0 auto;
}

.productInfo {
	margin-top: 1rem;
	padding: 0.7rem 0.7rem 0;
	border-radius: 1.875rem 1.875rem 0 0;
	box-shadow: 0 -0.1rem 0 0.0225rem rgba(165, 165, 165, 0.1);
}

.productInfo a {
	color: #35d0ff;
	text-decoration: none;
}

.productInfo span {
	margin-left: 1.25rem;
	font-weight: bold;
}

.amount {
	line-height: 3rem;
	margin-top: 1rem;
	padding: 0;
}

.amountInput {
	width: 90%;
	font-size: 1.4rem;
}

.btn .el-button {
	width: 85%;
	height: 8rem;
	margin-top: 6rem;
	font-size: 3rem;
	color: #fff;
	border: none;
	background: #f05893;
	border-radius: 4rem;
}

.btn .el-button:focus {
	color: #fff;
	background: #f05893;
}

.btn .el-button:hover{
	color: #fff;
	background: #f05893;
}

.remarks {
	display: flex;
	align-items: center;
	/* margin-top: 1rem; */
	margin-left: 2rem;
}

.remarks .el-link.el-link--default {
	font-size: 1rem;
	color: #2588c6;
}

.remarks .el-link {
	color: #2588c6;
}

.discountList {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: 2rem;
	padding: 0.5rem 0 0;
}

.discountInfo {
	margin-right: 0.9375rem;
}

.more {
	font-size: 0.75rem;
	color: #f56c6c;
	margin-right: 1rem;
}

.el-dialog__wrapper .el-dialog {
	position: absolute;
	bottom: 0;
	margin: 0;
	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;

}

.el-dialog__wrapper .el-dialog__header .el-dialog__headerbtn {
	font-size: 0;
}

.el-dialog__wrapper .el-dialog__body .el-input__inner {
	height: 4rem;
}

.el-dialog__wrapper .el-dialog__footer .el-button {
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	color: #25ac00;
	background-color: #f8f8f8;
}

.el-dialog__wrapper .el-dialog__footer .el-button--primary{
	color: #fff;
	border: none;
	background-color: #25ac00;
}

.blinker {
    -webkit-animation-name: blinker;
    animation-name: blinker;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
    animation-timing-function: cubic-bezier(1, 0, 0, 1);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    display: inline-block;
    width: 0.1rem;
    height: 1.3rem;
    margin-left: 10px;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    background: #00c7c7;
}

@-webkit-keyframes blinker {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes blinker {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
