﻿@charset "utf-8";
/*初始化样式*/
* {
    margin: 0px;
    padding: 0px;
    list-style: none;
    font-family: "微软雅黑", STXihei, STHeiti;
    border: none;
    text-decoration: none;
}

address, caption, cite, code, dfn, em, th, var, i, h1, h2, h3, h4 {
    font-style: normal;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

del, ins, a {
    text-decoration: none;
}

caption, th {
    text-align: left;
}

input, button, textarea, select {
    font-size: 100%;
    border: none;
}

i, b, span, a {
    display: inline-block;
}

a:hover, button:hover {
    cursor: pointer;
}

select {
    border: none;
    outline: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;

}

/*常用样式*/
/*统一浏览器盒子宽度：width（盒子宽度）=内容+padding*/
*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*清浮动*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

* html .clearfix {
    height: 1%;
}

/*定位*/
.pf {
    position: fixed;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
}

/*布局*/
.none {
    display: none;
}

.block {
    display: block;
}

.inblock {
    display: inline-block;
}

.ablock a {
    display: block;
    width: 100%;
}

.logoLCon a:nth-child(2){
    margin-left:50px !important;
}

/*浮动*/
.fl {
    float: left;
    display: inline-block;
}

.fr {
    float: right;
    display: inline-block;
}

/*宽度*/
.w160 {
    width: 160px;
}

.wp100 {
    width: 100%;
}

.w920 {
    width: 920px;
}

.w930 {
    width: 930px;
}

.w1200 {
    width: 1200px;
}

/*补白*/
.pl10 {
    padding-left: 10px !important;
}

.pl20 {
    padding-left: 20px !important;
}

.pr20 {
    padding-right: 20px !important;
}

.pr160 {
    padding-right: 160px !important;
}

.pt30 {
    padding-top: 30px !important;
}

.pb40 {
    padding-bottom: 40px !important;
}

.pb70 {
    padding-bottom: 70px !important;
}

/*边距*/
.mt5 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt25 {
    margin-top: 25px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt35 {
    margin-top: 35px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt45 {
    margin-top: 45px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt55 {
    margin-top: 55px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mt65 {
    margin-top: 65px !important;
}

.mt70 {
    margin-top: 70px !important;
}

.mt80 {
    margin-top: 80px !important;
}

.mt90 {
    margin-top: 90px !important;
}

.mt100 {
    margin-top: 100px !important;
}

.mt120 {
    margin-top: 120px !important;
}

.mt130 {
    margin-top: 130px !important;
}

.mt140 {
    margin-top: 140px !important;
}

.mt150 {
    margin-top: 150px !important;
}

.mt160 {
    margin-top: 160px !important;
}

.mt200 {
    margin-top: 200px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

.ml25 {
    margin-left: 25px !important
}

.mr25 {
    margin-right: 25px !important;
}

.bgf8{background: #f8f8f8;}
/*按钮*/
.button10 {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.button10 a{color: #fff;}

.button10:hover {
    -webkit-animation-name: move;
    animation-name: move;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    background-color: rgba(255, 255, 255, 0.2);
}

@-webkit-keyframes move {
    from, 11.1%, to {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

@keyframes move {
    from, 11.1%, to {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}


.button5 {
    border: none;
    position: relative;
}

.button5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #0359b6;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.button5:hover::before {
    opacity: 0;
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

.button5::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    background-color: #0359b6;
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.button5:hover::after {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}


.button15 {
    border: none;
    position: relative;
}

.button15::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #0359b6;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 10px;
}

.button15:hover::before {
    opacity: 0;
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

.button15::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    background-color: #ff0032;
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}


.button25 {
    border: none;
    position: relative;
}

.button25::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #ff0006;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.button25:hover::before {
    opacity: 0;
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    color: #ffffff;
}

.button25::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;

    background-color: #0359b6;
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}


/*背景颜色*/
.bgfff {
    background: #fff;
}

.bgfa {
    background: #fafafa;
}

/*边框*/
.bdnone {
    border: none !important;
}

.bdtnone {
    border-top: none !important;
}

.bdbnone {
    border-bottom: none !important;
}

.bdlnone {
    border-left: none !important;
}

.bdrnone {
    border-right: none !important;
}

/*文本对齐*/
.tal {
    text-align: left !important;
}

.tac {
    text-align: center !important;
}

.tar {
    text-align: right !important;
}

/*字体*/
.fs0 {
    font-size: 0px;
}

/*----  文本行数 ------- */
.textov1 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -moz-box-orient: vertical;
}

.textov2 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -moz-box-orient: vertical;
}

.textov3 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -moz-box-orient: vertical;
}

.textov4 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -moz-box-orient: vertical;
}

.textov5 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -moz-box-orient: vertical;
}

.textov6 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -moz-box-orient: vertical;
}

/*字体颜色*/
.cwhite {
    color: #fff !important;
}

/*（图片）动画过渡时间*/
.transition5, .transitionImg5 img, .moveUp, .enlarge, .enlargeLi img {
    -moz-transition: all ease .5s 0s;
    -webkit-transition: all ease .5s 0s;
    cursor: pointer;
    transition: all ease .5s 0s;
}

/*鼠标悬浮上移*/
.moveUp:hover {
    -webkit-transform: translateY(-2em);
    -moz-transform: translateY(-2em);
    -ms-transform: translateY(-2em);
    -o-transform: translateY(-2em);
    transform: translateY(-2em);
}

/*（列表项图片）鼠标悬浮放大*/
.enlarge:hover, .enlargeLi li:hover 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);
}

/*溢出隐藏*/
.hidden {
    overflow: hidden;
}

/*内容*/
.content {
    width: 1200px;
    margin: 0 auto;
}

.content1600 {
    width: 1600px;
    margin: 0 auto;
}

.content1 {

    width: 95%;
    margin: 0 auto;
}

@media (max-width: 1500px) {


    .footer {
        width: 95% !important;
        padding: 0 7% 0px 7%;
    }
    .footer  .content{
        width: 1000px !important;
        margin: 0 auto;
    }

    .content {

    }

    .content2 {
        width: 100% !important;
    }

    /*.navman1 {*/
    /*    width: 50% !important;*/
    /*}*/

    .logoLCon {
        /*width: 5% !important;*/
    }

    .channelCon {
        width: 100% !important;
    }

    .qqqh3Index {
        width: 95% !important;
        margin-left: 7% !important;
    }

    .qqqh2Index {
        width: 95% !important;
    }
    .index2 .h2Index11122222{
        width: 51% !important;
    float: right !important;
    padding: 1.8% 0% 0.5% 5% !important;
    position: relative;
    margin-top: 1% !important;
   height:auto  !important;
    }
    .index2 .h2Index11122222 p{
         margin-top: 10px;
    }
    .h2Index1112222244444{
        position: absolute !important;
        top: 72% !important;
        left: 30% !important;
        width: 49% !important;
    }
    .h2Index111222225555{
        position: relative !important;
        height: 613px !important;
        width: 100% !important;
    }
}

@media (max-width: 1300px) {


    .footer {
        width: 95% !important;
        padding: 0 7% 0px 7%;
    }

    .content {

    }

    .content2 {
        width: 100% !important;
    }

    .navman1 {
        width: 50%;
    }

    .channelCon {
        width: 100% !important;
    }

    .qqqh3Index {
        width: 95% !important;
        margin-left: 7% !important;
    }

    .qqqh2Index {
        width: 95% !important;
    }
    .footer  .content{
        width: 1000px !important;
        margin: 0 auto;
    }
    .navman1{
        padding-top: 53px !important;
        width: calc(100% - 500px) !important;
    }
    .ablock a:nth-child(2) {
        margin-left: 16px !important ;
    }
}


.content2 {
    width: 100%;

}

.navman1 {
    padding-top: 53px;
    width: calc(100% - 600px);
}
@media (min-width: 1200px) and (max-width: 1500px){
.navman1 {;
    width: calc(100% - 550px);
}
}


.navman1 .content2{

}

.content2 ul li {
    border-radius: 50px;

}

.jixingaodu {

}

.ab312312lock a {
    display: block;
    width: 100%;
    padding: 0px 12px 0 12px;
}

.h2About222 {
}

.h2About222 .title {
    font-size: 30px;
    font-weight: bold;
    color: #0071b9;
    padding-bottom: 10px;
}

/*.index3SubTit{text-align: center;}*/
.index3SubTit11 li {
    display: inline-block;
    width: 10%;
    height: 35px;
    margin-right: 1px;
    background-color: #689bd3;
    color: #fff;
    text-align: center;
    line-height: 35px;
    font-size: .36rem;
}

.index3SubTit11 .on {
    background-color: #0359b6;
    color: #ffffff;
}


.index3SubTit11 li:nth-last-of-type(1) {
    margin-right: 0;
}

.index3Body11 {
    position: relative;
    min-height: 240px;
    transition: all .5s;
}

.index3Subhead11 {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 20px 15px;
    background: /*url(../images/index3Tit.png) no-repeat*/ #a8181e;
    background-size: 100% 100%;
    font-size: .48rem;
    color: #fff;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    letter-spacing: 1px;
}

.index3Main11 li {
    float: left;
    display: inline-block;
    width: 21%;
    margin-bottom: 2.5rem;
    margin-right: 50px;
}

.index3Main11 li:nth-of-type(4n) {
    margin-right: 0;
}

.index3Main11 li p {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 5px;
    color: #646564;
}


.chanAbout3Con11 li {
    height: 222px;
    width: 50%;
    float: left;
    padding: 0 10px
}

.chanAbout3Con11 li p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    margin-left: 20px;
    float: left
}

