.confirmOrder,
.payment,
.shoppingCart {
	padding: 60px 0 152px;
	background-size: 143% 143%;
	background-image: linear-gradient(135deg, RGBA(215, 236, 250, 1), RGBA(250, 250, 250, 1), RGBA(189, 239, 208, 1));
	animation: flow 13s ease infinite;
}

.shoppingCart .box1 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.shoppingCart .box1 .l {
	flex: 1;
	margin-right: 20px;
}

.shoppingCart .box1 .l .title {
	padding: 40px 40px 30px;
	border-radius: 5px 5px 0 0;
	background-color: #fff;
	font-family: Microsoft YaHei;
	font-weight: 300;
	font-size: 24px;
	color: #666666;
	line-height: 1;
}

.shoppingCart-table {
	overflow: auto;
}

.shoppingCart-table table {
	width: 100%;
	border-collapse: collapse;
	/* min-width: 1000px; */
}

.shoppingCart-table table th {
	position: relative;
	background-color: #fff;
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 16px;
	color: #222222;
	line-height: 24px;
	padding: 0 10px 29px;
}
.shoppingCart-table table .checkboxContainer{
	position: sticky;
	left: 0;
	z-index: 8;
}
.shoppingCart-table table .checkboxContainer:before{
	position: absolute;
	content: "";
	left: 0;
	top: 10px;
	height: calc(100% - 10px);
	width: 100%;
	background-color: #fff;
	border-radius: 5px 0 0 5px;
}
.shoppingCart-table table th.checkboxContainer:before{
	top: 0;
	height: 100%;
}
.shoppingCart-table table th:first-child,
.shoppingCart-table table td:first-child {
	width: 77px;
	padding-left: 43px;
}

.shoppingCart-table table th:last-child {
	border-bottom-right-radius: 5px;
	padding-right: 20px;
}

.shoppingCart-table table td {
	padding-top: 10px;
}

.shoppingCart-table table .tdBox {
	position: relative;
	height: 100%;
	display: block;
	width: 100%;
	z-index: 4;
}

.shoppingCart-table table .productMsg {
	display: flex;
	align-items: center;
}

.shoppingCart-table table tr {
	position: relative;
}

.shoppingCart-table table tr::before {
	position: absolute;
	content: "";
	top: 10px;
	left: 0;
	width: 100%;
	height: calc(100% - 10px);
	background-color: #fff;
	border-radius: 5px;
	z-index: 3;
}

.shoppingCart-table table tr:first-child:before {
	top: 0;
	height: 100%;
	border-radius: 0 0 5px 5px;
}

.shoppingCart-table table th,
.shoppingCart-table table td {
	position: relative;
	z-index: 3;
	text-align: center;
}

.shoppingCart-table table td:nth-child(2),
.shoppingCart-table table th:nth-child(2) {
	width: 50%;
}

.shoppingCart-table table td {
	padding: 30px 10px 20px;
}

.shoppingCart-table table td:last-child,
.shoppingCart-table table th:last-child {
	position: sticky;
	right: 0;
}

.shoppingCart-table table td:last-child:before {
	position: absolute;
	content: "";
	right: 0;
	top: 10px;
	width: 100%;
	height: calc(100% - 10px);
	background-color: #ffff;
	border-radius: 0 5px 5px 0;
	z-index: 2;
}

.shoppingCart-table table input[type="checkbox"] {
	position: relative;
	width: 24px;
	height: 24px;
	background: #FFFFFF;
	border: 1px solid #DEDEDE;
	visibility: hidden;
}

.shoppingCart-table table input[type="checkbox"]::after,
.shoppingCart-table table input[type="checkbox"]::before {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 5px;
	border: 1px solid rgba(222, 222, 222, 1);
	visibility: visible;
	box-sizing: border-box;
}

