/*
 * iweb32-style011
 *
 * Copyright 2016, TANK
 * 
 * 
 * 2016 / 03 / 31
 */
 


/* + order
*----------------------------------------------------------------------------*/
#order .orderList {
	overflow: hidden;
	padding: 14px 0;
	border-bottom: 1px #ccc dashed;
}

#order .orderList p {
	float: left;
	width: 10%;
	text-align: center;
}

#order .orderList p:first-child {
	width: 50%;
}

#order .orderList p:nth-child(3) {
	width: 20%;
}

#order .orderList p label {
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 2px #DC0009 solid;
	display: none;
	text-align: center;
}

#order .orderList:first-child p label {
	display: block;
}

#order .orderList p b {
	line-height: 100px;
	display: inline-block;
}

#order .orderList p b img {
	margin-right: 15px;
	height: 100px !important;
}

#order .orderList p b input {
	width: 60%;
	padding: 5px;
	border: 1px #ccc solid;
}

#order .orderList p b input.Del {
	width: auto;
	background: #132ACA;
	border-radius: 5px;
	color: #fff;
}

#orderTotal {
	margin: 10px 0;
}

#orderTotal p {
	margin-bottom: 10px;
	text-align: right;
}


/************ = 適應性 = ************/
/* +width:640 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {
	#order .orderList p ,
	#order .orderList p:first-child ,
	#order .orderList p:nth-child(3) {
		width: 100%;
		text-align: left;
		border-bottom: 1px #ccc dotted;
	}
	#order .orderList p:last-child {
		border-bottom: 0;
	}
	#order .orderList p label ,
	#order .orderList:first-child p label {
		padding-bottom: 0;
		margin-bottom: 0;
		padding: 5px 0;
		width: 49%;
		background: #ccc;
		display: inline-block;
		border-bottom: 0;
	}
	#order .orderList p b {
		width: 49%;
		line-height: normal;
	}
	#order .orderList p b a {
		overflow: hidden;
		height: 19px;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
	}
	#order .orderList p b img {
		display: none;
	}
	#order .orderList p b input {
		width: auto;
	}
}


/* +width:480 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	#order .orderList p ,
	#order .orderList p:first-child ,
	#order .orderList p:nth-child(3) {
		text-align: center;
	}
	#order .orderList p label ,
	#order .orderList:first-child p label ,
	#order .orderList p b {
		width: 100%;
	}
	#order .orderList p b {
		margin: 10px 0;
		display: block;
	}
}