.chanAbout3Con11 li span {
    color: #555555;
    font-size: 15px;
    font-weight: 800;
    width: 100%;
    margin-top: 22px;
}


.nav1 .nLi1 {
    float: left;
    width: 25%;
    margin:30px 0;
    text-align: center;
    line-height: 44px
}
.nav1 .nLi1 img{
    width: 100%;
    height:115px;
    object-fit:contain;
}

.nav1 .nLi1 a {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #000000;
    transition: all .5s;
}

.nav1 .nLi1.orderBtn {
    background: #ff0000;
}

.nav1 .nLi1.orderBtn > a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.nav1 .on a {
    display: block;
    color: red !important;

}

.nLi1:hover a {
    color: red;
}


.nav131231 {
    width: 100%;
}

.nav131231 {
    position: relative;
    bottom: -5px;
}

        .xiaotuimg img {
            width: 40px;
            height: 40px;
            object-fit: cover;
        }

        .xiaotuimg dd {
            color: #FFFFFF;
            text-align: center;
        }

        .xiaotubiao1 {
            position: absolute;
            top: 85%;

            left: 14%;
        }

        .xiaotubiao2 {
            position: absolute;
            top: 85%;

            left: 18%;
        }

        .xiaotubiao3 {
            position: absolute;
            top: 85%;

            left: 22%;
        }

        .cpbj{
            position: relative;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
            background: url(/Upload/1625192152.png) no-repeat center center;
            background-size: 100% 100%;
            height: 100%

        }

        .nLi13123123 img {
            width: 100%;
            max-width: 1920px;
        }

.nLi13123123 {

}

.nLi13123123 img {
    width: 100%;
    max-width: 100%;
}

.nLi13123123 h1 {
    color: #ffffff;
    font-size: 26px;

    letter-spacing: 5px;
}

.dasdasdasdadasddaarewrwq {
    position: absolute;
    width: 20%;
    left: 59%;
    top: 14%;
}

.nLi13123123 p {
    color: #ffffff;
    font-size: 16px;
letter-spacing: 3px;
    line-height: 22px;
font-family: "微软雅黑", STXihei, STHeiti !important;

}

.dansidbncnjzc {
    height: 50px;
    width: 299px;
}

.dansidbncnjzc .zuo {
    background-color: #0359b6;
    width: 145px;
    height: 40px;
    float: left;
    line-height: 40px;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.dansidbncnjzc .you {
    background-color: #e62129;
    height: 40px;
    float: left;
    line-height: 40px;
    width: 145px;
    float: right;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

/*.dansidbncnjzc .zuo:hover{*/

/*    color:#0359b6;*/
/*    background-color: #ffffff;*/
/*    border-radius:20px;*/
/*}*/

/*.dansidbncnjzc .you:hover{*/

/*    color:#e62129;*/
/*    background-color: #ffffff;*/
/*    border-radius:20px;*/
/*}*/


.nav2 .nLi2 {
    position: relative;
    display: inline-block;
    width: 8%;
    height: 50px;
    text-align: center;
    line-height: 50px;
}

.nav2 .nLi2 a {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #fcfcfc;
    transition: all .5s;
}


.nav3 .nLi3 {
    position: relative;
    float: left;
    display: inline-block;
    width: 12%;
    height: 85px;
    text-align: center;
    line-height: 85px
}

.nav3 .nLi3 a {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #000000;
    transition: all .5s;
}

.nav3 i {
    position: relative;
    float: left;
    display: inline-block;
    height: 20px;
    text-align: center;
    line-height: 85px;
    border-right: 1px solid red;
    top: 33px;
}

.nav3 i:last-child {
    display: none;
}

.nav3 .nLi3.orderBtn,.nav3 .nLi3:hover{
    background: #0359b6;
}

.nav3 .nLi3.orderBtn > a,.nav3 .nLi3:hover a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}


.index1Con444 li {
    float: left;
    width: calc((100% - 42px) / 3);
    height: 387px;
    background: #ffffff;
    margin-right: 20px;
    margin-bottom: 20px;
    transition: all .5s;
}

.fasdasdfas {
    display: none;
    padding: 6px 60px 0px 60px;
    background-color: #ffffff;

}


.index1Con444 li:hover .picBorder {
    width: 100%;
    height: 213px !important;
    overflow: hidden;

}

.index1Con444 li:hover .fasdasdfas {
    display: block;
    padding: 6px 60px 0px 60px;
    background-color: #ffffff;

}


.index1Con444 li:nth-of-type(3n) {
    margin-right: 0;
}

.index1Con444 .picBorder {
    width: 100%;
    height: 255px;
    overflow: hidden;
    transition: all .5s;

}

.index1Con444 .picBorder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.index1Con444 .title {
    margin-top: 24px;
    font-size: 20px;
    color: #000000;
    text-align: center;
    font-weight: 900
}

.index1Con444 .description {
    font-size: 16px;
    color: #6a6a6a;
    text-align: center;
}

.index1Con444 .description em {
    font-weight: bold;
}


/*--------------------------- 通用样式 结束----------------------------------- */
/*--------------------------- 公共样式 开始----------------------------------- */
body {
    font: 14px/1.5 \5b8b\4f53
}

/*---- top 顶部样式 ------- */
.top {
    background: #f2f2f2;
    line-height: 40px;
    height: 40px;
}

.topfl, .topfr, .topfr a {
    color: #3f3f3f;
    font-size: 14px;
}

.topfr .icon {
    position: relative;
    top: 5px;
    display: inline-block;
    width: 15px;
    height: 20px;
    background: url("../images/icons.png") no-repeat;
    margin-right: 5px;
}

.topfr a:nth-of-type(2) .icon {
    width: 18px;
    background-position-x: -16px;
}

.topfr a:nth-of-type(3) .icon {
    width: 14px;
    background-position-x: -35px;
}

.topdasdhasd a {
    border-left: 1px solid #d7d6d6;
}

.topdasdhasd span {
    position: relative;
    top: 8px;
}


/*头部*/
.header {
    position: relative;
    height: 150px;
}

.logoLCon {
    display: flex;
    height: 100%;
    align-items: center;
}

.logoLCon img {

}

.slogan {
    width: 540px;
    background: url("../images/sloganLine.png") no-repeat left center;
    padding-left: 15px;
    margin-top: 20px;
}

.slogan .title {
    font-size: 27px;
    color: #0088d4;
}

.slogan .title em {
    font-weight: bold;
    color: #ff0000;
    font-size: 35px;
    font-style: italic;
}

.slogan .subhead {
    color: #181818;
    font-size: 19px;
}

.logoRCon {
    position: relative;
    width: 280px;
    padding-top: 20px;
    padding-top: 35px;
    text-align: right;
    font-size: 26px;
    color: #0071b9;
    font-weight: bold;
    line-height: 1.2em;
}

.logoRCon .icon {
    position: absolute;
    left: 0;
    width: 58px;
    height: 58px;
    background: url("../images/icons.png") no-repeat 0 -22px;
}

/*导航*/
.navman {
    position: relative;
    background: #0071b9;
    height: 60px;
}

.nav .nLi {
    position: relative;
    float: left;
    display: inline-block;
    width: 12.5%;
    height: 44px;
    text-align: center;
    line-height: 44px
}


.nav .nLi{width: calc((100% - 70px) / 8);margin-right: 10px;}
.nav .nLi:last-child{margin-right: 0px;}
.nav .nLi a {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #000000;
    transition: all .5s;
}

.nav .nLi:hover > a, .nav .current > a {
    background: #ff0000;
    color: #ffffff;
    border-radius: 50px
}

.nav .sub {
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 9999;
    display: none;
    width: 100%;
    background: #f2f2f2;
    line-height: 45px;
}

.nav .sub li {
    zoom: 1;
    display: block;
}

.nav .sub li:hover a {
    background: #0071b9;
    color: #fff;
}

.nav .nLi.orderBtn {
    background: #ff0000;
}

.nav .nLi.orderBtn > a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff
}


.index3Con .on p {
    background: #0359b6 !important;

}

.index3Connnn .index3Connnndiv1 {
    width: 55%;
    height: 400px;
    padding: 57px 15px 20px 32px;
}

.index3Connnn ul {
    width: 100%;

}


.index3Connnndiv1 .index3Connnndiv12 span {
    color: #333333;
    font-size: 25px;
    max-width: 360px;
}

.index3Connnndiv1 .index3Connnndiv1p {
    width: 100%;
    color: #868686;
font-size: 14px;
}

