@-webkit-keyframes rotating
/* Safari and Chrome */
    {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes pusher {
    33% {
        transform: scale(0.7);
    }
    66% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.7);
    }
}

.other-banner{
    width: 100%;
    position: relative;
}
.other-banner img{
    width: 100%;
    height: auto;
}



.re-position{
    position: relative;
}
.a-position{
    height: 0px;
    position: absolute;
    top: -120px;
}

.about{
    width: 100%;
    padding: 10px 0 20px;
}
.about-img{
    position: relative;
}
.about-img img{
    border-radius: 30px;
}
.about-img::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f2ab18;
    top: 10px;
    left: 10px;
    z-index: -1;
    border-radius: 30px;
}

.culture{
    width: 100%;
    background-color: #f6f6f6;
    padding: 60px 0;
}
.culture-left{
    position: relative;
    width: 55%;
    float: left;
}
.culture-txt{
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 2px;
    margin-top: 40px;
    background-color: #ffffff;
    border-radius: 30px 0px 0px 30px;
    padding: 40px 110px 40px 50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0px 12px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 0px 12px rgba(0,0,0,.1);
}
.culture-left::before{
    content: '';
    position: absolute;
    width: 360px;
    height: 168px;
    bottom: -45px;
    left: -60px;
    z-index: 1;
    border-radius: 90px;
    border: 5px solid #f2ab18;
}
.culture-right{
    width: 45%;
    float: right;
    position: relative;
}
.culture-right img{
    width: 100%;
    border-radius: 5px;
}
.culture-right .culture-tit{
    position: absolute;
    top: 120px;
    left: -60px;
    background-color: rgba(242, 171, 24, 0.8);
    filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#c8f2ab18, endcolorstr=#c8f2ab18);
    color: #fff;
    z-index: 2;
    padding: 30px 80px 30px 80px;
    border-radius: 90px;
    box-shadow: 0 0px 16px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 0px 16px rgba(0,0,0,.1);
}
.culture-tit strong{
    display: block;
    font-size: 54px;
    line-height: 64px;
    font-family: '楷体';
    letter-spacing: 2px;
}
.culture-tit strong:nth-child(2){
    padding-left: 120px;
}