.shoppingCart-table table input[type="checkbox"]::after {
	font-family: 'iconfont';
	content: "\e68b";
	visibility: hidden;
	background-color: #222;
	border-color: #222;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.shoppingCart-table table input[type="checkbox"]:checked:after {
	visibility: visible;
}

.shoppingCart-table table .productMsg .pic {
	width: 120px;
	height: 74px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shoppingCart-table table .productMsg .pic img {
	max-width: 100%;
	max-height: 100%;
}

.shoppingCart-table table .productMsg .text-box {
	flex: 1;
	margin-left: 20px;
}

.shoppingCart-table table .productMsg .text-box .text-title {
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 16px;
	color: #999999;
	line-height: 24px;
	text-align: left;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.shoppingCart-table table .price {
	font-family: Rany;
	font-weight: 400;
	font-size: 18px;
	color: #222222;
	line-height: 24px;
}

.shoppingCart-table table .quantity-control {
	display: flex;
	align-items: center;
	width: 114px;
	line-height: 38px;
	background: #FFFFFF;
	border: 1px solid #DEDEDE;
	text-align: center;
	margin: 0 auto;
}

.shoppingCart-table table .quantity-control .addBtn,
.shoppingCart-table table .quantity-control .reduceBtn {
	width: 26px;
	cursor: pointer;
}

.shoppingCart-table table .quantity-control .iconfont {
	font-size: 12px;
}

.shoppingCart-table table .quantity-control input {
	flex: 1;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	font-family: Rany;
	font-weight: 400;
	font-size: 18px;
	color: #222222;
	text-align: center;
}

.shoppingCart-table table .icon-guanbi1 {
	font-size: 22px;
	color: rgba(153, 153, 153, 1);
	cursor: pointer;
	transition: all .6s;
}

.shoppingCart-table table tr:hover .icon-guanbi1 {
	color: red;
}

.card-container {
	position: sticky;
	top: 140px;
	width: 260px;
	padding: 33px 30px 46px;
	background: #FFFFFF;
	border-radius: 5px;
}

.card-container .list {
	padding-bottom: 16px;
	border-bottom: 1px solid RGBA(222, 222, 222, 1);
}

.card-container .list li {
	display: flex;
	justify-content: space-between;
}

.card-container .list .li-l {
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 14px;
	color: #999999;
	line-height: 40px;
}

.card-container .list .li-r {
	font-family: Rany;
	font-weight: 400;
	font-size: 18px;
	color: #222222;
	line-height: 40px;
}

.card-container .select {
	width: 100%;
	background: #F6F7F9;
	border-radius: 5px;
	padding: 0 11px;
	display: flex;
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 14px;
	color: #999999;
	line-height: 40px;
	margin-top: 28px;
}

.card-container .select select {
	flex: 1;
	border: none;
	outline: none;
	background-color: transparent;
	color: #999999;
	/* appearance: none; */
}

.card-container .price {
	margin-top: 18px;
	display: flex;
	justify-content: space-between;
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 14px;
	color: #999999;
	line-height: 40px;
}

.card-container .price-r {
	font-family: Rany;
	font-weight: 400;
	font-size: 30px;
	color: #222222;
}

.card-container .list .li-r span,
.card-container .price-r span {
	font-family: RanyBold;
}

.card-container .submit {
	display: block;
	line-height: 42px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	background: #222222;
	border-radius: 5px;
	text-align: center;
	margin-top: 25px;
}

.shoppingCart .box2 {
	margin-top: 54px;
}

.shoppingCart .box2 .title {
	font-family: Microsoft YaHei;
	font-weight: 300;
	font-size: 24px;
	color: #222222;
	line-height: 1;
}

.shoppingCart .box2 .list {
	margin-top: 30px;
	width: 1120px;
	max-width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.confirmOrder .box1 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.confirmOrder .box1 .l {
	flex: 1;
	margin-right: 20px;
}

.confirmOrder .box1 .l .title {
	font-family: Microsoft YaHei;
	font-weight: 300;
	font-size: 24px;
	color: #666666;
	line-height: 80px;
	background: #FFFFFF;
	border-radius: 5px;
	text-align: center;
}

.confirmOrder .box1 .l .l-t {
	margin-top: 20px;
	padding: 30px 40px;
	background: #FFFFFF;
	border-radius: 5px;
}

.confirmOrder .box1 .l .l-t .addressItems .item {
	padding: 20px 30px;
	cursor: pointer;
}

.confirmOrder .box1 .l .l-t .addressItems .item:hover,
.confirmOrder .box1 .l .l-t .addressItems .item.active {
	outline: 2px solid rgba(34, 34, 34, 1);
}

.confirmOrder .box1 .l .l-c {
	margin-top: 30px;
}

.confirmOrder .box1 .l .l-c-t {
	background: #FFFFFF;
	border-radius: 5px;
	padding: 25px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.confirmOrder .box1 .l .l-c-t-l {
	font-family: Microsoft YaHei;
	font-weight: bold;
	font-size: 18px;
	color: #222222;
	line-height: 30px;
}

.confirmOrder .box1 .l .l-c-t-r {
	display: flex;
	font-family: Microsoft YaHei;
	font-weight: 300;
	font-size: 16px;
	color: #999999;
	line-height: 30px;
	transition: all .6s;
}

.confirmOrder .box1 .l .l-c-t-r:hover {
	color: #222;
}

.confirmOrder .box1 .l .l-c-t-r .iconfont {
	font-weight: bold;
	margin-left: 8px;
}

.confirmOrder .box1 .l .l-c-c {
	margin-top: 10px;
}

.confirmOrder .box1 .l .l-c-c .shoppingCart-table table th:first-child,
.confirmOrder .box1 .l .l-c-c .shoppingCart-table table td:first-child {
	width: 50%;
}

/* .shoppingCart-table table td:nth-child(2), .shoppingCart-table table th:nth-child(2) */
.confirmOrder .box1 .l .l-c-c .shoppingCart-table table th:nth-child(2),
.confirmOrder .box1 .l .l-c-c .shoppingCart-table table td:nth-child(2) {
	width: auto;
}

.confirmOrder .box1 .l-b {
	padding: 25px 34px;
	background: #FFFFFF;
	border-radius: 5px;
	margin-top: 9px;
}

.confirmOrder .box1 .l-b-t {
	display: flex;
	justify-content: space-between;
}

.confirmOrder .box1 .l-b-t-l {
	font-family: Microsoft YaHei;
	font-weight: bold;
	font-size: 18px;
	color: #222222;
	line-height: 30px;
}

.confirmOrder .box1 .l-b-t-r {
	display: flex;
	align-items: center;
	font-family: Microsoft YaHei;
	font-weight: 300;
	font-size: 16px;
	color: rgba(153, 153, 153, 1);
	/* color: #222222; */
	line-height: 30px;
}

.confirmOrder .box1 .l-b-t-r #checkbox {
	display: flex;
	align-items: center;
	margin-right: 10px;
	visibility: hidden;
	width: 18px;
	height: 18px;
}

.confirmOrder .box1 .l-b-t-r #checkbox::before {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	border-radius: 50%;
	border: 2px solid #CCCCCC;
	box-sizing: border-box;
	visibility: visible;
}

.confirmOrder .box1 .l-b-t-r #checkbox:checked::before {
	background-color: #222;
	border-color: #222;
}

.confirmOrder .box1 .l-b-t-r #checkbox:checked+label {
	color: #222;
}