.index3Connnndiv1 .index3Connnndiv3 {
    width: 180px;
    height: 45px;
    border: 1px solid #0359b6;
    text-align: center;
    line-height: 45px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.index3Connnndiv1 .index3Connnndiv4 span {
    background-color: #e62129;
    width: 180px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 18px;
    color: #ffffff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}


/*.index3Connnndiv4  span:hover{*/
/*    background-color:#0359b6;*/
/*    color: #ffffff;*/
/*    border-radius: 15px;*/
/*}*/


.order {
    position: absolute;
    z-index: 9999;
    top: 60px;
    right: 0;
    width: 310px;
    background: rgba(0, 113, 185, .85);
}

.orderTit {
    background: #f2f2f2;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    color: #0071b9;
    text-align: center;
}

.orderTit em {
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
}

.orderCon {
    padding: 15px 0;
}

.orderCon li {
    margin-bottom: 5px;
}

.orderCon a {
    display: block;
    width: 100%;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
    color: #ffffff;
}

.orderCon li:hover a {
    background: rgba(255, 255, 255, .85);
    color: #e80012;
    font-weight: bold;
}

.orderForm {
    padding: 0 15px 30px 15px;
}

.orderForm legend {
    max-width: 100%;
    border-top: 1px dashed #8ebedb;
    line-height: 1em;
}

.orderForm input {
    display: inline-block;
    width: 180px;
    height: 40px;
    border: 1px solid #dbdada;
    background: #fff;
    line-height: 38px;
    padding: 0 6px;
    font-size: 16px;
    color: #626262;
}

.orderForm input::-webkit-input-placeholder {
    font-size: 16px;
    color: #c5c5c5;
}

.orderForm input::-ms-input-placeholder {
    font-size: 16px;
    color: #c5c5c5;
}

.orderForm input::placeholder {
    font-size: 16px;
    color: #c5c5c5;
}

.orderForm button {
    width: 100px;
    height: 40px;
    background: #da251c;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    color: #ffffff;
}

.orderForm .tips {
    margin-top: 20px;
    font-size: 16px;
    color: #ffffff;
    line-height: 1em;
}

.orderForm .tips em {
    font-weight: bold;
    font-size: 21px;
    color: #fff600;
    margin: 0 6px;
}

/*---------------------- banner  轮播样式 --------------------------------------------*/
.banner {
    position: relative;
    float: none;
    text-align: center;
    width: 100%;
    font-size: 0;
}

.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

.rslides li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
}

.rslides li:first-child {
    position: relative;
    display: block;
    float: left;
}

.rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
}

