/*公共标题 开始*/
.pub_tit_index {
	margin-bottom: 5%;
	text-align: center;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	filter: alpha(opacity=0);
}
.pub_tit_index h4 {
	color: #333;
	font-size: 16px;
	margin-bottom: 10px;
}
.pub_tit_index p {
	color: #999;
	font-size: 14px;
	line-height: 20px;
	max-height: 20px;
}
.active .pub_tit_index { 
	opacity: 1; 
    filter:alpha(opacity=100);
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    -ms-transform:scale(1);
    transform:scale(1);
    -webkit-transition-delay: 0.7s;
    -moz-transition-delay: 0.7s;
    -ms-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
/*公共标题 结束*/

#footer {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 6666;
}

/*每屏banner*/
.section {
	position: relative;
	overflow: hidden;
}
.section .index_bg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.section .container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding-top: 50px;
	z-index: 99;
}

/*第一屏 开始*/
.section1 .slide {
	position: relative;
}
.section1 .fp-controlArrow.fp-prev {
	left: 50px;
	width: 0;
	border-width: 30px 18px 30px 0;
	border-color: transparent #fff transparent transparent;
}
.section1 .fp-controlArrow.fp-next {
	right: 50px;
	border-width: 30px 0 30px 18px;
	border-color: transparent transparent transparent #fff;
}
.section1 .fp-slidesNav.bottom ul li a.active span {
    background: #fff;
}
.section1 .fp-slidesNav.bottom ul li a span {
	border: 1px solid #fff;
}

.banner .text {
	position: absolute;
	width: 100%;
	left: 0;
	cursor: pointer;
}
.banner .text img {
	display: block;
	width: 100%;
	opacity: 0;
	-webkit-transition: all 1.5s;
	-moz-transition: all 1.5s;
	-ms-transition: all 1.5s;
	transition: all 1.5s;
	-webkit-transition-delay: .5s;
	-moz-transition-delay: .5s;
	-ms-transition-delay: .5s;
	transition-delay: .5s;
}
.banner_1 .text {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.banner_1 .text img {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}
.banner_1.active .text img {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.banner_2 .text {
	bottom: 10%;
}
.banner_2 .text img {
	transform: translateY(-100%);
}
.banner_2.active .text img {
	opacity: 1;
	transform: translateY(0);
}
.banner_3 .text {
	bottom: 32%;
}
.banner_3 .text img {
	transform: translateX(100%);
}
.banner_3.active .text img {
	opacity: 1;
	transform: translateX(0);
}
.banner_4 .text {
	bottom: 31%;
}
.banner_4 .text img {
	transform: translateY(100%);
}
.banner_4.active .text img {
	opacity: 1;
	transform: translateY(0);
}
/*第一屏 结束*/

/*快美领域 开始*/
.section4 .pub_tit_index {
	margin-bottom: 0;
}
.section4 .pub_tit_index h4,
.section4 .pub_tit_index p {
	color: #E3E077;
}
.field_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.field {
	float: left;
	flex: 0 0 auto;
	width: 100px;
	height: 100px;
	background-color: rgba(255,255,255,.5);
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px 20px 0;
	opacity: 0;
	-webkit-transition: all .8s;
	-moz-transition: all .8s;
	-ms-transition: all .8s;
	transition: all .8s;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}
.field:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
	opacity: 0;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
}
.active .field:hover {
	background: rgba(255,255,255,0.2);
	-webkit-transform: scale(0.93);
	-moz-transform: scale(0.93);
	-ms-transform: scale(0.93);
	transform: scale(0.93);
	transition-delay: initial;
}
.field:hover:after {
	-webkit-animation: sonarEffect 1.3s ease-out 75ms;
	-moz-animation: sonarEffect 1.3s ease-out 75ms;
	animation: sonarEffect 1.3s ease-out 75ms;
}

@-webkit-keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
		box-shadow: 0 0 0 2px rgba(255,255,255,0.05), 0 0 10px 10px transparent, 0 0 0 10px rgba(255,255,255,0.3);
	}
	100% {
		box-shadow: 0 0 0 2px rgba(255,255,255,0.05), 0 0 10px 10px transparent, 0 0 0 10px rgba(255,255,255,0.3);
		-webkit-transform: scale(1.3);
		opacity: 0;
	}
}
@-moz-keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
		box-shadow: 0 0 0 2px rgba(255,255,255,0.05), 0 0 10px 10px transparent, 0 0 0 10px rgba(255,255,255,0.3);
	}
	100% {
		box-shadow: 0 0 0 2px rgba(255,255,255,0.05), 0 0 10px 10px transparent, 0 0 0 10px rgba(255,255,255,0.3);
		-moz-transform: scale(1.3);
		opacity: 0;
	}
}
@keyframes sonarEffect {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.5;
		box-shadow: 0 0 0 2px rgba(255,255,255,0.05), 0 0 10px 10px transparent, 0 0 0 10px rgba(255,255,255,0.3);
	}
	100% {
		box-shadow: 0 0 0 2px rgba(255,255,255,0.05), 0 0 10px 10px transparent, 0 0 0 10px rgba(255,255,255,0.3);
		transform: scale(1.3);
		opacity: 0;
	}
}
.active .field1 {
	transition-delay: .2s;
}
.active .field2 {
	transition-delay: .4s;
}
.active .field3 {
	transition-delay: .6s;
}
.active .field4 {
	transition-delay: .8s;
}
.active .field5 {
	transition-delay: 1s;
}
.active .field6 {
	transition-delay: 1.2s;
}
.active .field {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.field a {
	width: 100%;
}
.field_icon {
	display: block;
	width: 40px;
	margin: 0 auto;
}
.field_icon img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
	/*-webkit-transition: all .5s;
	transition: all .5s;*/
}
/*.field a:hover img {
	transform: rotateY(180deg);
}*/
.field_tit {
	display: block;
	width: 100%;
	padding: 5px 0 0;
	text-align: center;
	font-size: 14px;
	color: #fff;
}
/*快美领域 结束*/

