@charset "utf-8";

body, ol, ul, li, h1, h2, h3, h4, h5, h6, p, th, td, dl, dd, form, fieldset, legend, input, textarea, select, div, span, a, aside, article, section, header, nav, footer, label, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

fieldset, img {
    border: 0;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

ol, ul, li {
    list-style-type: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button, input, select, textarea {
    font-size: .875rem;
    font-family: inherit;
    margin: 0;
    outline: none;
    resize: none;
    border: none;
    background: none;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.clearfix {
    zoom: 1;
}

html {
    verflow: -Scroll;
    overflow-x: hidden;
    zoom: 1;
    overflow-y: scroll;
    overflow: -moz-scrollbars-vertical;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    font-size: 100%;
}

body {
    color: #666;
    line-height: 1.5;
    font-family: 'Microsoft YaHei', Arial, 'simsun', HELVETICA;
    min-width: 320px;
}

a {
    color: #666;
    text-decoration: none;
    transition: all ease 0.3s;
}

a:hover {
    color: #0292dc;
}


/* CSS活动的公共样式 */
.fl {
    float: left;
}

.fr {
    float: right;
}

.ce {
    text-align: center;
}

.hide {
    overflow: hidden;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb30 {
    margin-bottom: 30px;
}

.container {
    position: relative;
    min-width: 320px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.container .txt {
    font-size: 15px;
    line-height: 28px;
}

.pImg {
    position: relative;
    padding-top: 100%;
    display: block;
    overflow: hidden;
}

.pImg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}
.about .pImg img {
    height: auto;

}

.bgImg {
    background-position: center;
    background-size: cover;
    position: relative;
    transition: all 0.5s;
    display: block;
    width: 100%;
    height: 100%;
}

.pd60 {
    padding: 60px 0;
    font-size: .875em;
    overflow: hidden;
}

.mb40 {
    margin-bottom: 40px;
}

.font14 {
    font-size: .875em;
}

.gray {
    background: #efefef;
}

@font-face {
    font-family: 'iconfont';  /* Project id 2288898 */
    src: url('http://at.alicdn.com/t/font_2288898_jwgc9xrz3h.eot?t=1636859351725'); /* IE9 */
    src: url('http://at.alicdn.com/t/font_2288898_jwgc9xrz3h.eot?t=1636859351725#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('http://at.alicdn.com/t/font_2288898_jwgc9xrz3h.woff2?t=1636859351725') format('woff2'),
    url('http://at.alicdn.com/t/font_2288898_jwgc9xrz3h.woff?t=1636859351725') format('woff'),
    url('http://at.alicdn.com/t/font_2288898_jwgc9xrz3h.ttf?t=1636859351725') format('truetype'),
    url('http://at.alicdn.com/t/font_2288898_jwgc9xrz3h.svg?t=1636859351725#iconfont') format('svg');
}


.iconfont {
    font-family: "iconfont" !important;
    font-style: normal;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* 头部 */
.header {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 99;
    height: 110px;
    padding-top: 15px;
    font-size: 1.125em;
}

.header .logo {
    padding-top: 6px;
}

.nav {
    width: 62%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    text-align: right;
    padding-top: 45px;
    height: 95px;
}

.nav .m {
    float: left;
    position: relative;
    z-index: 10;
}

.nav .m > a {
    color: #191919;
    display: inline-block;
    position: relative;
    padding-left: 25px;
}

.nav .m > a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    background: url('../images/navIcon.png') no-repeat;
    width: 18px;
    height: 18px;
    animation: rotate 2s linear infinite;
    opacity: 0;
    transform: 0;
    transition: all .4s;
}

.nav .cur > a, .nav .m > a:hover, .nav .on > a {
    color: #0292dc;
}

.nav .cur > a::after, .nav .m > a:hover::after {
    opacity: 1;
    transform: scale(1);
}

.nav .navSub {
    position: absolute;
    left: 50%;
    top: 120%;
    background: #eee;
    line-height: 35px;
    width: 160px;
    color: #333;
    font-size: .875rem;
    transition: top 0.4s, opacity .4s;
    opacity: 0;
    text-align: center;
    transform: scale(0);
    margin-left: -80px;
}

.nav .navSub li {
    border-bottom: 1px solid #ddd;
    line-height: 35px;
}

.nav .navSub a {
    color: #333;
    display: block;
}

.nav .navSub a:hover {
    background: #0292dc;
    color: #fff;
}

.nav .m:hover .navSub {
    top: 100%;
    opacity: 1;
    transform: scale(1);
}

.headR {
    position: absolute;
    right: 0;
    top: 0;
}

.headR li {
    float: left;
    margin-left: 10px;
    line-height: 26px;
}

.headR li:nth-child(3) img {
    border-radius: 3px;
    position: relative;
    top: -2px;
}

.headR .wx {
    width: 22px;
    height: 26px;
    background: url('../images/wxIcon.png') no-repeat left center;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.headR .wx span {
    position: absolute;
    background: #fff;
    padding: 5px;
    width: 100px;
    height: 100px;
    top: 140%;
    margin-left: -40px;
    border: 1px solid #ddd;
    opacity: 0;
    transform: scale(0);
    transition: top 0.4s, opacity .4s;
}

.headR .wx span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -12px;
    border: 6px solid transparent;
    border-bottom-color: #ddd;
    margin-left: -6px;
}

.headR .wx:hover span {
    top: 120%;
    opacity: 1;
    transform: scale(1);
}

.headTel {
    font-size: 1.222em;
    font-weight: 700;
    color: #0292dc;
    font-family: Arial;
    line-height: 1.2;
    background: url('../images/hTel.png') no-repeat left 2px;
    padding-left: 30px;
}

.headTel span {
    margin-right: 10px;
}

.search {
    position: absolute;
    right: 540px;
    width: 200px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 0 15px;
    padding-right: 30px;
}

.search .text {
    line-height: 28px;
    font-size: 12px;
    float: left;
    width: 100%;
}

.search .btn {
    background: url('../images/sBtn.png') no-repeat center;
    float: right;
    width: 18px;
    height: 28px;
    margin-right: -18px;
    cursor: pointer;
    opacity: .6;
}

.search .btn:hover {
    opacity: 1;
}

.headFix {
    height: 90px;
    box-shadow: 0 2px 8px #e1e1e1;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 10px;
}

.headFix .logo img {
    height: 62px;
}

.headFix .headTie {
    font-size: 1em;
}

.headFix .headTel {
    font-size: 1.333em;
    background-size: 20px;
}

.headFix .nav {
    padding-top: 35px;
    height: 80px;
}

.headFix .search {
    right: 560px;
}


/*  导航按钮 */
.navTrigger {
    position: absolute;
    top: 22px;
    right: 15px;
    width: 28px;
    overflow: hidden;
    white-space: nowrap;
    color: transparent;
    z-index: 20;
    cursor: pointer;
    display: none;
}

.navTrigger span {
    display: block;
    height: 2px;
    background: #0292dc;
    margin-bottom: 6px;
    transition: all 0.3s;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    -o-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
}

.navTrigger span:nth-child(3) {
    margin-bottom: 0;
}

.navTrigger-on span:nth-child(1) {
    transform: translateX(4px) translateY(0px) rotate(45deg);
}

.navTrigger-on span:nth-child(2) {
    opacity: 0;
}

.navTrigger-on span:nth-child(3) {
    transform: translateX(2px) translateY(2px) rotate(-45deg);
}

.wapTel {
    font-family: "iconfont";
    position: absolute;
    color: #0292dc;
    right: 60px;
    font-size: 1.5rem;
    line-height: 1;
    top: 20px;
    display: none;
}

/* 广告轮播图 */
.banner {
    position: relative
}

.banner img {
    width: 100%;
}

.banner .small {
    display: none;
}

.swiper-wrapper {
    transition-timing-function: ease-in-out;
}

.banner .swiper-pagination-bullet {
    background: none;
    opacity: 1;
    cursor: pointer;
    width: 14px;
    height: 14px;
    border: 1px solid #fff;
    position: relative;
}

.banner .swiper-pagination-bullet:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    opacity: 0;
}

.banner .swiper-pagination-bullet-active {
    border-color: #fff;
}

.banner .swiper-pagination-bullet-active::after {
    background: #fff;
    opacity: 1;
}

/* 产品 */
.product {
    background: #f8f8f8;
    overflow: hidden;
}

.hTitle {
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
}

.hTitle span {
    display: block;
    font-size: 2.875em;
    color: #0292dc;
    padding-bottom: 10px;
    font-weight: 700;
    background: url('../images/hTie.png') no-repeat center;
}

.proMenu {
    display: flex;
    justify-content: center;
    font-size: 1.286em;
    margin-bottom: 40px;
    z-index: 3;
    position: relative;
}

.proMenu > li {
    width: 180px;
    margin: 0 10px;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.proMenu li span {
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #575958;
    color: #fff;
    display: block;
    position: relative;
    z-index: 2;
}

.proMenu li span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: #0292dc;
    width: 100%;
    height: 0;
    transition: all .4s;
    z-index: -1;
}

.proMenu .on span {
    color: #fff;
}

.proMenu .on span::after {
    height: 100%;
}

.proMenu .info {
    position: absolute;
    top: 120%;
    left: 0;
    width: 380px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 6px #ccc;
    font-size: 14px;
    padding: 20px;
    line-height: 1.8;
    transition: top 0.4s, opacity .4s;
    opacity: 0;;
    transform: scale(0);
}

.proMenu .info li {
    float: left;
    width: 50%;
}

.proMenu .info a {
    background: url('../images/p_li.jpg') no-repeat left center;
    padding-left: 12px;
}

.proMenu .info a:hover {
    background-image: url('../images/p_li2.jpg');
}

.proMenu .m3 .info li, .proMenu .m4 .info li {
    width: 33.3%;
}

.proMenu .m5 .info, .proMenu .m6 .info {
    left: -200px;
}

.proMenu li:hover .info {
    top: 100%;
    opacity: 1;
    transform: scale(1);
}

.proMain {
    overflow: hidden;
    margin-right: -20px;
}

.proMain li {
    float: left;
    padding-right: 20px;
    margin-bottom: 20px;
    width: 25%;
}

.proMain li h5 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.proMain ul .big:nth-last-child(-n+4) .img {
    width: 100%;
    height: auto;
    line-height: 1;
}

.proMain ul li:nth-last-child(-n+4) p, .proMain ul li:nth-last-child(-n+4) .more {
    display: none;
}

.proMain ul li:nth-last-child(-n+4) h5 {
    margin-top: 7%;
    color: #2f250a;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 200;
    position: relative;
    padding-bottom: 10px;
    white-space: initial;
    overflow: visible;
    text-align: center;
}

.proMain ul li:nth-last-child(-n+4) h5:after {
    background: #ffffff;
}

.proMain ul li:nth-last-child(-n+4) h5:hover {
    color: #0292dc;
}

.proMain .pic .pImg {
    border: 1px solid #dcdcdc;
    padding-top: 78%;
}

.proMain .pic h5 {
    margin-top: 15px;
    text-align: center;
    font-size: 1.143em;
}

.proMain .big {
    width: 50%;
}

.proMain .big a {
    display: block;
    border: 1px solid #dcdcdc;
    overflow: hidden;
    background: #fff;
    padding-right: 5%;
    color: #888;
}

.proMain .big .img {
    float: left;
    width: 56%;
    height: 360px;
    line-height: 360px;
    overflow: hidden;
    text-align: center;
    padding-right: 2%;
}

.proMain .big img {
    width: 100%;
    max-height: 100%;
    transition: all .5s;
}

.proMain .big h5 {
    margin-top: 7%;
    color: #0292dc;
    font-size: 1.571em;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.proMain .big h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25px;
    height: 2px;
    background: #0292dc;
    transition: all .5s;
}

.proMain .big p {
    height: 100px;
    white-space: pre-line;
}

.proMain .big .more {
    display: inline-block;
    width: 140px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #0292dc;
    text-align: center;
    margin-top: 25px;
    transition: all .3s;
    color: #0292dc;
}

.proMain li a:hover img {
    transform: scale(1.1);
}

.proMain .big a:hover .more {
    background: #0292dc;
    color: #fff;
    border: 1px solid #0292dc;
}

.proMain .big a:hover, .proMain .pic a:hover .pImg {
    box-shadow: 0 0 8px #d5d5d5;
}

.proMain .big a:hover h5::after {
    width: 45px;
}

/* 解决方案 */
.solution {
    background: #eaf3f8;
}

.sMenu {
    float: left;
    width: 22%;
}

.sMenu li {
    float: left;
    width: 48%;
    text-align: center;
    margin-bottom: 15px;
}

.sMenu li img {
    max-width: 80%;
}

.sMenu li a {
    display: block;
    background: #fff;
    border: 1px solid #d2e1ea;
    height: 130px;
    padding-top: 18px;
}

.sMenu li:nth-child(2n) {
    float: right;
}

.sMenu li i {
    font-family: "iconfont";
    font-style: normal;
    font-size: 3em;
    line-height: 1.2;
}

.sMenu li span {
    display: block;
    font-size: 1.2em;
    position: relative;
    bottom: 10px;
    z-index: 10;
}

/*.sMenu li img {
     position: relative;
     top: -12px;
     z-index: 1;
}*/

.sMenu li.on a {
    color: #0292dc;
    border-color: #0292dc;
}

.sMain {
    width: 76%;
    height: 570px;
    overflow: hidden;
}

.sMain li {
    overflow: hidden;
    position: relative;
}

.sMain li .txt {
    position: absolute;
    right: -30%;
    bottom: 0;
    background: rgba(2, 146, 200, .9);
    padding: 3% 4%;
    width: 550px;
    opacity: 0;
    transition: all .5s;
    transition-delay: .2s;
    color: #fff;
}

.sMain li .txt p {
    font-size: 15px;
}

.sMain li h4 {
    font-size: 2em;
    margin-bottom: 15px;
}

.sMain li h4 a {
    color: #fff;
}

.sMain li .more {
    margin-top: 25px;
    color: #fff;
    display: inline-block;
    width: 100px;
    height: 32px;
    border: 1px solid #fff;
    text-align: center;
    line-height: 30px;
}

.sMain li .more:hover {
    background: #fff;
    color: #0292dc;
}

.sMain li .bgImg {
    animation: scale 50s infinite;
    height: 560px;
}

.sMain .swiper-slide-active .txt {
    right: 0;
    opacity: 1;
}

/* 合作客户 */
.partner {
    background: url('../images/partner_bg.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

.partner ul {
    padding-left: 3%;
}

.partner li {
    float: left;
    background: #fff;
    width: 19%;
    text-align: center;
    margin-bottom: 15px;
    background: url('../images/partner_bg.png') no-repeat;
    background-size: 100%;
    margin-left: -9%;
    transition: all .5s;
    position: relative;
    z-index: 2;
    animation-fill-mode: initial;
}

.partner li::after {
    content: "";
    position: absolute;
    left: 2px;
    top: -4px;
    width: 100%;
    height: 100%;
    transform: rotate(45deg) scale(.7);
    z-index: -1;
    box-shadow: 0 3px 10px #ccc;
    opacity: 1;
    transition: all .5s;
}

.partner li:nth-child(1) {
    margin-left: 0;
}

.partner li img {
    margin: 35% 0;
    max-width: 64%;
}

.partner li:nth-child(2n) {
    margin-top: 9.5%;
}

.partner li:hover {
    transform: scale(1.1);
    z-index: 3;
}

.partner li:hover::after {
    opacity: 1;
}


/* 关于我们 */
.about {
    background: url('../images/about_bg.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    font-size: 0.938em;
    position: relative;
    padding-bottom: 50px;
}

.about::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    background: #f6f8f9;
}

.hTitleW, .hTitleW span {
    color: #fff;
}

.hTitleW span {
    background-image: url('../images/hTie2.png');
}

.about .container {
    background: #fff;
    padding: 2.5%;
    box-shadow: 0 3px 6px #ddd;
    overflow: hidden;
    z-index: 2;
}

.aboutTxt {
    width: 45%;
    height: 510px;
    position: relative;
}

.aboutTxt .title {
    font-size: 2.4em;
    margin-bottom: 20px;
    position: relative;
    color: #0292dc;
}

.aboutTxt .txt {
    height: 290px;
    margin-bottom: 10px;
    overflow: hidden;
    line-height: 1.8;
    text-align: justify;
}

.aboutTxt .txt:hover {
    overflow: auto;
}

.aboutTxt .more {
    width: 140px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border: 1px solid #0292dc;
    border-radius: 20px;
}

.aboutTxt .more:hover {
    background: #0292dc;
    color: #fff;
    width: 200px;
}

.aboutNum {
    color: #333;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.aboutNum li {
    float: left;
    position: relative;
}

.aboutNum li span {
    font-size: 3.333em;
    position: relative;
    font-family: Arial;
    font-weight: bold;
    line-height: 1.2;
    color: #0292dc;
}

.aboutNum li i {
    float: right;
    font-style: normal;
    font-weight: 400;
    margin-left: 5px;
    font-size: 14px;
}

.aboutPic {
    width: 50%;
    height: 510px;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 2;
    position: relative;
}

.aboutPic .bgImg {
    animation: scale 30s infinite;;
    position: relative;
}

.hVideo::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
}

.hVideo::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    background: url('../images/vIcon.png') no-repeat center;
    margin-left: -30px;
    margin-top: -30px;
    z-index: 2;
    opacity: .8;
}

.setting {
    text-align: center;
    overflow: hidden;
    margin-top: 30px;
}

.setting li {
    float: left;
    width: 25%;
}

.setting li .pImg {
    padding-top: 70%;
    padding-bottom: 15px;
    height: auto;
}

.setting li p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.setting li:hover img {
    transform: scale(1.1);
}

.setting .btn {
    position: static;
    margin-top: 25px;
    width: 40px;
    height: 24px;
    line-height: 24px;
    background: #666;
    display: none;
    font-family: "simsun";
    color: #fff;
    font-weight: 700;
}

.setting .btn:hover {
    background: #0292dc;
    color: #fff;
}

@keyframes scale {
    from {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}


/* 新闻快讯 */
.news {
    background: #f6f6f6;
}

.newsMenu {
    text-align: center;
    margin-bottom: 40px;
    color: #191919;
    font-size: 1.429em;
    overflow: hidden;
}

.newsMenu a {
    display: inline-block;
    width: 140px;
    height: 42px;
    line-height: 42px;
    background: #f0f0f0;
    border-radius: 5px;
    margin: 0 15px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.newsMenu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: #0292dc;
    width: 100%;
    height: 0;
    transition: all .4s;
    z-index: -1;
}

.newsMenu .on {
    color: #fff;
}

.newsMenu .on::after {
    height: 100%;
}

.newsMain {
    position: relative;
    overflow: hidden;
    height: 580px;
}

.newsL {
    width: 38%;
    background: #fff;
    height: 605px;
}

.newsL .pic {
    height: 360px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.newsL .pic p {
    bottom: 0;
    text-align: left;
    height: 50px;
    line-height: 50px;
    font-size: 1.143em;
}

.newsL .li {
    padding: 0 20px;
    height: 36px;
    line-height: 36px;
}

.newsL .li a {
    background: url('../images/ly_li.png') no-repeat left center;
    padding-left: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newsL .li span {
    float: right;
    opacity: .8;
    margin-left: 15px;
    font-size: 12px;
}

.newsL .li a:hover {
    padding-left: 30px;
    background-position: 10px center;
}

.newsR {
    width: 61%;
    overflow: hidden;
    margin-right: -15px;
}

.newsR li {
    float: left;
    width: 50%;
    padding-right: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.newsR li a {
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 2;
    color: #888;
    padding: 25px;
    background: #fff;
    height: 285px;
}

.newsR li .bgImg {
    position: absolute;
    z-index: -1;
    opacity: 0;
    top: 0;
    left: 0;
}

.newsR li h4 {
    font-size: 1.143em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    transition: all .3s;
    margin-bottom: 15px;
}

.newsR li p {
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.newsR li .date {
    display: block;
    font-size: 12px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px;
    font-size: 1.143em;
    padding-bottom: 15px;
}

.newsR li .date b {
    display: block;
    line-height: 1;
    font-size: 3.125em;
    color: #454545;
}

.newsR li .date i {
    font-style: normal;
    opacity: .6;
    float: right;
    font-family: "iconfont";
    color: #454545;
    font-size: 2em;
    line-height: 2;
}

.newsR li a:hover .bgImg {
    opacity: .15;
}

.newsR li a:hover {
    color: #fff;
    background-color: #0292dc;
}

.newsR li a:hover h4, .newsR li a:hover b, .newsR li a:hover i {
    color: #fff;
}

/*底部 */
.footer {
    overflow: hidden;
    font-size: .813em;
    background: #4d4d4d;
    color: #ccc;
}

.footMain {
    padding: 50px 0 30px 0;
    overflow: hidden;
}

.footL {
    width: 50%;
    line-height: 2;
}

.footMenu {
    margin-bottom: 20px;
    font-size: 1.231em;
    overflow: hidden;
}

.footMenu a {
    margin-right: 30px;
}

.footR {
    max-width: 45%;
    text-align: right;
    padding-right: 170px;
}

.footR .wx {
    float: right;
    margin-right: -170px;
    background: #fff;
    width: 130px;
    text-align: center;
    padding: 8px;
    color: #666;
}

.footR .icon a {
    display: inline-block;
    background: url('../images/fIcon.png') no-repeat;
    width: 37px;
    height: 37px;
    margin-left: 20px;
    position: relative;
    top: 3px;
}

.footR .icon a:nth-child(2) {
    background-position: -37px 0;
}

.footR .icon a:hover {
    top: -4px;
}

.footR .tel {
    margin: 10px 0;
}

.footR .tel span {
    font-size: 2.308em;
    color: #fff;
    font-family: Arial;
}

.footR img {
    width: 100%;
}

.footR .wx span {
    display: block;
    margin-top: 5px;
}

.footer a {
    color: #ccc;
}

.footer a:hover, .footMenu a, .firendlink span {
    color: #fff;
}

.footMenu a:hover {
    text-decoration: underline;
}

.firendlink {
    padding: 20px 0;
    position: relative;
    border-top: 1px solid #5f5f5f;
}

.firendlink a {
    margin: 0 15px;
}


/*内页公用 */
.listWrap {
    overflow: hidden;
    padding: 60px 0;
    font-size: .875em;
}

.listBox {
    min-height: 300px;
}

.listBanner, .mzsmBanner {
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.listBanner h3 {
    position: absolute;
    color: #fff;
    top: 40%;
    font-size: 2.5rem;
    text-transform: uppercase;
    width: 100%;
    font-weight: 700;
    padding-bottom: 15px;
    animation: leftPic 1s;
    max-width: 1600px;
    min-width: 360px;
    left: 50%;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    transform: translate(-50%);
}

.listBanner h3 span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.breadCrumb {
    font-size: .875rem;
    overflow: hidden;
    background: #f7f7f7;
    padding: 20px 0;
}

.breadCrumb2 {
    background: #fff;
}

.breadCrumb p span {
    position: relative;
    padding-left: 20px;
}

.breadCrumb span::after {
    content: "\e646";
    position: absolute;
    left: 0;
    font-family: "iconfont";
    top: 0;
}

.proSear {
    width: 50%;
    margin: 0 auto;
    height: 50px;
    line-height: 50px;
    margin-bottom: 40px;
    padding: 0 50px 0 15px;
    background: #eee;
}

.proSear .btn {
    height: 50px;
    line-height: 50px;
    width: 50px;
    text-align: center;
    font-size: 16px;
    background: #333 url('../images/sIcon.png') no-repeat center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    float: left;
    margin-right: -50px;
}

.proSear .txt {
    height: 48px;
    line-height: 48px;
    border-right: none;
    width: 100%;
    padding: 0 10px;
    float: left;
}

.proSear .btn:hover {
    background-color: #111;
}

@keyframes leftPic {
    0% {
        opacity: 0;
        padding-top: 60px;
    }
    100% {
        opacity: 1;
        padding-top: 0;
    }
}


/*内页公用菜单*/
.listMenu {
    font-size: 1.143rem;
    text-align: center;
    margin-top: 40px;
}

.listMenu a {
    display: inline-block;
    position: relative;
    color: #191919;
    height: 50px;
    line-height: 45px;
    margin: 0 25px;
}

.listMenu a:hover {
    color: #0292dc;
}

.listMenu a::after, .listMenu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #0292dc;
    width: 0;
    height: 1px;
    transition: all .5s;
}

.listMenu a::before {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
}

.listMenu .cur {
    padding: 0 5px;
    color: #0292dc;
}

.listMenu .cur::after, .listMenu .cur::before, .listMenu a:hover::after, .listMenu a:hover::before {
    width: 100%;
}

.pro_subMenu {
    text-align: center;
    font-size: .875rem;
    margin-bottom: 30px;
}

.pro_subMenu a {
    margin: 0 10px;
    border: 1px solid #ccc;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    padding: 0 15px;
    margin-bottom: 5px;
}

.pro_subMenu a:hover, .pro_subMenu .cur {
    background: #0292dc;
    border: 1px solid #0292dc;
    color: #fff;
}

/* 产品列表 */
.proWrap {
    padding-top: 20px;
}

.proSide {
    float: left;
    width: 21.5%;
    overflow: hidden;
}

.proSide .tie {
    background: #0292dc;
    padding: 25px 0 25px 12%;
    color: #fff;
    font-size: 2em;
}

.proSide .tie span {
    display: block;
    font-family: Arial;
    opacity: .6;
    font-size: 14px;
}

.proSide .tie i {
    float: right;
    color: #0292dc;
    display: none;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    padding-right: 25px;
    font-style: normal;
    line-height: 30px;
    margin-top: 15px;
    z-index: 3;
}

.proSide .tie i::after {
    content: "\e655";
    position: absolute;
    right: 0;
    top: 0;
    font-family: "iconfont";
    font-size: 1.143rem;
}

.proSide dl {
    font-size: 0.929em;
    background: #f0f0f0;
}

.proSide dt {
    height: 57px;
    line-height: 56px;
    border-bottom: 1px solid #dfdfdf;
    padding-left: 12%;
    color: #191919;
    font-size: 1.286em;
    background: url('../images/side_li.png') no-repeat 20px center;
    font-weight: 700;
}

.proSide dd {
    padding: 18px 20px 18px 12%;
    overflow: hidden;
    border-bottom: 1px solid #dfdfdf;
    line-height: 2;
}

.proSide dd p {
    float: left;
    width: 49%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.proSide dd p:nth-child(2n) {
    float: right;
}

.proSide dd .m {
    margin-right: 20px;
    display: inline-block;
}

.proSide a {
    padding: 4px 6px;
}

.proSide .cur {
    color: #fff;
    background: #0292dc;
}

.proList {
    width: 76%;
    overflow: hidden;
    font-size: 1.071em;
}

.proList ul {
    margin-right: -40px;
}

.proList li {
    float: left;
    width: 33.3%;
    padding-right: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.proList li .pImg {
    padding-top: 78%;
    position: relative;
    border: 1px solid #d5d5d5;
    transition: all .5s;
}

.proList li p {
    margin-top: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.proList li a:hover img {
    transform: scale(1.1);
}

.proList li a:hover .pImg {
    box-shadow: 0 3px 8px #c3ebff;
    border-color: #9fdbfa;
}

.searchList {
    width: 100%;
}

.searchList li {
    width: 25%;
}

/*  产品详情 */
.proShow_box1 {
    background: #f4f4f4;
}

.gallery {
    width: 55%;
    position: relative;
    padding: 10px 140px 10px 10px;
}

.galleryBig {
    position: relative;
    height: 480px;
    background: #fff;
    box-shadow: 0 0 10px #ccc;
}

.galleryBig li {
    height: 480px;
    line-height: 480px;
    text-align: center;
}

.galleryBig p {
    position: absolute;
    bottom: -40px;
    left: 0;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 100%;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    transition: all .5s;
}

.galleryBig p i {
    font-family: "iconfont";
    font-style: normal;
    margin-right: 15px;
}

.galleryBig:hover p {
    bottom: 0;
}

.gallery img {
    max-height: 100%;
    vertical-align: middle;
}

.gallerySmall {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 10px;
    width: 110px;
    height: 495px;
    margin-top: 10px;
}

.gallerySmall li {
    border: 1px solid #bdc4ce;
    padding-top: 80%;
    cursor: pointer;
    pointer-events: initial !important;
}

.gallerySmall li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.gallerySmall .on::after {
    border: 2px solid #017cc2;
}

.gallery .btn {
    background: #333;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    opacity: 0;
}

.gallery .swiper-button-prev {
    left: 10px;
}

.gallery .swiper-button-next {
    right: 160px;
    left: auto;
}

.gallery:hover .btn {
    opacity: .8;
}

.proShow_R {
    width: 40%;
    overflow: hidden;
    /*height: 480px;*/
    height: 100%;
}

.proShow_R .title {
    margin-bottom: 20px;
    color: #333;
}

.proShow_R .title span {
    display: block;
    font-size: 2.286em;
    color: #017cc2;
}

.proShow_R .font {
    min-height: 120px;
    line-height: 2;
    white-space: pre-line;
}

.proShow_R .tel {
    border-bottom: 1px solid #ddd;
    padding: 20px;
    margin: 20px 0;
    border-top: 1px solid #ddd;
    font-size: 1.5em;
    color: #191919;
    background: url('../images/zxtel.png') no-repeat left center;
    padding-left: 40px;
}

.proShow_R .tel p {
    font-size: 14px;
    line-height: 20px;
}

.proShow_R .btn {
    margin-top: 30px;
    overflow: hidden;
    position: relative;
}

.proShow_R .btn a {
    display: block;
    width: 40%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #fff;
    color: #333;
    margin-bottom: 35px;
    max-width: 180px;
    border-radius: 5px;
    box-shadow: 2px 2px 6px #ccc;
}

.proShow_R .btn i {
    font-family: "iconfont";
    position: relative;
    margin-right: 5px;
    font-style: normal;
    font-size: 1.286rem;
    line-height: 1;
    top: 2px;
}

.proShow_R .btn a:nth-child(2) {
    color: #f00;
}

.proShow_R .btn a:hover {
    background: #017cc2;
    color: #fff;
}

.proShow_R .wx {
    position: absolute;
    right: 5%;
    top: 0;
    width: 120px;
    text-align: center;
}

.proShow_R .wx img {
    width: 100%;
    box-shadow: 2px 2px 6px #ccc;
}

.proShow_R .wx span {
    display: block;
    margin-top: 10px;
}

.proShow_fix {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px #ccc;
    z-index: 10;
}

.proTie span {
    display: inline-block;
    border-bottom: 1px solid #017cc2;
    height: 45px;
    font-size: 20px;
    color: #191919;
}

.proTie, .proShow_menu {
    height: 45px;
    border-bottom: 1px solid #dcdcdc;
    font-size: 1.286em;
    margin-bottom: 25px;
    color: #333;
}

.proShow_menu span {
    display: inline-block;
    margin-right: 30px;
    cursor: pointer;
    position: relative;
    height: 45px;
}

.proShow_menu span::after, .showTie2 h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: #017cc2;
    height: 1px;
    width: 0;
    transition: all .4s;
}

.proShow_menu .on {
    color: #017cc2;
}

.proShow_menu .on::after {
    width: 100%;
}

.proShow_con {
    width: 72%;
}

.proShow_tab .main {
    display: none;
}

.proShow_tab .main table td {
    padding: 5px;
}

.proShow_tab {
    background: #fff;
    min-height: 200px;
    overflow: hidden;
    margin-bottom: 30px;
}

.proShow_tab .swiper-slide {
    padding: 4%;
}

.relative_pro {
    width: 100%;
}

.relative_pro li {
    width: 33.3%;
}

/* 新闻列表 */
.newsSlide {
    overflow: hidden;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.newsSlide li {
    text-align: left;
    background: #e3e3e3;
    overflow: hidden;
}

.newsSlide li .pic {
    width: 45.5%;
    height: 530px;
    overflow: hidden;
    display: block;
}

.newsSlide li .txt {
    width: 54.5%;
    padding: 6%;
}

.newsSlide li h4 {
    font-size: 1.429em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-weight: 700;
}

.newsSlide li h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    background: #017cc2;
    width: 15px;
    transition: all 0.4s;
}

.newsSlide li h4 a {
    color: #333;
}

.newsSlide li h4 a:hover, .newsList li h3 a:hover {
    color: #017cc2;
}

.newsSlide .slideIcon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #333;
    height: 80px;
    line-height: 80px;
    width: 54.5%;
    z-index: 2;
    left: auto;
    padding-left: 6%;
    text-align: left;
}

.newsSlide .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    cursor: pointer;
    background: #fff;
}

.newsSlide .swiper-button-next, .newsSlide .swiper-button-prev {
    background: rgba(0, 0, 0, .8);
    width: 80px;
    height: 36px;
    opacity: 1;
    font-size: 20px;
    font-family: "宋体";
    font-weight: bold;
    line-height: 36px;
    text-align: center;
    color: #fff;
    position: static;
    margin-top: 20px;
    display: none;
}

.newsSlide li .pic {
    height: 460px;
}

.newsSlide li .txt {
    padding: 5%;
}

.newsSlide li:hover .bgImg {
    transform: scale(1.08);
}

.newsList li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
    margin-bottom: 40px;
    transition: all .3s;
    overflow: hidden;
}

.newsList li .pic {
    float: left;
    width: 360px;
    height: 225px;
    margin-right: 60px;
    overflow: hidden;
}

.newsList li img {
    transition: all .5s;
    width: 100%;
    height: 100%;
}

.newsList li h3 {
    font-size: 1.571em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 12px;
}

.newsList li h3 a {
    color: #333;
}

.newsList li p {
    min-height: 70px;
}

.newsList li .date {
    display: block;
    color: #999;
    margin-bottom: 25px;
    font-size: 12px;
}

.newsList li .date i {
    font-style: normal;
    margin-left: 8px;
}

.newsList li .more {
    display: inline-block;
    width: 120px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    margin-top: 25px;
    border: 1px solid #ccc;
}

.newsList li .more:hover {
    background: #0292dc;
    border: 1px solid #0292dc;
    color: #fff;
}

.newsList li:hover {
    box-shadow: 6px 6px 6px #eee;
}

.newsList li:hover img {
    transform: scale(1.1);
}

.newsList li h3 a:hover {
    color: #0292dc;
}

/* 新闻详情 */
.picShow_l, .newsList {
    width: 72%;
    overflow: hidden;
}

.showTitle {
    font-size: 2.571em;
    color: #333;
    margin-bottom: 8px;
}

.newsShow .txt .date {
    margin-right: 15px;
}

.showTie {
    overflow: hidden;
    margin-bottom: 40px;
}

.showTie h2 {
    font-size: 1.714em;
    color: #333;
    margin-bottom: 25px;
}

.showTie .txt span {
    color: #454545;
    position: relative;
    padding-left: 22px;
    font-size: 1.143em;
    margin-right: 15px;
}

.showTie .txt span:before {
    content: "\e62e";
    font-family: "iconfont";
    position: absolute;
    left: 0;
    top: -1px;
}

.showTie .txt .s:before {
    content: "\e735";
    font-size: 1.2rem;
    top: -2px;
}

.showTie .bshare-custom {
    margin-top: -30px;
}

.newsShow .showTie p {
    font-size: .75rem;
    color: #999;
}

.showCon {
    overflow: hidden;
    margin-bottom: 40px;
}

.showCon .ce img {
    min-width: 60%;
}

.show-synopsis {
    background: #f7f8fa;
    padding: 15px;
    margin-bottom: 40px;
}

.show-synopsis i {
    display: inline-block;
    width: 15px;
    background: url('../images/a_l.png') no-repeat;
    height: 15px;
    margin-right: 5px;
}

.show-synopsis .r {
    background: url('../images/a_r.png') no-repeat;
    margin-left: 5px;
    margin-right: 0;
}

.picShow_r {
    width: 24%;
    overflow: hidden;
}

.picShow_r .title {
    font-size: 1.429em;
    color: #333;
    border-bottom: 1px solid #d9d9d9;
    height: 40px;
    margin-bottom: 25px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.picShow_r .title span {
    display: inline-block;
    border-bottom: 1px solid #0292dc;
    height: 40px;
}

.picShow_r .title a {
    float: right;
    font-size: 12px;
    margin-top: 4px;
}

.picShow_r li {
    border-bottom: 1px dotted #bfbfbf;
    padding-bottom: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    font-size: 12px;
}

.picShow_r li .pImg {
    width: 35%;
    float: left;
    padding-top: 26%;
    margin-right: 20px;
    border: 1px solid #ddd;
}

.picShow_r li h4 {
    font-size: 15px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.picShow_r li h4 a {
    color: #222;
}

.picShow_r li h4 a:hover {
    color: #0292dc;
}

.picShow_r li:hover img {
    transform: scale(1.1);
}

.picShow_r li:last-child {
    border-bottom: none;
}

.rightNews_w li h4 {
    font-size: 18px;
    padding-top: 10px;
}

.showPage {
    height: 90px;
    line-height: 90px;
    overflow: hidden;
    background: #f1f1f1;
}

.showPage a {
    float: left;
    width: 43%;
    padding: 0 20px;
}

.showPage a i {
    font-style: normal;
    font-family: "宋体";
    font-weight: bold;
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px dotted #ccc;
}

.showPage a:nth-child(2) {
    float: right;
    text-align: right;
}

.showPage a:nth-child(1) i {
    padding: 0 10px 0 0;
    margin: 0 10px 0 0;
    border-right: 1px dotted #ccc;
    border-left: none;
}

.showPage a:nth-child(3) {
    width: 14%;
    text-align: center;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.showPage a:hover {
    background: #0292dc;
    color: #fff;
}

.rightNews, .rightContact {
    background: #f2f2f2;
    padding: 5%;
}

.rightNews_w, .rightContact_w {
    background: #fff;
    padding: 8%;
}

.rightContact {
    margin-top: 30px;
}

.rightContact h4 {
    background: url('../images/zxIcon.png') no-repeat left 8px;
    padding-left: 30px;
    font-size: 2em;
    color: #191919;
    font-family: Arial;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.rightContact p {
    padding-left: 80px;
    margin-bottom: 10px;
    overflow: hidden;
}

.rightContact p span {
    margin-left: -80px;
    float: left;
}


/* 解决方案 */
.solutionIndex li {
    background: #f8f8f8;
    overflow: hidden;
    margin-bottom: 20px;
    line-height: 26px;
}

.solutionIndex li .pic {
    width: 50%;
    overflow: hidden;
    display: block;
    height: 430px;
}

.solutionIndex li .txt {
    width: 50%;
    padding: 4%;
    position: relative;
}

.solutionIndex li h4 {
    font-size: 2.143em;
    font-weight: normal;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.solutionIndex li h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    background: #0292dc;
    width: 15px;
    transition: all 0.4s;
}

.solutionIndex li h4 a {
    color: #333;
}

.solutionIndex li .txt .info {
    min-height: 130px;
}

.solutionIndex li .more {
    text-align: center;
    display: inline-block;
    font-size: 12px;
    font-family: Arial;
    margin-top: 25px;
    width: 160px;
    border: none;
    height: 46px;
    line-height: 46px;
    color: #fff;
    background: #0292dc;
}

.solutionIndex li .more:hover {
    width: 220px;
    color: #fff;
    border: none;
}

.solutionIndex li:nth-child(2n) .txt {
    float: left;
}

.solutionIndex li:nth-child(2n) .pic {
    float: right;
}

.solutionIndex li:hover .bgImg {
    transform: scale(1.05);
}

.solutionIndex li h4 a:hover {
    color: #0292dc;
}

/* 解决方案详情 */
.solutionSlide {
    width: 60%;
    overflow: hidden;
    position: relative;
}

.solutionSlide li {
    height: 520px;
}

.solutionSlide .btn {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background: #fff;
    text-align: center;
    color: #333;
    line-height: 35px;
    font-family: "宋体";
    font-weight: bold;
    font-size: 20px;
    transition: all .3s;
}

.solutionSlide .btn:hover {
    background: #0292dc;
    color: #fff;
}

.solutionFont {
    width: 40%;
    height: 520px;
    background: #f5f5f5;
    overflow: hidden;
    padding: 4% 5%;
    font-size: 15px;
    line-height: 30px;
}

.solutionFont .title {
    font-size: 2.2em;
    color: #0292dc;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

.solutionCon {
    background: #f5f5f5;
    overflow: hidden;
}

.solutionCon .tie, .relativeS .tie {
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
}

.relativeS {
    width: 100%;
}

.relativeS li {
    width: 25%;
}


/* 案例列表 */
.caseList ul {
    margin-right: -30px;
}

.caseList li {
    width: 25%;
    float: left;
    padding-right: 30px;
    margin-bottom: 30px;
}

.caseList li a {
    display: block;
    overflow: hidden;
}

.caseList li .pImg {
    padding-top: 80%;
}

.caseList li .pImg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    opacity: .6;
    height: 0;
    width: 100%;
    transition: all .4s;
}

.caseList li .txt {
    position: absolute;
    left: 0;
    top: -100%;
    color: #fff;
    padding: 10%;
    transition: all .4s;
    z-index: 3;
    opacity: 0;
}

.caseList li h4 {
    font-size: 1.143em;
}

.caseList li h4 span {
    display: block;
    font-size: 1.429em;
    margin-bottom: 5px;
}

.caseList li .txt p {
    margin-top: 15px;
    opacity: .8;
}

.caseList li .tie {
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    z-index: 2;
    position: relative;
    margin-top: 20px;
    font-size: 1.143em;
}

.caseList li a:hover img {
    transform: scale(1.1);
}

.caseList li a:hover .tie {
    color: #0292dc;
}

.caseList li a:hover .pImg::after {
    height: 100%;
}

.caseList li a:hover .txt {
    opacity: 1;
    top: 0;
    transition-delay: .1s;
}


/* 案例详情 */
.caseShow {
    padding-left: 400px;;
}

.caseShow_L {
    width: 340px;
    margin-left: -400px;
}

.caseShow_L .tie, .relaTie {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.caseShow_R .title {
    font-size: 2em;
    color: #191919;
}

.caseShow_R .date {
    margin: 10px 0 30px 0;
    color: #888;
    font-size: 13px;
}

.caseShow_R .date span {
    position: relative;
    padding-left: 22px;
    margin-right: 15px;
}

.caseShow_R .date span:before {
    content: "\e62e";
    font-family: "iconfont";
    position: absolute;
    left: 0;
    top: -1px;
}

.caseShow_R .date .s:before {
    content: "\e735";
    font-size: 1rem;
    top: -2px;
}

.caseShow_R .txt {
    line-height: 1.8;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.caseShow_R .txt strong:first-child {
    display: none;
}

.caseShow_R {
    width: 100%;
}

.caseShow_R img {
    width: 100%;
    margin-bottom: 15px;
}

.caseShow_L li {
    margin-bottom: 20px;
}

.caseShow_L li p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 15px;
    font-size: 1.143em;
}

.caseShow_L li:hover img {
    transform: scale(1.1);
}

.relaTie {
    margin-top: 40px;
}

@media all and (min-width: 1400px) {
    .sMenu li span {
        display: block;
        font-size: 1.2em;
        position: relative;
        bottom: 10px;
        z-index: 10;
    }

    .sMenu li img {
        max-width: 70%;
    }
}

@media all and (max-width: 1800px) {
    div.caseShow {
        padding-left: 400px;
    }

    .caseShow_L {
        margin-left: -380px;
        width: 330px;
    }
}

@media all and (max-width: 1200px) {
    div.caseShow {
        padding-left: 310px;
    }

    .caseShow_L {
        margin-left: -290px;
        width: 260px;
    }
}

@media all and (max-width: 1024px) {
    .caseShow_L, .caseShow_R {
        width: 100%;
        float: none;
    }

    div.caseShow {
        padding-left: 15px;
    }

    .caseShow_L {
        margin-left: 0;
    }

    .caseShow_L {
        display: none
    }
}

@media all and (max-width: 480px) {
    ul.relative_case2 li {
        width: 50%;
    }
}


/* 关于我们 */
.aboutMenu {
    background: #fff;
    margin-top: -64px;
    height: 64px;
    line-height: 64px;
    background: rgba(255, 255, 255, .9);
    padding: 0 25px;
    font-size: 1.143em;
    border-radius: 5px 5px 0 0;
}

.aboutMenu p {
    float: right;
    font-size: 14px;
    background: url('../images/home_icon.png') no-repeat left center;
    padding-left: 25px;
}

.aboutMenu .m {
    color: #191919;
    margin: 0 30px;
    position: relative;
    display: inline-block;
}

.aboutMenu .m::after {
    height: 2px;
}

.aboutMenu .m:hover, .aboutMenu .cur {
    color: #0292dc;
}

.aboutBox1 {
    background: #f2f2f2;
}

.aTie {
    font-size: 48px;
    color: #0292dc;
    text-align: center;
    margin-bottom: 40px;
}

.aTie span {
    display: block;
    font-size: 18px;
    color: #999;
}

.aboutBox1 ul {
    font-size: 1.143em;
    width: 64%;
    max-width: 860px;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

.aboutBox1 .aTie {
    text-align: left;
    margin-bottom: 0;
}

.aboutBox1 li {
    float: left;
    text-align: center;
}

.aboutBox1 li span {
    position: relative;
    font-size: 4.625em;
    font-family: Arial;
    color: #0292dc;
    font-weight: 700;
    line-height: 1.2;
}

.aboutBox2 .tie {
    font-size: 2.571em;
    color: #0292dc;
    margin-bottom: 30px;
    line-height: 1;
}

.aboutBox2 .left {
    width: 48%;
    line-height: 1.8;
    position: relative;
}

.aboutBox2 .font {
    overflow-y: auto;
    height: 420px;
    font-size: 1.071em;
}

.aboutBox2 .right {
    width: 49%;
    height: 480px;
    overflow: hidden;
    display: block;
}

.settingA li p, .newsL .pic p {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    padding: 0 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    bottom: -45px;
    height: 45px;
    line-height: 45px;
    transition: all .5s;
}

.settingA li:hover p, .newsL .pic:hover p {
    bottom: 0;
}


.culture {
    background: url('../images/cultureBg.jpg') no-repeat center;
    background-size: cover;
}

.culture .hTitle i {
    font-size: 14px;
    font-style: normal;
}

.culture ul {
    width: 66%;
    margin-right: -20px;
    font-size: 1.143em;
}

.culture li {
    float: left;
    width: 33.3%;
    padding-right: 20px;
    position: relative;
    height: 380px;
}

.culture li .txt {
    position: absolute;
    left: 0;
    padding: 20px;
    bottom: 0;
    color: #fff;
    right: 20px;
    min-height: 120px;
}

.culture li h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* 荣誉资质 */
.honorL {
    width: 23%;
    background: #2d2d2d;
    color: #fff;
    padding: 3%;
    height: 440px;
    line-height: 1.8;
}

.honorL .hTitle span {
    text-align: left;
    background: none;
    padding-bottom: 0;
    line-height: 1.2;
}

.honorL .txt {
    height: 150px;
    margin-bottom: 15px;
    overflow: hidden;
}

.honorL .more {
    display: inline-block;
    width: 125px;
    height: 40px;
    line-height: 38px;
    border: 1px solid #0c89e1;
    text-align: center;
    color: #0c89e1;
}

.honorL .more:hover {
    background: #0c89e1;
    color: #fff;
}

.honorR {
    width: 77%;
    position: relative;
    background: #f5f5f5;
    height: 440px;
    padding: 3.5% 7%;
    text-align: center;
}

.honorSlide li {
    width: 25%;
    float: left;
    font-size: 1.143em;
}

.honorSlide li p {
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    z-index: 2;
    position: relative;
    margin-top: 15px;
}

.honorSlide li .pImg {
    border: 1px solid #ddd;
}

.honorSlide li a:hover img {
    transform: scale(1.1);
}

.honorSlide li a:hover p {
    color: #0c89e1;
}

.honorR .btn {
    width: 20px;
    background-size: 20px 40px;
    opacity: .5;
    left: 4%;
    cursor: pointer;
    pointer-events: initial
}

.honorR .swiper-button-next {
    left: auto;
    right: 4%;
}

.honorR .btn:hover {
    opacity: 1;
}

/* 图片列表 */
.picList ul {
    margin-right: -30px;
}

.picList li {
    width: 25%;
    text-align: center;
    float: left;
    padding-right: 30px;
    margin-bottom: 30px;
}

.picList li a {
    display: block;
    overflow: hidden;
}

.picList li .pImg {
    padding-top: 74%;
    border: 1px solid #e1e1e1;
}

.honorList li .pImg {
    padding-top: 100%;
}

.honorList li {
    width: 20%;
}

.picList li p {
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    z-index: 2;
    position: relative;
    margin-top: 20px;
}

.picList li a:hover img {
    transform: scale(1.1);
}

.picList li a:hover p {
    color: #0292dc;
}

.partnerList {
    background: none;
}

.partnerList ul {
    padding-left: 1px;
}

.galy {
    background: #f5f5f5;
}

.honorList li {
    width: 25%;
}

/* 合作伙伴 */
.settingTop {
    background: #e3e3e3;
    margin-bottom: 45px;
    overflow: hidden;
}

.settingTop .bgImg {
    width: 50%;
    height: 400px;
}

.settingTop .font {
    width: 50%;
    padding: 4% 5%;
    position: relative;
    z-index: 2;
    height: 400px;
    background: #f6f6f6;
}

.settingTop .font h3 {
    font-size: 1.857em;
    color: #0292dc;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.settingTop .font h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 20px;
    background: #0292dc;
}

.settingTop:hover .bgImg {
    transform: scale(1.05);
}

.partnerList {
    padding-left: 1px;
}

.partnerList li {
    float: left;
    width: 12.5%;
    border: 1px solid #d9d9d9;
    margin-left: -1px;
    margin-top: -1px;
    position: relative;
    transition: all .5s;
    overflow: hidden;
}

.partnerList li .pImg {
    padding-top: 52%;
}

.partnerList li p {
    background: #0292dc;
    color: #fff;
    height: 32px;
    line-height: 32px;
    text-align: center;
    padding: 0 10px;
    position: absolute;
    left: 0;
    bottom: -32px;
    width: 100%;
    font-size: 12px;
    transition: all .5s;
}

.partnerList li:hover {
    z-index: 2;
    border: 1px solid #0292dc;
}

.partnerList li:hover img {
    margin-top: -15px;
}

.partnerList li:hover p {
    bottom: 0;
}


/* 常见问题 */
.faq ul {
    padding-left: 1px;
    padding-top: 1px;
    overflow: hidden;
}

.faq li {
    float: left;
    width: 33.3%;
    position: relative;
    border: 1px solid #e5e5e5;
    margin-left: -1px;
    margin-top: -1px;
    transition: all .3s;
    padding: 2.5%;
    height: 260px;
}

.faq li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    background: #0292dc;
    transition: all .5s;
    width: 0;
}

.faq li h4 {
    font-size: 1.429em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.faq li .tag {
    font-size: 12px;
    margin: 15px 0 20px 0;
    padding-left: 25px;
    position: relative;
    color: #8f8f8f;
}

.faq li .tag::after {
    content: "\e606";
    font-family: "iconfont";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.143rem;
}

.faq li .txt {
    color: #777;
    height: 100px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq li .date {
    color: #999;
    display: block;
}

.faq li .date i {
    float: right;
    font-style: normal;
    font-size: 1.286rem;
    font-family: "Arial";
    margin-top: -5px;
}

.faq li:hover::after {
    width: 100%;
}

.faq li:hover {
    box-shadow: 0 0 10px #ccc;
}

.faq li:hover h4 {
    color: #0292dc;
}

.faqList li h4 {
    margin-bottom: 20px;
}

.faqList li {
    width: 50%;
    height: auto;
}


/* 联系*/
#dituContent {
    height: 480px;
}

.contactTel {
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.contactTel li {
    float: left;
    width: 33.3%;
    padding: 3%;
    border-right: 1px solid #ccc;
    font-size: 1.286em;
    height: 360px;
}

.contactTel li img {
    width: 100%;
    margin-bottom: 20px;
}

.contactTel li:last-child {
    border-right: none;
}

.contactTel li h5 {
    padding-left: 60px;
    position: relative;
}

.contactTel li h5 span {
    color: #0292dc;
    display: block;
    font-size: 1.6em;
}

.contactTel li h5::after {
    content: "\e6ee";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "iconfont";
    color: #0292dc;
    font-size: 3rem;
}

.contactTel li.wx p {
    width: 53%;
    text-align: center;
}

.contactTel li .tel span {
    color: #0292dc;
    font-size: 1.6em;
}

.contactBox2 {
    margin-right: -1%;
}

.contactBox2 li {
    float: left;
    width: 23%;
    border: 1px solid #d9d9d9;
    min-height: 160px;
    padding: 3% 2% 1% 4%;
    font-size: 1.125em;
    background: #f7f8fa;
    margin: 0 1%;
}

.contactBox2 li span {
    display: block;
    position: relative;
    margin-bottom: 10px;
}

.contactBox2 li span::after {
    content: "\e6ee";
    position: absolute;
    left: -30px;
    font-family: "iconfont";
    font-size: 1.125rem;
}

.contactBox2 li:nth-child(2) span::after {
    content: "\e608";
}

.contactBox2 li:nth-child(3) span::after {
    content: "\e63a";
}

.contactBox2 li:nth-child(4) span::after {
    content: "\e646";
}

.contactBox2 li p {
    display: block;
    font-size: 1.5em;
    color: #333;
    font-weight: bold;
}


/* 在线留言*/
.feedbackL {
    width: 24%;
    height: 380px;
    float: left;
}

.feedbackR {
    width: 72.5%;
    float: right;
}

.feedback p {
    width: 49%;
    float: left;;
    height: 60px;
    line-height: 60px;
    position: relative;
    padding: 0 15px 0 60px;
    margin-bottom: 10px;
    position: relative;
    border: 1px solid #ccc;
    background: #fff;
}

.feedback p:nth-child(2n) {
    float: right;
}

.feedback p input {
    width: 100%;
    height: 100%;
}

.feedback .tarea {
    width: 100%;
    height: 160px;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 1.6;
}

.feedback i {
    content: "";
    font-family: "iconfont";
    color: #a0a0a0;
    font-style: normal;
    float: left;
    margin-left: -30px;
    font-size: 1rem;
}

.feedback textarea {
    width: 100%;
    height: 100%;
}

.feedback .code {
    clear: both;
}

.feedback .code input {
    height: 60px;
    line-height: 60px;
    border: 1px solid #ddd;
    background: #fff;
}

.feedback .code .c {
    width: 20%;
    padding: 0 15px;
}

.feedback .code img {
    padding: 19px;
    background: #f5f5f5;
}

.feedback .code .sub {
    background: #0292dc;
    width: 30%;
    cursor: pointer;
    transition: all .3s;
    color: #fff;
    border: 1px solid #0292dc;
}

.feedback .sub:hover {
    background: #005d94;
}