.rslides_tabs {
    position: absolute;
    bottom: 35px;
    left: 50%;
    z-index: 99;
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.rslides_tabs li {
    position: relative;
    float: left;
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background: #bbb;
    margin: 0 10px;
    transition: all .5s;
}

.rslides_tabs li a {
    color: transparent;
    font-size: 16px;
}

.rslides_tabs li.rslides_here {
    background: #da251c;
}

.rslides_nav {
    position: absolute;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    bottom: 46%;
    left: 0;
    z-index: 3;
    text-indent: -9999px;
    overflow: hidden;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0.5;

}

.rslides_nav.prev {
    right: auto;
    background-position: left top;
    left: 22px;
}

.rslides_nav.next {
    left: auto;
    background-position: right top;
    right: 22px;
}


.banner321312 {
    text-align: center;
    width: 100%;
    margin-bottom: -162px;
    display: unset;
}

.rslides23123 img {
    width: 100%;
}

.rslides23123 li {
    position: relative;
}

.rslides23123 {
    overflow: hidden;
}

.rslides23123 div {
    display:none;
    width:880px;
    text-align: center;   
    position: absolute;
    top: 25%;
    left: calc((100% - 880px) / 2);
}

.articlebanner div{
    left: calc((100% - 260px) / 2);  
}

.rslides23123 h1 {
    text-align: center;
    color: #ffffff;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 2px
}

.rslides23123 span {
    width: 50px;
    border-bottom: 2px solid #ffffff;
    text-align: center;
}

.rslides23123 p {
    text-align: center;
    color: #ffffff;
    font-size: 20px;
}


/*------------------------底部导航联系信息 修饰------------------------*/
/*底部导航联系信息 修饰*/
.footer {
    padding-top: 50px;
    color: #b2b3b3;
    font-size: 14px;
    margin: 0 auto;
    position: relative;
    top: 137px;
    width: 95%;
    height: 413px;
}

.footer a {
    color: #b2b3b3;
font-size: 16px;
}

.footer a:hover {
    color: #ffc600;
}

.fotTit {
    font-size: 18px;
    color: #fff;
}

.fotMain li {
    margin-bottom: 15px;
}

.fotLogo {
    width: 210px;
}

.fotNav {
    width: 311px;
}

.fotNavCon li {
    float: left;
    display: inline-block;
    width: 100px;
}

.fotNavCon li:nth-of-type(1) {
    display: block;
    width: 100%;
}

.fotProducts {
    width: 300px;
}

.link {
    width: 200px;
}

.fotWechat {
    width: 260px;
}

.fotWechat li {
    float: left;
    display: inline-block;
    width: 118px;
    margin-right: 24px;
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.fotWechat img {
    width: 100%;
}

.fotWechat li:nth-last-of-type(1) {
    margin-right: 0;
}

.fotBCon {
    background: #0359b6;
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
}

.fotBCon {
    color: #FFFFFF;
    padding-top: 160px;
}

.fotBCon p {
    margin-bottom: 7px;
font-size: 14px;
}

.fotBCon a {
    margin-left: 113px;
}

.linkCon li {
    background-color: #0359b6;
    height: 40px;
    width: 130px;
    border-radius: 10px;
    text-align: center;
    line-height: 40px;
}

.linkCon li:hover {
    background-color: red;
}

/*------------------------当前位置------------------------*/
.location {
    background: #f8f8f8;
    height: 56px;
    line-height: 55px;
    border-bottom: 1px solid #ececec;
    font-size: 14px;
    color: #5d5d5d;
}

.location a {
    color: #5d5d5d;
}

.location a:hover, .location a.current {
    color: #0d6dd3;
}

/*------------------------分页------------------------*/
.page {
    clear: both;
    padding: 30px 0;
    text-align: center;
    line-height: normal;
    font-size: 14px;
}

.pagenum {
    font-family: Arial;
}

.pagenum, .pageup, .pagenext, .pagedown, .pageend, .pagefirst, .pageinfo, .total, .pagepreall, .pagenextall, .page .current {
    background: #fff;
    margin: 0 2px;
    padding: 12px 20px;
    border: 1px solid #e3e3e3;
    font-size: 14px;
    color: #333;
    transition: all .5s;
}

.page .current, .page a:hover {
    background: #e62129;
    color: #fff;
    border-color: #e62129;
}

/*正文*/
.ChannelContent {
    font-size: 16px;
    color: #484848;
    line-height: 1.8em;
    width: 100%;
    max-width: 100%;
    display: block;
    padding: 0 28px 0 28px;
}

.ChannelContent img {
    max-width: 100%;
    height: auto !important;
    margin: 12px 0;
}

.ChannelContent p {
    font-size: 16px;
    color: #484848;
    line-height: 1.8em;
    margin: 12px 0;
}

.ChannelContent p img {
    text-indent: 0;
    margin: 0;
}

.ChannelContent p span img {
    display: inline-block;
    text-indent: 0;
}

.ChannelContent span img {
    margin-left: 0em;
    display: inline-block;
}

.ChannelContent span {
    margin-left: 0em;
    line-height: 1.8em;
}

.ChannelContent p span {
    text-indent: 0em;
}

/*上下页*/
.fanye {
    position: relative;
    padding-top: 50px;
    padding: 0 28px 0 28px;
}

.Previous, .Next {
    font-size: 14px;
    color: #636363;
    margin-top: 20px;
}

.Previous {
}

.Next a, .Previous a {
    font-size: 14px;
    color: #636363;
}

.Next b, .Previous b {
    color: #636363;
    font-weight: normal;
}

.Next:hover a, .Previous:hover a {
    color: #ff0000;
}

/*--------------------------- 公共样式 结束-----------------------------------*/
/*--------------------------- 首页样式 开始-----------------------------------*/
.search {
    position: relative;
    height: 60px;
    background: #f3f3f3;
}

.hotKeywords {
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    color: #8d8d8d;
}

.hotKeywords a {
    font-size: 16px;
    color: #323232;
    margin-left: 8px;
}

.hotKeywords .title {
    font-weight: bold;
}

.hotKeywords .icon {
    position: relative;
    top: 8px;
    display: inline-block;
    width: 27px;
    height: 32px;
    background: url("../images/icons.png") no-repeat 0 -82px;
    margin-right: 15px;
}

.searchCon {
    display: block;
    width: 240px;
    height: 40px;
    border-radius: 5px;
    background: #eeeeee;
    overflow: hidden;
    border: 1px solid #8d8d8d;
    line-height: 38px;
    font-size: 16px;
    color: #8d8d8d;
}

.searchText {
    width: 180px;
    height: 38px;
    padding: 0 20px;
    border: none;
    margin: 0;
}

.searchText::-webkit-input-placeholder {
    font-size: 16px;
    color: #cccccc;
}

.searchText::-ms-input-placeholder {
    font-size: 16px;
    color: #cccccc;
}

.searchText::placeholder {
    font-size: 16px;
    color: #cccccc;
}

.searchBtn {
    background: #0071b9 url(../images/searchBtn.png) center center no-repeat;
    width: calc(100% - 180px);
    height: 100%;
    cursor: pointer;
}


.qqqh2Index .title {
    font-size: 40px;
    color: #252525;
    font-weight: bold;
letter-spacing:3px
}

.qqqh2Index .title em {
    color: #0071b9;
    font-weight: bold;
}

.qqqh2Index .description {

    font-size: 17px;
    color: #7b7b7b;

}


.qqqh2Index {
    background: #f8f8f8;
    height: 700px;
    position: relative;
    top: 50px;
    width: 128%
}

.qqqh3Index {
    text-align: center;
    height: 700px;
    margin: 0 auto;
    margin-left: 20%;
}

.shipin000 {
    width: 47%;
    background-color: #0359b6;
    height: 380px
}

.shipin000 video {
    width: /*580px*/ 600px;
    height: 380px;
    position: relative;
    bottom: 20px;
    left: 20px;
    object-fit: cover;
}

.kjkjkjkda {
    width: 42%;
    height: 350px;
    padding: 0px 59px 0px 0px;
}

.kjkjkjkda h1 {
font-size: 24px;
    color: #000000
}

.kjkjkjkda span {
    color: #0359b6;
    font-size: 16px;
    font-weight: 900;
text-align: left;
}

.kjkjkjkda div {
    background: url(../images/xiegang111.png) no-repeat left center;
    height: 30px;
    width: 200px;
}

.kjkjkjkda p {
    color: #595959;
    line-height: 25px;
    text-align: left;
font-size: 14px;
}

.kjkjkjkda ul {
    width: 500px;
}

.kjkjkjkda .zuoli {
    float: left;
    background: #0359b6;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #ffffff;
    font-size: 14px
}

.kjkjkjkda .youli {
    float: left;
    background: #e62129;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #ffffff;
    font-size: 14px;
    margin-left: 10px
}


/*首页版块1 产品中心*/


.h2Index111 .title {
    font-size: 40px;
    color: #252525;
    font-weight: bold;
letter-spacing:3px
}

.h2Index111 .title em {
    color: #0071b9;
    font-weight: bold;
}

.h2Index111 .description {

    font-size: 17px;
    color: #7b7b7b;

}

.h2Index111222225555{
position: relative;
    height: 800px;
width: 100%;
}




.index2 .h2Index11122222 {

        width: 51%;
    float: right;
    margin-top: 5%;
    padding: 0% 0% 0% 6%;
    height: 105px;
}

.index2 .h2Index11122222 h1 {
font-size: 24px;
    color: #000000;
    font-weight: 800;

}

.index2 .h2Index11122222 p {
    margin-top: 38px;
    font-size: 18px;
    color: #717171;
}


.h2Index1112222244444 {

    position: absolute;
    top: 77%;
    left: 30%;
width: 49%;
}


.index2 .h2Index1112222244444 a {
float: left;
    width: 190px;
    height: 50px;
    border-radius: 2px;
    text-align: center;
    line-height: 50px;
    background-color: #e62129;
    color: #ffffff;
    font-size: 20px


}

.index2 .h2Index1112222244444 span {
    font-size: 30px;
    font-weight: 900;
    color: #0359b6;
    float: right;

}


.h2Index .title {
    font-size: 40px;
    color: #252525;
    font-weight: bold;
    letter-spacing: 3px;
}

.h2Index .title em {
    color: #0071b9;
    font-weight: bold;
}

.h2Index .description {
    width: 1200px;
    font-size: 17px;
    color: #7b7b7b;
    overflow: hidden;
}

.h2Index .description span {
    position: relative;
    display: inline-block;
    width: 320px;
    height: 40px;
    border: 1px solid #e1e1e1;
    border-radius: 40px;
    background: #0071b9;
    line-height: 38px;
    font-size: 16px;
    color: #ffffff;
}

.h2Index .description span::before, .h2Index .description span::after {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1200px;
    height: 1px;
    background: #0071b9;
    content: "";
    margin: auto;
}

.h2Index .description span::after {
    left: auto;
    right: 0;
}

.index1Con li {
    position: relative;
    float: left;
    width: 385px;
    height: 490px;
    background: #f5f5f5;
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 24px;
    transition: all .5s;
}

.index1Con li:nth-of-type(3n) {
    margin-right: 0;
}

.index1Con .picBorder {
    width: 100%;
    height: 255px;
    overflow: hidden;
}

.index1Con .picBorder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index1Con .title {
    margin-top: 15px;
    margin-bottom:10px;
    font-size: 20px;
    color: #343434;
}

.index1Con .title:after {
/*
    display: block;
    content: "";
    width: 20px;
    height: 1px;
    margin: 15px 0 20px 0;
    background: #414041;
*/
}

.index1Con .description {
    font-size: 14px;
    color: #6a6a6a;
}

.index1Con .description em {
    font-weight: bold;
}

.indexLink {
    position: absolute;
    width: calc(100% - 48px);
    left: 24px;
    bottom: 24px;
}

.indexLink a {
    width: 160px;
    height: 40px;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
}

.indexLink .more {
    background: #adadad;
}

.indexLink .zixun {
    background: #0071b9;
}

.index1Con li:hover {
    background: #0359b6;
}

.index1Con li:hover .title, .index1Con li:hover .description {
    color: #fff;
}

.index1Con li:hover .title:after {
    background: #fff;
}

.index1Con li:hover .more {
    background: #ffffff;
    color: #0071b9;
}

.index1Con li:hover .zixun {
    background: #e80012;
}

/*首页广告图*/
.indexAdv img {
    width: 100%;
    min-width: 1200px;
}

/*首页版块2 我们是谁*/
.h2Index2 {
    position: relative;
    text-align: center;
}

.h2Index2 a {
    display: inline-block;
    padding: 0 60px;
    background: #fff;
}

.h2Index2 a::after {
    position: absolute;
    z-index: -1;
    top: 20px;
    left: 0;
    right: 0;
    content: "";
    display: block;
    width: 1150px;
    height: 70px;
    margin: auto;
    border-radius: 70px;
    border: 4px solid #0071b9;
}

.h2Index2 .title {
    font-size: 30px;
    color: #171717;
    font-weight: bold;
    font-style: italic;
}

.h2Index2 .description {
    font-size: 20px;
    color: #757575;
}

.index2Con {
    min-width: 1200px;
}

.index2Pic {
    width: 45%;
    height: 525px;
}

.index2Pic li {
    width: 100%;
    height: 525px;
    overflow: hidden;
}

.index2Pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index2Main {
    width: 55%;
}

.index2Main li {
    height: 175px;
    background: #f1f1f1;
    font-size: 24px;
    color: #454545;
    transition: all .5s;
    cursor: pointer;
}

.index2Main li:nth-of-type(2n) {
    background: #fff;
}

.index2Main .icon {
    position: relative;
    top: 70px;
    display: inline-block;
    width: 49px;
    height: 41px;
    background: url("../images/icons.png") no-repeat -65px -22px;
    margin: auto 35px;
}

.index2Main li:nth-of-type(2) .icon {
    background-position-x: -114px;
}

.index2Main li:nth-of-type(3) .icon {
    background-position-x: -163px;
}

.index2Main li:hover {
    background: #e30303;
    color: #fff;
}

.index2Main li:hover .icon {
    background-position-y: -63px;
}

.index2Main .main {
    display: flex;
    height: 175px;
    align-items: center;
}

/*首页版块3 修饰*/

.index3Con .nLi {
    height: 50px;
    background: #333333;
    font-size: 18px;
    color: #ffffff;
    transition: all .5s;
    width: 12%;
    text-align: center;
    line-height: 50px;
    margin-right: 17px;
    display: inline-grid;
}
.index3Con .nLi a{
    width: 100%;
    color: #fff;
}

.index3Con .nLi:hover {
    background: #0359b6;
    color: #ffffff;
}

.dasdasnuj li {
    float: left;
    width: 65px;
    height: 23px;
    text-align: center;
    line-height: 20px;
    margin-top: 5px;
    margin-right: 1px;
    background-color: #656565;
    color: #ffffff;
}

.picMarquee-left .tempWrap {
    width: 100% !important;
}



.dhauisdhuias li {
    float: left;
    width: 19.5%;

    text-align: center;
    margin: 0 auto;
}
.dhauisdhuias li div{
    text-align: center;
    margin-right: 5px;
    height: 100px;
    border: 1px solid #dddddd;
    display: flex;
    justify-content: space-around;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: baseline;
}
.dhauisdhuias li span{
    text-align: center;
margin-top: 2px;
font-size:14px;
}
.index3Body {
    width: 50%;
    height: 100%;
    padding-left: 50px;
    padding-top: 15px;
}

.index3Tit .num {
    width: 82px;
    height: 77px;
    border: 4px solid #c1c1c1;
    border-radius: 3px;
    margin-right: 24px;
    font-size: 50px;
    color: #c1c1c1;
    font-family: Impact;
    text-align: center;
}

.index3Tit .title {
    position: relative;
    width: calc(100% - 106px);
    height: 77px;
    padding-top: 15px;
    font-size: 26px;
    color: #343434;
    font-weight: bold;
}

.index3Tit .title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: "";
    width: 90px;
    height: 4px;
    background: #0071b9;
}

.index3Main li {
    line-height: 1.5em;
}

.index3Main li::before {
    display: inline-block;
    content: ">";
    margin-right: 5px;
}

.index3Main li em {
    color: #0071b9;
}

/*首页版块4 修饰*/
.index4Tit {
    overflow: hidden;
}

.index4Tit .prev, .index4Tit .next {
    position: absolute;
    z-index: 1;
    left: -100px;
    top: 50%;
    margin-top: -40px;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    cursor: pointer;
    background: #c8c8c8 url(../images/arrowL.png) no-repeat left 15px center;
    background-size: 15px auto;
}

.index4Tit .next {
    transform: rotate(180deg);
    left: auto;
    right: -100px;
}

.index4Tit .prev:hover, .index4Tit .next:hover {
    background-color: #0271cb;
}

.index4Main {
    overflow: hidden;
}

.index4Main ul {
    overflow: hidden;
    zoom: 1;
}

.index4Main li {
    position: relative;
    display: inline;
    width: 308px;
    overflow: hidden;
    text-align: center;
    margin-right: 20px;
}

.index4Main .picBorder {
    min-width: 285px;
    width: 285px;
    height: 220px;
    overflow: hidden;
    font-size: 0;
}

.index4Main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index4Main .title {
    width: 100%;
    background: #f1f1f1;
    transition: all .5s;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    color: #545454;
}

.index4Main li:hover .title {
    background: #0271cb;
    color: #fff;
}

.dasdasd {
    position: absolute;
    right: 0;

}

/*首页版块5 关于我们*/
.index5 {
    background-color: #ffffff;
    padding: 50px 0;
    height: 740px;
    width: 100%;
}

.index5LCon {
    width: 570px;
}

.index5LTit {
    color: #0271cb;
}

.index5LTit .title {
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
}

.index5LTit .subhead {
    font-size: 16px;
    font-family: Arial;
    text-transform: capitalize;
}

.index5LMain {
    margin-top: 15px;
    font-size: 16px;
    color: #606060;
}

.index5LMain p {
    text-indent: 2em;
}

.index5LInfo li {
    float: left;
    display: inline-block;
    width: 205px;
    padding-left: 45px;
    font-size: 16px;
    color: #424242;
    border-right: 1px solid #cccccc;
}

.index5LInfo li:nth-of-type(2) {
    width: 220px;
}

.index5LInfo li:nth-last-of-type(1) {
    width: calc(100% - 425px);
    border-right: none;
}

.index5LInfo .num {
    font-size: 36px;
    color: #e30303;
    font-weight: bold;
}

.index5LInfo .num span {
    font-size: 18px;
}

.index5RCon {
    width: 590px;
}

.index5RTit li {
    position: relative;
    width: 84px;
    height: 90px;
    background: #0071b9;
    font-size: 40px;
    color: #fff;
    font-family: Impact;
    text-align: center;
    line-height: 1em;
    padding-top: 25px;
    cursor: pointer;
}

.index5RTit li:nth-of-type(2) {
    background: #0f7abf;
}

.index5RTit li:nth-of-type(3) {
    background: #008ae2;
}

.index5RTit li:nth-of-type(4) {
    background: #009bfe;
}

.index5RTit li::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -36px;
    content: "";
    width: 0;
    height: 0;
    border: 18px solid transparent;
    margin: auto;
}