/*快美产品 开始*/
.section3 .fp-controlArrow.fp-prev,
.section3 .fp-controlArrow.fp-next {
	display: none;
}
.index_pro_list {
	position: relative;
}
.in_case {
	float: left;
	width: 27%;
	margin: 0 3%;
	height: auto;
	position: relative;
}
.in_case>h4 {
	width: 98%;
	margin: 15px auto 0;
	text-align: center;
	font-size: 16px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.case_box {
	position: relative;
	overflow: hidden;
	border: 1px #C3C1C1 solid;
	padding: 5px;
	background-color: #fff;
	box-sizing: border-box;
}
.case_box img {
	width: 100%;
	height: 100%;
}
.case_infor {
	position: absolute;
	top: 5px;
	bottom: 5px;
	right: -65%;
	z-index: 10;
	width: 60%;
	background-color: rgba(54, 61, 75, 0.9);
	color: #fff;
	padding: 0 15px;
	box-sizing: border-box;
}
.case_infor h5 {
	font-size: 14px;
	margin: 12% auto 8%;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.case_infor p {
	height: 72px;
	margin: 0 auto;
	font-size: 12px;
	line-height: 24px;
	overflow: hidden;
}
.case_infor a {
	display: block;
	text-align: center;
	color: #fff;
	margin: 10% auto 0;
	text-transform: uppercase;
}
.case_box:hover .case_infor {
	right: 5px;
}
.active .in_case{
	-webkit-animation:inCase .7s ease-in-out both;
    -moz-animation:inCase .7s ease-in-out both;
    -ms-animation:inCase .7s ease-in-out both;
    -o-animation:inCase .7s ease-in-out both;
    animation:inCase .7s ease-in-out both;
    -webkit-animation-delay: .8s;
    -moz-animation-delay:.8s;
    -ms-animation-delay:.8s;
    -o-animation-delay:.8s;
    animation-delay:.8s;
}
@keyframes inCase {
    0% {
        opacity: 0;
        transform: scale(0) rotate(30deg);
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0);
    }
}
@-webkit-keyframes inCase {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) rotate(30deg);
    }
    30% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
    }
}
@-moz-keyframes inCase {
    0% {
        opacity: 0;
        -moz-transform: scale(0) rotate(30deg);
    }
    30% {
        opacity: 1;
    }
    100% {
        -moz-transform: scale(1) rotate(0);
    }
}
@-ms-keyframes inCase {
    0% {
        opacity: 0;
        -ms-transform: scale(0) rotate(30deg);
    }
    100% {
        opacity: 1;
        -ms-transform: scale(1) rotate(0);
    }
}
@-o-keyframes inCase {
    0% {
        opacity: 0;
        -ms-transform: scale(0) rotate(30deg);
    }
    100% {
        opacity: 1;
        -ms-transform: scale(1) rotate(0);
    }
}
/*快美产品 结束*/

