* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "微软雅黑";
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

.clear {
    overflow: hidden;
    clear: both;
}


/* 手机导航 */

.mobile-inner-header {
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 60px;
    display: none;
    line-height: 60px;
    text-align: center;
    color: #333;
    font-weight: bold;
    font-size: 22px;
}

.mobile-inner-header-icon {
    color: #333;
    height: 60px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 60px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    outline: none;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(51, 51, 51, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgba(51, 51, 51, 1);
}

.mobile-inner-header img {
    height: 75%;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    z-index: 999;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    width: 80%;
    margin-left: 10%;
    color: #333;
    border-bottom: solid 1px rgba(51, 51, 51, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav a:hover {
    color: rgba(51, 51, 51, 0.4);
    border-bottom: solid 1px rgba(51, 51, 51, 0.2);
}


/* 网页头部 */

.header {
    width: 100%;
    height: 130px;
}

.header_main {
    max-width: 1600px;
    height: 130px;
    margin: auto;
}

.header_trl {
    float: right;
    width: 668px;
    height: 47px;
    line-height: 47px;
    padding-left: 30px;
    background: url(../images/header_01.png) center no-repeat;
    font-size: 18px;
    color: #fff;
}

.logo {
    float: left;
    width: 29.06%;
    margin-top: 60px;
}

.logo img {
    width: 100%;
}

.header_right {
    float: right;
    width: 68.75%;
    margin-top: 30px;
}


/* 导航 */

.nav {
    width: 97%;
    overflow: hidden;
    float: left;
}

.nav ul {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.nav ul li {
    float: left;
    width: calc(100%/8);
    text-align: center;
    font-size: 20px;
}

.nav ul li a {
    color: #212121;
    display: inline-block;
}

.header_eng {
    width: 33px;
    height: 33px;
    float: right;
}


/* banner */

.banner {
    position: relative;
}

.banner_01 img {
    width: 100%;
}

.banner_01.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: left;
    padding-left: 10%;
}

.banner_01 .swiper-pagination-bullet {
    background: #c1c9d6;
    width: 15px;
    height: 15px;
    opacity: 1;
    /* position: absolute; */
    /* top: auto;
    bottom: 30px;
    left: 10%; */
}

.banner_01 .swiper-pagination-bullet-active {
    width: 15px;
    height: 15px;
    background-color: #fff;
    /* position: absolute; */
    /* top: auto;
    bottom: 30px;
    left: 10%; */
}


/* 关于我们 */

.about {
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    background: #fff;
    border-radius: 30px;
    padding-top: 55px;
    padding-bottom: 40px;
}

.about_left {
    width: 46.875%;
    height: 463px;
    background: url(../images/about_01.jpg) center no-repeat;
    float: left;
    color: #0959a3;
    line-height: 1.2;
    position: relative;
}

.about_left a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.about_left_line {
    width: 10%;
    height: 3px;
    background: #0959a3;
}

.about_eng {
    color: #0959a3;
    font-size: 64.03px;
    font-weight: 700;
}

.about_ch {
    color: #0959a3;
    font-size: 38px;
    font-weight: 700;
}

.about_right {
    float: right;
    width: 51.25%;
    overflow: hidden;
}

.about_right_title {
    width: 100%;
    font-size: 36px;
    color: #262626;
    font-weight: 700;
    text-align: right;
}

.about_right_content {
    width: 100%;
    text-indent: 2em;
    font-size: 18px;
    color: #7c7c7c;
    line-height: 2;
    margin-top: 30px;
}

.about_data {
    width: 100%;
    overflow: hidden;
    margin: auto;
    margin-top: 10px;
}

.about_data_01 {
    width: calc(100%/3);
    color: #006fb4;
    float: left;
    float: left;
}

.about_data_01 p:first-child {
    font-size: 21.75px;
    text-align: center;
    position: relative;
}

.about_data_01:nth-child(1) p:first-child::after {
    content: "/年/";
    font-size: 14px;
    color: #171717;
    writing-mode: tb-rl;
    position: absolute;
    right: 60px;
    top: 25px;
    letter-spacing: 2px;
}

.about_data_01:nth-child(2) p:first-child::after {
    content: "/人/";
    font-size: 14px;
    color: #171717;
    writing-mode: tb-rl;
    position: absolute;
    right: 60px;
    top: 25px;
    letter-spacing: 2px;
}

.about_data_01:nth-child(3) p:first-child::after {
    content: "/家/";
    font-size: 14px;
    color: #171717;
    writing-mode: tb-rl;
    position: absolute;
    right: 50px;
    top: 25px;
    letter-spacing: 2px;
}

.about_data_01 span {
    font-size: 44.99px;
    font-weight: 700;
}

.about_data_01 p:last-child {
    font-size: 17.25px;
    text-align: center;
}


/* 产品中心 */

.product {
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.title {
    font-size: 34px;
    color: #0959a3;
    font-weight: 700;
    text-align: center;
    background: url(../images/title_bg.png) center no-repeat;
}

.product_01 {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.product_01 .swiper-slide {
    width: 100%;
    overflow: hidden;
}

.product_pic {
    width: 100%;
    overflow: hidden;
}

.product_pic img {
    width: 100%;
}

.product_word {
    width: 100%;
    height: 100%;
    background: rgba(41, 44, 45, 0.7);
    padding: 20px 30px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.6s;
}

.product_word_border {
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    padding-top: 25%;
    line-height: 2.2;
}

.product_01 .swiper-slide:hover .product_word {
    opacity: 1;
}


/* 四大优势 */

.advantage {
    width: 100%;
    overflow: hidden;
    margin-top: 70px;
    padding-bottom: 60px;
}

.advantages {
    max-width: 1600px;
    margin: 100px auto 0;
    background: #f6f6f6;
    -webkit-box-shadow: #d7d7d8 0px 0px 10px;
    -moz-box-shadow: #d7d7d8 0px 0px 10px;
    box-shadow: #d7d7d8 0px 0px 10px;
}

.advantagetitle {
    text-align: center;
    font-size: 34.3px;
    color: #333333;
    font-weight: bold;
}

.advantagetitles {
    text-align: center;
    font-size: 20px;
    color: #8e8e8e;
}

.advtop {
    width: 100%;
    padding: 15px;
    height: 600px;
}

.advtops_fr {
    float: right;
    width: 49.2%;
}

.advtops_fr img {
    width: 100%;
}

.advtops_fl {
    width: 42%;
    float: left;
    margin-left: 6.7%;
}

.advtops_fl_top {
    text-align: center;
    width: 125px;
    height: 193px;
    background: #0959a3;
    margin-top: -85px;
    padding-top: 20px;
}

.advtops_fl_top_title {
    font-size: 30px;
    color: #fff;
}

.advtops_fl_top_num {
    display: inline-block;
    font-size: 70px;
    color: #fff;
    font-weight: 300;
    border-bottom: 1px solid #fff;
}

.advtops_fl_title {
    font-size: 32px;
    color: #3d3d3d;
    font-weight: 300;
    margin-top: 50px;
}

.advtops_fl_con {
    font-size: 20px;
    color: #858585;
    font-weight: 300;
    text-indent: 2em;
    margin-top: 45px;
    line-height: 1.8;
    background: url(../images/advantage_01.png) left top 8px no-repeat;
}

.advtops_tel {
    display: inline-block;
    margin-top: 115px;
    text-align: center;
    background: #efefef;
    height: 105px;
    line-height: 105px;
    border-radius: 30px 0 30px 0;
    padding: 0 50px;
    font-size: 20px;
    color: #9b9b9b;
}

.advtops_tel img {
    margin-right: 15px;
    margin-top: -3px;
}

.advtops_tel span {
    font-size: 33px;
    color: #0d2241;
    font-weight: 300;
    position: relative;
    top: 5px;
}

.advtops {
    display: none;
}

.advbot {
    width: 100%;
    overflow: hidden;
    height: 290px;
    padding-top: 60px;
}

.advbots_pic {
    margin: auto;
    width: 120px;
    height: 120px;
    background: #0959a3;
    text-align: center;
    border-radius: 100%;
    line-height: 120px;
}

.advbots {
    width: 25%;
    text-align: center;
    float: left;
}

.advbots_title {
    font-size: 30px;
    color: #000;
    font-weight: bold;
    margin-top: 20px;
}

.advbots.active .advbots_pic {
    background: #ffdb03;
}

.advbots.active .advbots_title {
    color: #ffdb03;
}


/* 案例展示 */

.case {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    background: #0959a3;
    padding-top: 40px;
	padding-bottom:40px;
}

.case_title {
    font-size: 34px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: url(../images/case_title_bg.png) center no-repeat;
}

.case_main {
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}
.case_01{
	width:100%;
	overflow:hidden;}
.case_01.swiper-slide{
	width:100%;
	overflow:hidden;}
.case_main_01 {
    /* width: 350px; */
/*    width: 21.875%;*/
width:100%;
    height: auto;
    /*float: left;
    margin-right: 4.16%;
    margin-bottom: 20px;*/
}

/*.case_main_01:nth-child(4n) {
    margin-right: 0;
}*/

.case_pic {
    width: 100%;
    overflow: hidden;
}

.case_pic img {
    width: 100%;
}

.case_word {
    width: 100%;
    color: #fff;
    height: 70px;
    line-height: 70px;
    font-size: 22px;
}


/* 荣誉资质 */

.aboutteam {
    width: 100%;
    overflow: hidden;
    min-height: 743px;
    padding-top: 30px;
    background: url(../images/honorbg.png)center 0 no-repeat;
    margin-top: 50px;
}

.aboutteam>div {
    max-width: 1055px;
    margin: auto;
    overflow: hidden;
}

.honorTop {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 54px;
    z-index: 4;
    position: relative;
}

.honorTop span {
    display: block;
    font-size: 35px;
    font-weight: bold;
    color: #171616;
}

.honorTop div {
    font-size: 22px;
    color: #171616;
    text-transform: uppercase;
}

#certify {
    position: relative;
    width: 100%;
    margin: 0 auto
}

#certify .swiper-container {
    padding-bottom: 60px;
    margin: auto;
}

#certify .swiper-slide {
    width: 411px;
    height: 582px;
    text-align: center;
}

#certify .swiper-slide img {
    display: block;
    margin: auto;
    width: 100%;
    border: 3px solid #fff;
    border-radius: 5px;
}


/* 新闻中心 */

.new {
    width: 100%;
    overflow: hidden;
    padding-bottom: 60px;
}

.news {
    max-width: 1600px;
    margin: auto;
}

.newtop {
    width: 100%;
    overflow: hidden;
}

.newtop_fl {
    float: left;
}

.newtop_title {
    font-size: 34px;
    color: #333;
    font-weight: bold;
}

.newtop_titles {
    font-size: 34px;
    text-transform: uppercase;
    font-weight: bold;
    color: #f5f7fa;
    -webkit-text-stroke: 1px rgb(196, 196, 196);
    margin-top: -10px;
}

.newtop_fr {
    float: right;
    margin-top: 30px;
}

.newtop_fr a {
    display: block;
    width: 155px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    background: #0959a3;
    border-radius: 0 30px 0 30px;
    font-size: 14px;
    color: #fff;
}

.newbot {
    width: 100%;
    overflow: hidden;
    margin-top: 45px;
}

.newpic img,
.newline img {
    width: 100%;
}

.newtitle {
    font-size: 20px;
    color: #333;
    margin-top: 25px;
}

.newcon {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

.newline {
    width: 100%;
    margin-top: 55px;
}

.newarrow {
    text-align: center;
    margin-top: 55px;
}

.newarrow .swiper-button-prev {
    display: inline-block;
    position: static;
    width: 25px;
    height: 40px;
    background: url(../images/prev-new.png) center no-repeat;
    margin-top: 0;
    outline: none;
}

.newarrow .swiper-button-next {
    display: inline-block;
    position: static;
    width: 25px;
    height: 40px;
    background: url(../images/next-new.png) center no-repeat;
    margin-top: 0;
    outline: none;
}

.newarrow .swiper-pagination {
    display: inline-block;
    position: relative;
    height: 40px;
    line-height: 40px;
    top: -15px;
}

.newarrow .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #0959a3;
    margin: 0 24px;
    border-radius: 5px;
    outline: none;
}

.newarrow .swiper-pagination-bullet-active {
    width: 47px;
}


/* 页脚 */

.copy {
    width: 100%;
    padding: 20px 0;
    color: #fff;
    text-align: center;
    background: #0959a3;
}

.copy a {
    color: #fff;
    margin-left: 10px;
}

.wrap {
    max-width: 1600px;
    width: 95%;
    margin: 0 auto;
}


/* 联系我们内页 */

#contact {
    padding-bottom: 60px;
}

