html, body {
	position: relative;
	height: 100%;
}

/*#header{ width: 100%; overflow: hidden; position: fixed; top: 0; left: 0; z-index: 2;}*/
/*#footer{ width: 100%; overflow: hidden; position: absolute; bottom: 0; left: 0; z-index: 2;}*/

#mirrorBox {
	width: 100%;
	height: 80%;
	height: calc(100% - 80px);
}

.swiper-slide {
	text-align: center;
	font-size: 18px;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column; /* 竖向 */
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

/*3.0试妆镜*/
.swiper-slide.bg1 {
	background: url("../images/mirror-bg1.jpg") no-repeat;
	background-size: 100% 100%;
	position: relative;
}

.curtain-bg2 {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
}

.curtain-bg2 img {
	margin-top: -80px;
	display: block;
}

.curtain-tit {
	width: 100%;
	margin-top: 20px;
	overflow: hidden;
	position: relative;
}

.curtain-tit h3, .left-box h3 {
	width: 100%;
	line-height: 36px;
	font-weight: normal;
	color: #61ebff;
	font-size: 30px;
	text-align: center;
	padding: 10px 0;
}

.curtain-tit h5 {
	width: 100%;
	line-height: 24px;
	font-weight: normal;
	color: #fff;
	text-align: center;
}

.curtain-1 {
	width: 1200px;
	height: 80%;
	height: calc(100% - 100px);
	overflow: hidden;
	margin: 0 auto;
	position: relative;
}

.curtain-main {
	width: 420px;
	overflow: hidden;
	margin: 100px 0 0;
	float: left;
	position: relative;
}

.curtain-main img {
	width: 100%;
	display: block;
}

.curtain-img, .curtain-img2, .curtain-img3 {
	width: 264px;
	overflow: hidden;
	position: absolute;
	z-index: 2;
	top: 62px;
	left: 76px;
	opacity: 0;
}

.curtain-img2 {
	top: 0;
}

.curtain-img3 {
	width: 47px;
	top: 50px;
	left: 15px;
}

.curtain-img4 {
	width: 47px;
	overflow: hidden;
	position: absolute;
	z-index: 2;
	top: 50px;
	right: 15px;
	opacity: 0;
}

.left-font, .right-font {
	width: 140px;
	height: 500px;
	margin: 50px 120px;
	font-size: 14px;
	flex-direction: column; /* 竖向 */
	position: relative;
	z-index: 1;
}

.left-font p, .right-font p {
	width: 100%;
	overflow: hidden;
	color: #61ebff;
	font-size: 18px;
	line-height: 30px;
}

.left-font .line {
	width: 250px;
	position: absolute;
	top: 0;
	left: 130px;
	z-index: 1;
	letter-spacing: 10px;
	color: #61ebff;
	-webkit-transform: rotate(-8deg);
	-moz-transform: rotate(-8deg);
	-ms-transform: rotate(-8deg);
	-o-transform: rotate(-8deg);
	transform: rotate(-8deg);
	opacity: 0;
}

.right-font .line {
	width: 250px;
	position: absolute;
	top: 15px;
	left: -190px;
	z-index: 1;
	letter-spacing: 10px;
	color: #61ebff;
	-webkit-transform: rotate(-3deg);
	-moz-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	-o-transform: rotate(-3deg);
	transform: rotate(-3deg);
	opacity: 0;
}

.hover, .hover2, .hover3, .click1, .click2 {
	cursor: default;
	animation: pulse 2s 1s infinite;
	-webkit-animation: pulse 2s 1s infinite;
	-moz-animation: pulse 2s 1s infinite;
}

.click1, .click2 {
	cursor: pointer;
}

.hover:hover, .hover2:hover, .hover3:hover, .click1:hover, .click2:hover {
	animation-play-state: paused;
	-webkit-animation-play-state: paused;
}

.hover:hover ~ .line, .hover2-img {
	animation: exhibit 0.5s 0s 1;
	-webkit-animation: exhibit 0.5s 0s 1;
	-moz-animation: exhibit 0.5s 0s 1;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes exhibit {
	0% {
		opacity: 0
	}
	30% {
		opacity: .4;
	}
	70% {
		opacity: .8;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes exhibit {
	0% {
		opacity: 0
	}
	30% {
		opacity: .4;
	}
	70% {
		opacity: .8;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes exhibit {
	0% {
		opacity: 0
	}
	30% {
		opacity: .4;
	}
	70% {
		opacity: .8;
	}
	100% {
		opacity: 1;
	}
}

/*闪妆功能*/
.swiper-slide.bg2 {
	background: url("../images/mirror-bg2.jpg") no-repeat;
	background-size: 100% 100%;
	position: relative;
}

.curtain-2 {
	width: 1200px;
	overflow: hidden;
	margin: 50px auto 0;
}

.left-box {
	width: 520px;
	margin-top: 20px;
	text-align: left;
}

.left-box.ta {
	text-align: right;
	margin-top: 30px;
}

.left-box h3 {
	font-size: 36px;
	line-height: 48px;
	color: #61ebff;
	padding: 15px 0 20px;
	text-align: left;
}

.left-box.ta h3 {
	text-align: right;
}

.left-box h4 {
	width: 100%;
	font-weight: normal;
	color: #a5f2f2;
	padding: 5px 0;
	font-size: 14px;
}

.left-box p {
	width: 100%;
	font-size: 14px;
	line-height: 24px;
	color: #f2f2f2;
	padding: 10px 0;
}

.curtain-2-ul {
	width: 100%;
	overflow: hidden;
	margin: 20px auto 0;
}

.curtain-2-ul li {
	line-height: 30px;
	font-size: 14px;
	color: #ffffff;
	padding: 5px 0;
}

.curtain-2-ul li span {
	width: 14px;
	height: 14px;
	line-height: 14px;
	overflow: hidden;
	border-radius: 50%;
	background-color: #c0f2f2;
	font-size: 12px;
	display: inline-block;
	text-align: center;
	color: #3d3f3f;
	margin: -1px 5px 2px 0;
	vertical-align: middle;
}

.ps-box {
	width: 100%;
	font-size: 12px;
	color: #72a3d8;
	line-height: 24px;
	margin-top: 50px;
}

.right-box {
	width: 50%;
	position: relative;
}

.mirror-img-box {
	width: 380px;
	overflow: hidden;
	margin: 0 auto;
}

.mirror-img-box img {
	width: 100%;
}

.step-box {
	position: absolute;
}

.step-box img {
	width: 100%;
	display: block;
}

.step-box.no1 {
	width: 120px;
	z-index: 11;
	left: -100px;
	bottom: 160px;
}

.step-box.no2 {
	width: 80px;
	z-index: 12;
	right: 140px;
	bottom: 140px;
}

.step-box.no3 {
	width: 40px;
	z-index: 13;
	right: 220px;
	bottom: 275px;
}

.step-box.no4 {
	width: 58px;
	z-index: 13;
	right: 210px;
	top: 250px;
}

.step-box.line1 {
	width: 400px;
	letter-spacing: 10px;
	color: #eb6877;
	font-weight: bolder;
	z-index: 1;
	left: 10px;
	bottom: 160px;
	-webkit-transform: rotate(3deg);
	-moz-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	-o-transform: rotate(3deg);
	transform: rotate(3deg);
}

.step-box.line2 {
	width: 150px;
	letter-spacing: 10px;
	color: #eb6877;
	font-weight: bolder;
	z-index: 1;
	right: 130px;
	bottom: 220px;
	-webkit-transform: rotate(65deg);
	-moz-transform: rotate(65deg);
	-ms-transform: rotate(65deg);
	-o-transform: rotate(65deg);
	transform: rotate(65deg);
}

/*护肤*/
.swiper-slide.bg3 {
	background: url("../images/mirror-bg3.jpg") no-repeat;
	background-size: 100% 100%;
	position: relative;
}

.mirror-skin-img {
	width: 300px;
	overflow: hidden;
	margin: 60px 0 0;
	float: right;
}

.mirror-skin-img img {
	width: 100%;
}

/* banner */
#mirrorBanner {
	width: 100%;
	height: 100%;
}

#mirrorBanner .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	position: relative;
}

#mirrorBanner .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
	background-image: url("../images/page-left.png");
}

#mirrorBanner .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
	background-image: url("../images/page-right.png");
}

.banner-tips {
	width: 50%;
	overflow: hidden;
	position: absolute;
	top: 15%;
	left: 25%;
}

.banner-tips h3 {
	width: 100%;
	color: #ffffff;
	font-weight: normal;
	font-size: 36px;
	line-height: 48px;
	padding: 10px 0;
}

.banner-tips .line {
	width: 400px;
	height: 1px;
	margin: 0 auto;
	border-bottom: 1px solid #ffffff;
}

.banner-tips h4 {
	width: 100%;
	overflow: hidden;
	margin-top: 30px;
	color: #eeeeee;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
	font-weight: normal;
	font-size: 16px;
	padding: 10px 0;
	line-height: 30px;
}

/*核心价值*/
.swiper-slide.bg5 {
	background: url("../images/mirror-bg5.jpg") no-repeat;
	background-size: 100% 100%;
	position: relative;
}

.ct-mirror-card {
	width: 1200px;
	overflow: hidden;
	margin: 100px auto;
}

.ct-mirror-card li {
	width: 200px;
	height: 360px;
	float: left;
	position: relative;
}

.ct-mirror-card .box {
	width: 200px;
	height: 360px;
	position: relative;
	perspective: 1000px;
}

.ct-mirror-card .box .box-img {
	width: 200px;
	height: 360px;
	overflow: hidden;
	transform: rotateY(0);
	transition: all 0.50s ease-in-out 0s;
}

.ct-mirror-card .box:hover .box-img {
	transform: rotateY(-90deg);
}

.ct-mirror-card .box-img.bg1 {
	background: -webkit-linear-gradient(#2f2358, #321c33, #19141b);
	background: -o-linear-gradient(#2f2358, #321c33, #19141b);
	background: -moz-linear-gradient(#2f2358, #321c33, #19141b);
	background: linear-gradient(#2f2358, #321c33, #19141b);
}

.ct-mirror-card .box-img.bg2 {
	background: -webkit-linear-gradient(#26262d, #3b2240, #9d264b);
	background: -o-linear-gradient(#26262d, #3b2240, #9d264b);
	background: -moz-linear-gradient(#26262d, #3b2240, #9d264b);
	background: linear-gradient(#26262d, #3b2240, #9d264b);
}

.ct-mirror-card .box .box-content {
	width: 200px;
	height: 360px;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	transform: rotateY(90deg);
	transition: all 0.50s ease-in-out 0s;
}

.ct-mirror-card .box:hover .box-content {
	transform: rotateY(0);
}

.ct-mirror-card .face-sub1, .ct-mirror-card .face-sub2 {
	width: 100%;
	height: 178px;
	padding: 15px;
	box-sizing: border-box;
}

.ct-mirror-card .face-sub2 {
	margin-top: 180px;
}

.ct-mirror-card .face-sub1.bg1 {
	background: url("../images/mirror-1.png") no-repeat center;
	background-size: 74px 158px;
	background-position-x: right;
}

.ct-mirror-card .face-sub1.bg3 {
	background: url("../images/mirror-3.png") no-repeat center;
	background-size: 74px 158px;
	background-position-x: right;
}

.ct-mirror-card .face-sub1.bg5 {
	background: url("../images/mirror-5.png") no-repeat center;
	background-size: 74px 158px;
	background-position-x: right;
}

.ct-mirror-card .face-sub2.bg2 {
	background: url("../images/mirror-2.png") no-repeat center;
	background-size: 74px 158px;
	background-position-x: right;
}

.ct-mirror-card .face-sub2.bg4 {
	background: url("../images/mirror-4.png") no-repeat center;
	background-size: 74px 158px;
	background-position-x: right;
}

.ct-mirror-card .face-sub2.bg6 {
	background: url("../images/mirror-6.png") no-repeat center;
	background-size: 74px 158px;
	background-position-x: right;
}

.ct-mirror-card .face-sub1 h4, .ct-mirror-card .face-sub2 h4 {
	width: 100%;
	font-size: 18px;
	color: #ffffff;
	text-align: left;
	line-height: 30px;
	padding: 5px 0;
}

.ct-mirror-card .face-sub1 p, .ct-mirror-card .face-sub2 p {
	width: 100%;
	font-size: 14px;
	color: #ffffff;
	text-align: left;
	line-height: 30px;
	padding: 20px 0;
}

.ct-mirror-card .face-sub1 h4 {
	margin-bottom: 10px;
}

.ct-mirror-card .face-sub2 h4 {
	margin-top: 10px;
}

.ct-mirror-card .line {
	width: 40px;
	height: 2px;
	background: -webkit-linear-gradient(left, #672cb7, #ff3385);
	background: -o-linear-gradient(left, #672cb7, #ff3385);
	background: -moz-linear-gradient(left, #672cb7, #ff3385);
	background: linear-gradient(to left, #672cb7, #ff3385);
}

.ct-mirror-card .line.w2 {
	width: 100%;
	position: absolute;
	z-index: 5;
	bottom: 0;
	left: 0;
}

.ct-mirror-card .back {
	width: 200px;
	height: 360px;
	-moz-transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform: rotateY(180deg);
	background-color: #15141a;
	padding: 15px;
}

.ct-mirror-card .back-sub {
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
	font-size: 1.4rem;
	text-align: left;
	padding: 15px 0;
	line-height: 24px;
	color: #999999;
}

.ct-mirror-card .back-sub div:first-child {
	align-self: flex-start;
}

.arrow{
	width: 40px;
	height: 40px;
	position: fixed;
	z-index: 99;
	right: 20px;
	bottom: 20px;
	background: url("../images/arrow.png") no-repeat;
	cursor: pointer;
}

/* ----------------------- media ------------------------- */
@media screen and (max-width: 1440px) {

}

@media screen and (max-width: 1280px) {
	.ct-mirror-card {
		width: 1104px;
		margin-top: 40px;
	}

	.ct-mirror-card li {
		width: 184px;
		height: 331px;
	}

	.ct-mirror-card .box {
		width: 100%;
		height: 331px;
	}

	.ct-mirror-card .box .box-img {
		width: 184px;
		height: 331px;
	}

	.ct-mirror-card .box .box-content {
		width: 184px;
		height: 331px;
	}

	.ct-mirror-card .face-sub1, .ct-mirror-card .face-sub2 {
		height: 146px;
		padding: 10px;
	}

	.ct-mirror-card .face-sub2 {
		margin-top: 150px;
	}

	.ct-mirror-card .face-sub1.bg1 {
		background-size: 59px 126px;
	}

	.ct-mirror-card .face-sub1.bg3 {
		background-size: 59px 126px;
	}

	.ct-mirror-card .face-sub1.bg5 {
		background-size: 59px 126px;
	}

	.ct-mirror-card .face-sub2.bg2 {
		background-size: 59px 126px;
	}

	.ct-mirror-card .face-sub2.bg4 {
		background-size: 59px 126px;
	}

	.ct-mirror-card .face-sub2.bg6 {
		background-size: 59px 126px;
	}

	.ct-mirror-card .back-sub {
		width: 100%;
		overflow: hidden;
		font-size: 1.2rem;
		text-align: left;
		padding: 4px 0;
		line-height: 20px;
	}
}

@media screen and (max-width: 1024px) {
	.ct-mirror-card {
		width: 900px;
		margin-top: 40px;
	}

	.ct-mirror-card li {
		width: 150px;
		height: 270px;
	}

	.ct-mirror-card .box {
		width: 100%;
		height: 270px;
	}

	.ct-mirror-card .box .box-img {
		width: 150px;
		height: 270px;
	}

	.ct-mirror-card .box .box-content {
		width: 150px;
		height: 270px;
	}

	.ct-mirror-card .face-sub1, .ct-mirror-card .face-sub2 {
		height: 146px;
		padding: 10px;
	}

	.ct-mirror-card .face-sub2 {
		margin-top: 100px;
	}

	.ct-mirror-card .face-sub1.bg1 {
		background-size: 59px 126px;
	}

	.ct-mirror-card .face-sub1.bg3 {
		background-size: 59px 126px;
	}

	.ct-mirror-card .face-sub1.bg5 {
		background-size: 59px 126px;
	}

	.ct-mirror-card .face-sub2.bg2 {
		background-size: 59px 126px;
	}

	.ct-mirror-card .face-sub2.bg4 {
		background-size: 59px 126px;
	}

	.ct-mirror-card .face-sub2.bg6 {
		background-size: 59px 126px;
	}

	.ct-mirror-card .face-sub1 h4, .ct-mirror-card .face-sub2 h4 {
		font-size: 1.8rem;
		line-height: 30px;
	}

	.ct-mirror-card .face-sub1 p, .ct-mirror-card .face-sub2 p {
		font-size: 1.4rem;
		line-height: 24px;
	}

	.ct-mirror-card .face-sub1 h4 {
		margin-bottom: 5px;
	}

	.ct-mirror-card .face-sub2 h4 {
		margin-top: 5px;
	}

	.ct-mirror-card .back-sub {
		width: 100%;
		overflow: hidden;
		font-size: 1.2rem;
		text-align: left;
		padding: 8px 0;
		line-height: 20px;
	}
}