html, body {
	font-family: '微软雅黑', sans-serif;
	font-size: 100%;
	background: #FFf;
	overflow-x: hidden;
}
body a {
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}
img {
	max-width: 100%;
	/*height:auto !important;*/
}
/*-----start-header----*/
.header {
	position: fixed;
	z-index: 123456;
	width: 100%;
}
.logo {
	float: left;
	margin-top: 15px;
}
.logo a {
	color: #303030;
	font-weight: 200;
	text-transform: uppercase;
	margin-top: 0.8em;
}
.logo a:hover {
	text-decoration: none;
}
.logo320 {
	display: none;
}
/*----navbar-nav----*/
.top-header {
	background-color: rgba(3,92,172,0.9);
	border-bottom: 1px solid rgba(137,150,240,0.5);
}
.top-nav ul li a {
	color: #FFFFFF;
	padding: 0.2em 1.5em;
	font-size: 0.875em;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	position: relative;
	font-weight: 900;
}
.top-nav ul li .sons {
	display: none;
	width: 100%;
	position: absolute;
	left: 0;
	padding-bottom: 12px;
	background: #fff;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
	overflow: hidden;
	padding-top: 6px;
	box-shadow: 0 0 2px #ccc inset;
}
.top-nav ul li .sons a {
	display: block;
	width: 100%;
	margin: 0 auto;
	line-height: 28px;
	border-bottom: 1px solid #f2f2f2;
	padding: 2px 0;
	font-size: 14px;
	font-weight: normal;
}
.top-nav ul li .sons a span {
	width: 96%;
	display: block;
	line-height: 28px;
	border-radius: 4px;
	color: #999;
	font-size: 14px;
	text-align: center;
	margin: 0 auto;
}
/* 顶部banner容器 */
.about-banner{
    width:100%;
    height:300px;
    background:url(/public/index/images/about_banner.jpg) center/cover no-repeat;
    position:relative;
}
/* 面包屑 */
.about-bread{
    padding:15px 15px;
    font-size:14px;
    color:#666;
}
.about-bread a{
    color:#00479d;
    text-decoration:none;
}
/* banner右侧切换按钮组 */
.about-tab-wrap{
    position:absolute;
    right:4%;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:18px;
}
.about-tab-item{
    width:160px;
    height:45px;
    line-height:45px;
    text-align:center;
    border:1px solid #fff;
    color:#fff;
    font-size:16px;
    position:relative;
}
.about-tab-item::after{
    content:"";
    position:absolute;
    right:-13px;
    top:0;
    width:13px;
    height:100%;
    background:#8fc320;
}
.about-tab-item.active{
    background:#8fc320;
    border-color:#8fc320;
}
/* 公司简介主体区域 */
.about-main{
    max-width:1200px;
    margin:0 auto;
    padding:40px 15px;
    display:grid;
    grid-template-columns:calc(100% - 320px) 300px;
    gap:35px;
}
.about-text h2{
    font-size:26px;
    color:#222;
    margin-bottom:20px;
    padding-bottom:10px;
    border-bottom:1px solid #eee;
}
.about-text p{
    font-size:15px;
    line-height:1.8;
    color:#444;
    margin-bottom:16px;
    text-indent:2em;
}
.about-right-img{
    border:1px solid #ddd;
    min-height:340px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#999;
}
.about-right-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}
/* 研发实力板块 */
.dev-wrap{
    background:#f6f7f9;
    padding:50px 0;
}
.dev-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 15px;
}
.dev-title{
    font-size:22px;
    color:#222;
    margin-bottom:12px;
}
.dev-desc{
    color:#444;
    margin-bottom:25px;
    font-size:15px;
}
.dev-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}
.dev-card{
    background:#fff;
    overflow:hidden;
}
.dev-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
}
.dev-card p{
    text-align:center;
    padding:8px 0;
    font-size:14px;
    color:#555;
    margin:0;
}
/* 新闻列表页面专属样式，不干扰全局 */
.news-list-wrap{
    max-width:1200px;
    margin:0 auto;
    padding:40px 15px;
}
.news-item{
    display:flex;
    gap:30px;
    padding:30px 0;
    border-bottom:1px solid #eee;
}
.news-item-left{
    width:260px;
    flex-shrink:0;
}
.news-item-left img{
    width:100%;
    height:160px;
    object-fit:cover;
    display:block;
}
.news-item-right{
    flex:1;
    position:relative;
    padding-right:70px;
}
.news-date-box{
    position:absolute;
    right:0;
    top:0;
    text-align:center;
}
.news-date-num{
    font-size:32px;
    color:#223355;
    font-weight:bold;
    line-height:1;
}
.news-date-text{
    font-size:13px;
    color:#777;
}
.news-item-right h3{
    font-size:18px;
    color:#222;
    margin-bottom:12px;
}
.news-item-right h3 a{
    color:#222;
    text-decoration:none;
}
.news-item-right h3 a:hover{
    color:#00479d;
}
.news-desc{
    font-size:14px;
    color:#666;
    line-height:1.7;
    margin-bottom:15px;
}
.news-readmore{
    display:inline-block;
    padding:8px 22px;
    background:#fff;
    border:1px solid #ddd;
    color:#223355;
    text-decoration:none;
    position:relative;
    font-size:14px;
}
.news-readmore::after{
    content:"";
    position:absolute;
    right:-12px;
    top:0;
    width:12px;
    height:100%;
    background:#8fc320;
}
/* 分页样式 */
.pagination{
    display:flex;
    justify-content:center;
    gap:8px;
    margin:40px 0 20px;
    list-style:none;
}
.pagination li a,
.pagination li span{
    display:inline-block;
    width:34px;
    height:34px;
    line-height:34px;
    text-align:center;
    border:1px solid #ddd;
    color:#223355;
    text-decoration:none;
}
.pagination li.active span{
    background:#8fc320;
    color:#fff;
    border-color:#8fc320;
}
.pagination li a:hover{
    background:#f0f0f0;
}
/* 新闻详情专属样式 */
.news-detail-container{
    max-width:1200px;
    margin:0 auto;
    padding:20px 15px 40px;
    display:grid;
    grid-template-columns:calc(100% - 280px) 260px;
    gap:40px;
}
/* 面包屑 */
.news-bread{
    max-width:1200px;
    margin:0 auto;
    padding:10px 15px;
    font-size:12px;
    color:#777;
}
.news-bread a{
    color:#333;
    text-decoration:none;
}
/* 左侧正文区域 */
.news-main{
    width:100%;
}
.news-title{
    font-size:22px;
    color:#222;
    text-align:center;
    padding-bottom:12px;
    border-bottom:1px solid #eee;
    margin-bottom:15px;
}
.news-time{
    text-align:center;
    font-size:13px;
    color:#777;
    margin-bottom:25px;
}
.news-content p{
    font-size:14px;
    line-height:1.8;
    color:#333;
    margin-bottom:16px;
    text-indent:2em;
}
.news-content img{
    width:100%;
    height:auto;
    display:block;
    margin:20px 0;
}
/* 上下分页 */
.news-page-nav{
    display:flex;
    justify-content:space-between;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #eee;
}
.news-page-nav a{
    color:#333;
    text-decoration:none;
    font-size:14px;
}
.news-page-nav p{
    font-size:12px;
    color:#777;
    margin-top:4px;
}
/* 右侧相关新闻 */
.news-side h4{
    font-size:16px;
    color:#222;
    padding-bottom:10px;
    border-bottom:1px solid #eee;
    margin-bottom:20px;
}
.rel-news-list{
    list-style:none;
}
.rel-news-item{
    margin-bottom:22px;
}
.rel-news-item img{
    width:100%;
    height:140px;
    object-fit:cover;
    display:block;
    margin-bottom:8px;
}
.rel-news-item a{
    font-size:13px;
    color:#222;
    text-decoration:none;
    display:block;
    line-height:1.5;
}
.rel-news-item a:hover{
    color:#00479d;
}
.rel-news-date{
    font-size:12px;
    color:#888;
    margin-top:4px;
}
/* 联系我们页面专属样式 */
.contact-bread{
    max-width:1200px;
    margin:0 auto;
    padding:10px 15px;
    font-size:12px;
    color:#777;
}
.contact-bread a{
    color:#333;
    text-decoration:none;
}
/* 地图+联系方式一行区域 */
.contact-top-wrap{
    max-width:1200px;
    margin:0 auto;
    padding:0 15px 40px;
    display:grid;
    grid-template-columns:62% 36%;
    gap:2%;
}
.contact-map-box img{
    width:100%;
    height:auto;
    display:block;
}
.contact-info-box{
    background:#f6f6f6;
    padding:30px 25px;
}
.contact-info-box h3{
    font-size:20px;
    color:#222;
    margin-bottom:18px;
}
.contact-info-item{
    font-size:14px;
    color:#444;
    margin-bottom:10px;
    line-height:1.7;
}
.contact-qrcode{
    margin-top:20px;
}
.contact-qrcode img{
    width:140px;
    height:140px;
}
/* 留言表单区域 */
.contact-form-wrap{
    background:#f6f6f6;
    padding:40px 15px;
}
.contact-form-container{
    max-width:1200px;
    margin:0 auto;
}
.contact-form-title{
    font-size:20px;
    color:#222;
    margin-bottom:12px;
}
.contact-form-desc{
    font-size:13px;
    color:#666;
    margin-bottom:30px;
}
.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-bottom:20px;
}
.form-item label{
    font-size:13px;
    color:#333;
    display:block;
    margin-bottom:6px;
}
.form-item input,
.form-item textarea{
    width:100%;
    height:42px;
    border:1px solid #ddd;
    padding:0 12px;
    outline:none;
    font-size:14px;
}
.form-item textarea{
    height:100px;
    padding:10px 12px;
    resize:none;
}
.submit-btn{
    background:#00b350;
    color:#fff;
    border:none;
    width:110px;
    height:42px;
    font-size:15px;
    cursor:pointer;
    margin-top:8px;
}
/* 面包屑 */
.pro-bread{
    max-width:1200px;
    margin:0 auto;
    padding:10px 15px;
    font-size:12px;
    color:#777;
}
.pro-bread a{
    color:#333;
    text-decoration:none;
}
/* 主体容器 左右分栏 */
.pro-wrap{
    max-width:1200px;
    margin:0 auto;
    padding:20px 15px 40px;
    display:grid;
    grid-template-columns:260px calc(100% - 280px);
    gap:20px;
}
/* 左侧侧边栏 */
.pro-left{
    background:#f6f7f9;
}
.left-menu-block{
    margin-bottom:25px;
}
.left-menu-title{
    background:#0050b3;
    color:#fff;
    font-size:16px;
    padding:12px 18px;
    font-weight:bold;
}
.left-menu-list{
    list-style:none;
    padding-left: 0;          /* 移除整个列表的左侧内边距 */
    margin: 0;
}
.left-menu-list li{
    border-bottom:1px solid #eee;
    padding-left:0 !important; /* 左侧内边距清零，顶到头 */
}
.left-menu-list li a{
    display:block;
    padding:10px 18px;
    color:#333;
    text-decoration:none;
    font-size:14px;
    
}
.left-menu-list li a:hover,
.left-menu-list li a.active{
    background:#e8f0fc;
    color:#0050b3;
    
}
/* 右侧产品展示区 */
.pro-right{
}
.pro-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:35px;
}
.pro-card{
    background:#fff;
    border:1px solid #eee;
}
.pro-card img{
    width:100%;
    height:160px;
    object-fit:contain;
    display:block;
    padding:8px;
}
.pro-card p{
    text-align:center;
    padding:10px 8px;
    font-size:13px;
    color:#333;
    margin:0;
    line-height:1.5;
}
.pro-card a{
    text-decoration:none;
}
/* 分页 */
.pro-pagination{
    display:flex;
    justify-content:center;
    gap:6px;
    list-style:none;
    padding:0;
}
.pro-pagination li a,
.pro-pagination li span{
    display:inline-block;
    width:32px;
    height:32px;
    line-height:32px;
    text-align:center;
    border:1px solid #ddd;
    color:#333;
    text-decoration:none;
}
.pro-pagination li.active span{
    background:#0050b3;
    color:#fff;
    border-color:#0050b3;
}
/* 产品详情页专属样式 */
.pro-detail-wrap{
    max-width:1200px;
    margin:0 auto;
    padding:20px 15px 50px;
}
/* 面包屑 */
.pro-bread{
    max-width:1200px;
    margin:0 auto;
    padding:10px 15px;
    font-size:12px;
    color:#777;
}
.pro-bread a{
    color:#333;
    text-decoration:none;
}
/* 顶部大图+右侧信息区域 */
.pro-top-box{
    display:grid;
    grid-template-columns:52% 46%;
    gap:2%;
    margin-bottom:30px;
}
/* 左侧大图 */
.pro-big-img img{
    width:100%;
    height:auto;
    display:block;
}
/* 下方缩略图列表 */
.pro-thumb-list{
    display:flex;
    gap:12px;
    margin-top:12px;
}
.pro-thumb-list img{
    width:calc(25% - 9px);
    height:80px;
    object-fit:cover;
    border:1px solid #eee;
    cursor:pointer;
}
/* 缩略图激活边框高亮 */
.pro-thumb-list img.active{
    border:2px solid #0050b3;
}
/* 右侧产品信息 */
.pro-info h2{
    font-size:20px;
    color:#222;
    margin-bottom:15px;
}
.pro-desc-text{
    font-size:14px;
    color:#555;
    line-height:1.7;
    margin-bottom:20px;
}
.pro-info-item{
    display:flex;
    align-items:center;
    font-size:14px;
    color:#444;
    margin-bottom:10px;
    gap:8px;
}
.pro-info-item i{
    color:#0050b3;
}
.pro-btn-group{
    margin-top:25px;
    display:flex;
    gap:15px;
}
.btn-consult{
    background:#0050b3;
    color:#fff;
    border:none;
    padding:9px 24px;
}
.btn-detail{
    border:1px solid #ccc;
    background:#fff;
    padding:9px 24px;
    color:#333;
}
/* 产品详情板块 */
.section-title{
    font-size:18px;
    color:#222;
    margin:40px 0 20px;
    display:flex;
    align-items:center;
    gap:8px;
}
.section-title span{
    width:24px;
    height:24px;
    background:#0050b3;
    display:inline-block;
}
.pro-detail-text p{
    font-size:14px;
    line-height:1.8;
    color:#444;
    margin-bottom:12px;
}
.pro-param-list p{
    font-size:14px;
    line-height:1.7;
    color:#444;
    margin:6px 0;
}
/* 相关产品区域 */
.rel-pro-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}
.rel-pro-head a{
    color:#0050b3;
    font-size:14px;
    text-decoration:none;
}
.rel-pro-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.rel-pro-card img{
    width:100%;
    height:160px;
    object-fit:cover;
    display:block;
}
.rel-pro-card p{
    text-align:center;
    padding:10px 0;
    font-size:14px;
    color:#333;
    margin:0;
}
/* 品牌优势四宫格 */
.adv-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:20px;
}
.adv-item{
    display:flex;
    gap:15px;
    align-items:flex-start;
}
.adv-icon{
    width:44px;
    height:44px;
    background:#0050b3;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
}
.adv-text h4{
    font-size:16px;
    color:#222;
    margin:0 0 8px;
}
.adv-text p{
    font-size:13px;
    color:#555;
    line-height:1.6;
    margin:0;
}
/* 鍗曠嫭閫傞厤鎵嬫満绔瓧鍙� */
@media screen and (max-width:768px){
	.top-nav ul li .sons a,
	.top-nav ul li .sons a span{
		font-size: 14px !important;
		line-height: 32px !important;
	}
	
	 .about-tab-wrap{
        right:15px;
    }
    .about-tab-item{
        width:120px;
        font-size:14px;
    }
    .about-main{
        grid-template-columns:1fr;
    }
    .dev-grid{
        grid-template-columns:repeat(2,1fr);
    }
        .news-item{
        flex-direction:column;
        gap:15px;
    }
    .news-item-left{
        width:100%;
    }
    .news-item-right{
        padding-right:0;
    }
    .news-date-box{
        position:static;
        text-align:left;
        margin-bottom:8px;
    }
    .news-date-num{
        font-size:22px;
    }
        .news-detail-container{
        grid-template-columns:1fr;
    }
    .news-side{
        margin-top:40px;
    }
    .news-page-nav{
        flex-direction:column;
        gap:15px;
    }
        .contact-top-wrap{
        grid-template-columns:1fr;
        gap:30px;
    }
    .form-row{
        grid-template-columns:1fr;
    }
        .pro-wrap{
        grid-template-columns:1fr;
    }
    .pro-grid{
        grid-template-columns:repeat(2,1fr);
    }
        .pro-top-box{
        grid-template-columns:1fr;
    }
    .rel-pro-grid{
        grid-template-columns:repeat(1,1fr);
    }
    .adv-grid{
        grid-template-columns:1fr;
    }
}
.top-nav ul li .search_wrap {
	display: none;
}
.top-nav ul li .sons a:hover span {
	background: #202d76;
	color: #fff;
}
@media (min-width: 992px) and (max-width: 1199px) {
.top-nav ul li a {
	padding: 0.2em 10px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.top-nav ul li a {
	padding: 0.2em 5px;
}
}
.top-nav ul li span {
	color: #fff;
}
.top-nav ul li a:hover {
	color: #8fc320;
}
.logo a {
	display: block;
}
/* top-nav */
.top-nav:before, .top-nav:after {
	content: " ";
	display: table;
}
.top-nav:after {
	clear: both;
}
nav {
	position: relative;
	float: right;
}
nav ul {
	padding: 0;
	float: right;
	margin-top: 1.5em;
	margin-bottom: 0;
}
nav li {
	display: inline;
	float: left;
	position: relative;
}
nav a {
	color: #fff;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	line-height: 57px;
}
nav a:hover {
	text-decoration: none;
	color: #00A2C1;
}
nav a#pull {
	display: none;
}
#homepage {
}
/*Styles for screen 600px and lower*/
@media screen and (max-width: 768px) {
nav {
	height: auto;
	float: none;
}
nav ul {
	width: 100%;
	display: block;
	height: auto;
}
nav li {
	width: 100%;
	position: relative;
	float: none;
}
nav li a {
	border-bottom: 1px solid #eee;
}
nav a {
	text-align: left;
	width: 100%;
}
.top-nav ul li a {
}
.top-nav ul li span {
	display: none;
}
}
/*Styles for screen 515px and lower*/
@media only screen and (max-width : 768px) {
nav {
	border-bottom: 0;
	float: none;
}
nav ul {
	display: none;
	height: auto;
	margin: 0;
	background: #fff;
}
nav a#pull {
	display: block;
	position: relative;
	color: #F26D7D;
	text-align: right;
	position: absolute;
}
nav a#pull img {
	margin-right: 2%;
	line-height: 2.5em;
}
.top-nav ul li a {
	color: #2C3E50;
	line-height: 2.5em;
}
.top-nav ul li a:last-Child {
	display: none;
}
}
/*Smartphone*/
@media only screen and (max-width : 320px) {
nav {
	float: none;
}
nav li {
	display: block;
	float: none;
	width: 100%;
}
nav li a {
	border-bottom: 1px solid #EEE;
}
}
/*---- banner ----*/
.banner {
	position: relative;
	background: url(../images/home_bg1.jpg) center bottom no-repeat;
	background-size: cover;
	overflow: hidden;
	background-size: cover;
}
.bannerin {
	position: relative;
	background: url(../images/bannerin.jpg) center bottom no-repeat;
	background-size: cover;
	overflow: hidden;
	background-size: cover;
}
.banner-info {
	position: absolute;
	left: 50%;
	top: 25%;
	margin-left: -255px;
}
/*-- //banner ----*/
/*涓氬姟鏀寔*/
.service.container {
	padding: 0;
	width: 1200px;
}
.service .myTab_menu {
	background: #f5f5f5;
}
.service .nav-tabs {
	width: 1200px;
	margin: 0 auto;
	border: none;
}
.service .nav-tabs > li {
	width: 25%;
	text-align: center;
}
.service .nav-tabs > li.myTab_menu1 {
	background: url(../images/spec_icon1.png) center 48px no-repeat;
	border-left: 1px solid #e5e5e5;
}
.service .nav-tabs > li.myTab_menu2 {
	background: url(../images/spec_icon2.png) center 48px no-repeat;
	border-left: 1px solid #e5e5e5;
}
.service .nav-tabs > li.myTab_menu3 {
	background: url(../images/spec_icon3.png) center 48px no-repeat;
	border-left: 1px solid #e5e5e5;
}
.service .nav-tabs > li.myTab_menu4 {
	background: url(../images/spec_icon4.png) center 48px no-repeat;
	border-left: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
}
.service .nav-tabs > li a {
	display: block;
	height: 240px;
	width: 100%;
}
.service .nav-tabs > li a p {
	margin-top: 168px;
}
.service .nav-tabs > li a:hover {
	color: #888;
}
.service .nav-tabs > li.active.myTab_menu1 {
	background: #8fc320 url(../images/spec_icon1_hover.png) center 48px no-repeat;
}
.service .nav-tabs > li.active.myTab_menu2 {
	background: #8fc320 url(../images/spec_icon2_hover.png) center 48px no-repeat;
}
.service .nav-tabs > li.active.myTab_menu3 {
	background: #8fc320 url(../images/spec_icon3_hover.png) center 48px no-repeat;
}
.service .nav-tabs > li.active.myTab_menu4 {
	background: #8fc320 url(../images/spec_icon4_hover.png) center 48px no-repeat;
}
.service .nav-tabs > li.active a {
	background: none;
	color: #fff;
	border: none;
}
.service .tab-content {
	padding: 80px 0 130px;
}
.service .tab-content .col-md-6 {
	padding: 0;
}
.service .tab-content .col-md-6 .tab_con_tit {
	display: inline-block;
	color: #333333;
	font-size: 24px;
	font-weight: 700;
	border-top: 3px solid #8fc320;
	border-bottom: 3px solid #8fc320;
	padding: 10px 0;
}
.service .tab-content .col-md-6 .tab_con_tex {
	color: #666666;
	line-height: 38px;
	font-size: 14px;
	margin-bottom: 20px;
}
.service .tab-content .col-md-6 a.tab_con_btnm {
	width: 155px;
	height: 47px;
	background: #0d67b5;
	border-radius: 4px;
	display: inline-block;
	text-align: center;
	line-height: 47px;
	color: #fff;
}
.service .tab-content .col-md-6 a.tab_con_btnc {
	width: 155px;
	height: 47px;
	background: #fff;
	border-radius: 4px;
	display: inline-block;
	text-align: center;
	line-height: 47px;
	color: #1295f2;
	border: 1px solid #1295f2;
	margin-left: 15px;
}
/*---搴旂敤棰嗗煙---*/
.work .myTab_menu2 {
	background: url(../images/sildmenu_bg.jpg) center top no-repeat;
}
.work .myTab_menu2 .nav-tabs {
	width: 1200px;
	margin: 0 auto;
	border: none;
}
.work .myTab_menu2 .nav-tabs > li {
	width: 25%;
	height: 100px;
}
.work .myTab_menu2 .nav-tabs > li a {
	display: block;
	border: none;
	line-height: 100px;
	font-size: 18px;
	color: #fff;
	padding: 0;
	margin: 0;
	border-radius: 0;
	text-indent: 86px;
}
.work .myTab_menu2 .nav-tabs > li a:after {
	content: '';
	display: inline-block;
	width: 13px;
	height: 7px;
	background: url(../images/icon_down.png) center no-repeat;
	margin-left: 6px;
}
.work .myTab_menu2 .nav-tabs > li.myTab_menu11 a {
	background: url(../images/sildmenu_icon1.png) 55px center no-repeat;
}
.work .myTab_menu2 .nav-tabs > li.myTab_menu12 a {
	background: url(../images/sildmenu_icon2.png) 55px center no-repeat;
}
.work .myTab_menu2 .nav-tabs > li.myTab_menu13 a {
	background: url(../images/sildmenu_icon3.png) 55px center no-repeat;
}
.work .myTab_menu2 .nav-tabs > li.myTab_menu14 a {
	background: url(../images/sildmenu_icon4.png) 55px center no-repeat;
}
.work .myTab_menu2 .nav-tabs > li.active a {
	color: #90c221;
}
.work .myTab_menu2 .nav-tabs > li.active a:after {
	content: '';
	display: inline-block;
	width: 13px;
	height: 7px;
	background: url(../images/icon_down_hover.png) center no-repeat;
	margin-left: 6px;
}
.work .myTab_menu2 .nav-tabs > li.active.myTab_menu11 a {
	background: #fff url(../images/sildmenu_icon1_hover.png) 55px center no-repeat;
}
.work .myTab_menu2 .nav-tabs > li.active.myTab_menu12 a {
	background: #fff url(../images/sildmenu_icon2_hover.png) 55px center no-repeat;
}
.work .myTab_menu2 .nav-tabs > li.active.myTab_menu13 a {
	background: #fff url(../images/sildmenu_icon3_hover.png) 55px center no-repeat;
}
.work .myTab_menu2 .nav-tabs > li.active.myTab_menu14 a {
	background: #fff url(../images/sildmenu_icon4_hover.png) 55px center no-repeat;
}
.work .tab-content .tab_con_tex .tab_con_tex1 {
	color: #333;
	font-size: 28px;
	padding: 1rem 0;
	text-align: center;
	margin: 0;
}
.work .tab-content .tab_con_tex .tab_con_tex2 {
	color: #888;
	font-size: 14px;
	margin: 0 auto 10px;
	line-height: 34px;
	text-align: center;
	width: 60%;
}
.work .tab-content .works-grid {
	overflow: hidden;
}
.works-head h2 {
	color: #02918C;
	font-weight: 900;
	font-size: 3em;
	margin: 0;
	padding: 0;
}
.works-head span {
	width: 162px;
	height: 9px;
	display: inline-block;
	background: url(../images/border-bg.png) no-repeat 0px 0px;
}
.works-head p {
	color: #7E8287;
	font-size: 1.2em;
	font-weight: 300;
	width: 40%;
	line-height: 1.8em;
	margin: 1em auto;
}
/*---- works-grids ----*/
.works-grid {
	padding: 0;
	position: relative;
}
.works-grid img {
	width: 100%;text-align: center;
}
.works-grid div.captions {
	display: none;
}
.works-grid:hover div.captions {
	display: block;
}
.works-grid:hover img {
	transition: 1s all;
	-webkit-transition: 1s all;
	-moz-transition: 1s all;
	-o-transition: 1s all;
	-ms-transition: 1s all;
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
}
.work div.captions {
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 2.5rem;
	background: rgba(0,0,0,0.4);
}
.work div.captions h4 {
	font-size: 1em;
	color: #FFF;
	text-indent: 10px;
	font-weight: bold;
}
.work div.captions p {
	color: #FFF;
	line-height: 1.4em;
}
/*---- about ----*/
.about {
	height: 450px;
	background: url(../images/home_bg2.jpg) center top no-repeat;
}
.about .about_con {
	height: 450px;
	color: #fff;
	text-align: center;
	background: url(../images/jfkla.png) center top no-repeat;
}
.about .about_con h2 {
	padding-top: 90px;
	font-size: 28px;
}
.about .about_con p {
	line-height: 30px;
	font-size: 14px;
}
.about .about_con a {
	width: 122px;
	height: 30px;
	border: 1px solid #fff;
	text-align: center;
	line-height: 30px;
	color: #fff;
	font-size: 14px;
	display: block;
	margin: 0 auto;
	margin-top: 25px;
}
/*----//about ----*/
/*绀句細璐ｄ换*/
.socity {
	width: 100%;
	overflow: hidden;
}
.socity .soc-grid {
	position: relative;
}
.socity .column {
	padding: 0;
}
.socity .soc-grid img {
	width: 100%;
}
.socity .soc_texcon .t1 {
	font-size: 36px;
	padding-top: 18%;
	padding-bottom: 11%;
	color: #90c221;
	text-align: center;
}
.socity .soc_texcon .t1 {
	font-size: 36px;
	padding-top: 50px;
	padding-bottom: 20px;
	color: #90c221;
	text-align: center;
}
.socity .soc_texcon .t2 {
	text-align: center;
	color: #666;
	font-size: 16px;
}
.socity .soc_texcon a {
	color: #90c221;
	width: 154px;
	height: 44px;
	display: block;
	text-align: center;
	line-height: 44px;
	border: 1px solid #90c221;
	margin: 50px auto 0;
}
.socity div.captions {
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 3.5rem;
	background: rgba(144,194,33,0.9);
}
.socity div.captions h4 {
	font-size: 1em;
	color: #FFF;
	text-indent: 10px;
	font-weight: bold;
}
.socity div.captions p {
	color: #FFF;
	text-indent: 10px;
	font-size: 0.75px;
}
/*---servies---*/
.socity div.captions2 {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
}
.socity div.captions2 .t5 {
	position: absolute;
	right: 0;
	height: 2.5em;
	color: #fff;
	background: #1295f2;
	font-size: 1.5em;
	line-height: 2.5em;
	padding: 0 2em;
	top: 30%;
	z-index: 123;
}
.socity div.captions2 .t6 {
	position: absolute;
	right: 0;
	height: 2.5em;
	color: #fff;
	background: #90c221;
	font-size: 1.5em;
	line-height: 2.5em;
	padding: 0 2em;
	bottom: 30%;
	z-index: 123;
}
.service-head {
}
.service-head h2 {
	color: #02918C;
	font-weight: 900;
	font-size: 3em;
	margin: 0;
	padding: 0;
}
.service-head span {
	width: 162px;
	height: 9px;
	display: inline-block;
	background: url(../images/border-bg.png) no-repeat 0px 0px;
}
.service-head p {
	color: #7E8287;
	font-size: 1.2em;
	font-weight: 300;
	line-height: 1.8em;
	margin: 1em 0;
}
/*--services-grid-left-grid--*/
.services-grid-left-grid {
	position: relative;
	padding: 1em 0;
}
.services-grid-left-grid span {
	width: 33px;
	height: 34px;
	display: inline-block;
	background: url(../images/service-icon.png) no-repeat 0px 0px;
}
.services-grid-left-grid h3 {
	margin: 0;
	padding: 0;
}
.services-grid-left-grid h3 a {
	color: #7E8287;
	font-weight: 400;
	font-size: 1em;
	margin: 0.5em 0 0;
	display: inline-block;
}
.services-grid-left-grid h3 a:hover {
	text-decoration: none;
	color: #02918C;
}
.services-grid-left-grid p {
	color: #7E8287;
	font-size: 0.875em;
	line-height: 1.8em;
	width: 60%;
	margin: 0.6em 0;
}
.services-grid-left-grid span.search {
	background-position: -38px 0px;
}
.services-grid-left-grid span.clock {
	background-position: -83px 0px;
}
.services-grid-left-grid span.chart {
	background-position: -124px 0px;
}
.services-grid-right {
}
/*----news---*/
.news {
	background: url(../images/home_bg3.jpg) center top repeat-y;
	padding-bottom: 5em;
}
.news .conatiner {
	width: 1200px;
	margin: 0 auto;
}
.news .conatiner .new_tit {
	text-align: center;
	font-size: 32px;
	color: #333;
	font-weight: bold;
	padding-top: 40px;
}
.news .conatiner .news_des {
	text-align: center;
	font-size: 14px;
	color: #666;
	padding-top: 20px;
}
.news .conatiner .new_wrap {
	padding: 1.5em 0.8em;
	background: #fff;
	margin-top: 3em;
}
.news .conatiner .new_box .fl {
	float: left;
}
.news .conatiner .new_box .fr {
	float: right;
}
.news .conatiner .new_box .new_top .fl {
	font-size: 20px;
	color: #333;
	border-left: 3px solid #90c221;
	padding-left: 10px;
}
.news .conatiner .new_box .center .hotnews {
	position: relative;
}
.news .conatiner .new_box .center .hotnews a {
	position: absolute;
	height: 2em;
	background: rgba(0,0,0,0.7);
	bottom: 0;
	width: 100%;
	color: #fff;
	line-height: 2em;
	text-indent: 0.2em;
	display: block;
}
.news .conatiner .new_box .center .hotnews a span {
	position: absolute;
	right: 0.2em;
}
.news .conatiner .new_box ul {
	padding: 0;
	margin: 0;
}
.news .conatiner .new_box li {
	list-style: none;
}
.news .conatiner .new_box li.new_sbox {
	margin-bottom: 23px;
}
.news .conatiner .new_box li.new_sbox .fl {
	width: 30%;
}
.news .conatiner .new_box li.new_sbox .fr {
	width: 68%;
}
.news .conatiner .new_box li.new_sbox .fr p {
	font-size: 1em;
	color: #333;
	margin-bottom: 3px;
}
.news .conatiner .new_box li.new_sbox .fr a {
	color: #888;
	font-size: 12px;
}
.news .conatiner .new_box li.new_sbox .fr .news_title {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.news .conatiner .new_box li.new_sbox .fr .news_description {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.news .conatiner .new_box .center .new_con li {
	margin-top: 20px;
	background: url(../images/list_s.png) center left no-repeat;
	padding-left: 10px;
}
.news .conatiner .new_box .center .new_con li a {
	color: #666;
	position: relative;
	display: block;
	width: 100%;
}
.news .conatiner .new_box .center .new_con li span {
	position: absolute;
	right: 0;
	color: #999;
}
/*---- copy-right ----*/

.copy-right {
	background: #242426 url(../images/foot_bg.jpg) center top no-repeat;
	padding: 1.8em 0 1em;
}
.copy-right p {
	text-transform: uppercase;
	color: #919090;
	font-size: 12px;
}
.copy-right .guanzhu p {
	text-transform: uppercase;
	color: #919090;
	font-size: 12px;
	width: 100%;
	text-align: center;
	margin: 5px auto;
}
.copy-right p.white {
	color: #fff;
	text-align: left;
}
.copy-right .hengx {
	height: 0;
	border-bottom: 1px solid #585858;
	width: 90%;
}
.copy-right .join .hengx {
	width: 40%;
}
.copy-right .guanzhu .hengx {
	width: 100%;
}
.copy-right .guanzhu .erweim {
	text-align: right;
	margin-top: 1em;
}
.copy-right .guanzhu img {
	width: 90%;
	display: inline-block;
}
.copy-right a, .copy-right span {
	color: #919090;
	line-height: 2.5em;
	font-size: 12px;
	display: block;
}
.copy-right p a:hover {
	text-decoration: none;
	color: #7E8287;
}
.copy-right .copy_con {
	border-top: 1px solid #444343;
}
.copy-right .copy_con p {
	padding-top: 20px;
}
.copy-right .copy_con p.text_r {
	text-align: left;
}
.copy-right .copy_con p.text_r a {
	float: right;
	line-height: normal;
}
.copy-right .copy_con p.text_r a:hover {
	color: #fff;
}
#toTop {
	display: none;
	text-decoration: none;
	position: fixed;
	bottom: 14px;
	right: 3%;
	overflow: hidden;
	width: 40px;
	height: 40px;
	border: none;
	text-indent: 100%;
	background: url("../images/to-top1.png") no-repeat 0px 0px;
}
#toTopHover {
	width: 40px;
	height: 40px;
	display: block;
	overflow: hidden;
	float: right;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
}
.floor_tip {
	position: fixed;
	left: 50%;
	margin-left: 670px;
	bottom: 200px;
	z-index: 212;
}
.floor_tip li {
	width: 91px;
	height: 23px;
	background: url(../images/floor.png) right center no-repeat;
}
.floor_tip li a {
	padding: 0;
	display: block;
	height: 23px;
	line-height: 23px;
	width: 90px;
	border-radius: 0;
	text-indent: -9999px;
	transition: 0.1s all;
	-webkit-transition: 0.1s all;
	-moz-transition: 0.1s all;
	-o-transition: 0.1s all;
	-ms-transition: 0.1s all;
}
.floor_tip li.active {
	background: url(../images/floor_active.png) right center no-repeat;
}
.floor_tip li.active a {
	text-indent: 10px;
	color: #fff;
	font-size: 12px;
	display: block;
	background: url(../images/floor_tips.png) left top no-repeat;
}
.floor_tip li.active a:hover {
	background: url(../images/floor_tips.png) left top no-repeat;
}
/*---- responsive-design ----*/
@media (max-width:1680px) {
.floor_tip {
	margin-left: 630px;
}
.socity .soc_texcon .t1 {
	font-size: 32px;
	padding-top: 30px;
	padding-bottom: 20px;
	color: #90c221;
	text-align: center;
}
.socity .soc_texcon .t2 {
	text-align: center;
	color: #666;
	font-size: 14px;
}
.socity div.captions2 .t5 {
	height: 2em;
	font-size: 1.5em;
	line-height: 2em;
	padding: 0 2em;
	top: 30%;
}
.socity div.captions2 .t6 {
	height: 2em;
	font-size: 1.5em;
	line-height: 2em;
	padding: 0 2em;
	bottom: 30%;
}
}
@media (max-width:1440px) {
.floor_tip {
	margin-left: 0;
	left: 90%;
}
.socity .soc_texcon .t1 {
	font-size: 32px;
	padding-top: 20px;
	padding-bottom: 10px;
	color: #90c221;
	text-align: center;
}
.socity .soc_texcon .t2 {
	text-align: center;
	color: #666;
	font-size: 12px;
}
}
@media (max-width:1366px) {
.socity .soc_texcon .t2 {
	text-align: center;
	color: #666;
	font-size: 12px;
}
.socity .soc_texcon .t1 {
	font-size: 18px;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #90c221;
	text-align: center;
}
.socity .soc_texcon a {
	margin: 20px auto 0;
}
.socity div.captions2 .t5 {
	height: 1.5em;
	font-size: 1.5em;
	line-height: 1.5em;
	padding: 0 2em;
	top: 25%;
}
.socity div.captions2 .t6 {
	height: 1.5em;
	font-size: 1.5em;
	line-height: 1.5em;
	padding: 0 2em;
	bottom: 25%;
}
}
@media (max-width:1280px) {
.socity .soc_texcon .t1 {
	font-size: 14px;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #90c221;
	text-align: center;
}
.socity .soc_texcon .t2 {
	text-align: center;
	color: #666;
	font-size: 12px;
}
.socity .soc_texcon a {
	margin: 10px auto 0;
}
.copy-right .copy_con {
	display: none;
}
}
@media (max-width:1024px) {
.work .col-md-3 {
	width: 50%;
	float: left;
}
.top-nav ul li a {
	padding: 0.2em 4px;
}
.header .container {
	padding: 0;
}
}
@media (max-width:993px) {
.floor_tip {
	display: none;
}
.top-nav ul li span {
	display: none;
}
}
@media (max-width:768px) {
.banner-info {
	left: 8%;
	width: 84%;
	margin-left: 0;
}
.services-grid-left {
	padding: 1em 2em;
}
.works-grid:hover div.caption {
	margin: 1em;
	padding: 0.5em;
	min-height: 150px;
}
.banner {
	min-height: 526px;
}
.bannerin {
	min-height: 450px;
}
.works-head p {
	width: 80%;
	margin: 0em auto;
	font-size: 1em;
}
.banner-info h1 {
	font-size: 3.2em;
}
.about-head h2, .service-head h2, .works-head h2 {
	font-size: 1.8em;
}
.about-head p {
	font-size: 1em;
	width: 90%;
}
.about {
	padding: 1em 0;
}
.works {
	padding: 1em 0;
}
.top-header {
	background-color: rgba(3,92,172,0.9);
	border-bottom: 1px solid rgba(137,150,240,0.8);
}
.top-header {
	padding: 0em 0 1em;
}
.top-header .container {
	padding: 0;
	width: 100%;
}
.logo {
	margin-top: 0.5em;
}
.logo a {
	margin-top: 0em;
	margin-left: 0.5em;
}
.banner-info p {
	font-size: 1.8em;
}
.services-grid-left-grid p {
	width: 100%;
}
.services-grid-left-grid {
	padding: 0.5em 0;
}
.services-grid-right {
	display: none;
}
.about-grids {
	padding: 0em 0 0em;
}
.service-head p {
	font-size: 1em;
	margin: 0.4em 0;
}
.service .tab-content {
	padding: 2em 0.5em;
}
.service .nav-tabs > li a {
	display: block;
	height: 120px;
	width: 100%;
}
.service .nav-tabs > li.myTab_menu1 {
	background-position: center 5px;
	background-size: auto 65%;
}
.service .nav-tabs > li.myTab_menu2 {
	background-position: center 5px;
	background-size: auto 65%;
}
.service .nav-tabs > li.myTab_menu3 {
	background-position: center 5px;
	background-size: auto 65%;
}
.service .nav-tabs > li.myTab_menu4 {
	background-position: center 5px;
	background-size: auto 65%;
}
.service .nav-tabs > li.active.myTab_menu1 {
	background-position: center 5px;
	background-size: auto 65%;
}
.service .nav-tabs > li.active.myTab_menu2 {
	background-position: center 5px;
	background-size: auto 65%;
}
.service .nav-tabs > li.active.myTab_menu3 {
	background-position: center 5px;
	background-size: auto 65%;
}
.service .nav-tabs > li.active.myTab_menu4 {
	background-position: center 5px;
	background-size: auto 65%;
}
.service .nav-tabs > li a p {
	margin-top: 80px;
}
.works-grid:nth-child(2), .works-grid:nth-child(3), .works-grid:nth-child(4), .works-grid:nth-child(5), .works-grid:nth-child(6) {
	display: none;
}
.contact-head h2 {
	font-size: 1.8em;
}
.contact-head p {
	font-size: 1em;
	width: 80%;
	line-height: 1.5em;
}
.Contact-form {
	padding: 1em 0 1em;
	margin-top: 1.5em;
}
.send-form {
	width: 90%;
}
.copy-right {
	padding: 1em 0;
}
.send-form input[type="submit"] {
	margin: 1.5em 0;
}
.work .col-md-3 {
	width: 100%;
}
.service.container {
	padding: 0;
	width: 100%;
}
.service .nav-tabs {
	width: 100%;
	margin: 0 auto;
	border: none;
}
.news .conatiner {
	width: 100%;
	margin: 0 auto;
}
.work .myTab_menu2 .nav-tabs {
	width: 100%;
	margin: 0 auto;
	border: none;
}
.work .myTab_menu2 .nav-tabs > li a {
	text-indent: 0px;
	text-align: center;
}
.work .myTab_menu2 .nav-tabs > li.active.myTab_menu11 a, .work .myTab_menu2 .nav-tabs > li.active.myTab_menu12 a, .work .myTab_menu2 .nav-tabs > li.active.myTab_menu13 a, .work .myTab_menu2 .nav-tabs > li.active.myTab_menu14 a {
	background: #fff;
}
.work .myTab_menu2 .nav-tabs > li.myTab_menu11 a, .work .myTab_menu2 .nav-tabs > li.myTab_menu12 a, .work .myTab_menu2 .nav-tabs > li.myTab_menu13 a, .work .myTab_menu2 .nav-tabs > li.myTab_menu14 a {
	background: none;
}
.about .about_con {
	background-size: 80% auto;
}
.socity .column.col-md-4 img {
	width: 100%;
}
.news .conatiner .new_tit {
	padding-top: 2em;
	font-size: 2em;
}
.news .conatiner .news_des {
	font-size: 0.9em;
	width: 90%;
	line-height: 2em;
	text-align: center;
	margin: 0 auto;
}
.news .conatiner .new_box .new_top .fl {
	font-size: 1.25em;
}
.news .conatiner .new_box .col-md-4 {
	width: 100%;
}
.news .conatiner .new_box img {
	width: 100%;
}
.news .conatiner .new_box li.new_sbox .fr p {
	font-size: 1.5em;
}
.news .conatiner .new_box li.new_sbox .fr a {
	font-size: 1em;
	line-height: 2em;
}
.news .conatiner .new_box li.new_sbox .fr .news_description {
	-webkit-line-clamp: 3;
}
.copy-right .col-md-3 {
	width: 25%;
	float: left;
}
.copy-right .join .col-md-6 {
	width: 50%;
	float: left;
}
.works-grid div.captions {
	display: block;
	background: rgba(0,0,0,0.6);
}
.socity .soc_texcon a {
	height: auto;
	padding: 0.2em 0;
	line-height: 1.5em;
}
.top-nav ul li .sons {
	display: none;
	width: 100%;
	position: relative;
	left: 0;
	background: #fff;
	overflow: hidden;
	padding-top: 6px;
	background: #fafafa;
}
.top-nav ul li .sons a {
	display: block;
	width: 100%;
	margin: 0 auto;
	border-bottom: 1px solid #f2f2f2;
	font-size: 0.7em;
	font-weight: normal;
}
.top-nav ul li .sons a span {
	color: #999;
	font-size: 0.7em;
	text-align: center;
	margin: 0 auto;
}
.bannerimg {
	display: none;
}
}
@media (max-width:640px) {
.socity div.captions2 .t5 {
	height: 1.5em;
	font-size: 0.8em;
	line-height: 1.5em;
	padding: 0 2em;
	top: 15%;
}
.socity div.captions2 .t6 {
	height: 1.5em;
	font-size: 0.8em;
	line-height: 1.5em;
	padding: 0 2em;
	bottom: 15%;
}
.socity .soc_texcon .t2 {
	text-align: center;
	color: #666;
	line-height: 1.5em;
	font-size: 0.8em;
	margin-bottom: .2em;
}
.socity .soc_texcon .t1 {
	font-size: 0.9empx;
	padding-top: 0.5em;
	padding-bottom: 0.1em;
	color: #90c221;
	text-align: center;
}
.socity .soc_texcon a {
	height: auto;
	padding: 0.2em 0;
	line-height: 1.5em;
	margin-bottom: .5em;
}
.banner-info {
	left: 5%;
	width: 90%;
	margin-left: 0;
}
.services-grid-left {
	padding: 1em 2em;
}
.works-grid:hover div.caption {
	margin: 2em 0 0 2em;
	padding: 0.5em;
	min-height: 150px;
}
.banner {
	min-height: 450px;
}
.bannerin {
	min-height: 300px;
}
.works-head p {
	width: 80%;
	margin: 0em auto;
	font-size: 1em;
}
.banner-info h1 {
	font-size: 2.8em;
}
.about-head h2, .service-head h2, .works-head h2 {
	font-size: 1.8em;
}
.about-head p {
	font-size: 1em;
	width: 90%;
	margin: 0.5em auto;
	line-height: 1.5em;
}
.about {
	padding: 1em 0;
}
.about .about_con {
	width: 90%;
	margin: 0 auto;
	background-size: 100% auto;
}
.about .about_con h2 {
	padding-top: 2em;
	font-size: 1.5em;
}
.about .about_con p {
	font-size: 0.875em;
	width: 90%;
	margin: 0 auto;
}
.about .about_con a {
	font-size: 0.875em;
}
.works {
	padding: 1em 0;
}
.top-header {
	padding: 0em 0 1.7em;
}
.logo {
	margin-top: 0.5em;
}
.banner-info p {
	font-size: 1.8em;
}
.services-grid-left-grid p {
	width: 100%;
}
.services-grid-left-grid {
	padding: 0.5em 0;
}
.services-grid-right {
	display: none;
}
.about-grids {
	padding: 0em 0 0em;
}
.service-head p {
	font-size: 1em;
	margin: 0.4em 0;
}
.works-grid:nth-child(2), .works-grid:nth-child(3), .works-grid:nth-child(4), .works-grid:nth-child(5), .works-grid:nth-child(6) {
	display: none;
}
.contact-head h2 {
	font-size: 1.8em;
}
.contact-head p {
	font-size: 1em;
	width: 80%;
	line-height: 1.5em;
}
.Contact-form {
	padding: 1em 0 1em;
	margin-top: 1.5em;
}
.send-form {
	width: 90%;
}
.copy-right {
	padding: 1em 0;
}
.send-form input[type="submit"] {
	margin: 1.5em 0;
}
.about-grid {
	position: relative;
	padding: 0.5em 0;
}
.service.container {
	padding: 0;
	width: 100%;
}
.service .nav-tabs {
	width: 100%;
	margin: 0 auto;
	border: none;
}
.news .conatiner {
	width: 100%;
	margin: 0 auto;
}
.work .myTab_menu2 .nav-tabs {
	width: 100%;
	margin: 0 auto;
	border: none;
}
.news .conatiner .new_box li.new_sbox .fr p {
	font-size: 1em;
}
.news .conatiner .new_box li.new_sbox .fr a {
	font-size: 0.8em;
	line-height: 1.7em;
}
.copy-right .col-md-3 {
	width: 25%;
	float: left;
}
.copy-right .join .col-md-6 {
	width: 50%;
	float: left;
	padding: 0;
}
.news .conatiner .new_box li.new_sbox .fr .news_description {
	-webkit-line-clamp: 4;
}
}
@media (max-width:480px) {
nav a#pull {
	line-height: 3em;
}
.container {
	padding: 0;
	margin: auto;
}
.top-header {
	background-color: rgba(3,92,172,0.9);
	border: none;
}
.banner-info {
	left: 5%;
	width: 90%;
	margin-left: 0;
}
.services-grid-left {
	padding: 1em 2em;
}
.works-grid:hover div.caption {
	margin: 1.5em 0 0 1.5em;
	padding: 0.5em;
	min-height: 150px;
}
.banner {
	min-height: 380px;
}
.about {
	min-height: 380px;
}
.works-head p {
	width: 80%;
	margin: 0em auto;
	font-size: 1em;
}
.banner-info h1 {
	font-size: 2.2em;
}
.about-head h2, .service-head h2, .works-head h2 {
	font-size: 1.5em;
}
.about-head p {
	font-size: 1em;
	width: 90%;
	margin: 0.5em auto;
	line-height: 1.5em;
}
.about {
	padding: 1em 0;
}
.works {
	padding: 1em 0;
}
.top-header {
	padding: 0em 0 0.3em;
}
.logo {
	margin-top: 0.2em;
	margin-left: 0.2em;
	width: 30%;
}
.logo a {
	color: #303030;
	font-weight: 200;
	text-transform: uppercase;
	margin-top: 0.4em;
	margin-bottom: 0.4em;
}
.banner-info p {
	font-size: 1.3em;
}
.services-grid-left-grid p {
	width: 100%;
}
.services-grid-left-grid {
	padding: 0.5em 0;
}
.services-grid-right {
	display: none;
}
.about-grids {
	padding: 0em 0 0em;
}
.service-head p {
	font-size: 1em;
	margin: 0.4em 0;
}
.works-grid:nth-child(2), .works-grid:nth-child(3), .works-grid:nth-child(4), .works-grid:nth-child(5), .works-grid:nth-child(6) {
	display: none;
}
.contact-head h2 {
	font-size: 1.8em;
}
.contact-head p {
	font-size: 1em;
	width: 80%;
	line-height: 1.5em;
}
.Contact-form {
	padding: 1em 0 1em;
	margin-top: 1.5em;
}
.send-form {
	width: 90%;
}
.copy-right {
	padding: 1em 0;
}
.send-form input[type="submit"] {
	margin: 1.5em 0;
}
.about-grid {
	position: relative;
	padding: 0.5em 0;
}
.send-form span.text-box1, .send-form span.text-box2 {
	width: 80%;
}
.send-form input[type="submit"] {
	font-size: 1.1em;
	padding: 0.6em 2.2em;
}
.service .nav-tabs > li a {
	display: block;
	height: 6em;
	width: 100%;
}
.service .nav-tabs > li.myTab_menu1 {
	background-size: auto 40%;
	background-position: center 10%;
}
.service .nav-tabs > li.myTab_menu2 {
	background-size: auto 40%;
	background-position: center 10%;
}
.service .nav-tabs > li.myTab_menu3 {
	background-size: auto 40%;
	background-position: center 10%;
}
.service .nav-tabs > li.myTab_menu4 {
	background-size: auto 40%;
	background-position: center 10%;
}
.service .nav-tabs > li.myTab_menu1 {
	background-size: auto 40%;
	background-position: center 10%;
}
.service .nav-tabs > li.active.myTab_menu1 {
	background-size: auto 40%;
	background-position: center 10%;
}
.service .nav-tabs > li.active.myTab_menu2 {
	background-size: auto 40%;
	background-position: center 10%;
}
.service .nav-tabs > li.active.myTab_menu3 {
	background-size: auto 40%;
	background-position: center 10%;
}
.service .nav-tabs > li.active.myTab_menu4 {
	background-size: auto 40%;
	background-position: center 10%;
}
.service .nav-tabs > li a p {
	position: absolute;
	width: 80%;
	text-align: center;
	left: 10%;
	top: 72%;
	font-size: 0.9em;
	margin: 0;
}
.service .tab-content {
	padding: 2em 0.5em 2em;
}
.service .tab-content .col-md-6 {
	width: 100%;
	padding: 0.3em;
}
.service .tab-content .col-md-6 a.tab_con_btnm {
	width: 39%;
	height: 3em;
}
.service .tab-content .col-md-6 a.tab_con_btnc {
	width: 39%;
	height: 3em;
	margin-left: 20%;
}
.work .myTab_menu2 .nav-tabs > li {
	height: 4em;
}
.work .myTab_menu2 .nav-tabs > li a {
	height: 5em;
	line-height: 5em;
	font-size: 0.8em;
	text-indent: 0;
	text-align: center;
}
.work .myTab_menu2 .nav-tabs > li.myTab_menu11 a, .work .myTab_menu2 .nav-tabs > li.myTab_menu12 a, .work .myTab_menu2 .nav-tabs > li.myTab_menu13 a, .work .myTab_menu2 .nav-tabs > li.myTab_menu14 a {
	background: none;
}
.work .myTab_menu2 .nav-tabs > li.active.myTab_menu11 a, .work .myTab_menu2 .nav-tabs > li.active.myTab_menu12 a, .work .myTab_menu2 .nav-tabs > li.active.myTab_menu13 a, .work .myTab_menu2 .nav-tabs > li.active.myTab_menu14 a {
	height: 5em;
	width: 100%;
	line-height: 5em;
	font-size: 0.8em;
	color: #fff;
	text-align: center;
	background: #accf69;
}
.work .myTab_menu2 .nav-tabs > li.active a:after, .work .myTab_menu2 .nav-tabs > li.active a:after {
	display: none;
}
.work .myTab_menu2 .nav-tabs > li a:after {
	display: none;
}
.copy-right .guanzhu .erweim {
	text-align: left;
}
.copy-right .guanzhu img {
	width: 90%;
}
.work .tab-content .tab_con_tex .tab_con_tex1 {
	font-size: 1.5em;
}
.work .tab-content .tab_con_tex .tab_con_tex2 {
	font-size: 0.875em;
	width: 80%;
}
.news .conatiner .new_box li.new_sbox .fr p {
	font-size: 0.9em;
}
.news .conatiner .new_box li.new_sbox .fr a {
	font-size: 0.7em;
	line-height: 1.4em;
}
.news .conatiner .new_box li.new_sbox .fr .news_description {
	-webkit-line-clamp: 3;
}
}
@media (max-width:320px) {
nav a#pull {
	line-height: 1.6em;
}
.banner-info {
	left: 6.6%;
	top: 21%;
}
.services-grid-left {
	padding: 1em 2em;
}
.works-grid:hover div.caption {
	margin: 1em 0 0 1em;
	padding: 0.5em;
	min-height: 150px;
}
.banner {
	min-height: 320px;
}
.bannerin {
	min-height: 260px;
}
.works-head p {
	width: 80%;
	margin: 0em auto;
	font-size: 1em;
}
.banner-info h1 {
	font-size: 1.4em;
	margin: 0.2em 0 0.4em;
}
.about-head h2, .service-head h2, .works-head h2 {
	font-size: 1.2em;
}
.about-head p {
	font-size: 0.9em;
	width: 100%;
	margin: 0.3em auto;
	line-height: 1.5em;
}
.about {
	padding: 1em 0;
}
.works {
	padding: 1em 0;
}
.top-header {
	padding: 0em 0 1.7em;
}
.logo {
	margin-top: 0.5em;
}
.banner-info p {
	font-size: 1em;
}
.services-grid-left-grid p {
	width: 100%;
}
.services-grid-left-grid {
	padding: 0.5em 0;
}
.services-grid-right {
	display: none;
}
.about-grids {
	padding: 0em 0 0em;
}
.service-head p {
	font-size: 0.9em;
	margin: 0.4em 0;
}
.works-grid:nth-child(2), .works-grid:nth-child(3), .works-grid:nth-child(4), .works-grid:nth-child(5), .works-grid:nth-child(6) {
	display: none;
}
.contact-head h2 {
	font-size: 1.2em;
}
.contact-head p {
	font-size: 0.9em;
	width: 90%;
	line-height: 1.5em;
	margin: 0 auto;
}
.Contact-form {
	padding: 1em 0 1em;
	margin-top: 1.5em;
}
.send-form {
	width: 90%;
}
.copy-right {
	padding: 1em 0;
}
.send-form input[type="submit"] {
	margin: 1.5em 0;
}
.about-grid {
	position: relative;
	padding: 0.5em 0;
}
.send-form span.text-box1, .send-form span.text-box2 {
	width: 90%;
}
.send-form input[type="submit"] {
	font-size: 0.9em;
	padding: 0.7em 2.2em;
}
a.bannner-btn {
	padding: 0.8em 1.5em;
	font-size: 0.9em;
}
.about-head p label {
	font-size: 1.1em;
}
.about-grid label {
	display: none;
}
.about-grid p {
	line-height: 1.5em;
	margin: 0.4em auto;
	width: 100%;
}
.services-grid-left-grid h3 a {
	font-size: 0.9em;
}
.send-form label {
	border-bottom: 1px solid #7E8287;
	padding: 0.3em 0;
	font-size: 0.95em;
}
.send-form input[type="submit"], .send-form input[type="text"], .send-form textarea {
	-webkit-appearance: none;
}
.top-header {
	padding: 0em 0 0.3em;
}
.logo {
	margin-top: 0.2em;
	margin-left: 0.2em;
	width: 30%;
}
.logo a {
	color: #303030;
	font-weight: 200;
	text-transform: uppercase;
	margin-top: 0.2em;
}
.socity .column {
	padding: 0.5em 0.3em;
}
a#pull {
	line-height: 20px;
	top: 10px;
}
nav a#pull img {
	width: 20px;
}
.top-nav ul li a {
	line-height: 2em;
}
.news .conatiner .new_tit {
	padding-top: 2em;
}
.news .conatiner .news_des {
	padding-top: 1em;
	padding-left: 0.5em;
	padding-right: 0.5em;
}
.news .conatiner .new_box .center .new_con li a {
	font-size: 0.6em;
}
.news .conatiner .new_box li.new_sbox .fr p {
	font-size: 0.8em;
}
.news .conatiner .new_box li.new_sbox .fr a {
	font-size: 0.5em;
}
.copy-right .col-md-3 {
	width: 100%;
}
.copy-right .col-md-3 a {
	width: 50%;
	float: left;
}
.copy-right .join .col-md-6 {
	width: 100%;
	float: none;
	padding-right: 15px;
	padding-left: 15px;
}
.copy-right .join .hengx {
	width: 90%;
}
.copy-right .join .guanzhu .col-md-6 {
	width: 50%;
	float: none;
	padding: 0;
	float: left;
}
}
/* ----- PB鍒嗛〉鏁板瓧鏉℃晥鏋� 寮€濮� ----- */
.pagebar {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin: 10px 0;
}
.pagebar .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  flex-wrap: nowrap;
  gap: 2px; /* 闂磋窛缂╁埌鏈€灏� */
  padding: 0 4px; /* 杈硅窛鍐嶇缉鍒� 4px锛屽嚑涔庤创杈� */
  width: 100%;
  box-sizing: border-box;
}
.pagination a {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 14px;
  padding: 8px 12px;
  margin: 0;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pagination span {
    color: #333;
    font-size: 14px;
    padding: 8px 12px;
    margin: 0;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    white-space: nowrap;
    flex-shrink: 0;
}
.pagination a:hover {
  color: #4fc08d;
  border: 1px solid #4fc08d;
}
.pagination a.page-num-current {
  color: #fff;
  background: #81bc04;
  border: 1px solid #81bc04;
}

/* 鎵嬫満绔瀬闄愮揣鍑戦€傞厤 */
@media (max-width:767px){
  .pagebar .pagination{
    padding: 0 4px;  /* 鎵嬫満绔篃鍙暀 4px 杈硅窛 */
    gap: 2px;
  }
  .pagination a,
  .pagination span{
    padding: 6px 6px; /* 鎸夐挳鍐呰竟璺濈缉鍒版渶灏� */
    font-size: 13px;
    min-height: 32px;
  }
  /* 浠呴殣钘忛椤碉紝淇濈暀灏鹃〉 */
  .pagination a:first-child{
    display:none;
  }
}
/* ----- PB鍒嗛〉鏁板瓧鏉℃晥鏋� 缁撴潫 ----- */

/*鐣欒█琛ㄥ崟椤垫牱寮�*/
.liuyan {
	width: 100%;
	float: none;
	margin: 0 auto;  
    width: 100%; /* 鎴栬€呬綘鎯宠鐨勫搴� */  	
}
.liuyan {
	float: right;
	margin-top: 30px;
}
.liuyan img{
	height:36px;
	width:auto;
	position:absolute;
	float:right;
	margin-left: 48%; 
	margin-top:-72px;
	border-radius:0 4px 4px 0;
}
.liuyan input {
	width: 100%;
	height: 50px;
	border: 1px solid #D8D8D8;
	border-radius: 4px;
	padding-left: 20px;
	font-size: 13px;
	outline: none;
}
.liuyan textarea {
	outline: none;
	font-size: 13px;
	width: 100%;
	height: 182px;
	min-height: 170px;
	border: 1px solid #D8D8D8;
	border-radius: 4px;
	padding-left: 20px;
	padding-top: 14px;
}
.liuyan div {
	margin-bottom: 25px;
}
.liuyan div.n_lxwm_sub input {
	width: auto;
	padding-left: 0;
	background: none;
}
.liuyan div.n_lxwm_sub input.n_lxwm_sub_s1 {
	width: 120px;
	height: 46px;
	text-align: center;
	line-height: 46px;
	font-size: 13px;
	color: #666666;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.liuyan div.n_lxwm_sub input.n_lxwm_sub_s1:hover {
	color: #ffffff;
	background-color: #1A499B;
}
.liuyan div.n_lxwm_sub input.n_lxwm_sub_s2 {
	width: 120px;
	height: 46px;
	text-align: center;
	line-height: 46px;
	font-size: 13px;
	color: #666666;
	margin-left: 10px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.liuyan div.n_lxwm_sub input.n_lxwm_sub_s2:hover {
	color: #ffffff;
	background-color: #1A499B;
}
@media screen and (max-width: 768px) {
	.liuyan div.n_lxwm_sub{ 
	float:inherit;	
	}
}
@media only screen and (max-width: 382px) {
.liuyan div.n_lxwm_sub input.n_lxwm_sub_s1 {
	width: 120px;
}
}
@media screen and (max-width: 600px) {  
  .liuyan {  
    margin: auto;  
    width: 90%; 
	float:left; 
	padding-left:10%;
  }  
}

/*鍙充晶鎮诞鎸夐挳*/
.float-right {
	position:fixed;
    right: 0;
	top: 80%;
	z-index:100;/*灏嗚缃厓绱犲湪鍨傜洿鏂瑰悜涓婂眳涓�*/