header {
	padding: 0 15px;
}

section {
	/* background: #f2f2f2; */
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
label{
	margin: 0;
}
.sectionBox1 {
	border-radius: initial;
}

/* main css */
/*===== 头部 =====*/
.headerBox {
	text-align: center;
	padding: 15px 0;
}

.headerBox a {
	color: #000;
}

.headerBox a:hover {
	color: #5a73a4;
}

.back_arrow {
	float: left;
}

.back_arrow span {
	font-weight: 600;
}

.headerBox h4 {
	font-weight: 600;
	display: inline-block;
}

/* section css */
/* tab菜单切换 */
.menuSwitch_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	font-size: 14px;
	background: #fff;
}

.menuSwitch_list {
	padding-bottom: 5px;
	font-weight: 600;
	cursor: pointer;
}

.menuSwitch_list:hover {
	color: #5a73a4;
}

.menuSwitch_list.active {
	color: #5a73a4;
	padding-bottom: 3px;
	border-bottom: 2px solid #5a73a4;
}

#content_toBeDelivered,
#content_toBeReceived,
#content_received {
	display: none;
}
.pendingPayment_box {
	overflow: auto;
}
.pendingPayment_box::-webkit-scrollbar {
	display: none;
}
/* 订单列表-待付款 */
.pendingPayment_listBox{
	padding: 5px;
}
.orderList_pendingPayment{
	padding: 0 10px;
	border: 1px solid #b3b3b3;
}
.merchantShop_box{
	padding: 10px 0;
	border-bottom: 1px solid #b3b3b3;
}
.merchantShop_box label{
	display: flex;
	align-items: center;
}
input[type=checkbox], input[type=radio]{
	margin: 0 ;
	margin-right: 5px;
}
.merchantShop_productList{
	display: flex;
	align-items: center;
	padding: 15px 0;
}
.productList_imgBox{
	width: 100px;
	height: 100px;
}
.productList_imgBox img{
	width: 100%;
	height: 100%;
}
.productList_otherBottom{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.productList_otherBox{
	padding-left: 10px;
}
.productList_otherBox h5{
	font-weight: 600;
	margin-bottom: 10px;
}
.price_PV{
	color: #5a73a4;
}
/* 数量增减 */
.minus_btn,
.plus_btn{
	width: 26px;
	height: 24px;
	padding: 0;
}
.minus_btn,
.minus_btn:focus,
.plus_btn,
.plus_btn:focus{
	background-color: #fff;
	border-color: #b3b3b3;
	color: #707070;
}

.minus_btn:hover,
.minus_btn:focus:hover,
.plus_btn:hover,
.plus_btn:focus:hover{
	background-color: #fff;
	border-color: #5a73a4;
	color: #5a73a4;
}
.quantityNumber{
	display: inline-block;
	margin-bottom: 0;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	padding: 2.5px 6px;
	background-color: #fff;
	color: #333;
}

/* 悬浮结算菜单 */
.settlementMenu_box {
	height: 73px;
	position: relative;
}
form{
	margin: 0;
}
.floatingMenu_box2 {
	position: fixed;
	/* position: absolute; */
	/* bottom: 0; */
	z-index: 99;
	/* width: 375px; */
	padding: 15px 0;
	padding-left: 15px;
	display: flex;
	background: #fff;
	justify-content: space-between;
	align-items: center;
	/* background: #fff; */
	border-top: 1px solid #f3f3f3;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.totalBox{
	width: 65%;
}
.selectAll_box{
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
}
.selectAll_box label{
	display: flex;
	align-items: center;
}
.selectAll_box p{
	font-weight: 600;
}
.totalPrice{
	text-align: right;
	color: #5a73a4;
	font-weight: 600;
}
.buyNow_btn,
.buyNow_btn:focus {
	background-color: #5a73a4;
	border-color: #5a73a4;
	color: #fff;
	border-radius: initial;
}

.buyNow_btn:hover,
.buyNow_btn:focus:hover {
	background-color: #455f93;
	border-color: #455f93;
	color: #fff;
}

/* ===== 订单列表-待发货 ===== */
.toBeDelivered_box{
	padding-bottom: 15px;
}
.toBeDelivered_listBox{
	/* border-top: 5px solid #f3f3f3; */
}
.toBeDelivered_listTitle{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 15px;
	margin-bottom: 0;
	padding-bottom: 15px;
	border-bottom: 1px solid #b3b3b3;
	cursor: pointer;
}
.toBeDelivered_listTitle:hover{
	color: #5a73a4;
}
.toBeDelivered_listTitle h4{
	font-size: 14px;
	font-weight: 600;
}

.pendingOrders_listBox{
	display: flex;
	align-items: center;
	margin: 15px;
	margin-bottom: 0;
	padding-bottom: 15px;
	border-bottom: 1px solid #b3b3b3;
}

.ordersList_imgBox{
	width: 100px;
	height: 100px;
}
.ordersList_imgBox img{
	width: 100%;
	height: 100%;
}
.ordersList_otherBottom{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.ordersList_otherBox{
	padding-left: 10px;
}
.ordersList_otherBox h5{
	font-weight: 600;
	margin-bottom: 10px;
	cursor: pointer;
}

.totalInformation_box{
	display: flex;
	justify-content: space-between;
	padding: 15px;
}
.totalInformation_box p{
	font-weight: 600;
}
.total_price{
	color: #5a73a4;
}
.expected_delivery{
	color: #FFA700;
}

/*===== 待收货 =====*/
.operateBtn_box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	padding-top: 0;
}
.transportationStatus_btn,
.transportationStatus_btn:focus {
	width: 45%;
	padding: 3px 6px;
	background-color: #fff;
	border-color: #333;
	color: #333;
}

.transportationStatus_btn:hover,
.transportationStatus_btn:focus:hover {
	background-color: #fff;
	border-color: #5a73a4;
	color: #5a73a4;
}

.ordersReceived_btn,
.ordersReceived_btn:focus {
	width: 45%;
	padding: 3px 6px;
	background-color: #5a73a4;
	border-color: #5a73a4;
	color: #fff;
}

.ordersReceived_btn:hover,
.ordersReceived_btn:focus:hover {
	background-color: #455f93;
	border-color: #455f93;
	color: #fff;
}

/* 已收货 */
.rateNow_btn,
.rateNow_btn:focus {
	width: 45%;
	padding: 3px 6px;
	background-color: #5a73a4;
	border-color: #5a73a4;
	color: #fff;
}

.rateNow_btn:hover,
.rateNow_btn:focus:hover {
	background-color: #455f93;
	border-color: #455f93;
	color: #fff;
}
/* 返回顶部 */
.goTop {
	color: #f0ad4e;
	position: fixed;
	bottom: 90px;
	margin-left: 345px;
	z-index: 99;
	display: none;
}

.goTop:hover,
.goTop:focus:hover {
	color: #CC1919;
}

.goTop_icon {
	font-size: 24px;
}
/* 媒体查询css */
@media (max-width:768px) {
	/* 悬浮结算菜单 */
	.floatingMenu_box {
		width: 100%;
		border-radius: initial;
	}
}
