@charset "utf-8";
/*公用的*/
/*禁止复制*/
  *{
     -moz-user-select:none; /* Firefox */
     -webkit-user-select:none; /* WebKit内核 */
     -ms-user-select:none; /* IE10及以后 */
     -khtml-user-select:none; /* 早期浏览器 */
     -o-user-select:none; /* Opera */
     user-select:none; /* CSS3属性 */
  }

html {
	min-width: 1200px;
}
body {
	overflow-x: hidden;
	overflow-y: auto;
}
body, p, form, textarea, h1, h2, h3, h4, h5, dl, dd {
	margin: 0px;
}
input, button, ul, ol {
	margin: 0px;
	padding: 0px;
}
body, input, button, form {
	font-size: 14px;
	line-height: 28px;
	font-family: "microsoft yahei", 'PingFang SC', 'Myriad Pro', "AvantGarde Bk BT", "Arial", 'Helvetica Neue', 'Helvetica', 'sans-serif';
	color: #333333;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 14px;
	font-weight: normal;
}
ul, ol, li {
	list-style: none;
}
input {
	background: none;
	border: 0 none;
}
img, iframe {
	border: 0px;
}
em, i {
	font-style: normal;
}
button, input, select, textarea {
	font-size: 100%;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.red {
	color: #ba292e;
}
.fl, .left {
	float: left;
}
.fr, .right {
	float: right;
}
.tac {
	text-align: center;
}
.tar {
	text-align: right;
}
.poa {
	position: absolute;
}
.por {
	position: relative;
}
.hidden {
	display: none;
}
a {
	color: #333333;
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	color: #0153ba;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
.ease, .ease * {
	-webkit-transition: all ease 300ms;
	-moz-transition: all ease 300ms;
	-ms-transition: all ease 300ms;
	-o-transition: all ease 300ms;
	transition: all ease 300ms;
}
.noease, .noease * {
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
}
:-moz-placeholder {
color: #aaa;
}
::-moz-placeholder {
color: #aaa;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
color: #aaa;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
color: #aaa;
}
.wrap{
	width: 1200px;
	margin: 0 auto;
}
/*头部*/
header{
    width: 100%;
    height: 110px;
    background: rgba(0, 0, 0, .6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
header .top{
	height: 33px;
	border-bottom: 1px solid rgba(255, 255, 255,.1);
}
header .top .wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .top .welcome{
	font-size: 12px;
	font-weight: 400;
	color: #fff;
	line-height: 33px;	
}
header .top .box{
	width: 270px;
	display: flex;
	justify-content: space-between;
	align-items: center;	
}
header .top .box div{
	display: flex;
	align-items: center;	
    cursor: pointer;
}
header .top .box div img{
	display: block;
	margin-right: 5px;
}
header .top .box div p{
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	line-height: 33px;	
}

/*导航*/
.caidan{

}
.caidan .wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.caidan .logo img{
	width: 272px;
	display: block;
}
.nav {
	width: 75%;
	height: 77px;
	position: relative;
	z-index: 20;
}
.nav ul{
	display: inline-block;
}
.nav li {
	float: left;
	width: 112px;
	height: 77px;
	position: relative;
}

.nav li > a {
	display: block;
	height: 77px;
	line-height: 77px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	transition: none;
	transition: background .5s ease;
}

.nav .drop {
	position: absolute;
	left: 0;
	right: 0;
	top: 75px;
	padding: 0 0 0 0;
	background: rgba(0, 0, 0, .4);
	display: none;
}

.nav .drop dd {
	line-height: 45px;
	border-top: 1px solid #ffffff85;
}

.nav .drop dd:first-child {
	border-top: 0;
}

.nav .drop a {
	display: block;
	color: #fff;
	text-align: center;
}

.nav .drop a:hover {
	background: #0153ba7a;
}

.nav li.active > a {height: 73px;line-height: 77px;border-bottom: 3px solid #fff;color: #fff;}

.nav li.current > a {
	height: 73px;
	line-height: 77px;
	border-bottom: 3px solid #fff;
	color: #fff;
}


/*搜索*/
.search01{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	display: none;
}
.search01 .zzc{
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
	position: absolute;
	top: 0
}
.search01 .box{
 width: 400px;
 background:#fff;
 position: relative;
    border-radius: 8px;
}

.search01 .box .stxt {
	    width: 325px;
	    height: 55px;
	    line-height: 55px;
	    display: block;
	    text-indent: 18px;
	    color: #999;
	    outline: none;
	    /* background: pink; */
	    font-size: 16px;
}
.search01 .box .sbtn {
	width: 75px;
	height: 55px;
	display: block;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	font-size: 16px;
	outline: medium;
	background: #255fbb;
	color: #fff;
    border-radius:0 8px 8px 0;
}


/*微信二维码*/
.wzewm01{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, .4);
	display: none;
}
.wzewm01 .box{

}
.wzewm01 .box img{
	width: 200px;
	height: 200px;
	display: block;
	margin:0 auto;
}
.wzewm01 .box p{
	width: 100%;
	font-size: 18px;
	line-height: 55px;
	color: #fff;
	text-align: center;
}


/*更多信息，请与我们联系*/
.info{
	padding:60px 0 36px;
}
.info h4{
	text-align: center;
	font-size: 36px;
	font-weight: bold;
	color: #333333;
	line-height: 42px;
}
.info h4 span{
	color: #0153BA;
}
.info p{
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;
	color: #999999;
	line-height: 36px;	
}
.info a{
	display: block;
	text-align: center;
	width: 150px;
	height: 40px;
	line-height: 40px;
	background: #0153BA;
	border-radius: 20px;
	font-size: 18px;
	font-weight: 400;
	color: #fff;
	margin:18px auto 0;	
}
.info a:hover{
color: #fff;
	font-weight: bold;
}


/*底部*/
footer{
	width: 100%;
}
footer .db{
	margin-top: -1px;
	background: #333333;
}
footer .db .db_nav{
	display: flex;
	justify-content: space-around;	
	height: 88px;
	border-bottom: 1px solid rgba(255, 255, 255, .4);
}
footer .db .db_nav li a{
font-size: 16px;
font-weight: 400;
color: #FFFFFF;
line-height: 88px;
}
footer .db .db_nav li a:hover{
	font-weight: bold;
}
footer .db .db_con{
	padding:50px 0 36px;
	display: flex;
	justify-content: space-between;
}
footer .db .db_con .con1{

}
footer .db .db_con .con1 .db_logo{
	width: 196px;
	display: block;
	margin-bottom: 40px;
}
footer .db .db_con .con1 .tel{
	
}
footer .db .db_con .con1 .tel p{
	font-size: 14px;
	font-weight: 400;
	color: #EEEEEE;	
	display: flex;
	align-items: center;
	justify-content: center;
}
footer .db .db_con .con1 .tel p img{
	margin-right: 6px;
}
footer .db .db_con .con1 .tel h4{
	font-size: 24px;
	font-weight: bold;
	color: #EEEEEE;	
	line-height: 28px;
	text-align: center;
}

footer .db .db_con .con2{
width: 262px;
}
footer .db .db_con .con2 .tit{
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, .16);	
	padding-bottom: 16px;
}
footer .db .db_con .con2 .tit h4{
	font-size: 24px;
	font-weight: 400;
	color: #FFFFFF;	
	line-height: 28px;
}
footer .db .db_con .con2 .tit p{
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, .3);	
	text-transform: uppercase;
	line-height: 28px;
}
footer .db .db_con .con2 ul{
	padding-top: 18px;
}
footer .db .db_con .con2 ul li{
	font-size: 14px;
	font-weight: 400;
	color: #EEEEEE;
}

footer .db .db_con .con3{
width: 265px;
}
footer .db .db_con .con3 ul{
	display: flex;
	justify-content: space-around;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, .16);
}
footer .db .db_con .con3 ul li{
	position: relative;
}
footer .db .db_con .con3 ul li a{
	width: 40px;
	height: 40px;
	border: 1px solid #FFFFFF;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
footer .db .db_con .con3 ul li:hover .ewm{
	display: block;
}
footer .db .db_con .con3 ul li a img{
	
}
footer .db .db_con .con3 ul li .ewm{
	display: none;
	position: absolute;
	bottom: 34px;
	left: -45px;
	background: url(../images/bj04.png) no-repeat;
	width: 129px;
	height: 127px;
}
footer .db .db_con .con3 ul li .ewm img{
	
width: 92px;
	
height: 92px;
	
margin-top: 14px;
	
margin-left: 18px;
}
footer .db .db_con .con3 .copyright{
	padding-top: 20px;
}
footer .db .db_con .con3 .copyright p,footer .db .db_con .con3 .copyright p a{
font-size: 14px;
font-weight: 400;
color: #EEEEEE;
line-height: 28px;
}
.mzsm{
width: 100%;
padding:15px 0;
background: #2D2C29;
font-size: 14px;
font-weight: 400;
color: #AAAAAA;	
line-height: 24px;
text-align: center;
}	

/*右边悬浮框*/
.toolbar {
	width: 52px;
	position: fixed;
	right: 1%;
	top: 50%;
	margin-top: -115px;
	z-index: 999;
}

.toolbar dd {
	width: 51px;
	height: 51px;
	margin-bottom: 1px;
	position: relative;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	margin-top: 4px;
	border: #ebebeb solid 1px;
	background-color: #fff;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}

.toolbar dd i {
	width: 51px;
	height: 51px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
	text-align: center;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}

.toolbar dd i span {
	width: 35px;
	height: 35px;
	display: block;
	margin: 8px 0 0 8px;
	background: url(../images/rightfixicon.png) no-repeat 0 0;
}

.toolbar dd.gottop {
	display: none;
}

.toolbar .slide-tel {
	display: block;
	width: 0;
	height: 53px;
	line-height: 53px;
	font-size: 24px;
	font-weight: bold;
	color: #FFF;
	position: absolute;
	padding: 0 0 0 53px;
	top: -1px;
	right: -2px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	overflow: hidden;
}

.toolbar .pop {
	position: absolute;
	right: 90px;
	top: -65px;
	background: #0153ba;
	display: none;
}

.toolbar .pop-code {
	width: 160px;
}

.toolbar .pop-code img {
	width: 120px;
	height: 120px;
	display: block;
	padding: 20px 20px 0;
}

.toolbar .pop-code h3 {
	height: 52px;
	line-height: 26px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	white-space: nowrap;
}

.toolbar .pop-code h3 b {
	display: block;
	font-size: 14px;
	font-weight: normal;
}

.toolbar .qq span {
	background-position: -35px -47px;
}

.toolbar .qq a {
	width: 52px;
	height: 52px;
	cursor: pointer;
	display: block;
}

.toolbar .qq:hover {
	background-color: #0153ba;
	border-radius: 100%;
}

.toolbar .qq:hover span {
	background-position: 0 -47px;
}

.toolbar .tel span {
	background-position: -35px 0;
}

.toolbar .tel:hover {
	background: #0153ba;
}

.toolbar .tel:hover span {
	background-position: 0 0;
}

.toolbar .code span {
	background-position: -35px -95px;
}

.toolbar .code:hover {
	background-color: #0153ba;
	border-radius: 100%;
}

.toolbar .code:hover span {
	background-position: 0 -95px;
}

.toolbar .fhdb span {
	background-position: -35px -142px;
}

.toolbar .fhdb:hover {
	background-color: #0153ba;
	border-radius: 100%;
}

.toolbar .fhdb:hover span {
	background-position: 0 -142px;
}

.toolbar dd:hover {
}


/*tctc*/
.tctc {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	display: none;
}

.tctc .popup {
	width: 644px;
	height: 285px;
	background: #0153ba;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -210px;
	margin-left: -322px;
	z-index: 99999;
	border: 1px solid #ffffff;
	box-shadow: 2px 0 20px rgba(0, 0, 0, 0.32);
}

.tctc .clx {
	width: 36px;
	height: 36px;
	position: fixed;
	top: 50%;
	left: 50%;
	box-shadow: 2px 0 20px rgba(0, 0, 0, 0.32);
	border-radius: 36px;
	margin-top: -245px;
	background: url(../images/clx.png)no-repeat center #2d2d2d7a;
	margin-left: 322px;
}

.tctc .ptel {
	margin: 34px 0 0 24px;
}

.tctc .ptel img {
	width: 300px;
}

.tctc .ptel h2 {
	color: #fff;
	background: url(../images/inquiry_tel.png)no-repeat center left;
	font-weight: normal;
	font-size: 16px;
	padding-left: 36px;
	background-size: 26px;
}

.tctc .ptel h2 b {
	font-size: 22px;
}

.tctc .fr {
	width: 302px;
}

.tctc .fr .main {
	margin: 30px 38px 0 0;
}

.tctc .fr .main .tit {
	color: #fff;
	margin-bottom: 18px;
}

.tctc .fr .main .tit h2 {
	font-size: 20px;
	line-height: 28px;
}

.tctc .fr .main .tit h3 {
	font-size: 14px;
	font-weight: normal;
	line-height: 22px;
	opacity: 0.6;
}

.tctc .fr .main .txt {
	width: 100%;
	height: 40px;
	line-height: 40px;
	background: #fff;
	border: 0;
	color: #999999;
	text-indent: 1em;
	outline: medium;
}

.tctc .fr .main input {
	margin-bottom: 10px;
}

.tctc .fr .main .submit {
	width: 100%;
	height: 40px;
	border: 0;
	cursor: pointer;
	color: #FFF;
	background: #f39c18;
	display: block;
	margin: 0 auto;
	text-align: center;
	outline: medium;
}
.zx01 {
    animation: zitc 2s infinite;
}
@keyframes shine {
	0% {
		background-position-x: 400%;
	}

	50% {
		background-position-x: 0%;
	}

	100% {
		background-position-x: -400%;
	}
}

@keyframes jelly {

	25% {
		transform: scale(0.9, 1.1);
	}

	50% {
		transform: scale(1.1, 0.9);
	}

	75% {
		transform: scale(0.95, 1.05);
	}
}
@keyframes hue {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes zitc{
	0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
	20% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    25% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    75% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}