#contact .contact-info {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 60px;
}

#contact .contact-info .item {
    float: left;
    overflow: hidden;
    width: 25%;
    padding: 60px 0 20px;
}

#contact .contact-info .item .ico {
    height: 70px;
}

#contact .contact-info .item .title {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

#contact .contact-info .item .info {
    height: 96px;
    line-height: 32px;
    font-family: Arial;
    font-size: 20px;
    color: #333;
}

#contact .contact-info .item .info a {
    font-size: inherit;
    color: inherit;
}

#contact .contact-info .item .button {
    display: block;
    width: 30.588235%;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
    color: #fff;
    background-color: #0382db;
    border-radius: 3px;
    margin: 0 auto;
}

#contact .clean {
    width: 100%;
    overflow: hidden;
}

#contact .map {
    float: left;
    width: 50%;
    overflow: hidden;
}

#contact .map .img-0 {
    opacity: 0;
}

#contact .map .img-1 {
    right: 0;
    top: 0;
}

#contact .contact-area {
    float: right;
    width: 49.117647%;
    overflow: hidden;
}

#contact .contact-area .contact-info2 {
    background-color: #f7f7f7;
    padding: 25px 55px 30px;
}

#contact .contact-area .contact-info2 .ctitle {
    line-height: 46px;
    font-size: 26px;
    color: #222;
}

#contact .contact-area .contact-info2 .address {
    line-height: 36px;
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
}

#contact .contact-area .contact-info2 .line {
    width: 1px;
    height: 85%;
    background-color: #ececec;
    left: 50%;
    top: 6.8376%;
}