.index5RTit li.on {
    background: #e30303;
}

.index5RTit li.on::after {
    border-left-color: #e30303;
}

.index5RMain {
    width: 468px;
}

.index5RMain .picBorder {
    width: 468px;
    height: 272px;
    overflow: hidden;
}

.index5RMain .picBorder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index5RMain .title {
    margin-top: 25px;
    font-size: 26px;
    color: #0071b9;
    font-weight: bold;
}

.index5RMain .subhead {
    font-size: 16px;
    color: #202020;
}

/*首页版块6 资讯*/


.index6Body{
    width: 100%;
}


.index6LCon {
    width: 60%;

}

.index6LTit {
    width: 100%;
    border-bottom: 1px solid #cacaca;

}

.index6LTit li{
    height: auto !important;
    border-bottom:none !important;
}

.index6LTit .nLi {
    position: relative;
    display: inline-block;
    margin-right: 30px;
}


.index6LTit b {
    position: relative;
    right: 15px;
    font-size: 20px;
    color: #8f8f8f;
    font-weight: lighter;
}

.index6LTit a {
    display: block;
    width: 100%;
    padding-bottom: 20px;
}

.index6LTit li:nth-of-type(1) .icon {
    top: 2px;
    background-position-y: -30px;
}

.index6LTit li:nth-of-type(2) .icon {
    top: 5px;
    width: 29px;
    height: 35px;
    background-image: url("../images/index6Icon2.png");
}

.index6LTit li:nth-of-type(3) .icon {
    top: 6px;
    height: 29px;
    height: 35px;
    background-image: url("../images/index6Icon3.png");
}

.index6LTit li:hover .icon, .index6LTit li.on .icon {
    background-position-y: 0;
}

.index6LTit .title {
    display: inline-block;
    font-size: 24px;
    color: #7b7b7b;

}

.gengduo111:hover a{
    color: #0271cb !important;
}
.index6LTit .on .title, .index6LTit .nLi:hover .title {
    color: #0271cb;
}

.index6LMain li {
    border-bottom: 1px dashed #b3b3b3 !important;
    height: 194px;
    font-size: 16px;
    color: #444444;

}

.index6LMain2222 li:nth-child(3) {
    border-bottom: none !important;
    height: 181px;
    font-size: 16px;
    color: #444444;

}


.index6LMain li:nth-last-of-type(1) {
    border-bottom: none;
}

.index6LMain a {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #444444;
}

.index6LMain .nLi a {
    display: inline-block;
    width: 84%;
    white-space: nowrap;
}

.index6LMain .nLi .date {
    float: right;
    display: inline-block;
    width: 16%;
    text-align: center;
}

.index6LMain .nLi:hover a, .index6LMain .nLi:hover .date {
    color: #0d6dd3;
}

.index6LMain .tLi {
    padding-bottom: 20px;
    border-bottom: none;
}

.index6LMain .picBorder {
    border: 1px solid #e5e5e5;
    overflow: hidden;
    width: 320px;
    height: 171px;
    overflow: hidden;
}

.index6LMain .picBorder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index6LMain .main {
    width: calc(100% - 340px);
    height: 180px;
    margin-left: 10px;
}

.index6LMain .more {
    position: absolute;
    bottom: 0;
    width: 130px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    color: #0271cb;
}
.index6LMain .more:hover{
  
    color: red;
}


.index6LMain .main .title {
    font-size: 18px;
    color: #010101;
font-weight:800;
}

.index6LMain .main .description {
    font-size: 14px;
    color: #5f5f5f;
    line-height: 1.8em;
}

.index6LMain .nLi {
    height: 45px;
    line-height: 45px;
}

.index6LMain .nLi .date {
    float: right;
}

.index6RCon {
    width: 390px;
    font-size: 15px;
}

.index6RCon a {
    display: block;
    width: 100%;
}

.index6RCon .index6LTit .icon {

    display: inline-block;
    top: 45px;
    height: 30px;
    color: #4c4c4c;
    line-height: 30px;
    font-size: 17px;
    left: 339px;
}



.index6RCon li {
    height: 129px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #969696;
}

.index6RCon .tempWrap{
    width: 390px;
}

.index6RMain{
    width: 390px;
}
.index6RMain li{
    width: 100%;
}

.index6RMain .title {
    background-size: 100% 100%;
    height: 53px;
font-size:16px;
    line-height: 40px;
    padding: 0 10px 16px 10px;
    color: #333;
}

.index6RMain .description {
    margin-top: 5px;
    color: #636363;
    margin-left: 40px;
font-size:14px;
}


.index6RMain span {
    border-radius: 7px;
    line-height: 28px;
    text-align: center;
    width: 28px;
    color: #ffffff;
    height: 28px;
    float: left;
    margin-top: 8px;
}

/*--------------------------- 首页样式 结束-----------------------------------*/
/*--------------------------- 内页样式 开始-----------------------------------*/
/*产品中心*/
.leftNav {
    width: 300px;
    color: #fff;
}

.leftNav a {
    color: #fff;
}

.leftNavTit {
    width: 100%;
    height: 157px;
    background: url(../images/leftNavTitBg.jpg) no-repeat center center;
    background-size: cover;
    text-align: center;
    padding-top: 50px;
}

.leftNavTit .title {
    font-size: 30px;
    font-weight: bold;
    line-height: 1em;
}

.leftNavTit .subhead {
    margin-top: 10px;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1em;
}

.leftNavCon {
    background: #006bb6;
    padding: 25px 12px 12px 12px;
}

.leftNavCon li {
    width: 100%;
    height: 50px;
    background: #008de6;
    margin-bottom: 12px;
    font-size: 20px;
    font-size: 16px;
    text-align: center;
    line-height: 50px;
}

.leftNavCon li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.leftNavMore {
    background: url(../images/leftNavTitBg.jpg) no-repeat center center;
    background-size: cover;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 80px;
}

.leftNavMore .title {
    font-size: 16px;
}

.leftNavMore .title::before, .leftNavMore .title::after {
    content: "";
    position: relative;
    top: -5px;
    display: inline-block;
    width: 35px;
    height: 2px;
    background: #d4e0ef;
    margin: 0 10px;
}

.leftNavMore .more {
    width: 23px;
    height: 23px;
    border: 1px solid #fff;
    margin: 10px auto 0 auto;
    font-size: 16px;
    line-height: 21px;
}

.leftNavBCon {
    background: #006bb6;
    padding: 10px 12px 25px 12px;
    text-align: center;
}

.leftNavBCon .title {
    font-size: 16px;
}

.leftNavBCon .icon {
    position: relative;
    top: 10px;
    display: inline-block;
    width: 35px;
    height: 35px;
    background: url("../images/tel3.png") no-repeat;
    margin-right: 15px;
}

.leftNavBCon .tel {
    margin-top: 12px;
    padding-left: 45px;
    font-size: 30px;
    font-family: Impact;
    line-height: 1em;
    text-align: left;
}

.channelCon {
    width: 1200px;
}

.chanProdCon li {
    width: 32.7%;
    margin-right: 10px;
    padding: 22px;
    overflow: hidden;
}

.chanProdCon li:nth-of-type(3n) {
    margin-right: 0;
}

.chanProdCon .picBorder {
    height: 263px;
}

.chanProdCon .title {
    margin-top: 10px;
    font-size: 16px;
}

.chanProdCon .title:after {
    display: none;
}

.chanProdCon .description {
    margin-top: 10px;
}

.chanProdCon .indexLink {
    left: 15px;
}

.chanProdCon .indexLink a {
    background: transparent;
    liolor: #6a6a6a;
}

.chanProdCon li:hover .indexLink a {
    border-color: #fff;
    background: transparent;
    color: #fff;
}

