﻿@charset "UTF-8";

.view{
	padding: 0 .3rem;
}
header{
	position: fixed;
	top: 0;
	width: 100%;
	height: 1.3rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url('../images/m-nav-bg.png');
	z-index: 30;
	transition: background-color .2s linear;
}
.header-view{
	padding: 0 .3rem;
}
header .logo{
	float: left;
	width: .75rem;
	margin-top: .15rem;
}
header .logo img{
	width: 100%;
}
header .nav{
	display: none;
}
header .right{
	float: right;
	margin-top: .4rem;
	font-size: 0;
}
header .right a{
	display: inline-block;
	*display: inline;
	zoom: 1;
	margin-left: .3rem;
	vertical-align:top;

}
header .right .lang{
	font-size:.28rem;
	line-height:.28rem;
	color:#000;
}

header .right .search-btn{
	width: .28rem;
	height: .28rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url('../images/search-btn.png');
}
header .right .navbtn{
	width: .36rem;
	height: .28rem;
	position: relative;
}
header .right .navbtn .line{
	width: 100%;
	height: 2px;
	border-radius: 1px;
	background-color: #000;
	position: absolute;
	left: 0;
	transition: all .2s linear;
}
header .right .navbtn .line1{
	top: 0;
}
header .right .navbtn .line2{
	top: 50%;
	margin-top: -1px;
}
header .right .navbtn .line3{
	bottom: 0;
}
header .right .navbtn.on .line1,
header .right .navbtn.on .line2,
header .right .navbtn.on .line3{
	top: 50%;
	margin-top: -1px;
	bottom: auto;
}
header .right .navbtn.on .line2{
	display: none;
}
header .right .navbtn.on .line1{
	transform: rotate(45deg);
}

header .right .navbtn.on .line3{
	transform: rotate(-45deg);
}
header.on{
	background-color: #fff;
}
header .lang-box{
	display: none;
}
header .share-box{
	display: none;
}
.clearfixed{
	height: 1rem;
	display: none;
}
.m-nav{
	position: fixed;
	top: 1.3rem;
	left: 0;
	width: 100%;
	height: calc(100% - 1.3rem);
	z-index: 30;
	border-top: 1px solid #e5e5e5;
	background-color: #fff;
	display: none;
}
.m-nav li a{
	display: block;
}
.m-nav li .tit{
	font-size: .36rem;
	line-height: .46rem;
	padding: .3rem;
	color: #2c2c2c;
	border-bottom: 1px solid #e5e5e5;
}

.m-nav li .tit:before{
	content: "";
	position: absolute;
	right: .3rem;
	width: .42rem;
	height: .42rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url('../images/m-nav-arrow.png');
}
.m-nav li.on1 .tit:before{
	background-image: url('../images/m-nav-jia.png');
}
.m-nav li.on2 .tit:before{
	background-image: url('../images/m-nav-jian.png');
}
.m-nav li .navson{
	padding: .15rem 0;
	border-bottom: 1px solid #e5e5e5;
	display: none;
}
.m-nav li .navson a{
	font-size: .3rem;
	line-height: .4rem;
	padding: .15rem .3rem;
	color: #737373;
}
.search-dialog-box{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
}
.search-dialog-box .black{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .2);
}
.search-dialog{
	position: absolute;
	left:50%;
	top:50%;
	box-sizing:border-box;
	width: 90%;
	padding: .2rem;
	transform: translate(-50%,-50%);
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,.33);
	border-radius: .4rem;
} 
.search-dialog input[type=text]{
	float: left;
    width: 86%;
    border: none;
    padding: 0;
    font-size: .24rem;
    line-height: .4rem;
    height: .4rem;
    color: #999;
    background-color: #fff;
    border-radius: 0;
}
.search-dialog input[type=submit] {
    float: right;
    width: 15px;
    height: .4rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    border: none;
    padding: 0;
    background-image: url(../images/search-btn.png);
    background-color: transparent;
}
.search-dialog input::-webkit-input-placeholder{
    color:#999;
}
.search-dialog input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color:#999;
}
.search-dialog input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color:#999;
}
.search-dialog input:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
    color:#999;
}



/* header end */
footer .top-box{
	padding-bottom: .3rem;
}
footer .f-nav a{
	display: block;
}
footer .f-nav .tit{
	padding: .3rem;
	font-size: .36rem;
	line-height: .46rem;
	color: #2c2c2c;
	border-bottom: 1px solid #e5e5e5;
	position: relative;
}
footer .f-nav .tit:before{
	content: "";
	position: absolute;
	right: .5rem;
	top: 50%;
	transform: translateY(-50%);
	width: .42rem;
	height: .42rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url('../images/m-nav-arrow.png')
}
footer .f-nav li.on1 .tit:before{
	background-image: url('../images/m-nav-jia.png');
}
footer .f-nav li.on2 .tit:before{
	background-image: url('../images/m-nav-jian.png');
}
footer .f-nav .sub{
	display: none;
	padding: .15rem 0;
    border-bottom: 1px solid #e5e5e5;
}
footer .f-nav .sub a{
	font-size: .3rem;
    line-height: .4rem;
    padding: .15rem .3rem;
    color: #737373;
}
footer .qrcode-box{
	margin-top: .55rem;
	font-size: 0;
	text-align: center;
}
footer .qrcode-box .item{
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: 2rem;
	margin: 0 .8rem;
}
footer .qrcode-box .txt span{
	font-size: .24rem;
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: .5rem;
	display:inline-block;
	*display:inline;
	zoom:1;
	line-height.4rem;
}

footer .qrcode-box .item img{
	width: 100%;
}
footer .qrcode-box .item .txt{
	margin-top: .1rem;
}
footer .qrcode-box .item:nth-child(1) .txt span{
	background-image: url('../images/sina.png')
}
footer .qrcode-box .item:nth-child(2) .txt span{
	background-image: url('../images/wechat.png')
}
footer .icon-box{
	font-size: 0;
	text-align: center;
}
footer .icon-box .item{
	display: inline-block;
	*display: inline;
	zoom: 1;
}
footer .icon-box .divide{
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: 1px;
	height: calc(.44rem + 44px);
	background-color: #e9e9e9;
	vertical-align: top;
	margin: 0 .8rem;
}

footer .link-box{
	margin-top: .25rem;
	font-size: 0;
	text-align: center;
}
footer .link-box a{
	display: inline-block;
	*display: inline;
	zoom: 1;
	font-size: .24rem;
	color: #2c2c2c;
	margin: 0 .2rem;
}
footer .link-box .m-item{
	display: none;
}
footer .icon-box{
	margin-top: .3rem;
}
footer .icon-box span{
	display: block;
}
footer .icon-box .divide{
	margin: 0 20px;
	height: 78px;
}
footer .icon-box .item{
	display: inline-block;
	*display: inline;
	zoom: 1;
	/* margin: 0 .8rem; */
}
footer .icon-box .icon{
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 44px;
	width: 44px;
	height: 44px;
	font-size: .24rem;
	line-height: .34rem;
	margin: 0 auto;
}
footer .icon-box .txt{
	font-size: .24rem;
	line-height: .34rem;
	margin-top: .1rem;
	font-size: .24rem;
	color: #2c2c2c;
}
footer .copy-box{
	padding: .2rem 0;
	border-top: 1px solid rgba(0,0,0,.1);
	text-align: center;
	width: 100%;overflow: hidden;
}
footer .copy-box .copy{
	font-size: .24rem;
	color: #2c2c2c;
	line-height: .36rem;
}
footer .copy-box .copy a{
	color:#2c2c2c;
}
footer .copy-box .build,
footer .copy-box .build a{
	font-size: .24rem;
	color: #2c2c2c;
	line-height: .36rem;
}
/* footer end */
.index-wrap{
	overflow: hidden;
}
.index-wrap>.swiper-wrapper>.swiper-slide{
	overflow: hidden;
	background: #f3f3f3;
}
.banner{
	height: 100%;
	overflow: hidden;
	position: relative;
}
.banner .m-img,
.banner .pc-img{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 100%;
}
.banner .m-img img{
	width: 100%;
}
.banner .pc-img{
	display: none;
}
.banner .text-box{
	position: absolute;
	width: 100%;
	text-align: center;
	left: 0;
	bottom: .85rem;
}
.banner .text-box .txt{
	font-size: .24rem;
	line-height: .34rem;
}
.banner .text-box .desc{
	font-size: .7rem;
	line-height: .74rem;
	margin-top: .15rem;
	letter-spacing: 3px;
	padding-left: 3px;
}
.banner .text-box .more{
	font-size: 0;
	text-align: center;
	display: block;
	height: .7rem;
	width: 4rem;
	background-color: #fff;
	border-radius: 2px;
	margin: .3rem auto 0;
}
.banner .text-box .more span{
	font-size: .24rem;
	display: inline-block;
	*display: inline;
	zoom: 1;
	line-height: .7rem;
	color: #282828;
	padding-right: .16rem;
	position: relative;
}
.banner .text-box .more span:before{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: .08rem;
	height: .15rem;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url('../images/index-more1.png');
}
.banner .btns{
	position: absolute;
	left: 0;
	bottom: .3rem;
	font-size: 0;
	z-index: 3;
	text-align: center;
	width: 100%;
}
.banner .btns .swiper-pagination-bullet{
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: 8px;
	height: 8px;
	background-color: transparent;
	border: 1px solid rgba(0,0,0,.5);
	border-radius: 100%;
	margin: 0 .06rem;
}
.banner .btns .swiper-pagination-bullet-active{
	background-color: #000;
	border-color: #000;
}
.banner .mouse{
	display: none;
}

.idea-box{
	height: 100%;
}
.idea-box .pc-box{
	height: 100%;
}

.idea-box .pc-box{
	display: none;
}