#contact .contact-area .contact-info2 .qrcode {
    float: left;
    width: 50%;
}

#contact .contact-area .contact-info2 .qrcode .img {
    width: 40%;
    max-width: 117px;
}
#contact .contact-area .contact-info2 .qrcode .img img{
	width:100%;
}

#contact .contact-area .contact-info2 .qrcode .name {
    width: 50%;
    height: 100%;
    line-height: 34px;
    font-size: 16px;
    color: #888;
    margin-top: 5%;
    margin-left: 20px;
}

#contact .contact-area .contact-info2 .qrcode .name * {
    font-size: inherit;
    color: inherit;
    margin-left: 20px;
}

#contact .contact-area .contact-form {
    width: 93.41317%;
    margin-top: 20px;
}

#contact .contact-area .contact-form .text {
    float: left;
    width: 26.923%;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    padding: 10px 0;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #999;
    margin-left: 9.6153846%;
    box-sizing: content-box;
}

#contact .contact-area .contact-form .text:first-child {
    margin-left: 0;
}

#contact .contact-area .contact-form .area {
    width: 100%;
    height: 100px;
    line-height: 30px;
    font-family: inherit;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    padding: 10px 0;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #999;
    margin: 15px 0;
    resize: none;
    box-sizing: content-box;
}

#contact .contact-area .contact-form .button {
    width: 26.923%;
    /*width: 150px;*/
    height: 50px;
    font-size: 14px;
    color: #fff;
    background-color: #6d6d6d;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
}

#contact .contact-area .contact-form .code-img {
    width: 26.923%;
    height: 50px;
    margin-left: 9.6153846%;
}

#contact .contact-area .contact-form .code-img img {
    width: 100%;
    height: 100%;
}

#contact .rows {
    text-align: right;
}


/* 新闻中心内页 */

.info_bg3 {
    background: #f4f4f4;
    padding-top: 3%;
    overflow: hidden;
    padding-bottom: 20px;
}

.info_t3 {
    height: 90px;
    overflow: hidden;
    line-height: 90px;
    text-align: center;
    background: url(../images/i_bg1.jpg) center bottom no-repeat;
    font-size: 42px;
    color: #333333;
    letter-spacing: 5px;
    margin-bottom: 3%;
}

.news_ul {
    width: 100%;
    padding-bottom: 20px;
}

.news_ul ul li {
    display: block;
    overflow: hidden;
}

.news_ul ul li a {
    color: #333;
    display: block;
    width: 100%;
    height: 100%;
}

.l {
    float: left;
}

.r {
    float: right;
}

.news_ul ul li .imgs {
    width: 50%;
    overflow: hidden;
}

