.user-cell-content{
	min-height: 500px;
}
.cell {
	background-color: #fff;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	padding: 12px 15px;
	font-size: 15px;
}

.cell::before {
	position: absolute;
	z-index: 3;
	right: 0;
	bottom: 0;
	left: 15px;
	height: 1px;
	content: '';
	-webkit-transform: scaleY(0.5);
	transform: scaleY(0.5);
	background-color: #e6e6e6;
}

.cell-bd {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	height:24px;
	line-height:24px;
}

.cell-ft {
	text-align: right;
	color: #999;
	position: relative;
}

.cell-ft.cell-icon {
	padding-right: 30px;
}


.cell-ft.cell-icon::after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-top: 1px solid #999;
	border-right: 1px solid #999;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	vertical-align: middle;
	position: absolute;
	top: 50%;
	right: 2px;
	margin-top: -4px;
}

.user-form-list{
	clear: both;
}

.user-form-list .inp-code .btn.disabled{
	color: #999;
	border: none;
	background: #f2f2f2;
}

/* 超小设备（手机，小于 768px） */
@media (max-width: 768px) {
	.userinfo {
		background: #fff;
		min-height: 480px;
	}

	/* 用户基本信息 */
	.user-form {
		padding: 20px 0;
	}

	.user-form-list {
		padding: 0 15px;
	}

	.user-form-list .des {
		padding: 8px 0;
		font-size: 14px;
		color: #666;
	}

	.user-form-list .inp {

	}

	.user-form-list .inp input {
		width: 100%;
		height: 40px;
		box-sizing: border-box;
		font-size: 14px;
		padding-top: 0;
		padding-bottom: 0;
		padding-left:8px;
		outline: none;
		border: 1px solid #e6e6e6;
		background: none;
	}

	.user-form-list .inp textarea {
		width: 100%;
		padding:8px;
		box-sizing: border-box;
		font-size: 15px;
		line-height: 24px;
		outline: none;
		resize: none;
		border: 1px solid #e6e6e6;
		background: none;
	}

	.user-save-box {
		margin: 20px 15px 0;
	}

	.user-save-btn {
		outline: none;
		border: none;
		display: block;
		width: 100%;
		height: 40px;
		font-size: 16px;
		background: #c30e23;
		color: #fff;
		padding: 0 20px;
	}

	.user-save-btn:active {
		background: #b20d20;
	}

	/* 用户订单信息 */

	.order-table {
		padding: 0 15px;
	}

	.order-tr {
		display: flex;
		display: -webkit-flex;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.order-tr .cell {
		vertical-align: middle;
	}

	.order-tr .cell:nth-child(1) {
		width: 100%;
	}

	.order-tr .cell:nth-child(2) {
		width: 75%;
	}

	.order-tr .cell:nth-child(3) {
		width: 25%;
		text-align: right;
	}

	.order-tr .cell:nth-child(4) {
		width: 50%;
		padding-top:5px;
	}

	.order-tr .cell:nth-child(5) {
		width: 50%;
		text-align: right;
		padding-top:5px;
	}

	.order-thead {
		display: none;
	}

	.order-tbody {
		padding: 10px 0;
		border-bottom: 1px solid #e6e6e6;
	}

	.order-info {
		color: #999;
		font-size: 13px;
		padding: 8px 0;
		display: flex;
		display: -webkit-flex;
	}

	.order-info span:first-child{
		flex: 1;
		-webkit-flex: 1;
	}

	.goods-detail {
		display: flex;
		display: -webkit-flex;
	}

	.goods-img {
		width: 72px;
		height:72px;
		margin-right:10px;
	}

	.goods-img img {
		width: 100%;
		height: 100%;
	}

	.goods-info {
		flex: 1;
		-webkit-flex: 1;
		padding: 5px 0;
	}

	.goods-name {
		font-size: 14px;
		font-weight: normal;
		padding: 0 0 5px;
	}

	.goods-attr {
		color: #999;
		font-size: 13px;
	}

	.goods-attr span {
		margin-right: 10px;
	}
	.order-price{
		padding-left:82px;
	}
	.price-unit {
		color: #999;
		font-size: 13px;
		text-decoration: line-through;
	}

	.price-real {
		color: #f00;
	}

	.order-number {
		color: #999;
	}

	.order-status-unpay {
		line-height:24px;
		color: #f00;
	}

	.order-status-finish {
		line-height:24px;
		color: #45a54b;
	}

	.order-status-cancel {
		line-height:24px;
		color: #999;
	}

	.order-del {
		display: inline-block;
		background-color:#f2f2f2;
		color: #666;
		height:24px;
		line-height:24px;
		padding:0 10px;
	}

	.order-cancel {
		display: inline-block;
		background-color:#f2f2f2;
		color: #666;
		height:24px;
		line-height:24px;
		padding:0 10px;
	}

	.order-cancel:active,
	.order-del:active {
		background-color: #f7dee1;
		color: #c30e23;
	}
}

/* 小型设备（平板电脑，768px 起） */
@media (min-width: 768px) and (max-width: 1200px) {
	.userinfo {
		background: #fff;
		min-height: 480px;
	}

	/* 用户基本信息 */
	.user-form {
		padding: 30px 0;
	}

	.user-form-list {
		overflow: hidden;
		margin:15px 30px;
	}

	.user-form-list .des {
		float: left;
		width: 15%;
		line-height: 38px;
		color: #666;
	}

	.user-form-list .inp {
		float: left;
		width: 85%;
	}

	.user-form-list .inp input {
		width: 100%;
		height: 38px;
		box-sizing: border-box;
		font-size: 15px;
		padding-left: 8px;
		padding-top: 0;
		padding-bottom: 0;
		outline: none;
		border: 1px solid #e6e6e6;
		background: none;
	}

	.user-form-list .inp textarea {
		width: 100%;
		padding: 8px;
		box-sizing: border-box;
		font-size: 15px;
		line-height: 24px;
		outline: none;
		resize: none;
		border: 1px solid #e6e6e6;
		background: none;
	}
	.user-save-box{
		margin:0 30px;
	}

	.user-save-btn {
		margin-left: 15%;
		outline: none;
		border: none;
		height: 36px;
		background: #c30e23;
		color: #fff;
		padding: 0 20px;
		cursor: pointer;
	}

	.user-save-btn:hover {
		background: #b20d20;
	}

	/* 用户订单信息 */
	.order-table {
		padding: 0 15px;
	}

	.order-tr {
		display: table;
		width: 100%;
	}

	.order-tr .cell {
		display: table-cell;
		vertical-align: middle;
	}

	.order-tr .cell:nth-child(1) {
		width: 49%;
		padding-left: 0.5%;
		padding-right: 0.5%;
	}

	.order-tr .cell:nth-child(2) {
		width: 16%;
		text-align: center;
		padding-left: 0.5%;
		padding-right: 0.5%;
	}

	.order-tr .cell:nth-child(3) {
		width: 10%;
		text-align: center;
		padding-left: 0.5%;
		padding-right: 0.5%;
	}

	.order-tr .cell:nth-child(4) {
		width: 10%;
		text-align: center;
		padding-left: 0.5%;
		padding-right: 0.5%;
	}

	.order-tr .cell:nth-child(5) {
		width: 10%;
		text-align: center;
		padding-left: 0.5%;
		padding-right: 0.5%;
	}

	.order-thead {
		border-bottom: 1px solid #e6e6e6;
	}

	.order-thead .cell {
		padding-top: 15px;
		padding-bottom: 15px;
		line-height: 20px;
		text-align: center;
		font-size: 14px;
		font-weight: bold;
		color: #666;
	}

	.order-tbody {
		padding: 10px 0 15px;
		border-bottom: 1px solid #e6e6e6;
	}

	.order-info {
		color: #999;
		font-size: 13px;
		padding: 10px 0;
	}

	.order-info span {
		margin-right: 30px;
	}

	.goods-detail {
		overflow: hidden;
	}

	.goods-img {
		float: left;
		width: 84px;
		height: 84px;
	}

	.goods-img img {
		width: 100%;
		height: 100%;
	}

	.goods-info {
		margin-left: 100px;
		padding: 5px 0;
	}

	.goods-name {
		font-size: 15px;
		font-weight: normal;
		padding: 0 0 5px;
	}

	.goods-attr {
		color: #999;
		font-size: 13px;
	}

	.goods-attr span {
		margin-right: 10px;
	}

	.price-unit {
		color: #999;
		font-size: 13px;
		text-decoration: line-through;
	}

	.price-real {
		color: #f00;
	}

	.order-number {
		color: #999;
	}

	.order-status-unpay {
		color: #f00;
	}

	.order-status-finish {
		color: #45a54b;
	}

	.order-status-cancel {
		color: #999;
	}

	.order-del {
		color: #333;
		cursor: pointer;
	}

	.order-cancel {
		color: #999;
		cursor: pointer;
	}

	.order-cancel:hover,
	.order-del:hover {
		color: #c30e23;
	}
}

/* 大型设备（大台式电脑，1200px 起） */
@media (min-width: 1200px) {
	.userinfo {
		background: #fff;
		min-height: 480px;

	}

	/* 用户基本信息 */
	.user-form {
		padding: 30px 0;
	}

	.user-form-list {
		overflow: hidden;
		margin:15px 30px;
	}

	.user-form-list .des {
		float: left;
		width: 10%;
		line-height: 38px;
		color: #666;
	}

	.user-form-list .inp {
		float: left;
		width: 90%;
	}

	.user-form-list .inp input {
		width: 100%;
		height: 38px;
		box-sizing: border-box;
		font-size: 15px;
		padding-left: 8px;
		padding-top: 0;
		padding-bottom: 0;
		outline: none;
		border: 1px solid #e6e6e6;
		background: none;
	}

	.user-form-list .inp textarea {
		width: 100%;
		padding: 8px;
		box-sizing: border-box;
		font-size: 15px;
		line-height: 24px;
		outline: none;
		resize: none;
		border: 1px solid #e6e6e6;
		background: none;
	}
	.user-form-list .inp-code input{
		width: 82%;
		float: left;
	}
	.user-form-list .inp-code .btn{
		width: 16%;
		float: left;
		margin-left:2%;
		height: 38px;
		line-height: 38px;
		border: 1px solid #c30e23;
		box-sizing: border-box;
		text-align: center;
		cursor: pointer;
		color: #c30e23;
	}
	.user-save-box{
		margin:0 30px;
	}
	.user-save-btn {
		margin-left: 10%;
		outline: none;
		border: none;
		height: 36px;
		background: #c30e23;
		color: #fff;
		padding: 0 20px;
		cursor: pointer;
	}

	.user-save-btn:hover {
		background: #b20d20;
	}

	/* 用户订单信息 */
	.order-table {
		padding: 0 15px;
	}

	.order-tr {
		display: table;
		width: 100%;
	}

	.order-tr .cell {
		display: table-cell;
		vertical-align: middle;
	}

	.order-tr .cell:nth-child(1) {
		width: 48%;
		padding-left: 1%;
		padding-right: 1%;
	}

	.order-tr .cell:nth-child(2) {
		width: 15%;
		text-align: center;
		padding-left: 1%;
		padding-right: 1%;
	}

	.order-tr .cell:nth-child(3) {
		width: 9%;
		text-align: center;
		padding-left: 1%;
		padding-right: 1%;
	}

	.order-tr .cell:nth-child(4) {
		width: 9%;
		text-align: center;
		padding-left: 1%;
		padding-right: 1%;
	}

	.order-tr .cell:nth-child(5) {
		width: 9%;
		text-align: center;
		padding-left: 1%;
		padding-right: 1%;
	}

	.order-thead {
		border-bottom: 1px solid #e6e6e6;
	}

	.order-thead .cell {
		padding-top: 15px;
		padding-bottom: 15px;
		line-height: 20px;
		text-align: center;
		font-size: 14px;
		font-weight: bold;
		color: #666;
	}

	.order-tbody {
		padding: 10px 0 15px;
		border-bottom: 1px solid #e6e6e6;
	}

	.order-info {
		color: #999;
		font-size: 13px;
		padding: 10px 0;
	}

	.order-info span {
		margin-right: 30px;
	}

	.goods-detail {
		overflow: hidden;
	}

	.goods-img {
		float: left;
		width: 96px;
		height: 96px;
	}

	.goods-img img {
		width: 100%;
		height: 100%;
	}

	.goods-info {
		margin-left: 110px;
		padding: 5px 0;
	}

	.goods-name {
		font-size: 15px;
		font-weight: normal;
		padding: 5px 0;
	}

	.goods-attr {
		color: #999;
		font-size: 13px;
	}

	.goods-attr span {
		margin-right: 10px;
	}

	.price-unit {
		color: #999;
		font-size: 13px;
		text-decoration: line-through;
	}

	.price-real {
		color: #f00;
	}

	.order-number {
		color: #999;
	}

	.order-status-unpay {
		color: #f00;
	}

	.order-status-finish {
		color: #45a54b;
	}

	.order-status-cancel {
		color: #999;
	}

	.order-del {
		color: #333;
		cursor: pointer;
	}

	.order-cancel {
		color: #999;
		cursor: pointer;
	}

	.order-cancel:hover,
	.order-del:hover {
		color: #c30e23;
	}
}

@media (min-width: 768px) and (max-width: 1200px) {
	.user-form-list .inp input.email-code{
		width: 80%;
		float: left;
	}
	.user-form-list .inp-code .btn{
		width: 18%;
		float: left;
		margin-left:2%;
		height: 38px;
		line-height: 38px;
		border: 1px solid #c30e23;
		box-sizing: border-box;
		text-align: center;
		cursor: pointer;
		color: #c30e23;
	}
}
@media (max-width: 768px) {
	.user-form-list .inp input.email-code{
		width: 65%;
		float: left;
	}
	.user-form-list .inp-code .btn{
		width: 33%;
		float: left;
		margin-left:2%;
		height: 38px;
		line-height: 38px;
		border: 1px solid #c30e23;
		box-sizing: border-box;
		text-align: center;
		cursor: pointer;
		color: #c30e23;
	}
}