﻿.con-content {
    height: auto;
    overflow: hidden;
    width: 1100px;
    margin: 0 auto;
}




/*flex布局*/
.flex{
    display: flex;
}



.flex1{
    flex: 1 1 0;
}


.flex2{
    flex: 2 1 0;
}

.flex-base {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
}

.flex-right {
    justify-content: flex-end !important;
}


.flex-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-around {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
}

.flex-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

.layout-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-column{
    display: flex;
    flex-direction: column;
}


.flex-column-c{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex-end {
    align-items: flex-end;
}


.flex-shrink{flex-shrink: 0;}


.w100p {
	width: 100%;
}




.shop-title tbody {
	border:1px solid #ddd;
}


table{
	border-collapse: collapse;
}
.shop-title tr{
	border-bottom: 1px solid #ddd;
}

.shop-title td {
	padding: 5px;
}


.sum-border {
	border:1px solid #ddd;
	border-top: none;
}



.shop-title td img {
	padding: 5px;
	width: 80px;
	height: 80px;
	border:1px solid #ddd;
	border-radius: 5px;
	display: inline-block;
}


.vam {
	vertical-align: middle;
}



.shop-title {
	text-align: center;
}

.shop-right {
	text-align: right;
	padding: 10px 20px;
}
.shop-left {
	text-align: left;
}

.sum-btn {
	display: inline-block;
	padding: 5px 10px;
	border:1px solid #ddd;
	border-radius: 5px;

}


.shop-tip-btn {
	position: fixed;
	top: 80%;
	right: 10%;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 0 10px 3px #ddd;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	color: #e43787;
}


.shop-tip-btn i{
	font-size: 30px;
 }



.shop-title .shop-left-20 {
	padding-left: 20px;
}


/*计数器*/
.m-spinner {
    border: 1px solid #EAE8E8;
    border-radius: 1px;
    display: inline-block;
    overflow: hidden;
}

.m-spinner > a {
    float: left;
    width: 30px;
    height: 32px;
    line-height: 31px;
    text-align: center;
    font-weight: bold;
    color: #666;
    letter-spacing: 0;
    background-color: #F8F8F8;
    text-decoration:none;
}

.m-spinner > input {
    letter-spacing: 0;
    float: left;
    width: 40px;
    height: 30px;
    line-height: 2.7;
    text-align: center;
    color: #666;
    border: none;
    font-size: 13px;
}

.goods-box {
	width: 250px;
	border:1px solid #ddd;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: 20px;
}

.goods-box img {
	width: 96%;
	margin: 4%;
}


.goods-detail-box {
	width: 100%;
	background-color: #eef2f3;
	font-size: 14px;
}

.mg-goods {
	padding:10px;
}


.add-shop-car {
	display: inline-block;
	padding: 5px 10px;
	background-color: #e65f8f;
	color: #fff;
	font-weight: 600;
	font-size: 12px;
	border-radius: 5px;
	cursor: pointer;
}