.news_ul ul li .imgs img {
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.news_ul ul li .news_box {
    width: 50%;
    overflow: hidden;
}

.news_ul ul li .news_box .news_txt {
    width: 90%;
    margin: 0 auto;
    max-width: 700px;
    font-size: 16px;
}

.news_ul ul li .news_box .news_txt em {
    display: block;
    color: #0382db;
    margin-top: 15%;
    margin-bottom: 7%;
}

.news_ul ul li .news_box .news_txt h2 {
    font-size: 36px;
    letter-spacing: 4px;
    overflow: hidden;
    height: 36px;
    line-height: 36px;
    margin-bottom: 3%;
}

.news_ul ul li .news_box .news_txt p {
    line-height: 26px;
    height: 78px;
    overflow: hidden;
}

.news_ul ul li .news_box .news_txt label {
    width: 40%;
    height: 74px;
    line-height: 74px;
    display: block;
    border: 1px solid #666666;
    color: #666666;
    text-align: center;
    cursor: pointer;
    margin-top: 8%;
    clear: both;
    font-size: 16px;
}

.news_ul ul li .news_box .news_txt label:Hover {
    border: 1px solid #0382db;
    color: #0382db;
}

.news_ul ul li a:hover .news_box .news_txt h2 {
    color: #0382db;
}

.news_ul ul li a:hover .imgs img {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}


/* 新闻详情 */

.news_bg2 {
    background: #f5f5f5;
    padding-top: 1%;
    overflow: hidden;
    padding-bottom: 1%;
    clear: both;
}

.news_bg2 .wrap2 {
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
}

.news_t2 {
    font-size: 30px;
    color: #666;
    line-height: 70px;
    letter-spacing: 2px;
}

.about_x {
    width: 100%;
    margin: 0 auto;
    margin-top: 2%;
    overflow: hidden;
    line-height: 26px;
    font-size: 14px;
    padding-bottom: 25px;
}

.about_x .show_t {
    padding-bottom: 10px;
    line-height: 40px;
    font-size: 36px;
    color: #333333;
    letter-spacing: 1.5px;
    text-align: left;
    margin-bottom: 10px;
}

.about_x .con_line {
    text-align: left;
    height: 36px;
    line-height: 20px;
    font-size: 16px;
    color: #868686;
}

.about_x .con_id img {
    margin-bottom: 15px;
    max-width: 100%;
}

.about_x .con_id {
    line-height: 28px;
    overflow: hidden;
    white-space: normal;
    word-break: break-all;
    padding-top: 20px;
    font-size: 16px;
    color: #080808;
    text-align: left;
}

.about_x table {
    border-collapse: collapse;
    border-spacing: 0;
}

.about_x table td {
    line-height: 22px;
    height: 27px;
    /*border:1px solid #000;*/
}

.prenext {
    border-top: 1px solid #e6e6e6;
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 30px;
    padding-top: 15px;
    margin-top: 15px;
    color: #333333;
}

.prenext a {
    color: #333333;
}

.prenext a:hover {
    color: #eb5404;
    text-decoration: none;
}

.prenext .goback {
    float: right;
    height: 26px;
    line-height: 26px;
    text-align: right;
    padding-left: 23px;
    background: url(../images/goback.png) left center no-repeat;
    font-size: 14px;
    color: #333333;
    margin-top: 16px;
    /* border-bottom:1px solid #a6a6a6;*/
}


/* 关于我们内页 */

.ser-conent {
    width: 100%;
    background: #f6f8fb;
    min-height: 400px;
    padding: 1px 0;
}

.w1400 {
    margin-right: auto;
    margin-left: auto;
    max-width: 1600px;
    z-index: 999;
    position: relative;
}

.title-ser-1 {
    width: 100%;
    text-align: center;
    background: #fff;
    margin-top: -50px;
    position: relative;
}

.title-ser-1 a {
    font-size: 18px;
    color: #444;
    margin-right: 203px;
    line-height: 87px;
    display: inline-block
}

.title-ser-1 a::after {
    content: '';
    height: 2px;
    width: 0;
    background: #001daf;
    display: block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin: 0 auto;
}

.title-ser-1 a:hover {
    color: #001daf
}

.title-ser-1 a:hover::after {
    width: 100%;
}

.title-ser-1 .action {
    color: #001daf
}

.title-ser-1 .action::after {
    width: 100%;
}

.title-ser-1 a:last-of-type {
    margin-right: 0;
}

.ser-conent .ser-cont1 {
    padding: 50px 0 98px;
}

.ser-conent .ser-cont1 .left {
    width: 50%;
}

.ser-conent .ser-cont1 .left>p {
    font-size: 18px;
    color: #444
}

.ser-conent .ser-cont1 .left h3 {
    font-size: 36px;
    color: #444;
    font-weight: bold;
    line-height: 40px;
    margin-top: 10px;
}

.ser-conent .ser-cont1 dl {
    width: 100%;
    padding: 30px 0 30px;
    clear: both;
}

.ser-conent .ser-cont1 dl dd {
    float: left;
    text-align: center;
    width: 33.3%;
}

.ser-conent .ser-cont1 dl dd:last-of-type {
    margin-right: 0;
}

.ser-conent .ser-cont1 dl dd b {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.ser-conent .ser-cont1 dl dd b em {
    font-size: 72px;
    color: #004da4;
    font-weight: normal;
    line-height: 72px;
    font-style: normal;
}

.ser-conent .ser-cont1 dl dd b i {
    font-size: 18px;
    position: relative;
    font-style: normal;
    color: #666;
}

.ser-conent .ser-cont1 dl dd span {
    font-size: 18px;
    color: #444;
}

.ser-conent .ser-cont1 dl dd:nth-of-type(2) b i::after {
    content: '+';
    font-size: 23px;
    top: -39px;
    right: 0;
    position: absolute;
}

.ser-conent .ser-cont1 dl dd:nth-of-type(3) b i::after {
    content: '+';
    font-size: 23px;
    top: -39px;
    right: 0;
    position: absolute;
}

.ser-conent .ser-cont1 .left .btn {
    width: 100%;
}

.ser-conent .ser-cont1 .left .btn .phone {
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
}

.ser-conent .ser-cont1 .left .btn a {
    width: 200px;
    line-height: 50px;
    border-radius: 25px;
    text-align: center;
    display: inline-block;
    color: #fff;
    background: #004da4;
    font-size: 16px;
    border: 1px solid #004da4
}

.ser-conent .ser-cont1 .left .btn a:hover {
    background: #001daf;
    /* color: #004da4 */
}

.ser-conent .ser-cont1 .left .btn .phone .cone {
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
}

.ser-conent .ser-cont1 .left .btn .phone .cone span {
    font-size: 16px;
    color: #666;
}

.ser-conent .ser-cont1 .left .btn .phone .cone b {
    font-size: 28px;
    color: #004da4;
    line-height: 28px;
}

.ser-conent .ser-cont1 .rigth {
    width: 50%;
}

.ser-conent .ser-cont1 .rigth img {
    width: 100%;
    height: auto;
}

.title-ser-1 .abot a {
    margin-right: 9%;
    cursor: pointer;
}

.title-ser-1 .abot a:last-of-type {
    margin-right: 0
}

.ser-conent .ser-cont1 .left .about-t {
    color: #0061af;
    margin-top: 20px;
}

.ser-conent .ser-cont1 .left .about-p {
    font-size: 16px;
    color: #666;
    line-height: 32px;
    width: 80%;
    margin-top: 20px;
}

.ser-conent .ser-cont1 .left dl dd .t {
    width: 142px;
}

.ser-conent .ser-cont1 .left dl dd:first-of-type .t {
    width: 213px;
}

.about-fz {
    width: 100%;
    padding: 1px;
    padding-bottom: 105px;
}

.about-fz .atitle {
    text-align: center;
    padding-bottom: 40px;
}

.about-fz .atitle h3 {
    font-size: 36px;
    color: #444;
    font-weight: bold;
}

.about-fz .atitle span {
    font-size: 14px;
    color: #828081;
    text-transform: uppercase;
    line-height: 36px;
}

.about-fz .atitle p {
    font-size: 16px;
    color: #444;
    margin-top: 10px;
}

.about-fz-conent {
    border: 1px solid #bdd3ec;
    width: 100%;
    min-height: 300px;
    background: #fff
}

.about-fz-conent dl {
    width: 100%;
    text-align: center;
    margin-top: -10px;
}

.about-fz-conent dl dd {
    display: inline-block;
    text-align: center;
    font-size: 20px;
    color: #444;
    /* font-weight: bold; */
    margin-right: 7%;
    cursor: pointer;
    width: 10%;
}

.about-fz-conent dl dd p span {
    font-size: 42px;
}

.about-fz-conent dl dd p {
    font-size: 16px;
    font-weight: bold;
}

.about-fz-conent dl .action {
    color: #0061af
}

.about-fz-conent dl .action i {
    border-color: #0061af
}

.about-fz-conent dl dd:last-of-type {
    margin-right: 0
}

.about-fz-conent dl dd i {
    width: 20px;
    height: 20px;
    background: #fff;
    display: block;
    margin: 0 auto 15px;
    ;
    border-radius: 50%;
    border: 4px solid #828081;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.pages-view {
    width: 85%;
    position: relative;
    margin: 50px auto 50px;
}

.pages-view .pageview {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
    -webkit-transition: transform 0.5s, opacity 0.5s;
    padding-bottom: 50px;
}

.pages-view .action {
    transform: scale(1);
    -webkit-transform: scale(1);
    transform-origin: 100% 50% !important;
    -webkit-transform-origin: 100% 50% !important;
    opacity: 1;
}

.pages-view .pageview p {
    font-size: 14px;
    color: #666;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
    padding-left: 30px;
    position: relative;
    margin-bottom: 20px;
    width: 80%;
}

.pages-view .pageview img {
    width: 100%;
    height: auto;
}

.pages-view .pageview p::before {
    content: '';
    display: block;
    height: 15px;
    width: 15px;
    background: #ff9000;
    position: absolute;
    left: 0;
    top: 6px;
}

.about-fz-conent ul {
    width: 20%;
    margin-bottom: 0;
}

.about-fz-conent ul li {
    width: 100%;
    border-right: 1px solid #bdd3ec;
    border-bottom: 1px solid #bdd3ec;
    position: relative;
    cursor: pointer;
}

.about-fz-conent ul li::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(189, 211, 236, 0.1);
    position: absolute;
    left: 0;
    top: 0;
    display: block
}

.about-fz-conent ul li:last-of-type {
    border-bottom: none
}

.about-fz-conent ul li img {
    width: 100%;
}

.about-fz-conent ul .action {
    border-right: none
}

.about-fz-conent ul .action::before {
    display: none
}

.about-fz-conent .about-fz {
    width: 79%;
    height: 610px;
    position: relative;
}

.about-fz-conent .about-fz .about-fz-pages {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0);
    -webkit-transform: translateY(-50%) scale(0);
    opacity: 0;
    transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
    transition: transform 0.5s, opacity 0.5s;
    -webkit-transition: transform 0.5s, opacity 0.5s;
}

.about-fz-conent .about-fz .action {
    opacity: 1;
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transform: translateY(-50%) scale(1) !important;
    -webkit-transform: translateY(-50%) scale(1) !important;
}

.about-fz-conent .about-fz .fz-conent {
    display: inline-block;
    vertical-align: middle;
    width: 60%;
    box-sizing: border-box;
    padding-left: 3%;
}

.about-fz-conent .about-fz img {
    width: 32%;
    height: auto;
    margin-left: 2%;
}

.about-fz-conent .fz-conent h3 {
    font-size: 24px;
    color: #444;
    font-weight: bold;
    margin-bottom: 30px;
}