.chanProdCon li:hover .wqeqwe {

    background-color: #ffffff !important;
    color: #0359b6 !important;
}

.dsadassss {
    border-top: 2px solid #414041;
    width: 20px;
    margin-bottom:5px;
}

.chanProdCon li:hover b {
    border-top: 2px solid #ffffff;
}

/*施工视频*/
.channelVideo, .channelCase {
    background: #ffffff;
    padding-top: 60px;
}

.channelVideo .leftNavMore, .channelCase .leftNavMore {
    background: #0071b9;
    padding-bottom: 20px;
}

.leftNavHot {
    border: 1px solid #ff0000;
}

.leftNavHot .title {
    background: #ff0000;
    height: 64px;
    line-height: 64px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}

.leftNavHotCon {
    position: relative;
    z-index: 888;
    width: 100%;
    overflow: hidden;
    padding: 15px 12px 5px 12px
}

.leftNavHotCon .rslides li {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.leftNavHotCon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leftNavHotCon a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0;
}

.leftNavHotCon .rslides_tabs {
    position: static;
    margin-top: 10px;
    text-align: center;
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.leftNavHotCon .rslides_tabs li {
    float: none;
    width: 14px;
    height: 14px;
    background: #0071b9;
    border-radius: 100%;
    margin: 0 8px;
}

.leftNavHotCon .rslides_tabs li.rslides_here {
    background: #ff0000;
}

.leftNavTuijian {
    background: #fff;
    color: #4c4c4c;
    font-size: 14px;
    padding-bottom: 34px;
}

.leftNavTuijian a {
    color: #4c4c4c;
    font-size: 14px;
}

.leftNavTuijian .title {
    background: #ffffff;
    height: 65px;
    line-height: 65px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #000000;
    border-bottom: 1px solid #ebebeb;
}

.leftNavTuijian .title .icon {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 23px;
    background: url("../images/hot.png") no-repeat;
    margin-right: 5px;
}

.leftNavTuiCon {
    padding: 5px 15px 0 15px;
}

.leftNavTuiCon li:hover a {
    color: red;

}

.leftNavTuiCon li {
    position: relative;
    padding: 21px 28px 18px 28px;
    border-bottom: 1px solid #ebebeb;

}

.leftNavTuiCon li b {
    position: absolute;
    left: 0;
    top: 25px;
    display: block;
    width: 15px;
    height: 15px;
    background: #ffffff;
    content: "";
    text-align: center;
    line-height: 15px;
    color: #666666;
    font-size: 2px;
    font-weight: 100;
}

.leftNavTuiCon li:nth-child(1) b {
    position: absolute;
    left: 0;
    top: 25px;
    display: block;
    width: 15px;
    height: 15px;
    background: #e3222b;
    content: "";
    text-align: center;
    line-height: 15px;
    color: #ffffff;
    font-size: 2px;
    font-weight: 100;
}

.leftNavTuiCon li:nth-child(2) b {
    position: absolute;
    left: 0;
    top: 25px;
    display: block;
    width: 15px;
    height: 15px;
    background: #e3222b;
    content: "";
    text-align: center;
    line-height: 15px;
    color: #ffffff;
    font-size: 2px;
    font-weight: 100;
}

.leftNavTuiCon li:nth-child(3) b {
    position: absolute;
    left: 0;
    top: 25px;
    display: block;
    width: 15px;
    height: 15px;
    background: #e3222b;
    content: "";
    text-align: center;
    line-height: 15px;
    color: #ffffff;
    font-size: 2px;
    font-weight: 100;
}


.chanVideoCon li {
    background: #f6f6f6;
    padding: 15px 15px 15px 15px;
    margin-bottom: 50px;
    transition: all .5s;
    float: left;
    margin-right: 20px;
    width: 31.6%;
}

.chanVideoCon b {

        position: relative;
    border-top: 2px solid #0359b6;
    width: 40px;
    bottom: 28px;
    left: -14px;
    transition: all .5s;
    top: -15px;
}

.chanVideoCon li:hover {

    -webkit-transform: scale(1.02) rotate(0.1deg);
    -moz-transform: scale(1.02) rotate(0.1deg);
    -ms-transform: scale(1.02) rotate(0.1deg);
    -o-transform: scale(1.02) rotate(0.1deg);
    transform: scale(1.02) rotate(0.1deg);

    box-shadow: 0px 0px 7px 0px #999;

}

.chanVideoCon li:hover b {
    position: relative;
    border-top: 2px solid #0359b6;
    width: 380px;
    bottom: 28px;
    left: -16px;

}


.chanVideoCon .picBorder {
    width: 100%;
    height: 170px;
    overflow: hidden;
    /*margin-top: 29px;*/
}

.chanVideoCon .picBorder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chanVideoCon .main {
    height: 170px;
    padding: 10px;
}

.chanVideoCon .title {
    font-size: 18px;
    color: #333333;
    width: 118px
}

.chanVideoCon .description {
    margin-top: 15px;
    font-size: 14px;
    color: #636363;
}

.chanVideoCon .more {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 110px;
    height: 35px;
    background: #b6b6b6;
    text-align: center;
    line-height: 35px;
    font-size: 14px;
    color: #fff;
    transition: all .5s;
}

.chanVideoCon li:hover {
    border-color: #0071b9;
background-color: #ffffff;
}

.chanVideoCon li:hover .more {
    background: #0071b9;
}

/*资讯*/
.channelNav li {
    float: left;
    display: inline-block;
    width: 170px;
    height: 52px;
    line-height: 50px;
    border: 1px solid #dddddd;
    background: #fff;
    text-align: center;
    transition: all .5s;
}

.channelNav li.current, .channelNav li:hover {
    background: #0071b9;
}

.channelNav a {
    font-size: 18px;
    color: #484848;
}

.channelNav .icon {
    position: relative;
    top: 9px;
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url("../images/newsIcons.png") no-repeat;
    overflow: hidden;
    margin-right: 10px;
}

.channelNav li:nth-of-type(2) .icon {
    background-position-x: -32px;
}

.channelNav li:nth-of-type(3) .icon {
    background-position-x: -64px;
}

.channelNav li:nth-of-type(4) .icon {
    background-position-x: -96px;
}

.channelNav li.current a, .channelNav li:hover a {
    color: #fff;
}

.channelNav li.current .icon, .channelNav li:hover .icon {
    background-position-y: -32px;
}

.chanNewsCon li {
    position: relative;
    padding: 30px 10px 30px 108px;
    background: #ffffff;
    margin-bottom: 10px;
    height: 320px;
    border-bottom: 1px solid #e2e1e1;
    transition: all .5s;
}

.chanNewsCon li:hover {
    -webkit-transform: scale(1.01);
    -moz-transform: scale(1.01);
    -ms-transform: scale(1.01);
    -o-transform: scale(1.01);
    transform: scale(1.01);
    box-shadow: 0px 0px 10px 1px #f6f6f6;
}

.chanNewsCon .picBorder {
    width: 338px;
    height: 211px;
    overflow: hidden;
}

.chanNewsCon .picBorder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chanNewsCon .body {
    position: relative;
    width: 1090px;
    height: 175px;
    padding-left: 369px;
    padding-top: 15px;
    font-size: 14px;
    color: #636363;
}

.chanNewsCon .date {
    position: absolute;
    left: -84px;
    top: 15px;
    color: #1f1f1f;
    font-size: 16px;
}

.chanNewsCon .date em {
    display: block;
    font-family: Impact;
    font-size: 60px;
    line-height: 1em;
}

.chanNewsCon .title {
    font-size: 20px;
    color: #1b1b1b;
    height: 28px \9;
    overflow: hidden \9;
}
.chanNewsCon .title:hover{
color: #0359b6;
}

.chanNewsCon .description {
    width: 100%;
    margin-top: 20px;
    line-height: 1.8em;
    height: 42px \9;
    overflow: hidden \9;
    /*border-bottom: 1px dashed #a5a4a4;*/
    color: #606060
}

.chanNewsCon li:hover .date, .chanNewsCon li:hover .body {
    color: #0071b9;
}

/*关于我们*/
.h2About {
    text-align: center;
}

.h2About .title {
    font-size: 30px;
    color: #333;
    font-weight: 900;
    margin-bottom: 30px;
}

.h2About .subhead {
    font-size: 16px;
    color: #9d9d9d;
}

.chanAbout1TCon {
    position: relative;
    border: 1px dashed #ccc;
    height: 190px;
    padding: 50px 0;
}

.chanAbout1TCon .startIcon, .chanAbout1TCon .endIcon {
    position: absolute;
    left: 0;
    right: 0;
    top: -7px;
    display: block;
    width: 16px;
    height: 16px;
    margin: auto;
    background: #0071b9;
}

.chanAbout1TCon .endIcon {
    top: auto;
    bottom: -7px;
}

.chanAbout1TCon li {
    float: left;
    display: inline-block;
    width: 25%;
    text-align: center;
    border-right: 1px dashed #ccc;
}

.chanAbout1TCon li:nth-last-of-type(1) {
    border-right: none;
}

.chanAbout1TCon .title {
    font-size: 30px;
    color: #0071b9;
    font-weight: bold;
}

.chanAbout1TCon .title em {
    font-size: 40px;
    font-weight: bold;
}

.chanAbout1TCon .subhead {
    font-size: 22px;
    color: #333;
}

.chanAbout1BCon img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.chanAbout1BCon .description {
    font-size: 16px;
    color: #424242;
}

.chanAbout1BCon .description p {
    margin-bottom: 20px;
}

.chanAbout1BAdv {
    padding: 20px 0;
    font-size: 22px;
    color: #333;
    font-weight: bold;
}

.chanAbout1BAdv em {
    color: #0071b9;
    font-weight: bold;
    margin-right: 20px;
}

.channelAbout2 {
    background: #f7f7f7;
    padding: 60px 0;
}

.h2About2 {
    border-bottom: 1px solid #ececec;
}

.h2About2 .title {
    font-size: 30px;
    font-weight: bold;
    color: #0071b9;
    margin-right: 5px;
    padding-bottom: 10px;
    border-bottom: 3px solid #0071b9;
}

.h2About2 .subhead {
    font-size: 20px;
    color: #333333;
}

.chanAbout2Con li {
    float: left;
    display: inline-block;
    margin-top: 30px;
    margin-right: 27px;
    width: calc((100% - 81px) / 4);

}
.chanAbout2Con li:nth-child(4n){
    margin-right: 0;
}

.chanAbout2Con .picBorder {
    height: 296px;
    overflow: hidden;
    font-size: 0;
}

.chanAbout2Con .picBorder img {
    width: 100%;
    height: /*100%*/ 96%;
    object-fit: contain;
    /*object-fit: cover;*/
}

.chanAbout2Con .title {
    height: 65px;
    background: #0359b6;
    line-height: 65px;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    transition: all .5s;
}

.chanAbout2Con li:hover .title {
    background: #030303;
    color: #fff;
}

.picScroll-left1 {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.picScroll-left1 .hd {
    height: 0px;
}

.picScroll-left1 .hd ul {
    position: absolute;
    bottom: 31px;
    left: 50%;
    z-index: 99;
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.picScroll-left1 .hd ul li {
    position: relative;
    float: left;
    display: inline-block;
    width: 40px;
    height: 5px;
    background-color: #adadad;
    margin: 5px;
    color: transparent;
    transition: all .5s;
}

.picScroll-left1 .hd ul li:hover, .picScroll-left1 .hd ul li.on {
    background-color: #0359b6;
}

.picScroll-left1 .hd li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 100%; /* background: #fff; */
    overflow: hidden;
    margin: auto;
}


.aboutindex2body {
    width: calc(90% - 66px);
    position: relative;
    margin: 0 auto;
}

.aboutindex2body .hd {
    height: 0px;
}

.aboutindex2body .hd ul {
    position: absolute;
    bottom: -50px;
    left: 50%;
    z-index: 99;
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.aboutindex2body .hd ul li {
    position: relative;
    float: left;
    display: inline-block;
    width: 23px;
    height: 23px;
    border-radius: 100%;
    border: 1px solid #fe7345;
    margin: 5px;
    background: #fff;
    color: transparent;
    transition: all .5s;
    display: inline-table;
}

.aboutindex2body .hd ul li:hover, .aboutindex2body .hd ul li.on {
    background-color: #fe7345;
}

.aboutindex2body .hd li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 100%; /* background: #fff; */
    overflow: hidden;
    margin: auto;
}

.aboutindex2body .bd {
    width: 100%
}

.aboutindex2body .bd ul {
    overflow: hidden;
    zoom: 1;
}

.aboutindex2body .bd ul li {
    margin: 0 10px;
    float: left;
    _display: inline;
    overflow: hidden;
    text-align: center;
    width: 13%
}

.aboutindex2body .bd ul li:nth-child(1) {
    width: calc((100% - 40px) / 2);
    margin-bottom: 20px;
}

.aboutindex2body .bd ul li:nth-child(2n) {
    width: calc((100% - 40px) / 2);
    margin-bottom: 20px;
}

.aboutindex2body .bd ul li:nth-child(3n) {
    width: calc((100% - 60px) / 3);
}

.aboutindex2body .bd ul li:nth-child(4n) {
    width: calc((100% - 60px) / 3);
}

.aboutindex2body .bd ul li:nth-child(5n) {
    width: calc((100% - 60px) / 3);
}

.aboutindex2body .bd ul li span {
    display: block;
    width: 100%;
    height: 237px;
    overflow: hidden;
    display: grid;
}

.aboutindex2body .bd ul li span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutindex2body .bd ul li p {
    font-family: "思源黑体 CN";
    font-size: 18px;
    line-height: 50px;
    height: 50px;
    color: #636363;
    border: 1px solid #e8e8e8;
    border-top: none;
    text-align: center;
}


.chanAbout44Con li {
    float: left;
    display: inline-block;
    margin-top: 26px;
    margin-right: 27px;
    width: calc((100% - 108px) / 5);;

}

.chanAbout44Con li:nth-child(5n){
    margin-right: 0;
}

/*.chanAbout44Con li:nth-child(n){*/
/*    float: left;*/
/*    margin-top: 26px;*/
/*    margin-right: 27px;*/
/*    width: calc((100% - 60px) / 3);*/

/*}*/


.chanAbout44Con li a {
    border: 1px solid #dddddd;
}

.chanAbout44Con .picBorder {
    overflow: hidden;
    font-size: 0;
    border: 1px solid #dddddd;
    height: 100px;
}

.chanAbout44Con .picBorder img {
    width: 100%;
    height: 80px;
    /*object-fit: cover;*/
    min-height: 80px;
    object-fit: contain;
}

.chanAbout44Con .title {
    background: #ffffff;
    line-height: 40px;
    font-size: 16px;
    color: #717171;
    text-align: center;
    transition: all .5s;
}


.picScroll-left {
    width: calc(90% - 66px);
    position: relative;
    margin: 0 auto;
}

.picScroll-left .hd {
    height: 0px;
}

.picScroll-left .hd ul {
    position: absolute;
    bottom: -50px;
    left: 50%;
    z-index: 99;
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.picScroll-left .hd ul li {
    position: relative;
    float: left;
    display: inline-block;
    width: 40px;
    height: 5px;
    background-color: #adadad;
    margin: 5px;
    color: transparent;
    transition: all .5s;
}

.picScroll-left .hd ul li:hover, .picScroll-left .hd ul li.on {
    background-color: #0359b6;
}

.picScroll-left .hd li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 100%; /* background: #fff; */
    overflow: hidden;
    margin: auto;
}


/*放大镜*/
.rebox-contents {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chanAbout3Con li {
    height: 200px;
}

.chanAbout3Con .title {
    display: inline-block;
    width: 107px;
    height: 107px;
    margin-top: 30px;
    border-radius: 100%;
    background: #0071b9;
    text-align: center;
    line-height: 107px;
    font-size: 26px;
    font-weight: bold;
    color: #fff;
}

.chanAbout3Con .description {
    display: flex;
    width: calc(100% - 707px);
    height: 200px;
    padding: 0 50px 0 30px;
    font-size: 16px;
    color: #333333;
    align-items: center;
}

.chanAbout3Con .picBorder {
    display: inline-block;
    width: 600px;
    height: 200px;
    overflow: hidden;
}

.chanAbout3Con .picBorder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chanAbout3Con li:nth-of-type(odd) .title, .chanAbout3Con li:nth-of-type(odd) .description, .chanAbout3Con li:nth-of-type(odd) .picBorder {
    float: left;
}

.chanAbout3Con li:nth-of-type(even) .title, .chanAbout3Con li:nth-of-type(even) .description, .chanAbout3Con li:nth-of-type(even) .picBorder {
    float: right;
}

.chanAbout3Con li:nth-of-type(even) .title {
    background: #f98d14;
}

/*联系我们*/
.daiduhbauis {
    width: 300px;
    background-color: #0359b6;
    height: 200px;
    color: #ffffff;
}

.daiduhbauis span {
    width: 250px;
    border: 2px solid #ffffff;
    height: 50px;
    margin-left: 27px;
    line-height: 50px
}

.dasdasdadsasdd {
    width: 900px;
    background-color: #f6f6f6;
    height: 200px;
    background-image: url('../images/312312321.jpg')
}

.dasdasdadsasdd span {
    color: #0359b6;
    font-size: 20px;
    margin-left: 75px;
    font-weight: 800
}

.dasdasdadsasdd p {
    color: #606060;
    margin-left: 75px;
    font-size: 15px;
    margin-right: 86px;
    line-height: 31px;
}

.chanContactTCon li {
    float: left;
    display: inline-block;
    width: 33.3%;
    height: 155px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all .5s;
}

.chanContactTCon li:hover {

    webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
    box-shadow: 0 0 9px 5px #f6f6f6;
background-color: #ffffff;


}


.chanContactTCon .icon {
    width: 65px;
    height: 65px;
    margin-left: 30px;
    margin-top: 50px;
    border: 1px solid #d3d3d3;
    border-radius: 55px;
}

.chanContactTCon li:nth-of-type(2) .icon {
    background-position-x: -55px;
}

.chanContactTCon li:nth-of-type(3) .icon {
    background-position-x: -110px;
}

.chanContactTCon .title {
    margin-left: 10px;
    font-size: 21px;
    color: #0071b9;
    text-transform: uppercase;
}

.chanContactTCon .description {
    margin-left: 10px;
    margin-top: 10px;
    font-size: 14px;
    color: #7a7a7a;
    width: 293px;
    text-align: left;
}

.chanContactBCon li {
    float: left;
    display: inline-block;
    width: 384px;
    margin-right: 22px;
}

.chanContactBCon li:nth-last-of-type(1) {
    margin-right: 0;
}

.chanContactBTit {
    background: url("../images/contactBg1.jpg") no-repeat;
    width: 100%;
    height: 148px;
    padding-top: 40px;
    padding-left: 115px;
}

.chanContactBCon li:nth-of-type(2) .chanContactBTit {
    background-image: url("../images/contactBg2.jpg");
}

.chanContactBCon li:nth-of-type(3) .chanContactBTit {
    background-image: url("../images/contactBg3.jpg");
}

.chanContactBTit .title {
    font-size: 24px;
    color: #0071b9;
    font-weight: bold;
}

.chanContactBTit .subhead {
    font-size: 16px;
    color: #151515;
}

.chanContactBCon li > .subhead {
    margin-top: 50px;
    font-size: 20px;
    color: #0071b9;
}

.chanContactBCon li > .description {
    margin-top: 15px;
    font-size: 18px;
    color: #393939;
}

.ditu {
    width: 100%;
    height: 515px;
    overflow: hidden;
}

.h2Message .title {
    font-size: 30px;
    color: #2e353f;
}

.h2Message .description {
    font-size: 16px;
    color: #2e353f;
}

.h2Message .description em {
    font-weight: bold;
    color: #0168b7;
}

.messFormCon input, .messFormCon textarea {
    position: relative;
    overflow: hidden;
    border: 1px solid #d5d5d5;
    padding: 0 50px 0 10px;
    font-size: 16px;
    color: #6d6d6d;
}

.messFormCon input::-webkit-input-placeholder {
    font-size: 16px;
    color: #6d6d6d;
}

.messFormCon input {
    width: 31.8%;
    margin-right: 2%;
    height: 50px;
    background: #fff url(../images/required.png) no-repeat right center;
    line-height: 50px;
}

.messFormCon input:nth-of-type(3) {
    margin-right: 0;
}

.messFormCon textarea {
    width: 100%;
    line-height: 1.8em;
    background: #fff;
    margin-top: 25px;
    padding: 10px;
}

.messFormCon button {
    display: block;
    margin: 20px auto 0 auto;
    width: 195px;
    height: 40px;
    line-height: 40px;
    background: #0071b9;
    font-size: 18px;
    color: #fff;
    text-align: center;
}

/*案例详情*/
.detailCase {
    background: #f8f8f8;
    padding: 60px 0 140px 0;
}

.rightNav {
    width: 308px;
}

.rightNavTuijian .title {
    text-align: left;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
    font-weight: normal;
    padding-left: 15px;
}

.rightNavTuijian .title .icon {
    top: 3px;
    margin-right: 12px;
}

.rightNavBCon {
    color: #fff;
}

.rightNavBCon .tel {
    margin-top: 20px;
}

.detailCaseCon {
    background: #fff;
    width: 875px;
    padding-top: 35px
}

.h2xiang {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #c2c1c1;
}

.h2xiang h2 {
    font-size: 24px;
    color: #333;
    padding:0 20px;
}

.h2xiang p {
    font-size: 14px;
    color: #767676;
    margin-top: 15px;
}

.tuijianTit {
    text-align: left;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
    font-weight: normal;
    padding-left: 15px;
}

.tuijianTit .more {
    margin-top: 10px;
    color: #7b7a7a;
    font-size: 16px;
}

.tuijianCon li {
    margin-right: 0px;
    margin-bottom: 15px;
    display: block;
}

.tuijianCon .picBorder {
    width: 100%;
    height: 215px;
}

.tuijianCon li:nth-of-type(3n) {
    margin-right: 0;
}

/*产品详情*/
.detailProdTLCon {
    width: 550px;
    overflow: hidden;
}

.large_box {
    margin-bottom: 10px;
    width: 550px;
    height: 415px;
    overflow: hidden;
    border: 1px solid #d9d9d9;
}
.large_box ul{height:100%;}
.large_box li{height:100%;}

.large_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.small_box {
    width: 100%;
    height: 85px;
    overflow: hidden;
    margin: 0 auto;
}

.small_list {
    position: relative;
    float: left;
    width: 480px;
    height: 85px;
    overflow: hidden;
}

.small_list ul {
    height: 85px;
    overflow: hidden;
}

.small_list ul li {
    position: relative;
    float: left;
    width: 114px;
    height: 100%;
    border: 1px solid #d9d9d9;
    margin-right: 8px;
}

.small_list ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small_list ul li .bun_bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 85px;
}

.small_list ul li.on {
    border: 2px solid #fdc106;
}

.small_list ul li.on .bun_bg {
    display: block;
}

.btn {
    display: block;
    width: 25px;
    height: 85px;
    background-color: #eaeaea;
    cursor: pointer;
    color: #272636;
    text-align: center;
    line-height: 75px;
    font-size: 36px;
}

.btn:hover {
    color: #fdc106;
}

.left_btn {
    float: left;
    margin-right: 10px;
}

.right_btn {
    float: right;
}

.detailProdTRCon {
    position: relative;
    width: 600px;
    height: 510px;
    font-size: 15px;
    color: #636363;
}

.detailProdTRTit {
    font-size: 20px;
    color: #343434;
    font-weight: bold;
    padding: 30px 0;
    border-bottom: 1px dashed #cacaca;
}

.detailProdTRTit em {
    font-weight: normal;
    margin-left: 7px;
}

.detailProdTRCon .title {
    font-size: 16px;
    color: #0071b9;
    font-weight: bold;
}

.detailProdTRCon .description {
    font-size: 15px;
    color: #636363;
    line-height: 1.8em;
}

.detailProdTRZixun .zixun {
    width: 220px;
    height: 45px;
    background: #e90203;
    text-align: center;
    line-height: 45px;
    font-size: 16px;
    color: #fff;
    margin-right: 40px;
}

.detailProdTRZixun .tel {
    color: #e90203;
    font-size: 22px;
    font-weight: bold;
}

.detailProdTRZixun .icon {
    position: relative;
    top: 6px;
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url("../images/message2.png") no-repeat center center;
    margin-right: 15px;
}

.detailProdTRZixun .tel .icon {
    width: 27px;
    height: 27px;
    background-image: url("../images/tel4.png");
    margin-right: 12px;
}

.detailProdBNav {
    border-bottom: 1px solid #dcdcdc;
}

.detailProdBNav li {
    float: left;
    display: inline-block;
    width: 153px;
    height: 41px;
    background: #dcdcdc;
    text-align: center;
    line-height: 41px;
    font-size: 16px;
    margin-right: 4px;
}

.detailProdBNav a {
    font-size: 16px;
    color: #383838;
}

.detailProdBNav .bianse {
    background: #0071b9;
    color: #ffffff !important;
}

.detailProdBNav .bianse a {
    color: #ffffff !important;
}

.detailProdBNav li:hover {
    background: #0071b9;
}

.detailProdBNav li:hover a {
    color: #fff;
}

.detailProdTit {
    height: 66px;
    background: url("../images/productXTit.png") no-repeat center center;
    text-align: center;
}

.detailProdTit .title {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    line-height: 1em;
}

.detailProdTit .subhead {
    font-size: 20px;
    font-family: Arial;
    color: #0071b9;
    text-transform: uppercase;
    line-height: 1em;
    margin-top: 8px;
}

.detailProdBMain3Con li {
    float: left;
    display: inline-block;
    width: 280px;
    margin-right: 25px;
}

.detailProdBMain3Con .picBorder {
    width: 100%;
    height: 255px;
    overflow: hidden;
}

.detailProdBMain3Con .picBorder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detailProdBMain3Con li:nth-of-type(4n) {
    margin-right: 0;
}

.detailProdBMain3Con .title {
    text-align: center;
    border-bottom: 3px solid #eaeaea;
    font-size: 16px;
    color: #636363;
    height: 48px;
    line-height: 45px;
    transition: all .5s;
}

.detailProdBMain3Con li:hover .title {
    color: #007aff;
    border-bottom-color: #007aff;
}

.h2Message2 {
    font-size: 24px;
    font-weight: bold;
    color: #313131;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 15px;
}

.messFormCon2 {
    padding-right: 140px;
}

.messFormCon2 input {
    width: 31.7%;
}

.messFormCon2 input:nth-of-type(1) {
    background: #fff url("../images/name.jpg") no-repeat right 10px center;
}

.messFormCon2 input:nth-of-type(2) {
    background: #fff url("../images/tel.jpg") no-repeat right 10px center;
}

.messFormCon2 input:nth-of-type(3) {
    background: #fff url("../images/email.jpg") no-repeat right 10px center;
}

.messFormCon2 textarea {
    background: #fff url("../images/message.jpg") no-repeat right 10px top 10px;
}

.messFormCon2 .submit {
    margin: 30px 0 0 0;
}

/*火狐文本溢出隐藏*/
@-moz-document url-prefix() {

}

/*微信图片*/
.wxtp img{width: 123px; height: 123px;}

/*首页微信*/
.headWximg{position:absolute; left:50%; top:75px; transform:translate(-50%,10px); border-radius:0.3em; border:5px solid #fff; box-shadow:0 5px 8px rgba(0,0,0,0.1); width:130px; height:130px; opacity:0; visibility:hidden; transition:all 0.3s ease-in-out}
.headWximg{ top:65px; width:120px; /*height:120px;*/display: inline-table;background: #fff;text-align: center;}
.headWximg:before{content:""; border-left:10px solid transparent; border-right:10px solid transparent; border-bottom:10px solid #eee; position:absolute; left:50%; margin-left:-10px; top:-15px;}
.headWximg img{width: 100%;height: auto;}
.headRx_a:hover .headWximg,.headRx_a:hover .headTelnum{opacity:1;  transform:translate(-50%,0px); visibility:visible;z-index:99999}
.headWximg .tit{text-align:center;width: 100%;color: #000;}

/**/