.idea-box .m-box .tab-box .swiper-slide{
	width: 50%;
	height: 3.6rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.idea-box .m-box .tab-box img{
	width: 100%;
}
.idea-box .m-box .text-box{
	margin: .3rem 0;
}

.index-tit{
	font-size: .52rem;
	line-height: .74rem;
}
.idea-box .index-tit{
	text-align: center;
	padding-bottom: .2rem;
	border-bottom: 1px solid #e5e5e5;
}

.pub-con{
	font-size: .24rem;
	line-height: .34rem;
	color: #595959;
}
.idea-box .pub-con{
	margin-top: .2rem;
	text-align: center;
}
.index-more{
	text-align: center;
}
.index-more a{
	display: inline-block;
	*display: inline;
	zoom: 1;
	font-size: .24rem;
	color: #2e2e2e;
	padding-right: .15rem;
	position: relative;
}
.index-more a:before{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-image: url('../images/index-more1.png');
	width: .08rem;
	height: .15rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.coo-box{
	/*height: 13.34rem;*/
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.coo-box .text-box{
	position: absolute;
	top: 1rem;
	left: 0;
	width: 100%;
}
.coo-box .text-box .text{
	width: 5rem;
	margin: 0 auto;
}
.coo-box .text-box .text .tit{
	font-size: .62rem;
	line-height: .72rem;
	padding-bottom: .2rem;
	border-bottom: 1px solid #cfd3db;
	margin-bottom: .25rem;
}
.coo-box .logo-box{
	margin-top: .3rem;
	border-radius: 6px;
	overflow: hidden;
	background-color: #fff;
}
.coo-box .logo-box .img-box{
	
	text-align: center;
	padding: .2rem 0;
}
.coo-box .logo-box .img-box .item{
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: 1.1rem;
	margin: 0 .2rem;
	vertical-align: top;
}
.coo-box .logo-box .img-box .item img{
	width: 100%;
}
.coo-box .index-more{
	font-size: 0;
	text-align: center;
	padding: .15rem 0;
	/*border-top: 1px solid #e5e5e5;*/
	margin-top: 0;
}
.fun-box{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 100%;
}
.fun-box .pc-box{
	display: none;
}

.fun-box .text-box{
	padding-top: 1rem;
	text-align: center;
	width: 5.7rem;
	margin: 0 auto;
}
.fun-box .text-box .tit{
	font-size: .62rem;
	color: #383838;
	line-height: .72rem;
	display: inline-block;
	padding-bottom: .2rem;
	border-bottom: 1px solid #d9dde1;
}
.fun-box .text-box .pub-con{
	color: #303030;
	font-size: .26rem;
	line-height: .36rem;
	margin-top: .2rem;
}
.fun-box .text-box .fun-more{
	display: block;
	width: 3.35rem;
	height: .7rem;
	border-radius: 6px;
	text-align: center;
	background-color: #fff;
	box-shadow: 0 0 24px rgba(130,151,183,.13);
	margin: .35rem auto 0;
	font-size: 0;
	line-height: .7rem;
}
.fun-box .text-box .fun-more span{
	display: inline-block;
	*display: inline;
	zoom: 1;
	font-size: .24rem;
	color: #2e2e2e;
	padding-right: .15rem;
	position: relative;
}
.fun-box .text-box .fun-more span:before{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: .08rem;
	height: .15rem;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-image: url('../images/index-more1.png');
	background-position: center;
	background-size: cover;
}
.fun-box .m-box{
	margin-top: .8rem;
	overflow: hidden;
	padding-bottom: 1rem;
}
.fun-box .swiper-slide{
	width: 4rem;
	/* padding-top: .52rem; */
	transition: all .3s linear;
	margin: 0 1rem;
}
.fun-box img{
	width: 100%;
}
.fun-box .img{
	border-radius: .6rem;
	overflow: hidden;
}
.fun-box .m-box .prev,
.fun-box .m-box .next{
	position: absolute;
	top: 50%;
	transform: translateY(calc(-50% + 1rem));
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: .4rem;
	height: .8rem;
	z-index: 3;
}
.fun-box .m-box .prev{
	background-image: url('../images/h-product-prev.png');
	left: .3rem;
}
.fun-box .m-box .next{
	background-image: url('../images/h-product-next.png');
	right: .3rem;
}
.fun-box .text{
	position: absolute;
	left: -.15rem;
	bottom: -.15rem;
	width: 3.3rem;
	border-radius: .6rem 0 .6rem .6rem;
	background-color: #fff;
}
.fun-box .text .tit{
	font-size: .28rem;
	line-height: .38rem;
	text-align: center;
	padding: .1rem 0;
	border-bottom: 1px solid #eee;
}
.fun-box .text .pub-con{
	line-height: .3rem;
	color: #000;
	opacity: .6;
	filter: alpha(opacity=60);
	padding: 0 .3rem;
	margin: .1rem 0;
	max-height: .6rem;
	overflow: hidden;
}
.fun-box .yin{
	position: absolute;
	width: .44rem;
	top: -.1rem;
	left: .3rem;
}
.fun-box .yin img{
	display: block;
}
.i-product-box{
	background-color: #fafafa;
	box-sizing: border-box;
	padding: .8rem 0;
}
.i-product-box h3{
	font-size: .62rem;
	line-height: .72rem;
	color: #383838;
	text-align: center;
}
.i-product-box .tab-btns-box{
	position: relative;
}
.i-product-box .tab-btns-box .swiper-button-disabled{
	display: none;
}
.i-product-box .tab-btns{
	position: relative;
	overflow: hidden;
	margin-top: .35rem;
	border-top: 1px solid #d6dadf;
	border-bottom: 1px solid #d6dadf;
}
.i-product-box .tab-btns .swiper-slide{
	width: auto;
	margin: 0 .6rem;
	font-size: .3rem;
	line-height: .4rem;
	color: #999999;
	padding: .2rem 0 .2rem .6rem;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: .4rem;
}

.i-product-box .tab-btns .swiper-slide.cur{
	color: #222222;
}
.i-product-box .tab-btns .mask{
	position: absolute;
	top: 0;
	width: .8rem;
	height: .8rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	z-index: 5;
}
.i-product-box .tab-btns-box .left{
	left: 0;
	background-image: url('../images/tab-mask1.png');
}
.i-product-box .tab-btns-box .right{
	right: 0;
	background-image: url('../images/tab-mask2.png');
}
.i-product-box .tab-btns-box .prev,
.i-product-box .tab-btns-box .next{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: .2rem;
	height: .4rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 6;
}
.i-product-box .tab-btns-box .prev{
	background-image: url('../images/pro-prev1.png');
	left: .2rem;
}
.i-product-box .tab-btns-box .next{
	background-image: url('../images/pro-next1.png');
	right: .2rem;
}
.i-product-box .product-tab{
	margin-top: .25rem;
	position: relative;
}
.i-product-box .i-product{
	overflow: hidden;
}
.i-product-box .i-product .swiper-slide{
	width: 50%;
	box-sizing: border-box;
	padding: 0 .5rem;
	margin-bottom: .3rem;
}
.i-product-box .i-product .swiper-slide .con-box{
	display: block;
}
.i-product-box .i-product .swiper-slide img{
	width: 100%;
}
.i-product-box .i-product .swiper-slide .txt{
	font-size: .24rem;
	line-height: .36rem;
	text-align: center;
	margin-top: .2rem;
	color: #434343;
}
.i-product-box .i-product .btns{
	font-size: 0;
	text-align: center;
	margin-top: .3rem;
}
.i-product-box .i-product .btns .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background-color: #c8c8c8;
	border-radius: 100%;
	margin: 0 5px;
}
.i-product-box .i-product .btns .swiper-pagination-bullet-active{
	background-color: #e60012;
}
.product-tab .prev,
.product-tab .next{
	position: absolute;
	top: 50%;
	transform: translateY(calc(-50% - .3rem - 10px));
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: .4rem;
	height: .8rem;
	z-index: 3;
}
.product-tab .prev{
	background-image: url('../images/h-product-prev.png');
	left: .3rem;
}
.product-tab .next{
	background-image: url('../images/h-product-next.png');
	right: .3rem;
}
.star-box .m-box{
	height: 100%;
}
.star-box .m-box .swiper-slide{
	height: 100%;
	position: relative;
}
.star-box .m-box .img img{
	width: 100%;
}
.star-box .text-box{
	position: absolute;
	left: 0;
	top: 1rem;
	width: 100%;
	text-align: center;
}
.star-box .text-box .txt{
	font-size: .26rem;
	line-height: .36rem;
}
.star-box .text-box .tit{
	font-size: .62rem;
	line-height: .72rem;
	margin: .15rem 0;
}
.star-box .white .text-box .txt,
.star-box .white .text-box .tit{
	color: #fff;
}
.star-box .text-box .more{
	width: 3.35rem;
	height: .7rem;
	line-height: .7rem;
	background-color: #fff;
	border-radius: 6px;
	display: block;
	margin: .3rem auto 0;
	font-size: 0;
	box-shadow: 0 5px 20px rgba(0,0,0,.1);

}
.star-box .text-box .more span{
	display: inline-block;
	*display: inline;
	zoom: 1;
	font-size: .26rem;
	color: #2e2e2e;
	padding-right: .15rem;
	position: relative;
}
.star-box .text-box .more span:before{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: .08rem;
	height: .15rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url('../images/index-more1.png');
}
.star-box .m-box .btns{
	position: absolute;
	left: 0;
	bottom: .4rem;
	width: 100%;
	font-size: 0;
	text-align: center;
	z-index: 3;
}
 
.star-box .m-box .btns .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background-color: #424242;
	border-radius: 100%;
	margin:0 .06rem;
}
.star-box .m-box .btns .swiper-pagination-bullet-active{
	background-color: #e60012;
}
.star-box .pc-box{
	display: none;
}
.foot-slide{
	height: auto;
}
.welcome .clearfixed{
	display: block;
}
/* welcome end */

.sub-banner{
	width: 100%;
	height: 100vh;
}
.ban-about{
	overflow: hidden;
}
.ban-about .m-box{
	height: 100vh;
}
.ban-about .pc-box{
	display: none;
}
.ban-about .m-box .bg{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 100%;
}
.ban-about .video-btn{
	position: absolute;
	width: .9rem;
	height: .77rem;
	left: 50%;
	top:3.4rem;
	transform:translateX(-50%);
	background-image: url(../images/m-video-btn.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.about-tit{
	padding:.35rem 0;
	position: relative;
	text-align: center;
}
.about-tit .line{
	position: absolute;
	top:50%;
	height: 1px;
	background-color: #e5e5e5;
}
.about-tit .left{
	left:0;
}

.about-tit .right{
	right:0;
}
.about-tit .txt{
	display: inline-block;
	*display: inline;
	zoom:1;
	font-size: .45rem;
	line-height: .55rem;
	color: #2f2f2f;
	padding:0 .65rem;
	background-color: #fff;
	position: relative;
	z-index: 3;
}

.about-idea-box .img-box img{
	width: 100%;
}
.about-idea-box .img-box .right{
	font-size: 0;
}
.about-idea-box .img-box .right .item{
	width: 50%;
	display: inline-block;
	*display: inline;
	zoom:1;
	vertical-align: top;
}
.about-idea-box .text-box{
	background-color: #e3f0fc;
	padding:0 .3rem .3rem;
}
.about-idea-box .text-box .text{
	padding:.4rem;
	background-color: #fff;
	margin-top: -.8rem;
	position: relative;
	z-index: 3;
	border-radius: 6px;
}
.about-idea-box .text-box .tit{
	font-size: .52rem;
	line-height: .7rem;
	text-align: center;
	padding-bottom: .3rem;
	border-bottom: 1px solid #e5e5e5;
}
.about-idea-box .text-box .tit span{
	display: none;
}
.about-idea-box .text-box .con{
	font-size: .24rem;
	line-height: .4rem;
	color: #4f4f4f;
	margin-top: .3rem;
}
.about-idea-box .pc-box{
	display: none;
}
.phi-box .m-list li{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 10.3rem;
	position: relative;
}
.phi-box .text{
	position: absolute;
	left: 50%;
	bottom: .7rem;
	width: 6.4rem;
	padding: .3rem 1rem;
	background-color: #fff;
	box-sizing: border-box;
	transform: translateX(-50%);
	text-align: center;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 0 24px rgba(161,167,192,.2);
}
.phi-box .text .tit{
	font-size: .4rem;
	line-height: .5rem;
	color: #2f2f2f;
}
.phi-box .text .line{
	width: .4rem;
	height: 2px;
	background-color: #e5e5e5;
	margin: .2rem auto 0;
}
.phi-box .text .con{
	font-size: .24rem;
	line-height: .4rem;
	margin-top: .2rem;
}
.phi-box .pc-list{
	display: none;
}
.activity-box{
	box-shadow: 0 0 80px rgba(228,228,228,.68);
	padding-bottom: .5rem;
}
.activity-box .img img{
	width: 100%;
}
.activity-box .activity{
	overflow: hidden;
	position: relative;
}
.activity-box .activity .pc-img{
	display: none;
}
.activity-box .activity .prev,
.activity-box .activity .next{
	position: absolute;
	right: 
}
.activity-box .activity-text{
	padding: .2rem .3rem;
	overflow: hidden;
}
.activity-box .activity-text .tit{
	font-size: .4rem;
	line-height: .5rem;
}
.activity-box .activity-text .tit span{
	color: #f04873;
}
.activity-box .activity-text .con{
	font-size: .24rem;
	color: #595959;
	line-height: .3rem;
	margin-top: .15rem;
}
.activity-wrap .prev,
.activity-wrap .next{
	position: absolute;
	width: .72rem;
	height: .66rem;
	bottom: .35rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: .12rem;
	z-index: 3;
	border: 2px solid #ededed;
	border-radius: 4px;
}
.activity-wrap .prev{
	background-image: url('../images/act-prev2.png');
	
	right: 1.25rem;
}
.activity-wrap .next{
	background-image: url('../images/act-next2.png');
	right: .3rem;

}
.video-box{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 130;
	display: none;
}
.video-box .mask{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .5;
	filter: alpha(opacity=50);
}
.video-box .video{
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 4.2rem;
	transform: translateY(-50%);
}
.video-box .video video{
	width: 100%;
	height: 100%;
}
.video-box .video .video-close{
	position: absolute;
	right: 0;
	width:.7rem;
	height: .7rem;
	top:-.7rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url(../images/video-close.png);
}
.news-box .item{
	margin-bottom: .3rem;
}
.news-box .item:last-child{
	margin-bottom: 0;
}
.news-box .con-box{
	display: block;
	box-shadow: 0 0 80px rgba(228,228,228,.68);
	font-size: 0;
}
.news-box .text-box{
	padding: .3rem;
	background-color: #fff;
}
.news-box .text-box .tit{
	font-size: .3rem;
	line-height: .4rem;
	color: #2f2f2f;
}
.news-box .text-box .con{
	font-size: .24rem;
	line-height: .34rem;
	color: #595959;
	margin-top: .1rem;
}
.news-box .text-box .more{
	display: inline-block;
	*display: inline;
	zoom: 1;
	font-size: .24rem;
	line-height: .34rem;
	color: #595959;
	padding-right: .3rem;
	background-repeat: no-repeat;
	background-position: right center;
	background-image: url('../images/ban-arrow.png');
	margin-top: .1rem;
}
.news-box .load-box{
	margin-top: .5rem;
}
.news-box .load-box .load-btn{
	color: #666;
}
.news-box .load-box .load-btn:before{
	background-color: #666;
}
.news-box .load-box .loading div{
	background-color: #666;
}
/* about end */
.sub-banner{
	position: relative;
}
.sub-banner .pc-img{
	height: 100%;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}
.sub-banner .m-img img{
	width: 100%;
}
.sub-banner .pc-img{
	display: none;
}
.sub-banner .text-box{
	position: absolute;
	left: 50%;
	bottom: 1.5rem;
	width: 100%;
	text-align: center;
	width: 6.2rem;
	transform: translateX(-50%);

}
.sub-banner .text-box .tit{
	font-size: .7rem;
	color: #2f2f2f;
	line-height: .78rem;
	padding-bottom: .3rem;
	border-bottom: 1px solid #dadde0;
}
.sub-banner .text-box .con{
	font-size: .28rem;
	line-height: .4rem;
	margin-top: .4rem;
}
.center-box{
	padding: .8rem 0 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}
.center-box .text-box{
	width: 6rem;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}
.center-box .text-box .tit{
	font-size: .6rem;
	line-height: .7rem;
	color: #2f2f2f;
	text-align: center;
}
.center-box .text-box .con{
	font-size: .24rem;
	line-height: .36rem;
	color: #595959;
	margin-top: .3rem;
}
.center-box .text-box .img{
	margin: .4rem 0;
	box-shadow: 0 0 54px rgba(93,110,145,.1);
	border-radius: 6px;
	overflow: hidden;
}
.center-box .text-box img{
	width: 100%;
}
.center-box .center-img{
	margin-top: .4rem;
	width: 6rem;
	margin: .4rem auto 0;
}
.center-box .center-img img{
	width: 100%;
}
.center-box .num-box{
	width: 6.9rem;
	margin: 0 auto;
	box-shadow: 0 0 54px rgba(93,110,145,.1);
	box-sizing: border-box;
	padding: .75rem .7rem .1rem;
	background-color: #fff;
	border-radius: 6px;
	font-size: 0;
	text-align: center;
}
.center-box .num-box .item{
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: 50%;
	margin-bottom: .65rem;
}
.center-box .num-box .num{
	font-size: .76rem;
	line-height: .86rem;
	color: #414141;
	position: relative;
}
.center-box .num-box .num:before{
	content: "";
	position: absolute;
	right: 0;
	width: 1px;
	height: .3rem;
	background-color: #d5d4d4;
	top: 50%;
	transform: translateY(-50%);
}
.center-box .num-box .item:nth-child(2n) .num:before{
	display: none;
}
.center-box .num-box .txt{
	font-size: .24rem;
	line-height: .4rem;
	margin-top: .1rem;
}

.origin-box{
	padding: .6rem 0 .7rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.origin-box .list{
	margin-top: .6rem;
	width: 6rem;
	margin: 0 auto;
}

.origin-box .list li{
	margin-bottom: .8rem;
	box-shadow: 0 0 54px rgba(204,158,122,.1);
}
.origin-box .list li:last-child{
	margin-bottom: 0;
}
.origin-box .list img{
	width: 100%;
}
.origin-box .list .tit{
	font-size: .3rem;
	line-height: .4rem;
	padding-bottom: .15rem;
	border-bottom: 1px solid #e5e5e5;
}
.origin-box .list .text{
	background-color: #fff;
	padding: .25rem .3rem;
}

.origin-box .list .con{
	font-size: .24rem;
	color: #595959;
	line-height: .34rem;
	margin-top: .15rem;
}
.origin-box .about-tit .txt{
	background-color: transparent;
}
.tech-box{
	background-position: center;
}
/* research end */
.ban-fun .text-box .tit{
	padding-bottom: 0;
	border: none;
}
.ban-fun .text-box{
	width: 100%;
}
.ban-fun .text-box .view{
	padding: 0;
}
.hello-box{
	background-color: #ffeff3;
	padding: .75rem 0 .6rem;
}
.hello-box .text-box{
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../images/m-hello-bg.png');
	background-size: 100% 100%;
	width: 6.9rem;
	margin: 0 auto;
	box-sizing: border-box;
	padding: .6rem .6rem 1.15rem;
}
.hello-box .text-box .tit{
	font-size: .6rem;
	line-height: .7rem;
	color: #da498e;
	text-align: center;
}
.hello-box .text-box .line{
	width: .5rem;
	height: 1px;
	background-color: #e483ad;
	margin: .25rem auto 0;
}
.hello-box .text-box .con{
	font-size: .3rem;
	line-height: .5rem;
	color: #da498e;
	text-align: center;
	margin-top: .2rem;
}
.hello-box .img{
	width: 6.9rem;
	margin-top: -1.3rem;
}
.hello-box .img img{
	width: 100%;
}
.fun-list-box{
	background-color: #ffeff3;
}
.fun-list-box .desc-box{
	width: 6.75rem;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url('../images/desc-bg.png');
	box-sizing: border-box;
	padding: .4rem .3rem;
}
.fun-list-box .desc-box .tit{
	font-size: .44rem;
	line-height: .54rem;
	color: #424141;
	text-align: center;
}
.fun-list-box .desc-box .line{
	display: block;
	width: .6rem;
	height: 1px;
	margin: .21rem auto;
	background-color: #e5e5e5;
}
.fun-list-box .desc-box{
	position: relative;
}
.fun-list-box .desc-box .con{
	font-size: .24rem;
	line-height: .3rem;
	position: relative;
	z-index: 3;
	opacity: .6;
	filter: alpha(opacity=60);
}
.fun-list-box .desc-box .icon{
	position: absolute;
	width: 1.06rem;
	
}
.fun-list-box .desc-box .icon img{
	width: 100%;
}
.fun-list-box .desc-box .icon1{
	left: -.1rem;
	top: .15rem;
}
.fun-list-box .desc-box .icon2{
	right: .3rem;
	bottom: -.05rem;
}
.fun-list-box .list{
	margin-top: .7rem;
	padding: 0 .3rem;
	background-image: url('../images/m-text-bg.jpg');
	background-repeat: repeat-y;
	background-position: top center;
	padding-bottom:1rem;
}
.fun-list-box .list.on{
	padding-bottom: 2.5rem;
}
.fun-list-box .list .row{
	margin: 0 -.22rem;
}
.fun-list-box .list .item{
	padding: 0 .22rem;
	box-sizing: border-box;
	margin-bottom: 1.5rem;
}
.fun-list-box .list .item:nth-last-child(1),
.fun-list-box .list .item:nth-last-child(2){
	margin-bottom: 0;
}
.fun-list-box .list img{
	width: 100%;
}
.fun-list-box .list .img{
	/* border-radius: .8rem; */
	/* overflow: hidden; */
}
.fun-list-box .list img{
	border-radius: .8rem;
}
.fun-list-box .list .item .con-box{
	position: relative;
	display: block;
}
.fun-list-box .list .text{
	position: absolute;
	top: 3.6rem;
	left: -.15rem;
	width: 100%;
	background-color: #fff;
	border-radius: .48rem 0 0 .48rem;
	box-shadow: 0 18px 24px rgba(161,167,192,.14);
}
.fun-list-box .list .text .tit{
	padding: .1rem 0;
	font-size: .26rem;
	color: #333333;
	text-align: center;
	border-bottom: 1px solid #f0f0f0;
}
.fun-list-box .list .text .con{
	font-size: .24rem;
	color: #000;
	line-height: .36rem;
	/* margin: .1rem 0; */
	padding:0 .15rem;
	margin: .15rem 0;
	opacity: .6;
	filter: alpha(opacity=60);
	height: 1.08rem;
	overflow: hidden;
}
.fun-list-box .list .text .yin{
	position: absolute;
	left: .45rem;
	top: -.1rem;
	width: .4rem;
}
.fun-list-box .list .text .yin img{
	display: block;
}
.fun-list-box .list .text .book{
	position: absolute;
	right: -.45rem;
	bottom: -.4rem;
	width: .97rem;
	height: .97rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url('../images/book.png');
	color: #fff;
	text-align: center;
	font-size: .24rem;
	line-height: .97rem;
}
.fun-list-box .list .load-box{
	margin-top: 2rem;
}
.focus-box{
	display: none;
}
.load-box{
	text-align: center;
	margin-top: .5rem;
}
.load-box .load{
	display: inline-block;
	*display: inline;
	zoom: 1;
}
.load-box .img{
	width:  .8rem;
	margin: 0 auto;
	display: none;
}
.load-box .load-btn{
	font-size: .3rem;
	line-height: .4rem;
	color: #ff8daa;
	display: inline-block;
	*display: inline;
	zoom: 1;
	position: relative;
	padding-bottom: .1rem;
}

.load-box .load-btn:before{
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #ff8daa;
	transform: translateX(-50%);
}


/* fun end */
.product-box{
	padding: 1.3rem 0 .5rem;
	background-color: #fffaf2;
}
.product-box .tit-box{
	text-align: center;
}
.product-box h3{
	font-size: .62rem;
	line-height: .72rem;
}
.product-box .tab-btns-box{
	position: relative;
}

.product-box .tab-btns-box .prev,
.product-box .tab-btns-box .next{
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: .2rem;
    height: .4rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 6;
}
.product-box .tab-btns-box .prev{
	background-image: url(../images/pro-prev1.png);
	    left: .2rem;
}
.product-box .tab-btns-box .next{
	background-image: url(../images/pro-next1.png);
	    right: .2rem;
}
/*.product-box .tab-btns-box .swiper-button-disabled{
	display: none;
}*/
.product-box .tab-btns-box{
    overflow: hidden;
    margin-top: .3rem;
    border-top: 1px solid #e5e1d9;
    border-bottom: 1px solid #e5e1d9;
}
.product-box .tab-btns{
	overflow: hidden;
}
.product-box .tab-btns .swiper-slide{
    width: auto;
    margin: 0 .6rem;
    font-size: .3rem;
    line-height: .4rem;
    color: #999999;
    padding: .2rem 0 .2rem .6rem;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: .4rem;
	-webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.product-box .tab-btns .swiper-slide.cur {
    color: #e60012;
}
.product-box .list{
	margin-top: .6rem;
	overflow: hidden;
}
.product-box .list .row{
	margin: 0 -.1rem;
}
.product-box .list .item{
	box-sizing: border-box;
	padding: 0 .1rem;
	margin-bottom: .5rem;
}
.product-box .list img{
	width: 100%;
}
.product-box .list .text-box{
	margin: .15rem 0 0;
	text-align: center;
}
.product-box .list .tit{
	font-size: .26rem;
	line-height: .36rem;
	color: #333;
}
.product-box .list .ml{
	font-size: .24rem;
	color: #171717;
	opacity: .7;
	filter: alpha(opacity=70);
}
.product-box .list .desc{
	font-size: .24rem;
	color: #1b1b1b;
	opacity: .74;
	filter: alpha(opacity=74);
	line-height: .3rem;
	width: 2.7rem;
	margin: .1rem auto 0;
}
.product-box .list .buy{
	display: block;
	width: 2.6rem;
	height: .6rem;
	border-radius: 3px;
	border: 1px solid #a6a4a1;
	margin: .15rem auto 0;
	font-size: .24rem;
	color: #434343;
	line-height: .6rem;
}
/* product end */
.ban-star{
	/* height: 100vh; */
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	position: relative;
	padding-bottom: .5rem;
}
.pns-bg1{
	background-image: url('../images/m-pns-bg1.jpg');
}
.ban-star img{
	width: 100%;
}
.ban-star .pc-img{
	display: none;
}
.ban-star .text-box{
	/* position: absolute; */
	left: 0;
	bottom: 2.45rem;
	width: 100%;
	text-align: center;
	color: #2f2f2f;
}
.ban-star .text-box .tit{
	font-size: .82rem;
	line-height: 1rem;
}
.ban-star .text-box .desc{
	font-size: .4rem;
	line-height: .5rem;
	margin-top: .1rem;
}
.ban-star .text-box .more{
	display: block;
	width: 3.35rem;
	height: .7rem;
	background-color: #ffffff;
	font-size: 0;
	margin: .35rem auto 0;
	border-radius: 6px;
	line-height: .7rem;
}
.ban-star .text-box .more span{
	display: inline-block;
	*display: inline;
	zoom: 1;
	font-size: .24rem;
	color: #2e2e2e;
	padding-right: .16rem;
	background-repeat: no-repeat;
	background-position: right center;
	background-image: url('../images/ban-arrow.png');
	background-size: .08rem;
}
.ban-star .img-box{
	/* position: absolute; */
	bottom: .45rem;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 0;
	margin-top: .8rem;
}
.ban-star .img-box .item{
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: 2.05rem;
	margin: 0 .12rem;
	box-sizing: border-box;
	border-radius: 4px;
	position: relative;
	vertical-align: top;
}
.ban-star .img-box .item img{
	width: 100%;
}
.pns-bg1 .img-box .item:nth-child(1){
	border: 2px solid #bddce6;
}
.ban-star .img-box .item.cur{
	top: -.25rem;

	box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.star-wrap{
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	padding: .4rem 0;
}
.pns-bg2{
	background-image: url('../images/m-pns-bg2.jpg');
}
.star-wrap h3{
	font-size: .66rem;
	line-height: .8rem;
	color: #2f2f2f;
	text-align: center;
}
.star-wrap .star-img{
	margin-top: -.5rem;
}
.star-wrap .star-img img{
	width: 100%;
}
.star-wrap .tit-box{
	text-align: center;
}
.star-wrap .m-tit{
	display: inline-block;
	*display: inline;
	zoom: 1;
}
.star-wrap .m-tit .tit{
	font-size: .6rem;
	line-height: .7rem;
}
.star-wrap .m-tit .sub-tit{
	font-size: .62rem;
	line-height: .72rem;
	padding: .2rem .2rem 0;
	border-top: 2px solid #2f2f2f;
	margin-top: .2rem;
}
.star-wrap .pc-tit{
	display: none;
}

.star-wrap .list{
	width: 5rem;
	margin: .65rem auto 0;
}
.star-wrap .list img{
	width: 100%;
}
.star-wrap .list li{
	margin-bottom: .6rem;
	position: relative;
}
.star-wrap .list li .text{
	position: absolute;
	left: 0;
	top: .45rem;
	width: 100%;
	text-align: center;
	line-height: .5rem;
}
.star-wrap .list li .con{
	font-size: .24rem;
	line-height: .4rem;
	margin-top: .3rem;
}
.head-box{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url('../images/m-head-bg.jpg');
	padding-top: .65rem;
}
.head-box .text{
	text-align: center;
}
.head-box .text .tit{
	font-size: .52rem;
	line-height: .6rem;
	color: #303030;
}
.head-box .text .con{
	font-size: .24rem;
	line-height: .4rem;
	color: #303030;
	margin-top: .2rem;
}
.head-box .img{
	width: 4.4rem;
	margin: 0 auto;
	position: relative;
}
.head-box .img img{
	width: 100%;
}
.head-box .box{
	position: absolute;
	padding: .25rem .3rem;
	background-color: #fff;
	border-radius: 4px;
}
.head-box .box .con{
	font-size: .24rem;
	line-height: .3rem;
	color: #595959;
	padding-top: .15rem;
	margin-top: .15rem;
	border-top: 1px solid #e8e8e8;
	display: none;
}
.head-box .box .tit{
	color: #1d1d1d;
	padding-left: .5rem;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: .4rem;
	font-size: .24rem;
	line-height: .4rem;
}
.head-box .box .tit{
	
	
}
.head-box .box:before{
	content: "";
	position: absolute;
	width: 11px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.head-box .box1{
	top: 1.3rem;
	right: .9rem;
}

.head-box .box2{
	bottom: 2.3rem;
	right: -1rem;
	width: 2.2rem;
}
.head-box .box3{
	bottom: 1rem;
	right: -1rem;
	width: 2.2rem;
}

.head-box .box2:before,
.head-box .box3:before{
	left: -11px;
	bottom: 15px;
}
.head-box .box1:before{
	background-image: url('../images/head-arrow1.png');
	right: -11px;
	bottom: .3rem;
}

.head-box .box2:before{
	background-image: url('../images/head-arrow2.png')
}
.head-box .box3:before{
	background-image: url('../images/head-arrow3.png')
}
.head-box .pc-img{
	display: none;
}
/* pns end */
.sdb-bg1{
	background-image: url('../images/m-sdb-bg1.jpg');
}
.sdb-bg1 .img-box .item:nth-child(1){
	border: none;
}
.sdb-bg2{
	background-image: url('../images/m-sdb-bg2.jpg');
	padding-bottom: 1.45rem;
}
.sdb-bg2 .star-img{
	width: 3.1rem;
	margin: .35rem auto 0;
}

.pns-bg2 .top-box{
	width: 6rem;
	margin: 0 auto;
}
.pns-bg2 .top-box .con{
	font-size: .24rem;
	line-height: .36rem;
	margin-top: .15rem;
	color: #2f2c28;
}
.pns-bg2 .right-box{
	display: none;
}
.pns-bg2 .list-box{
	margin-top: .6rem;
}
.pns-bg2 .m-tit .sub-tit{
	font-size: .53rem;
	padding: .2rem 0 0;
}
.star-wrap .list .pc-img{
	display: none;
}
.pns-bg2 .list .tit{
	font-size: .4rem;
	line-height: .5rem;
}
.pns-bg2 .list li{
	margin-bottom: .8rem;
}
.pns-bg2 .list li:last-child{
	margin-bottom: 0;
}
.pns-bg2 .list li .con{
	font-size: .24rem;
	line-height: .3rem;
	margin-top: .3rem;
}
/* sdb end */
.ocean-bg1{
	background-image: url('../images/m-ocean-bg1.jpg');
}
.ocean-bg2{
	background-image: url('../images/m-ocean-bg2.jpg');
}
.ocean-bg1 .text-box .tit,
.ocean-bg1 .text-box .desc{
	color: #fff;
}
.ocean-bg1 .sun{
	display: none;
}
.ocean-bg2 h3{
	color: #fff;
}
.ocean-bg2 .m-tit .tit{
	color: #fff;
}
.ocean-bg2 .m-tit .sub-tit{
	font-size: .48rem;
	color: #fff;
	border-color: #fff;
}
.ocean-bg2 .top-box .con{
	color: #fff;
	text-align: center;
}
.ocean-bg2 .list .txt{
	font-size: .24rem;
	color: #fff;
	line-height: .4rem;
	margin-top: .35rem;
}
/* ocean end */
.store-page .clearfixed{
	display: block;
}
.store-box{
	padding: .8rem 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url('../images/store-bg.jpg')
}
.store-box .tit-box{
	text-align: center;
}
.store-box .tit-box .tit{
	font-size: .45rem;
	line-height: .55rem;
}
.store-box .tit-box .line{
	width: .5rem;
	height: 2px;
	background-color: #d1dade;
	margin: .3rem auto 0;
}
.store-view{
	padding: 0 .3rem;
}
.store-box .store{
	margin-top: .3rem;
	
}
.store-box .store .item-box{
	font-size: 0;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 24px rgba(211,211,211,.28);
	overflow: hidden;
	position: relative;
}
.store-box .store .item{
	transition: all 1s cubic-bezier(0.85, -0.12, 0, 1);	
}
.store-box .store .item:nth-child(2){
	position: absolute;
	left: 100%;
	top: 0;
	width: 100%;
	height: 100%;
}
.store-box .store .item.on{
	transform: translateX(-100%);
}
.store-box .store .top-con{
	padding: .4rem;
}
.store-box .store .position{
	font-size: .26rem;
	color: #3d3d3d;
	padding-left: .4rem;
	line-height: .36rem;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url('../images/position.png');
	background-size: .22rem;
} 
.store-box .store .change{
	font-size: .26rem;
	line-height: .36rem;
	color: #3d3d3d;
}
.store-box .store .store-search{
	margin-top: .3rem;
	padding: .15rem .3rem;
	border-radius: 3px;
	border: 1px solid #bfbfbf;
}
.store-box .store .store-search input[type=text]{
	float: left;
	width: 80%;
	border: none;
	padding: 0;
	height: .4rem;
	line-height: .4rem;
	font-size: .26rem;
}
.store-box .store .store-search input[type=submit]{
	float: right;
	width: .4rem;
	height: .4rem;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../images/store-search.png');
	background-color: transparent;
	border: none;
}
.store-box .store .store-search .divide{
	float: right;
	width: 1px;
	height: .3rem;
	margin-right: .2rem;
	margin-top: .05rem;
	background-color: #bfbfbf;
}
.store-box .store .top-con .tips{
	font-size: .26rem;
	color: #6e6e6e;
	margin-top: .15rem;
}
.store-box .store .list-box .tit{
	padding: 0 .4rem;
	color: #3d3d3d;
	font-size: 0;
	border-bottom: 1px solid #e5e5e5;
}
.store-box .store .list-box .tit span{
	display: inline-block;
	*display: inline;
	zoom: 1;
	font-size: .26rem;
	line-height: .36rem;
	padding-bottom: .1rem;
	border-bottom: 2px solid #fa668c;
}
.store-box .store .list-box li{
	padding: .2rem .4rem;
	border-bottom: 1px solid #e5e5e5;
}
.store-box .store .list-box .tips{
	padding: .2rem .4rem;
	border-bottom: none;
	font-size: .24rem;
	line-height: .4rem;
	color: #6e6e6e;
}
.store-box .store .list-box .store-tit{
	font-size: .32rem;
	line-height: .42rem;
	color: #3d3d3d;
}
.store-box .store .list-box .con-box{
	color: #888888;
	font-size: .24rem;
	line-height: .4rem;
	margin-top: .1rem;
}

.store-box .store .list-box .list{
	height: 5.1rem;
	overflow: hidden;
}

.store-box .map{
	height: 4rem;
	margin-top: .3rem;
}
.store-box .list .mCSB_scrollTools .mCSB_draggerRail{
	width: 16px;
	background: #f9f9f9;
	box-sizing: border-box;
}
.store-box .list .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	background: #a6a6a6;
	width: 5px;
	border-radius: 3px;
}

.store-box .store .back{
	font-size: .24rem;
	color: #333;
	padding-left: .3rem;
	background-repeat: no-repeat;
	position: relative;
	background-image: url('../images/back-arrow.png');
	background-size: 6px;
	background-position: left center;
}
.store-box .store .select-tit{
	font-size: .36rem;
	line-height: .46rem;
	color: #333;
	margin-top: .3rem;
}
.store-box .store .city-list .tit{
	padding: 0 .4rem;
	border-bottom: 1px solid #e5e5e5;
}
.store-box .store .city-list .tit span{
	display: inline-block;
	*display: inline;
	zoom: 1;
	padding-bottom: .05rem;
	border-bottom: 2px solid #fa668c;
	font-size: .26rem;
	line-height: .36rem;
}
.store-box .store .city-list .list{
	height: 6rem;
}
.store-box .store .city-list .list a{
	display: block;
	height: .8rem;
	line-height: .8rem;
	border-bottom: 1px solid #e5e5e5;
	font-size: .26rem;
	padding: 0 .4rem;
	color: #3d3d3d;
	position: relative;
}
.store-box .store .city-list .list a:before{
	content: "";
	position: absolute;
	right: .4rem;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 13px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url('../images/city-arrow.png');
}
.store-box .store .city-list .list a:last-child{
	border-bottom: none;
}
.store-box .list .mCSB_inside > .mCSB_container{
	margin-right: 10px;
}
.map-box .map{
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 24px rgba(211,211,211,.28);
}
.store .icon-box{
	border-radius:10px 10px;
	background-color: #fff;
	
	box-shadow: 0 0 24px rgba(211,211,211,.28);
}
.store .icon-box .icon-item{
	padding: .3rem;
	border-bottom: 1px solid #ebebeb;
}
.store .icon-box .icon-item:last-child{
	border-bottom: none;
}
.store .icon-box .icon-item .text{
	display: inline-block;
	*display: inline;
	zoom: 1;
	padding-left: .8rem;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: .6rem;
}
.store .icon-box .icon-item .tit{
	font-size: .32rem;
	line-height: .42rem;
	color: #3d3d3d;
}
.store .icon-box .icon-item .address{
	font-size: .26rem;
	color: #7c7c7c;
	line-height: .36rem;
	margin-top: .2rem;
}

.store .icon-box .icon-item .tel{
	font-size: .35rem;
	line-height: .45rem;
	margin-top: .1rem;
}
.store .icon-box .icon-item .time{
	font-size: .24rem;
	color: #888888;
	line-height: .34rem;
	margin-top: .1rem;
}
/* store end */
.bread {
	font-size:0;
	margin-bottom:.2rem;
}
.bread a,
.bread span{
	display:inline-block;
	*display:inline;
	zoom:1;
	font-size:.28rem;
	color:#333;
}
.bread span{
	margin:0 .2rem;
	font-family:"Simsun";
}
.newsinfo-page .clearfixed{
	display: block;
}
.newsdtl{
	padding:30px 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url('../images/about-bg.jpg')
}
.newsdtl .infotit{
	text-align: center;
}
.newsdtl .infotit h2{
	font-size: 18px;
}
.newsdtl .infotit .time{
	font-size: 14px;
	line-height: 24px;
}
.newsdtl .infotx{
	color:#666;
	margin-top: .3rem;
}
.newsdtl .infotx .video{
	margin-top:20px;
}
.newsdtl .infotx video,
.newsdtl .infotx iframe{
	height: 200px;
	width: 100%;
}
.newsdtl .infotx img{
	max-width: 100%;
}
.newsdtl .vtl{
	margin:15px 0 0;
}
.newsdtl video{
	width: 100%;
	height: 200px;
	background:#000;
}
.newsdtl .infotx img{
	max-width: 100%;
}
.infoctrl{
	padding-top: 15px;
	border-top:1px solid #ccc;
	margin-top: 15px;
}
.infoctrl .pagectrl{
	
	line-height: 20px;
}
.infoctrl .pagectrl a{
	display: block;
	font-size: 14px;
	color:#666;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow:ellipsis;
}
.infoctrl .pageback{
	display: block;
	width: 120px;
	height:40px;
	background: #e60012;
	border-radius: 20px;
	margin:15px auto 0;
	text-align: center;
	font-size: 14px;
	color:#fff;
	line-height: 40px;
	border:1px solid #e60012;
}
/**********newsdtl end************/
.loading{
	width: .8rem;
	height: .8rem;
	margin:0 auto;
	display: none;
}
@-webkit-keyframes ball-spin-clockwise {
    0%,100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    20% {
        opacity: 1
    }

    80% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@-moz-keyframes ball-spin-clockwise {
    0%,100% {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1)
    }

    20% {
        opacity: 1
    }

    80% {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0)
    }
}

@-o-keyframes ball-spin-clockwise {
    0%,100% {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1)
    }

    20% {
        opacity: 1
    }

    80% {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0)
    }
}

@keyframes ball-spin-clockwise {
    0%,100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    20% {
        opacity: 1
    }

    80% {
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0)
    }
}
.la-ball-spin-clockwise{
	position: relative;
}
.la-ball-spin-clockwise>div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -4px;
    border-radius: 100%;
    background-color: #ff8daa;
    -webkit-animation: ball-spin-clockwise 1s infinite ease-in-out;
    -moz-animation: ball-spin-clockwise 1s infinite ease-in-out;
    -o-animation: ball-spin-clockwise 1s infinite ease-in-out;
    animation: ball-spin-clockwise 1s infinite ease-in-out
}

.la-ball-spin-clockwise>div:nth-child(1) {
    top: 5%;
    left: 50%;
    -webkit-animation-delay: -.875s;
    -moz-animation-delay: -.875s;
    -o-animation-delay: -.875s;
    animation-delay: -.875s
}

.la-ball-spin-clockwise>div:nth-child(2) {
    top: 18.1801948466%;
    left: 81.8198051534%;
    -webkit-animation-delay: -.75s;
    -moz-animation-delay: -.75s;
    -o-animation-delay: -.75s;
    animation-delay: -.75s
}

.la-ball-spin-clockwise>div:nth-child(3) {
    top: 50%;
    left: 95%;
    -webkit-animation-delay: -.625s;
    -moz-animation-delay: -.625s;
    -o-animation-delay: -.625s;
    animation-delay: -.625s
}

.la-ball-spin-clockwise>div:nth-child(4) {
    top: 81.8198051534%;
    left: 81.8198051534%;
    -webkit-animation-delay: -.5s;
    -moz-animation-delay: -.5s;
    -o-animation-delay: -.5s;
    animation-delay: -.5s
}

.la-ball-spin-clockwise>div:nth-child(5) {
    top: 94.9999999966%;
    left: 50.0000000005%;
    -webkit-animation-delay: -.375s;
    -moz-animation-delay: -.375s;
    -o-animation-delay: -.375s;
    animation-delay: -.375s
}

.la-ball-spin-clockwise>div:nth-child(6) {
    top: 81.8198046966%;
    left: 18.1801949248%;
    -webkit-animation-delay: -.25s;
    -moz-animation-delay: -.25s;
    -o-animation-delay: -.25s;
    animation-delay: -.25s
}

.la-ball-spin-clockwise>div:nth-child(7) {
    top: 49.9999750815%;
    left: 5.0000051215%;
    -webkit-animation-delay: -.125s;
    -moz-animation-delay: -.125s;
    -o-animation-delay: -.125s;
    animation-delay: -.125s
}

.la-ball-spin-clockwise>div:nth-child(8) {
    top: 18.179464974%;
    left: 18.1803700518%;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s
}

@media (min-width: 768px){
	.view{
		padding: 0 5%;
	}
	.header-view{
		padding: 0 5%;
	}
	header{
		background-image: url('../images/pad-nav-bg.png');
		height: 120px;
		background-position: left top;
		background-size: 100% 120px;
	}
	header .logo{
		width: 75px;
		margin-top: 5px;
	}
	header .right{
		margin-top: 45px;
	}
	header .right a{
		margin-left: 30px;
	}
	header .right .navbtn{
		width: 36px;
		height: 28px;
	}
	header .right .search-btn{
		width: 28px;
		height: 28px;
	}
	.clearfixed{
		height: 100px;
	}
	.m-nav{
		top: 110px;
		height: calc(100% - 110px);
	}
	.m-nav li .tit{
		font-size: 26px;
		line-height: 36px;
		padding: 30px 5%;
	}
	.m-nav li .tit:before{
		width: 30px;
		height: 30px;
		right: 5%;
	}
	.m-nav li .navson{
		padding: 15px 0;
	}
	.m-nav li .navson a{
		font-size: 16px;
		line-height: 26px;
		padding: 10px 5%;
	}
	
	.search-dialog{
		width: 500px;
		padding: 15px 25px;
	}
	.search-dialog input[type=text]{
		font-size: 14px;
		line-height: 28px;
		height: 28px;
		width: 90%;
	}
	.search-dialog input[type=submit]{
		width: 28px;
		height: 28px;
	}

	/* header end */
	.foot-view{
		padding: 0 5%;
	}
	footer .top-box{
		padding: 30px 0;
		font-size: 0;
	}
	.f-nav{
		font-size: 0;
		/* display: inline-block;
		*display: inline;
		zoom: 1; */
		vertical-align: top;
		width: 80%;
		margin: 0 auto;
	}
	.f-nav li{
		display: inline-block;
		*display: inline;
		zoom: 1;
		vertical-align: top;s
		text-align: left;
		width: 33.33%;
	}
	.f-nav .m-item{
		display: none;
	}
	.f-nav li .tit {
	    font-size: 18px;
	    line-height: 28px;
	    padding: 0;
	    border: none;
	}
	.f-nav li .sub{
	    padding:  0;
	    display: block!important;
	    border: none;
	    margin-top: 10px;
	}
	footer .f-nav .tit:before{
		display: none;
	}
	footer .f-nav .sub a{
	    font-size: 14px;
	    line-height: 24px;
	    padding: 0;
	    margin-bottom: 6px;
	}
	footer .f-nav .sub2 a:nth-child(1){
		display: none;
	}

	footer .f-nav .sub a:last-child{
		margin-bottom: 0;
	}
	footer .right-box{
		margin: 20px auto 0;
		/* display: inline-block;
		*display: inline;
		zoom: 1; */
		width: 80%;
	}
	footer .qrcode-box{
		display: inline-block;
		*display: inline;
		zoom: 1;
		margin: 0;
		text-align: center;
		margin-right: 40px;
		vertical-align: top;
	}
	footer .qrcode-box .item{
		width: 80px;
		margin: 0 30px 0 0;
	}
	footer .qrcode-box .item:last-child{
		margin-right: 0;
	}
	footer .qrcode-box .item .txt{
		margin-top: 10px;
	}
	footer .qrcode-box .txt span{
		font-size: 14px;
		line-height: 20px;
		padding-left: 30px;
	}
	footer .right-box .right{
		vertical-align: top;
		display: inline-block;
		*display: inline;
		zoom: 1;
	}
	footer .icon-box{
		margin: 0;
		text-align: left;
	}
	footer .icon-box .item{
		/* margin: 0 20px 0 0; */
		text-align: center;
	}
	footer .icon-box .txt{
		font-size: 14px;
		line-height: 24px;
		margin-top: 10px;
	}
	footer .link-box{
		margin-top: 10px;
		text-align: left;
	}
	footer .link-box a{
		font-size: 12px;
		line-height: 20px;
		margin: 0 20px 0 0;
	}
	footer .link-box a:last-child{
		margin-right: 0;
	}
	footer .link-box .m-item{
		display: inline-block;
		*display: inline;
		zoom: 1;
	}
	footer .copy-box{
		padding: 20px 0;
	}
	footer .copy-box .copy{
		float: left;
		font-size:12px;
		line-height: 20px; 
	}
	footer .copy-box .build,
	footer .copy-box .build a{
		font-size: 12px;
		line-height: 20px;
	}

	footer .copy-box .build{
		float: right;
	}
	/* footer end */
	.index-wrap{
		position: fixed;
		width: 100%;
	}
	.index-wrap>.swiper-wrapper>.swiper-slide{
		overflow: hidden;
	}
	.index-wrap{
		height: calc(100% - 100px);
		top: 100px;
	}
	.banner .text-box .txt{
		font-size: 16px;
		line-height: 26px;
	}
	.banner .text-box .desc{
		font-size: 40px;
		line-height: 50px;
		margin-top: 10px;
	}
	.banner .text-box .more{
		width: 250px;
		height: 50px;
		border-radius: 6px;
		margin-top: 20px;
	}
	.banner .text-box .more span{
		line-height: 50px;
		font-size: 14px;
		padding-right: 15px;
	}
	.banner .text-box .more span:before{
		width: 8px;
		height: 15px;
	}
	.banner .btns{
		bottom: 3%;
	}
	.banner .btns .swiper-pagination-bullet{
		margin: 0 6px;
	}
	.idea-box .m-box .tab-box{
		position: absolute;
		left: 0;
		width: 100%;
		height: 33.33%;
	}
	.idea-box .m-box .tab-box1{
		top: 0;
	}
	.idea-box .m-box .tab-box2{
		bottom: 0;
	}
	.idea-box .m-box .text-box{
		position: absolute;
		top: 33.33%;
		left: 0;
		width: 100%;
		height: 33.33%;
		box-sizing: border-box;
		padding: .4rem 0;
	}
	.idea-box .m-box .text{
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		width: 440px;
		margin: 0 auto;
	}
	.index-tit{
		font-size: 30px;
		line-height: 40px;
	}
	.pub-con{
		font-size: 15px;
		line-height: 25px;
	}
	.idea-box .m-box .tab-box{
		position: absolute;
		left: 0;
		width: 100%;
		height: 33.33%;
	}
	.idea-box .m-box .tab-box1{
		top: 0;
	}
	.idea-box .m-box .tab-box2{
		bottom: 0;
	}
	.idea-box .index-tit{
		padding-bottom: 15px;
	}
	.idea-box .pub-con{
		margin-top: 15px;
	}
	.index-more{
		margin-top: 5px;
	}
	.index-more a{
		font-size: 15px;
		padding-right: 20px;
		background-size: 8px;
		line-height: 24px;
	}
	.index-more a:before{
		width: 8px;
		height: 15px;
	}
	.coo-box{
		height: 100%;
	}

	.coo-box .text-box .text{
		width: 300px;
	}
	.coo-box .text-box .text .tit{
		font-size: 30px;
		line-height: 40px;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.coo-box .logo-box .img-box .item{
		width: 110px;
		margin: 0 15px;
	}
	.coo-box .text-box{
		top: 15%;
	}
	.coo-box .text-box .text{
		width: 450px;
	}
	.coo-box .text-box .text .tit{
		text-align: center;
	}
	.coo-box .logo-box .img-box{
		padding: 20px 0;
	}
	.coo-box .index-more{
		padding: 20px 0;
	}
	.coo-box .logo-box{
		margin-top: 15px;
	}
	.star-box .m-box .img{
		width: 100%;
		height: 100%;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
	.star-box .m-box .img img{
		display: none;
	}
	.fun-box .text-box{
		padding-top: 10vh;
	}
	.fun-box .text-box .tit{
		font-size: 28px;
		line-height: 40px;
		padding-bottom: 15px;
	}
	.fun-box .text-box .pub-con{
		font-size: 14px;
		line-height: 24px;
		margin-top: 15px;
	}
	.fun-box .text-box .fun-more{
		width: 200px;
	    height: 50px;
	    border-radius: 6px;
	    margin-top: 20px;
	    line-height: 50px;
	}
	.fun-box .text-box .fun-more span{
		font-size: 14px;
		background-size: auto;
		padding-right: 15px;
	}
	.fun-box .text-box .fun-more span:before{
		width: 8px;
		height: 15px;
	}
	.fun-box .m-box{
		margin-top: 80px;
		padding-bottom: 50px;
	}
	.fun-box .m-box .swiper-slide{
		width: 25%;
		margin:0 4%;
	}
	.fun-box .m-box .prev,
	.fun-box .m-box .next{
		display: none;
	}
	.fun-box .text{
		width: 95%
	}
	.fun-box .yin{
		width: 	30px;
	}
	.fun-box .text .tit{
		font-size: 15px;
		line-height: 25px;
		padding: 10px 0;
	}
	.fun-box .text .pub-con{
		margin: 10px 0;
		line-height: 20px;
		padding: 0 30px;
	}
	.i-product-box{
		padding: 5% 0;
		height: 100%;
	}
	.i-product-box h3{
		font-size: 30px;
		line-height: 40px;
	}
	.i-product-box .tab-btns{
		border-top: none;
		margin-top: 10px;
	}
	.i-product-box .tab-btns .swiper-wrapper{
		justify-content: center;
		display:-ms-flexbox;
		-ms-flex-pack:center;

	}
	.i-product-box .tab-btns .swiper-slide{
		padding: 15px 0 15px 30px;
		background-size: 23px;
		font-size: 14px;
		margin: 0 20px;
		line-height: 24px;
	}
	.i-product-box .tab-btns-box .mask{
		display: none;
	}
	.i-product-box .tab-btns-box .prev,
	.i-product-box .tab-btns-box .next{
		width: 10px;
		height: 20px;
	}
	.i-product-box .tab-btns-box .prev{
		left: -20px;
	}
	.i-product-box .tab-btns-box .next{
		right: -20px;
	}
	.product-view{
		padding: 0 5%;
	}
	.i-product-box .product-tab{
		margin-top: 30px;
	}
	.i-product-box .i-product .swiper-slide{
		padding: 0 60px;
		margin-bottom: 20px;
	}
	.i-product-box .i-product .swiper-slide .txt{
		font-size: 14px;
		line-height: 24px;
		margin-top: 20px;
	}
	.i-product-box .i-product .btns{
		margin-top: 30px;
	}
	.product-tab .prev,
	.product-tab .next{
		width: 28px;
		height: 56px;
		transform: translateY(calc(-50% - 40px));
	}
	.product-tab .prev{
		left: 0;
	}
	.product-tab .next{
		right: 0;
	}
	.star-box{
		height: 100%;
	}
	.star-box .text-box{
		top: 15%;
	}
	.star-box .text-box .txt{
		font-size: 16px;
		line-height: 26px;
	}
	.star-box .text-box .tit{
		font-size: 30px;
		line-height: 40px;
		margin: 10px 0;
	}
	.star-box .text-box .more{
		width: 200px;
		height: 50px;
		line-height: 50px;
		margin-top: 20px;
	}
	.star-box .text-box .more span{
		font-size: 14px;
	    background-size: auto;
	    padding-right: 15px;
	}
	.star-box .text-box .more span:before{
		width: 8px;
		height: 15px;
	}

	/* welcome end */
	.ban-about .m-box{
		display: none;
	}
	.ban-about .pc-box{
		display: block;
		height: 100%;
		position: relative;
	}
	.ban-about .pc-box .bg{
		height: 100%;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
	.ban-about .pc-box .text-box{
		position: absolute;
		left:0;
		width: 100%;
		top:50%;
		transform:translateY(-50%);
	}
	.ban-about .pc-box .text{
		text-align: center;
	}
	.ban-about .pc-box .text .tit{
		font-size: 30px;
		line-height: 40px;
		color:#212327;
	}
	.ban-about .pc-box .text .con{
		font-size: 16px;
		line-height: 26px;
		color: #212327;
		margin-top: 20px;
	}
	.ban-about .pc-box .video-wrap{
		margin:50px auto 0;
		position: relative;
	}
	.ban-about .pc-box .video-wrap img{
		width: 100%;
	}
	.ban-about .pc-box .person{
		position: absolute;
	    right: -10vw;
	    bottom: 10vh;
	    width: 40vw;
	}
	.ban-about .pc-box .person img{
		width: 100%;
	}
	.ban-about .pc-box .water{
		position: absolute;
		left:0;
		bottom:0;
		width: 100%;
		height: 39vh;
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}
	.ban-about .pc-box .video-btn{
		position: absolute;
		left:50%;
		top:50%;
		width: 52px;
		height: 45px;
		transform:translate(-50%,-50%);
		background-image: url(../images/video-btn.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
	.about-box{
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		background-image: url(../images/about-bg.jpg);
	}
	.about-view{
		padding:0 5%;
	}
	.about-tit{
		padding:0;
	}
	.about-tit .txt{
		font-size: 25px;
		line-height: 35px;
		padding:0 30px;
		background-color: transparent;
	}
	.about-box .about-idea-box{
		padding:50px 0 0;
	}
	.about-idea-box .m-box{
		display: none;
	}
	.about-idea-box .pc-box{
		display: block;
		position: relative;
		font-size: 0;
	}
	.about-idea-box .pc-box .left{
		width: 60%;
		float: left;
	}

	.about-idea-box .pc-box .right{
		float: right;
		width: 40%;
	}
	.about-idea-box .pc-box .right .item{
		position: absolute;
		right: 0;
		width: 40%;
		height: 50%;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	.about-idea-box .pc-box .right .item:nth-child(1){
		top:0;
	}
	.about-idea-box .pc-box .right .item:nth-child(2){
		bottom:0;
	}
	.about-idea-box .img-box{
		margin-top: 30px;
	}
	.about-idea-box .text-box{
		background-color: transparent;
		padding:0;
		position: relative;
	}
	.about-idea-box .text-box .text{
		width: 80%;
		margin:0 auto 0;
		padding:30px;
		position: relative;
		top:-60px;
		background-color: #fffefd;
		box-shadow: 0 4px 50px rgba(93,110,145,.24);
	}
	.about-idea-box .text-box .tit{
		font-size: 30px;
		line-height: 40px;
		text-align: left;
		padding:0;
		border:none;
		text-align: center;
	}
	.about-idea-box .text-box .tit br{
		display: none;
	}
	.about-idea-box .text-box .tit span{
		display: inline;
	}
	.about-idea-box .text-box .con{
		font-size: 14px;
		line-height: 24px;
		text-align: center;
		margin-top: 10px;
	}
	.phi-box{
		position: relative;
		z-index: 3;
	}
	.phi-box .list-box{
		margin-top: 30px;
	}
	.phi-box .pc-list{
		display: block;
	}
	.phi-box .m-list{
		display: none;
	}
	.phi-box .pc-list .row{
		margin: 0 -10px;
	}
	.phi-box .pc-list .item{
		box-sizing: border-box;
		padding: 0 10px;
	}
	.phi-box .pc-list .con-box{
		position: relative;
	}
	.phi-box .pc-list img{
		width: 100%;
	}
	.phi-box .text{
		width: 90%;
		padding: 10px;
		bottom: -20%;
		box-sizing: border-box;
	}
	.phi-box .text .tit{
		font-size: 16px;
		line-height: 26px;
	}
	.phi-box .text .line{
		margin-top: 20px;
		height: 2px;
		width: 30px;
		margin-top: 10px;
	}
	.phi-box .text .con{
		margin-top: 10px;
		font-size: 12px;
		line-height: 20px;
	}
	.activity-box{
		padding: 100px 0 50px;
		box-shadow: none;
	}
	.activity-wrap{
		margin-top: 30px;
	}
	.activity-box .activity-text{
		padding: 30px;
		background-color: #fff;
		box-shadow: 0 0 80px rgba(228,228,228,.68);
	}
	.activity-box .activity-text .tit{
		font-size: 24px;
		line-height: 30px;
		width: 74%;
	}
	.activity-box .activity-text .con{
		font-size: 14px;
		line-height: 24px;
		width: 74%;
		margin-top: 10px;
	}

	.activity-box .activity .m-img{
		display: none;
	}
	.activity-box .activity .pc-img{
		display: block;
	}
	.activity-wrap .activity .prev,
	.activity-wrap .activity .next{
		display: none;
	}
	.activity-wrap .activity-text{
		position: relative;
	}
	.activity-wrap .activity-text .prev,
	.activity-wrap .activity-text .next{
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 3;
		width: 40px;
		height: 36px;
		background-size: 6px;
		border: 1px solid #ededed;
		border-radius: 4px;
		background-position: center;
		background-repeat: no-repeat;
	}

	.activity-wrap .activity-text .prev{
		right: 80px;
		background-image: url('../images/act-prev.png');
	}

	.activity-wrap .activity-text .next{
		
		right: 30px;
		background-image: url('../images/act-next.png');
	}

	.video-box .video{
		width: 600px;
		height: 400px;
		top:50%;
		left:50%;
		transform:translate(-50%,-50%);
		background-color: #000;
	}
	.video-box .video .video-close{
		width: 60px;
		height: 60px;
		top:0px;
		right: -60px;
	}
	.news-box{
		margin-top: 30px;
	}
	.activity-box{
		background-color: transparent;
	}
	.news-box .row{
		margin: 0 -10px;
	}
	.news-box .item{
		box-sizing: border-box;
		padding: 0 10px;
		margin-bottom: 20px;
	}
	.news-box .text-box{
		padding: 15px;
	}
	.news-box .text-box .tit{
		font-size: 16px;
		line-height: 26px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.news-box .text-box .con{
		font-size: 12px;
		line-height: 20px;
		margin-top: 5px;
		height: 40px;
		overflow: hidden;
	}
	.news-box .text-box .more{
		font-size: 	12px;
		padding-right: 15px;
		background-size: auto;
		margin-top: 5px;
		line-height: 20px;
	}
	.news-box .load-box{
		margin-top: 30px;
	}
	/* about end */
	.sub-banner .m-img{
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		height: 100%;
	}
	.sub-banner .m-img img{
		display: none;
	}
	.sub-banner .text-box{
		bottom: 5%;
		width: 350px;
	}
	.sub-banner .text-box .tit{
		font-size: 30px;
		line-height: 40px;
		padding-bottom: 15px;
	}
	.sub-banner .text-box .con{
		font-size: 14px;
		line-height: 24px;
		margin-top: 15px;
	}
	.research-view{
		padding: 0 5%;
	}
	.center-box{
		padding: 50px 0 0;
	}
	.center-box .center{
		padding: 0 5%;
	}
	.center-box .text-box{
		position: absolute;
		right: 5%;
		top: 50%;
		width: 40%;
		overflow: hidden;
		transform: translateY(-50%);
	}
	.center-box .text-box .tit{
		font-size: 30px;
		line-height: 40px;
		text-align: left;
	}
	.center-box .text-box .con{
		font-size: 14px;
		line-height: 24px;
		margin-top: 15px;
	}
	.center-box .text-box .img{
		margin: 20px 0;
	}
	.center-box .center-img{
		float: left;
		width: 52%;
		margin: 0;
	}
	.center-box .text-box .con{
		height: 280px;
		overflow: hidden;
	}
	.center-box .text-box .con .mCSB_scrollTools .mCSB_draggerRail{
		width: 1px;
		background: none;
	}
	.center-box .text-box .con .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background: #e60012;
	}
	.center-box .num-box{
		width: 90%;
		padding: 30px 5%;
	}
	.center-box .num-box .item{
		margin-bottom: 0;
		width: 25%;
		vertical-align: top;
	}

	.center-box .num-box .num{
		font-size: 36px;
		line-height: 46px;
	}
	.center-box .num-box .item:nth-child(2n) .num:before{
		display: block;
	}
	.center-box .num-box .item:last-child .num:before{
		display: none;
	}
	.center-box .num-box .num:before{
		height: 20px;
	}
	.center-box .num-box .txt{
		font-size: 12px;
		line-height: 20px;
		margin-top: 5px;
	}
	.origin-box{
		padding: 50px 0 0;
	}
	.origin-box .list{
		width: 81.67%;
		margin: 50px auto 0;
	}
	.origin-box .list li{
		width: 45%;
		float: left;
		margin-bottom: 70px;
	}
	.origin-box .list li:nth-child(2){
		margin-top: 100px;
	}
	.origin-box .list li:nth-child(2n){
		float: right;
	}

	.origin-box .list li:last-child{
		margin-bottom: 0;
	}
	.origin-box .list .text{
		padding: 15px;
	}
	.origin-box .list .tit{
		font-size: 18px;
		line-height: 28px;
		padding-bottom: 10px;
	}
	.origin-box .list .con{
		font-size: 14px;
		line-height: 24px;
		margin-top: 10px;
	}
	.tech-box{
		padding-bottom: 50px;
	}
	.tech-box .list li{
		float: right;
	}
	.tech-box .list li:nth-child(2n){
		float: left;
	}

	/* research end */
	.hello-box{
		padding: 50px 5%;
		background-image: url('../images/hello-box-bg.png');
		background-repeat: no-repeat;
		background-position: center;
		position: relative;
	}
	.hello-box .text-box{
		padding: 50px 8vw;
		float: right;
		width: 60%;
	}
	.hello-box .text-box .tit{
		font-size: 30px;
		line-height: 40px;
	}
	.hello-box .text-box .line{
		margin-top: 15px;
		width: 30px;
	}
	.hello-box .text-box .con{
		font-size: 14px;
		line-height: 30px;
		margin-top: 15px;
	}
	.hello-box .img{
		position: absolute;
		left: 0%;
		top: 50%;
		transform: translateY(-50%);
		width: 48.36%;
		margin: 0;
	}
	.fun-list-box{
		/* padding-bottom: 50px; */
	}
	.fun-list-box .desc-box{
		width: 70%;
		margin: 0 auto;
		padding: 30px;
	}
	.fun-list-box .desc-box .tit{
		font-size: 30px;
		line-height: 40px;
	}
	.fun-list-box .desc-box .con{
		font-size: 14px;
		line-height: 24px;
	}
	.fun-list-box .desc-box .line{
		width: 40px;
		margin: 15px auto;
	}
	.fun-list-box .desc-box .icon{
		width: 80px;
	}
	.fun-list-box .desc-box .icon1{
		left: -15px;
		top: 15px;
	}
	.fun-list-box .desc-box .icon2 {
	    right: 30px;
	    bottom: -5px;
	}
	.fun-list-box .list{
		margin-top: 50px;
		padding-bottom: 80px;
	}
	.fun-list-box .list.on{
		padding-bottom: 150px;
	}
	.fun-list-box .list .row{
		margin: 0 -30px;
	}
	.fun-list-box .list .item{
		padding: 0 30px;
		margin-bottom: 80px;
	}
	.fun-list-box .list .text{
		top: 80%;
		left: -15px;
		border-radius: 60px 0 60px 60px;
	}
	.fun-list-box .list .img{
		
	}
	.fun-list-box .list .img img{
		border-radius: 80px;
	}
	.fun-list-box .list .text .tit{
		font-size: 14px;
		line-height: 24px;
		padding: 10px;
	}
	.fun-list-box .list .text .con{
		font-size: 12px;
		line-height: 20px;
		height: 60px;
		padding: 0 30px;
		margin: 10px 0;
	}
	.fun-list-box .list .text .book{
		width: 68px;
		height: 68px;
		font-size: 15px;
		right: -40px;
		bottom: -5px;
		line-height: 68px;
	}
	.fun-list-box .list .text .yin{
		width: 26px;
		left: 45px;
	    top: -10px;
	}
	.load-box{
		margin-top: 30px;
	}
	.load-box .load .img{
		width: 60px;
	}
	.load-box .load-btn{
		font-size: 16px;
		line-height: 26px;
		padding-bottom: 5px;
	}
	.fun-list-box .list .load-box{
		margin-top: 80px;
	}
	/* fun end */
	.product-box{
		padding: 50px 0;
	}
	.product-box h3{
		font-size: 26px;
		line-height: 36px;
	}
	.product-box .line{
		width: 30px;
		height: 1px;
		background-color: #7a7a7c;
		margin: 15px auto 0;
	}
	.product-box .tab-btns-box .prev,
	.product-box .tab-btns-box .next{
		width: 10px;
		height: 20px;
	}
	.product-box .tab-btns-box .prev{
		left: 20px;
	}
	.product-box .tab-btns-box .next{
		right: 20px;
	}
	.product-box .tab-btns-box{
		margin-top: 20px;
	}
	.product-box .tab-btns .swiper-slide {
	    padding: 15px 0 15px 30px;
	    background-size: 23px;
	    font-size: 14px;
	    margin: 0 20px;
	    line-height: 24px;
	    position: relative;
	}
	.product-box .tab-btns .swiper-slide:before{
		content: "";
		position: absolute;
		right: -20px;
		top: 50%;
		transform: translateY(-50%);
		width: 1px;
		height: 18px;
		background-color: #d7d6d4;
	}
	.product-box .tab-btns .swiper-slide:last-child:before{
		display: none;
	}
	.product-box .list{
		padding: 0 5%;
		margin-top: 40px;
	}
	.product-box .list .row{
		margin: 0 -20px;
	}
	.product-box .list .item{
		margin-bottom: 50px;
		padding: 0 20px;
	}
	.product-box .list .text-box{
		margin-top: 0;
	}
	.product-box .list .tit{
		font-size: 16px;
		line-height: 26px;
	}
	.product-box .list .ml,
	.product-box .list .desc{
		font-size: 12px;
		line-height: 20px;
		margin-top: 10px;
		width: 100%;
	}
	.product-box .list .buy{
		width: 170px;
		height: 44px;
		line-height: 44px;
		font-size: 14px;
		margin-top: 10px;
	}

	/* product end */
	.ban-star{
		padding-bottom: 0;
		height: 100vh;
	}
	.ban-star .text-box{
		bottom: 20%;
		position: absolute;
	}
	.ban-star .text-box .tit{
		font-size: 40px;
		line-height: 50px;
	}
	.ban-star .text-box .desc{
		font-size: 20px;
		line-height: 30px;
		margin-top: 10px;
	}
	.ban-star .text-box .more{
		width: 200px;
		height: 50px;
		line-height: 50px;
		margin-top: 20px;
	}
	.ban-star .text-box .more span{
		font-size: 14px;
		padding-right: 15px;
		line-height: 50px;
		background-size: auto;
	}
	.ban-star .img-box{
		position: absolute;
		bottom: 5%;
		margin: 0;
	}
	.ban-star .img-box .item{
		width: 190px;
		margin: 0 10px;
	}
	.ban-star .img-box .item.cur{
		top: -25px;
	}
	.star-view{
		width: 80%;
		margin: 0 auto;
	}
	.star-wrap{
		padding: 50px 0;
	}
	.star-wrap .list{
		width: 100%;
	}
	.star-wrap h3{
		font-size: 30px;
		line-height: 40px;
		text-align: left;
	}
	.star-view{
		position: relative;
	}
	.star-wrap .star-img{
		width: 70%;
		position: absolute;
		right: 0;
		margin: 0;
		top: 0;
	}
	.star-wrap .list-box{
		margin-top: 50px;
	}
	.star-wrap .tit-box{
		text-align: left;
	}
	.star-wrap .m-tit .tit{
		font-size: 30px;
		line-height: 40px;
	}
	.star-wrap .m-tit .sub-tit{
		font-size: 20px;
		line-height: 30px;
		padding-top: 15px;
		margin-top: 15px;
		padding: 15px 0 0;
	}
	.star-wrap .list{
		margin-top: 50px;
	}
	.star-wrap .list li{
		float: left;
		width: 43%;
		margin-bottom: 0;
	}
	.star-wrap .list li:nth-child(2n){
		float: right;
	}
	.star-wrap .list li:nth-child(2){
		margin-top: 20vh;
	}
	.star-wrap .list li .text{
		font-size: 16px;
		line-height: 26px;
		top: 20px;
	}
	.star-wrap .list li .con{
		font-size: 12px;
		line-height: 20px;
		margin-top: 20px;
	}
	.head-box{
		padding-top: 50px;
	}
	.head-box .text .tit{
		font-size: 30px;
		line-height: 40px;
	}
	.head-box .text .con{
		font-size: 14px;
		line-height: 24px;
		margin-top: 10px;
	}
	.head-box .box{
		padding: 15px 30px;
	}
	.head-box .box1{
		top: 13%;
	    right: 17%;
	}
	.head-box .box2,
	.head-box .box3{
		width: 160px;
	}
	.head-box .box2{
		bottom: 23%;
		right: auto;
		left: 53%;
	}
	.head-box .box3{
		bottom: 8%;
		right: auto;
		left: 60%;
	}
	.head-box .box1:before{
		bottom: 30px;
	}
	
	.head-box .box .tit{
		background-size: 30px;
		padding-left: 40px;
		font-size: 16px;
		line-height: 30px;
	}
	.head-box .box .con{
		font-size: 14px;
		line-height: 24px;
		padding-top: 15px;
		margin-top: 15px;
	}
	.head-box .img{
		width: 400px;
	}

	/* pns end */
	.sdb-bg1 .m-img{
		width: 85%;
		margin: 0 auto;
	}
	.pns-bg2 .top-box .con{
		display: none;
	}
	.sdb-bg2 .star-img{
		display: none;
	}
	.star-wrap .list-box .right-box{
		position: absolute;
		right: 0;
		top: 0;
		width: 45.7%;
	}
	.star-wrap .list-box .right-box .img{
		width: 70%;
		margin: 0 auto;
	}
	.star-wrap .list-box .right-box .img img{
		width: 100%;
	}
	.star-wrap .list-box .right-box .con{
		font-size: 14px;
		line-height: 24px;
		margin-top: 10px;
	}
	.pns-bg2 .list .tit{
		font-size: 18px;
		line-height: 28px;
	}
	.pns-bg2 .list li{
		margin-bottom: 60px;
	}
	.pns-bg2 .list li .con{
		margin-top: 5px;
	}
	.pns-bg2 .top-box{
		width: 100%
	}

	.pns-bg2 .right-box{
		display: block;
	}

	/* sdb end */


	.ocean-bg1 .m-img{
		width: 80%;
		margin: -5% auto 0;

	}
	
	.ocean-bg2 .list-box .right-box .con{
		color: #fff;
		margin-top: 20px;
		text-align: center;
	}
	.ocean-bg2 .list .txt{
		font-size: 14px;
		line-height: 24px;
		margin-top: 20px;
	}

	/* ocean end */
	.store-box{
		padding: 80px 0;
	}
	.store-box .store{
		margin-top: 30px;
	}
	.store-box .store .top-con{
		padding: 20px 30px;
	}
	.store-box .tit-box .tit{
		font-size: 30px;
		line-height: 40px;
	}
	.store-box .tit-box .line{
		margin-top: 15px;
		width: 40px;
	}
	.store-box .store .item-box{
		width: 600px;
		margin: 0 auto;
	}
	.store-box .store .position{
		font-size: 14px;
		line-height: 30px;
		background-size: auto;
		padding-left: 30px;
	}
	.store-box .store .change{
		font-size: 14px;
		line-height: 30px;
	}
	.store-box .store .store-search{
		margin-top: 20px;
	}
	.store-box .store .store-search{
		padding: 10px 20px;
	}
	.store-box .store .store-search input[type=text]{
		font-size: 14px;
		line-height: 20px;
		height: 20px;
	}
	.store-box .store .store-search input[type=submit]{
		width: 20px;
		height: 20px;
	}
	.store-box .store .store-search .divide{
		margin-right: 15px;
		height: 20px;
		margin: 0 15px 0 0;
	}
	.store-box .store .top-con .tips{
		font-size: 14px;
		line-height: 24px;
		margin-top: 10px;
	}
	.store-box .store .list-box .list{
		height: 305px;
	}
	.store-box .store .list-box .tit span{
		font-size: 14px;
		padding-bottom: 5px;
		line-height: 24px;
	}
	.store-box .store .list-box li{
		padding: 15px 30px;
	}
	.store-box .store .list-box .store-tit{
		font-size: 16px;
		line-height: 26px;
	}
	.store-box .store .list-box .con-box{
		font-size: 12px;
		line-height: 20px;
		margin-top: 5px;
	}
	.store-box .store .list-box .tit{
		padding: 0 30px;
	}
	.store-box .store .list-box .tips{
		padding: 20px 30px;
		font-size: 14px;
		line-height: 24px;
	}
	.store-box .map{
		margin-top: 30px;
		height: 400px;
	}
	.store-view{
		padding: 0 5%;
	}
	.store-box .store .back{
		font-size: 14px;
		padding-left: 20px;
	}
	.store-box .store .select-tit{
		font-size: 18px;
		margin-top: 20px;
		line-height: 28px;
	}
	.store-box .store .city-list .tit span{
		font-size: 14px;
		line-height: 24px;
	}
	.store-box .store .city-list .list{
		height: 360px;
	}
	.store-box .store .city-list .list a{
		height: 60px;
		line-height: 60px;
		font-size: 14px;
		padding: 0 30px;
	}
	.store-box .store .city-list .tit{
		padding: 0 30px;
	}
	.store-box .store .city-list .list a:before{
		right: 30px;
	}
	.store .icon-box{
		font-size: 0;
	}
	.store .icon-box .icon-item{
		width: 50%;
		display: inline-block;
		*display: inline;
		zoom: 1;
		vertical-align: top;
		box-sizing: border-box;
		border-bottom: none;
		padding: 20px;
		border-left: 1px solid #ebebeb;
		text-align: center;
		vertical-align: middle;
	}
	.store .icon-box .icon-item:nth-child(1){
		border-left: none;
	}
	.store .icon-box .icon-item .text{
		background-size: 40px;
		padding-left: 60px;
		text-align: left;
	}
	.store .icon-box .icon-item .tit{
		font-size: 18px;
		line-height: 28px;
	}
	.store .icon-box .icon-item .address{
		font-size: 14px;
		line-height: 24px;
		margin-top: 5px;
	}
	.store .icon-box .icon-item .tel{
		font-size: 18px;
		line-height: 28px;
		margin-top: 5px;
	}
	.store .icon-box .icon-item .time{
		font-size: 14px;
		line-height: 24px;
		margin-top: 5px;
	}
	/* store end */
	.bread{
		margin-bottom:20px;
	}
	.bread a,
	.bread span{
		font-size:16px;
		line-height:26px;
	}
	.bread span{
		margin:0 10px;
	}
	.newsdtl{
		padding:70px 0;
	}
	.newsdtl .infotx{
		margin-top: 20px;
	}
	.newsdtl .vtl{
		margin:30px 0 0;
	}
	.newsdtl .vtl video{
		height: 420px;
	}
	.infoctrl .pageback{
		margin:0;
		float: right;
	}
	.newsdtl .infotx .video{
		margin-top:30px;
	}
	.newsdtl .infotx video,
	.newsdtl .infotx iframe{
		height: 410px;
		width: 100%;
	}
	.loading{
		width: 60px;
		height: 60px;
	}
	.la-ball-spin-clockwise>div{
		width: 10px;
		height: 10px;
	}
}

@media (min-width: 992px){
	.f-nav{
		width: auto;
		display: inline-block;
		*display: inline;
		zoom: 1;
	}
	.f-nav li{
		width: auto;
		margin-right: 30px;
	}
	footer .right-box{
		display: inline-block;
		*display: inline;
		zoom: 1;
		width: auto;
		vertical-align: top;
		margin: 0;
	}
	footer .right-box .right{
		margin: 0;
	}
	footer .link-box a{
		margin-right: 10px;
	}
	/*footer end*/
	.ban-about .pc-box .video-wrap .person{
		right: -17vw;
	    top: 50%;
	    width: 46vw;
	}
	.activity-box{
		padding: 130px 0 50px;
	}
	.phi-box .text{
		padding: 15px;
	}

	/* about end */
	.center-box .text-box .con{
		height: 400px;
	}

	/* research end */
	.fun-list-box .list .row{
		margin: 0 -25px;
	}
	.fun-list-box .list .item{
		padding: 0 25px;
	}
	.fun-list-box .list .img{
		position: relative;
	}
	.fun-list-box .list .img img{
		border-radius: 60px;
	}
	.fun-list-box .list .text .con{
		/* height: 60px;
		overflow: hidden; */
	}

	/* fun end */
	.product-box .tab-btns .swiper-wrapper {
	    justify-content: center;
	    display: -ms-flexbox;
	    -ms-flex-pack: center;
	}

	/* product end */
	.star-wrap .list li:nth-child(2){
		margin-top: 300px;
	}

	/* pns end */
}
@media (max-width: 640px){
	
	
}