body {
    font-family: 'Microsoft YaHei', 'SimHei', Arial, sans-serif;
}

ul,
li {
    list-style: none;
}

input:focus {
    outline: none;
}

a {
    color: #000;
    text-decoration: none;
    transition: all .3s linear;
}

a:hover,
a:active,
a:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    text-decoration:none;
}

*,
:before,
:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.p-10{
	padding: 10px;
}
.p-20{
	padding: 20px;
}
.p-30{
	padding: 30px;
}
.p-40{
	padding: 40px;
}
.p-50{
	padding: 50px;
}
.p-t-10{
	padding-top: 10px;
}
.p-t-20{
	padding-top: 20px;
}
.p-t-30{
	padding-top: 30px;
}
.p-t-40{
	padding-top: 40px;
}
.p-t-50{
	padding-top: 50px;
}
.p-b-10{
	padding-bottom: 10px;
}
.p-b-20{
	padding-bottom: 20px;
}
.p-b-30{
	padding-bottom: 30px;
}
.p-b-40{
	padding-bottom: 40px;
}
.p-b-50{
	padding-bottom: 50px;
}
.m-10{
	margin: 10px;
}
.m-20{
	margin: 20px;
}
.m-30{
	margin: 30px;
}
.m-40{
	margin: 40px;
}
.m-50{
	margin: 50px;
}
.m-t-10{
	margin-top: 10px;
}
.m-t-20{
	margin-top: 20px;
}
.m-t-30{
	margin-top: 30px;
}
.m-t-40{
	margin-top: 40px;
}
.m-t-50{
	margin-top: 50px;
}
.m-b-10{
	margin-bottom: 10px;
}
.m-b-20{
	margin-bottom: 20px;
}
.m-b-30{
	margin-bottom: 30px;
}
.m-b-40{
	margin-bottom: 40px;
}
.m-b-50{
	margin-bottom: 50px;
}
.text-center {
    text-align: center;
}
.text-right{
    text-align: right;
}
.text-nowrap-ellipsis,.text-nowrap-ellipsis-2,.text-nowrap-ellipsis-3,.text-nowrap-ellipsis-4,.text-nowrap-ellipsis-5{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.text-nowrap-ellipsis{
    -webkit-line-clamp: 1;
}
.text-nowrap-ellipsis-2{
    -webkit-line-clamp: 2;
}
.text-nowrap-ellipsis-3{
    -webkit-line-clamp: 3;
}
.text-nowrap-ellipsis-4{
    -webkit-line-clamp: 4;
}
.text-nowrap-ellipsis-5{
    -webkit-line-clamp: 5;
}
.header{
	position: relative;
}
.header .container{
	position: absolute;
	top: 0px;
	z-index: 1;
	left: 50%;
	margin-left: -625px;
}
.page-header{
	padding-bottom: 20px;
	margin: 0px 0 20px;
	border-bottom: 1px solid rgba(255,255,255,.2);
}
.searchBox{
	margin-top: 25px;
	background: rgba(255,255,255,.2);
	border-radius: 10px;
	position: relative;
}
.searchBox input{
	background: rgba(255,255,255,0);
	border:0px;
	padding: 10px 50px 10px 10px;
	color: #fff;
	font-size: 16px;
	width: 100%;
}
.searchBox a.iconfont{
	position: absolute;
	right: 10px;
	font-size: 30px;
	color: #fff;
	top: 0px;
}
.searchBox input::-webkit-input-placeholder{
	color: #fff;
}
.page-nav ul{
	padding: 0px;
}

.navbar li{
    line-height: 60px;
    position: relative;
    display: inline-block;
	margin: 0 25px;
    text-align: center;
    font-size: 18px;
}
.navbar li .caret{
	color: #fff;
}
.navbar li a{
    color: #fff;
}
.navbar li:after {
    content: "";
    width: 0;
    height: 3px;
    position: absolute;
    bottom: 10px;
    background-color: #7dd500;
    left: 0px;
    /*margin-left: -15px;*/
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
    opacity: 0;
	border-radius: 10px;
}
.navbar li:hover::after,
.navbar li.current::after {
    content: "";
    background-color: #7dd500;
    width: 100%;
    opacity: 1;
}
.navbar li .sub-menu {
    position: absolute;
	width: 180px;
	margin-left: -90px;
    left: 50%;
    right: 0px;
    top: 60px;
    background: #76bf0e;
    box-shadow: 0 5px 15px -4px rgba(0, 0, 0, .3);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    animation: ulDH 0.2s ease both;
    -webkit-animation: ulDH 0.2s ease both;
    display: none;
    z-index: 2;
	overflow: hidden;
}

.navbar li:hover .sub-menu {
    display: block;
}

.navbar li .sub-menu dt>a {
    display: block;
    font-size: 16px;
    color: #fff;
    line-height: 3;
    text-align: left;
	font-weight: normal;
	padding-left: 20px;
}

.navbar li .sub-menu dt>a:hover {
    background-color: #6aac0d;
    color: #fff;
}

@keyframes ulDH {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

@-webkit-keyframes ulDH {
    from {
        -webkit-transform: scaleY(0);
    }

    to {
        -webkit-transform: scaleY(1);
    }
}
.greyBg{
	background: #f5f5f5;
}
.more{
	padding: 5px 35px;
	border:1px solid #dfdfdf;
	color: #0959a0;
	background: #fff;
}
.more:hover{
	background-color: #0959a0;
	color: #fff;
}
.more .iconfont{
	font-size: 20px;
    vertical-align: middle;
}
.page-nav .tel{
	line-height: 60px;
	font-size: 18px;
    color: #fff;
    vertical-align: middle;
}
.page-nav .tel .iconfont{
	font-size: 24px;
	vertical-align: middle;
	margin-right: 5px;
}
section{
	margin: 60px 0px;
}
.item-list-sty1{
	padding-right: -35px;
}
.item-list-sty1 .col-md-4{
	padding-right:35px; 
}
.item-list-sty1 .item img{
	width: 100%;
	height: 218px;
	object-fit: cover;
	transition: all .3s;
}
.item-list-sty1 .item .summary{
	margin-top: 25px;
	margin-bottom: 50px;
	font-size: 16px;
	color: #7e7e7e;
    line-height: 1.8;
    position: relative;
    z-index: 0;
}
.item-list-sty1 .item .summary:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background:#e8e8e8;
    bottom: -25px;
    left: 0px;
    z-index: 1;
}
.item-list-sty1 .item:hover img{
	transform: scale(1.07);
}
.news-list-sty1 ul{
	padding: 0px;
}
.news-list-sty1 li{
	line-height: 65px;
	border-bottom: 1px solid #e8e8e8;
	position: relative;
}
.news-list-sty1 li a{
	padding-left: 35px;
	padding-right: 105px;
	font-size: 18px;
	color: #333;
}
.news-list-sty1 li .date{
	position: absolute;
	right: 0px;
	top:0px;
}
.news-list-sty1 li:before{
	content: "\e61b";
	position: absolute;
	left: 0px;
	top: 0px;
	font-size: 30px;
	color: #0959a0;
}
footer{
	background: #3d3d3d;
	padding: 40px;
	color: #c4c4c4;
}
footer .link {
	line-height: 48px;
	padding-left: 70px;
}
footer .link a{
	display: block;
	color: #c4c4c4;
	font-size: 16px;
}
footer .contact{
	/*line-height: 38px;*/
	padding-left: 60px;
}
footer .contact p{
	margin: 15px 0px;
}
footer .contact h4{
	font-size: 16px;
	margin-bottom: 20px;
}
footer .searchBox {
	border-radius: 0px;
}
footer .search img{
	margin-bottom: 5px;
}
footer .search p{
	font-size: 12px;
}
footer .searchBox a{
	background: #0959a0;
    width: 50px;
}
footer .searchBox a.iconfont{
	right: 0px;

}
footer .foot-copyright{
	margin-top: 45px;
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid #4e4e4e;
	line-height: 25px;
}
footer .foot-copyright a{
	color: #c4c4c4;
}
footer .foot-copyright .share{
	text-align: right;
}
footer .foot-copyright .share a{
	font-size: 18px;
	margin-left:10px; 
}

.elevator{
    display: none;
    position: fixed;
    right: 20px;
    bottom: 50px;
    color: #666666;
    z-index: 100;
}
.elevator i{
    font-size: 20px;
}
.elevator p{
    margin-top: 0px;
    margin-bottom: 0px;
}
.elevator .QR-code,.elevator .backtop,.elevator .tel{
    cursor:pointer;
    width: 60px;
    height: 60px;
    border:1px solid #cccccc;
    margin:5px 0px;
    background: #fff;
    text-align: center;
    border-radius: 5px;
}
.elevator .QR-code:hover,.elevator .backtop:hover,.elevator .tel:hover{
    background: #0959a0;
    color: #fff;
    border:1px solid #0959a0;
}
.elevator .backtop{
    height: 54px;
}
.elevator .QR-code i{
    line-height: 60px;
    font-size: 30px;
}
.code-pic{
    position: fixed;
    display: none;
    right: 90px;
    bottom: 55px;
    border: 1px solid #ddd;
    background: #fff;
    text-align: center;
    z-index: 101;
}
.code-pic p{
    margin-top:0px;
    margin-bottom:10px;
}
.elevator .tel i{
    line-height: 60px;
    font-size: 30px;
}
.tel-number{
    position: fixed;
    display: none;
    right: 70px;
    bottom: 179px;
    background: #fff;
    text-align: center;
    z-index: 99;
    background: #0959a0;
    color: #fff;
    border-radius: 5px;
    font-size: 20px;
    line-height: 60px;
    padding: 0px 15px;
}
.tel-number p{
    margin-top:0px;
    margin-bottom:10px;
}

.sub-header{
	height: 460px;
}
.sub-header.GuanYu,.sub-header.FuWu,.sub-header.ZheJiang,.sub-header.XinWen,.sub-header.RenLi,.sub-header.LianXi{
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 460px;
}
.sub-header.GuanYu{
	background-image: url(../images/sub-banner-1.jpg);
}
.sub-header.ZheJiang{
    background-image: url(../images/sub-banner-2.jpg);
}
.sub-header.FuWu{
    background-image: url(../images/sub-banner-3.jpg);
}
.sub-header.XinWen{
    background-image: url(../images/sub-banner-4.jpg);
}
.sub-header.RenLi{
    background-image: url(../images/sub-banner-5.jpg);
}
.sub-header.LianXi{
    background-image: url(../images/sub-banner-6.jpg);
}
.header-title {
	text-align: center;
	color: #fff;
}
.header-title h1{
	font-size: 30px;
	font-weight: bold
}
.header-title p{
	font-size: 18px;
	text-transform:uppercase;
}

.leftMenu{
	width: 240px;
	background: #f8f8f8;
}
.leftMenu .menuTop{
    height: 110px;
    width: 100%;
    background: #0959a0;
    color: #fff;
    background-image: url(../images/menuTop-bg.jpg);
}
.leftMenu .menuTop .topInfo{
    padding-top: 30px;
    padding-left: 25px;
}
.leftMenu .menuTop .topInfo h2{
    font-size: 24px;
    font-weight: normal;
    color: #fff;
    margin: 0px;
    position: relative;
}
.leftMenu .menuTop .topInfo h2:after{
    content: '';
    position: absolute;
    width: 60px;
    height: 5px;
    background-color: #fff;
    bottom: -20px;
    left: 0px;
}
.leftMenu .menuList a{
    line-height: 70px;
    display: block;
    padding-left: 30px;
    position: relative;
    transition: all .3s linear;
    color: #666;
    font-size: 16px;
}
.leftMenu .menuList a .iconfont{
    position: absolute;
    right: 15px;
    top: 0px;
    color: #c5c5c5;
    font-size: 24px;
    transition: all .3s linear;
}

.leftMenu .menuList a:hover,.leftMenu .menuList a.current{
    background: #f0f0f0;
    color: #0959a0;

}
.leftMenu .menuList a.current{
    font-weight: bold;
}
.leftMenu .menuList a:hover .iconfont, .leftMenu .menuList a.current .iconfont{
    color: #1d3a6c;
}

.crumbs{
    text-align: right;
    line-height: 50px;
    font-size: 12px;
    color: #999;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
}
.crumbs a{
    color: #666;
}
.crumbs a:hover{
    color: #1d3a6c;
}
.crumbs a .iconhome-fill{
    color: #999;
}
.crumbs .iconfont{
    margin:0px 3px;
    vertical-align: -2px;
}
.crumbs .title{
	position: absolute;
	left: 0px;
	top: 0px;
	font-size: 20px;
	font-weight: bold;
	color: #333;
	border-bottom: 3px solid #0959a0;
}
.content p{
	color: #333;
    font-size: 16px;
    line-height: 2em;
    margin: 10px 0px;
    text-indent: 2em;
    text-align: justify;
}
.content img{
	max-width: 900px;
	display: block;
	margin: 20px auto;
}
.content h3{
	border-left: 5px solid #76bf0e;
    padding-left: 15px;
    margin: 30px auto;
    font-size: 18px;
    font-weight: bold;
}

.content .img-list img{
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.content .img-list p{
    text-align: center;
    text-indent: 0em;
}
.content table{
    width: 100%;
    font-size: 16px;
    line-height: 2em;
}
.content table tr td{
    padding:10px;
    border-bottom: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
}
.content table tr td:last-child{
    border-right: 1px solid #e8e8e8;
}
.content table tbody .firstRow{
    background: #e8e8e8;
}
.content ul li{
    list-style: unset;
    font-weight: bold;
}
.content ul li p{
    text-indent: 0em;
}
.list-sty-1{
    padding: 0px;
}
.list-sty-1 li{
    margin-bottom: 40px;
    /*height: 240px;*/
    overflow: hidden;
}
.list-sty-1 li img{
    float: left;
    width: 180px;
    height: 240px;
    object-fit: cover;
    margin-right: 40px;
}
.list-sty-1 li .right{
    float: left;
    width: 690px;
    border-bottom: 1px solid #e8e8e8;
}
.list-sty-1 li .right h3{
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 0px;
    margin-bottom: 20px;
}
.list-sty-1 li .right .subTitle{
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.list-sty-1 li .right .summary{
    font-size: 16px;
    color: #7e7e7e;
    margin-top: 30px;
}

.list-sty-2{
    padding: 0px;
}
.list-sty-2 li{
    margin-bottom: 40px;
    height: 180px;
    overflow: hidden;
}
.list-sty-2 li img{
    float: left;
    width: 238px;
    height: 178px;
    border:1px solid #e8e8e8;
    object-fit: cover;
    margin-right: 40px;
}
.list-sty-2 li .right{
    float: left;
    width: 640px;
}
.list-sty-2 li .right h3{
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 0px;
    margin-bottom: 20px;
}

.list-sty-2 li .right .extended{
    font-size: 16px;
    color: #7e7e7e;
}
.list-sty-2 li .right .summary{
    font-size: 16px;
    color: #7e7e7e;
    margin-top: 10px;
    line-height: 2;
}
.list-sty-2 li .right .date{
    font-size: 12px;
    color: #999;
}

.detail-top h2{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.8;
}
.detail-top p{
    color: #7e7e7e;
    margin-top: 10px;
    line-height: 2;
}
.zhaopin-list a{
    margin-bottom: 20px;
    display: block;
}
.zhaopin-list li{
    border:0px;

    background: #f8f8f8;
    font-size: 18px;
    
}
.zhaopin-list li:before{
    content:"";
    width: 5px;
    height: 18px;
    left: 0px;
    background: #7dd500;
    position: absolute;
    top: 50%;
    margin-top: -9px;
}
.zhaopin-list li span.iconfont{
    position: absolute;
    right: 10px;
    font-size: 24px;
    top:7px;
}

.zhaopin-detail p{
    font-size: 16px;
    line-height: 2;
}
.zhaopin-detail  .tag span{
    margin-right: 50px;
}
.zhaopin-detail h3 {
    margin: 20px auto;
    font-size: 18px;
    font-weight: bold;
}

/*@media (min-width: 992px) {
    .container {
        width: 1280px;
    }
}*/
@media (min-width: 992px) {
    .container {
        width: 1400px;
    }
}
@media screen and (min-width: 1330px) and (max-width: 1440px) {
  body {
    zoom: 97%;
    /*-webkit-transform-origin:center top;
    -webkit-transform:scale(0.99);*/
  }
}
@media screen and (min-width: 1220px) and (max-width: 1330px) {
  body {
    zoom: 95%;
    /*-webkit-transform-origin:center top;
    -webkit-transform:scale(0.99);*/
  }
}
@media screen and (min-width: 1110px) and (max-width: 1220px) {
  body {
    zoom: 85%;
    /*-webkit-transform-origin:center top;
    -webkit-transform:scale(0.99);*/
  }
}
@media screen and (min-width: 992px) and (max-width: 1110px) {
  body {
    zoom: 80%;
    /*-webkit-transform-origin:center top;
    -webkit-transform:scale(0.99);*/
  }
}