.confirmOrder .box1 .l-b-c {
	margin-top: 37px;
	display: none;
}

.confirmOrder .box1 .l-b-c form {
	width: 659px;
	max-width: 100%;
	padding-bottom: 19px;
}

.confirmOrder .box1 .l-b-c .item:not(:first-child) {
	margin-top: 20px;
}

.confirmOrder .box1 .l-b-c .item {
	display: flex;
}

.confirmOrder .box1 .l-b-c .item-l {
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 16px;
	color: #222222;
	line-height: 46px;
	width: 130px;
}

.confirmOrder .box1 .l-b-c .item-l span {
	color: rgba(224, 29, 29, 1);
}

.confirmOrder .box1 .l-b-c .item-r {
	flex: 1;
}

.confirmOrder .box1 .l-b-c .item-r .options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.confirmOrder .box1 .l-b-c .item-r .option {
	min-width: 140px;
	padding: 0 19px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 14px;
	color: #222222;
	line-height: 44px;
	border-radius: 5px;
	border: 1px solid #CCCCCC;
	text-align: center;
	transition: all .6s;
	cursor: pointer;
}

.confirmOrder .box1 .l-b-c .item-r .option.active {
	border-color: rgba(34, 34, 34, 1);
}

.confirmOrder .box1 .l-b-c .item-r .input input {
	display: block;
	width: 100%;
	height: 46px;
	padding: 0 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 14px;
	color: #333;
	line-height: 36px;
	background: #FFFFFF;
	border-radius: 5px;
	border: 1px solid #CCCCCC;
}