/*快美案例 开始*/
.section2 .pub_tit_index {
	position: absolute;
	top: 50px;
	left: 0;
	right: 0;
	margin-bottom: 0;
	padding: 20px 15px;
	z-index: 10;
	background-color: #fff;
}
.flash{position:relative;width:100%;height:100%;overflow:hidden;padding-top: 50px;box-sizing: border-box;}
.flash ul{width:102%;height:100%;padding-top: 90px;box-sizing: border-box;}
.flash ul li{float:left;width:16.666667%;height:100%;}
.flash ul li a{position:relative;display:block;width:100%;height:100%;overflow:hidden;}
.flash ul li .accordion .pic_box{width:100%;height:100%;}
.flash ul li .odd{bottom:-120%;}
.flash ul li .even{top:-120%;}
.flash .tip{position:absolute;left:0;top:50%;transform:translateY(-50%);width:100%;text-align:center;color:#fff;z-index: 6;}
.flash .tip h2 {
	font-size: 12px
}
.flash .icon{display:block;width:30px;height:30px;margin:0 auto 10px;}
.flash .tip p {
	width: 80%;
	margin: 5% auto 8%;
	text-align: left;
	font-size: 12px;
	color: rgba(255,255,255,.8);
	line-height: 20px;
	max-height: 60px;
	overflow: hidden;
	display: none;
	transition: all .8s;
}
.flash .tip em {
	display: block;
	text-decoration: underline;
	font-size: 12px;
	display: none;
}
.flash ul li:hover .tip .icon,
.flash ul li.cur .tip .icon {
	display: none;
}
.flash ul li:hover .tip p,
.flash ul li.cur .tip p,
.flash ul li:hover .tip em,
.flash ul li.cur .tip em {
	display: block;
}
.flash .min_tip{display:none;}
.active .flash ul li .odd{
	bottom: 0;
    transition-delay: 0.6s;
    -webkit-transition-delay: 0.6s;
    -moz-transition-delay: 0.6s;
    -ms-transition-delay: 0.6s;
}
.active .flash ul li .even{
	top: 0;
    transition-delay: 0.8s;
    -webkit-transition-delay: 0.8s;
    -moz-transition-delay: 0.8s;
    -ms-transition-delay: 0.8s;
}
/*快美案例 结束*/

/*为什么选择我们 开始*/
.why_more {
	text-align: center;
}
.why_more a {
	font-size: 14px;
	border: 1px solid #323333;
	padding: 5px 10px;
}
.why_list li {
	float: left;
	width: 33.33%;
	text-align: center;
	margin: 0 0 30px;
	padding: 0 15px;
	box-sizing: border-box;
	opacity: 0;
	-webkit-transition: all .8s;
	-moz-transition: all .8s;
	-ms-transition: all .8s;
	transition: all .8s;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}
.active .why_list li:nth-child(1) {
	transition-delay: .2s;
}
.active .why_list li:nth-child(2) {
	transition-delay: .4s;
}
.active .why_list li:nth-child(3) {
	transition-delay: .6s;
}
.active .why_list li:nth-child(4) {
	transition-delay: .8s;
}
.active .why_list li:nth-child(5) {
	transition-delay: 1s;
}
.active .why_list li:nth-child(6) {
	transition-delay: 1.2s;
}
.active .why_list li {
	opacity: 1;
	transform: translateY(0);
}
.why_list li img {
	display: block;
	max-width: 40px;
	margin: 0 auto 15px;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.why_list li:hover img {
	/*transform: rotateY(180deg);*/
	transform: scale(0.7);
}
.why_list li h3 {
	font-size: 16px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
/*为什么选择我们 结束*/

/*合作品牌 开始*/ 
.section6 .container {
	position: relative;
	top: auto;
	left: auto;
	transform: translate(0,0);
	padding-top: 0;
}
.section6 .pub_tit_index h4 {
	color: #DABA65;
}
.section6 .pub_tit_index h4 i {
	display: flex;
	justify-content: center;
	align-items: center;
}
.section6 .pub_tit_index h4 i:before,
.section6 .pub_tit_index h4 i:after {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #DABA65;
	border-radius: 50%;
	margin: 0 5px;
}
.index_partner {
	background-color: #fff;
	position: relative;
	padding: 40px 0;
	overflow: hidden;
}
.index_partner:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(238,239,243,.7);
}
.index_partner .container {
	padding-top: 0;
}
.index_partner_list {
	opacity: 0;
	-webkit-transition: all 1s;
	transition: all 1s;
	-webkit-transform: scale(0);
	transform: scale(0);
}
.active .index_partner_list {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.index_partner_list li {
	float: left;
	width: 25%;
	padding: 0 5px;
	box-sizing: border-box;
	margin-bottom: 10px;
}
.index_partner_list li p {
	width: 100%;
	border: 1px #DADBD5 solid;
	box-sizing: border-box;
	overflow: hidden;
}
.index_partner_list li img {
	display: block;
	max-width: 100%;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.index_partner_list li:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.index_contact {
	padding: 0 50px;
	margin: 40px 0;
	display: flex;
	align-items: center;	
}
.index_contact li {
	float: left;
	width: 33.33%;
	padding: 0 1%;
	box-sizing: border-box;
	opacity: 0;
	-webkit-transition: all 1s;
	transition: all 1s;
	-webkit-transform: scale(2);
	transform: scale(2);
}
.active .index_contact li:nth-child(1) {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
}
.active .index_contact li:nth-child(2) {
	-webkit-transition-delay: .6s;
	transition-delay: .6s;
}
.active .index_contact li:nth-child(3) {
	-webkit-transition-delay: .9s;
	transition-delay: .9s;
}
.active .index_contact li {
	opacity: 1;
	transform: scale(1);
}
.index_contact li a {
	display: block;
	background-color: rgba(255,255,255,.4);
	text-align: center;
	padding: 15px 15px 30px;
}
.index_contact li a img {
	display: block;
	max-width: 100%;
	margin: 0 auto 15px;
}
.index_contact li a span {
	display: block;
	font-size: 18px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
/*合作品牌 结束*/

@media (max-width: 767px) {
	#fp-nav.right {
		right: 5px;
	}
	.section1 .fp-controlArrow.fp-prev,
	.section1 .fp-controlArrow.fp-next {
		display: none;
	}
	/*标题 开始*/
	.pub_tit_index p {
		font-size: 12px;
		max-height: 40px;
	}
	/*标题 结束*/
	/*快美产品 开始*/
	.index_pro_list {
		display: none;
	}
	.section3 .slide {
		position: relative;
		z-index: 8;
	}
	.section3 .fp-slidesNav.bottom {
		bottom: 8%;
	}
	.in_case_mob {
		width: 60%;
		height: auto;
		margin: 0 auto;
		z-index: 9;
		position: relative;
	}
	.in_case_mob .case_box {
		display: block;
		width: 100%;
		height: auto;
	}
	.in_case_mob .case_box img {
		width: 100%;
		height: auto;
	}
	.in_case_mob h4 {
		height: 40px;
		line-height: 40px;
		background-color: rgba(0, 0, 0, 0.6);
		font-size: 16px;
		color: #fff;
		text-align: center;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		position: absolute;
		bottom: 5px;
		left: 5px;
		right: 5px;
	}
	/*快美产品 结束*/
	/*合作品牌 开始*/
	.section6 .pub_tit_index h4 i:before,
	.section6 .pub_tit_index h4 i:after {
		width: 5px;
		height: 5px;
	}
	.index_partner_list li:nth-child(n+17),
	.index_contact {
		display: none;
	}
	.index_partner {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 100%;
		padding: 30px 0;
	}
	/*合作品牌 结束*/
}
@media (max-width: 480px) {
	/*快美产品 开始*/
	.in_case_mob {
		width: 80%;
	}
	/*快美产品 结束*/
}
/*横屏*/
@media (max-width:767px) and (orientation: landscape) {
	.in_case_mob {
		width: 40%;
	}
	.index_partner_list li:nth-child(n+5) {
		display: none;
	}
}
@media (min-width: 768px) {
	/*公共标题 开始*/
	.pub_tit_index h4 {
		font-size: 18px;
	}
	.pub_tit_index p {
		font-size: 12px;
	}
	/*公共标题 结束*/
	/*快美领域 开始*/
	.field {
		width: 140px;
		height: 140px;
		margin: 40px 30px 0;
	}
	.field_icon {
		width: 50px;
	}
	.field_tit {
		font-size: 16px
	}
	/*快美领域 结束*/
	/*快美产品 开始*/
	.section3 .slide {
		display: none;
	}
	.section3 .fp-slidesNav ul {
		display: none;
	}
	/*快美产品 结束*/
	/*快美案例 开始*/
	.flash .icon {
		width: 50px;
		height: 50px;
	}
	.flash .tip p {
		width: 180px;
	}
	/*快美案例 结束*/
	/*为什么选择我们 开始*/
	.why_list li {
		margin-bottom: 40px;
	}
	.why_list li img {
		max-width: 60px;
	}
	.why_list li h3 {
		font-size: 18px
	}
	/*为什么选择我们 结束*/
	/*合作品牌 开始*/
	.index_partner {
		margin-top: 100px;
	}
	.index_partner_list {
		padding: 0 50px;
	}
	.index_partner_list li {
		width: 25%;
	}
	.index_partner_list li:nth-child(n+13) {
		display: none;
	}
	/*合作品牌 结束*/
}
@media (min-width: 992px) {
	/*公共标题 开始*/
	.pub_tit_index h4 {
		font-size: 20px;
	}
	.pub_tit_index p {
		font-size: 14px;
	}
	/*公共标题 结束*/
	/*快美领域 开始*/
	.field {
		width: 160px;
		height: 160px;
		margin: 40px 40px 0;
	}
	.field_icon {
		width: 60px;
	}
	.field_tit {
		font-size: 18px
	}
	/*快美领域 结束*/
	/*快美产品 开始*/
	.in_case>h4,
	.case_infor h5 {
		font-size: 18px;
	}
	/*快美产品 结束*/
	/*快美案例 开始*/
	.section2 .pub_tit_index {
		top: 82px;
		padding: 30px 0;
	}
	.flash {
		padding-top: 82px;
	}
	.flash ul {
		padding-top: 127px;
	}
	.flash .icon {
		width: 60px;
		height: 60px;
	}
	.flash .tip h2 {
		font-size: 20px
	}
	.flash .tip p {
		width: 240px;
	}
	/*快美案例 结束*/
	/*为什么选择我们 开始*/
	.why_list li {
		margin-bottom: 40px;
	}
	.why_list li img {
		max-width: 80px;
	}
	/*为什么选择我们 结束*/
	/*合作品牌 开始*/
	.index_partner {
		margin-top: 120px;
	}
	.index_partner_list li {
		width: 16.6666667%;
	}
	.index_partner_list li:nth-child(n+13) {
		display: block;
	}
	/*合作品牌 结束*/
}
@media (min-width: 1200px) {
	/*公共标题 开始*/
	.pub_tit_index h4 {
		font-size: 24px;
	}
	/*公共标题 结束*/
	/*快美领域 开始*/
	.field {
		width: 180px;
		height: 180px;
		margin: 50px 60px 0;
	}
	.field_icon {
		width: 80px;
	}
	/*快美领域 结束*/
	/*快美产品 开始*/
	.case_infor p {
		height: 120px;
	}
	/*快美产品 结束*/
	/*快美案例 开始*/
	.flash .icon {
		width: 80px;
		height: 80px;
	}
	.flash .tip h2 {
		font-size: 24px
	}
	.flash .tip p {
		width: 290px;
		max-height: 100px;
	}
	/*快美案例 结束*/
	/*为什么选择我们 开始*/
	.why_list li {
		margin-bottom: 60px;
	}
	.why_list li img {
		max-width: 100px;
	}
	/*为什么选择我们 结束*/
	/*合作品牌 开始*/
	.index_contact li {
		padding: 0 2%;
	}
	/*合作品牌 结束*/
}
@media screen and (min-width: 1400px) {
	/*公共标题 开始*/
	.pub_tit_index h4 {
		font-size: 30px;
	}
	/*公共标题 结束*/
	/*快美领域 开始*/
	.field {
		width: 200px;
		height: 200px;
		margin: 50px 80px 0;
	}
	.field_icon {
		width: 100px;
	}
	.field_tit {
		font-size: 20px
	}
	/*快美领域 结束*/
	/*快美产品 开始*/
	.case_infor h5 {
		margin-top: 18%;
	}
	.case_infor a {
		margin-top: 15%;
	}
	/*快美产品 结束*/	
	/*快美案例 开始*/
	.section2 .pub_tit_index {
		top: 102px;
		padding: 50px 0;
	}
	.flash {
		padding-top: 102px;
	}
	.flash ul {
		padding-top: 166px;
	}
	.flash .icon {
		width: 100px;
		height: 100px;
	}
	.flash .tip h2 {
		font-size: 30px
	}
	.flash .tip p {
		width: 340px;
		max-height: 140px;
	}
	/*快美案例 结束*/
	/*为什么选择我们 开始*/
	.why_list li img {
		max-width: 100%;
	}
	/*为什么选择我们 结束*/
	/*合作品牌 开始*/
	.index_partner {
		margin-top: 150px;
	}
	.index_contact li {
		padding: 0 5%;
	}
	/*合作品牌 结束*/
}
@media (min-width: 768px) and (max-height: 700px) {
	/*快美领域 开始*/
	.field {
		width: 140px;
		height: 140px;
		margin: 40px 80px 0;
	}
	.field_icon {
		width: 50px;
	}
	.field_tit {
		font-size: 16px
	}
	/*快美领域 结束*/
	/*爲什麽選擇我們 開始*/
	.why_list li {
		margin-bottom: 40px;
	}
	.why_list li img {
		max-width: 80px;
	}
	.why_list li h3 {
		font-size: 16px
	}
	/*爲什麽選擇我們 結束*/
	/*合作品牌 開始*/
	.index_partner {
		position: absolute;
		width: 100%;
		top: 53%;
		left: 50%;
		transform: translate(-50%,-50%);
		margin-top: 0;
	}
	.index_partner_list li:nth-child(n+13) {
		display: none;
	}
	.index_contact {
		display: none;
	}
	/*合作品牌 結束*/
}
@media (min-width: 768px) and (max-height: 550px) {
	/*标题*/
	.pub_tit_index h4 {
		font-size: 18px
	}
	.pub_tit_index p {
		font-size: 12px
	}
	/*快美领域 开始*/
	.field {
		width: 100px;
		height: 100px;
		margin: 30px 20px 0;
	}
	.field_icon {
		width: 40px;
	}
	.field_tit {
		font-size: 14px
	}
	/*快美领域 结束*/
	/*快美產品 開始*/
	.in_case>h4 {
		font-size: 14px;
		margin-top: 5px;
	}
	.case_box {
		height: 160px;
	}
	.case_infor h5 {
		font-size: 16px;
		margin-top: 10%;
	}
	.case_infor p {
		height: 48px;
	}
	.case_infor a {
		margin-top: 5%;
	}
	/*快美產品 結束*/
	/*快美案例 开始*/
	.section2 .pub_tit_index {
		/*top: 82px;*/
		padding: 20px 0;
	}
	.flash ul {
		padding-top: 94px;
	}
	.flash .icon {
		width: 60px;
		height: 60px;
	}
	.flash .tip h2 {
		font-size: 20px
	}
	.flash .tip p {
		max-height: 60px;
		margin: 3% auto;
	}
	/*快美案例 结束*/
	/*爲什麽選擇我們 開始*/
	.why_list li {
		margin-bottom: 30px;
	}
	.why_list li img {
		max-width: 60px;
	}
	.why_list li h3 {
		font-size: 14px
	}
	/*爲什麽選擇我們 結束*/
}
@media (min-width: 768px) and (max-height: 450px) {
	/*爲什麽選擇我們 開始*/
	.why_list li {
		width: 16.6666667%;
		margin-bottom: 50px;
	}
	/*爲什麽選擇我們 結束*/
}
