@charset "utf-8";

* {
	margin: 0;
	padding: 0;
}

body {
	min-width: 1200px;
	font-size: 14px;
	line-height: 1.4;
	color: #0d0d0f;
	font-weight: 500;
	font-family: "Lexend", Arial, Helvetica, sans-serif;
	outline: 0;
	vertical-align: baseline;
	background: #fff;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	color: #302d3d;
	outline: none;
	text-decoration: none;
	cursor: pointer;
}

a:hover {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

ul,
ul li {
	list-style-type: none;
}

img {
	border: none;
}

.clearfix:after {
	clear: both;
	display: block;
	height: 0;
	font-size: 0;
	content: "";
	visibility: hidden;
}

.clearfix {
	zoom: 1;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.alc {
	text-align: center;
}

.new_tag {
	display: inline-block;
	position: relative;
	z-index: 1;
	color: #ff0d0d;
	font-size: 12px;
	line-height: 1;
	text-align: center;
}

.new_tag em {
	display: inline-block;
	font: inherit;
	color: inherit;
	font-style: normal;
	transform: scale(0.8);
	font-weight: 400;
}

.main {
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.wrapper {
	position: relative;
	width: 1200px;
	min-width: 1200px;
	margin: 0 auto;
	zoom: 1;
}

.hide {
	display: none;
}

/* price */
.price {
	color: #212121;
}

.buybtn {
	display: block;
	position: relative;
	margin: 0 auto;
	width: 255px;
	height: 48px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	line-height: 48px;
	border-radius: 9999px;
	box-shadow: 0px 5px 18px 3px rgba(250, 39, 4, 0.25);
	background: transparent linear-gradient(277deg, #F20000 0%, #FF0067 100%) 0% 0% no-repeat padding-box;
}

.banner .buybtn {
	width: 396px;
	height: 48px;
	margin-left: -17px;
	margin-top: 10px;
	font-size: 14px;
}

.soldOut .banner .buybtn {
	margin-top: 10px;
}

.buybtn:hover {
	background: transparent linear-gradient(90deg, #e20000 0%, #FF0067 100%) 0% 0% no-repeat padding-box;
}

/* banner */
.banner {
	width: 100%;
	min-width: 1200px;
	height: 800px;
	overflow: hidden;
	margin-bottom: 36px;
	background: url(../images/banner_bg.jpg) top center no-repeat;
}

.banner .banner_title h1 {
	padding-top: 20PX;
	position: relative;
	z-index: 1;
	margin: 0 auto;
	height: fit-content;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.banner .banner_title h1 > img {
	position: relative;
	z-index: 1;
	vertical-align: top;
	text-align: center;
	flex-shrink: 0;
}
.banner .banner_title h2 {
	margin-top: -40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.banner .banner_title h2 p {
	font-size: 20px;
	font-weight: normal;
	color: #920000;
}
.banner .banner_title h2 img {
	position: relative;
	z-index: 9;
	top: -2px;
	animation: 3s swing 1.5s ease infinite;
}
.title_sale {
	display: inline-block !important;
}

.title_sold {
	display: none !important;
}
.banner .banner_title {
	position: relative;
}

.clock_wrap {
	position: absolute;
	top: 14px;
	left: 520px;
	z-index: 2;
	width: 80px;
	height: 72px;
	animation: 3s swing 1.5s ease infinite;
}

@keyframes swing {
	5% {
		transform: rotate(15deg);
	}

	10% {
		transform: rotate(-10deg);
	}

	15% {
		transform: rotate(5deg);
	}

	20% {
		transform: rotate(-5deg);
	}

	25% {
		transform: rotate(0);
	}

	35% {
		transform: rotate(15deg);
	}

	40% {
		transform: rotate(-10deg);
	}

	45% {
		transform: rotate(5deg);
	}

	50% {
		transform: rotate(-5deg);
	}

	55% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(0);
	}
}

.clock_box {
	position: absolute;
	top: 15px;
	left: 10px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	transform: rotate(5deg);
}

.clock_wrap::before {
	content: "";
	display: block;
	position: absolute;
	top: 32px;
	left: 26px;
	z-index: 101;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #f0533c;
	animation: secocks 12s linear 0s infinite forwards;
}

.sec_line {
	position: absolute;
	/* width: 6px;
	height: 7px; */
	/* top: 12px;
	left: 15px; */
	top: 7px;
	left: 12px;
	z-index: 99;
	width: 12px;
	height: 12px;
	transform-origin: 50% 100%;
	animation: secocks 12s linear 0s infinite forwards;
}

.min_line {
	position: absolute;
	z-index: 98;
	width: 17px;
	height: 11px;
	top: 9px;
	left: 18px;
	z-index: 98;
	background: url(../images/min_line.png);
	transform: scale(0.6);
	transform-origin: 0% 100%;
	animation: mincocks 1s linear 0s infinite forwards;
}

@keyframes secocks {
	5% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes mincocks {
	5% {
		transform: rotate(0deg) scale(0.6);
	}

	100% {
		transform: rotate(360deg) scale(0.6);
	}
}

.brCountdown {
	text-align: center;
	color: #F50018;
	font-size: 14px;
	font-weight: 500;
}

.brCountdown b {
	display: inline-block;
	padding: 0 2px;
	font-weight: 600;
}

.time_ms {
	width: 25px;
}

.main {
	overflow: hidden;
}

.banner .logo {
	position: absolute;
	z-index: 1;
	display: block;
	width: 54px;
	height: 17px;
	left: 46px;
	top: 34px;
}

.banner .logo > svg {
	pointer-events: none;
}



.salecont {
	position: relative;
	height: 485px;
	margin-top: 105px;
	z-index: 999;
	text-align: center;
	border-radius: 0px 4px 4px 4px;
	background: url(../images/offer_bg.svg);
}



.saleselbox,
.salesedes {
	position: relative;
	z-index: 1;
}

.saleselbox {
	margin: 0 auto;
	width: 500px;
	padding-top: 60px;
	position: relative;
}
.saleselbox::before {
	position: absolute;
	content: "";
	width: 53px;
	height: 129px;
	z-index: 9;
	top: 25px;
	left: -9px;
	background: url(../images/balloon.png);
}
.saleselbox::after {
	content: "";
	display: block;
	width: 72px;
	height: 100px;
	z-index: 10;
	position: absolute;
	background: url(../images/gift_box.png) center no-repeat;
	right: 13px;
	bottom: 8px;
}
.saleselbox .selbox_text {
	width: fit-content;
	height: fit-content;
	position: absolute;
	left: 33px;
	top: 120px;
}
.saleselbox .selbox_text dt {
	width: 430px;
	height: 5px;
	background: transparent linear-gradient(90deg, #FF2833 0%,  #E630C8 100%) 0% 0% no-repeat padding-box;
	position: relative;
}
.saleselbox .selbox_text dd {
	position: relative;
	top: -14px;
	left: 22%;
	font-size: 14px;
	font-weight: bold;
	background: transparent linear-gradient(90deg, #FF2833 0%,  #E630C8 100%) 0% 0% no-repeat padding-box;
	/* border: 1px solid #e98c00; */
	border-radius: 11px;
	color: #fff;
	height: 22px;
	width: 224px;
	line-height: 22px;
	text-align: center;
}
.saleselbox ul {
	display: flex;
	margin-left: 10px;
}
.saleselbox ul li {
	position: relative;
	margin-left: -78px;
	width: 145px;
	opacity: 0.8;
	filter: grayscale(100%);
}
.saleselbox ul li::after {
	position: absolute;
	content: "";
	width: 48px;
	height: 14px;
	left: 36px;
	bottom: 22px;
	z-index: 9;
	text-align: center;
	line-height: 14px;
	font-size: 12px;
	color: #fff;
	border-radius: 10px;
	background-color: #919191;
	transform: rotate(-6deg) scale(0.8);
}
.saleselbox ul li.threepc::after {
	content: "3 PCs";
}
.saleselbox ul li.onepc::after {
	content: "1 PC";
}
.saleselbox ul li:nth-of-type(1) {
	margin-left: 0px;
}

.saleselbox ul li.selbox6 {
	margin-right: 0px;
}

.saleselbox ul li.checked {
	filter: inherit;
	opacity: 1;
}

.salesedes {
	margin: 0 auto;
	padding-top: 24px;
	width: 1200px;
	display: flex;
	padding-left: 45px;
	gap: 40px;
}

.salesepro {
	width: 552px;
}
.change-box {
	position: absolute;
	top: 192px;
	left: 0;
	display: flex;
	align-items: flex-end;
	height: 60px;
}
.change-box .box {
	display: flex;
	width: 231px;
	height: 51px;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #FBD0CB;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.change-box .box.pc {
	border-top-left-radius: 0px;
	margin-left: -15px;
}
.change-box .box.active {
	z-index: 99;
	height: 60px;
	background: transparent linear-gradient(0deg, #FFFBF8 0%, #FFF6F6 46%, #FFFFFF 61%, #FFE8E8 80%, #FFD5D5 100%, #FF2020 100%) 0% 0% no-repeat padding-box;
  border-radius: 15px 15px 0px 0px;
	box-shadow: 10px 5px 15px #D14B4B;
	/* box-shadow: 3px -17px 29px #D14B4B; */
}
.change-box .box.active.pc {
	box-shadow: -10px 5px 15px #D14B4B;
}
.change-box .box.active p {
	position: relative;
	background: #FFE9F8;

}
.change-box .box.active p span{

	background-image: linear-gradient(to bottom, #FF2727, #FF17B7); 
	color: #ffffff; 
	background-clip: text;
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent; 

}
.change-box .box h3 {
	font: normal normal 800 21px/24px League Spartan;
	color: #985959;
}
.change-box .box.pc p {
	width: 82px;
}
.change-box .box p {
	width: 113px;
	height: 19px;
	text-align: center;
	background: rgba(255, 233, 248, .6);
	border-radius: 10px;
	color: #D14B4B;
	font: normal normal 600 12px/19px League Spartan;
}
.salesepro .salesepro-name {
	float: left;

}

.salesepro .pcs {
	float: right;
	min-width: 93px;
	padding: 0 8px;
	height: 20px;
	font-size: 12px;
	font-weight: 300;
	line-height: 19px;
	text-align: center;
	background: #eaeaef;
	border-radius: 10px;
	color: #646081;
	white-space: nowrap;
	margin-right: 20px;
}
.salesepro .pcs small {
	font-style: inherit;
	font-size: 12px;
}
.salesepro .pcs span {
	color: #00a764;
}

.salesepro .salesepro-price {
	float: right;
	width: 50px;
}

.salesepro-head {
	font-size: 18px;
	font-weight: 500;
	color: #b0aec7;
	text-align: left;
	padding-bottom: 8px;
	border-bottom: 2px solid #d7d5e8;
}
.saleseorder .salesepro-head {
	width: 378px;
	margin-left: 52px;
}
.salesepro-cont {
	margin-top: 32px;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.salesedes.onepc .salesepro-cont .salesepro-name {
	cursor: default;
}
.salesedes.onepc .salesepro-cont .salesepro-name::before{
	opacity: 0;
}
.salesedes.onepc .saleseorder-cont {
	gap: 20px;
}
.salesedes.onepc .saleseorder-total {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 2px solid #d7d5e8;
}
.salesepro-cont li {
	position: relative;
	opacity: 0.5;
}

.salesepro-cont li p {
	font-size: 14px;
	color: #3f3f3f;
}
.salesepro-cont li > div {
	height: 20px;
}
.salesepro-cont li > p {
	display: flex;
	justify-content: space-between;
	font-weight: 300;
	font-size: 12px;
	font-weight: 300;
	color: #646081;

	clear: both;
	margin-top: 4px;
	padding-left: 34px;
}
.salesepro-cont li > p span {
	font-size: 14px;
	color: #000;
}
.salesepro-cont li > p span del:nth-child(1) {
	opacity: 0.4;
}

.salesepro-cont .salesepro-name {
	cursor: pointer;
}

.salesepro-cont .salesepro-name:before {
	width: 19px;
	height: 19px;
	background: #c4c4c4;
	border: 1px solid #646464;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	content: "";
	margin: 0px 8px 0 0;
	border-radius: 2px;
}

.salesepro-cont .salesepro-name p {
	display: inline-block;
	width: 220px;
}
.salesepro-cont li.checked {
	opacity: 1;
}
.salesepro-cont li.checked p {
	font-weight: 500;
	color: #0d0d0d;
}
.salesepro-cont li .salesepro-price p {
	text-align: right;
}
.salesepro-cont li.checked .salesepro-price p {
	color: #00A764;
}
.salesepro-cont li.checked > p {

	color: #646081;
}

.salesepro-cont li.checked .salesepro-name::after {
	position: absolute;
	content: "";
	width: 20px;
	height: 19px;
	left: 4px;
	top: -2px;
	background: url(../images/free_check_icon.svg) center no-repeat;
}

.saleseorder {
	width: 520px;
	height: 569px;
	background-color: #fff;
	margin-top: -75px;
	border-radius: 22px;
	float: right;
	text-align: left;
	box-shadow: 10px 20px 44px #D14B4B;
}

.saleseordercnt {
	width: 350px;
	margin: 0px auto;
	margin-top: 50px;
}

.saleseorder-head {
	height: 34px;
	border-bottom: 2px solid #d7d5e8;
}

.saleseorder-head h4 {
	font-size: 18px;
	font-weight: bold;
	color: #000;
}

.saleseorder-head .saleseorder-price img {
	margin-top: 1px;
	display: block;
}

.saleseorder-name {
	width: 240px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.saleseorder-name .saleratio-box {
	display: inline-block;
	height: 18px;
	width: 83px;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	background: transparent linear-gradient(274deg, #ffc464 0%, #fff8d6 100%) 0% 0% no-repeat padding-box;
	border-radius: 2px;
}

.saleseorder-price {
	width: 72px;
	display: inline-block;
	color: #f71d03;
	vertical-align: middle;
	text-align: center;
}

.saleseorder-cont {
	margin-top: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 10px 0px 0px;
	gap: 8px;
}

.saleseorder-items p {
	font-size: 14px;
	color: #000;
}

.saleseorder-items p .orprice {
	font-weight: bold;
}

.saleseorder-items p b {
	font-size: inherit;
	font-weight: bold;
}

.saleseorder-items,
.saleseorder-discount,
.saleseorder-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
}
.saleseorder-extra {
	width: 100%;
	margin: 10px auto;
	display: flex;
	flex-direction: column;
	gap: 3px;
	position: relative;
}
.saleseorder-extra::before {
	content: "";
	display: block;
	width: 394px;
	height: 51px;
	position: absolute;
	left: -20px;
	top: -4px;
	background: url(../images/extra_bg.png) center no-repeat;
}
.saleseorder-extra p {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
}
.saleseorder-extra p span {
	display: block;
	color: #00b23b;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 500;
}
.saleseorder-extra p span img {
	margin-right: 5px;
	position: relative;
	top: 2px;
}
.saleseorder-extra p span:nth-of-type(2) {
	width: 62px;
	text-align: left;
}
.saleseorder-extra::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 4;
	opacity: 0;
	transform: scale(2);
	transition: all 0.3s ease;
}
.saleseorder-extra.una::before,
.saleseorder-extra.sold::before {
	background: url(../images/extra_gray.png) center no-repeat;
	z-index: 3;
}
.saleseorder-extra.una::after {
	width: 98px;
	height: 55px;
	top: -6px;
	right: 95px;
	opacity: 1;
	transform: scale(1);
	background: url(../images/una.png) center no-repeat;
}
.saleseorder-extra.sold p span {
	color: #545454;
}
.saleseorder-extra.sold::after {
	width: 61px;
	height: 32px;
	top: 5px;
	right: 105px;
	opacity: 1;
	transform: scale(1);
	background: url(../images/sold.png) center no-repeat;
}

.saleseorder-discount p {
	font-size: 14px;
}

.saleseorder-discount p span {
	font-size: inherit;
	font-weight: inherit;
}

.saleseorder-total {
	margin-top: 6px;
}

.saleseorder-total p {
	font-size: 16px;
	color: #000;
	font-weight: bold;
}

.saleseorder-total p span {
	font-size: inherit;
	font-weight: bold;
}

.saleseorder-total p span b {
	font-size: 30px;
	font-weight: bold;
}

.salefea-title {
	padding-top: 0px;
	text-align: center;
}

.saleenjoy .salefea-title {
	padding-top: 80px;
}

.salefea-title p {
	font-size: 20px;
	color: #2f2f2f;
	margin-top: 25px;
}

.salefea-title h2 {
	font-size: 36px;
	color: #000000;
	margin-top: 10px;
	font-weight: bold;
}

.salekeep-cont {
	margin-top: 56px;
}

.salekeep-cntbox {
	width: 590px;
	height: 331px;
	border-radius: 10px;
	border: 1px solid #dcdcdc;
	background: #f8f9fa;
}

.salekeep-cntmid {
	margin: 35px 30px 0 30px;
}

.salekeep-cntpro img {
	display: block;
	margin-bottom: 5px;
}

.salekeep-cntpro figcaption {
	display: inline-block;
	vertical-align: middle;
}

.salekeep-cntproasc figure > img {
	margin-left: 54px;
}

.salekeep-cntprodb figure > img {
	margin-left: 100px;
}

.salekeep-cntpro figcaption h4 {
	font-size: 18px;
	color: #000000;
	font-weight: 600;
}

.salekeep-cntpro figcaption p {
	font-size: 14px;
	color: #00a1e3;
	font-weight: 500;
	margin-top: 3px;
}

.salekeep-cntprodb figcaption p {
	color: #eb2629;
}

.salekeep-cntpro figcaption p.imf {
	color: #00bbca;
}

.salekeep-cntpro figcaption p.iu {
	color: #01c137;
}

.salekeep-cntpro figcaption p.isu {
	color: #5535ca;
}

.salekeep-cntpro figcaption p.sd {
	color: #0096e0;
}

.salekeep-cntdes {
	margin-top: 60px;
}

.salekeep-cntwordp {
	width: 315px;
	float: left;
}

.salekeep-cntwordp ul {
	margin-top: 15px;
}

.salekeep-cntwordp ul li {
	font-size: 12px;
	color: #1a1919;
	line-height: 16px;
	margin-top: 9px;
	position: relative;
	padding-left: 8px;
}

.salekeep-cntwordp ul li:before {
	content: ".";
	position: absolute;
	left: 0;
	top: -6px;
	display: block;
	font-size: 20px;
	z-index: 3;
}

.salekeep-cntwordp ul li b {
	font-size: inherit;
	font-weight: bold;
}

.salekeep-cntstore {
	width: 210px;
	height: 265px;
	border-left: 2px solid #e2e2e2;
	float: right;
	text-align: center;
}
.salekeep-cntstore.one-pc {
	display: none;
}
.salekeep-cntstore h3 {
	width: 152px;
	height: 32px;
	margin: 0px auto;
	margin-top: 60px;
	line-height: 32px;
	text-align: center;
	font-size: 18px;
	color: #000;
	font-weight: bold;
	background: transparent linear-gradient(274deg, #ffc464 0%, #fff8d6 100%) 0% 0% no-repeat padding-box;
	border-radius: 4px;
}

.salekeep-cntprice {
	margin-top: 20px;
}

.salekeep-price {
	font-size: 18px;
	color: #000000;
	font-weight: bold;
}

.salekeep-price big {
	font-size: 30px;
}

.salekeep-price del {
	display: block;
	font-size: 14px;
	color: #727272;
	font-weight: 500;
	margin-left: 5px;
}

.salekeep-cntstore .buybtn {
	margin-top: 9px;
	width: 184px;
	height: 38px;
	font-size: 16px;
	line-height: 38px;
	border-radius: 20px;
}

.banbuybtn {
	position: relative;
}


.salekeep-cnttips {
	font-size: 12px;
	color: #585858;
	margin-top: 10px;
}

.saleenjoy-cont {
	margin-top: 60px;
}

.saleenjoy-probox {
	width: 380px;
	height: 574px;
	background: #f8f9fa;
	border: 1px solid #dcdcdc;
	border-radius: 3px;
}

.saleenjoy-proboxcnt {
	margin: 35px 20px 0 43px;
}

.saleenjoy-proboxcnt figcaption h4 {
	font-size: 18px;
	color: #000000;
	font-weight: 600;
	margin-top: 13px;
}

.saleenjoy-proboxcnt figcaption p {
	font-size: 14px;
	color: #00bbca;
	font-weight: 500;
	margin-top: 3px;
}

.saleenjoy-probox1 .saleenjoy-proboxcnt figcaption p {
	color: #00bbca;
}

.saleenjoy-probox2 .saleenjoy-proboxcnt figcaption p {
	color: #01c137;
}

.saleenjoy-probox3 .saleenjoy-proboxcnt figcaption p {
	color: #5535ca;
}

.saleenjoy-save {
	width: 163px;
	height: 42px;
	line-height: 42px;
	text-align: center;
	font-size: 20px;
	color: #d90a01;
	font-weight: bold;
	border: 1px solid #dcdcdc;
	margin-top: 20px;
	background: #f8f9fa;
	margin-bottom: 30px;
}

.saleenjoy-probox .salekeep-price {
	margin-left: 10px;
}

.saleenjoy-probox .buybtn {
	width: 189px;
	height: 45px;
	line-height: 45px;
	margin: 10px 0 0 0;
}

.saleenjoy-cnttips {
	font-size: 12px;
	color: #a3a3a3;
	margin: 10px 0 0 3px;
}

.saleenjoy-cntwordp {
	margin-top: 25px;
}

.saleenjoy-cntwordp ul li {
	font-size: 12px;
	color: #1a1919;
	line-height: 16px;
	margin-top: 7px;
	padding-left: 8px;
	position: relative;
}

.saleenjoy-cntwordp ul li:before {
	content: ".";
	position: absolute;
	left: 0;
	top: -6px;
	display: block;
	font-size: 20px;
	z-index: 3;
}

.saleenjoy-cntwordp ul li b {
	font-size: inherit;
	font-weight: bold;
}

.saleenjoy-probox2 {
	margin-left: 24px;
}

.snow-bg {
	background: url(../images/center-buy-bg.png) no-repeat center top;
}

.saleexclu::after {
	position: absolute;
	content: "";
	width: 549px;
	height: 115px;
	left: 0;
	right: 0;
	margin: auto;
	top: -70px;
	background: url(../images/buy_tag.png) center center no-repeat;
}

.saleexclu {
	width: 100%;
	height: 453px;
	position: relative;
	padding-top: 16px;
	margin-top: 165px;
}

.saleexclu-title {
	height: 68px;
	font-size: 20px;
	line-height: 68px;
	color: #3d3d3d;
	text-align: center;
}

.soldOut .saleexclu-title {
	font-size: 22px;
}



.saleexclu-cont {
	height: 260px;
	margin-top: 48px;
	position: relative;
	background: url(../images/salecent-boxbg.png) center no-repeat;
}

.saleexclu-cont.fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 10;
	max-width: 1200px;
	background-color: #fff;
}

.salecent_line {
	content: "";
	display: block;
	position: absolute;
	top: 142px;
	right: 0px;
	z-index: 1;
	width: 354px;
	height: 6px;
	background: #edd13e;
	opacity: 0.92;
}

.salecent_soldoff {
	display: none;
	position: absolute;
	top: 142px;
	left: 35px;
	z-index: 3;
	width: 173px;
	height: 87px;
}

.soldOut .salecent_line {
	top: 148px;
	height: 8px;
	background: #facb2b;
}

.soldOut .salecent_soldoff {
	display: block;
}

.saleexclu_left {
	width: fit-content;
	height: fit-content;
	position: absolute;
	top: 67px;
}
.saleexclu_left span {
	position: absolute;
	color: #fff;
	height: 22px;
	width: 224px;
	left: 183px;
	top: 61px;
	line-height: 22px;
	text-align: center;
}
.salecent-box {
	display: inline-block;
	vertical-align: middle;
	margin: 75px 10px 0 60px;
}

.salecent_off {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: absolute;
	top: 130px;
	left: 146px;
	z-index: 3;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.2;
	color: #000;
	letter-spacing: 0.32px;
	height: 24px;
	padding: 0 20px;
	min-width: 265px;
	background: #f3da4b;
	border-radius: 9999px;
}

.salecent_off b {
	font: inherit;
	color: #ff4234;
}

.salecent-ul {
	width: 250px;
	display: inline-block;
	vertical-align: middle;
	margin-top: 25px;
}

.salecent-ul li {
	font-size: 14px;
	color: #000000;
	margin-top: 13px;
	padding-left: 20px;
	position: relative;
}

.salecent-ul li:before {
	width: 13px;
	height: 13px;
	background-position: 0 -36px;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 3px;
	display: none;
}

.saleexclu-super {
	width: 534px;
	height: 277px;
	text-align: center;
	position: absolute;
	right: -4px;
	top: -4px;
}

.saleexclu-supcnt {
	margin: 38px 40px 0 90px;
}

.saleexclu-supcnt h4 {
	position: relative;
	font-size: 24px;
	font-weight: bold;
	margin-left: 31px;
}

.saleexclu-supcnt h4 img {
	position: absolute;
	vertical-align: middle;
	margin: -23px 0 0 26px;
}

.saleexclu-supcnt > p {
	font-size: 14px;
	margin: 0px 0 0 32px;
}

.saleexclu-supcnt > p.salekeep-price {
	font-size: 24px;
	margin: 15px 0 0 65px;
}

.saleexclu-supcnt > p.salekeep-price big {
	font-size: 38px;
}

.saleexclu-supcnt > p.salekeep-price del {
	font-size: 16px;
	display: inline-block;
	margin-left: 10px;
	color: rgba(30, 28, 44, 0.46);
}

.saleexclu-buy .buybtn {
	margin: 6px auto;
	width: 275px;
	height: 51px;
	line-height: 51px;
	border-radius: 25px;
}

.saleexclu-cnttips {
	font-size: 12px;
	color: rgba(30, 28, 44, 0.66);
}

.award {
	margin-bottom: 80px;
	margin-top: 60px;
	position: relative;
	height: 240px;
	text-align: center;
	border-bottom: 1px solid #d8d6d5;
}

.award h2 {
	margin-bottom: 40px;
	font-size: 30px;
}

.review {
	margin-top: 160px;
}

.review .content {
	position: relative;
	width: 1104px;
	height: 348px;
	margin: 0 auto;
	background: url(../images/review_bg.png);
}

.review .content > span {
	display: block;
	position: absolute;
	top: 152px;
	z-index: 9;
	width: 54px;
	height: 54px;
	cursor: pointer;
	border-radius: 50%;
	background: rgba(98, 95, 95, 0.17);
	border: 3px solid #616168;
	box-sizing: border-box;
}

.review .content > span::before,
.review .content > span::after {
	content: "";
	display: block;
	position: absolute;
	width: 10px;
	height: 2px;
	border-radius: 4px;
	background: #616168;
}

.review .content > span::before {
	top: 26px;
	left: 50%;
	margin-left: -7px;
	transform: rotate(45deg);
}

.review .content > span::after {
	top: 20px;
	left: 50%;
	margin-left: -7px;
	transform: rotate(-45deg);
}

.review .content > span:hover {
	background: rgba(214, 18, 18, 0.04);
	border: 3px solid #d51212;
	transition: all 0.3s ease;
}

.review .content > span:hover::before,
.review .content > span:hover::after {
	background: #d51212;
}

.review .content > span.prev {
	left: 50px;
}

.review .content > span.next {
	right: 50px;
}

.review .content > span.next::before {
	top: 20px;
}

.review .content > span.next::after {
	top: 26px;
}

.review .content .message {
	width: 820px;
	float: left;
	margin-left: 153px;
	margin-top: -50px;
	text-align: center;
	overflow: hidden;
	color: #fff;
}

.review .content .message .roll {
	width: 5740px;
}

.review .content .message dl {
	float: left;
	width: 820px;
}

.review .content .message dl dt {
	width: 100px;
	height: 100px;
	margin: 0px auto;
	border-radius: 50%;
	overflow: hidden;
	background: #2d2d30;
	border: 5px solid #2d2d30;
}

.review .content .message dl dt > img {
	width: 100px;
	height: auto;
}

.review .content .message h3 {
	margin-top: 10px;
	font-size: 26px;
	color: #000;
}

.review .content .message p {
	margin-top: 15px;
	color: #9898a2;
	line-height: 22px;
}

.review .content .message h4 {
	font-size: 14px;
	color: #9898a2;
	margin-top: 13px;
}

/* service */
.service {
	margin-top: 80px;
	padding: 70px 0px 20px;
	background-color: #e6e6e6;
}

.service .wrapper {
	width: 1120px;
	min-width: 1120px;
}

.service dl {
	width: 553px;
	height: 125px;
	float: left;
	background-color: #efeff0;
	border: 1px solid #efeff0;
}

.service dl h3 {
	margin-bottom: 20px;
	color: #28282c;
	font-weight: 600;
	font-size: 14px;
}

.service dl.first dt {
	float: left;
	margin-top: 25px;
	margin-right: 20px;
	margin-left: 20px;
}

.service dl.first dd {
	padding-top: 20px;
	font-size: 12px;
	line-height: 18px;
	color: #7c7c7f;
}

.service dl.last {
	float: right;
}

.service dl.last dt {
	margin-top: 20px;
}

.service dl.last dt,
.service dl.last dd {
	padding-left: 25px;
}

.note {
	margin-top: 30px;
	font-size: 12px;
	color: #7b7b7e;
}

.copyright {
	text-align: center;
	padding: 15px 0;
	font-size: 14px;
	color: #7b7b7e;
}
.zoom {
	animation: zoom-scaling 1.6s ease-in-out 1;
}

@keyframes zoom-scaling {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	25% {
		transform: scale(1.4);
		opacity: 1;
	}
	50% {
		transform: scale(0.6);
		opacity: 0.5;
	}
	75% {
		transform: scale(1.4);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 0.5;
	}
}


.popbg {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -99;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.8)
}

.popbg.on {
  z-index: 9998;
  opacity: 1;
  transform: scale(1)
}

.pop-warp {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -99;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s;
  padding: 0;
}

.pop-warp.on {
  z-index: 9999;
  opacity: 1;
  transform: scale(1)
}
.pop-warp .close {
	position: absolute;
	width: 17px;
	height: 17px;
	right: 0;
	top: 50px;
	cursor: pointer;
	background: url(../images/close.png);
}
.pop-warp .close:hover {
	opacity: 0.8;
}
.pop-warp .buybtn {
	display: block;
	width: 342px;
	height: 49px;
	margin: 0px auto;
	text-align: center;
	line-height: 49px;
	font: normal normal bold 16px/49px League Spartan;
	box-shadow: 0px 10px 15px #DF000075;
	border-radius: 31px;
}
.pop-warp.threepc {
	width: 669px;
	height: 485px;
	background: url(../images/pop_threepc.png);
}
.pop-warp.threepc .buybtn {
	margin-top: 360px;
}
.pop-warp.onepc {
	width: 673px;
	height: 453px;
	background: url(../images/pop_onepc.png);
}
.pop-warp.onepc .buybtn {
	margin-top: 315px;
}