﻿@charset "utf-8";
/* CSS Document */
/*公共样式*/
html,body,div,a,b,nav,li,ul,ol,span,h1,h2,h3,h4,h5,h6,i,em,article,header,footer,input,p,section{
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	font-size: 100%;
	font-family: "SF Pro SC","SF Pro Display","SF Pro Icons","PingFang SC","Helvetica Neue","Helvetica","Arial",sans-serif;
}
html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
html,
body {
    overflow-x: hidden;
    width: 100%;
}
ol,ul,li{
	list-style: none;
}
a{
	text-decoration: none;
	outline: none;
	cursor: pointer;
	transition: all .3s linear;
	color: #333;
}
img{
	vertical-align: middle;
	text-align: center;
	max-width: 100%;
	height: auto;
}
.clear{/*清除浮动*/
	width: 0 !important;
	height: 0 !important;
	clear: both !important;
	float: none !important;
	border: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
.main{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 .5em;
    box-sizing: border-box;
}
.nothing{
	line-height: 8;
	color: #ccc;
	text-align: center;
	font-size: 150%;
}
/*公共样式*/






/*头部通用样式*******************************************/
header{
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 11;
	height: 6em;
	padding: 1em 0;
	box-sizing: border-box;
	border-bottom: 1px solid #eee;
	background-image: -webkit-linear-gradient( 135deg, rgb(189, 120, 31) 0%, rgb(122, 74, 144) 35%, rgb(27, 37, 89) 100%);
	background-image: -moz-linear-gradient( 135deg, rgb(189, 120, 31) 0%, rgb(122, 74, 144) 35%, rgb(27, 37, 89) 100%);
	background-image: -ms-linear-gradient( 135deg, rgb(189, 120, 31) 0%, rgb(122, 74, 144) 35%, rgb(27, 37, 89) 100%);
	background-image: -o-linear-gradient( 135deg, rgb(189, 120, 31) 0%, rgb(122, 74, 144) 35%, rgb(27, 37, 89) 100%);
	transition: all .3s linear;
	opacity: 1;
}
header.fixed{
	padding: 0;
	height: 4em;
	opacity: .95;
}
.bigswiper,
.smallswiper{
	margin-top: 6em;
}
.top{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 .5em;
	box-sizing: border-box;
}
.logo {
    float: left;
    height: 4em;
}
.logo img {
    padding: .5em 0;
    height: 3em;
    margin-right: 1em;
    float: left;
}
.logo span{
    font-size: 150%;
    line-height: 2.66666;
    float: left;
	color: #11ffff;
	text-shadow: 0 0 .125em #1e9fff;
}
#main-nav{
    float: right;
    font-size: 87.5%;
    transition: .3s;
}
#main-nav .m-li{
    float: left;
    position: relative;
    padding: 1.036em 0;
}
#main-nav .m-li a{
    display: block;
	height: 2.5em;
	line-height: 2.5;
	border-radius: 2.5em;
    padding: 0 1em;
    box-sizing: border-box;
    border: 1px solid transparent;
    margin: 0 .25em;
	color: #fff;
	text-align: center;
}
#main-nav li a:hover{
    color: #e86975;
}
#main-nav .m-li:nth-child(1) a,
#main-nav ul a{
    background-image: -webkit-linear-gradient(125deg, rgb(234, 139, 171) 0%, rgb(232,98,107) 32%, rgb(161, 146, 240) 100%);
    background-image: -moz-linear-gradient(125deg, rgb(234, 139, 171) 0%, rgb(232,98,107) 32%, rgb(161, 146, 240) 100%);
    background-image: -ms-linear-gradient(125deg, rgb(234, 139, 171) 0%, rgb(232,98,107) 32%, rgb(161, 146, 240) 100%);
	background-image: -o-linear-gradient(125deg, rgb(234, 139, 171) 0%, rgb(232,98,107) 32%, rgb(161, 146, 240) 100%);
	background-image: linear-gradient(125deg, rgb(234, 139, 171) 0%, rgb(232,98,107) 32%, rgb(161, 146, 240) 100%);
	box-shadow: 0px 8px 27px 0px rgba(116, 44, 69, 0.21);
	color: #fff;
}
#make{
	height: 2em;
	width: 2.5em;
	float: right;
	position: relative;
	margin: 1em 0;
	display: none;
}
#make i{
	width: 100%;
	background-color: #fff;
	height: .25em;
	border-radius: .25em;
	position: absolute;
	left: 0;
	transition: .3s;
}
#make i:nth-child(1){top: 0;}
#make.on i:nth-child(1){top: .875em;transform: rotate(-45deg);}
#make i:nth-child(2){top: calc(50% - .125em);}
#make.on i:nth-child(2){opacity: 0;}
#make i:nth-child(3){bottom: 0;}
#make.on i:nth-child(3){top: .875em;transform: rotate(45deg);}
.m-li ul{
	width: 200%;
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	transition: all .3s linear;
	background-color: rgba(255,255,255,.95);
}
.m-li:hover ul{
	display: block;
}
#main-nav .m-li ul a{
	margin: .5em;
}
#main-nav .m-li ul a:hover{
	color: #fff;
}
@media only screen and (max-width: 1160px){
	#main-nav .m-li a{
		padding: 0 .5em;
	}
}
@media only screen and (max-width: 1020px){
	#make{
		display: block;
	}
	#main-nav{
		position: absolute;
		right: 0;
		top: 6.857143em;
		width: 40%;
		transform: rotateY(90deg);
		z-index: 11;
		padding: 1em 1em 0;
		background-color: rgba(255,255,255,.95);
		border-radius: .5em;
	}
	#main-nav.fixed{
		top: 4.57143em;
	}
	#main-nav.on{
		transform: rotateY(0deg);
	}
	#main-nav .m-li{
		width: 100%;
		float: none;
		padding: 0 0 1em;
		
	}
	#main-nav .m-li a{
		margin: 0;
	    background-image: -webkit-linear-gradient(125deg, rgb(234, 139, 171) 0%, rgb(232,98,107) 32%, rgb(161, 146, 240) 100%);
	    background-image: -moz-linear-gradient(125deg, rgb(234, 139, 171) 0%, rgb(232,98,107) 32%, rgb(161, 146, 240) 100%);
	    background-image: -ms-linear-gradient(125deg, rgb(234, 139, 171) 0%, rgb(232,98,107) 32%, rgb(161, 146, 240) 100%);
		background-image: -o-linear-gradient(125deg, rgb(234, 139, 171) 0%, rgb(232,98,107) 32%, rgb(161, 146, 240) 100%);
		background-image: linear-gradient(125deg, rgb(234, 139, 171) 0%, rgb(232,98,107) 32%, rgb(161, 146, 240) 100%);
		box-shadow: 0px 8px 27px 0px rgba(116, 44, 69, 0.21);
		color: #fff;
	}
	#main-nav .m-li a:hover{
		color: #fff;
	}
	.m-li ul{
		width: 120%;
		top: -0.5em;
		left: calc(-120% - 1em);
	}
}
@media only screen and (max-width: 640px){
	header{
		height: 5em;
	}
	header.fixed{
	    height: 3em;
	}
	.bigswiper,
	.smallswiper{
		margin-top: 5em;
	}
	.logo{
		height: 3em;
	}
	.logo img{
		height: 2em;
		margin-right: .5em;
	}
	.logo span{
	    font-size: 125%;
	    line-height: 2.4;
	}
	#make{
		height: 1.5em;
		width: 2em;
		float: right;
		position: relative;
		margin: .75em 0;
	}
	#make.on i:nth-child(1),
	#make.on i:nth-child(3){
	    top: .57143em;
	}
	#main-nav{
	    top: 5.7142857em;
	}
	#main-nav.fixed{
	    top: 3.3333333em;
	}
}
@media only screen and (max-width: 480px){
	.logo span {
	    font-size: 112.5%;
	    line-height: 2.66667;
	}
}
/*头部通用样式*******************************************/









