/*
* @Author: peng
* @Date:   2019-04-09 17:15:57
* @Last Modified by:   peng
* @Last Modified time: 2019-04-12 19:10:02
*/
@charset "UTF-8";

/*头部*/
.header {
    position: relative;
    height: 80px;
    background: #fafafa;
}

.header .logo {
    line-height: 80px;
    font-size: 0;
}

.header .search {
    position: relative;
    width: 30px;
    height: 30px;
    font-size: 0;
    margin-left: 25px;
    margin-top: 25px;
    cursor: pointer;
}

.header .search .icon-s {
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    background: url(../images/search.png) no-repeat center #0073b6;
    border-radius: 50%;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.header .search .icon-s:hover {
    background-color: rgba(0, 115, 182, .8);
}

.header .search-box {
    line-height: 40px;
    width: 220px;
    background: #fff;
    opacity: .9;
    position: absolute;
    right: 0;
    top: 55px;
    z-index: 2;
    display: none;
}

.header .on .search-box {
    display: block;
}

.header .search-box input {
    line-height: 40px;
    font-size: 14px;
    vertical-align: middle;
}

.header .search-box .i {
    width: 170px;
    padding: 0 10px;
}

.header .search-box .s {
    width: 50px;
    text-align: center;
    background: #0073b6;
    cursor: pointer;
    color: #fff;
}

.header .nav-list li {
    /*position: relative;*/
    float: left;
    height: 80px;
    margin: 0 25px;
}

.header .nav-list li:first-child {
    margin-left: 35px;
}

.header .nav-list li .sub-item {
    height: 0;
    line-height: 40px;
    position: absolute;
    z-index: 1;
    top: 100%;
    width: 10000px;
    left: 0;
    background-color: #333;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.header .nav-list li .sub-item.forR {
    text-align: right;
    width: 1000000px;
    right: 0;
    left: auto;
}

.header .nav-list li .sub-item.forR .sub-a {
    margin-right: 0;
    margin-left: 30px;
}

.header .nav-list li .sub-item .sub-a {
    font-size: 14px;
    color: #bbb;
    margin-right: 30px;
    padding-left: 13px;
    position: relative;
    display: inline-block;
}

.header .nav-list li .sub-item .sub-a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    background: #0073b6;
    border-radius: 50%;
}

.header .nav-list li .sub-item .sub-a:hover {
    color: #fff;
}

.header .nav-list li:hover .sub-item {
    height: 40px;
}

.header .nav-list li .sub-item .ps {
    position: absolute;
}
.header .slogan {
    position: relative;
    margin-right: 35px;
    color: #222;
    line-height: 80px;
    font-size: 18px;
}

.header .slogan:before {
    content: "";
    position: absolute;
    right: -35px;
    top: 50%;
    margin-top: -12px;
    width: 1px;
    height: 24px;
    background: #d6d6d6;
}