.confirmOrder .box1 .l-b-c .item-r .input input::placeholder {
	color: #CCCCCC;
}

.confirmOrder .box1 .l-b-c .item-r .tips {
	padding: 0 24px;
	display: flex;
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 14px;
	color: #666666;
	line-height: 30px;
	margin-top: 5px;
	cursor: pointer;
}

.confirmOrder .box1 .l-b-c .item-r .tips .iconfont {
	font-size: 12px;
	transform: rotate(-90deg);
	transition: all .3s;
}

.payment .box1 .box-c-t .orderDetailsBtn.active .iconfont,
.confirmOrder .box1 .l-b-c .item-r .tips.active .iconfont {
	transform: rotate(90deg);
}

.payment {
	padding: 60px 0 168px;
}

.payment .box1 .title {
	font-family: Microsoft YaHei;
	font-weight: 300;
	font-size: 24px;
	color: #666666;
	line-height: 80px;
	text-align: center;
	background: #FFFFFF;
	border-radius: 5px;
}

.payment .box1 .box-c {
	margin-top: 20px;
	padding: 0 40px;
	background: #FFFFFF;
	border-radius: 5px;
}

.payment .box1 .box-c-t {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 49px 0 37px;
}

.payment .box1 .box-c-t .text-title {
	font-family: Microsoft YaHei;
	font-weight: 300;
	font-size: 24px;
	color: #222222;
	line-height: 1;
}

.payment .box1 .box-c-t .text-des {
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 14px;
	color: #999999;
	line-height: 1;
	margin-top: 16px;
}

.payment .box1 .box-c-t .text-des span {
	color: rgba(34, 34, 34, 1);
	font-weight: bold;
}

.payment .box1 .box-c-t-r {
	text-align: right;
}

.payment .box1 .box-c-t .price {
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 14px;
	color: #222222;
	line-height: 1;
}

.payment .box1 .box-c-t .price span {
	font-family: RanyBold;
	font-size: 36px;
	color: #222222;
	line-height: 1;
}

.payment .box1 .box-c-t .orderDetailsBtn {
	display: inline-flex;
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 14px;
	color: #222222;
	line-height: 24px;
	gap: 10px;
	transition: all .3s;
}

.payment .box1 .box-c-t .orderDetailsBtn .iconfont {
	font-size: 14px;
	transform: rotate(-90deg);
}

.payment .box1 .box-c-c {
	border-top: 1px solid RGBA(222, 222, 222, 1);
	padding: 26px 0;
}

.payment .box1 .box-c-c li {
	display: flex;
	font-family: Microsoft YaHei;
	font-weight: 300;
	font-size: 16px;
	color: #222222;
	line-height: 30px;
}

.payment .box1 .box-c-c li .li-l {
	width: 90px;
}