/*底部通用样式*******************************************/
footer{
	background-color: #fff;
	box-shadow: 0 -.25em .25em rgba(230,230,230,.5);
	padding-top: 2em;
	margin-top: 1em;
}
.foot {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 .5em;
    box-sizing: border-box;
}
.foot-left {
    width: 60%;
    float: left;
}
.foot-logo {
    display: block;
    margin-bottom: 1em;
}
.foot-logo img {
    height: 3em;
    float: left;
    margin-right: 1em;
}
.foot-logo span {
    font-size: 150%;
    line-height: 2;
    float: left;
}
.foot-text {
    font-size: 87.5%;
    line-height: 2;
    margin-bottom: .75em;
    color: #777;
}
.foot-right {
	float: right;
	width: 40%;
}
@media only screen and (max-width:640px){
	.foot-left{
		width: 100%;
	}
	.foot-right{
		display: none;
	}
}
.ewm{
	float: right;
}
.ewm span {
    display: block;
    text-align: center;
    line-height: 2;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.copyright {
    line-height: 2;
    margin-top: .75em;
    padding: .75em 0;
    border-top: 1px solid #eee;
    font-size: 87.5%;
}
.copyright a:hover {
	color: #e86975;
}
/*底部通用样式*******************************************/









/*左右侧通用样式*******************************************/
.left{
	float: left;
	width: 300px;
	padding: 1em;
	box-sizing: border-box;
	border-right: 1px solid #ddd;
}
.left h1{
	font-size: 150%;
	font-weight: normal;
	line-height: 2;
	text-align: center;
	background-image: -webkit-linear-gradient( 135deg, rgb(189, 120, 31) 0%, rgb(122, 74, 144) 35%, rgb(27, 37, 89) 100%);
	background-image: -moz-linear-gradient( 135deg, rgb(189, 120, 31) 0%, rgb(122, 74, 144) 35%, rgb(27, 37, 89) 100%);
	background-image: -ms-linear-gradient( 135deg, rgb(189, 120, 31) 0%, rgb(122, 74, 144) 35%, rgb(27, 37, 89) 100%);
	background-image: -o-linear-gradient( 135deg, rgb(189, 120, 31) 0%, rgb(122, 74, 144) 35%, rgb(27, 37, 89) 100%);
	color: #fff;
	margin-bottom: 1em;
}
.left-nav{
	margin-bottom: 1.5em;
}
.left-nav a{
	display: block;
	text-align: center;
	line-height: 2.5;
	color: #e86975;
	margin-top: .5em;
	font-size: 87.5%;
	background-color: #eee;
}
.left-nav a:nth-child(1){
	margin-top: 0;
}
.left-nav a:hover,
.left-nav a.hover{
	color: #eee;
	background-color: #e86975;
}
.left li {
    padding-left: 1.5em;
    line-height: 2.5;
    font-size: 87.5%;
    color: #666;
    max-height: 5em;
    overflow: hidden;
    position: relative;
}
.left li::before {
    content: ' ';
    width: .5em;
    height: .5em;
    box-sizing: border-box;
    border: 1px solid #aaa;
    position: absolute;
    left: 0;
    top: 1em;
}
.right{
	float: right;
	width: calc(100% - 300px);
	box-sizing: border-box;
	padding: 1em 1em 0;
}
.nowvisiting{
	line-height: 2.5;
	height: 2.5em;
}
.content{
	margin: 1em 0;
	min-height: 300px;
}
.list-article li{
	border-bottom: 1px dotted #ddd;
}
.list-article a{
	float: left;
	width: calc(100% - 100px);
	line-height: 3;
	font-size: 87.5%;
	box-sizing: border-box;
}
.list-article a:hover{
	color: #e86975;
	padding-left: .125em;
}
.list-article span{
	float: right;
	text-align: right;
	width: 100px;
	line-height: 3;
	color: #666;
	font-size: 87.5%;
}
.article-title{
	line-height: 2;
	font-size: 150%;
	margin-bottom: .5em;
}
.article-info {
    color: #aaa;
    font-size: 75%;
    margin: 1em auto;
    line-height: 2.5;
}
.content img{
	max-width: 100%;
}
.prev-next a {
	display: inline-block;
    line-height: 2.25;
    height: 2.25em;
    overflow: hidden;
    font-size: 87.5%;
    border-bottom: 1px solid #666;
    color: #666;
}
.prev-next a:hover{
	color: #e86975;
}
.cplist {
    width: calc(25% - .75em);
    margin-bottom: 1em;
    margin-left: 1em;
    float: left;
    box-sizing: border-box;
    border: 1px solid #efefef;
}
.cplist:nth-child(1),
.cplist:nth-child(5),
.cplist:nth-child(9){
    margin-left: 0;
}
.cplist a {
	width: 100%;
	position: relative;
	display: block;
	background-size: cover;
	background-position: center;
}
@media only screen and (max-width:768px){
	.right{
		width: 100%;
		margin-right: 0;
		border-right: none;
		padding: 1em 0;
	}
	.left{
		display: none;
	}
}
@media only screen and (max-width:540px){
	.cplist{
		width: calc(50% - .5em);
	}
	.cplist:nth-child(3),
	.cplist:nth-child(7),
	.cplist:nth-child(11){
	    margin-left: 0;
	}
}
/*左右侧通用样式*******************************************/





/*首页样式**********************************************/
.demo{
	padding-top: 2em;
}
.demo-title{
	text-align: center;
	padding-bottom: 1em;
}
.demo-title a{
	font-size: 150%;
	color: #333;
	position: relative;
	line-height: 2;
	display: inline-block;
}
.demo-title a:after{
	content: "";
	width: 2em;
	height: .125em;
	background-color: #e86975;
	position: absolute;
	left: calc(50% - 1em);
	bottom: 0;
	transition: .3s;
}
.demo-title a:hover{
	color: #e86975;
}
.demo-title a:hover:after{
	width: 100%;
	left: 0;
}
.news-list li{
    float: left;
    width: calc(33.33333% - 1em);
}
.news-list li:nth-child(2),
.news-list li:nth-child(3){
    margin-left: 1.5em;
}
.news-list a{
	display: block;
	box-shadow: 0 .25em .25em #e86975;
}
.news-list a:hover{
	box-shadow: 0 .25em .75em #e86975;
}
.news-list .imgs{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.news-list .txt{
	padding: 2em;
}
.txt small {
    display: block;
    font-size: 75%;
    line-height: 2;
    color: #e87965;
}
.txt p {
    color: #333;
    font-size: 125%;
    line-height: 1.25;
    height: 2.5em;
    overflow: hidden;
    margin: .25em 0;
}
.txt i {
    display: block;
    font-size: 75%;
    color: #999;
    line-height: 2;
}
.txt span {
    display: block;
    height: 6em;
    line-height: 2;
    overflow: hidden;
    font-size: 87.5%;
    color: #666;
}
.txt b {
    font-size: 75%;
    float: right;
    line-height: 2;
}
@media only screen and (max-width:768px){
	.news-list li{
		float: none;
		width: 100%;
	}
	.news-list li:nth-child(2),
	.news-list li:nth-child(3){
		margin-left: 0;
		margin-top: 1em;
	}
	.txt p{
		height: auto;
	}
	.txt span{
		height: 4em;
	}
}
.imgs-list{
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	box-sizing: border-box;
	border: 1px solid #1ff;
}
.imgs-list li{
    float: left;
    width: 25%;
    box-sizing: border-box;
    border: .5px solid #11ffff;
}
.imgs-list .img{
    width: 100%;
    position: relative;
    display: block;
    background-size: cover;
	background-position: center;
}
.img span{
    width: 100%;
    height: 2.5em;
    position: absolute;
    top: calc(50% - 1.25em);
    left: 0;
    text-align: center;
    line-height: 2.5;
	background-image: -webkit-linear-gradient( 135deg, rgb(189, 120, 31) 0%, rgb(122, 74, 144) 35%, rgb(27, 37, 89) 100%);
	background-image: -moz-linear-gradient( 135deg, rgb(189, 120, 31) 0%, rgb(122, 74, 144) 35%, rgb(27, 37, 89) 100%);
	background-image: -ms-linear-gradient( 135deg, rgb(189, 120, 31) 0%, rgb(122, 74, 144) 35%, rgb(27, 37, 89) 100%);
	background-image: -o-linear-gradient( 135deg, rgb(189, 120, 31) 0%, rgb(122, 74, 144) 35%, rgb(27, 37, 89) 100%);
    color: #11ffff;
    text-shadow: 0 0 .125em #1e9fff;
    transform: rotateX(90deg);
    transition: .3s;
    opacity: 0;
    overflow: hidden;
}
.img:hover span{
    transform: rotateX(0deg);
    opacity: 1;
}

/*地图*/
.iw_poi_title {color:#CC5522;font-size:14px;font-weight:bold;overflow:hidden;padding-right:13px;white-space:nowrap}
.iw_poi_content {font:12px arial,sans-serif;overflow:visible;padding-top:4px;white-space:-moz-pre-wrap;word-wrap:break-word}
#dituContent img, .contact-table img{max-width: none !important;}
#dituContent{
	width: 100%;
	height: 18em;
	border: 1px solid #ccc;
	border-radius: .25em;
	box-sizing: border-box;
}
.map{
    float: left;
	width: calc(50% - 1em);
	margin-right: 2em;
}
.contact {
    float: left;
	width: calc(50% - 1em);
}
.contact li {
	padding-left: 1.5em;
    line-height: 2.5;
    font-size: 87.5%;
    color: #666;
    max-height: 5em;
    overflow: hidden;
    position: relative;
}
.contact li:before{
	content: ' ';
	width: .5em;
	height: .5em;
	box-sizing: border-box;
	border: 1px solid #aaa;
	position: absolute;
	left: 0;
	top: 1em;
}
@media only screen and (max-width:768px){
	.map, .contact {
	    float: none;
		width: 100%;
	}
	.contact{
		margin-top: 1em;
	}
	.imgs-list li{
		width: 25%;
	}
	.imgs-list li:nth-child(9),
	.imgs-list li:nth-child(10){
		display: none;
	}
	.img span{
		font-size: 87.5%;
	    transform: rotateX(0deg);
	    opacity: 1;
	    top: auto;
		bottom: 0;
	}
	.news-list .imgs{
		width: 8em !important;
		height: 8em !important;
		float: left;
	}
	.news-list .txt{
		width: calc(100% - 8em);
		float: left;
		padding: 1em;
		box-sizing: border-box;
	}
	.txt p{
		font-size: 100%;
		line-height: 1.5em;
		height: 1.5em;
		margin: 0;
	}
	.txt span{
		font-size: 75%;
	}
	.txt small,
	.txt b{
		display: none;
	}
}
@media only screen and (max-width:640px){
	.imgs-list li{
		width: 33.33333%;
	}
	.imgs-list li:nth-child(9){
		display: block;
	}
	.img span{
		font-size: 75%;
	}
	#dituContent{
		margin-right: 0;
		margin-bottom: 1em;
	}
	#dituContent,
	.contact{
		float: none;
		width: 100%;
	}
	.contact li{
		max-height: none;
	}
}
/*首页样式**********************************************/


/*联系我们*/
/*联系我们*/



/*分页*/
.page{
	line-height: 3;
	text-align: right;
}
.page span{
	font-weight: bold;
	margin: 0 5px;
}
.page_list a{
	display: inline-block;
	line-height: 2;
	height: 2em;
	width: 2em;
	text-align: center;
	border: 1px solid rgba(40,120,230,.85);
	color: rgba(40,120,230,.85);
}
.page_list a.on,
.page_list a:hover{
	background-color: rgba(40,120,230,.85);
	color: #fff;
}
/*分页*/



/*人才招聘*/
/*人才招聘*/



/*详情*/
/*详情*/




@media only screen and (max-width: 900px){
}