.about-fz-conent .fz-conent h3::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    background: #ff9000;
    margin-right: 15px;
}

.about-fz-conent .fz-conent .conent {
    width: 100%;
    padding-left: 20px;
    box-sizing: border-box;
    font-size: 14px;
    color: #444
}

.about-fz-conent .fz-conent a {
    width: 200px;
    display: block;
    margin-left: 20px;
    color: #fff;
    background: #0061af;
    line-height: 40px;
    text-align: center;
    margin-top: 30px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.about-fz-conent .fz-conent a:hover {
    width: 250px;
}

.qye-title {
    text-align: center;
    padding-bottom: 40px;
}

.qye-title h3 {
    font-size: 36px;
    color: #444;
    font-weight: bold;
}

.qye-title span {
    font-size: 14px;
    color: #828081;
    text-transform: uppercase;
    line-height: 36px;
}

.qye-title p {
    font-size: 16px;
    color: #444;
    margin-top: 10px;
}

.about-qye ul {
    width: 100%;
    margin-bottom: 0;
}

.about-qye ul li {
    width: calc(100%/8);
    box-sizing: border-box;
    background-position: center top;
    border-left: 1px solid #fff;
    height: 600px;
    float: left;
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.about-qye ul li:first-of-type {
    border-left: none
}

.about-qye ul li::after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    left: 0;
    top: 0;
    z-index: 1;
}

.about-qye ul li h3 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    font-size: 32px;
    color: #fff;
    /* font-weight: bold; */
    width: 40px;
    text-align: center;
    z-index: 2;
    line-height: 38px;
}

.about-qye ul .action {
    width: calc(100%/2);
    /* background-size: 100% 100% !important; */
}

.about-qye ul .action .conent {
    opacity: 1;
    transition: opacity 0.3s, transform 0.3s;
    -webkit-transition: opacity 0.3s, transform 0.3s;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    transform: translate3d(-50%, 0, 0) scale(1);
    -webkit-transform: translate3d(-50%, 0, 0) scale(1);
}

.about-qye ul .action h3 {
    opacity: 0;
}

.about-qye ul .action::after {
    background: rgba(0, 97, 175, 0.3)
}

.about-qye ul li .conent {
    position: absolute;
    left: 50%;
    top: 13%;
    width: 80%;
    transform: translate3d(-50%, 0, 0) scale(0);
    -webkit-transform: translate3d(-50%, 0, 0) scale(0);
    z-index: 3;
    opacity: 0;
}

.about-qye ul li .conent b {
    font-size: 36px;
    color: #fff;
}

.about-qye ul li .conent .txt {
    font-size: 14px;
    color: #fff;
    line-height: 28px;
    margin-top: 2%;
}

.about-client {
    width: 100%;
    min-height: 300px;
    padding-bottom: 103px;
}

.about-client ul {
    width: 100%;
}

.about-client ul li {
    float: left;
    margin-right: 0.57%;
    width: 12%;
    margin-bottom: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    overflow: hidden;
    border: 1px solid #ccc;
}