.case-box{
    width: 100%;
    padding: 60px 0;
    position: relative;
    text-align: center;
}
.case-item-box{
    /* display: inline-block;
    vertical-align: top; */
    float: left;
    text-align: center;
    margin: 18px;
    border: 1px solid #e1e1e1;
}
.case-item-box:nth-child(3n+3){
    margin-right: 0;
}
.case-item-box:hover{
    box-shadow: 0 0px 16px rgba(0,0,0,.2) !important;
    -webkit-box-shadow: 0 0px 16px rgba(0,0,0,.2) !important;
}
.case-list-images{
    width: 1300px;
    margin: 40px auto 0;
    padding: 0 40px;
}
.case-list-images img{
    width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.case-list-images img:hover{
    box-shadow: 0 0px 16px rgba(0,0,0,.2) !important;
    -webkit-box-shadow: 0 0px 16px rgba(0,0,0,.2) !important;
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
    transform: scale(.95);
}

.product-box{
    width: 100%;
    padding: 60px 0;
    position: relative;
}
.product-item-box{
    float: left;
    margin-right: 30px;
    margin-top: 30px;
    text-align: center;
}
.product-item-box:nth-child(4n+4){
    margin-right: 0;
}

.page-list{
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
.page-list ul{
    display: inline-block;
}
.page-list ul li{
    display: inline-block;
    margin: 2px;
}
.page-list ul .active a{
    background-color: #07257a;
    color: #fff;
}

.page-list ul li a{
    display: block;
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #e3e3e3;
    color: #232323;
    cursor: pointer;
}
.page-list ul li a:hover{
    background-color: #e3e3e3;
}
.page-list ul .active a:hover{
    background-color: #07257a;
    color: #fff;
}


.news-list{
    width: 1300px;
    margin: 0px auto;
}
.news-item{
    width: 300px;
    height: 340px;
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
    position: relative;
}
.news-item:nth-child(4n+4){
    margin-right: 0;
}
.news-item::before{
    content: '';
    width: 0px;
    height: 2px;
    background-color: #f2ab18;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.news-item:hover::before{
    width: 100%;
}
.news-item:hover .news-txt .news-tit b{
    color: #f2ab18;
}
.news-item:hover .news-txt .news-tit h3{
    color: #f2ab18;
}
.news-item:hover .news-image img{
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.news-item a{
    display: block;
    width: 100%;
    height: 100%;
}
.news-image{
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 16px;
}
.news-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.news-tit{
    width: 100%;
}
.news-tit h3{
    font-size: 16px;
    line-height: 24px;
    color: #07257a;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.news-tit b{
    font-size: 12px;
    line-height: 24px;
    color: #07257a;
    font-weight: normal;
    display: block;
    margin: 2px 0 6px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.news-details {
    width: 1120px;
    margin: 0 auto;
    background-color: #f6f6f6;
    padding: 40px 60px;
    border-radius: 10px;
}
.news-details-tit{
    text-align: left;
    padding-bottom: 10px;
}
.news-details-tit h1{
    font-size: 24px;
    color: #000;
}
.news-details-tit p{
    font-size: 14px;
    color: #999999;
    margin-top: 10px;
}
.news-details-tit p span{
    display: inline-block !important;
}
.news-details-txt{
    padding: 10px 2px;
    color: #333333;
    font-size: 16px;
    line-height: 30px;
}
.news-details-txt video{
    width: 100% !important;
    height: 450px !important;
}
.news-details-txt img {
    width: 100%;
    display: block;
    margin: 16px auto;
}
.case-tit{
    text-align: center;
    padding-bottom: 20px;
}
.case-tit h3{
    font-size: 24px;
    color: #111;
    font-weight: normal;
}
.case-tit p{
    display: inline-block;
    margin-top: 12px;
}

.line{
    width: 100%;
    height: 1px;
    background-color: #e1e1e1;
    margin: 20px 0;
    position: relative;
}
.line span{
    display: block;
    width: 80px;
    height: 20px;
    background-image: url(/images/product-logo.png);
    background-repeat: no-repeat;
    margin: 0 auto;
    background-color: #ffffff;
    position: absolute;
    top: -10px;
}
.line span:nth-child(1){
    background-position: left center;
    left: 0px;
}
.line span:nth-child(2){
    background-position: right center;
    right: 0px;
}


.page-lr{
    padding-top: 10px;
    width: 100%;
}
.page-l,.page-r{
    display: block;
    width: 300px;
    height: 40px;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    background-color: #07257a;
    line-height: 38px;
    color: #fff;
    padding: 0 16px;
    border: 1px solid #fff;
    border-radius: 10px;
}
.page-l{
    float: left;
}
.page-r{
    float: right;
}
.page-lr strong{
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    line-height: 38px;
    color: #fff;
    width: 22%;
    float: left;
}
.page-lr a{
    width: 78%;
    float: left;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    line-height: 38px;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.page-l:hover,
.page-r:hover{
    color: #ffffff;
    background-color: #f2ab18;
    border: 1px solid #f2ab18;
}
.page-l:hover strong,
.page-r:hover strong{
    color: #ffffff;
}
.page-l:hover a,
.page-r:hover a{
    color: #ffffff;
}


.pain{
    background-color: #f8f8f8;
    padding: 60px 0;
}
.solution{
    padding: 60px 0;
}

.sec-box{
    width: 1300px;
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
}
.sec-box ul li{
    display: inline-block;
    vertical-align: top;
    width: 280px;
    margin: 0 15px;
}

.pain-list ul li{
    background-color: #ffffff;
    padding: 30px 20px 20px;
    height: 300px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.pain-list ul li:hover{
    box-shadow: 0 0px 12px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 0px 12px rgba(0,0,0,.2);
}
.pain-list ul li img{
    height: 64px;
    width: auto;
}
.pain-list ul li strong{
    display: block;
    color: #07257a;
    font-size: 18px;
    line-height: 28px;
    margin: 10px 0;
}
.pain-list ul li p{
    font-size: 14px;
    color: #555555;
    line-height: 24px;
    text-align: left;
}

.solution-img{
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.solution-img img{
    width: auto;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}
.solution-list ul li{
    text-align: left;
    height: 380px;
    box-shadow: 0 0px 10px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 0px 10px rgba(0,0,0,.1);
}
.solution-txt{
    padding: 5px 10px 5px 20px;
}
.solution-txt strong{
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    margin: 10px 0;
    background-color: #07257a;
    padding: 2px 20px;
    margin-left: -20px;
}
.solution-txt div{
    font-size: 14px;
    color: #555555;
    line-height: 24px;
    width: 100%;
    height: 100px;
    overflow-y: auto;
    padding-right: 10px;
}
.solution-txt div::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 3px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
.solution-txt div::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 3px;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
    background: #cccccc;
}
.solution-txt div::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    background: #f9f9f9;
}


.product-list{
    width: 1300px;
    font-size: 0;
    padding-bottom: 20px;
}
.product-list .product-li{
    display: inline-block;
    vertical-align: top;
    width: 295px;
    height: 368px;
    margin: 15px;
    background-color: #ffffff;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.product-item{
    width: 100%;
    height: 100%;
}
.product-img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
}
.product-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
    align-items: center;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.product-title{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    transform: translateY(100%);
}
.product-title strong{
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.product-title b{
    display: block;
    width: 68px;
    height: 2px;
    background-color: #f2ab18;
    margin: 0 auto;
    margin-top: 16px;
}
.product-list .product-li:hover{
    box-shadow: 0 0px 16px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 0px 16px rgba(0,0,0,.2);
}
.product-list .product-li:hover .product-title{
    transform: translateY(0);
}
/* .product-list .product-li:hover .product-img img{
    transform: scale(1.05);
} */


.container{
    width: 1300px;
    padding: 40px 0 65px;
    margin: 0 auto;
}
.content-box{
    padding-top: 50px;
    width: 1300px;
    margin: 0 auto;
}

.contact-list{
    width: 1300px;
    margin: 0px auto;
    padding: 10px 0;
}
.contact-list ul{
    display: table;
}
.contact-list ul li{
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 410px;
    height: 180px;
    margin-right: 35px;
    border: 1px solid #e1e1e1;
    padding: 20px 30px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.contact-list ul li:hover{
    transform: translateY(-8px);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
}
.contact-list ul li:last-child{
    margin-right: 0;
}
.contact-list ul li span{
    width: 100px;
    height: 100px;
    text-align: center;
    display: block;
    position: absolute;
    bottom: 40px;
    right: 30px;
}
.contact-list ul li span img{
    width: 100%;
    opacity: 0.2;
}
.contact-list ul li h3{
    font-size: 20px;
    color: #131313;
    font-weight: lighter;
}
.contact-list ul li strong{
    font-size: 16px;
    color: #181818;
    font-weight: normal;
    display: block;
    margin-bottom: 10px;
}
.contact-list ul li:nth-child(1) p{
    width: 68%;
    font-size: 14px;
    color: #181818;
    line-height: 24px;
    padding-top: 10px;
}
.contact-list ul li:nth-child(2) p{
    font-size: 36px; 
    color: #f2ab18;
    padding-top: 10px;
}
.contact-qrcode{
    height: 86px;
    /* position: absolute;
    right: 30px;
    bottom: 40px; */
}
.contact-qrcode img{
    height: 100%;
    margin-right: 10px;
    display: inline-block;
}

.map-box{
    width: 100%;
    height: 400px;
    margin-top: 40px;
}

.info-menu{
    text-align: center;
}
.crumbNav{
    float: left;
}
.crumbNav a{
    color: #333;
    font-size: 14px;
    line-height: 44px;
}
.crumbNav a:hover{
    color: #07257a;
}
.menu-tabs {
    margin-top: 15px;
}
.menu-tabs ul li{
    display: inline-block;
    margin: 0 5px;
}
.menu-tabs ul li a{
    display: block;
    padding: 10px 30px;
    line-height: 20px;
    color: #fff;
    font-size: 16px;
    background-color: #f2ab18;
}
.menu-tabs ul li a:hover{
    color: #fff;
    background-color: #07257a;
}
.menu-tabs ul .on a{
    color: #fff;
    background-color: #07257a;
}


.service{
    width: 1300px;
    margin: 0 auto;
    padding: 20px 0 60px;
}

.service-list{
    width: 100%;
}
.service-list li{
    width: 100%;
    display: block;
    margin-top: 40px;
}
.service-txt{
    width: 55%;
    text-align: left;
    float: left;
    padding: 40px 60px 40px 0;
}
.service-txt strong{
    display: block;
    font-size: 20px;
    color: #07257a;
    line-height: 30px;
    margin-bottom: 16px;
}
.service-txt p{
    font-size: 14px;
    color: #555;
    line-height: 24px;
}
.service-img{
    width: 45%;
    float: right;
}
.service-img img{
    width: 100%;
    border-radius: 30px;
}
.service-list li:nth-child(2n+2) .service-txt{
    float: right;
    padding: 40px 0 40px 60px;
}
.service-list li:nth-child(2n+2) .service-img{
    float: left;
}

.job-bg{
    padding-bottom: 240px;
    background-image: url(../images/job-bg.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: auto 240px;
}
.zhaopin-box{
    width: 1000px;
    margin: 0 auto;
}

.jo_dd{
    margin-top: 10px;
}
.jo_dd li {
   margin-bottom: 10px;
}

.jo_dd li.on .johd {
    background: #07257a;
    border: 0;
}
.jo_dd li.on .johd span{
    color: #fff;
}
.jo_dd li.on .johd b{
    background-image: url(../icon/reduce.png);
}
.johd {
    position: relative;
    padding: 0 20px;
    height: 54px;
    background: #ffffff;
    border: 1px solid #bbbbbb;
    line-height: 54px;
    cursor: pointer;
}
.johd span {
    display: block;
    width: 100%;
    /* vertical-align: top; */
    font-size: 18px;
    color: #333;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.johd b{
    position: absolute;
    top: 50%;
    right: 20px;
    content: '';
    margin-top: -12px;
    width: 24px;
    height: 24px;
    padding: 4px;
    background-image: url(../icon/plus.png);
    background-size: 100% 100%;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.johd b img{
    width: 100%;
    height: 100%;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.jobd {
    display: none;
}
.jobd-on{
    display: block;
}
.jobd>div {
    padding: 20px 20px 10px;
    font-size: 14px;
    line-height: 24px;
    color: #333;
}
.jobd p {
    font-size: 14px;
    line-height: 24px;
    color: #555;
}

.recruitment{
    width: 400px;
    float: right;
    margin-top: 30px;
    /* border: 2px solid #07257a; */
}
.recruitment-img{
    width: 100%;
}
.recruitment-img img{
    width: 100%;
}
.recruitment-txt {
    text-align: center;
}
.recruitment-txt p{
    line-height: 30px;
    color: #333;
    font-size: 20px;
}
/* .recruitment::before{
    content: '';
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: #07257a;
    position: absolute;
    top: -2px;
    left: -8px;
    z-index: -1;
} */

.partner ul{
    font-size: 0;
}
.partner ul li{
    display: inline-block;
    vertical-align: top;
    width: 295px;
    margin: 15px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.partner ul li img{
    width: 100%;
    margin: 0;
    /* -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
        -o-filter: grayscale(100%);
        filter: grayscale(100%);
        filter: gray;
        opacity:0.7; */
}
.partner ul li:hover{
    transform: translateY(-3px);
    box-shadow: 0 0px 12px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 0px 12px rgba(0,0,0,.2);
}
/* .partner ul li:hover img{
    -webkit-filter: grayscale(0);
        -moz-filter: grayscale(0);
        -ms-filter: grayscale(0);
        -o-filter: grayscale(0);
        filter: grayscale(0);
        opacity: 1;
} */

.partner2 ul{
    font-size: 0;
    text-align: center;
}
.partner2 ul li{
    display: inline-block;
    vertical-align: top;
    width: 500px;
    margin: 15px;
    border: 1px solid #e3e3e3;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.partner-img{
    width: 100%;
    height: 230px;
    overflow: hidden;
}
.partner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}
.partner2 ul li p{
    font-size: 16px;
    color: #07257a;
    line-height: 30px;
    padding: 10px 15px;
    font-weight: bold;
}
.partner2 ul li:hover{
    transform: translateY(-3px);
    box-shadow: 0 0px 12px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 0px 12px rgba(0,0,0,.2);
}
.partner2 ul li:hover p{
    background-color: #f2ab18;
    color: #ffffff;
}

.wangdian{
    width: 1000px;
    margin: 0 auto;
    height: 600px;
    position: relative;
}
.wangdian h2{
    font-size: 24px;
    color: #07257a;
    line-height: 32px;
    margin-bottom: 30px;
    padding-top: 40px;
}
.wangdian h3{
    font-size: 20px;
    color: #333333;
    line-height: 30px;
    padding: 10px 0;
    font-weight: normal;
}
.wangdian-item{
    padding-left: 10px;
}
.wangdian-img{
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    border: 3px solid #f2ab18;
}
.wangdian-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wangdian-item:nth-child(1) .wangdian-img{
    width: 300px;
    height: 300px;
    right: 0px;
    top: 0px;
    z-index: 3;
}
.wangdian-item:nth-child(2) .wangdian-img{
    right: 220px;
    top: 300px;
    z-index: 2;
}
.wangdian-item:nth-child(3) .wangdian-img{
    width: 260px;
    height: 260px;
    right: -60px;
    top: 320px;
    z-index: 1;
}
.wangdian-txt p{
    font-size: 20px;
    color: #333333;
    line-height: 30px;
    padding: 10px 0;
}
.wangdian-line{
    width: 100%;
    height: 30px;
    background-color: #f2ab18;
    position: absolute;
    bottom: 60px;
    left: 0;
    border-radius: 30px;
}


.liuyan{
    width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
    text-align: center;
}

.liuyan-t h3{
    font-size: 18px;
    color: #07257a;
    margin: 10px 0;
    font-weight: normal;
}
.liuyan-t p{
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    font-weight: normal;
}

.liuyan form {
    width: 100%;
    padding-top: 10px;
}
.liuyan form li {
    display: block;
    list-style: none;
    width: 100%;
    margin-top: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    position: relative;
    text-align: left;
}
.form-title {
    font-size: 10px;
    text-align: left;
    line-height: 14px;
    padding-bottom: 6px;
}
.input-text {
    width: 100%;
    outline: none;
    display: block;
    width: 100%;
    background: transparent;
}
.input100{
    display: block;
    width: 100%;
    background: transparent;
    font-size: 16px;
    line-height: 1.2;
    padding: 0 26px;
    color: #333333;
}
input.input100 {
    height: 48px;
}
.textarea-text {
    width: 100%;
    outline: none;
}
textarea.input100 {
    min-height: 130px;
    padding-top: 14px;
    padding-bottom: 15px;
}
input {
    outline: none;
    border: none;
}
textarea {
    outline: none;
    border: none;
}
textarea:focus,
input:focus {
    border-color: transparent !important;
}
input:focus::-webkit-input-placeholder {
    color: transparent;
}
input:focus:-moz-placeholder {
    color: transparent;
}
input:focus::-moz-placeholder {
    color: transparent;
}
input:focus:-ms-input-placeholder {
    color: transparent;
}
textarea:focus::-webkit-input-placeholder {
    color: transparent;
}
textarea:focus:-moz-placeholder {
    color: transparent;
}
textarea:focus::-moz-placeholder {
    color: transparent;
}
textarea:focus:-ms-input-placeholder {
    color: transparent;
}
.focus-input100 {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #009f3c;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scaleX(1.1) scaleY(1.3);
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus+.focus-input100 {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #bbbbbb;
}
input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #bbbbbb;
}
input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #bbbbbb;
}
input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bbbbbb;
}
textarea::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #bbbbbb;
    font-family: Microsoft YaHei, 微软雅黑;
}
textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #bbbbbb;
    font-family: Microsoft YaHei, 微软雅黑;
}
textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #bbbbbb;
    font-family: Microsoft YaHei, 微软雅黑;
}
textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bbbbbb;
    font-family: Microsoft YaHei, 微软雅黑;
}
/* .input-submit{
 width: 200px;
 height: 40px;
 } */

.input-submit input {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: transparent;
    cursor: pointer;
    background-color: #009f3c;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    border-radius: 10px;
    letter-spacing: 1px;
    margin-top: 30px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.input-submit input:hover{
    background-color: #07257a;
}
label {
    display: block;
    margin: 0;
}
.label-input100 {
    font-family: Montserrat-SemiBold;
    font-size: 11px;
    color: #666666;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 15px 0 2px 26px;
}




.cp_top{ width:1300px; margin:auto; background-color:#f9f9f9; margin-top:50px; margin-bottom:50px}
.cp_top_img{ float:left; width:400px;}
.cp_top_img img{ width:400px;}
.cp_top_img i{ display:block; width:101px; height:107px; background-image:url(../images/hot.png); position:absolute;}
.cp_top_img .nohuo{ display:block; width:101px; height:107px; background-image:url(../images/nohuo.png); position:absolute;}
.cp_top_cs{padding:40px 60px;width:900px;float: right;}
.cp_top_cs h4{ font-size:30px; margin-bottom:20px;line-height: 40px; color: #07257a;}
.cp_top_cs b{
    display: block;
    width: 100%;
    height: 2px;
    background-color: #07257a;
    margin-bottom: 40px;
}
.cpjs-down {
    padding: 20px 0;
    border-bottom: 1px dashed #07257a;
}
.cpjs-down ul li{
    width: 50%;
    float: left;
    font-size: 14px;
    color: #333333;
    line-height: 24px;
}
.cpjs-down ul li h5{
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 6px;
}
.cp-remark{
    font-size: 16px;
    line-height: 30px;
}
.cp-remark-left{
    width: 550px;
    float: left;
    font-size: 16px;
    line-height: 30px;
}
.cp-ewm{
    width: 200px;
    float: right;
    text-align: center;
}
.cp-ewm span{
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #07257a;
    margin-bottom: 10px;
}
.cp-ewm img{
    width: 160px;
}
.cp_top_cs .zl{ background-image:url(../images/zl.svg); }
.cp_top_cs .fh{ background-image:url(../images/fh.svg); }
.cp_top_cs .jg{ background-image:url(../images/jg.svg); }
.cp_top_cs .jg span{ color:#F00; font-size:25px}

.cpxx_kk{ width:1300px; margin:auto;}

.dis{ display:block;padding-bottom: 30px;}
.undis{ display:none;}
.cp_jieshao{ width:900px; float:left;}
.cp_jieshao ul{ background-color:#efefef;}
.cp_jieshao ul li{ width:20%; float:left; background-color:#efefef; height:50px; line-height:50px; font-size:18px; text-align:center; cursor:pointer;}
.cp_jieshao ul .newpost_w{ background-color:#07257a; color:#fff;}

.cp_xxjs{ padding:30px 0;}
.cp_xxjs table{ width:100%; margin-bottom:20px;}
.cp_xxjs table td{ border:1px solid #CCC; padding:5px; }
.cp_xxjs{ line-height:24px; font-size:14px;}
.cp_xxjs img{
  width: 100%;
  margin: 10px auto;
}
/* #xtbc_01 img{ width:800px; border:1px #f1f1f1 solid;  display:block; margin-bottom:20px;} */


.cp_about{ float:right; width:330px; border:1px #f1f1f1 solid;margin-bottom: 60px;}
.cp_about_tit{  background-color:#07257a; height:50px; line-height:50px; font-weight: normal; font-size:18px; color: #ffffff; text-align:left; border-bottom:1px #f1f1f1 solid; padding-left:20px; display:block; }

.poc_kk{ background-color:#1D2331; }
.poc_kk .poc_bai{ background-color:#fff; width:60%; position:relative; left:40%;padding-top:80px; padding-bottom:80px; min-height:530px;}
.poc_kk .poc_bai img{ position:absolute; margin-left:-500px;}
.poc_kk .poc_bai .poc_info{ margin-left:200px;width:600px; font-size:16px; line-height:33px; text-align:justify;}
.poc_team{ background-color:#1D2331; padding-top:50px; }

.team_kk{width:100%; background-color:#1D2331; padding-bottom:50px;}
.team_list { width:1300px; margin:auto;}
.team_list li{ float:left; width:600px; margin-right:20px; color:#FFF; border:1px #878787 solid }
.team_list li img{ width:216px; height:240px; float:left;}
.team_list li strong{ display:block; font-size:18px; margin-bottom:10px;}
.team_list li p{ width:378px; float:right; text-align:justify; padding:20px;}

.zhuzhi{ text-align:center; padding-bottom:30px;}
.zhuzhi li{ display:inline-block; height:46px; line-height:46px; text-align:center; padding-left:30px; padding-right:30px; color:#333; background-color:#9CA2B2; font-size:14px; margin:2px; cursor:pointer;}
.zhuzhi .zhuzhi_on{ background-color:#f00; color:#fff;}
.zhuzhi .zhuzhi{}
.poc_fuwu{ width:1300px; margin:auto; padding-top:50px; padding-bottom:50px;}
.poc_fuwu ul li{ float:left; width:20%; text-align:center; font-size:18px}
.poc_fuwu ul li span{ font-size:14px; display:block; margin-top:20px;}
.poc_fuwu ul li strong{ display:block; margin:auto; font-size:20px; margin-bottom:5px; margin-top:10px;}
.poc_fuwu ul li i{ background-color:#F30; height:2px; width:50px; margin:auto; display:block;}

.xiangmu_list{ background-color:#f6f6f6; padding-top:50px; padding-bottom:50px;}
.xiangmu_list ul{ width:1300px; margin:auto;}
.xiangmu_list ul li{ float:left; width:290px; margin-right:30px; background-color:#fff;}
.xiangmu_list ul li i{ display:block; width:100%; height:180px; overflow:hidden;}
.xiangmu_list ul li img{ display:block; width:100%;}
.xiangmu_list ul li strong{ display:block; text-align:center; font-size:18px; line-height:44px;}
.xiangmu_list ul li p{ height:150px; padding:10px; padding-top:0px;}


.hezuomeiti_list{ background-color:#222222; padding:50px; margin-top:50px;}
.hezuomeiti_list ul{ width:1200px; margin:auto;}
.hezuomeiti_list li{ float:left;}
.hezuomeiti_list li img{ width:297px; height:90px;}


.pro_index_list {
    padding: 10px 0 20px;
}
.pro_index_list ul{
    padding: 20px 30px 0;
}
.pro_index_list li {
    width: 100%;
    height: 320px;
    margin-bottom: 20px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    /* box-shadow: 0 0px 8px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 0px 8px rgba(0,0,0,.1); */
}

.pro_index_list li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro_index_list li i {
    display: block;
    width: 101px;
    height: 107px;
    background-image: url(../images/hot.png);
    position: absolute;
    margin-top: -20px;
    margin-left: -20px;
}

.pro_index_list li .nohuo {
    background-image: url(../images/nohuo.png);
}

.kuang_tit {
    line-height: 30px;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    transform: translateY(100%);
}

.kuang_tit a {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-weight: bold;
}
.kuang_tit b{
    display: block;
    width: 68px;
    height: 2px;
    background-color: #f2ab18;
    margin: 0 auto;
    margin-top: 16px;
}

.pro_index_list li:hover{
    box-shadow: 0 0px 16px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 0px 16px rgba(0,0,0,.2);
}
.pro_index_list li:hover .kuang_tit{
    transform: translateY(0);
}



/* 专利证书  */
.zlzs{
    width: 100%;
    padding: 60px 0;
    background-color: #f9f9f9;
}
.zlzs-list{
    width: 1300px;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
}
.zlzs-list ul{
    font-size: 0;
}
.zlzs-list ul li{
    width: 280px;
    height: 380px;
    display: inline-block;
    vertical-align: top;
    margin: 20px;
    background-color: #ffffff;
    padding: 16px;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.zlzs-list ul li a{
    /* display: block; */
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 2px solid rgb(0, 137, 29,.3);
    text-align: center;
    display: flex;
    align-items:center;
}
.zlzs-list ul li a img{
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    align-items: center;
}
.zlzs-list ul li:hover{
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 4px 12px rgba(0,0,0,.2);
    transform: translateY(-5px);
}

 /* 专利产品  */
.zlcp{
    width: 100%;
    padding: 60px 0;
}
.zlcp-list{
    width: 1300px;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
}
.zlcp-list ul{
    font-size: 0;
}
.zlcp-list ul li{
    width: 400px;
    height: 270px;
    display: inline-block;
    vertical-align: top;
    margin: 15px;
    overflow: hidden;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.zlcp-list ul li a{
    display: block;
    width: 100%;
    height: 100%;
}
.zlcp-list ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.zlcp-list ul li:hover{
    box-shadow: 0 0px 12px rgba(0,0,0,.3);
    -webkit-box-shadow: 0 0px 12px rgba(0,0,0,.3);
}
.zlcp-list ul li:hover img{
    transform: scale(1.05);
}


/* 专利原理 */
.zlyl{
    width: 1300px;
    margin: 0 auto;
    padding-bottom: 60px;
}
.kl{
    text-align: center;
}
.kl h4{
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 12px;
}
.kl b{
    width: 60px;
    height: 2px;
    background-color: #07257a;
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
}
.kl img{
    width: auto;
    max-width: 100%;
}

.ylbj{
    margin-top: 80px;
    text-align: center;
}
.ylbj-title{
    text-align: center;
}
.ylbj-title h4{
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 12px;
}
.ylbj-title b{
    width: 60px;
    height: 2px;
    background-color: #07257a;
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
}

.ylbj-item{
    width: 540px;
    display: inline-block;
    vertical-align: top;
    margin: 0 30px;
    text-align: left;
}
.ylbj-img{
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}
.ylbj-img img{
    width: 100%;
}
.ylbj-txt strong{
    font-size: 16px;
    color: #ffffff;
    display: block;
    background-color: #07257a;
    line-height: 30px;
    padding: 5px 15px;
    margin-bottom: 20px;
}
.ylbj-txt p{
    font-size: 14px;
    line-height: 24px;
    position: relative;
    margin-bottom: 10px;
    padding-left: 32px;
}
.ylbj-txt p::before{
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #07257a;
    top: 8px;
    left: 15px;
}