.payment .box1 .box-c-c li:not(:last-child) {
	margin-bottom: 12px;
}

.payment .box1 .box-c-c li .li-r {
	flex: 1;
}

.payment .box1 .box-b {
	margin-top: 20px;
	padding: 45px 40px 54px;
	background: #FFFFFF;
	border-radius: 5px;
}

.payment .box1 .box-b .text-des,
.payment .box1 .box-b .text-title {
	font-family: Microsoft YaHei;
	font-weight: 300;
	font-size: 18px;
	color: #222222;
	line-height: 1;
	padding-bottom: 24px;
	border-bottom: 1px solid RGBA(222, 222, 222, 1);
}

.payment .box1 .box-b .text-des {
	padding-bottom: 0;
	border-bottom: 0;
	margin-top: 23px;
}

.payment .box1 .box-b .items {
	margin-top: 27px;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.payment .box1 .box-b .items .item {
	width: 176px;
	height: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #f5f5f5;
	cursor: pointer;
	transition: all .6s;
}

.payment .box1 .box-b .items .item.active,
.payment .box1 .box-b .items .item:hover {
	border-color: #333;
}

.payment .box1 .box-b .items .item img {
	max-width: 100%;
	max-height: 100%;
}

@media (max-width:1199px) {
	.shoppingCart-table table{
		width: 1113px;
	}
	.confirmOrder .box1 .l .title {
		line-height: 60px;
	}

	.confirmOrder .box1 .l .l-t .addressItems .item {
		padding: 20px;
	}

	.confirmOrder .box1 {
		flex-direction: column;
	}

	.card-container {
		position: static;
		top: 0;
		width: 100%;
		margin-top: 23px;
	}

	.confirmOrder,
	.payment,
	.shoppingCart {
		padding-bottom: 70px;
	}

	.confirmOrder .box1 .l .l-c-t {
		padding: 15px 25px;
	}

	.shoppingCart-table table td {
		padding-top: 20px;
		padding-bottom: 10px;
	}
	.shoppingCart-table table th:first-child, .shoppingCart-table table td:first-child{
		padding-left: 25px;
	}
	.confirmOrder .box1 .l-b{
		padding: 15px 25px;
	}
	.confirmOrder .box1 .l{
		flex: none;
		width: 100%;
	}
	.payment .box1 .title{
		line-height: 60px;
	}
	.shoppingCart .box1{
		flex-direction: column;
	}
	.shoppingCart .box1 .l .title{
		padding: 30px;
	}
	.shoppingCart .box1 .l{
		flex: none;
		margin-right: 0;
		width: 100%;
	}
	.shoppingCart .box2{
		margin-top: 45px;
	}
}

@media (max-width:1024px) {
	.shoppingCart .box2{
		margin-top: 40px;
	}
	.confirmOrder,
	.payment,
	.shoppingCart {
		padding-bottom: 60px;
	}
	.payment .box1 .box-c{
		padding: 0 30px;
	}
	.payment .box1 .box-c-t{
		padding: 30px 0;
	}
	.payment .box1 .box-b{
		padding: 30px;
	}
	.payment .box1 .box-c-t .text-title{
		font-size: 22px;
	}
	.shoppingCart .box2 .list{
		grid-template-columns: repeat(3,1fr);
	}
}

@media (max-width: 768px) {
	.shoppingCart .box2 .title{
		font-size: 22px;
	}
	.shoppingCart .box2{
		margin-top: 30px;
	}
	.shoppingCart .box1 .l .title{
		padding: 20px;
		font-size: 22px;
	}
	.payment .box1 .box-c-c li{
		line-height: 24px;
	}
	.payment .box1 .box-c-t .price span{
		font-size: 30px;
	}
	.payment .box1 .box-c-t .text-title{
		font-size: 20px;
	}
	.payment .box1 .title{
		font-size: 22px;
		line-height: 50px;
	}
	.confirmOrder .box1 .l .title{
		line-height: 50px;
		font-size: 22px;
	}
	.confirmOrder,
	.payment,
	.shoppingCart {
		padding: 50px 0;
	}
	.confirmOrder .box1 .l .l-t{
		padding: 20px;
	}
	.confirmOrder .box1 .l .l-t .addressItems .item{
		padding: 10px 15px;
	}
	.confirmOrder .box1 .l .l-t .addressItems .item:hover, .confirmOrder .box1 .l .l-t .addressItems .item.active{
		border-width: 1px;
	}
	.confirmOrder .box1 .l .l-c{
		margin-top: 20px;
	}
	.confirmOrder .box1 .l-b,
	.confirmOrder .box1 .l .l-c-t{
		padding: 10px 20px;
	}
	.shoppingCart-table table .productMsg .text-box .text-title{
		font-size: 14px;
		line-height: 20px;
	}
	.shoppingCart-table table .productMsg .pic{
		width: 100px;
		height: 64px;
	}
	.shoppingCart-table table .productMsg .text-box{
		margin-left: 10px;
	}
	.confirmOrder .box1 .l-b-c{
		margin-top: 20px;
	}
	.confirmOrder .box1 .l-b-c .item-l{
		font-size: 14px;
		width: 110px;
	}
	.confirmOrder .box1 .l-b-c .item-r .option{
		min-width: 120px;
		line-height: 36px;
		padding: 0 10px;
	}
	.payment .box1 .box-c-t{
		flex-direction: column;
		align-items: flex-end;
	}
	.payment .box1 .box-c-t-l{
		width: 100%;
		margin-bottom: 13px;
	}
	.shoppingCart-table table th:first-child, .shoppingCart-table table td:first-child{
		padding-left: 20px;
	}
	.shoppingCart-table table input[type="checkbox"]{
		width:18px;
		height: 18px;
	}
	.shoppingCart-table table th{
		padding-bottom: 20px;
	}
	.shoppingCart .box2 .list{
		margin-top: 20px;
		grid-template-columns: repeat(2,1fr);
	}
}

@media (max-width: 500px) {
	.shoppingCart .box2 .title{
		font-size: 20px;
	}
	.shoppingCart .box2{
		margin-top: 25px;
	}
	.shoppingCart .box1 .l .title{
		font-size: 20px;
	}
	.payment .box1 .box-b .text-des, .payment .box1 .box-b .text-title{
		font-size: 16px;
	}
	.payment .box1 .box-c-c li{
		font-size: 14px;
	}
	.payment .box1 .box-b .items{
		display: grid;
		grid-template-columns: repeat(2,1fr);
	}
	.payment .box1 .box-b .items .item{
		width: 100%;
	}
	.payment .box1 .box-b .text-title{
		padding-bottom: 15px;
	}
	.payment .box1 .box-b .text-des{
		margin-top: 15px;
	}
	.payment .box1 .box-c-t{
		padding: 25px 0 15px;
	}
	.payment .box1 .box-b{
		padding: 25px;
	}
	.payment .box1 .box-c{
		padding: 0 20px;
	}
	.payment .box1 .title{
		font-size: 20px;
		line-height: 45px;
	}
	.confirmOrder .box1 .l-b-c .item-r .option{
		min-width: 70px;
	}
	.confirmOrder .box1 .l-b-c .item-r .input input{
		padding: 0 16px;
	}
	.confirmOrder .box1 .l-b-c .item-r .tips{
		padding: 0 0 0 16px;
		font-size: 12px;
		line-height: 24px;
	}
	.confirmOrder .box1 .l-b-c .item-l{
		font-size: 12px;
		width: 96px;
	}
	.confirmOrder .box1 .l .title{
		line-height: 45px;
		font-size: 20px;
	}
	.confirmOrder,
	.payment,
	.shoppingCart {
		padding: 40px 0;
	}
}