.about-client ul li p {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff9000;
    line-height: 118px;
    color: #fff;
    font-size: 16px;
    left: 0;
    top: 0;
    text-align: center;
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.about-client ul li img {
    width: 100%;
    height: 79px;
    transition: all 0.8s;
}

.about-client ul li:hover img {
    transform: scale(1.1);
}

.about-client ul li:nth-of-type(8n) {
    margin-right: 0;
}

.about-client-conetn {
    width: 100%;
    background: #fff;
    padding-top: 105px;
}

.about-environment {
    width: 100%;
    background: #f6f8fb;
    padding-top: 103px;
    padding-bottom: 114px;
}

.about-environment-conetnt {
    width: 100%
}

.about-environment-conetnt .pages0t {
    width: 100%;
    height: 471px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.about-environment-conetnt .pages0t .left {
    width: 66%;
}

.about-environment-conetnt .pages0t .rigth {
    width: 33%;
}

.about-environment-conetnt .pages0t li {
    float: left;
}

.about-environment-conetnt .paf .left {
    height: 471px;
    overflow: hidden;
}

.about-environment-conetnt img {
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    cursor: pointer;
}

.about-environment-conetnt img:hover {
    transform: scale(1.05);
    -webkit-ransform: scale(1.05);
}

.about-environment-conetnt .paf .rigth ul {
    width: 100%;
}

.about-environment-conetnt .paf .rigth ul li:first-of-type {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.about-environment-conetnt .paf .rigth ul li:nth-of-type(2) {
    width: 49%;
    margin-right: 2%;
    height: 230px;
    background: #0061af;
    color: #fff;
    font-size: 28px;
    text-align: center;
    box-sizing: border-box;
    padding-top: 59px;
    margin-top: 10px;
}

.about-environment-conetnt .paf .rigth ul li:last-of-type {
    width: 49%;
    height: 230px;
    overflow: hidden;
    margin-top: 10px;
}

.about-environment-conetnt .pat .left li {
    height: 471px;
    margin-right: 1.2%;
    overflow: hidden;
}

.about-environment-conetnt .pat .left li:first-child {
    width: 24.35%;
    overflow: hidden;
}

.about-environment-conetnt .pat .left li:nth-of-type(2) {
    width: 24.35%;
}

.about-environment-conetnt .pat .left li:nth-of-type(2) p {
    height: 230px;
    margin-bottom: 10px;
    background: #ff9000;
    color: #fff;
    font-size: 28px;
    text-align: center;
    box-sizing: border-box;
    padding-top: 59px;
}

.about-environment-conetnt .pat .left li:nth-of-type(2) .ds {
    height: 230px;
    width: 100%;
    overflow: hidden;
}

.about-environment-conetnt .pat .left li:last-of-type {
    margin-right: 0;
    width: 48.5%;
    overflow: hidden;
}

.about-environment-conetnt .pat .rigth .ds {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.about-environment-conetnt .pat .rigth .ds:last-of-type {
    margin-top: 10px;
}

.pages-view .swiper-button-prev {
    top: 40%;
    left: -60px;
}

.pages-view .swiper-button-next {
    top: 40%;
    right: -60px;
}

.honswiper img {
    width: 100%;
}


/* 案例展示 */

.zi_all_top {
    padding-top: 2.8%;
    text-align: center;
    padding-bottom: 2.8%;
    background: #edebea;
}

.zi_all_top .zi_con {
    max-width: 770px;
    width: 96%;
    margin: auto;
    color: #5d5a57;
}

.zi_all_top .zi_con span {
    display: inline-block;
    font-size: 36px;
    line-height: 60px;
    border-bottom: 2px solid #5d5a57;
}

@media (max-width: 480px) {
    .zi_all_top .zi_con span {
        font-size: 22px;
        line-height: 50px;
    }
}

.zi_all_top .zi_con .p1 {
    font-size: 18px;
    line-height: 36px;
    margin: 10px 0px 20px;
}

@media (max-width: 480px) {
    .zi_all_top .zi_con .p1 {
        font-size: 14px;
        line-height: 28px;
    }
}

.zi_all_top .zi_con .p2 {
    font-size: 13px;
    line-height: 24px;
    padding-bottom: 3%;
}

.zi_all_top .zi_con .p3 {
    padding-bottom: 80px;
}


/*

.pro_show {
    width: 96%;
    max-width: 1510px;
    background: #edebea;
    margin: auto;
    padding: 80px 0px 40px;
}

.pro_show .container {
    max-width: 1310px;
    width: 100%;
    margin: auto;
}

.pro_show .container .pro_show_ul {
    margin-right: -30px;
}

.pro_show .container .pro_show_ul li {
    width: 305px;
    margin-right: 30px;
    float: left;
}

.pro_show .container .pro_show_ul li .img_show {
    position: relative;
    width: 245px;
    margin: auto;
    z-index: 999;
}

.pro_show .container .pro_show_ul li .img_show i {
    display: block;
    padding-bottom: 50.4%;
}

.pro_show .container .pro_show_ul li .nei {
    width: 100%;
    padding: 100px 30px 60px;
    background: #ffffff;
    position: relative;
    top: -90px;
    color: #636363;
    transition: background 0.5s;
    cursor: pointer;
}

.pro_show .container .pro_show_ul li .nei .nei_tit {
    font-size: 18px;
    display: block;
    text-align: center;
    border-bottom: 1px solid #cccccc;
    line-height: 55px;
    white-space: nowrap;
    overflow: hidden;
}

.pro_show .container .pro_show_ul li .nei .nei_tit:hover {
    font-weight: bold;
}

.pro_show .container .pro_show_ul li .nei p {
    font-size: 12px;
    line-height: 24px;
    margin: 20px auto 35px;
}

.pro_show .container .pro_show_ul li .nei .more {
    width: 151px;
    height: 36px;
    border: 2px solid #b3b2b1;
    display: block;
    margin: auto;
    text-align: center;
    line-height: 32px;
    color: #828282;
    font-family: arial;
    font-size: 14px;
}

.pro_show .container .pro_show_ul li .nei:hover {
    background: #a99269;
    color: #ffffff;
}

.pro_show .container .pro_show_ul li .nei:hover .nei_tit {
    color: #ffffff;
    border-bottom: 1px solid #baa887;
}

.pro_show .container .pro_show_ul li .nei:hover .more {
    color: #ffffff;
    border-color: #ffffff;
}

.pro_show .container .pro_show_ul li .nei_y {
    font-family: arial;
}

@media (max-width: 1200px) {
    .pro_show .container .pro_show_ul {
        margin-right: 0px;
    }
    .pro_show .container .pro_show_ul li {
        width: 23%;
        margin: 0px 1%;
    }
    .pro_show .container .pro_show_ul li .img_show {
        width: 80%;
    }
    .pro_show .container .pro_show_ul li .nei p {
        height: 96px;
        overflow: hidden;
    }
}

@media (max-width: 992px) {
    .pro_show .container .pro_show_ul li {
        width: 31.33%;
        margin: 0px 1%;
    }
}

@media (max-width: 640px) {
    .pro_show .container .pro_show_ul li {
        width: 48%;
        margin: 0px 1%;
    }
}

@media (max-width: 480px) {
    .pro_show .container .pro_show_ul li {
        width: 98%;
    }
    .pro_show .container .pro_show_ul li .nei p {
        height: auto;
        overflow: hidden;
    }
}

.pro_show .prev_next {
    max-width: 1310px;
    width: 96%;
    text-align: left;
    margin: 60px auto;
    line-height: 40px;
    color: #ffffff;
    font-size: 14px;
}

.pro_show .prev_next li {
    float: left;
    width: 50%;
    padding-left: 10px;
    background: #a99269;
}

@media (max-width: 640px) {
    .pro_show .prev_next li {
        width: 100%;
        margin-bottom: 10px;
    }
}

.pro_show .prev_next li a {
    color: #ffffff;
}


/*产品展示2*/

.show1 {
    max-width: 1070px;
    margin: auto;
    padding: 0px 10px;
}

.show1 .show1_1 {
    width: 100%;
}

.show1 .show1_1 .left_s {
    width: 100%;
}

.show1 .show1_1 .left_s .slick1 {
    width: 20%;
    float: left;
    min-width: 65px;
    margin-right: 2%;
}

.show1 .show1_1 .left_s .slick1 div {
    height: 65px;
    position: relative;
    margin: 10px auto;
    cursor: pointer;
}

.show1 .show1_1 .left_s .slick1 .slick-current img {
    border: 2px solid #a99269;
}

.show1 .show1_1 .left_s .slick2 {
    width: 70%;
    float: left;
}

.show1 .show1_1 .left_s .slick2 div {
    position: relative;
    height: 358px;
}


/*
  .show1 .show1_1 .right_s {
    width: 37%;
    float: left;
    padding-top: 3%;
    font-size: 14px;
    color: #5a5552;
  }
  .show1 .show1_1 .right_s h3 {
    font-size: 30px;
    line-height: 45px;
  }
  .show1 .show1_1 .right_s select {
    border: none;
    border-bottom: 1px solid #c8c6c5;
    background: none;
    outline: none;
    width: 100px;
  }
  .show1 .show1_1 .right_s select option {
    background: none;
  }
  .show1 .show1_1 .right_s div {
    margin-top: 30px;
  }
  */

@media (max-width: 480px) {
    .show1 .show1_1 .left_s,
    .show1 .show1_1 .right_s {
        width: 100%;
    }
    .show1 .show1_1 .left_s .slick1 {
        margin-right: 5%;
    }
}

.show1 .show1_2 {
    margin-top: 40px;
}

.show1 .show1_2 .s2_l {
    width: 63%;
    float: left;
    padding-right: 20%;
    color: #5a5552;
}

.show1 .show1_2 .s2_l h3 {
    font-size: 24px;
    margin: 20px auto 15px;
}

.show1 .show1_2 .s2_l p {
    font-size: 13px;
    line-height: 26px;
    margin-bottom: 50px;
}

.show1 .show1_2 .s2_2 {
    width: 37%;
    position: relative;
    float: right;
}

.show1 .show1_2 .s2_2 i {
    padding-bottom: 108%;
    display: block;
}

@media (max-width: 768px) {
    .show1 .show1_2 .s2_l {
        padding-right: 5%;
    }
}

@media (max-width: 480px) {
    .show1 .show1_2 .s2_l,
    .show1 .show1_2 .s2_2 {
        width: 100%;
    }
}

.show1 .form_3 {
    margin-top: 40px;
    color: #8b8b8b;
    font-size: 14px;
}

.show1 .form_3 ul {
    margin-right: -2%;
}

.show1 .form_3 ul li {
    width: 48%;
    float: left;
    border: 1px solid #d3d3d2;
    padding: 10px 0px 10px 15px;
    margin-bottom: 20px;
    margin-right: 2%;
}

.show1 .form_3 ul li span {
    display: inline-block;
    margin-right: 5px;
}

.show1 .form_3 ul li span i {
    font-style: normal;
    color: #ff0000;
    display: inline-block;
    margin-left: 2px;
}

.show1 .form_3 ul li input {
    width: 80%;
    border: none;
    outline: none;
    background: none;
}

@media (max-width: 768px) {
    .show1 .form_3 ul li input {
        width: 70%;
    }
}

@media (max-width: 480px) {
    .show1 .form_3 ul li {
        width: 100%;
    }
}

.show1 .form_3 .text_a {
    border: 1px solid #d3d3d2;
    padding: 10px 0px 0px 15px;
    width: 100%;
}

.show1 .form_3 .text_a span {
    display: inline-block;
}

.show1 .form_3 .text_a span i {
    font-style: normal;
    color: #ff0000;
    display: inline-block;
    margin-left: 2px;
}

.show1 .form_3 .text_a textarea {
    width: 100%;
    min-height: 120px;
    background: none;
    border: none;
    outline: none;
}

.show1 .form_3 .yan {
    position: relative;
    margin-top: 20px;
}

.show1 .form_3 .yan input {
    width: 50%;
    border: none;
    outline: none;
    background: none;
}

.show1 .form_3 .yan .yan_k {
    border: 1px solid #d3d3d2;
    padding: 7px 0px 7px 15px;
    width: 30%;
}

.show1 .form_3 .yan .yan_k span {
    display: inline-block;
    margin-right: 5px;
}

.show1 .form_3 .yan .yan_k span i {
    font-style: normal;
    color: #ff0000;
    display: inline-block;
    margin-left: 2px;
}

@media (max-width: 480px) {
    .show1 .form_3 .yan .yan_k {
        width: 60%;
    }
}

.show1 .form_3 .yan img {
    position: absolute;
    left: 31%;
    top: 0px;
}

@media (max-width: 480px) {
    .show1 .form_3 .yan img {
        left: 61%;
        width: 40%;
        top: 5px;
    }
}

.show1 .form_3 .sum_b {
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    background: #a99269;
    display: block;
    margin-top: 30px;
    transition: 0.3s;
}

.show1 .form_3 .sum_b:hover {
    background: #959595;
}

*/ .pro_s_d {
    width: 96%;
    max-width: 1510px;
    background: #edebea;
    margin: auto;
    padding: 80px 0px 40px;
}

@media (max-width: 480px) {
    .pro_s_d {
        padding-top: 0px;
    }
}

.pro_s_d .p_d {
    max-width: 1310px;
    margin: auto;
    width: 100%;
}

.pro_s_d .p_d .pro_show_ul {
    margin-right: -30px;
}

.pro_s_d .p_d .pro_show_ul li {
    width: 305px;
    margin-right: 30px;
    float: left;
}

.pro_s_d .p_d .pro_show_ul li .img_show {
    position: relative;
    width: 245px;
    margin: auto;
    z-index: 999;
}

.pro_s_d .p_d .pro_show_ul li .img_show i {
    display: block;
    padding-bottom: 79.75%;
}

.pro_s_d .p_d .pro_show_ul li .nei {
    width: 100%;
    padding: 100px 30px 60px;
    background: #ffffff;
    position: relative;
    top: -90px;
    color: #636363;
    transition: background 0.5s;
    cursor: pointer;
}

.pro_s_d .p_d .pro_show_ul li .nei .nei_tit {
    font-size: 18px;
    display: block;
    text-align: center;
    border-bottom: 1px solid #cccccc;
    line-height: 55px;
    white-space: nowrap;
    overflow: hidden;
}

.pro_s_d .p_d .pro_show_ul li .nei .nei_tit:hover {
    font-weight: bold;
}

.pro_s_d .p_d .pro_show_ul li .nei p {
    font-size: 12px;
    line-height: 24px;
    margin: 20px auto 35px;
}

.pro_s_d .p_d .pro_show_ul li .nei .more {
    width: 151px;
    height: 36px;
    border: 2px solid #b3b2b1;
    display: block;
    margin: auto;
    text-align: center;
    line-height: 32px;
    color: #828282;
    font-family: arial;
    font-size: 14px;
}

.pro_s_d .p_d .pro_show_ul li .nei:hover {
    background: #a99269;
    color: #ffffff;
}

.pro_s_d .p_d .pro_show_ul li .nei:hover .nei_tit {
    color: #ffffff;
    border-bottom: 1px solid #baa887;
}

.pro_s_d .p_d .pro_show_ul li .nei:hover .more {
    color: #ffffff;
    border-color: #ffffff;
}

.pro_s_d .p_d .pro_show_ul li .nei_y {
    font-family: arial;
}

@media (max-width: 1200px) {
    .pro_s_d .p_d .pro_show_ul {
        margin-right: 0px;
    }
    .pro_s_d .p_d .pro_show_ul li {
        width: 23%;
        margin: 0px 1%;
    }
    .pro_s_d .p_d .pro_show_ul li .img_show {
        width: 80%;
    }
    .pro_s_d .p_d .pro_show_ul li .nei p {
        height: 96px;
        overflow: hidden;
    }
}

@media (max-width: 992px) {
    .pro_s_d .p_d .pro_show_ul li {
        width: 31.33%;
        margin: 0px 1%;
    }
}

@media (max-width: 640px) {
    .pro_s_d .p_d .pro_show_ul li {
        width: 48%;
        margin: 0px 1%;
    }
}

@media (max-width: 480px) {
    .pro_s_d .p_d .pro_show_ul li {
        width: 98%;
    }
    .pro_s_d .p_d .pro_show_ul li .nei p {
        height: auto;
        overflow: hidden;
    }
}

.pro {
    width: 100%;
    background: #edebea;
}

.pro .container {
    max-width: 1600px;
    width: 96%;
    margin: auto;
    padding-bottom: 40px;
}

.pro .container .pro_ul li {
    width: 50%;
    float: left;
    position: relative;
    cursor: pointer;
}

.pro .container .pro_ul li .a_left {
    width: 50%;
    background: #ffffff;
    position: absolute;
    text-align: center;
    border-bottom: 4px solid #a99269;
    padding: 7.6% 5.6% 42.3%;
    height: 0px;
    box-sizing: border-box;
}

.pro .container .pro_ul li .a_left h3 {
    font-family: "agency fb";
    color: #2f2b2b;
    font-size: 22px;
}

.pro .container .pro_ul li .a_left span {
    width: 100px;
    height: 0px;
    display: inline-block;
    border-bottom: 1px solid #d3d1ce;
}

.pro .container .pro_ul li .a_left h4 {
    color: #0382db;
    font-size: 22px;
    margin: 12% auto;
}

.pro .container .pro_ul li .a_left p {
    color: #535252;
    line-height: 22px;
    height: 66px;
    overflow: hidden;
}

.pro .container .pro_ul li .a_left .more {
    color: #5d5a57;
    font-size: 14px;
    width: 142px;
    height: 35px;
    display: inline-block;
    border: 1px solid #b3b2b1;
    line-height: 35px;
    text-align: center;
    margin-top: 8%;
    margin-bottom: 14.6%;
}

@media (max-width: 1200px) {
    .pro .container .pro_ul li .a_left h4 {
        margin: 10% auto;
    }
    .pro .container .pro_ul li .a_left .more {
        margin-top: 2%;
        margin-bottom: 9%;
    }
}

@media (max-width: 992px) {
    .pro .container .pro_ul li .a_left {
        padding: 10.6% 5.6% 39.1%;
    }
}

@media (max-width: 640px) {
    .pro .container .pro_ul li .a_left p {
        display: none;
    }
}

@media (max-width: 480px) {
    .pro .container .pro_ul li .a_left {
        padding: 11.6% 5.6% 38.1%;
    }
    .pro .container .pro_ul li .a_left h3 {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
    }
    .pro .container .pro_ul li .a_left .more {
        width: 100px;
        height: 26px;
        line-height: 26px;
    }
}

.pro .container .pro_ul li .right_hide {
    color: #ffffff;
    font-size: 22px;
    text-align: center;
    padding-top: 18%;
    width: 50%;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -25%;
    display: none;
}

.pro .container .pro_ul li .right_hide h3 {
    font-family: "agency fb";
}

.pro .container .pro_ul li .right_hide span {
    width: 100px;
    height: 0px;
    display: inline-block;
    border-bottom: 2px solid #ffffff;
    position: relative;
    top: -15px;
}

.pro .container .pro_ul li .right_hide h4 {
    margin: 4% auto;
}

.pro .container .pro_ul li .right_hide .more {
    color: #ffffff;
    font-size: 14px;
    width: 142px;
    height: 35px;
    display: inline-block;
    border: 1px solid #ffffff;
    line-height: 35px;
    text-align: center;
    margin-top: 31px;
    transition: 1s;
}

.pro .container .pro_ul li .right_hide .more:hover {
    background: #0382db;
    border: 1px solid #0382db;
}

@media (max-width: 480px) {
    .pro .container .pro_ul li .right_hide h3 {
        font-size: 14px;
    }
    .pro .container .pro_ul li .right_hide span {
        border-bottom: 1px solid #ffffff;
    }
    .pro .container .pro_ul li .right_hide h4 {
        font-size: 14px;
        margin: 1% auto;
        margin-top: -10px;
    }
    .pro .container .pro_ul li .right_hide .more {
        width: 100px;
        height: 26px;
        line-height: 26px;
        margin-top: 0px;
    }
}

.pro .container .pro_ul li .a_right {
    width: 50%;
    position: relative;
    padding-bottom: 50.4%;
    overflow: hidden;
    left: 50%;
    transition: 1s;
}

.pro .container .pro_ul li .a_right .num {
    display: inline-block;
    position: absolute;
    top: 37px;
    left: 20px;
    font-family: "agency fb";
    font-size: 36px;
    z-index: 99;
    color: #ffffff;
}

@media (max-width: 480px) {
    .pro .container .pro_ul li .a_right .num {
        top: 20px;
    }
}

.pro .container .pro_ul li .a_right img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -50%;
    max-height: 100%;
    display: block;
    vertical-align: middle;
    margin: auto;
}

.pro .container .pro_ul li .hh {
    width: 100%;
    left: 0%;
    transition: 1s;
}

@media (max-width: 992px) {
    .pro .container .pro_ul li {
        width: 100%;
    }
}


/* 产品中心 */

.zi_bread {
    width: 100%;
    padding: 30px 0px;
}

.zi_bread .bread_con {
    max-width: 1200px;
    width: 98%;
    margin: auto;
    text-align: center;
}

.zi_bread .bread_con h3 {
    color: #3c3208;
    font-size: 28px;
    font-weight: 500;
    margin: 0px;
}

.zi_bread .bread_con .curre {
    color: #564811;
    font-size: 14px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    text-align: right;
}

.zi_bread .bread_con .curre a {
    color: #564811;
}

@media (max-width: 640px) {
    .zi_bread {
        padding: 8px 0px;
    }
    .zi_bread .bread_con h3 {
        font-size: 20px;
        padding-bottom: 20px;
    }
    .zi_bread .bread_con .curre {
        line-height: 20px;
        height: 20px;
    }
    .zi_bread .bread_con .curre {
        text-align: center;
    }
}

.product_nav {
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    font-size: 0;
}

.product_nav a {
    display: block;
    float: left;
    text-align: center;
    width: 13.5%;
    overflow: hidden;
    padding: 6px 20px;
  /*  background: #ddd;*/
    border-radius: 30px;
    color: #3474b4;
    font-size: 16px;
    margin-bottom: 20px;
    margin-right: 8.125%;
	border:1px solid #3474b4;
}

.product_nav a:nth-child(5n) {
    margin-right: 0;
}

.product_nav a.active {
    background: #3474b4;
	color:#fff;
}

.inproduct {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    padding-bottom: 60px;
}

.inproduct_main {
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
}

.inproduct_main_01 {
    width: 23%;
    overflow: hidden;
    height: 295px;
    float: left;
    margin-right: 2%;
    margin-bottom: 15px;
}

.inproduct_main_01:nth-child(4n) {
    margin-right: 0;
}

.inproduct_pic {
    width: 100%;
    overflow: hidden;
    transition: all 0.6s;
}

.inproduct_main_01:hover .inproduct_pic {
    transform: translateY(-50px);
}

.inproduct_pic img {
    width: 100%;
}

.inproduct_word {
    width: 100%;
    height: 0;
    line-height: 50px;
    text-align: center;
    background: #282727;
    color: #fff;
    font-size: 16px;
    transition: all 0.6s;
}

.inproduct_main_01:hover .inproduct_word {
    height: 50px;
    transform: translateY(-50px);
}

.inproduct_big_pic {
    width: 100%;
    height: 100%;
    background: rgba(50, 50, 50, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}

.inproduct_close {
    font-size: 80px;
    float: right;
    cursor: pointer;
    color: #fff;
}

.inproduct_big_pic img {
    display: block;
    width: 40%;
    overflow: hidden;
    margin: auto;
    margin-top: 140px;
}


/* 服务体系 */

.service {
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
    padding-bottom: 40px;
}

.service_title {
    font-size: 40px;
    color: #000000;
    font-weight: 700;
    text-align: center;
}

.service_content {
    margin-top: 40px;
    font-size: 14px;
    color: #0e0f0f;
    line-height: 2.4;
}


/* 人才招聘 */

.job {
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
    padding-bottom: 40px;
}

.job_title {
    font-size: 40px;
    color: #000000;
    font-weight: 700;
    text-align: center;
}

.job_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.job_pic {
    width: 49%;
    overflow: hidden;
    float: left;
}

.job_pic img {
    width: 100%;
}

.job_right {
    width: 49%;
    float: right;
    color: #000000;
    font-size: 20px;
    line-height: 2.2;
    text-indent: 2em;
}

/* 产品详情*/
.proshow {
    max-width: 1600px;
    overflow: hidden;
    margin: 20px auto 40px auto;
    padding: 0 60px;
}

.proshow_left {
    width: 45%;
    overflow: hidden;
    float: left;
}

.proshow_left img {
    width: 100%;
}

.proshow_right {
    float: right;
    width: 50%;
    overflow: hidden;
    margin-top: 60px;
}

.proshow_title {
    font-size: 30px;
    color: #000000;
    font-weight: 700;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 20px;
}

.proshow_main {
    width: 100%;
    overflow: hidden;
}

.proshow_word {
    float: left;
    font-size: 18px;
    font-weight: 700;
    color: #0556a3;
	width:15%;
}

.proshow_content {
    float: left;
    margin-left: 2%;
    font-size: 16px;
    color: #656565;
    line-height: 2.2;
	width:83%;
}