
/* reset Styles */
* { box-sizing: border-box;}
*::before, *::after { box-sizing: border-box;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
form,fieldset,input,textarea,button,select,p,blockquote,table,th,tr,td,a {
	padding: 0;
	margin: 0;
	font-family: 'Microsoft YaHei', sans-serif;
}
ol,ul,li{list-style: none;}
a{text-decoration: none; color: #333}
i,em{font-style: normal;}
input,textarea,button,select{outline: none; -webkit-appearance:none;}
table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 0;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
	font-size: 100%;
	color: #000
}
img{
	max-width: 100%;
	max-height: 100%;
	border: 0;
	vertical-align: middle;
}
.clear:after {
	content: "";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clear {zoom: 1;}
.fl{float: left;}
.fr{float: right;}

select {
	border: solid 1px #000;
	appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;
	padding-right: 14px;
	background: url("http://ourjs.github.io/static/2015/arrow.png") no-repeat scroll right center transparent;
}
select::-ms-expand { display: none; }

body {
	position: relative;
	font-family: "microsoft YaHei",Helvetica,sans-serif,'Open Sans',Arial,sans-serif;
	font-size: 14px;
	color: #333;
}
/*end reset style*/

/*common*/
.wrap {
	width:100%;
}
.w1200 {
	max-width:1200px;
	margin:0 auto;
}
.w1000{
	max-width: 1000px;
	margin: 0 auto;
}
.bg1{
	background: #f4f7f9;
}
/*Col*/
.col-2 {
	width:50%;
	float:left;
}
.col-3 {
	width:33.3%;
	float:left;
}
.col-4 {
	width:25%;
	float:left;
}
.col-6 {
	width:16.66666%;
	float:left;
}
.dn{
	display: none !important;
}
.hidden{
	overflow: hidden !important;
}
.font-danger{
	color: #B20000
}
.mr5{
	margin-right: 5px;
}
.tc{
	text-align: center
}
.trans_effect {
	-webkit-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.trans_effect:hover {
	-webkit-transform: scale(1.2, 1.2);
	transform: scale(1.2, 1.2);
}
a.email{
	text-decoration: underline;
}
/*滚动条样式*/
.studies .tab-con .content::-webkit-scrollbar{
	width: 10px;
	height: 10px;
	background-color: #f7f7f7;
 }
.studies .tab-con .content::-webkit-scrollbar-track{
	/*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);*/
	border-radius: 10px;
	background-color: #f7f7f7;
 }
.studies .tab-con .content::-webkit-scrollbar-thumb{
	/*width: 10px;*/
	height: 1px;
	border-radius: 10px;
	/*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
	background-color: #d8d8d8;
 }

/*end common*/

/*header*/
.fixed-header{
	position: fixed;
	width: 100%;
	z-index: 100;
	background: #fff;
	box-shadow: 0 0 1px 0 rgba(193,204,215,.61);
}
.header{
	max-width: 1440px;
	margin: 0 auto;
	padding: 18px 30px;
}
.header .logo{
	width: 171px;
}
.header .version-switch{
	position: relative;
}
.header .version{
	display: inline-block;
	padding: 10px 20px;
	font-size: 18px;
}
.header .version img{
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-left: 10px;
}
.header .nav{
	float: left;
	margin-left: 250px;
}
.header .nav>li{
	position: relative;
	float: left;
	margin-right: 5px;
}
.header .nav a{
	display: inline-block;
	padding: 10px 28px;
	font-size: 18px;
	color: #000;
	cursor: pointer;
	border-bottom: 3px solid transparent;
}
.header .nav >li a.cur,
.header .nav >li:hover >a{
	border-bottom: 3px solid #E84026;
}
.header .nav >li:hover .dropwrap,
.version-switch:hover .dropwrap{
	display: block;
	z-index: 2;
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.header .dropwrap{
	display: none;
	position: absolute;
	left: 50%;
	top: 40px;
	z-index: -1;
	width: 190px;
	margin-left: -95px;
   padding-top: 28px;
	-webkit-transform: translateY(-50px);/*y轴方向平移*/
	transform: translateY(-50px);
	opacity: 0;
	-webkit-transition: all .2s ease-in;/*平移时间0.2s*/
	transition: all .2s ease-in;
}
.header .dropdown{
	width: 190px;
	padding: 10px 0;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 1px 3px 0 rgba(193,204,215,.61);
}
.header .version-switch .dropwrap{
	top: 38px;
	padding-top: 30px;
	width: 130px;
	margin-left: -65px;
}
.header .version-switch .dropdown{
	width: 130px;
}
.header .dropdown>li{
	float: none;
}
.header .dropdown a{
	display: block;
	padding: 15px 12px;
	font-size: 14px;
}
.header .dropdown a:hover,
.header .dropdown.cur{
	background: #ECECEC;
}
.header .contact{
	display: inline-block;
	width: 140px;
	height: 40px;
	margin-right: 10px;
	line-height: 40px;
	text-align: center;
	border-radius: 100px;
	font-size: 18px;
	background: #E84026;
	color: #fff;
}
/*footer*/
.footer{
	position: relative;
	top: 83px;
	background: #2B2F33;
	color: #FFFFFF;
}
.footer.pc-footer .w1200{
	padding: 0 20px;
}
.footer .f-logo{
	display: inline-block;
	width: 117px;
	margin-right: 8px;
}
.footer .links-wrap{
	padding: 18px 0;
	border-bottom: 1px solid #fff;
}
.footer .links-wrap .s-logo span{
	padding: 0 15px;
}
.footer .slogen{
	margin-bottom: 15px;
}
.footer .slogen>span{
	margin-top: 10px;
}
.footer .links a {
	display: inline-block;
	float: left;
	margin-bottom: 6px;
	/*border-right: 1px solid #fff;*/
	font-size: 12px;
	color: #FFFFFF;
	line-height: 14px;
	width: 83px;
	text-align: center;
}
.footer .links-wrap .clear .fr{
	width: 340px;
}
.footer .links.links-right a{
	width: auto;
	padding: 0 15px;
}

.footer .links a:hover{
	color: #efefef;
}
.footer .links a.no-line{
	border-right: none;
}
.footer .links a.txl{
	/*text-align: left;*/
}
.footer .linkedin{
	display: block;
	margin-top: 8px;
	padding: 0 15px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}
.footer .linkedin em{
	padding: 0 3px;
	background: #006699;
	border-radius: 2px;
}
.footer .copyright{
	padding: 10px 0;
	font-size: 12px;
	color: #fff;
	text-align: center
}
.footer .copyright a{
	display:inline-block;
	height:20px;
	line-height:20px;
	margin-right: 10px;
	color: #fff;
}
.footer .copyright a:hover{
	color: #eee;
}
.footer .copyright .police{
	margin-top: 6px;
}
.footer .copyright .police span{
	display: inline-block;
	margin-left: 5px;
}
/*banner*/
.banner{
	position: relative;
	width: 100%;
	/*height: 420px;*/
	padding: 200px 0;
	margin: 0 auto;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url('css/images/home/Background.png');
	background-size: cover;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.banner.ban-about{
	background-image: url('css/images/about/Bitmap.png');
}
.banner.ban-platform{
	background-image: url('css/images/platform/Bitmap.png');
}
.banner.ban-services{
	background-image: url('css/images/services/Bitmap.png');
}
.banner.ban-our-work{
	background-image: url('css/images/our_work/Bitmap.png');
}
.banner.ban-home{
	/* height: 500px; */
	padding: 180px 0;
	background-image: url('css/images/home/Background.png');
}
.banner .intro{
	width: 75%;
	/*padding-top: 9%;*/
	margin: 0 auto;
	color: #fff;
	text-align: center;
}
.banner.ban-home .intro{
	max-width: 900px;
	text-align: left;
}
.banner .intro p{
	font-size: 18px;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 22px;
}
.banner .intro h2{
	font-size: 40px;
	line-height: 48px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-transform: uppercase;
}
.banner.ban-home .intro h2{
	margin-bottom: 50px;
}
.container {
	position: relative;
	top: 83px;
	width:100%;
	background:#fff;
}
.container .block {
	padding:70px 0;
}
.container .block .tit {

}
.container .block .tit h2{
	/*width: 860px;*/
	margin: 0 auto;
	text-align: center;
	margin-bottom: 24px;
	font-size: 40px;
	line-height: 56px;
	color: #808080;
	text-transform: uppercase;
}
.container .block.contact-us .tit h2{
	color: #fff
}
.container .block .tit p{
	max-width: 1000px;
	margin: 0 auto;
	margin-bottom: 50px;
	text-align: center;
	font-size: 20px;
	line-height: 40px;
	color: #666666;
}
.image-text .img{

}
.image-text .text{
	width: 600px;
	margin-left: 70px;
	font-size: 18px;
	line-height: 30px;
	color: #676767;
}
.image-text .text p{
	margin-bottom: 30px;
}
.career .image-text .text{
	width: 600px;
	margin-left: 70px;
}
.list1 .col-4{
	min-height: 254px;
	padding: 0 40px;
	text-align: center;
	color: #666;
	font-size: 16px;
}
.list1 .col-4 h3{
	margin-top: 40px;
	margin-bottom: 20px;
	font-size: 22px;
	color: #000;
}
.list1 .col-4 .img-box{
	display: inline-block;
	width: 80px;
	height: 80px;
	text-align: center;
	line-height: 80px;
}
.list2 .col-3{
	height: 254px;
	padding: 0 100px;
	text-align: center;
	color: #666;
	font-size: 16px;
}
.list2 .col-3 .img-box{
	display: inline-block;
	width: 150px;
	height: 150px;
	margin-bottom: 20px;
	text-align: center;
	line-height: 150px;
}
.partner-list{
	max-width: 880px;
	margin: 0 auto;
}
.partner-list li {
	width: 25%;
	height: 60px;
	float: left;
	margin-bottom: 30px;
	line-height: 60px;
	text-align: center;
}
.events .events-list{
	width: 500px;
	margin-left: 46px;
}
.events .events-list li{
	margin-bottom: 20px;
}
.events .events-list li h3{
	width:500px;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
	-o-text-overflow:ellipsis;
	font-size: 18px;
	line-height: 24px;
	color: #333;
}
.events .events-list li p{
	font-size: 14px;
	line-height: 20px;
	color: #666;
}

/*about*/
.about-intro{
	color: #4A4A4A;
	font-size: 18px;
	line-height: 36px;
}
.about-intro p{
	margin-bottom: 40px;
}
.team-list{
	display: flex;
	justify-content: center;
}
.team-list .col-6{
	margin: 26px 0 30px;
	padding: 0 15px;
	text-align: center;
}
.team-list .text{
	padding: 10px 0 15px;
	background: #fff;
	color: #989898;
	font-size: 14px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.team-list .col-6 .tit{
	margin-bottom: 6px;
	font-size: 20px;
	color: #444446;
}
.team-list .col-6:hover .text{
	color: #fff;
	background: #E3462E
}
.team-list .col-6:hover .tit{
	color: #fff;
}
.team-list-content>div{
   min-height: 300px;
	padding: 24px 50px;
	background: #F6F8FA;
	color: #676767;
	font-size: 18px;
	line-height: 36px;
	display: none
}
.our-team{
	margin-top: 20px;
}
.our-team .text{
	width: 600px;
	margin-left: 50px;
	font-size: 16px;
	line-height: 24px;
	color: #676767;
}
.our-team .text p{
	margin-bottom: 30px;
}
.honor{
	width: 100%;
	height: 480px;
	background: url('css/images/about/honor-bg.png') center center no-repeat;
	background-size: cover;
}
.container .block.honor .tit h2{
	margin-bottom: 60px;
	color: #fff;
}
.honor-container{
	position: relative;
	max-width: 1440px;
	height: 170px;
	margin: 0 auto;
}
.honor-viewport{
	position: relative;
	max-width: 1200px;
	height: 170px;
	margin: 0 auto;
	overflow: hidden;
}
.honor-list{
	position: absolute;
	left: 0;
	top: 0;
	width: 10000px;
	transition: transform 0.5s;
	transform: translate3d(0px, 0px, 0px);
}
.honor-list>li{
	float: left;
	width: 350px;
	height: 170px;
	padding: 30px 0;
   margin: 0 25px;
	background: #fff;
	color: #000;
	font-size: 16px;
	line-height: 22px;
}
.honor-list>li .img-box{
	width: 120px;
	margin: 0 auto;
	/*background: #f9f9f9;*/
	text-align: center;
}
.honor-list>li .text{
	margin: 10px auto 0;
	text-align: center;
}
.honor-list>li .text h3{
	font-size: 18px;
	line-height: 18px;
	margin-bottom: 10px;
}
.honor-list>li .text p{
	font-size: 14px;
}
.honor-container .pcArrow .arrL,
.honor-container .pcArrow .arrR{
	position: absolute;
	top: 50%;
	width: 56px;
	height: 101px;
	margin-top: -50px;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-image: url('css/images/common/arrow.png');
}
.honor-container .pcArrow .arrL{
	left: 50px;
	background-position: 0 0;
}
.honor-container .pcArrow .arrL:hover{
	background-position: -56px 0;
}
.honor-container .pcArrow .arrR{
	right: 50px;
	background-position: -112px 0;
}
.honor-container .pcArrow .arrR:hover{
	background-position: -168px 0;
}
/*mobile*/
.honor-container .mobileArrow{
	display: none;
}
.honor-container .mobileArrow .arrL,
.honor-container .mobileArrow .arrR{
	position: absolute;
	top: 50%;
	width: 50px;
	height: 108px;
	margin-top: -54px;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(css/images/about/honor_l.png);
	background-size: contain;
}
.honor-container .mobileArrow .arrL{
	left: -15pt;
}
.honor-container .mobileArrow .arrR{
	right: -15pt;
	background-image: url(css/images/about/honor_r.png);
}
/*offices*/
.container .block.offices .tit h2{
	margin-bottom: 56px;
}
.offices .offices-img{
	position: relative;
	width: 626px;
	height: 321px;
	margin-top: 50px;
	margin-right: 50px;
	background: url('css/images/about/maps2.png') no-repeat center center;
}
.offices-maps li{
	position: absolute;
	left: 156px;
	top: 100px;
	width: 18px;
	height: 22px;
	background: url('css/images/about/didian2.png') no-repeat center center;
	background-size: contain;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-indent: -99999px;
}
.offices-maps li.cur{
	-webkit-transform: scale(1.8, 1.8);
	transform: scale(1.8, 1.8);
}
.offices-maps li.gz{
	left: 75.39936102236422%;
	top: 42.99065420560748%;
}
.offices-maps li.bj{
	left: 76.99680511182109%;
	top: 32.398753894081%;
}
.offices-maps li.sh{
	left: 78.59424920127796%;
	top: 36.7601246105919%;
}
.offices-maps li.hk{
	left: 78.11501597444089%;
	top: 43.61370716510903%;
}
.offices-maps li.wh{
	left: 75.71884984025559%;
	top: 36.13707165109034%;
}
.offices-maps li.sp{
	left: 73.32268370607029%;
	top: 54.51713395638629%;
}
.offices-maps li.mg{
	left: 18%;
	top: 36%;
}
.offices .offices-list{
	max-width: 460px;
}
.offices .offices-list h3{
	margin-bottom: 4px;
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
	color: #666;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.offices .offices-list p{
	font-size: 14px;
	color: #666;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.offices .offices-list li{
	position: relative;
	padding-bottom: 24px;
	padding-left: 30px;
	border-left: 1px solid #b9b9b9;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.offices .offices-list li:before{
	content: '';
	position: absolute;
	left: -8px;
	top: 15px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #b9b9b9;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.offices .offices-list li:after{
	content: '';
	position: absolute;
	/*width: 1px;*/
	height: 100%;
	background: #b9b9b9;
}
/*.offices .offices-list li:hover h3,
.offices .offices-list li:hover p,*/
.offices .offices-list li.cur h3,
.offices .offices-list li.cur p{
	color: #E44831
}
/*.offices .offices-list li:hover:before,*/
.offices .offices-list li.cur:before{
	background: #E44831
}

/*历史时间轴*/
.history-container{
	position: relative;
	padding: 0 60px;
}
.history-wrap{
	position: relative;
	height: 400px;
	overflow: hidden
}
.history-wrap:before {
	content: '';
	position: absolute;
	top: 50%;
	height: 3px;
	width: 100%;
	background: #E84026;
}
.history-viewport{
	position: absolute;
	top: 50%;
	left: 75px;
	/*left: 0;*/
}
.history-container .arrL,
.history-container .arrR{
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 44px;
	height: 44px;
	margin-top: -22px;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url('css/images/about/history_l.png');
}
.history-container .arrL{
	left: 0px;
	background-image: url('css/images/about/history_l.png');
}
.history-container .arrR{
	right: 0px;
	background-image: url('css/images/about/history_r.png');
}
.history-list {
	width: 100000px;
	border-top: 3px solid #E84026;
}
.history-list li {
    float: left;
    position: relative;
    text-align: center;
    width: 150px;
    padding-top: 10px;
}
.history-list li b{
	display: inline-block;
	position: absolute;
	top: -10px;
	left: 50%;
	width: 20px;
	height: 20px;
	margin-left: -10px;
	border: 2px solid #E84026;
	border-radius: 50%;
	background: #fff;
}
.history-list li b:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -5px;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #E84026;
}
.history-list li:hover .step{
	background: #E84026;
	color: #fff;
}
.history-list li:hover .step:before{
	border-color: transparent;
}
.history-list .step{
	position: absolute;
	left: 50%;
	width: 210px;
	height: 150px;
	margin-left: -105px;
	padding: 16px 14px;
	background: #fff;
	border: 2px solid #E84026;
	color: #666;
	font-size: 16px;
	text-align: left;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.history-list .step .tit{
	margin-bottom: 6px;
	font-size: 22px;
}
.history-list .step:after{
	content: '';
	position: absolute;
	z-index: 1;
	width: 0;
	height: 0;
	left: 50%;
	margin-left: -10px;
	border: 10px solid #fff;
	border-color: red orange green blue;
}
.history-list .step:before{
	content: '';
	position: absolute;
	z-index: 2;
	width: 0;
	height: 0;
	left: 50%;
	margin-left: -8px;
	border: 8px solid #fff;
	border-color: red orange green blue;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.history-list .up .step{
	top: -180px;
}
.history-list .down .step{
	top: 30px;
}
.history-list .up .step:after{
	top: 100%;
	border-color: #e84026 transparent transparent;
}
.history-list .down .step:after{
	bottom: 100%;
	border-color: transparent transparent #e84026;
}
.history-list .up .step:before{
	top: 100%;
	border-color: #fff transparent transparent;
}
.history-list .down .step:before{
	bottom: 100%;
	border-color: transparent transparent #fff;
}

/*creative*/
.creative .text{
	float: left;
	width: 500px;
	margin-right: 68px;
	margin-top: 50px;
}
.creative .text .tit{
	margin-top: 40px;
	margin-bottom: 30px;
	font-size: 36px;
	line-height: 44px;
	color: #808080;
	font-weight: bold;
	text-transform: uppercase;
}
.creative .text .brief{
	font-size: 18px;
	color: #888888;
	line-height: 27px;
}
.creative .img{
	float: right;
	width: 360px;
}
.creative >div{
	padding: 20px 0;
}
.creative >div.img-l .text{
	float: right;
	margin-right: 0;
}
.creative >div.img-l .img{
	float: left;
	margin-right: 68px;
}
.services-list .col-3{
	padding: 0 40px;
	margin: 30px 0;
	text-align: center
}
.services-list .img-box{
	width: 90px;
	height: 90px;
	margin: 0 auto;
	text-align: center;
	line-height: 90px;
}
.services-list .text{
	height: 110px;
	font-size: 16px;
	color: #666;
	line-height: 26px;
}
.services-list .tit{
	font-size: 22px;
	color: #000;
	margin: 10px 0;
}
.services-intro{
	margin-bottom: 80px;
}
.services-intro .text{
	width: 600px;
	margin-left: 70px;
	font-size: 18px;
	line-height: 36px;
	color: #676767;
}

/**/
.formula .text{
	margin-left: 50px;
}
.formula .text li{
	margin-bottom: 30px;
}
.formula .img-box{
	float: left;
	height: 56px;
	width: 56px;
	margin-right: 20px;
	line-height: 56px;
	text-align: center
}
.formula .img-box~p{
	float: left;
	width: 420px;
	margin-top: 10px;
}
.platform .media .col-2{
	height: 228px;
	padding: 30px 130px;
	text-align: center;
}
.platform .media .col-2 .img-box{
	margin-bottom: 10px;
}
/* tab-switch */
.tab-link {
	position: relative;
	height: 40px;
	/*border-bottom: 3px solid #ddd;*/
}
.tab-link:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: #ddd;
}
.tab-link li{
	position: relative;
	float: left;
	padding: 0 30px;
	height: 40px;
	cursor: pointer;
	font-size: 18px;
	line-height: 40px;
}
.tab-link li.cur{
	color: #e84026;
	border-bottom: 3px solid #e84026;
}

.tab-wrap>.tab-con{
	display: none;
}
/* end tab-switch */
.platform .tab-con{
	width: 580px;
	min-height: 390px;
	padding-top: 25px;
}
.platform .tab-con li{
	float: left;
	width: 25%;
	margin-bottom: 18px;
}
.platform .link-img{
	margin-left: 90px;
	margin-top: 90px;
}
.platform .data{
	padding-top: 20px;
}
.platform .data .text{
	width: 600px;
	margin-top: 100px;
	font-size: 18px;
	line-height: 36px;
	color: #676767;
}
.news-list .item{
	margin-bottom: 40px;
}
.news-list .img-box{
	max-width: 250px;
	height: 200px;
	line-height: 200px;
	text-align: center;
	margin-right: 40px;
}
.news-list .text{
	max-width: 600px;
}
.news-list .text .tit{
	margin-bottom: 18px;
	color: #333;
	font-size: 24px;
}
.news-list .text .time{
	margin-bottom: 10px;
	color: #888888
}
.news-list .text .con{
	margin-bottom: 10px;
	line-height: 24px;
	color: #808080;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.news-list .item .text a.more{
	font-size: 18px;
	color: #e84026
}



/*轮播*/
.wheel-container{
	position: relative;
}
.wheel-viewport{
	position: relative;
	height: 54px;
	max-width: 840px;
	margin: 0 auto;
	overflow: hidden;
}
.wheel-list{
	position: absolute;
	left: 0;
	top: 0;
	width: 10000px;
}
.wheel-list>li{
	float: left;
	width: 130px;
	height: 54px;
   margin: 0 5px;
	background: #fff;
	color: #000;
	font-size: 16px;
	overflow: hidden
}
.wheel-list>li.active{
	border-color: #F14F4B
}
.wheel-list>li .img-box{
	text-align: center
}
.wheel-list>li .text{
	float: left;
	width: 208px;
	padding-right: 30px;
}
.wheel-list>li .text h3{
	font-size: 32px;
	line-height: 32px;
	margin-bottom: 10px;
}
.wheel-list>li .text p{

}
.wheel-container .arrL,
.wheel-container .arrR{
	position: absolute;
	top: 50%;
	width: 32px;
	height: 54px;
	margin-top: -27px;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url('css/images/about/honor_l.png');
	background-color: #e9e9e9;
	background-size: 50%
}
.wheel-container .arrL{
	left: 0;
	background-image: url('css/images/about/honor_l.png');
}
.wheel-container .arrR{
	right: 0;
	background-image: url('css/images/about/honor_r.png');
}
.studies-container{
	max-width: 910px;
	margin: 0 auto;
}
.studies .tab-con{
	min-height: 470px;
	margin-top: 30px;
}
.studies .tab-con .content{
	height: 380px;
	margin-top: 30px;
	padding: 22px;
	background: #f7f7f7;
	overflow: auto;
}
.studies .tab-con .content .text{
	width: 200px;
	margin-right: 20px;
	font-size: 18px;
	line-height: 24px;
}
.wheel-content .item{
	display: none
}
.wheel-content .item .item-content h2{
	margin-bottom: 30px;
	font-size: 24px;
	line-height: 30px;
	color: #000;
	text-align: center;
}
.wheel-content .item .item-content p{
	margin-bottom: 10px;
	font-size: 16px;
	color: #333;
	line-height: 24px;
}
.wheel-content .item .item-content .img-box{
	max-width: 790px;
	/*height: 198px;*/
	margin: 0 auto;
	/*background: #fff;*/
	/*border: 1px solid #979797;*/
	text-align: center;
	overflow-y: auto;
}
.wheel-content .item img{
	padding: 18px;
}
.wheel-content .item .item-content .content-text{
	max-width: 790px;
	margin: 20px auto;
	line-height: 22px;
	color: #000;
}
.wheel-content .item .item-content .content-text>div{
	margin-bottom: 20px;
}
.wheel-content .item .item-content .content-text .label{
	float: left;
	width: 200px;
	text-align: left;
	font-size: 18px;
}
.wheel-content .item .item-content .content-text .label-text{
	float: left;
	width: 580px;
	color: #333;
	font-size: 16px;
	line-height: 24px;
}
/*contact-us*/
.contact-us{
	width: 100%;
	height: 100%;
	background: url('css/images/contact_us/contact_bg.png') center center no-repeat;
	background-size: 100% 100%;
}
.form-con{
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background: #fff;
}
.form-con.contact-tip{
	background: transparent;
}
.form-con.contact-tip table{
	width: 100%;
	text-align: center
}
.form-con.contact-tip table td{
	height: 600px;
	font-size: 30px;
}
.form-con.contact-tip div{
	color: #fff;
}
.form-con .group{
	margin-bottom: 15px;
}
.form-con .group-label{
	float: left;
	width: 30%;
	height: 30px;
	line-height: 30px;
	text-align: left;
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	color: #666;
}
.form-con .group-content{
	float: left;
	width: 70%;
}
.form-con .group-content em{
	float: left;
}
.form-con .group-content input[type="text"]{
	width: 90%;
	height: 30px;
	padding-left: 5px;
	line-height: 30px;
	background: #DFE0E0;
	border: 1px solid #DFE0E0;
	color: #333;
}
.form-con .group-content .inter-num input[type="text"]{
	width: 30%;
}
.form-con .group-content .inter-num span{
	display: block;
	padding: 0 10px;
	line-height: 30px;
}
.form-con .group-content textarea{
	width: 90%;
	padding: 4px 14px;
	background: #DFE0E0;
	border: 1px solid #DFE0E0;
	resize: none
}
.form-con .group-content select{
	width: 90%;
	height: 30px;
	padding-left: 5px;
	line-height: 30px;
	background-color: #DFE0E0;
	border: 1px solid #DFE0E0;
}
.form-con .group-content select option{
	height: 22px;
	line-height: 22px;
	background: #fff;
}
.form-buttons input[type="submit"]{
	display: block;
	width: 132px;
	height: 40px;
	margin: 0 auto;
	line-height: 40px;
	background: #e84026;
	border: 1px solid #e84026;
	color: #fff;
	cursor: pointer;
	border-radius: 40px;
	font-size: 16px;
}
/* news 详情 */
.news-detail{
	line-height: 24px;
}
.news-detail .news-tit{
	margin-bottom: 30px;
}
.news-detail .news-tit h2{
	font-size: 24px;
	line-height: 34px;
	color: #333
}
.news-detail .news-tit .time{
	color: #888;
	font-size: 16px;
	line-height: 22px;
}
.fixed-btn {
	position: fixed;
	left: 50%;
	bottom: 5%;
	z-index: 99;
	width: 36px;
	margin-left: 600px;
	background: #fff;
	border: 1px solid #000;
}
.fixed-btn a {
	display: block;
	width: 36px;
	height: 36px;
	padding: 6px 0;
	text-align: center;
	color: #000;
	line-height: 18px;
}
.fixed-btn a.go-top {
	padding: 0;
	line-height: 32px;
	font-size: 20px;
	background: url(../../../images/icon/icon/top.png) center no-repeat;
}
.send-msg{
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: block;
	color: #fff;
	background: #e84026;
	/* height: 40px; */
	line-height: 30px;
	padding: 0 20px;
	border-radius: 10px 10px 0 0;

}
/*loadmore*/
#loadmore a{
	display: block;
	width: 100%;
	height: 46px;
	line-height: 46px;
	background: #F7F7F7;
	color: #666;
	font-size: 18px;
	text-align: center;
}
.loading {
	background: black;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 101;
	opacity: 0.5;
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	filter: alpha(opacity=50);
}
.loading img {
	position: fixed;
	top: 50%;
	left: 47%;
}
.shareDiv {
	margin-top: 40px;
}
.bottomOpt a {
	margin-left: 8px;
	padding: 3px 4px;
	background-color: #f1f1f1;
	color: #aaa;
}
.bottomOpt a.backList {
	background: #fff;
	color: #3cf;
}
.mobile-header{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 4;
	width: 100%;
	height: 64px;
	text-align: center;
	background: #fff;
	box-shadow: 0 0 1px 0 rgba(193,204,215,.61);
}
.mobile-header .nav-icon{
	position: absolute;
	left: 15pt;
	top: 16pt;
	z-index: 2;
	width: 22px;
}
.mobile-header .contact{
	position: absolute;
	right: 15pt;
	top: 12pt;
	display: inline-block;
	width: 70pt;
	height: 20pt;
	line-height: 20pt;
	text-align: center;
	border-radius: 100px;
	font-size: 11pt;
	background: #E84026;
	color: #fff;
}
.mobile-header .logo{
	position: relative;
	z-index: 2;
	width: 130px;
	padding-top: 10px;
	margin: 0 auto
}
.mobile-header .mobile_nav .nav{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 0 20pt;
	padding-top: 64px;
	background: rgba(255, 255, 255, 0.8);
	text-align: left;
}
.mobile-header .mobile_nav li{
	height: 44pt;
	line-height: 44pt;
	border-bottom: 1px solid #333;
}
.mobile-header .mobile_nav li.version-switch{
	position: relative;
	background: url(css/images/common/version_bg.png) no-repeat no-repeat center left;
}
.mobile-header .mobile_nav li a{
	display: block;
	font-weight: bold;
}
.mobile-header .mobile_nav li.version-switch a{
	padding-left: 26pt;
}
.mobile-footer{
	top: 64px;
	display: none;
	padding: 20pt 15pt 0;
}
.mobile-footer.footer .links-wrap{
	border-bottom: none;
	padding: 10pt 0;
}
.mobile-footer .copyright{
	margin-top: 10pt;
	border-top: 1px solid #fff;
	text-align: center
}
.mobile-footer.footer .linkedin{
	margin-bottom: 10pt;
	padding: 0;
}
.mobile-footer.footer .links a{
	width: 25%
}
.mobile-footer.footer .links-right.links a{
	width: auto;
}
.content .tit{
	/*margin-bottom: 20px;*/
	font-weight: bold;
}
.content p{
	margin-bottom: 10px;
}
.content p.bm{
	height: 15px;
}
.mb-show{
	display: none;
}
/* @media 响应式 */
@media screen and (max-width: 1600px){
	.header{
		max-width: 1200px;
	}
	.header .nav{
		margin-left: 80px;
	}
	.honor-container{
		width: auto;
	}
	.banner{
		padding: 180px 0;
	}
}

@media screen and (max-width: 1399px){
	.banner,
	.banner.ban-home{
		padding: 160px 0;
	}
	.honor-viewport{
		max-width: 1020px;
	}
	.honor-list>li{
		max-width: 300px;
		margin: 0 20px;
	}
	.offices .offices-list {
		max-width: 400px;
	}
}
@media only screen and (max-width: 1199px){
	 .header .nav{
		margin-left: 40px;
	}
	.header .nav a {
	    padding: 10px 20px;
	}
	.header .contact {
		width: 110px;
		height: 40px;
		line-height: 40px;
		font-size: 16px;
	}
	.container .block.offices .tit h2{
		margin-bottom: 20pt;
	}
	.offices .offices-img {
		width: 100%;
		margin: 0;
		margin-bottom: 20pt;
		background: url(css/images/about/maps.png) no-repeat center center;
		background-size: contain;
	}
	.offices .text{
		width: 100%;
	}
	.offices-maps{
		display: none
	}
	.offices .offices-list{
		max-width: 600px;
		margin: 0 auto;
	}
	.career .img{
		float: none;
		text-align: center;
	}
	.career .image-text .text{
		float: none;
		margin: 30px auto;
	}
	.honor-viewport{
		max-width: 900px;
	}
	.honor-list>li{
		max-width: 250px;
		margin: 0 25px;
	}
}
/* ipad pro */
@media only screen and (max-width: 1024px){
	.header{
		padding: 18px 20px;
	}
	.header .nav{
		margin-left: 80px;
	}
	.wheel-container {
		padding: 0 40px;
	}
	.header .nav a{
		padding: 10px;
		font-size: 16px;
	}
	.container .block{
		padding: 30pt 20pt;
	}
	.list2 .col-3{
		padding: 0
	}
	.list1 .col-4{
		width: 50%;
		min-height: 210pt;
		padding: 10pt;
		margin-top: 10pt;
		font-size: 14px;
	}
	.tab-switch{
		float: none
	}
	.platform .tab-con{
		width: 100%;
		min-height: auto
	}
	.platform .tab-con li{
		margin-bottom: 10pt;
	}
	.tab-link li{
		width: 33.3%;
		padding: 0;
		text-align: center
	}
	.platform .link-img{
		text-align: center;
		margin: 0;
		padding: 20pt;
		float: none;
	}
	.platform .link-img.pc-show{
		display: none;
	}
	.platform .link-img.mb-show{
		display: block;
	}
	.formula .img{
		float: none;
		margin: 20pt 0;
		text-align: center
	}
	.formula .text{
		float: none;
		margin-left: 0;
		margin-top: 20pt;
		padding: 0 20pt;
	}
	.formula .img-box~p{
		width: 80%;
		font-size: 16px;
		line-height: 20px;
		margin-top: 0;
	}
	.formula .text li{
		margin-bottom: 20pt;
	}

	.services-intro .text{
		margin-left: 0;
		width: 100%;
		font-size: 14px;
		line-height: 24px;
		float: none;
	}
	.image-text .img{
		float: none;
		margin: 20pt 0;
		text-align: center
	}
	.image-text .text{
		float: none;
		width: 100%;
		margin-left: 0;
		font-size: 16px;
		line-height: 22px;
	}
	.studies-container .tab-link li{
		width: 25%;
		padding: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.honor-viewport{
		max-width: 810px;
	}
	.honor-list>li{
		margin: 0 10px;
	}
	.honor-container .pcArrow .arrL{left: 0;}
	.honor-container .pcArrow .arrR{right: 0;}
	.creative .img {
	    width: 40%;
	}
	.creative .text {
	    width: 50%;
	}
}
@media only screen and (max-width: 900px){
	.header .contact{
		display: none
	}
}
/* ipad */
@media only screen and (max-width: 768px){
	.pc-header{
		display: none;
	}
	.mobile-header{
		display: block;
	}
	.container{
		top: 64px;
	}
	.pc-footer{
		display: none;
	}
	.mobile-footer{
		display: block;
		font-size: 12px;
	}
	.mobile-footer .f-logo{
		display: block;
		text-align: center;
		width: 130px;
		margin: 0 auto;
		margin-bottom: 10pt;
	}
	.footer .copyright a{
		margin:0;
		/* display: block; */
	}
	.footer .copyright .police{
		margin-top: 0;
	}
	.mobile-footer.footer .links-right.links a,
	.mobile-footer.footer .links-right.links span{
		display: block;
		width: 100%;
		margin-bottom: 6pt;
		text-align: center;
		border: none
	}
	.banner.ban-home{
		padding: 100px 0;
	}
	.banner .intro{
		width: 80%;
		/*padding-top: 15%*/
	}
	.banner .intro h2{
		font-size: 22px;
		line-height: 26px;
		/*margin-bottom: 20pt;*/
	}
	.banner .intro p{
		font-size: 12px;
		line-height: 16px;
	}
	.banner.ban-home .intro{
		width: 80%;
		/*padding-top: 9%;*/
	}
	.container .block .tit h2{
		font-size: 22px;
		line-height: 26px;
		margin-bottom: 20pt;
	}
	.container .block .tit p{
		width: 100%;
		margin-bottom: 10pt;
		font-size: 18px;
		line-height: 22px;
	}
	.list1 .col-4 h3 {
		margin-top: 20px;
		margin-bottom: 10px;
		font-size: 18px;
	}
	.list2 .col-3{
		width: 100%;
		float: none;
		padding: 0;
		height: 100pt;
		font-size: 16px
	}
	.list2 .col-3 .img-box{
		float: left;
		width: 70pt;
		height: 70pt;
		line-height: 70pt;
	}
	.list2 .col-3 p{
		padding-top: 26pt;
		text-align: left;
		padding-left: 90pt;
	}
	.partner-list{
		width: 100%;
	}

	.services-list .col-3 {
	    padding: 0;
	    margin: 0;
	    width: 50%;
	    text-align: center;
	}
	.services-list .img-box {
	    width: 50px;
	    height: 50px;
	    margin: 0 auto;
	    text-align: center;
	    line-height: 50px;
	}
	.services-list .text{
		min-height: 110px;
		padding: 0 10pt;
		font-size: 14px;
		line-height: 18px;
	}
	.services-list .text p.tit{
		font-size: 20px;
	}

	.career .image-text .text{
		margin-left: 0;
		width: 100%
	}
	.creative .text{
		margin-top: 40pt;
		margin-right: 10pt;
	}
	.creative .text .tit {
		margin: 0;
		margin-bottom: 10pt;
		font-size: 16px;
		line-height: 20px;
	 }
	.creative .text .brief {
		font-size: 14px;
		color: #888888;
		line-height: 20px;
	}
	.creative >div.img-l .img{
		margin-right: 10pt;
	}
	.our-team .text{
		width: 100%;
		float: none;
		margin-left: 0;
		margin-top: 20pt;
	}
	.our-team .img{
		float: none;
		text-align: center;
	}
	/*about*/

	.honor{
		height: 380px;
	}
	.honor-container .pcArrow{
		display: none;
	}
	.honor-container .mobileArrow{
		display: block;
	}

	.honor-container .arrR{
		right: -15pt;
	}
	.honor-container .arrL{
		left: -15pt;
	}
	.honor-list{
		width: 100% !important;
	}
	.honor-list>li{
		display: none;
		float: none;
		margin: 0 auto;
	}
	.honor-list>li.cur{
		display: block;
	}
	.team-list-content{
		display: none
	}
	.team-list .col-6{
		width: 100%;
		margin: 0;
		padding: 0 10pt;
	}
	.team-list .text{
		min-height: 60pt;
	}
	.history-container{
		padding: 0 10pt;
	}
	.history-list li{
		width: 100px;
	}
	.history-list .up .step {
		top: -130px;
	}
	.history-list .step {
		width: 150px;
		height: 100px;
		margin-left: -75px;
		padding: 6pt;
		font-size: 12px;
	}
	.history-list .step .tit {
		font-size: 16px;
		margin-bottom: 6pt;
		font-weight: bold;
	}
	.history-wrap{
		height: 300px;
	}
	.history-container .arrL, .history-container .arrR{
		width: 30px;
		height: 30px;
		background-size: contain;
	}
	.history-container .arrR{
		right: -15pt;
	}
	.history-container .arrL{
		left: -15pt;
	}
	/*contact-us*/
	.form-con{
		padding: 20pt 10pt;
	}
	.form-con .group-label{
		height: 40px;
		font-size: 12px;
		line-height: 14px;
	}
	.form-con .group-content input[type="text"]{
		height: 40px;
		line-height: 40px;
	}
	.form-con .group-content select{
		height: 40px;
		line-height: 40px;
	}
	/*our_work*/
	.wheel-content .item .item-content .img-box{
		height: auto;
	}
	.wheel-content .item .item-content .content-text .label{
		float: none;
		width: 100%;
		margin-bottom: 4pt;
		/*font-size: 16px;*/
	}
	.wheel-content .item .item-content .content-text .label-text {
		float: none;
		width: 100%;
	}
	.wheel-content .item .item-content p {
	   margin-bottom: 0;
		/*font-size: 12px;
		line-height: 14px;*/
		font-size: 14px;
		line-height: 22px;
	}
	.wheel-container {
		padding: 0 30pt;
	}
	.wheel-container .arrR{
		right: 0;
	}
	.wheel-container .arrL{
		left: 0;
	}
	.studies .tab-con .content{
		height: auto;
		padding: 10pt;
		overflow: none
	}
	.mgbutton.moove-gdpr-infobar-allow-all{
		display: block !important;
		width: 110px;
		height: 40px;
		margin: 0 auto !important;
		font-size: 16px !important;
	}
	#moove_gdpr_cookie_modal .moove-gdpr-modal-content.logo-position-left .moove-gdpr-company-logo-holder{
		text-align: center !important;
	}
	.content p.bm{
		height: 10px;
	}
	.form-con.contact-tip table td{
		height: auto;
		padding: 122pt 0;
		font-size: 16px;
	}
	.contact-us{
		background-size: cover;
	}

	.partner-list li {
		width: 33.3333%;
		padding: 10pt;
		margin-bottom: 10pt;
	}
	.partner-list li:nth-last-child(1),
	.partner-list li:nth-last-child(2){
		width: 50%;
	}
}
/* phone */
@media only screen and (max-width: 480px){
	.pc-show{
		display: none
	}
	.mb-show{
		display: block;
	}

	.container .block .tit p{
		font-size: 14px;
	}
	.container .block {
	    padding: 20pt 15pt;
	}
	.banner {
	    padding: 100px 0;
	}
	.banner.ban-home {
	    padding: 80px 0;
	}
	.banner .intro h2{
		font-size: 18px;
		line-height: 22px;
		margin-bottom: 6pt;
	}
	.banner.ban-home .intro h2{
		margin-bottom: 6pt;
		font-size: 14px;
	}
	.formula .text{
		padding: 0;
	}
	.formula .img-box~p {
		width: 100%;
		padding-left: 70px;
		font-size: 14px;
		float: none;
	}
	.list2 .col-3{
		font-size: 14px;
		height: auto;
		margin-top: 20pt;
	}
	.list2 .col-3 p{
		padding-top: 0;
		padding-left: 60pt;
	}
	.list1 .col-4 .img-box{
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
	.list1 .col-4 h3 {
		margin-top: 10px;
		margin-bottom: 6px;
	}
	.list1 .col-4 {
		width: 50%;
		min-height: 126pt
	}
	.list2 .col-3 .img-box {
		width: 40pt;
		height: 40pt;
		line-height: 40pt;
		margin-bottom: 0;
	}
	.container .block .tit h2 {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 12pt;
		color: #000;
	}
	.services-intro{
		margin-bottom: 20pt;
	}
	.services-list .text{
		padding: 0 5pt;
	}
	.services-list .text p.tit {
		font-size: 18px;
	}
	.creative .text {
		margin-top: 0
	}
	.honor-container .mobileArrow .arrL,
	.honor-container .mobileArrow .arrR{
		width: 32px;
	}
	.honor-list>li{
		width: 260px;
	}
	.honor-list>li .text h3{
		font-size: 16px;
		line-height: 16px;
	}
	.offices .offices-img{
		height: 150pt;
	}
	.team-list .col-6 .tit{
		font-size: 16px;
	}
	.wheel-content .item img{
		padding: 0;
	}
	.formula .text li:last-child{
		margin-bottom: 0
	}
	.image-text .text{
		font-size: 14px;
	}
	.formula .img-box {
		float: left;
		height: 50px;
		width: 50px;
	}
	.tab-link-wrap{
		overflow-x: auto;
	}
	/*滚动条样式*/
	.tab-link-wrap::-webkit-scrollbar{
		width: 0;
		height: 0;
		background-color: transparent;
	 }
	.tab-link-wrap::-webkit-scrollbar-track{
		background-color: transparent;
	 }
	.tab-link-wrap::-webkit-scrollbar-thumb{
		height: 0;
		border-radius: 10px;
		background-color: transparent;
	 }
	 .wheel-list>li{
	 	line-height: 54px;
	 }
	/* .tab-link-wrap::-webkit-scrollbar{
		width: 0;
		height: 3px;
		background-color: #e9e9e9;
	}
	.tab-link-wrap::-webkit-scrollbar-track{
		background-color: #e9e9e9;
	}
	.tab-link-wrap::-webkit-scrollbar-thumb{
		height: 0;
		border-radius: 10px;
		background-color: #e84026;
	} */
	.tab-link-wrap .tab-link{
		width: 400px;
	}
	.studies-container .tab-link li{
		font-size: 16px;
		width: auto;
		padding: 0 12pt;
		font-weight: bold;
	}
}
.version-switch-pop{
	position: fixed;
	left: 0;
	top: 0;
	width: 80%;
	margin: 0 auto;
	z-index: 10001;
	background: #fff;
	border-radius: 4px;
	display: none
}
.version-switch-pop li{
	height: 44pt;
	line-height: 44pt;
}
.version-switch-pop li a{
	display: block;
	padding: 0 10pt;
}
.mask {
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.7;
	filter:alpha(opacity=70);
	top: 0;
	right: 0;
	z-index: 10000;
	display: none;
}

/*----------------------------------首页轮播----------------------------------------*/
.banners{left:0;position:absolute;text-align:center;top:0;width:100%;}
.none{display:none;}
.banners{max-width: 1440px;height: 500px;position:relative;margin:0 auto;overflow:hidden;z-index:1;}
.banner_show{width:100%;text-align:center;height: 500px;overflow:hidden;position:relative;background: #090504;}
.bannger_inbox{
	width:100%;
	position: relative;
	height:500px;
	background-position: center;
	background-repeat: no-repeat;
}
.bannger_inbox .more{position: absolute;left: 50%;top: 80%;width: 120px;margin-left: -60px;padding: 10px;font-size: 20px;background: #E84026;color: #fff;border-radius: 4px;}
.bannger_inbox .intro{position: absolute; bottom: 30%; width: 100%;color: #fff; font-size: 18px;}
.bannger_inbox .intro h2{font-size: 40px;line-height: 48px;letter-spacing: 0;text-transform: uppercase;color: #fff;margin-bottom: 30px;}
.banner_pre_next a{width:37px; height:37px; background:url(css/images/home/btn.png) no-repeat; text-indent:-999em;}
.banner_pre_next .banner_btn_left{position:absolute;left:10px;z-index:105;top:270px;background-position:0px 0px;}
.banner_pre_next .banner_btn_right{position:absolute;right:10px;z-index:105;top:270px;background-position:-37px 0px;}

.yq_banner_list{width:100%;height:25px;position:absolute;bottom: 0;text-align:right;z-index:100;left:0px;padding-right:12px;}
.yq_banner_list span{width:auto; margin:0 auto; display:block; text-align:center;}
.yq_banner_list a{display:inline-block;width:16px;height:16px;background: #ddd;margin-right:10px;border-radius: 50%}
.yq_banner_list a.hover{background:#e84026}

/*----------------------------------首页轮播-end---------------------------------------*/