*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{text-decoration: none;}
img{
    width: 100%;
    vertical-align: middle;
}

body{
    background-color: #f7f7f8;
}

/* common公共样式 */
.red{
    color: #cf4444;
}
.pannel{
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
}
.common_rest{
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #262626;
    margin-bottom: 29px;
}
.common_rest input{
    font-size: 15px;
    color: #333;
	width: 60%;
	line-height: 36px;
	border: 0;
	background: #f8f8f8;
	border-radius: 5px;
	text-align: right;
	padding-right: 5px;
}

.heardbox{
		height: 50px;
	    z-index: 102;
	    background: #ae1f23;
		font-size: 16px;
		color: #fff;
		text-align: center;
		line-height: 50px;
}

/* 主体部分 */
.main{
    /*下面设内边距是因为 固定定位脱标 会覆盖标准流的位置
     因此paading-bottom至少要大于等于固定部分的高度，防止被遮盖*/
    padding: 12px 11px 80px;
}
/* 用户信息开始 */
.main .user_msg{
    display: flex;
    padding: 15px 0 14px 11px;
    align-items: center;
}
.main .user_msg .login{
    width: 40px;
    height: 40px;
    background:#ae1f23;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
	margin-left: 15px;
	margin-bottom: 10px;
}
.icon-location{
    font-size: 16px;
    color: #fff;
}
.main .user_msg .usr{
    flex: 1;
}
/* .main .user_msg .usr p{
    font-size: 15px;
    color: #262626;
}
.main .user_msg .usr p:last-child{
    font-size: 12px;
    color: #333;
    margin-top: 10px;
} */
.main .user_msg .usr .top{
    display: flex;
    flex-direction: column;
}


.main .user_msg .usr .top input{
    font-size: 15px;
    color: #333;
	width: 100%;
	line-height: 36px;
	border: 0;
	border-bottom: 1px #ededed solid;
}

.lts{
	width: 80px;
}
.main .user_msg .usr .top h5{
    width: 55px;
    font-size: 15px;
    color: #262626;
}
.main .user_msg .usr .top span{
    font-size: 13px;
    color: #333;
}
.main .user_msg .usr .bottom{

}
.main .user_msg .usr .bottom span{
    font-size: 12px;
    color: #333;
}


.main .user_msg .usr .bottom input{
    font-size: 14px;
    color: #333;
	width: 100%;
	line-height: 36px;
	border: 0;
	border-bottom: 1px #ededed solid;
}
.main .user_msg .more{
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 44px;
}
.icon-more{
    font-size: 10px;
    color: #808080;
}
/* 用户信息结束 */

/*商品信息开始 */
.main .goods{
    /* 数量多少 是否留区域看产品经理 */
    display: flex;
    align-items: center;
    padding: 11px 0 11px 11px;

}
.main .goods .pic{
    width: 85px;
    height: 85px;
    margin-right: 12px;
}
.main .goods .pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main .goods .info{
    flex: 1;
}
.main .goods .info .top{
    font-size: 16px;
    color: #262626;
}
.main .goods .info .center{
    width: 88px;
    height: 11px;
    background-color: #f7f7f8;
    margin-top: 7px;
    color: #888;
    font-size: 11px;
}
.main .goods .info .bottom{
    margin-top: 13px;
}
.main .goods .info .red i{
    font-size:20px;
    font-style: normal;
}
.main .info del{
    font-size: 9px;
    color: #999;
}
.main .goods .count{
    width: 44px;
    height: 44px;
    /* background-color: pink; */
    text-align: center;
    line-height: 44px;
}
.main .goods .count span{
    font-size: 7px;
    color: #262626;
}
.main .goods .count i{
    margin-left: 5px;
    font-size: 15px;
    color: #262626;
    font-style: normal;
}
/* 商品信息结束 */


/* 配送方式开始 */
.main .rest{
    padding: 14px 15px 16px 13px;
}
.main .rest div:last-child{
    margin-bottom: 0px;
}
.main .rest h5{
    font-weight: 400;
}

/* 配送方式结束 */

/* 总价格 */
.price{
    padding: 14px 15px 16px 13px;
}
.main .price h5{
    font-weight: 400;
}

/* 总价格结束 */



/* 主体部分结束 */



/* 支付部分 */

.pay{
    /* 一加上定位之后需要加上宽度，因为加上定位之后会脱标
    那盒子的宽度就不再默认为父元素的宽度 */

    /* 使用flex布局 给父元素加上flex 变身弹性盒子 */
    position: fixed;
    display: flex;
    /* 布局方式，空白都在两个盒子之间 */
    /* 改变主轴对称方式 */
    justify-content: space-between;

    /* 改变侧轴对称方式 使居中 */
    align-items: center;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
    border-top: 1px solid #ededed;
    padding:0 10px;
}

/*默认字体大小为12px */
/* 修改一些字体样式 */
.pay .left span{
    font-size: 11px;
}
.pay .left span i{
    font-size:20px;
    font-style: normal;
}
.pay .right a{
    display: block;
    width: 91px;
    height: 35px;
  background: #ae1f23;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    text-align: center;
    line-height: 35px;

}
/* 支付部分结束 */