.header .nav-list li>a {
    position: relative;
    display: inline-block;
    color: #4d4d4d;
    padding: 0 2px;
    font-size: 18px;
    line-height: 80px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.header .nav-list li>a:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    border-bottom: 2px solid #0073b6;
    opacity: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.header .nav-list li.on a:before,
.header .nav-list li a:hover:before {
    left: 0;
    width: 100%;
    opacity: 1;
}

.header .nav-list li.on a,
.header .nav-list li a:hover {
    color: #0073b6;
}

/*首页轮播*/
.banner {
    min-width: 1200px;
    position: relative;
    height: 650px;
    overflow: hidden;
}

.banner .bd {
    position: relative;
    z-index: 0;
}

.banner .bd ul {
    width: 100% !important;
}

.banner .bd li {
    width: 100% !important;
    height: 650px;
}

.banner .bd li .siteWidth {
    width: 1000px;
    position: relative;
    margin: 0 auto;
    height: 650px;
}

.banner .bd li a {
    height: 650px;
    display: block;
}

.banner .hd {
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 15px;
    left: 0;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.banner .hd ul li {
    cursor: pointer;
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 13px;
    height: 13px;
    margin: 0 5px;
    background: #fff;
    overflow: hidden;
    line-height: 9999px;
    border-radius: 50%;
}

.banner .hd ul .on {
    background: #224698;
}

/*首页内容*/
.index-main {
    height: 400px;
    text-align: center;
    font-size: 36px;
    line-height: 400px;
}

.index-cate {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 0;
}

.index-cate .item {
    display: inline-block;
    width: 385px;
    height: 200px;
    position: relative;
    box-shadow: 0 0 20px #f3f3f3;
    overflow: hidden;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.index-cate .item:hover {
    box-shadow: 0 0 20px #f3f8fc;
}

.index-cate .item~.item {
    margin-left: 22.5px;
}

.index-cate .item .cont {
    position: absolute;
    left: 40px;
    top: 65px;
}

.index-cate .item .cont .cn {
    font-size: 28px;
    color: #333;
    line-height: 1;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.index-cate .item:hover .cont .cn {
    color: #0073b6;
}

.index-cate .item .cont .en {
    font-size: 14px;
    color: #aaa;
    margin-top: 12px;
    line-height: 1.5;
    /*text-transform: uppercase;*/
}

.index-cate .item:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 2px solid #0073b6;
    z-index: 2;
    opacity: 0;
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    -o-transform: translateY(2px);
    transform: translateY(2px);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.index-cate .item:hover:before {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.index-cate-list li {
    float: left;
    margin-right: 60px;
    font-size: 16px;
    line-height: 40px;
}

.index-cate-list li a {
    color: #4d4d4d;
}

.index-cate-list li.on a,
.index-cate-list li:hover a {
    color: #0073b6;
}

.product-show {
    margin-top: 20px;
    margin-bottom: 60px;
    height: 590px;
    background: #f5f5f5;
    overflow: hidden;
}
.product-show-item {
    position: relative;
    height: 480px;
}
.product-show-item .bd ul li {
    height: 480px;
}
.product-show-item .bd ul li ~ li {
    display: none;
}
.product-show-item .bd ul li .pic {
    width: 820px;
    height: 480px;
    font-size: 0;
    text-align: center;
    line-height: 480px;
    /* background: #fff; */
    background: url(../images/bg-product.jpg) no-repeat center;
    overflow: hidden;
}
.product-show-item .bd ul li .pic img,
.product-show-item .hd ul li .pic img {
    max-height: 100%;
}
.product-show-item .bd ul li .product-intro {
    padding: 50px 25px 0;
}
.product-show-item .bd ul li .product-intro h2 {
    font-size: 26px;
}
.product-show-item .bd ul li .product-intro .cont {
    margin-top: 35px;
}
.product-show-item .bd ul li .product-intro .cont .des {
    margin-top: 0;
}
.product-show-item .hd {
    /*position: absolute;*/
    /*bottom: 0;*/
    width: 820px;
    background: #fff;
}
.product-show-item .hd ul li {
    width: 205px;
    height: 110px;
    float: left;
    cursor: pointer;
    background: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.product-show-item .hd ul li.on,
.product-show-item .hd ul li:hover {
    background: #0073b6;
}
.product-show-item .hd ul li .pic {
    width: 90px;
    height: 100%;
    line-height: 110px;
    overflow: hidden;
    text-align: center;
    font-size: 0;
}
.product-show-item .hd ul li .pic .icon-more {
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    background: url(../images/icon-more.png) no-repeat center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.product-show-item .hd ul li.on .pic .icon-more,
.product-show-item .hd ul li:hover .pic .icon-more {
    background: url(../images/icon-more-w.png) no-repeat center;
}
.product-show-item .hd ul li .cont {
    overflow: hidden;
    padding-top: 30px;
    padding-right: 10px;
}
.product-show-item .hd ul li .cont .cn {
    color: #333;
    font-size: 16px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.product-show-item .hd ul li .cont .en {
    font-size: 12px;
    color: #999999;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.product-show-item .hd ul li.on .cont .cn,
.product-show-item .hd ul li:hover .cont .cn {
    color: #fff;
}
.product-show-item .hd ul li.on .cont .en,
.product-show-item .hd ul li:hover .cont .en {
    color: #8dabcf;
}

.intro-bar {
    height: 220px;
    background: url(../images/scroll-bg.jpg) no-repeat center;
}

.index-news .index-cate-list {
    position: absolute;
    right: 0;
    top: 6px;
}

.index-news-content {
    margin-top: 35px;
    height: 450px;
    overflow: hidden;
}
.index-news-content .big-item ~ .big-item {
	/*display: none;*/
}

.index-news-pic {
    position: relative;
    width: 600px;
    height: 450px;
    overflow: hidden;
    font: 12px/1.5 Verdana, Geneva, sans-serif;
    text-align: left;
    background: white;
    float: left;
}
.index-news-pic .pic,
.index-news-pic .pic li {
	width: 600px !important;
    height: 450px !important;
}
.index-news-pic .pic img {
    width: 600px;
    height: 450px;
    display: block;
}

.index-news-pic .txt-bg {
    position: absolute;
    bottom: 0;
    z-index: 1;
    height: 60px;
    width: 100%;
    background: #333;
    filter: alpha(opacity=40);
    opacity: 0.4;
    overflow: hidden;
}

.index-news-pic .txt {
    position: absolute;
    bottom: 0;
    z-index: 2;
    height: 60px;
    width: 100%;
    overflow: hidden;
}

.index-news-pic .txt li {
    height: 60px;
    line-height: 60px;
    position: absolute;
    bottom: -60px;
}

.index-news-pic .txt li a {
    display: block;
    color: white;
    padding: 0 0 0 30px;
    font-size: 16px;
    text-decoration: none;
    width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index-news-pic .num {
    position: absolute;
    z-index: 3;
    bottom: 25px;
    right: 28px;
}

.index-news-pic .num li {
    float: left;
    position: relative;
    width: 13px;
    height: 13px;
    line-height: 13px;
    overflow: hidden;
    text-align: center;
    margin-right: 1px;
    cursor: pointer;
    margin-left: 10px;
}

.index-news-pic .num li a {
    position: absolute;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    text-decoration: none;
    background: #fff;
    font-size: 0;
}
.index-news-pic .num li.on a,
.index-news-pic .num a:hover {
    background: #0073b6;
}
.index-news-cont {
	width: 560px;
	float: right;
	overflow: hidden;
}
.index-news-cont .news-list {
    margin-bottom: 0;
    padding-top: 25px;
}
.index-news-cont .news-list li ~ li {
	margin-top: 50px;
}
.index-news-cont .news-list li .box {
	padding: 0;
	border: none;
}
.index-news-cont .news-list li .box .date {
	width: 105px;
	margin-top: 10px;
}
.index-news-cont .news-list li .box .cont {
    padding-right: 0;
    padding-left: 30px;
    width: 455px;
    box-sizing: border-box;
    overflow: hidden;
}
.index-news-cont .news-list li .box:hover .cont {
	-webkit-transform: translateX(-5px);
	-ms-transform: translateX(-5px);
	-o-transform: translateX(-5px);
	transform: translateX(-5px);
}
.index-news-cont .news-list li .box .cont h4 {
	margin-bottom: 10px;
}
.index-news-cont .news-list li .box .cont p {
    line-height: 22px;
}
.partner-list {
	margin-top: 45px;
	width: 1225px;
}
.partner-list li {
	width: 180px;
	height: 100px;
	text-align: center;
	line-height: 98px;
	border: 1px solid #ddd;
	float: left;
	margin-right: 24px;
	font-size: 0;
	overflow: hidden;
}
.partner-list li img {
	max-height: 100%;
}

/*底部*/
.footer {
    background: #474747;
}

.footer-content {
    padding: 35px 0;
}

.foot-nav .item {
    float: left;
    margin-left: 100px;
}

.foot-nav .item .tit {
    position: relative;
    font-size: 18px;
    color: #e2e2e2;
    margin-bottom: 15px;
}

.foot-nav .item ul li a {
    display: inline-block;
    width: 100%;
    line-height: 30px;
    font-size: 14px;
    color: #bababa;
}

.foot-nav .item ul li a:hover,
.copyright a:hover {
    color: #fff;
}

.foot-contact .footer-logo span {
    display: inline-block;
    margin-left: 15px;
    font-size: 16px;
    color: #cccccc;
    vertical-align: middle;
}

.foot-contact .tel {
    margin-top: 25px;
    color: #bababa;
}

.foot-contact .tel span {
    color: #e2e2e2;
    font-size: 42px;
    line-height: 1.1;
    font-family: "Roboto Bold";
    font-weight: bold;
}

.foot-contact .focus {
    margin-top: 12px;
}

.foot-contact .focus a {
    display: inline-block;
    position: relative;
    height: 34px;
    margin-right: 15px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.foot-contact .focus a .qr {
    position: absolute;
    left: 28%;
    top: 66px;
    margin-left: -43px;
    width: 110px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.foot-contact .focus a:hover .qr {
    opacity: 1;
    visibility: visible;
}
.foot-contact .focus a:hover .icon {
    opacity: .9;
}

.foot-contact .focus a .icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.foot-contact .focus .wx .icon {
    background: url(../images/footer-wx.png) no-repeat center;
    background-size: 90%;
}

.foot-contact .focus .dy .icon {
    background: url(../images/footer-dy.png) no-repeat center;
    background-size: 90%;
}

.foot-contact .focus .wb .icon {
    background: url(../images/footer-wb.png) no-repeat center;
}

.copyright {
    line-height: 50px;
    color: #888;
    text-align: left;
    border-top: 1px solid #555;
}

.copyright .fr a {
    margin-left: 5px;
}

.copyright a,
.foot-contact p a {
    color: #888;
}

.copyright a:hover,
.foot-contact p a:hover {
    color: #fff;
}


/*产品列表*/
.product-list {
    margin: 0 -13px;
    padding-bottom: 44px;
    font-size: 0;
    text-align: center;
}

.product-list li {
    margin-bottom: 26px;
    padding: 0 13px;
    text-align: center;
    float: none;
    display: inline-block;
}

.product-list li .pic {
    position: relative;
    height: 0;
    padding-bottom: 74.93%;
    overflow: hidden;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.product-list li .pic .img2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    opacity: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.product-list li .box:hover .pic .img2 {
    opacity: 1;
}

.product-list li .box:hover .pic {
    /*background: #f5f5f5;*/
}

.product-list li .cont {
    background: #f5f5f5;
    padding: 20px 0 15px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.product-list li .box:hover .cont,
.case-list li .box:hover .cont h5 {
    background: #0073b6;
}

.case-list li .pic {
    width: 385px;
    height: 288px;
    height: 288px;
    overflow: hidden;
}
.product-list li .cont h5 {
    font-size: 18px;
    color: #333;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.product-list li .cont p {
    font-size: 16px;
    color: #999;
    margin-top: 6px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.product-list li .box:hover .cont h5,
.product-list li .box:hover .cont p,
.case-list li .box:hover .cont h5 {
    color: #fff;
}


/*案例列表*/
.case-list {
    padding-bottom: 50px;
}

.case-list li {
    margin-bottom: 20px;
    text-align: center;
}

.case-list li .cont h5 {
    margin-top: 8px;
    line-height: 60px;
    background: #f5f5f5;
    color: #333;
    font-size: 16px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

/*新闻列表*/
.news-list {
    margin-bottom: 50px;
}

.news-list li .box {
    display: block;
    padding: 30px 0;
    border-bottom: 1px dashed #cdcdcd;
}

.news-list li .box .pic {
    overflow: hidden;
    width: 260px;
}

.news-list li .box .cont {
    padding-right: 40px;
    box-sizing: border-box;
    width: 670px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.news-list li .box:hover .cont {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
}

.news-list li .box .cont h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    transition: .5s;
}

.news-list li .box:hover .cont h4 {
    color: #0073b6;
}

.news-list li .box .cont .more {
    display: inline-block;
    width: 146px;
    line-height: 40px;
    border: 1px solid #9b9b9b;
    text-align: center;
    margin-top: 25px;
    color: #666;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.news-list li .box:hover .cont .more {
    background: #0073b6;
    color: #fff;
}

.news-list li .box .cont p {
    font-size: 14px;
    color: #828081;
    line-height: 30px;
}

.news-list li .box .date {
    width: 200px;
    font-size: 20px;
    color: #999;
    line-height: 1.1;
    text-align: center;
    margin-top: 40px;
}

.news-list li .box .date .day {
    font-size: 46px;
    line-height: 1;
    color: #333;
    margin-bottom: 5px;
    font-family: "Roboto Bold";
}

.news-list li .box .date span {
    display: inline-block;
    padding: 0 12px;
    border-top: 1px solid #ddd;
    line-height: 40px;
}


/*产品详情*/
.location {
    font-size: 16px;
}

.location .icon-home {
    display: inline-block;
    width: 26px;
    height: 20px;
    background: url(../images/icon-home.png) no-repeat;
    vertical-align: middle;
    margin-top: -4px;
    margin-right: 8px;
}

.product-xg .product-list {
    margin-bottom: -26px;
    padding-bottom: 100px;
    margin-top: 45px;
}

.product-header {
    padding-top: 50px;
    padding-bottom: 70px;
}

.product-album {
    width: 600px;
}

.product-album .bd {
    font-size: 0;
    text-align: center;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.product-album .hd {
    font-size: 0;
    text-align: center;
    margin-top: 20px;
}

.product-album .hd li {
    display: inline-block;
    width: 103px;
    height: 86px;
    line-height: 86px;
    font-size: 0;
    /*background: url(../images/bg-product-mini.png) no-repeat center;*/
    background: #fff;
    background-size: cover;
    margin: 0 8px;
    overflow: hidden;
    border: 1px solid transparent;
    cursor: pointer;
}
.product-album .hd li img {
    max-height: 100%;
}

.product-album .hd li.on {
    border-color: #0073b6;
}

.product-intro {
    overflow: hidden;
    padding: 55px 0 0 100px;
}

.product-intro h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #0073b6;
}

.product-intro .xh {
    font-size: 16px;
    color: #999;
    margin-top: 15px;
}

.product-intro .cont {
    margin-top: 30px;
    padding-top: 26px;
    margin-bottom: 80px;
    border-top: 1px solid #ddd;
}

.product-intro .cont h3 {
    font-size: 16px;
    color: #999;
}

.product-intro .cont .des {
    /*margin-top: 15px;*/
    font-size: 16px;
    line-height: 32px;
    height: 200px;
}
.product-intro .cont .des p,
.product-intro .cont .des p span {
    font-size: 16px !important;
    color: #666 !important;
    font-family: '微软雅黑' !important;
}

.zx-bar {
    font-size: 0;
}

.zx-bar .online,
.zx-bar .hotline {
    display: inline-block;
    width: 220px;
    line-height: 50px;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    border-radius: 3px;
}

.zx-bar .online:first-child {
    margin-right: 10px;
}

.zx-bar .online {
    background: #0073b6;
    font-size: 20px;
    letter-spacing: 3px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.zx-bar .online:hover {
    opacity: .9;
}

.zx-bar .online .icon-zx {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 28px;
    background: url(../images/icon-zx.png) no-repeat;
    margin-right: 10px;
}

.zx-bar .hotline {
    background: #6b6b6b;
    font-size: 18px;
}

.zx-bar .hotline .icon-tel {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 26px;
    background: url(../images/icon-tel.png) no-repeat;
    margin-right: 10px;
}

.product-tab-wrap {
    height: 60px;
    line-height: 58px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.product-tab li {
    position: relative;
    float: left;
    font-size: 16px;
    width: 160px;
    text-align: center;
    cursor: pointer;
    margin-right: 5px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.product-tab li.on,
.product-tab li:hover {
    color: #fff;
}

.product-tab li:before {
    content: "";
    width: 100%;
    height: 60px;
    background-color: #0073b6;
    position: absolute;
    left: 0;
    bottom: -1px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.product-tab li.on:before,
.product-tab li:hover:before {
    opacity: 1;
    visibility: visible;
    visibility: visible\9;
}

.product-tab li span {
    position: relative;
}

.product-content {
    padding-top: 40px;
}

.product-content .item {
    line-height: 30px;
}

.product-content .item~.item {
    display: none;
}

.product-xg {
    margin-top: 60px;
}

.tit-bar {
    position: relative;
    font-size: 28px;
    color: #333;
}

.tit-bar span {
    display: inline-block;
    font-size: 12px;
    color: #aaaaaa;
    line-height: 1.1;
    margin-left: 10px;
    text-transform: uppercase;
    position: relative;
    top: 2px;
}
.tit-bar.white {
    color: #fff;
}
.tit-bar.white span {
    color: #c3d8ec;
}
.tit-bar p {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 10px;
}



/*案例详情*/
/*新闻详情页*/
.news-location .ep {
    padding: 0 5px;
}

.icon-eye {
    width: 21px;
    height: 11px;
    /* background: url(../images/eye.png) no-repeat center;*/
    position: relative;
    top: -2px;
}

.news-show-left {
    float: left;
    width: 900px;
}

.news-show-cont {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
}

.news-show-left .news-title {
    padding: 40px 40px;
    padding-bottom: 30px;
}

.news-show-left .news-title h1 {
    font-size: 30px;
    color: #333;
    padding-bottom: 10px;
    font-weight: normal;
    line-height: 1.5;
}

.news-show-left .news-title p {
    font-size: 14px;
    color: #6b6b6b;
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.news-show-left .news-title p a {
    color: #6b6b6b;
}

.news-show-left .news-views {
    margin: 40px;
    margin-top: 0;
    font-size: 16px;
    min-height: 600px;
    color: #666;
    line-height: 1.75;
    overflow: hidden;
}

.news-show-left .news-views img {
    max-width: 100% !important;
}

.news-show-left .news-views p {
    font-size: 16px !important;
}

.news-show-left .news-views span {
    font-size: 16px !important;
}

.news-show-left .news-other {
    padding: 20px 15px;
    border-top: 1px #f1f1f1 solid;
}

.news-show-left .news-other p {
    display: block;
    height: 40px;
    line-height: 40px;
    padding-left: 3px;
}

.news-show-left .news-other p a {
    font-size: 14px;
    color: #333;
}

.news-show-left .news-other p a:hover {
    color: #0073b6;
}

.news-show-left .share-bar {
    padding: 20px 40px;
}

.news-show-left .share-bar .fl {
    position: relative;
    top: -3px;
}

.news-show-right {
    float: right;
    width: 280px;
}

.news-show-right dl {
    display: block;
    margin-top: 0;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #eee;
}

.news-show-right dl dt {
    display: block;
    height: 50px;
    line-height: 50px;
    position: relative;
    border-bottom: 1px #f1f1f1 solid;
}

.news-show-right dl.tab dt {
    height: 50px;
    line-height: 50px;
    color: #1d1d1d;
    font-size: 18px;
    padding-left: 20px;
}

.news-show-right dl.tab dd {
    position: relative;
}

.news-show-right dl.tab dd ul {
    display: block;
    padding: 0 20px;
}

.news-show-right dl.tab dd ul li {
    display: block;
    padding: 10px 0 10px;
    border-bottom: 1px #f1f1f1 solid;
}

.news-show-right dl.tab dd ul li .pic {
    margin-right: 20px;
    width: 60px;
    height: 60px;
    overflow: hidden;
    position: relative;
}

.news-show-right dl.tab dd ul li h5 {
    padding-top: 4px;
    padding-bottom: 10px;
    font-size: 14px;
    color: #666;
    display: block;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-show-right dl.tab dd ul li h5 a {
    color: #333;
}

.news-show-right dl.tab dd ul li h5 a:hover {
    color: #0073b6;
}

.news-show-right dl.tab dd ul li .news-cate {
    color: #999;
}

.news-show-right dl.tab dd ul li i {
    float: left;
    font-size: 12px;
    color: #999;
    font-style: normal;
}

.news-show-right dl.tab dd ul li em {
    float: right;
    padding-left: 25px;
    font-size: 12px;
    color: #999;
    /* background: url(../images/eye.png) no-repeat left center; */
    font-style: normal;
}

.news-show-right dl.tab dd .more {
    color: #333;
    height: 45px;
    line-height: 45px;
    border-top: 1px #f1f1f1 solid;
    position: relative;
    top: -1px;
    text-align: center;
}

.news-show-right dl.tab dd .more a {
    display: inline-block;
    position: relative;
    color: #333;
}

.news-show-right dl.tab dd .more a b {
    margin-left: 5px;
    -webkit-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
}

.news-show-right dl.tab dd .more a:hover b {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);
}

.news-show-right dl.tab dd .more a:hover {
    color: #0073b6;
}

.news-show-right dl.list dt {
    padding-left: 20px;
    color: #333;
    font-size: 18px;
}

.news-show-right dl.tab dt a {
    width: 33%;
    height: 42px;
    line-height: 42px;
    text-align: center;
    display: table-cell;
    color: #009A62;
    font-size: 18px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-show-right dl.list dt a b {
    width: 15px;
    height: 15px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    background-position: 0 -64px;
    margin-left: 2px;
    position: relative;
    top: -1px;
}

.news-show-right dl.list dd ul {
    display: block;
    padding: 20px;
}

.news-show-right dl.list dd ul li {
    padding-bottom: 12px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-show-right dl.list dd ul li a {
    position: relative;
    display: inline-block;
    color: #666;
    font-size: 14px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

/*.news-show-right dl.list dd ul li:before { content: "·"; color: #666; }*/
.news-show-right dl.list dd ul li a:hover {
    color: #0073b6;
}

.news-page-other {
    margin-top: 20px;
    border: 1px solid #eee;
    padding: 20px 40px;
    background: #fff;
}

.news-page-other p {
    line-height: 26px;
    font-size: 14px;
    color: #949494;
}

.news-page-other p a {
    color: #6b6b6b;
}

.news-page-other p a:hover {
    color: #0073b6;
}

.news-page-other .p-prev {
    margin-bottom: 10px;
}

.news-page-other .com-back-btn {
    margin-top: 14px;
}


.com-breadcrumb {
    height: 75px;
    line-height: 75px;
    color: #949494;
}

.com-breadcrumb a {
    color: #949494;
}

.com-breadcrumb a:hover {
    color: #0073b6;
}

.com-breadcrumb .cur {
    color: #333;
}

.com-back-btn {
    width: 120px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    color: #fff !important;
    background: #0073b6;
    text-align: center;
    border-radius: 16px;
    margin-top: 21.5px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.com-back-btn:hover {
    opacity: .9;
}

/*关于*/
.bg-gray-2 {
    background: #fafafa;
}
.page-cate-about {
    box-shadow: 0 0 5px #f4f4f4;
    border-bottom: none;
}
.about-intro .content h3 {
    font-size: 36px;
    color: #212121;
    line-height: 1.2;
    padding-bottom: 10px;
}
.about-intro .content h4 {
    font-size: 24px;
    color: #0073b6;
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-intro .content p {
    font-size: 16px;
    line-height: 30px;
}
.about-intro .content-1 .pic {
    margin-left: 78px;
    overflow: hidden;
}
.about-intro .content-1 .cont p {
    margin-top: 30px;
}
.about-intro .content-2 {
    margin-top: 60px;
    background: #f2f2f2;
    height: 260px;
    padding: 10px;
}
.about-intro .content-2 .pic {
    overflow: hidden;
}
.about-intro .content-2 .cont {
    overflow: hidden;
    padding: 22px 35px;
}
.about-intro .content-2 .cont p {
    font-size: 15px;
}
.about-intro .content-3 {
    margin-top: 50px;
}
.page-culture {
    height: 686px;
    background: url(../images/about-3.jpg) no-repeat center;
    padding-top: 90px;
}
.culture-list {
    margin-top: 85px;
    width: 800px;
}
.culture-list li {
    float: left;
    width: 360px;
    height: 180px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, .8);
    background-repeat: no-repeat;
    background-position: 40px 40px;
    margin-right: 16px;
    margin-bottom: 16px;
    padding: 45px 0 30px 90px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.culture-list li:hover {
    box-shadow: 0 0 20px rgba(0,0,0,.1);
}
.culture-list li.c1 {
    background-image: url(../images/culture-i1.png);
}
.culture-list li.c2 {
    background-image: url(../images/culture-i2.png);
    background-position: 25px 40px;
}
.culture-list li.c3 {
    background-image: url(../images/culture-i3.png);
}
.culture-list li.c4 {
    background-image: url(../images/culture-i4.png);
    background-position: 25px 40px;
}
.culture-list li h4 {
    font-size: 24px;
    line-height: 1;
    color: #0073b6;
}
.culture-list li p {
    font-size: 16px;
    line-height: 30px;
    margin-top: 20px;
}
.page-honor {
    padding-bottom: 75px;
}
.page-honor .bd {
    margin-top: 40px;
    overflow: hidden;
    height: 408px;
}
.honor-list {
    width: 1236px;
    margin-top: 40px;
    padding-bottom: 14px;
}
.honor-list li {
    float: left;
    width: 375px;
    margin-right: 36px;
    margin-bottom: 36px;
    text-align: center;
    background: #fff;
}
.honor-list li .pic {
    position: relative;
    width: 375px;
    height: 349px;
    line-height: 347px;
    font-size: 0;
    border: 1px solid #ddd;
    overflow: hidden;
}
.honor-list li .pic .cont {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0073b6;
    background: rgba(0, 115, 182, .8);
    color: #fff;
    line-height: 30px;
    text-align: left;
    padding: 50px;
    opacity: 0;
    font-size: 14px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.honor-list li .box:hover .pic .cont {
    opacity: 1;
}
.honor-list li .tit {
    height: 59px;
    line-height: 58px;
    border: 1px solid #ddd;
    border-top: none;
    font-size: 16px;
    color: #333;
}
.page-honor .hd {
    text-align: center;
    height: 13px;
    margin-top: 40px;
}
.page-honor .hd li {
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    font-size: 0;
    background: #aaa;
    vertical-align: middle;
    margin: 0 6px;
    cursor: pointer;
}
.page-honor .hd li.on {
    background: #0073b6;
}
.page-message {
    /*height: 680px;*/
}
.message-content {
    position: relative;
    width: 580px;
    padding-right: 60px;
}
.page-message .right {
    position: relative;
    width: 620px;
    height: 441px;
    background: url(../images/gyl.jpg) no-repeat center;
    margin-top: 65px;
}
.page-message .right .button {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -88px;
    margin-left: -87.5px;
    width: 195px;
    height: 196px;
    background: url(../images/down-btn.png) no-repeat center;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.page-message .right .button:hover {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
}
.page-message .right .button .icon {
    display: inline-block;
    width: 82px;
    height: 88px;
    background: url(../images/icon-biao.png) no-repeat;
    margin-bottom: 18px;
}
.page-message .tit-bar p {
    line-height: 1.5;
}
.form-list {
    margin-top: 20px;
}
.form-list li {
    width: 100%;
    height: 50px;
    line-height: 48px;
    border: 1px solid #bbb;
    padding-left: 15px;
    background: #fff;
    font-size: 14px;
}
.form-list li ~ li {
    margin-top: 9px;
}
.form-list li label {
    color: #444;
    display: inline-block;
    width: 70px;
}
.form-list li input {
    font-size: 14px;
    width: 410px;
    line-height: 30px;
    padding: 0 10px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.form-list li input:hover {
    background: #f5f5f5;
}
.message-content .sub {
    display: inline-block;
    margin-top: 15px;
    width: 150px;
    line-height: 50px;
    background: #0073b6;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.message-content .sub:hover {
    background: #016ba9;
}
/*招聘*/
.gr-employ .tit-minibar {
    /* padding:0 60px 0 80px; */
    line-height:60px;
    height: 60px;
    font-size:0;
    cursor: pointer;
}
.gr-employ .tit-header {
    background:#0073b6;
    margin-top: 30px;
    color: #fff;
}
.gr-employ .tit-minibar li {
    float: left;
    width:25%;
    font-size:16px;
    text-align: center
}
.gr-employ .tit-header li {
    color: #fff;
    font-size:18px;
    width: 25%;
    text-align: center
}
/* .gr-employ .tit-minibar li.middle {
    text-align:center;
    width: 28%;
} */
/* .gr-employ .tit-minibar li:last-child {
    width: 140px;
    float: right;
    text-align: center;
} */
.gr-employ-list .item {
    position: relative;
    background:#fff;
    border: 1px solid #ddd;
    border-top: none;
}
.gr-employ-list .item:nth-child(2n) {
    background: #f8f8f8;
}
.gr-employ-list .item ~ .item .cont {
    display:none;
}
.gr-employ-list .item .cont {
    width: 1100px;
    margin: 0 auto;
    padding: 25px 30px;
    display:none;
    line-height: 25px;
    border-top: 1px solid #ddd;
    font-size: 14px;
}
.gr-employ-list .item:before {
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    width: 1200px;
    border-top: 1px solid #828081;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.gr-employ-list .item.on {
    border-color: #0073b6;
}
.gr-employ-list .item.on:before {
    opacity: 1;
}
.gr-employ-list .item .cont .tit {
    float: left;
    color: #828081;
}
.gr-employ-list .item .cont .des {
    color: #444;
    overflow: hidden;
    padding-left: 20px;
    line-height: 32px;
    margin-top: -5px;
    padding-bottom: 20px;
}
.gr-employ-list .item .cont .des p span {
    font-family: "微软雅黑" !important;
}
.gr-employ-list .item .cont p {
    line-height: 32px;
}
.gr-employ-list .item .tit-bar {
    position:relative;
    cursor:pointer;
    -webkit-transition:.5s;
    -o-transition:.5s;
    transition:.5s;
}
.gr-employ-list .item .tit-bar:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 66px;
    height: 100%;
    background: url(../images/icon-job-normal.png) no-repeat center;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    opacity: .7;
}
.gr-employ-list .item .tit-bar.on:before {
    background: url(../images/icon-job.png) no-repeat center;
    opacity: 1;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.gr-employ-list .item .tit-bar.on {
    background:#d90d19;
    color:#fff;
}
.gr-employ-list .item .cont .email strong {
    color:#d90d19;
    -webkit-transition:.3s;
    -o-transition:.3s;
    transition:.3s;
}


.page-contact2 .tit-bar {
    margin-bottom: 30px;
}
.contact-map {
    float: right;
    width: 50%;
    height: 435px;
    background: #f5f5f5;
}
.contact-content {
    float: left;
    width: 50%;
    padding: 60px 50px 0;
    width: 600px;
    height: 435px;
    background: #fff;
}
.contact-content h3 {
    font-size: 32px;
    color: #212121;
    line-height: 1.1;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}
.contact-content .des {
    color: #111;
    font-size: 16px;
}
.contact-content .des a {
    color: #111;
}
.contact-content .des a:hover {
    color: #0073b6;
}
.contact-content .des span {
    color: #717171;
    display: inline-block;
    width: 85px;
    text-align: justify;
    height: 28px;
    vertical-align: top;
}
.contact-content .des span:after {
    content: "";
    display:inline-block;width:100%;height:0;
}


.contact-content .des p ~ p {
    margin-top: 10px;
}

