﻿@charset "utf-8";
@font-face {
    font-family: 'oswald';
    src: url('../fonts/Oswald-Medium.ttf');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    margin: 0px auto;
    font-size: 16px;
    color: #333333;
    width: 100%;
    zoom: 1;
}

ul,
li,
form,
dl,
dt,
dd,
div,
ul,
li,
p,
em,
i,
address {
    font-style: normal;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0px;
    margin: 0px;
}

select,
input,
textarea,
button {
    font-size: 14px;
    border-radius: 0;
    -webkit-border-radius: 0;
    color: #333333;
    font-family: Microsoft YaHei, arial, sans-serif;
}

input:focus {
    outline: none;
}

input,
button,
select,
textarea {
    border: 0px;
    outline: none;
    /*-webkit-appearance:none;*/
    /*强制去除表单自带的样式*/
}

button {
    cursor: pointer;
}

textarea {
    resize: none;
    /*-webkit-appearance:none;*/
    /*强制去除textarea自带的样式*/
}

textarea,
input,
select {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

article,
aside,
footer,
header,
hgroup,
nav,
section,
figure,
fxigcaption,
address {
    display: block;
}


/*html5设置*/

figure,
figcaption {
    margin: 0px;
    padding: 0px;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

img {
    max-width: 100%;
    border: none;
    border: 0;
    vertical-align: middle;
}

a {
    color: #333333;
    text-decoration: none;
    transition: all ease 0.3s;
}

a:focus {
    outline: none;
    -moz-outline: none;
}

a:hover {
    text-decoration: none;
    color: #104690;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}

.clearfix::after {
    content: '';
    display: block;
    clear: both;
}


/*单行文本省略号*/

.dot {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dot2,
.dot3,
.dot4 {
    display: -webkit-box;
    display: box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
}

.dot2 {
    -webkit-line-clamp: 2;
}


/*多行文本省略号*/

.dot3 {
    -webkit-line-clamp: 3;
}

.dot4 {
    -webkit-line-clamp: 4;
}


/*input字体*/

:-moz-placeholder {
    color: #999999;
}

::-moz-placeholder {
    color: #999999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999999;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999999;
}

select {
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    border: solid 1px #d9d9d9;
    text-indent: 1em;
    /*很关键：将默认的select选择框样式清除*/
    appearance: none;
    color: #999999;
    -moz-appearance: none;
    -webkit-appearance: none;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url(../uploadfiles/map/selectarr.png) no-repeat scroll 95% center transparent;
    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-right: 14px;
}


/*清除ie的默认选择框样式清除，隐藏下拉箭头*/

select::-ms-expand {
    display: none;
}


/*网页滚动条*/

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    -webkit-overflow-scrolling: touch;
    background-color: #e6e6e6;
}

::-webkit-scrollbar-track {
    background-color: #e6e6e6;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(16, 70, 144, 0.6);
}

::-webkit-scrollbar-button {
    height: 0px;
    background-color: #e6e6e6;
}


/*effict*/

.Scale-img {
    overflow: hidden;
    cursor: pointer;
    zoom: 1;
    overflow: hidden;
}

.Scale-img img,
.Scale-img span {
    opacity: 1;
    -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
    transition: opacity 0.6s, transform 0.6s;
}

.Scale-img:hover img,
.Scale-img:hover span {
    opacity: 1;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
    top: 0px;
    left: 0px;
}

.effict {
    transition: all ease 0.3s;
}

.imgbox {
    overflow: hidden;
    position: relative;
    /*background:url(../uploadfiles/nopic.jpg) center center no-repeat; background-size:contain;*/
}

.imgbox span {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgbox img {
    width: auto !important;
    max-height: 100%;
}


/*pages*/

.Pages {
    zoom: 1;
    overflow: hidden;
    text-align: center;
    color: #666666;
    clear: both;
    font-size: 14px;
    margin: 50px 0;
}

.Pages span {
    display: inline-block;
    vertical-align: middle;
}

.Pages a {
    display: inline-block;
    margin: 0px 4px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #dddddd;
    width: 45px;
    height: 45px;
    line-height: 45px;
}

.Pages a.a_prev,
.Pages a.a_next {
    width: 120px;
}

.Pages a.a_prev .img2,
.Pages a.a_next .img2 {
    display: none;
}

.Pages .p_page a {
    display: inline-block;
    vertical-align: middle;
    background-position: center center;
    background-repeat: no-repeat;
}

.Pages .p_page .num a:hover,
.Pages .p_page .num a.a_cur {
    border: 1px solid #104690;
    background: #104690;
    color: #fff;
}

.Pages a.a_prev:hover,
.Pages a.a_next:hover {
    border: 1px solid #104690;
    background: #104690;
    color: #fff;
}

.Pages a.a_prev:hover .img2,
.Pages a.a_next:hover .img2 {
    display: inline-block;
}

.Pages a.a_prev:hover .img1,
.Pages a.a_next:hover .img1 {
    display: none;
}

@media ( max-width:1024px) {
    .Pages {
        font-size: 14px;
        margin: 20px 0;
    }
    .Pages a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin: 0;
        margin-bottom: 5px;
    }
    .Pages a.a_prev,
    .Pages a.a_next {
        width: 70px;
    }
}

.w1400 {
    width: 1400px;
    margin: 0 auto;
}

@media(max-width:1560px) {
    .w1400 {
        width: 92%;
    }
}

@media(max-width:768px) {
    body {
        font-size: 14px;
    }
}


/*pages end*/


/* Top */

.Top {
    position: fixed;
    width: 100%;
    width: 100%;
    height: 90px;
    line-height: 90px;
    top: 0;
    left: 0;
    background: rgba(20, 62, 110, 0.7);
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.Top .TopBox {
    position: relative;
}

.Top .TopNav {
    padding-top: 35px;
    line-height: 55px;
}

.Top .TopBox .fixTop {
    position: absolute;
    top: 15px;
    right: 0;
    color: #fff;
    line-height: 20px;
    font-size: 14px;
}

.Top .TopBox .fixTop span {
    opacity: 0.6;
}

.Top .MainNav {
    margin-left: 30px;
}

.Top .MainNav ul::after {
    content: '';
    display: block;
    clear: both;
}

.Top .MainNav ul li {
    float: left;
    margin: 0 10px;
    position: relative;
}

.Top .MainNav ul li::after {
    content: '';
    display: block;
    width: 45px;
    height: 3px;
    background: #fff;
    position: absolute;
    bottom: -1.5px;
    left: 50%;
    margin-left: -22.5px;
    transform: rotateY(90deg);
    -webkit-transform: rotateY(90deg);
    transition: all .5s;
    -webkit-transition: all .5s;
}
.Top .MainNav ul li>a{font-weight: bold;} 
.Top .MainNav ul li a {
    color: #fff;
    display: block;
    padding: 0 20px;
}

.Top .MainNav ul li.onnav::after {
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
}

.Top .MainNav ul li.onnav>a {
    color: #fff;
    font-weight: bold;
}

.Top .MainNav ul li:hover::after {
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
}

.Top .MainNav ul li:hover>a {
    color: #fff;
    font-weight: bold;
}

.Top .MainNav ul li .Navpull {
    width: 200px;
    margin-left: -100px;
    position: absolute;
    top: 56px;
    left: 50%;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    display: none;
    font-size: 14px;
}

.Top .MainNav ul li#nav88 .Navpull{width:300px;margin-left:-150px;}
.Navpull .Navpull1{
    width: 200px;
    position: absolute;
    top: 0;
    left: 200px;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    font-size: 14px;
}
.Navpull .Navpull1 a{padding:0 10px !important;}

.Bottom .BotTop .FootNav .navBox:nth-child(1) ul li:hover>.Navpull2{display:block;transition:2s;}
#nav79 .Navpull dd:nth-child(6):hover>.Navpull1{display:block;}

@media(max-width:1200px){
    .Navpull .Navpull1{position: static;width:100%;}
    #nav79 .Navpull dd:nth-child(6):hover>.Navpull1{display:none;}
}

.Navpull2{
    width: 180px;
    /* margin-left: -75px; */
    /* padding: 10px 0; */
    display: none;
    font-size: 14px;
}
.Bottom .BotTop .FootNav .navBox:nth-child(1) ul li:hover+.Navpull2{display:block;transition:2s;}

.Top .MainNav ul li .Navpull dl dd {
    line-height: 35px;
    text-align: center;
    position: relative;
}

.Top .MainNav ul li .Navpull.null {
    padding: 0;
}

.Top .m-btn {
    cursor: pointer;
    padding: 15px 5px;
    border-radius: 5px;
    z-index: 9999;
    margin-top: 24px;
    display: none;
    margin-left: 10px;
    position: relative;
}

.Top .m-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #cecece;
    position: relative;
    -webkit-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    -o-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    transition: all 200ms cubic-bezier(.4, 0, 0, 1);
}

.Top .m-btn span::before,
.m-btn span::after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    background: #cecece;
    position: absolute;
    left: 0;
    -webkit-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    -o-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    transition: all 200ms cubic-bezier(.4, 0, 0, 1);
}

.Top .m-btn span:before {
    top: -8px;
}

.Top .m-btn span:after {
    bottom: -8px;
}

.Top .m-btn.active span {
    background: transparent;
}

.Top .m-btn.active span:before {
    transform: rotate(-48deg) translate(-6px, 5px);
    -webkit-transform: rotate(-48deg) translate(-6px, 5px);
    -o-transform: rotate(-48deg) translate(-6px, 5px);
    width: 24px;
    background: #cecece;
}

.Top .m-btn.active span:after {
    transform: rotate(48deg) translate(-6px, -5px);
    -webkit-transform: rotate(48deg) translate(-6px, -5px);
    -o-transform: rotate(48deg) translate(-6px, -5px);
    width: 24px;
    background: #cecece;
}

.Top .search {
    position: relative;
}

.Top .search .searchico img {
    width: 18px;
}

.Top .search .searchico .img2 {
    display: none;
}

.Top .search .searchico.on .img1 {
    display: none;
}

.Top .search .searchico.on .img2 {
    display: inline-block;
}

.Top .search .searchBox {
    position: absolute;
    right: -15px;
    width: 200px;
    padding-right: 50px;
    box-sizing: border-box;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    background: #fff;
    top: 56px;
    overflow: hidden;
    display: none;
}

.Top .search .searchBox input {
    width: 150px;
    height: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.Top .search .searchBox button {
    width: 50px;
    height: 100%;
    background: #fff;
    border-radius: 40px;
    position: absolute;
    top: 0;
    right: 0;
}

.Top .lan {
    color: #cecece;
    margin-left: 15px;
}

.Top .lan a {
    color: #cecece;
    display: inline-block;
    margin: 0 3px;
}

.Top .lan a.on {
    color: #fff;
}

@media(max-width:1500px) {
    .Top .MainNav ul li {
        margin: 0 5px;
    }
}

@media(max-width:1400px) {
    .Top .MainNav ul li {
        margin: 0 2px;
    }
}

@media(max-width:1360px) {
    .Top .MainNav {
        margin-left: 20px;
    }
    .Top .MainNav ul li {
        margin: 0;
    }
    /* .Top .lan{margin-right:10px;} */
}

@media(max-width:1280px) {
    .Top .Logo img {
        height: 40px;
    }
}

@media(max-width:1200px) {
    .Top {
        height: 60px;
        line-height: 60px;
    }
    /* .Top .w1400 {
        position: relative;
    } */
    .Top .TopBox {
        width: 70%;
    }
    .Top .m-btn {
        display: block;
    }
    .Top .TopBox .fixTop{width:100%;box-sizing: border-box;padding:0 10px;}
    .Top .Logo img {
        height: 25px;
    }
    .Top .MainNav {
        position: absolute;
        top: 60px;
        height: calc(100vh - 60px);
        width: 60%;
        background: rgba(0, 0, 0, 0.5);
        right: -80%;
        transition: all .5s;
        -webkit-transition: all .5s;
    }
    .Top .MainNav ul li {
        display: block;
        width: 100%;
        line-height: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .Top .MainNav ul li::after {
        display: none;
    }
    .Top .MainNav.show {
        right: -15px;
    }
    .Top .MainNav ul li b {
        width: 40px;
        height: 40px;
        background: url(../uploadfiles/image/m-more.png) no-repeat center center;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
    }

    .Top .MainNav ul li dd i {
        width: 35px;
        height: 35px;
        background: url(../uploadfiles/image/m-more.png) no-repeat center center;
        background-size: 6px;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
    }
    .Top .MainNav ul li .Navpull {
        position: static;
        margin-left: 0;
        width: 100%;
        padding-left: 30px;
        box-sizing: border-box;
    }
    .Top .MainNav ul li#nav88 .Navpull{width:100%;margin-left:0;}
    .Top .MainNav ul li .Navpull dl dd {
        text-align: left;
        padding:0 20px;
        position: relative;
    }
    .Top .MainNav ul li .Navpull.null {
        padding: 0;
        background: none;
    }
    .Top .TopBox {
        position: static;
    }
    .Top .TopNav {
        padding-top: 0;
        float: right;
    }
    .Top .TopBox .fixTop {
        line-height: 18px;
        margin: 0;
        top: 5px;
        font-size: 12px;
    }
    .Top .search {
        margin-top: 15px;
    }
}

@media(max-width:768px) {
    .Top .TopBox {
        width: 50%;
    }
    .Top .lan {
        margin: 0;
    }
    /* .Top .lan{margin:0;}
	.Top .TopBox .fixTop{top:5px;font-size: 13px;}
	.Top .TopNav{padding-top:25px;line-height: 40px;}
	.Top .m-btn{margin-top:5px;} */
}


/* Bottom */

.Bottom {
    background: #eeeeee;
}

.Bottom .BotTop {}

.Bottom .BotTop .FootNav {
    width: 75%;
    padding: 90px 0 40px 0;
}

.Bottom .BotTop .FootNav .navBox {
    width: 20%;
    float: left;
}

.Bottom .BotTop .FootNav .navBox h1 {
    font-size: 16px;
    font-weight: normal;
    color: #333333;
    margin-bottom: 10px;
}

.Bottom .BotTop .FootNav .navBox h1 a {
    color: #333333;
}

.Bottom .BotTop .FootNav .navBox h1 a:hover {
    color: #006be7;
}

.Bottom .BotTop .FootNav .navBox ul li {
    font-size: 14px;
    line-height: 30px;
}

.Bottom .BotTop .FootNav .navBox ul li a {
    color: #666;
}

.Bottom .BotTop .FootNav .navBox ul li a:hover {
    color: #006be7;
}

.Bottom .FootCon {
    width: 25%;
    max-width: 340px;
    background: rgba(0, 0, 0, 0.1);
    padding: 90px 0 40px 0;
    text-align: center;
}

.Bottom .FootCon .FootTel {
    margin-bottom: 20px;
}

.Bottom .FootCon .FootTel p {
    font-family: oswald;
    font-size: 30px;
    color: #006be7;
}

.Bottom .FootCon .FootTel span {
    font-size: 14px;
    color: #333;
    opacity: 0.5;
}

.Bottom .FootCon .FootEr ul li {
    display: inline-block;
    margin: 0 5px;
}

.Bottom .FootCon .FootEr ul li img {
    width: 100px;
}

.Bottom .FootCon .FootEr ul li p {
    font-size: 14px;
    color: #333;
    opacity: 0.5;
    margin-top: 10px;
/*display:none;*/
}

.Bottom .BotCopy {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.05);
}

.Bottom .BotCopy .copyBox {
    width: 68%;
    padding: 30px 0;
    font-size: 14px;
    color: #333;
    opacity: 0.6;
    line-height: 26px;
}

.Bottom .BotCopy .copyBox ul li {
    display: inline-block;
}

.Bottom .BotCopy .copyBox a {
    color: #333;
}

.Bottom .BotCopy .copyLogo {
    width: 390px;
 /*   max-width: 340px;*/
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    padding: 15px 0 0 0;
    line-height: 52px;
}

.Bottom .BotCopy .copyLogo ul{margin:15px 0;}
.Bottom .BotCopy .copyLogo ul li{display:inline-block;margin-left:10px;}
.Bottom .BotCopy .copyLogo ul li img{max-height:65px;}

.copyBox .sjtj{display:none;}

@media(max-width:992px) {
    .copyBox .pctj{display:none;}
    .copyBox .sjtj{display:inline-block;}
    
    .Bottom .BotTop .FootNav {
        margin-left: -2%;
        width: 100%;
        padding: 30px 0 20px 0;
        display: none;
    }
    .Bottom .BotTop .FootNav .navBox {
        width: 31.33%;
        margin-bottom: 5px;
        margin-left: 2%;
    }
    .Bottom .BotTop .FootNav .navBox h1 {
        width: 100%;
        height: 35px;
        line-height: 35px;
        background: rgba(255, 255, 255, 0.2);
        font-size: 14px;
        text-align: center;
        line-height: 35px;
        margin-bottom: 0;
    }
    .Bottom .BotTop .FootNav .navBox h1 a {
        color: #fff;
    }
    .Bottom .BotTop .FootNav .navBox ul {
        display: none;
    }
    .Bottom .FootCon {
        width: 100%;
        max-width: 1000px;
        padding: 30px 0 20px 0;
    }
    .Bottom .BotCopy .copyBox {
        width: 100%;
        padding: 10px 0;
    }
    .Bottom .BotCopy .copyBox ul li {
        display: block;
        width: 100%;
    }
    .Bottom .BotCopy .copyLogo {
        /*display: none;*/
        width:100%;
    }
    .Bottom .BotCopy .copyLogo ul li img{max-height:50px;}
}

.nBan .imgbox {
    padding-top: 350px;
}

.nNav {
    height: 77px;
    border-bottom: 1px solid #e9e9e9;
    text-align: center;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 99;
}
.nNav ul{display: flex;align-items: center;justify-content: center;}
.nNav ul::after{content:'';display: block;clear: both;}
.nNav ul li {
    float:left;
    width: 20%;
    border-right: 1px solid #e9e9e9;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 28px;
    height:77px;
    display:flex;justify-content:center;align-items:center;flex-direction: column;
}

.nNav ul li:first-child {
    border-left: 1px solid #e9e9e9;
}

.nNav ul li.on {
    border-bottom: 2px solid #104690;
}

.nNav ul li.on a {
    color: #104690;
}

.nNav ul li:hover {
    border-bottom: 2px solid #104690;
}

.nNav ul li:hover a {
    color: #104690;
}

.Main {
    padding: 60px 0;
    background: #f6f6f6;
}

.SubMenu {
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    line-height: 35px;
}

.SubMenu li {
    display: inline-block;
    margin: 0 15px;
}

.SubMenu li a {
    display: block;
    font-size: 16px;
    border-radius: 5px;
    padding: 0 15px;
}

.SubMenu li.on a {
    color: #fff;
    background: #104690;
}

 .homepage .Top{background:#143e6e !important;}
@media(max-width:992px) {
     .homepage {
        padding-top: 61px !important;
    }
    .nNav {
        height: auto;
    }
    .nNav ul::after {
        content: '';
        display: block;
        clear: both;
    }
    .nNav ul li {
        font-size: 14px;
        width: 33.33%;
        margin-left: 0;
        line-height: 22px;
        height: 50px;
        float: left;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .SubMenu {
        padding: 12px 0;
        line-height: 24px;
    }
    .SubMenu li {
        display: inline-block;
        margin: 0;
    }
    .SubMenu li a {
        font-size: 14px;
        padding: 0 10px;
    }
}

.HomeBan .slider.pcban .item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.HomeBan .slider.pcban .item .imgbox {
    padding-top: 100vh;
}
.HomeBan .slider.pcban .item .imgbox img{width:100% !important;height:100%;}


/*.HomeBan .item.slick-current .imgbox span{
	-webkit-animation:scale-bg 8s ease-in-out 0s 1 alternate forwards;
	animation:scale-bg 8s ease-in-out 0s 1 alternate forwards;}
*/

.HomeBan .slider.mobileban {
    display: none;
}

.HomeBan .slider.mobileban .item .imgbox {}

@media(max-width:992px) {
    .HomeBan .slider.pcban {
        display: none;
    }
    .HomeBan .slider.mobileban {
        display: block;
    }
}

@-webkit-keyframes scale-bg {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }
}

@keyframes scale-bg {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }
}


/* 产品中心 */

.nProduct .nProBox {
    margin-left: -2%;
}

.nProduct .nProBox .item {
    width: 23%;
    float: left;
    margin-left: 2%;
    background: #fff;
    margin-bottom: 30px;
    height: 420px;
    position: relative;
}

.nProduct .nProBox .item .proimg {
    background: #fff;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #f6f6f6;
    box-sizing: border-box;
}

.nProduct .nProBox .item .proimg img {
    max-height: 90%;
}

.nProduct .nProBox .item .protxt {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    box-sizing: border-box;
    padding: 10px;
}

.nProduct .nProBox .item .protxt h1 {
    font-size: 18px;
    font-weight: normal;
}

.nProduct .nProBox .item .protxt .prodec {
    height: 75px;
    display: none;
}

.nProduct .nProBox .item .protxt .more {
    margin-top: 10px;
}

.nProduct .nProBox .item .protxt .more .img2 {
    display: none;
}

.nProduct .nProBox .item:hover .protxt {
    background: #104690;
    color: #fff;
    height: 260px;
}

.nProduct .nProBox .item:hover .protxt .more .img2 {
    display: inline-block;
}

.nProduct .nProBox .item:hover .protxt .more .img1 {
    display: none;
}

.nProduct .nProBox .item:hover .protxt .prodec {
    line-height: 25px;
    font-size: 14px;
    opacity: 0.5;
    overflow: auto;
    display: block;
    margin: 15px 0;
}

@media(max-width:1360px) {
    .nProduct .nProBox .item .protxt h1 {
        font-size: 16px;
    }
}

@media(max-width:1200px) {
    .nProduct .nProBox .item {
        height: 340px;
    }
    .nProduct .nProBox .item .proimg {
        height: 220px;
    }
}

@media(max-width:992px) {
    .Main {
        padding: 30px 0;
    }
    .nBan .imgbox {
        padding-top: 200px;
    }
    .nProduct .nProBox .item {
        width: 48%;
    }
    .nProduct .nProBox .item .protxt h1 {
        font-size: 14px;
    }
}

@media(max-width:480px) {
    .nProduct .nProBox .item {
        height: 230px;
        margin-bottom: 10px;
    }
    .nProduct .nProBox .item .proimg {
        height: 150px;
    }
    .nProduct .nProBox .item .protxt {
        height: 80px;
    }
    .nProduct .nProBox .item .protxt .more {
        margin-top: 5px;
    }
}


/* 产品详情 */

.ProInfo .ProInfoBox {
    background: #fff;
    overflow: hidden;
}

.ProInfo .ProInfoBox .ProInfoLeft {
    width: 45%;
    box-sizing: border-box;
    padding: 70px;
}

.ProInfo .ProInfoBox .ProInfoLeft h1 {
    font-size: 26px;
    color: #000;
    text-align: center;
}

.ProInfo .ProInfoBox .ProInfoLeft .ProInfoImg {
    margin: 10px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ProInfo .ProInfoBox .ProInfoLeft .ProInfoImg .item {
    position: relative;
}

.ProInfo .ProInfoBox .ProInfoLeft .ProInfoImg .zoom {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 8px;
    background: rgba(0, 0, 0, 0.6);
}

.ProInfo .slick-arrow {
    font-size: 0;
    z-index: 10;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 30px;
    height: 50px;
    line-height: 50px;
    background-color: #dcdcdc;
    cursor: pointer;
    padding: 0;
    transition: all ease 0.3s;
    color: #fff;
}

.ProInfo .slick-arrow:hover {
    color: #fff;
    background-color: #104690;
}

.ProInfo .slick-prev:before {
    content: '<';
}

.ProInfo .slick-next:before {
    content: '>';
}

.ProInfo .slick-prev:before,
.slick-next:before {
    font-size: 30px;
    font-family: "宋体";
}

.ProInfo .slick-prev {
    left: -80px;
}

.ProInfo .slick-next {
    right: -80px;
}

.ProInfo .ProInfoBox .ProInfoLeft .ProInfoImg:hover .slick-prev {
    left: 0;
}

.ProInfo .ProInfoBox .ProInfoLeft .ProInfoImg:hover .slick-next {
    right: 0;
}

.ProInfo .slick-dots {
    position: absolute;
    z-index: 10;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
}

.ProInfo .slick-dots li {
    display: inline-block;
    margin: 0 6px 0 7px;
}

.ProInfo .slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    background: #cccccc;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    font-size: 0;
}

.ProInfo .slick-dots li.slick-active button {
    background: #104690;
}

.ProInfo .ProInfoBox .ProInfoLeft .zxBtn {
    margin-top: 50px;
    text-align: center;
}

.ProInfo .ProInfoBox .ProInfoLeft .zxBtn ul li {
    display: inline-block;
    width: 200px;
    height: 60px;
    line-height: 60px;
    background: #104690;
    text-align: center;
    margin: 0 8px;
    box-shadow: 0 10px 30px rgba(16, 70, 144, 0.15);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.ProInfo .ProInfoBox .ProInfoLeft .zxBtn ul li a {
    color: #fff;
}

.ProInfo .ProInfoBox .ProInfoLeft .zxBtn ul li:nth-child(2) {
    background: #2c6eab;
}

.ProInfo .ProInfoBox .ProInfoLeft .zxBtn ul li:hover {
    transform: translate3d(0, -3px, 0);
    -webkit-transform: translate3d(0, -3px, 0);
}

.ProInfo .ProInfoBox .ProInfoRight {
    width: 55%;
    box-sizing: border-box;
    border-left: 1px solid #f0f0f0;
    padding: 60px 70px;
}

.ProInfo .ProInfoBox .ProInfoRight .part {
    padding: 30px 0;
    border-top: 1px dotted #b2b2b2;
}

.ProInfo .ProInfoBox .ProInfoRight .part:first-child {
    border-top: none;
}

.part .parttit {
    padding-left: 55px;
    position: relative;
    font-size: 20px;
    font-weight: bold;
    line-height: 45px;
    margin-bottom: 10px;
}

.part .parttit .ico {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    background: #104690;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -22.5px;
    box-shadow: 0 10px 30px rgba(16, 70, 144, 0.15);
}

.ProInfo .ProInfoBox .ProInfoRight .part .dec {
    font-size: 15px;
    color: #666666;
    line-height: 30px;
}

.ProInfo .ProInfoBox .ProInfoRight .part.proDetail .dec p {
    line-height: 25px;
}

.ProInfo .ProInfoBox .ProInfoRight .part.xnFeature .dec p {
    position: relative;
    padding-left: 15px;
    line-height: 30px;
}

.ProInfo .ProInfoBox .ProInfoRight .part.xnFeature .dec p::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #104690;
    position: absolute;
    left: 0;
    top: 13px;
}

.ProInfo .ProInfoBox .ProInfoRight .partdec p {}

@media(max-width:1440px) {
    .ProInfo .ProInfoBox .ProInfoLeft h1 {
        font-size: 22px;
    }
    .ProInfo .ProInfoBox .ProInfoLeft .zxBtn ul li {
        width: 45%;
        margin: 0 5px;
    }
}

@media(max-width:992px) {
    .ProInfo .ProInfoBox .ProInfoLeft {
        width: 100%;
        padding: 20px 10px;
    }
    .ProInfo .ProInfoBox .ProInfoLeft h1 {
        font-size: 18px;
    }
    .ProInfo .ProInfoBox .ProInfoLeft .zxBtn {
        margin-top: 30px;
    }
    .ProInfo .ProInfoBox .ProInfoLeft .zxBtn ul li {
        height: 40px;
        line-height: 40px;
    }
    .ProInfo .ProInfoBox .ProInfoRight {
        width: 100%;
        padding: 10px 20px;
    }
    .ProInfo .ProInfoBox .ProInfoRight .part {
        padding: 10px 0;
    }
    .ProInfo .ProInfoBox .ProInfoRight .part .dec {
        font-size: 14px;
        line-height: 24px;
    }
    .part .parttit {
        font-size: 18px;
        padding-left: 45px;
    }
    .part .parttit .ico {
        width: 38px;
        height: 38px;
        line-height: 38px;
        margin-top: -19px;
    }
    .ProInfo .ProInfoBox .ProInfoRight .part.xnFeature .dec p {
        line-height: 25px;
    }
}


/* 行业解决方案 */

.Solution {
    overflow: hidden;
}

.Solution .SolutionBox .SolutionNav {
    width: 21.5%;
    background: #fff;
    box-sizing: border-box;
    padding: 0 30px;
}

.Solution .SolutionBox .SolutionNav h1 {
    font-size: 26px;
    font-weight: normal;
    padding: 30px 0;
    border-bottom: 1px solid #efefef;
}

.Solution .SolutionBox .SolutionNav ul {
    padding: 20px 0;
}

.Solution .SolutionBox .SolutionNav ul li {
    line-height: 22px;
    padding:8px 0;
    position: relative;
    font-size: 15px;
}

.Solution .SolutionBox .SolutionNav ul li a {
    color: #666;
}

.Solution .SolutionBox .SolutionNav ul li::before {
    content: '';
    display: block;
    width: 2px;
    height: 0;
    background: #104690;
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -15px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.Solution .SolutionBox .SolutionNav ul li img {
    width: 7px;
    height: 12px;
    position: absolute;
    right: 30px;
    top: 50%;
    text-align: center;
    margin-top: -6px;
    opacity: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.Solution .SolutionBox .SolutionNav ul li:hover img {
    opacity: 1;
    right: 0;
}

.Solution .SolutionBox .SolutionNav ul li:hover::before {
    height: 30px;
}

.Solution .SolutionBox .SolutionNav ul li:hover a {
    color: #104690;
}

.Solution .SolutionBox .SolutionNav ul li.on img {
    opacity: 1;
    right: 0;
}

.Solution .SolutionBox .SolutionNav ul li.on::before {
    height: 30px;
}

.Solution .SolutionBox .SolutionNav ul li.on a {
    color: #104690;
}

.Solution .SolutionBox .SolutionCon {
    width: 76.5%;
    box-sizing: border-box;
    padding: 30px;
    background: #fff;
}

.Solution .SolutionBox .SolutionCon>h1 {
    font-size: 26px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 20px;
}

.Solution .SolutionBox .SolutionCon .SolutionImg img {
    width: 100%;
}

.Solution .SolutionBox .SolutionCon .SolutionInfo {
    margin: 20px 0;
}

.Solution .SolutionBox .SolutionCon .SolutionInfo .part {
    padding: 30px 0;
    border-bottom: 1px dotted #ddd;
    overflow: hidden;
}

.Solution .SolutionBox .SolutionCon .SolutionInfo .part:last-child {
    border-bottom: none;
}

.Solution .SolutionBox .SolutionCon .SolutionInfo .part .dec {
    padding: 0 10px;
    line-height: 30px;
    font-size: 15px;
    color: #666666;
}

.Solution .SolutionBox .mobileSolutionNav {
    display: none;
    background: #fff;
    margin-bottom: 20px;
}

.Solution .SolutionBox .mobileSolutionNav .item {
    padding: 15px 40px;
    text-align: center;
    font-size: 16px;
}

.Solution .SolutionBox .mobileSolutionNav .slick-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eee;
    color: transparent;
    position: absolute;
    top: 50%;
    margin-top: -15px;
}

.Solution .SolutionBox .mobileSolutionNav .slick-prev::before {
    content: '<';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    color: #666;
    line-height: 30px;
    text-align: center;
    font-family: "宋体";
    font-size: 16px;
}

.Solution .SolutionBox .mobileSolutionNav .slick-next::before {
    content: '>';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    color: #666;
    line-height: 30px;
    text-align: center;
    font-family: "宋体";
    font-size: 16px;
}

.Solution .SolutionBox .mobileSolutionNav .slick-prev {
    left: 10px;
}

.Solution .SolutionBox .mobileSolutionNav .slick-next {
    right: 10px;
}

.otherPro {
    margin-top: 30px;
}

.otherPro .slick-list {
    margin-left: -20px;
    padding: 5px;
}

.otherPro .item {
    width: 31.33%;
    float: left;
    margin-left: 20px;
    background: #fff;
    margin-bottom: 30px;
    height: 420px;
    position: relative;
    border: 1px solid #f1f1f1;
    box-sizing: border-box;
}

.otherPro .item .proimg {
    background: #fff;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #f6f6f6;
    box-sizing: border-box;
}

.otherPro .item .proimg img {
    max-height: 90%;
}

.otherPro .item .protxt {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    box-sizing: border-box;
    padding: 10px;
}

.otherPro .item .protxt h1 {
    font-size: 18px;
    font-weight: normal;
}

.otherPro .item .protxt .prodec {
    height: 75px;
    display: none;
}

.otherPro .item .protxt .more {
    margin-top: 10px;
}

.otherPro .item .protxt .more .img2 {
    display: none;
}

.otherPro .item:hover .protxt {
    background: #104690;
    color: #fff;
    height: 260px;
}

.otherPro .item:hover .protxt .more .img2 {
    display: inline-block;
}

.otherPro .item:hover .protxt .more .img1 {
    display: none;
}

.otherPro .item:hover .protxt .prodec {
    line-height: 25px;
    font-size: 14px;
    opacity: 0.5;
    overflow: auto;
    display: block;
    margin: 15px 0;
}

.otherPro .slick-arrow {
    font-size: 0;
    z-index: 10;
    position: absolute;
    top: 50%;
    margin-top: -22px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: all ease 0.3s;
    color: #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.otherPro .slick-arrow:hover {
    color: #fff;
    background-color: #006be7;
}

.otherPro .slick-prev:before {
    content: '<';
}

.otherPro .slick-next:before {
    content: '>';
}

.otherPro .slick-prev:before,
.slick-next:before {
    font-size: 20px;
    font-family: "宋体";
    font-weight: bold;
}

.otherPro .slick-prev {
    left: -80px;
}

.otherPro .slick-next {
    right: -80px;
}

.otherPro:hover .slick-prev {
    left: 10px;
}

.otherPro:hover .slick-next {
    right: 10px;
}

@media ( max-width:1024px) {
    .otherPro .slick-arrow {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    .otherPro .slick-dots li button {
        width: 8px;
        height: 8px;
    }
    .otherPro .slick-prev {
        left: 10px;
    }
    .otherPro .slick-next {
        right: 10px;
    }
}

@media(max-width:1400px) {
    .Solution .SolutionBox .SolutionNav ul li a {
        font-size: 15px;
    }
}

@media(max-width:1360px) {
    .Solution .SolutionBox .SolutionNav {
        width: 25%;
    }
    .Solution .SolutionBox .SolutionCon {
        width: 73%;
    }
}

@media(max-width:992px) {
    .Solution .SolutionBox .mobileSolutionNav {
        display: block;
    }
    .Solution .SolutionBox .SolutionNav {
        width: 100%;
        margin-bottom: 20px;
        display: none;
    }
    .Solution .SolutionBox .SolutionNav h1 {
        font-size: 16px;
        padding: 10px 0;
        background: url(../uploadfiles/image/subjt.png) no-repeat center right;
    }
    .Solution .SolutionBox .SolutionNav ul {
        display: none;
    }
    .Solution .SolutionBox .SolutionNav ul li {
        line-height: 35px;
        font-size: 14px;
    }
    .Solution .SolutionBox .SolutionCon {
        width: 100%;
        padding: 15px;
    }
    .Solution .SolutionBox .SolutionCon>h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .Solution .SolutionBox .SolutionCon .SolutionInfo .part {
        padding: 10px 0;
    }
    .otherPro .item {
        margin-left: 0.5%;
    }
    .Solution .SolutionBox .SolutionCon .SolutionInfo .part .dec {
        font-size: 14px;
        line-height: 25px;
    }
}


/* 公司新闻 */

.nNews {
    background: #fff;
}

.nNews .nNewsBox .item {
    margin-bottom: 30px;
    padding: 25px;
    padding-left: 325px;
    position: relative;
    height: 190px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: all .5s;
    -webkit-transition: all .5s;
    box-sizing: border-box;
    border: 1px solid transparent;
}

.nNews .nNewsBox .item .itemImg {
    width: 300px;
    position: absolute;
    left: 0;
    top: 0;
}

.nNews .nNewsBox .item .itemImg .imgbox {
    padding-top: 190px;
}

.nNews .nNewsBox .item .itemTxt .tit {
    line-height: 30px;
}

.nNews .nNewsBox .item .itemTxt .tit h1 {
    width: 75%;
    font-size: 20px;
    font-weight: normal;
}

.nNews .nNewsBox .item .itemTxt .tit span {
    width: 25%;
    display: block;
    color: #c9c9c9;
    font-size: 20px;
    text-align: right;
}

.nNews .nNewsBox .item .itemTxt .dec {
    font-size: 14px;
    color: #999;
    line-height: 22px;
    margin: 10px 0 20px;
}

.nNews .nNewsBox .item .itemTxt .More {
    width: 80px;
    height: 25px;
    background: #104690;
    text-align: center;
    line-height: 25px;
    transition: all 0.3s;
}

.nNews .nNewsBox .item:hover {
    border: 1px solid #dbe3ee;
    box-shadow: 0 10px 30px #f5f7fa;
    ;
}

.nNews .nNewsBox .item:hover .itemTxt .More {
    width: 100px;
}

@media(max-width:768px) {
    .nNews .nNewsBox .item {
        padding: 0;
        height: auto;
        border: 1px solid #e6e6e6;
    }
    .nNews .nNewsBox .item .itemImg {
        width: 100%;
        position: static;
        margin-bottom: 10px;
    }
    .nNews .nNewsBox .item .itemImg .imgbox {
        padding-top: 70%;
    }
    .nNews .nNewsBox .item .itemTxt {
        padding: 10px;
    }
    .nNews .nNewsBox .item .itemTxt .tit {
        line-height: 22px;
    }
    .nNews .nNewsBox .item .itemTxt .tit h1 {
        width: 100%;
        font-size: 16px;
    }
    .nNews .nNewsBox .item .itemTxt .tit span {
        width: 100%;
        text-align: left;
        font-size: 12px;
    }
}


/* 新闻详情 */

.news-info .news-info-tit {
    text-align: center;
    padding: 0 0 30px 0;
    border-bottom: 1px dashed #dedede;
}

.news-info .news-info-tit h1 {
    font-size: 28px;
    font-weight: bold;
    color: #104690;
    margin-bottom: 10px;
}

.news-info .news-info-tit p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.news-info .news-info-content {
    padding: 30px 0;
    color: #666;
    line-height: 28px;
}

.news-info .news-info-content img {
    display: block;
    margin: 0 auto;
}

.news-info .prev-next {
    margin: 50px 0;
}

.news-info .prev-next .btn_1 {
    width: 49%;
    line-height: 50px;
    text-align: center;
    background: #f7f7f7;
    height: 50px;
    overflow: hidden;
}

.news-info .prev-next .btn_1.prev_1 {
    background: #104690;
    color: #fff;
}

.news-info .prev-next .btn_1.prev_1 a {
    color: #fff;
}

@media(max-width:992px) {
    .news-info .news-info-tit h1 {
        font-size: 18px;
    }
    .news-info .news-info-tit {
        padding: 20px 0;
    }
    .news-info .prev-next .btn_1 {
        width: 100%;
        font-size: 14px;
        line-height: 40px;
        margin-bottom: 10px;
    }
    .news-info .prev-next {
        margin: 20px 0;
    }
}


/* 信息公开 */

.xxgkBox {
    margin-left: -2%;
}

.xxgkBox .item {
    width: 48%;
    margin-left: 2%;
    background: #fff;
    box-sizing: border-box;
    float: left;
    padding: 40px 80px 40px 120px;
    position: relative;
    margin-bottom: 30px;
}

.xxgkBox .item .date {
    font-family: oswald;
    position: absolute;
    top: 40px;
    left: 40px;
}

.xxgkBox .item .date p {
    font-size: 42px;
    color: #104690;
}

.xxgkBox .item .date span {
    color: #999999;
    font-size: 14px;
}

.xxgkBox .item .txt {}

.xxgkBox .item .txt h1 {
    font-size: 20px;
    font-weight: normal;
}

.xxgkBox .item .txt p {
    font-size: 14px;
    line-height: 25px;
    color: #999;
    margin: 10px 0 30px 0;
}

.xxgkBox .item .txt .more {
    font-size: 14px;
    color: #104690;
}

.xxgkBox .item .txt .more .img2 {
    display: none;
}

.xxgkBox .item:hover {
    background: #104690;
}

.xxgkBox .item:hover .date p {
    color: #fff;
}

.xxgkBox .item:hover .date span {
    color: #fff;
}

.xxgkBox .item:hover .txt h1 {
    color: #fff;
}

.xxgkBox .item:hover .txt p {
    color: #fff;
    opacity: 0.5;
}

.xxgkBox .item:hover .txt .more {
    color: #fff;
}

.xxgkBox .item:hover .txt .more .img1 {
    display: none;
}

.xxgkBox .item:hover .txt .more .img2 {
    display: inline-block;
}

@media(max-width:1024px) {
    .xxgkBox .item {
        padding: 20px 40px 20px 80px;
    }
    .xxgkBox .item .date {
        left: 20px;
    }
}

@media(max-width:768px) {
    .xxgkBox .item {
        width: 98%;
        padding: 20px 10px 20px 80px;
        margin-bottom: 20px;
    }
    .xxgkBox .item .date {
        width: 50px;
        text-align: center;
        left: 15px;
        top: 20px;
    }
    .xxgkBox .item .date p {
        font-size: 30px;
    }
    .xxgkBox .item .txt h1 {
        font-size: 16px;
    }
    .xxgkBox .item .txt p {
        margin: 5px 0 10px 0;
    }
}


/* 展会信息 */

.zhzz {
    background: #fff;
}

.zhzz .zhzzBox {
    margin-left: -2%;
}

.zhzz .zhzzBox .item {
    width: 31.33%;
    float: left;
    margin-left: 2%;
    margin-bottom: 30px;
}

.zhzz .zhzzBox .item .itemImg {
    padding-top: 62%;
}

.zhzz .zhzzBox .item .itemTxt {
    padding: 10px 0 30px 0;
    border-bottom: 1px solid #eaeaea;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.zhzz .zhzzBox .item .itemTxt h1 {
    font-size: 20px;
    font-weight: normal;
}

.zhzz .zhzzBox .item .itemTxt p {
    font-size: 14px;
    color: #999;
    line-height: 22px;
    margin: 10px 0;
    height: 44px;
}

.zhzz .zhzzBox .item .itemTxt .date {
    font-size: 14px;
    padding-left: 20px;
    background: url(../uploadfiles/image/time.png) no-repeat center left;
}

.zhzz .zhzzBox .item .itemTxt .date span {
    color: #104690;
}

.zhzz .zhzzBox .item:hover .itemTxt {
    background: #104690;
    color: #fff;
    padding: 10px 20px 30px 20px;
}

.zhzz .zhzzBox .item:hover .itemTxt h1 {
    color: #fff;
}

.zhzz .zhzzBox .item:hover .itemTxt p {
    color: #fff;
    opacity: 0.5;
}

.zhzz .zhzzBox .item:hover .itemTxt .date {
    color: #fff;
    background: url(../uploadfiles/image/ctime.png) no-repeat center left;
}

.zhzz .zhzzBox .item:hover .itemTxt .date span {
    color: #fff;
}

@media(max-width:1280px) {
    .zhzz .zhzzBox .item .itemTxt h1 {
        font-size: 16px;
    }
}

@media(max-width:992px) {
    .zhzz .zhzzBox .item {
        width: 98%;
    }
}


/* 在线留言 */

.MessageBox {
    padding: 70px 200px 80px 140px;
    background: #fff;
    margin-left: -2%;
}

.MessageBox form {
    display: block;
}

.MessageBox .formlist {
    width: 48%;
    margin-left: 2%;
    float: left;
    padding-left: 105px;
    position: relative;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.MessageBox .formlist span {
    width: 100px;
    position: absolute;
    left: 0;
    top: 0;
    text-align: right;
    height: 52px;
    line-height: 52px;
}

.MessageBox .formlist input {
    height: 50px;
    border: 1px solid #dddddd;
    width: 100%;
}

.MessageBox .formlist input:hover,
.MessageBox .formlist.textarea:hover textarea,
.MessageBox .formlist select:hover {
    border: 1px solid #999999;
}

.MessageBox .formlist select {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    background: url(../uploadfiles/image/select.png) no-repeat center right 10px;
}

.MessageBox .formlist.textarea {
    width: 98%;
}

.MessageBox .formlist.textarea textarea {
    height: 170px;
    border: 1px solid #ddd;
    width: 100%;
}

.MessageBox .formbtn {
    text-align: center;
    margin-top: 40px;
}

.MessageBox .formbtn button {
    width: 120px;
    height: 45px;
    margin: 0 3px;
}

.MessageBox .formbtn button.submit {
    background: #104690;
    color: #fff;
}

.MessageBox .formbtn button.submit:hover {
    background: #0c57be;
}

.MessageBox .formbtn button.reset {
    background: #747474;
    color: #fff;
}

.MessageBox .formbtn button.reset:hover {
    background: #635e5e;
}

@media(max-width:1400px) {
    .MessageBox {
        padding: 50px 80px 40px 60px;
    }
}

@media(max-width:992px) {
    .MessageBox {
        padding: 20px 20px 30px 10px;
    }
    .MessageBox .formlist {
        width: 98%;
        padding-left: 75px;
    }
    .MessageBox .formlist span {
        width: 70px;
        line-height: 40px;
    }
    .MessageBox .formlist input {
        height: 40px;
    }
    .MessageBox .formbtn {
        margin-top: 20px;
    }
    .MessageBox .formbtn button {
        height: 35px;
    }
}


/* 投资者关系 */

.tzz {
    background: #fff;
    padding: 0;
}

.tzz .part {
    padding: 60px 0;
}

.tzz .part h1 {
    text-align: center;
    font-size: 30px;
    color: #000;
}

.tzz .Part1 .partNav {
    text-align: center;
    margin: 10px 0 30px 0;
}

.tzz .Part1 .partNav ul li {
    display: inline-block;
    cursor: pointer;
    padding: 10px 0;
    margin: 0 20px;
    font-size: 20px;
    position: relative;
}

.tzz .Part1 .partNav ul li::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #104690;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: rotateY(90deg);
    -webkit-transform: rotateY(90deg);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.tzz .Part1 .partNav ul li.on::after {
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
}

.tzz .Part1 .partNav ul li.on {
    color: #104690;
}

.tzz .Part1 .partNav ul li:hover::after {
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
}

.tzz .Part1 .partNav ul li:hover {
    color: #104690;
}

.tzz .Part1 .partCon {
    margin-left: -2%;
}

.tzz .Part1 .partCon .item {
    width: 48%;
    margin-left: 2%;
    float: left;
    box-sizing: border-box;
    border: 1px solid #f2f2f2;
    margin-bottom: 20px;
    position: relative;
    height: 78px;
    line-height: 78px;
    padding-left: 90px;
}

.tzz .Part1 .partCon .item .itemdate {
    width: 90px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    border-right: 1px solid #f2f2f2;
    font-family: oswald;
    color: #c9c9c9;
    font-size: 20px;
}

.tzz .Part1 .partCon .item .itemtit {
    padding: 0 20px 0 30px;
    position: relative;
}

.tzz .Part1 .partCon .item .itemtit::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: #104690;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -2.5px;
    left: 20px;
}

.tzz .Part1 .bd ul .partMore {
    text-align: center;
    margin-top: 30px;
}

.tzz .Part1 .bd ul .partMore a {
    display: inline-block;
    width: 190px;
    height: 55px;
    background: #104690;
    color: #fff;
    text-align: center;
    line-height: 55px;
}

.tzz .Part2 {
    background: #f8f8f8;
}

.tzz .Part2 ul {
    margin-left: -2%;
    margin-top: 50px;
}

.tzz .Part2 ul::after {
    content: '';
    display: block;
    clear: both;
}

.tzz .Part2 ul li {
    width: 23%;
    margin-left: 2%;
    float: left;
    box-sizing: border-box;
    height: 90px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    position: relative;
}

.tzz .Part2 ul li a {
    display: block;
    padding: 0 120px 0 90px;
    font-size: 20px;
}

.tzz .Part2 ul li .ico {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    position: absolute;
    left: 30px;
    top: 50%;
    margin-top: -22.5px;
}

.tzz .Part2 ul li .ico .img2 {
    display: none;
}

.tzz .Part2 ul li .more {
    width: 45px;
    height: 10px;
    text-align: center;
    line-height: 10px;
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -5px;
}

.tzz .Part2 ul li .more .img2 {
    display: none;
}

.tzz .Part2 ul li:hover {
    background: #104690;
}

.tzz .Part2 ul li:hover a {
    color: #fff;
}

.tzz .Part2 ul li:hover .ico .img1 {
    display: none;
}

.tzz .Part2 ul li:hover .ico .img2 {
    display: inline-block;
}

.tzz .Part2 ul li:hover .more .img1 {
    display: none;
}

.tzz .Part2 ul li:hover .more .img2 {
    display: inline-block;
}

.tzz .Part3 {
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.tzz .Part3 .Parttit h1 {
    color: #fff;
}

.tzz .Part3 .Parttit p {
    max-width: 670px;
    margin: 30px auto 50px;
    text-align: center;
    line-height: 25px;
    font-size: 14px;
    color: #fff;
    opacity: 0.5;
}

.tzz .Part3 ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tzz .Part3 ul li {
    width: 500px;
    height: 180px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 10px;
    box-sizing: border-box;
    padding-left: 80px;
    color: #fff;
}

.tzz .Part3 ul li:first-child p {
    font-family: oswald;
    font-size: 40px;
}

.tzz .Part3 ul li:first-child span {
    opacity: 0.4;
    display: block;
    padding-left: 45px;
}

.tzz .Part3 ul li:last-child {
    line-height: 40px;
}

@media(max-width:1200px) {
    .tzz .Part2 ul li a {
        padding: 0 100px 0 70px;
    }
    .tzz .Part2 ul li .ico {
        left: 10px;
    }
    .tzz .Part2 ul li .more {
        right: 10px;
    }
}

@media(max-width:992px) {
    .tzz .part {
        padding: 30px 0;
    }
    .tzz .part h1 {
        font-size: 22px;
    }
    .tzz .Part2 ul {
        margin-top: 20px;
    }
    .tzz .Part1 .partNav ul li {
        font-size: 16px;
    }
    .tzz .Part1 .partCon .item {
        width: 98%;
        height: 58px;
        line-height: 58px;
        margin-bottom: 7px;
    }
    .tzz .Part2 ul li {
        width: 48%;
        margin-bottom: 20px;
        height: 70px;
        font-size: 16px;
        margin-bottom: 7px;
    }
    /* .tzz .Part2 ul li .ico{width:20px;}
	.tzz .Part2 ul li .ico img{width:20px;} */
    .tzz .Part2 ul li a {
        font-size: 16px;
        padding: 0 60px 0 70px;
    }
    .tzz .Part3 .Parttit p {
        margin: 20px 0;
    }
    .tzz .Part3 ul {
        display: block;
    }
    .tzz .Part3 ul li {
        width: 100%;
        display: block;
        padding-left: 20px;
        margin: 10px 0;
        height: auto;
        padding: 30px 20px;
    }
    .tzz .Part3 ul li:first-child p {
        font-size: 25px;
    }
}


/* 联系我们 */

.nContact {
    background-image: url(../uploadfiles/image/conbg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.nContact .nContactBox {}

.nContact .nContactBox .nConnav {
    text-align: center;
    margin-bottom: 50px;
}

.nContact .nContactBox .nConnav ul li {
    display: inline-block;
    width: 280px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
    background: #e8e8e8;
    margin: 0 5px;
}

.nContact .nContactBox .nConnav ul li.on {
    background: #104690;
    color: #fff;
    box-shadow: 0 10px 30px rgba(16, 70, 144, 0.1);
}

.nContact .nContactBox .nConbox .dec {
    color: #999999;
    text-align: center;
    line-height: 30px;
    max-width: 1170px;
    margin: 0 auto;
}

.nContact .nContactBox .nConbox .tel {
    text-align: center;
    font-size: 40px;
    font-family: oswald;
    color: #104690;
    margin: 30px 0 0 0;
}

.nContact .nContactBox .nConbox .gmap {
    margin-top: 50px;
    position: relative;
    text-align: center;
}

.nContact .nContactBox .nConbox .gmap .dot {
    position: absolute;
    text-align: center;
    font-size: 14px;
    overflow: visible;
}

.nContact .nContactBox .nConbox .gmap .cdot {
    position: absolute;
    color: #fff;
    top: 34%;
    right: 21%;
}

.nContact .nContactBox .nConbox .gmap .dot.ydnxy {
    bottom: 33%;
    right: 17%;
}

.nContact .nContactBox .nConbox .gmap .dot.xjp {
    bottom: 37%;
    right: 23%;
}

.nContact .nContactBox .nConbox .gmap .dot.mlxy {
    bottom: 40%;
    right: 23.5%;
}

.nContact .nContactBox .nConbox .gmap .dot.yn {
    bottom: 45%;
    right: 22.2%;
}

.nContact .nContactBox .nConbox .gmap .dot.aseby {
    bottom: 43.5%;
    right: 39.5%;
}

.nContact .nContactBox .nConbox .gmap .dot.stalb {
    bottom: 53.5%;
    right: 37.5%;
}

.nContact .nContactBox .nConbox .gmap .dot.aj {
    bottom: 55.5%;
    right: 44.5%;
}

.nContact .nContactBox .nConbox .gmap .dot.yd {
    bottom: 58.5%;
    right: 41.5%;
}

.nContact .nContactBox .nConbox .gmap .dot img {
    position: relative;
    animation: pumb linear infinite 1s;
}

.nContact .nContactBox .nConbox .cmap {
    margin-top: 70px;
}

.nContact .nContactBox .nConbox .cmap .cmapbox {
    width: 60%;
}

.nContact .nContactBox .nConbox .cmap .cmapTxt {
    width: 40%;
}

.nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox {
    width: 85%;
    background: #fff;
    padding: 45px;
    box-sizing: border-box;
    position: relative;
}

.nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox::before {
    content: '';
    display: block;
    width: 3px;
    height: 100%;
    background: #104690;
    position: absolute;
    left: 0;
    top: 0;
}

.nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox::after {
    content: '';
    display: block;
    border-left: 20px solid #fff;
    border-right: 20px solid transparent;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    top: 50%;
    margin-top: -20px;
    right: -40px;
    position: absolute;
}

.nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox h1 {
    font-size: 26px;
    font-weight: normal;
}

.nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox ul {
    display: none;
}

.nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox ul {
    padding: 30px 0;
    margin: 30px 0;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

.nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox ul li {
    position: relative;
    padding-left: 35px;
    line-height: 40px;
    color: #666666;
}

.nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox ul li .ico {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    background: #ececec;
    position: absolute;
    top: 50%;
    margin-top: -12.5px;
    left: 0;
}

.nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox ul li span {
    font-family: oswald;
    color: #104690;
    font-size: 26px;
}

.nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox .coner {
    padding-left: 130px;
    height: 115px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox .coner .erimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
}

.nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox .coner p {
    line-height: 30px;
}

.nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox .coner p span {
    font-size: 18px;
    color: #104690;
    font-weight: bold;
}

.nContact .nContactBox .nConbox .cmap .map {
    width: 874px;
    height: 664px;
    margin: auto 0;
    zoom: .9;
    position: relative;
}

.nContact .nContactBox .nConbox .cmap .map .bg {
    position: absolute;
    display: none;
}

.nContact .nContactBox .nConbox .cmap .map .logo {
    display: none;
    text-align: center;
    z-index: 10;
    position: absolute;
    top: 50%;
    margin-top: -100px;
}

.nContact .nContactBox .nConbox .cmap .map .logo img {
    max-width: 233px;
    max-height: 60px;
}

.nContact .nContactBox .nConbox .cmap .map li {
    position: absolute;
}

.nContact .nContactBox .nConbox .cmap .map .ti {
    font-size: 14px;
    position: absolute;
    line-height: 18px;
    text-align: center;
    width: 57px;
    color: #333;
    cursor: pointer;
    z-index: 5;
}

.nContact .nContactBox .nConbox .cmap .map .dot {
    width: 22px;
    height: 23px;
    display: inline-block;
}

.nContact .nContactBox .nConbox .cmap .map li.on .ti {
    color: #fff;
}

.nContact .nContactBox .nConbox .cmap .map li.on .dot {
    background: url(../uploadfiles/map/dot.png);
}

.nContact .nContactBox .nConbox .cmap .map li.on .ti {
    z-index: 58;
}

.nContact .nContactBox .nConbox .cmap .map li.on .bg {
    display: block;
}

.nContact .nContactBox .nConbox .cmap .map .xj {
    left: 155px;
    top: 200px;
}

.nContact .nContactBox .nConbox .cmap .map .xj .bg {
    width: 323px;
    height: 249px;
    left: -157px;
    top: -142px;
    background: url(../uploadfiles/map/xj_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .xz {
    left: 158px;
    top: 369px;
}

.nContact .nContactBox .nConbox .cmap .map .xz .bg {
    width: 302px;
    height: 199px;
    left: -132px;
    top: -88px;
    background: url(../uploadfiles/map/xz_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .qh {
    left: 268px;
    top: 303px;
}

.nContact .nContactBox .nConbox .cmap .map .qh .bg {
    width: 201px;
    height: 149px;
    left: -72px;
    top: -49px;
    background: url(../uploadfiles/map/qh_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .yn {
    left: 335px;
    top: 523px;
}

.nContact .nContactBox .nConbox .cmap .map .yn .bg {
    width: 144px;
    height: 150px;
    left: -43px;
    top: -72px;
    background: url(../uploadfiles/map/yn_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .sc {
    left: 353px;
    top: 403px;
}

.nContact .nContactBox .nConbox .cmap .map .sc .bg {
    width: 172px;
    height: 158px;
    left: -47px;
    top: -48px;
    background: url(../uploadfiles/map/sc_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .gs {
    left: 387px;
    top: 320px;
}

.nContact .nContactBox .nConbox .cmap .map .gs .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .gs .bg {
    width: 232px;
    height: 199px;
    left: -138px;
    top: -124px;
    background: url(../uploadfiles/map/gs_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .nx {
    left: 418px;
    top: 296px;
}

.nContact .nContactBox .nConbox .cmap .map .nx .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .nx .bg {
    width: 48px;
    height: 79px;
    left: -0px;
    top: -27px;
    background: url(../uploadfiles/map/nx_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .nmg {
    left: 475px;
    top: 239px;
}

.nContact .nContactBox .nConbox .cmap .map .nmg .dot {
    display: block;
    margin: 0 0 -15px -5px;
}

.nContact .nContactBox .nConbox .cmap .map .nmg .bg {
    width: 358px;
    height: 301px;
    left: -148px;
    top: -234px;
    background: url(../uploadfiles/map/nmg_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .sx {
    left: 500px;
    top: 297px;
}

.nContact .nContactBox .nConbox .cmap .map .sx .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .sx .bg {
    width: 60px;
    height: 119px;
    left: 2px;
    top: -55px;
    background: url(../uploadfiles/map/shanx_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .shanx {
    left: 450px;
    top: 354px;
}

.nContact .nContactBox .nConbox .cmap .map .shanx .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .shanx .bg {
    width: 88px;
    height: 148px;
    left: -21px;
    top: -88px;
    background: url(../uploadfiles/map/sx_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .cq {
    left: 434px;
    top: 430px;
}

.nContact .nContactBox .nConbox .cmap .map .cq .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .cq .bg {
    width: 77px;
    height: 76px;
    left: -9px;
    top: -27px;
    background: url(../uploadfiles/map/cq_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .gz {
    left: 425px;
    top: 495px;
}

.nContact .nContactBox .nConbox .cmap .map .gz .dot {
    display: block;
    margin: 0px auto -10px;
}

.nContact .nContactBox .nConbox .cmap .map .gz .bg {
    width: 99px;
    height: 86px;
    left: -30px;
    top: -37px;
    background: url(../uploadfiles/map/gz_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .gx {
    left: 458px;
    top: 543px;
}

.nContact .nContactBox .nConbox .cmap .map .gx .dot {
    display: block;
    margin: 0px auto;
}

.nContact .nContactBox .nConbox .cmap .map .gx .bg {
    width: 128px;
    height: 92px;
    left: -51px;
    top: -32px;
    background: url(../uploadfiles/map/gx_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .hun {
    left: 501px;
    top: 472px;
}

.nContact .nContactBox .nConbox .cmap .map .hun .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .hun .bg {
    width: 89px;
    height: 102px;
    left: -22px;
    top: -30px;
    background: url(../uploadfiles/map/hn_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .gd {
    left: 526px;
    top: 545px;
}

.nContact .nContactBox .nConbox .cmap .map .gd .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .gd .bg {
    width: 125px;
    height: 100px;
    left: -33px;
    top: -21px;
    background: url(../uploadfiles/map/gd_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .hain {
    left: 465px;
    bottom: 39px;
}

.nContact .nContactBox .nConbox .cmap .map .hain .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .hain .bg {
    width: 43px;
    height: 36px;
    left: 4px;
    top: -3px;
    background: url(../uploadfiles/map/hain_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .hb {
    left: 513px;
    top: 408px;
}

.nContact .nContactBox .nConbox .cmap .map .hb .bg {
    width: 125px;
    height: 80px;
    background: url(../uploadfiles/map/hb_bg.png);
    left: -43px;
    top: -24px;
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .hen {
    left: 503px;
    top: 362px;
}

.nContact .nContactBox .nConbox .cmap .map .hen .dot {
    display: block;
    margin: 0px auto -10px;
}

.nContact .nContactBox .nConbox .cmap .map .hen .bg {
    width: 95px;
    height: 91px;
    left: -22px;
    top: -35px;
    background: url(../uploadfiles/map/hen_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .heb {
    left: 549px;
    top: 271px;
}

.nContact .nContactBox .nConbox .cmap .map .heb .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .heb .bg {
    width: 90px;
    height: 129px;
    left: -3px;
    top: -68px;
    background: url(../uploadfiles/map/heb_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .tj {
    left: 579px;
    top: 257px;
}

.nContact .nContactBox .nConbox .cmap .map .tj .dot {
    display: block;
    margin: 0px auto -10px;
}

.nContact .nContactBox .nConbox .cmap .map .tj .bg {
    width: 22px;
    height: 31px;
    left: 12px;
    top: -7px;
    background: url(../uploadfiles/map/tj_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .bj {
    left: 558px;
    top: 234px;
}

.nContact .nContactBox .nConbox .cmap .map .bj .dot {
    display: block;
    margin: 0px auto -10px;
}

.nContact .nContactBox .nConbox .cmap .map .bj .bg {
    width: 29px;
    height: 32px;
    left: 12px;
    top: 1px;
    background: url(../uploadfiles/map/bj_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .hlj {
    right: 166px;
    top: 86px;
}

.nContact .nContactBox .nConbox .cmap .map .hlj .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .hlj .bg {
    width: 177px;
    height: 169px;
    left: -85px;
    top: -86px;
    background: url(../uploadfiles/map/hlj_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .jl {
    right: 175px;
    top: 160px;
}

.nContact .nContactBox .nConbox .cmap .map .jl .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .jl .bg {
    width: 131px;
    height: 96px;
    left: -55px;
    top: -31px;
    background: url(../uploadfiles/map/jl_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .ll {
    left: 658px;
    top: 203px;
}

.nContact .nContactBox .nConbox .cmap .map .ll .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .ll .bg {
    width: 96px;
    height: 90px;
    left: -42px;
    top: -21px;
    background: url(../uploadfiles/map/ln_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .js {
    right: 247px;
    top: 367px;
}

.nContact .nContactBox .nConbox .cmap .map .js .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .js .bg {
    width: 89px;
    height: 81px;
    left: -36px;
    top: -25px;
    background: url(../uploadfiles/map/js_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .sd {
    right: 294px;
    top: 311px;
}

.nContact .nContactBox .nConbox .cmap .map .sd .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .sd .bg {
    width: 113px;
    height: 73px;
    left: -14px;
    top: -25px;
    background: url(../uploadfiles/map/sd_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .ah {
    right: 290px;
    top: 390px;
}

.nContact .nContactBox .nConbox .cmap .map .ah .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .ah .bg {
    width: 77px;
    height: 95px;
    left: -13px;
    top: -34px;
    background: url(../uploadfiles/map/ah_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .sh {
    right: 228px;
    top: 399px;
}

.nContact .nContactBox .nConbox .cmap .map .sh .dot {
    display: block;
    margin: 0px auto -15px;
}

.nContact .nContactBox .nConbox .cmap .map .sh .bg {
    width: 31px;
    height: 36px;
    left: 14px;
    top: -11px;
    background: url(../uploadfiles/map/sh_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .zj {
    right: 243px;
    top: 438px;
}

.nContact .nContactBox .nConbox .cmap .map .zj .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .zj .bg {
    width: 63px;
    height: 72px;
    left: -6px;
    top: -22px;
    background: url(../uploadfiles/map/zj_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .jx {
    right: 313px;
    top: 463px;
}

.nContact .nContactBox .nConbox .cmap .map .jx .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .jx .bg {
    width: 78px;
    height: 107px;
    left: -6px;
    top: -23px;
    background: url(../uploadfiles/map/jx_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .fj {
    right: 271px;
    top: 497px;
}

.nContact .nContactBox .nConbox .cmap .map .fj .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .fj .bg {
    width: 72px;
    height: 91px;
    left: -8px;
    top: -27px;
    background: url(../uploadfiles/map/fj_bg.png);
    background-size: 100% 100%;
}

.nContact .nContactBox .nConbox .cmap .map .tw {
    right: 222px;
    top: 536px;
}

.nContact .nContactBox .nConbox .cmap .map .tw .dot {
    display: block;
    margin: 0px auto -5px;
}

.nContact .nContactBox .nConbox .cmap .map .tw .bg {
    width: 29px;
    height: 67px;
    left: 15px;
    top: -22px;
    background: url(../uploadfiles/map/tw_bg.png);
    background-size: 100% 100%;
}

@keyframes pumb {
    0% {
        top: 0;
    }
    25% {
        top: -5px;
    }
    50% {
        top: -10px;
    }
    75% {
        top: -5px;
    }
    100% {
        top: 0;
    }
}

@media(max-width:1400px) {
    .nContact .nContactBox .nConbox .cmap .map {
        zoom: 0.9;
    }
}

@media(max-width:1280px) {
    .nContact .nContactBox .nConbox .cmap .map {
        zoom: 0.8;
    }
    .nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox {
        width: 90%;
        padding: 30px;
    }
}

@media(max-width:1200px) {
    .nContact .nContactBox .nConbox .cmap .map {
        zoom: 0.7;
    }
}

@media(max-width:992px) {
    .nContact .nContactBox .nConnav {
        margin-bottom: 20px;
    }
    .nContact .nContactBox .nConnav ul li {
        width: 150px;
        height: 45px;
        line-height: 45px;
        font-size: 16px;
    }
    .nContact .nContactBox .nConbox .tel {
        font-size: 25px;
        margin-top: 10px;
    }
    .nContact .nContactBox .nConbox .tel img {
        height: 25px;
    }
    .nContact .nContactBox .nConbox .mapbox {
        overflow: auto;
    }
    .nContact .nContactBox .nConbox .gmap {
        width: 800px;
        zoom: 0.8;
    }
    .nContact .nContactBox .nConbox .cmap {
        margin-top: 30px;
    }
    .nContact .nContactBox .nConbox .cmap .cmapTxt {
        width: 100%;
    }
    .nContact .nContactBox .nConbox .cmap .cmapbox {
        width: 100%;
        margin-bottom: 20px;
    }
    .nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox::after {
        display: none;
    }
    .nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox {
        width: 100%;
        padding: 20px;
    }
    .nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox h1 {
        font-size: 20px;
    }
    .nContact .nContactBox .nConbox .cmap .cmapTxt .txtbox ul {
        padding: 20px 0;
        margin: 20px 0;
    }
    .nContact .nContactBox .nConbox .cmap .map {}
}


/* 关于我们 */

.nAbout .Part {
    padding: 60px 0;
}

.nAbout .Part .parttit {
    text-align: center;
    margin-bottom: 30px;
}

.nAbout .Part .parttit h1 {
    font-size: 30px;
}

.nAbout .Part .parttit b {
    display: block;
    width: 30px;
    margin-top: 10px;
    height: 3px;
    background: #104690;
}

.nAbout .Part1 {}

.nAbout .Part1 .parttit {
    text-align: left;
}

.nAbout .Part1 .Partbox {
    overflow: hidden;
}

.nAbout .Part1 .PartBox .PartL {
    width: 46%;
}

.nAbout .Part1 .PartBox .PartL .naboutCon {
    font-size: 15px;
    line-height: 25px;
    color: #666;
    display: inline-block;
    text-align: justify;
}

.nAbout .Part1 .PartBox .PartL .otherCom {
    margin-top: 30px;
    padding: 0 20px 0 70px;
    color: #fff;
    position: relative;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.nAbout .Part1 .PartBox .PartL .otherCom .ico {
    width: 34px;
    height: 34px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.nAbout .Part1 .PartBox .PartL .otherCom p {
    color: #104690;
}

.nAbout .Part1 .PartBox .PartL .otherCom span {
    color: #999;
    font-size: 14px;
}

.nAbout .Part1 .PartBox .PartR {
    width: 48.5%;
}

.nAbout .Part1 .PartBox .PartR .PartImg {
    padding-top: 480px;
    position: relative;
    cursor: pointer;
}

.nAbout .Part1 .PartBox .PartR .PartImg .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
}

.nAbout .Part1 .PartBox .PartR .PartImg:after {
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    position: absolute;
    content: "";
    z-index: 2;
    opacity: 0;
    transition: all 0.3s;
}

.nAbout .Part1 .PartBox .PartR .PartImg:hover:after {
    opacity: 1;
}

.nAbout .Part2 {
    background: #f6f6f6;
}

.nAbout .Part2 .PartBox {
    margin-left: -2%;
}

.nAbout .Part2 .PartBox .item {
    width: 23%;
    margin-left: 2%;
    float: left;
    position: relative;
}

.nAbout .Part2 .PartBox .item .itemImg {
    padding-top: 140%;
}

.nAbout .Part2 .PartBox .item .itemTxt {
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 30px;
    color: #fff;
    top: 0;
    left: 0;
    background:rgba(0, 0, 0, 0.1);
}

.nAbout .Part2 .PartBox .item .itemTxt h1 {
    font-size: 22px;
    margin-bottom: 10px;
}

.nAbout .Part2 .PartBox .item .itemTxt p {
    font-size: 14px;
    line-height: 25px;
}

.nAbout .Part3 {}

.nAbout .Part3 .PartBox {}

.nAbout .Part3 .PartBox .slider-nav {}

.nAbout .Part3 .PartBox .slider-nav .item {
    font-size: 20px;
    height: 68px;
    line-height: 68px;
    text-align: center;
    border: 1px solid #e9e9e9;
    box-sizing: border-box;
    cursor: pointer;
}

.nAbout .Part3 .PartBox .slider-nav .item:focus {
    outline: none;
}

.nAbout .Part3 .PartBox .slider-nav .item.slick-current {
    background: #104690;
    color: #fff;
}

.nAbout .Part3 .PartBox .slider-for .item:focus {
    outline: none;
}

.nAbout .Part3 .PartBox .slider-for .item .itemimg {
    padding-top: 400px;
    width: 45%;
    margin: 70px 0 0 0;
}

.nAbout .Part3 .PartBox .slider-for .item .itemTxt {
    width: 51%;
    box-sizing: border-box;
    position: relative;
    left: -1px;
    padding: 70px 0 0 0;
    height: 494px;
    overflow: auto;
}

.nAbout .Part3 .PartBox .slider-for .item .itemTxt::before {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background: #e9e9e9;
    position: absolute;
    top: 0;
    left: 14px;
}

.nAbout .Part3 .PartBox .slider-for .item .itemTxt .box {
    position: relative;
    padding-left: 180px;
    margin-bottom: 30px;
}

.nAbout .Part3 .PartBox .slider-for .item .itemTxt .box::before {
    content: '';
    display: block;
    width: 21px;
    height: 21px;
    background: url(../uploadfiles/image/aboutdot.png) no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    left: 4px;
    top: 13px;
}

.nAbout .Part3 .PartBox .slider-for .item .itemTxt .time {
    font-family: oswald;
    color: #104690;
    font-size: 30px;
    position: absolute;
    left: 100px;
    top: 0;
}

.nAbout .Part3 .PartBox .slider-for .item .itemTxt .time::before {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    background: #104690;
    position: absolute;
    left: -75px;
    top: 50%;
    margin-top: -0.05px;
}

.nAbout .Part3 .PartBox .slider-for .item .itemTxt .txt {
    font-size: 15px;
    line-height: 30px;
    padding: 8px 0;
}

.nAbout .Part4 {
    background: url(../uploadfiles/image/honor.jpg) no-repeat top center;
    background-size: cover;
}

.nAbout .Part4 .slick-list {
    margin-left: -20px;
}

.nAbout .Part4 .item {
    margin-left: 20px;
    float: left;
    background: #fff;
    padding: 8px;
}

.nAbout .Part4 .item .itemImg {
    padding-top: 67%;
    position: relative;
}

.nAbout .Part4 .item .itemImg .fd {
    position: absolute;
    width: 100%;
    height: 0;
    overflow: hidden;
    ;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(16, 70, 144, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.nAbout .Part4 .item:hover .itemImg .fd {
    height: 100%;
}

.nAbout .Part4 .slick-dots {
    text-align: center;
}

.nAbout .Part4 .slick-dots li {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background: #a2a1a1;
}

.nAbout .Part4 .slick-dots li.slick-active {
    background: #104690;
}

.nAbout .Part4 .slick-dots li button {
    display: none;
}

.nAbout .Part4 .slick-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f0f0f0;
    margin-top: -22.5px;
    top: 50%;
    position: absolute;
    color: transparent;
}

.nAbout .Part4 .slick-arrow.slick-prev {
    background: url(../uploadfiles/image/aprev.png) no-repeat center center;
    border: 1px solid #dededf;
    left: -60px;
}

.nAbout .Part4 .slick-arrow.slick-next {
    background: url(../uploadfiles/image/anext.png) no-repeat center center #104690;
    right: -60px;
}

.nAbout .Part5 {}

.nAbout .Part5 .PartBox {}

.nAbout .Part5 .PartBox .Scale-img {
    width: 16.66667%;
    float: left;
    box-sizing: border-box;
    height: 128px;
    line-height: 128px;
    text-align: center;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nAbout .Part5 .PartBox .Scale-img img {
    max-height: 90%;
    max-width: 90%;
}

.nAbout .Part5 .PartBox .Scale-img:hover {
    border: 1px solid #104690;
}

.nAbout .Part5 .slick-dots {
    text-align: center;
}

.nAbout .Part5 .slick-dots li {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background: #a2a1a1;
}

.nAbout .Part5 .slick-dots li.slick-active {
    background: #104690;
}

.nAbout .Part5 .slick-dots li button {
    display: none;
}

.nAbout .Part5 .slick-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f0f0f0;
    margin-top: -22.5px;
    top: 50%;
    position: absolute;
    color: transparent;
}

.nAbout .Part5 .slick-arrow.slick-prev {
    background: url(../uploadfiles/image/aprev.png) no-repeat center center;
    border: 1px solid #dededf;
    left: -60px;
}

.nAbout .Part5 .slick-arrow.slick-next {
    background: url(../uploadfiles/image/anext.png) no-repeat center center #104690;
    right: -60px;
}


/* 弹出视频 */

.Tvideo {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}

.Tvideo video {
    max-width: 90%;
    position: absolute;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.Tvideo .vclose {
    position: absolute;
    top: 10%;
    right: 10%;
}

@media(max-width:1366px) {
    .nAbout .Part .parttit {
        margin-bottom: 20px;
    }
    .nAbout .Part1 .PartBox .PartL .naboutCon {
        line-height: 24px;
    }
}

@media(max-width:992px) {
    .nAbout .Part {
        padding: 30px 0;
    }
    .nAbout .Part1 .parttit {
        margin-bottom: 20px;
    }
    .nAbout .Part .parttit h1 {
        font-size: 22px;
    }
    .nAbout .Part1 .PartBox .PartL {
        width: 100%;
        margin-bottom: 20px;
    }
    .nAbout .Part1 .PartBox .PartR {
        width: 100%;
    }
    .nAbout .Part1 .PartBox .PartR .PartImg {
        padding-top: 65%;
    }
    .nAbout .Part2 .PartBox .item {
        width: 48%;
        margin-bottom: 10px;
    }
    .nAbout .Part2 .PartBox .item .itemTxt {
        padding: 10px;
    }
    .nAbout .Part2 .PartBox .item .itemTxt h1 {
        font-size: 18px;
    }
    .nAbout .Part3 .PartBox .slider-nav .item {
        font-size: 16px;
    }
    .nAbout .Part3 .PartBox .slider-for .item .itemimg {
        width: 100%;
        display: none;
    }
    .nAbout .Part3 .PartBox .slider-for .item .itemTxt {
        width: 100%;
        height: auto;
    }
    .nAbout .Part3 .PartBox .slider-for .item .itemTxt .box {
        padding-left: 120px;
        margin-bottom: 10px;
    }
    .nAbout .Part3 .PartBox .slider-for .item .itemTxt .time {
        font-size: 20px;
        left: 60px;
        top: 8px;
    }
    .nAbout .Part3 .PartBox .slider-for .item .itemTxt .time::before {
        width: 30px;
        left: -35px;
    }
    .nAbout .Part3 .PartBox .slider-for .item .itemTxt {
        padding-top: 30px;
    }
    .nAbout .Part4 .slick-dots {
        margin-top: 20px;
    }
    .nAbout .Part4 .slick-arrow {
        display: none !important;
    }
    .nAbout .Part5 .slick-dots {
        margin-top: 10px;
    }
    .nAbout .Part5 .PartBox .Scale-img {
        width: 33.333%;
        height: 100px;
        line-height: 100px;
    }
    .nAbout .Part5 .slick-arrow {
        display: none !important;
    }
}

@media(max-width:768px) {
    .nAbout .Part4 .slick-list {
        margin-left: -12px;
    }
    .nAbout .Part4 .item {
        margin-left: 12px;
    }
    .Tvideo .vclose {
        top: 5%;
        right: 5%;
    }
    .nAbout .Part5 .PartBox .Scale-img {
        height: 75px;
        line-height: 75px;
    }
    .nAbout .Part5 .PartBox .Scale-img img {
        max-height: 70%;
    }
}


/* 首页 */


/* .HomeBan{height:100%;}
.HomeBan .slider{height:100%;}
.HomeBan .slider .slick-list{height:100%;}
.HomeBan .slider .slick-list .slick-track{height:100%;} */


/* .HomeBan .item img{height:100%;} */

.HomeBan .slick-arrow {
    font-size: 0;
    z-index: 10;
    position: absolute;
    top: 50%;
    margin-top: -28px;
    width: 57px;
    height: 57px;
    line-height: 57px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: all ease 0.3s;
    color: #000;
}

.HomeBan .slick-arrow:hover {
    color: #fff;
    background-color: #f0154a;
}

.HomeBan .slick-prev:before {
    content: '<';
}

.HomeBan .slick-next:before {
    content: '>';
}

.HomeBan .slick-prev:before,
.slick-next:before {
    font-size: 20px;
    font-family: "宋体";
    font-weight: bold;
}

.HomeBan .slick-prev {
    left: -80px;
}

.HomeBan .slick-next {
    right: -80px;
}

.HomeBan .slick-dots {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    bottom: 30px;
}

.HomeBan .slick-dots li {
    display: inline-block;
    margin: 0 5px;
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.4;
    border-radius: 50%;
}

.HomeBan .slick-dots li.slick-active {
    transform: scale(1.4);
    -webkit-transform: scale(1.4);
    opacity: 1;
}

.HomeBan .slick-dots li button {
    display: none;
}

.HomeBan .pcban:hover .slick-prev {
    left: 5%;
}

.HomeBan .pcban:hover .slick-next {
    right: 5%;
}


@media(max-width:1024px){
    .HomeBan .slick-arrow{width:30px;height:30px;line-height: 30px;margin-top:-15px;}
    .HomeBan .slick-prev {
        left: 10px;
    }
    
    .HomeBan .slick-next {
        right: 10px;
    }
    
}


/* 滚屏导航 */

#menu {
    position: fixed;
    right: 0;
    z-index: 999;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    top: 50%;
}

#menu li {
    list-style: none;
    position: relative;
    text-align: right;
    margin: 5px 0;
}

#menu li a {
    transition: all linear .5s;
    -webkit-transition: all linear .5s;
}

#menu li a span {
    display: none;
}

#menu li a::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transition: all .5s;
    -webkit-transition: all .5s;
}

#menu li.active a::after {
    width: 25px;
    background: rgba(255, 255, 255, 1);
    position: relative;
    top: -5px;
    margin-left: 5px;
}

#menu li.active a span {
    display: inline-block;
    color: #fff;
    font-size: 14px;
}

#menu li:last-child::after {
    display: none;
}

@media (max-width:1200px) {
    #menu {
        display: none;
    }
}

.HomeTit {
    text-align: center;
}

.HomeTit h1 {
    font-size: 46px;
    font-weight: normal;
    color: #333;
}

.HomeTit1 h1 {
    color: #fff;
}

.HomeTit p {
    font-size: 14px;
    color: #333;
    opacity: 0.45;
    margin-top: 10px;
}

.HomeTit1 p {
    color: #fff;
}

.HomeAbout {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.HomeAbout .HomeBox {
    padding: 20% 0;
}

.HomeAbout .HomeBox .HomeAboutTxt {
    color: #fff;
    text-align: center;
    font-size: 34px;
}

.HomeAbout .HomeBox .HomeAboutTxt p {
    margin: 20px 0;
}

.HomeAbout .HomeBox .HomeAboutTxt p b {
    font-size: 50px;
}

.HomeAbout .HomeBox .line {
    display: block;
    width: 1px;
    height: 60px;
    background: #fff;
    margin: 0 auto;
}

.HomeAbout .HomeBox .gpdm {
    width: 420px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: #006be7;
    margin: 30px auto 0;
    font-size: 24px;
    color: #fff;
}

.HomeAbout .HomeBox .gpdm span {
    color: #a7c7f3;
}

.HomePro {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
}

.HomePro .HomeTit {
    transform: translateY(280px);
    -webkit-transform: translateY(280px);
    opacity: 0;
    transition: all 1s 0.1s;
}

.HomePro .HomeBox {
    padding: 8% 0;
}

.HomePro .HomeBox .proBox {
    margin-top: 60px;
    transform: translateX(280px);
    -webkit-transform: translateX(280px);
    opacity: 0;
    transition: all 1s 0.6s;
}

.HomePro .HomeBox .proBox .slick-list {
    margin-left: -27px;
}

.HomePro .HomeBox .proBox .item {
    margin-left: 27px;
    float: left;
    height: 520px;
    position: relative;
}

.HomePro .HomeBox .proBox .item .itemimg {
    background: url(../uploadfiles/image/probg.jpg) no-repeat center center;
    background-size: cover;
    height: 340px;
    line-height: 340px;
    text-align: center;
}

.HomePro .HomeBox .proBox .item .itemimg img {
    display: inline-block;
}

.HomePro .HomeBox .proBox .item .itemtxt {
    background: #fff;
    height: 180px;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.HomePro .HomeBox .proBox .item .itemtxt h1 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 5px;
}

.HomePro .HomeBox .proBox .item .itemtxt p {
    font-size: 14px;
    color: #999;
}

.HomePro .HomeBox .proBox .item .itemtxt .more {
    width: 170px;
    height: 50px;
    line-height: 50px;
    margin: 10px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.3)
}

.HomePro .HomeBox .proBox .item .itemtxt .more span {
    font-size: 14px;
    color: #fff;
    display: none;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.HomePro .HomeBox .proBox .item .itemtxt .more img {
    display: inline-block;
}

.HomePro .HomeBox .proBox .item .itemtxt .more .img2 {
    display: none;
}

.HomePro .HomeBox .proBox .item:hover .itemtxt {
    background: #006be7;
    height: 220px;
}

.HomePro .HomeBox .proBox .item:hover .itemtxt h1 {
    color: #fff;
}

.HomePro .HomeBox .proBox .item:hover .itemtxt p {
    color: #fff;
    opacity: 0.5;
}

.HomePro .HomeBox .proBox .item:hover .itemtxt .more {
    margin: 30px auto 0;
}

.HomePro .HomeBox .proBox .item:hover .itemtxt .more .img1 {
    display: none;
}

.HomePro .HomeBox .proBox .item:hover .itemtxt .more .img2 {
    display: inline-block;
}

.HomePro .HomeBox .proBox .item:hover .itemtxt .more span {
    display: inline-block;
}

.HomePro .HomeBox .proBox .slick-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    color: transparent;
    z-index: 999;
}

.HomePro .HomeBox .proBox .slick-arrow.slick-prev {
    background: url(../uploadfiles/image/iprev.png) no-repeat center center;
    background-size: 100% 100%;
    left: -70px;
}

.HomePro .HomeBox .proBox .slick-arrow.slick-next {
    background: url(../uploadfiles/image/inext.png) no-repeat center center;
    background-size: 100% 100%;
    right: -70px;
}

.HomePro.active .HomeTit,
.HomePro.active .HomeBox .proBox {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    opacity: 1;
}

.HomeSolu {}

.HomeSolu .HomeTit {
    transform: translateY(280px);
    -webkit-transform: translateY(280px);
    opacity: 0;
    transition: all 1s 0.1s;
}

.HomeSolu .HomeBox {
    padding-top: 120px;
}

.HomeSolu .HomeBox .SoluBox {
    margin-top: 30px;
    height: calc(100vh - 160px);
}

.HomeSolu .HomeBox .SoluBox .item {
    width: 50%;
    float: left;
    position: relative;
    height: 100%;
}

.HomeSolu .HomeBox .SoluBox .item .itemImg {
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.HomeSolu .HomeBox .SoluBox .item .itemImg img {
    transition: all .5s;
    -webkit-transition: all .5s;
    width: 100%;
    height: 100%;
    display: none;
}

.HomeSolu .HomeBox .SoluBox .item:nth-child(1) {
    transform: translateX(-280px);
    -webkit-transform: translateX(-280px);
    opacity: 0;
    transition: all 1s 0.3s;
}

.HomeSolu .HomeBox .SoluBox .item:nth-child(2) {
    height: 50%;
    transform: translateX(280px);
    -webkit-transform: translateX(280px);
    opacity: 0;
    transition: all 1s 0.5s;
}

.HomeSolu .HomeBox .SoluBox .item:nth-child(2) .itemImg {
    height: 100%;
}

.HomeSolu .HomeBox .SoluBox .item:nth-child(3) {
    height: 50%;
    transform: translateY(280px);
    -webkit-transform: translateY(280px);
    opacity: 0;
    transition: all 1s 0.7s;
}

.HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemImg {
    height: 100%;
    background-size: 100%;
    background-position: center right;
}

.HomeSolu .HomeBox .SoluBox .item .itemTxt {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.HomeSolu .HomeBox .SoluBox .item .itemTxt:after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 107, 231, 0.3);
    content: "";
    transform: translate(-50%, -50%);
}

.HomeSolu .HomeBox .SoluBox .item .itemTxt .ico {
    position: relative;
    z-index: 1;
}

.HomeSolu .HomeBox .SoluBox .item .itemTxt h1 {
    font-size: 30px;
    font-weight: normal;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.HomeSolu .HomeBox .SoluBox .item .itemTxt .dec {
    line-height: 30px;
    opacity: 0.7;
    text-align: center;
}

.HomeSolu .HomeBox .SoluBox .item .itemTxt .more {
    width: 170px;
    height: 50px;
    line-height: 48px;
    margin: 10px auto 0;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.HomeSolu .HomeBox .SoluBox .item .itemTxt .more span {
    display: none;
}

.HomeSolu .HomeBox .SoluBox .item:hover .itemTxt .more {
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.HomeSolu .HomeBox .SoluBox .item:hover .itemTxt .more span {
    display: inline-block;
}

.HomeSolu .HomeBox .SoluBox .item:hover .itemImg img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.HomeSolu.active .HomeTit,
.HomeSolu.active .HomeBox .SoluBox .item {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    opacity: 1;
}


/* .HomeSolu .HomeBox .SoluBox .item:nth-child(2),
.HomeSolu .HomeBox .SoluBox .item:nth-child(3){height:50%;} */

.HomeSolu .HomeBox .SoluBox .item:nth-child(3) {
    box-sizing: border-box;
}

.HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemImg,
.HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemTxt {
    width: 50%;
    background: #006be7;
}

.HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemTxt {
    position: absolute;
    left: 0;
    top: 0;
}

.HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemImg {
    float: right;
    background-size: 100%;
    background-position: center right;
}

.HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemTxt h1 {
    margin: 20px 0;
}

.HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemTxt .more {
    margin-top: 20px;
}

.HomeFw {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
}


/* .HomeFw .HomeTit{position: absolute;transform: translateX(-50%);-webkit-transform: translateX(-50%);left:50%;top:12%;}
.HomeFw .HomeBox{height:100%;}
.HomeFw .FwBox{height:100%;} */


/* .HomeFw .FwBox .item{width:16.66667%;float:left;text-align: center;height:100vh;background:url(../uploadfiles/image/hbg2.png) no-repeat bottom center;background-size: cover;box-sizing: border-box;position: relative;}
.HomeFw .FwBox .item:nth-child(2n){background:url(../uploadfiles/image/hbg1.png) no-repeat bottom center;background-size: cover;}
.HomeFw .FwBox .item .itemBox{position: absolute;width:100%;text-align: center;bottom:15%;}
.HomeFw .FwBox .item .itemBox .ico{height:100px;line-height: 100px;margin-bottom:30px;}
.HomeFw .FwBox .item .itemBox p{color:#fff;font-size: 20px;}

.HomeFw .FwBox .item:hover{background:url(../uploadfiles/image/hcbg.png) no-repeat bottom center;background-size: cover;} */

.HomeFw .HomeBox {
    padding: 10% 0;
}

.HomeFw .itit {
    transform: translateX(280px);
    -webkit-transform: translateX(280px);
    opacity: 0;
    transition: all 1s 0.1s;
}

.HomeFw .HomeBox .item {
    transform: translateY(280px);
    -webkit-transform: translateY(280px);
    opacity: 0;
    transition: all 1s 0.1s;
}

.HomeFw .HomeBox .item.i1 {
    transition: all 1s 0.25s;
}

.HomeFw .HomeBox .item.i2 {
    transition: all 1s 0.4s;
}

.HomeFw .HomeBox .item.i3 {
    transition: all 1s 0.6s;
}

.HomeFw .HomeBox .item.i4 {
    transition: all 1s 0.75s;
}

.HomeFw .HomeBox .item.i5 {
    transition: all 1s 0.9s;
}

.HomeFw .HomeBox .item.i6 {
    transition: all 1s 1s;
}

.HomeFw .HomeBox .item {
    width: 25%;
    height: 340px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    float: left;
    background: #fff;
    border: 0.5px solid #f7f7f7;
    box-sizing: border-box;
    padding: 00 50px;
    cursor: pointer;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.HomeFw .HomeBox .item:first-child {
    width: 50%;
    text-align: left;
    border: none;
}

.HomeFw .HomeBox .item:first-child .HomeTit {
    text-align: left;
    position: relative;
    z-index: 1;
    width:70%;
}

.HomeFw .HomeBox .item:first-child .HomeTit h1{font-size: 30px;}


.HomeFw .HomeBox .item .ico .img2 {
    display: none;
}

.HomeFw .HomeBox .item>p {
    font-size: 20px;
    margin-top: 20px;
}

.HomeFw .HomeBox .item .dec {
    font-size: 14px;
    color: #cdcdcd;
    line-height: 20px;
    font-weight: lighter;
    margin: 10px 0 50px 0;
}

.HomeFw .HomeBox .item .ico .more {}

.HomeFw .HomeBox .item:hover {
    border: 0.5px solid rgba(0, 107, 231, 0.1);
    box-shadow: 0 10px 16px rgba(0, 107, 231, 0.1);
}

.HomeFw .HomeBox .item:hover .ico .img2 {
    display: inline-block;
}

.HomeFw .HomeBox .item:hover .ico .img1 {
    display: none;
}

.HomeFw .HomeBox .item:hover>p {
    color: #006be7;
}

.HomeFw .HomeBox .item:first-child:hover {
    border: none;
    box-shadow: 0 0 0 #fff;
}

.HomeFw .HomeBox .item:hover {
    transform: translate3d(0, -3px, 0);
    -webkit-transform: translate3d(0, -3px, 0);
}

.HomeFw.active .itit,
.HomeFw.active .HomeBox .item {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    opacity: 1;
}

.HomeNews {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.HomeNews .HomeTit {
    transform: translateY(280px);
    -webkit-transform: translateY(280px);
    opacity: 0;
    transition: all 1s 0.1s;
}

.HomeNews .HomeBox {
    padding: 8% 0;
}

.HomeNews .HomeBox .NewsBox {
    margin-top: 50px;
    margin-left: -2%;
}

.HomeNews .HomeBox .NewsBox .newsList {
    width: 28%;
    float: left;
    margin-left: 2%;
    position: relative;
}

.HomeNews .HomeBox .NewsBox .nlist .itemImg {
    padding-top: 243px;
    overflow: hidden;
}

.HomeNews .HomeBox .NewsBox .nlist .itemImg img {
    transition: all .5s;
    -webkit-transition: all .5s;
}

.HomeNews .HomeBox .NewsBox .nlist .date {
    font-family: oswald;
    text-align: center;
    color: #fff;
    width: 90px;
    height: 90px;
    background: #006be7;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.HomeNews .HomeBox .NewsBox .nlist .date p {
    font-size: 30px;
}

.HomeNews .HomeBox .NewsBox .nlist .date span {
    font-size: 14px;
    opacity: 0.4;
}

.HomeNews .HomeBox .NewsBox .nlist .itemtxt {
    padding: 34px 28px 0 28px;
    background: #fff;
    height: 224px;
}

.HomeNews .HomeBox .NewsBox .nlist .itemtxt .tit {
    height: 60px;
    line-height: 30px;
    font-size: 20px;
    color: #006be7;
    overflow: hidden;
    word-break: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.HomeNews .HomeBox .NewsBox .nlist .itemtxt .p {
    height: 48px;
    line-height: 24px;
    font-size: 14px;
    color: #999999;
    margin: 12px 0 39px;
    overflow: hidden;
    word-break: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.HomeNews .HomeBox .NewsBox .nlist .itemtxt .more {
    width: 41px;
    height: 25px;
    background: url(../images/more1.png) center center no-repeat;
    transition: all 0.3s;
}

.HomeNews .HomeBox .NewsBox .nlist a:hover .itemtxt .more {
    width: 80px;
    height: 25px;
    background: #006be7 url(../images/more01.png) center center no-repeat;
}

.HomeNews .HomeBox .NewsBox .newsList.n1 {
    transform: translateX(280px);
    -webkit-transform: translateX(280px);
    opacity: 0;
    transition: all 1s 0.1s;
}

.HomeNews .HomeBox .NewsBox .newsList.n2 {
    transform: translateX(280px);
    -webkit-transform: translateX(280px);
    opacity: 0;
    transition: all 1s 0.3s;
}

.HomeNews .HomeBox .NewsBox .nBox {
    width: 38%;
    background: #fff;
    height: 500px;
    box-sizing: border-box;
    padding: 30px;
    transform: translateX(-280px);
    -webkit-transform: translateX(-280px);
    opacity: 0;
    transition: all 1s 0.5s;
}

.HomeNews .HomeBox .NewsBox .nBox .item {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    padding-left: 90px;
    padding-right: 15px;
    background: url(../uploadfiles/image/injt.png) no-repeat center right;
    position: relative;
    height: 80px;
    line-height: 80px;
}

.HomeNews .HomeBox .NewsBox .nBox .item .date {
    font-family: oswald;
    height: 80px;
    width: 80px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 15px;
    line-height: 30px;
}

.HomeNews .HomeBox .NewsBox .nBox .item .date p {
    font-size: 40px;
    color: #006be7;
}

.HomeNews .HomeBox .NewsBox .nBox .item .date span {
    font-size: 14px;
    color: #c0c0c0;
}

.HomeNews .HomeBox .NewsBox .nBox .item p {
    font-size: 20px;
}

.HomeNews .HomeBox .NewsBox .nBox .item:last-child {
    border-bottom: none;
}

.HomeNews .HomeBox .NewsBox .nlist:hover .itemImg img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.HomeNews.active .HomeTit,
.HomeNews.active .HomeBox .NewsBox .newsList,
.HomeNews.active .HomeBox .NewsBox .nBox {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    opacity: 1;
}

@media(max-width:1600px) {
    .Top {
        height: 80px;
        line-height: 80px;
    }
    .Top .TopNav {
        line-height: 45px;
    }
    .Top .MainNav ul li .Navpull {
        top: 45px;
    }
    .HomeTit h1 {
        font-size: 30px;
    }
    .HomeAbout .HomeBox {
        padding: 16% 0;
    }
    .HomeAbout .HomeBox .HomeAboutTxt {
        font-size: 25px;
    }
    .HomeAbout .HomeBox .HomeAboutTxt p b {
        font-size: 35px;
    }
    .HomeAbout .HomeBox .line {
        height: 40px;
    }
    .HomeAbout .HomeBox .gpdm {
        width: 350px;
        height: 80px;
        line-height: 80px;
        font-size: 20px;
    }
    .HomePro .HomeBox .proBox {
        margin-top: 30px;
    }
    .HomePro .HomeBox .proBox .item {
        height: 450px;
    }
    .HomePro .HomeBox .proBox .item .itemimg {
        height: 300px;
        line-height: 300px;
    }
    .HomePro .HomeBox .proBox .item .itemtxt {
        height: 150px;
    }
    .HomePro .HomeBox .proBox .item:hover .itemtxt {
        height: 190px;
    }
    .HomePro .HomeBox .proBox .item .itemtxt .more {
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
    .HomePro .HomeBox .proBox .item .itemtxt .more span {
        font-size: 14px;
    }
    .HomePro .HomeBox .proBox .slick-arrow.slick-next {
        right: 10px;
    }
    .HomePro .HomeBox .proBox .slick-arrow.slick-prev {
        left: 10px;
    }
    .HomePro .HomeBox .proBox .item .itemtxt h1 {
        font-size: 16px;
    }
    .HomeSolu .HomeBox .SoluBox .item {
        height: 100%;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemTxt h1 {
        font-size: 25px;
        margin: 20px 0;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemTxt .dec {
        font-size: 14px;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemTxt .more {
        font-size: 14px;
        height: 40px;
        line-height: 40px;
    }
    .HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemTxt .more {
        margin-top: 10px;
    }
    .HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemTxt h1 {
        margin: 15px 0;
    }
    .HomeFw .FwBox .item .itemBox p {
        font-size: 16px;
    }
    .HomeNews .HomeBox .NewsBox {
        margin-top: 30px;
    }
    .HomeNews .HomeBox .NewsBox .nBox .item p {
        font-size: 16px;
    }
}

@media(max-width:1366px) {
    .HomeSolu .HomeBox .SoluBox {
        margin-top: 16px;
        height: calc(100vh - 141px);
    }
    .HomeFw .HomeBox {
        padding: 8% 0;
    }
    .HomeFw .HomeBox .item {
        height: 250px;
    }
    .HomeSolu .HomeBox {
        padding-top: 85px;
    }
    .HomePro .HomeBox .proBox .item .itemtxt h1 {
        line-height: 30px;
        margin-bottom: 0;
    }
}

@media screen and (min-width:1281px) and (max-width:1367px) {
    .HomePro .HomeBox .proBox .item {
        height: 410px;
    }
    .HomePro .HomeBox .proBox .item .itemimg {
        height: 280px;
        line-height: 280px;
    }
    /* .HomePro .HomeBox .proBox .item .itemtxt{height:130px;} */
    .HomeSolu .HomeBox .SoluBox .item {}
    .HomeSolu .HomeBox .SoluBox .item .itemTxt h1 {
        font-size: 20px;
        margin: 10px 0;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemTxt .ico img {
        max-height: 50px;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemTxt .more {
        margin: 15px auto 0;
    }
    .HomeNews .HomeBox .NewsBox .nlist .itemtxt {
        padding: 15px 15px 0 15px;
        height: 150px;
    }
    .HomeNews .HomeBox .NewsBox .nlist .itemtxt .tit {
        height: 46px;
        line-height: 23px;
        font-size: 16px;
    }
    .HomeNews .HomeBox .NewsBox .nlist .itemtxt .p {
        height: 36px;
        line-height: 18px;
        font-size: 12px;
        margin: 8px 0 8px;
    }
    .HomeNews .HomeBox .NewsBox .nlist .itemImg {
        padding-top: 215px;
    }
    .HomeNews .HomeBox .NewsBox .nlist .itemtxt {
        font-size: 16px;
        height: 150px;
    }
    .HomeNews .HomeBox .NewsBox .nBox {
        height: 380px;
    }
    .HomeNews .HomeBox .NewsBox .nBox .item {
        padding: 10px 0;
        height: 60px;
        line-height: 60px;
        padding-left: 70px;
    }
    .HomeNews .HomeBox .NewsBox .nBox .item .date {
        height: 60px;
        width: 60px;
    }
    .HomeNews .HomeBox .NewsBox .nBox .item .date p {
        font-size: 25px;
    }
}

@media(max-width:1200px) {
    .Top {
        height: 60px;
        line-height: 60px;
    }
    .Top .MainNav ul li .Navpull {
        top: 61px;
    }
    .HomeFw .HomeBox {
        padding: 8% 0;
    }
    /* .HomeFw .HomeTit{position: static;transform: translateX(0);-webkit-transform: translateX(0);} */
    /* .HomeFw .FwBox .item .itemBox{position: static;}
	.HomeFw .FwBox{margin-top:30px;}
	.HomeFw .FwBox .item{width:33.33%;padding:30px 20px;box-sizing: border-box;height:100%;}
	.HomeFw .FwBox .item .itemBox .ico{height:70px;line-height: 70px;} */
}

@media(max-width:992px) {
    .HomePro .HomeTit,
    .HomePro .HomeBox .proBox {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        opacity: 1;
    }
    .HomeTit h1 {
        font-size: 18px;
    }
    .HomeSolu .HomeBox {
        padding-top: 25px;
    }
    .HomeAbout .HomeBox .HomeAboutTxt {
        font-size: 16px;
        line-height: 30px;
    }
    .HomeAbout .HomeBox .HomeAboutTxt p b {
        font-size: 20px;
    }
    .HomeAbout .HomeBox .gpdm {
        width: 250px;
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }
    .HomeSolu .HomeBox .SoluBox {
        height: auto;
    }
    .HomeSolu .HomeBox .SoluBox .item {
        width: 33.333%;
    }
    .HomeSolu .HomeTit,
    .HomeSolu .HomeBox .SoluBox .item:nth-child(1),
    .HomeSolu .HomeBox .SoluBox .item:nth-child(2),
    .HomeSolu .HomeBox .SoluBox .item:nth-child(3) {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        opacity: 1;
    }
    .HomeSolu .HomeBox .SoluBox .item:nth-child(2){height:268px;}
    .HomeSolu .HomeBox .SoluBox .item:nth-child(3){height:268px;position: relative;}
    .HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemImg, .HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemTxt{width:100%;background:none;}
    .HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemTxt{position: absolute;width:100%;height:100%;top:0;left:0;z-index:999;}
    .HomeSolu .HomeBox .SoluBox .item {
        height: 268px;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemTxt .ico img {
        height: 40px;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemTxt h1 {
        font-size: 20px;
        margin: 10px 0;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemTxt .dec {
        line-height: 22px;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemTxt .more {
        width: 120px;
        height: 30px;
        line-height: 30px;
        margin-top: 10px;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemTxt .more span {
        font-size: 12px;
    }
    .HomePro .HomeBox .proBox .item:hover .itemtxt {
        background: #fff;
        height: 150px;
    }
    .HomePro .HomeBox .proBox .item:hover .itemtxt h1 {
        color: #333;
    }
    .HomePro .HomeBox .proBox .item:hover .itemtxt p {
        color: #999;
        opacity: 1;
    }
    .HomePro .HomeBox .proBox .item:hover .itemtxt .more {
        margin: 10px auto 0;
    }
    .HomePro .HomeBox .proBox .item:hover .itemtxt .more .img1 {
        display: inline-block;
    }
    .HomePro .HomeBox .proBox .item:hover .itemtxt .more .img2 {
        display: none;
    }
    .HomePro .HomeBox .proBox .item:hover .itemtxt .more span {
        display: none;
    }
    .HomeFw .itit,
    .HomeFw .HomeBox .item {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        opacity: 1;
    }
    .HomeFw .HomeBox .item {
        width: 50%;
        height: 250px;
    }
    .HomeFw .HomeBox .item:first-child {
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
    }
    .HomeFw .HomeBox .item:first-child:after {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.5);
        content: "";
    }
    .HomeFw .HomeBox .item:first-child .HomeTit p {
        opacity: 0.8;
    }
    .HomeFw .HomeBox .item .dec {
        margin: 10px 0 30px 0;
    }
    .HomeFw .HomeBox .item {
        padding: 10px;
    }
    .HomeFw .HomeBox .item .ico img {
        max-height: 30px;
    }
    /* .HomeFw .FwBox .item{width:50%;padding:20px 10px;}
	.HomeFw .FwBox .item .itemBox p{font-size: 14px;}
	.HomeFw .FwBox .item .itemBox .ico{height:60px;line-height: 60px;}
	.HomeFw .FwBox .item .itemBox .ico img{height:55px;} */
    .HomeNews .HomeTit,
    .HomeNews .HomeBox .NewsBox .newsList.n1,
    .HomeNews .HomeBox .NewsBox .newsList.n2,
    .HomeNews .HomeBox .NewsBox .nBox {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        opacity: 1;
    }
    .HomeNews .HomeBox .NewsBox .newsList {
        width: 48%;
    }
    .HomeNews .HomeBox .NewsBox .nlist .itemImg {
        padding-top: 65%;
    }
    .HomeNews .HomeBox .NewsBox .nlist .date {
        width: 60px;
        height: 60px;
    }
    .HomeNews .HomeBox .NewsBox .nlist .date p {
        font-size: 20px;
    }
    .HomeNews .HomeBox .NewsBox .nlist .itemtxt {
        font-size: 14px;
        line-height: 25px;
        padding: 10px 10px 0 10px;
        height: 125px;
    }
    .HomeNews .HomeBox .NewsBox .nlist .itemtxt .tit {
        font-size: 14px;
        height: auto;
        line-height: 20px;
    }
    .HomeNews .HomeBox .NewsBox .nlist .itemtxt .p {
        height: auto;
        margin: 8px 0;
        font-size: 12px;
        line-height: 20px;
    }
    .HomeNews .HomeBox .NewsBox .nBox {
        width: 98%;
        margin-top: 10px;
        height: auto;
        padding: 15px;
    }
    .HomeNews .HomeBox .NewsBox .nBox .item .date {
        height: 60px;
        width: 60px;
    }
    .HomeNews .HomeBox .NewsBox .nBox .item .date p {
        font-size: 20px;
    }
    .HomeNews .HomeBox .NewsBox .nBox .item .date {
        top: 0;
    }
    .HomeNews .HomeBox .NewsBox .nBox .item {
        padding-left: 70px;
        height: 60px;
        line-height: 60px;
        padding-top: 0;
        padding-bottom: 0;
    }
    .HomeNews .HomeBox .NewsBox .nBox .item p {
        font-size: 14px;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemTxt:after {
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translate(0, 0);
    }
}

@media(max-width:768px) {
    .HomePro .HomeBox .proBox {
        margin-top: 15px;
    }
    .HomePro .HomeBox .proBox .slick-list {
        margin-left: 0;
    }
    .HomePro .HomeBox .proBox .item {
        margin-left: 0;
    }
    .HomeSolu .HomeBox .SoluBox {
        margin-top: 20px;
    }
    .HomeSolu .HomeBox .SoluBox .item {
        height: 161px !important;
        margin-top: 1px;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemImg {
        height: 100%;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemTxt .dec {
        display: none;
    }
    .HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemImg,
    .HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemTxt {
        width: 100%;
    }
    .HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemImg {
        float: none;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center right;
    }
    .HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemTxt {
        background: none;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemImg {
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemImg img {
        height: 100%;
        width: 100%;
        display: none;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemTxt h1 {
        font-size: 16px;
    }
    .HomeSolu .HomeBox .SoluBox .item .itemTxt .more {
        margin-top: 0;
    }
    .HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemTxt h1 {
        margin: 10px 0;
    }
    .HomeSolu .HomeBox .SoluBox .item:nth-child(3) .itemTxt .more {
        margin-top: 0;
    }
    .HomeFw .HomeBox .item {
        height: 150px;
        padding: 10px 5px;
    }
    .HomeFw .FwBox .item .itemBox p {
        font-size: 13px;
    }
    .HomeFw .FwBox .item .itemBox .dec {
        font-size: 12px;
        line-height: 18px;
        margin: 5px 0 0;
        color: #444;
        font-weight: normal;
    }
}


/* 加入皖仪 */

.join .Part {
    padding: 60px 0;
    overflow: hidden;
}

.join .Part .Parttit {
    text-align: center;
}

.join .Part .Parttit h1 {
    font-size: 30px;
    color: #000;
    margin-bottom: 15px;
}

.join .Part .Parttit p {
    color: #999999;
    line-height: 30px;
}

.join .Part1 {
    background: url(../uploadfiles/image/jbg1.png) no-repeat top center;
    background-size: cover;
    overflow: hidden;
}

.join .Part1 .Partbox {
    margin-left: -2%;
    margin-top: 30px;
}

.join .Part1 .Partbox .item {
    width: 31.33%;
    margin-left: 2%;
    float: left;
    background: #fff;
    border: 1px solid #dee3ec;
    box-sizing: border-box;
    position: relative;
    padding: 35px;
    margin-bottom: 25px;
}

.join .Part1 .Partbox .item .bgico {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 30px;
}

.join .Part1 .Partbox .item .txt {
    position: relative;
    z-index: 99;
}

.join .Part1 .Partbox .item .txt h1 {
    font-size: 20px;
    font-weight: normal;
    color: #104690;
    margin-bottom: 10px;
}

.join .Part1 .Partbox .item .txt p {
    font-size: 14px;
    color: #999999;
    line-height: 25px;
    height: 125px;
}

.join .Part2 .Partbox {
    margin-left: -1%;
}

.join .Part2 .Partbox .item {
    float: left;
    margin-left: 1%;
    width: 29%;
    margin-bottom: 15px;
}

.join .Part2 .Partbox .item:nth-child(2),
.join .Part2 .Partbox .item:nth-child(4) {
    width: 39%;
}

.join .Part2 .Partbox .item .imgbox {
    padding-top: 300px;
}

.join .Part2 .Partbox .item .Parttit {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.join .Part3 {
    background: #f7f6f7;
}

.join .Part3 .Partbox .item {
    width: 50%;
    float: left;
    text-align: center;
}

.join .Part3 .Partbox .itemt {
    color: #fff;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 300px;
}

.join .Part3 .Partbox .item .imgbox {
    padding-top: 300px;
}

.join .Part3 .Partbox .item:nth-child(1) {
    background: #104690;
}

.join .Part3 .Partbox .item:nth-child(3) {
    background: #109088;
}

.join .Part3 .Partbox .itemt h1 {
    font-size: 26px;
    font-weight: normal;
    margin: 15px 0;
}

.join .Part3 .Partbox .itemt p {
    font-size: 14px;
    line-height: 20px;
    opacity: 0.5;
}

.join .Part3 .Partbox .itemUl {
    background: #fff;
    height: 300px;
}

.join .Part3 .Partbox .item ul {
    padding: 40px 80px;
    margin-left: -3%;
}

.join .Part3 .Partbox .item ul::after {
    content: '';
    display: block;
    clear: both;
}

.join .Part3 .Partbox .item ul li {
    width: 47%;
    float: left;
    margin-bottom: 20px;
    margin-left: 3%;
    height: 100px;
    border: 1px solid #eeeeee;
    line-height: 98px;
    text-align: center;
    box-sizing: border-box;
}

.join .Part4 {
    position: relative;
}

.join .Part4 .imgbox {
    padding-top: 400px;
}

.join .Part4 .txt {
    width: 90%;
    max-width: 620px;
    box-sizing: border-box;
    padding: 45px 100px;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    height: 100%;
    top: 0;
    left: 34%;
    color: #fff;
}

.join .Part4 .txt .txttel {
    padding-left: 80px;
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.join .Part4 .txt .txttel span {
    position: absolute;
    left: 0;
    top: 8px;
}

.join .Part4 .txt .txttel .telbox {
    font-family: oswald;
    font-size: 46px;
    line-height: 50px;
}

.join .Part4 .txt .txtcon {
    opacity: 0.7;
    line-height: 30px;
}

.join .Part5 {
    background: #f3f5f7;
}

.join .Part5 .jobnav {
    text-align: center;
    margin: 30px 0;
}

.join .Part5 .jobnav ul li {
    display: inline-block;
    margin: 0 20px;
    padding-bottom: 10px;
    position: relative;
    font-size: 20px;
}

.join .Part5 .jobnav ul li::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #104690;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: rotateY(90deg);
    -webkit-transform: rotateY(90deg);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.join .Part5 .jobnav ul li.on::after {
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
}

.join .Part5 .jobnav ul li:hover::after {
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
}

.join .Part5 .jobnav ul li.on a {
    color: #104690;
}

.join .Part5 .jobnav ul li:hover a {
    color: #104690;
}

.HrList {
    margin-bottom: 4%;
    color: #494949;
}

.HrList .item {
    border-bottom: 1px solid #e6e6e6;
}

.HrList .item1 {
    background: #104690;
}

.HrList .item td {
    height: 60px;
    font-size: 16px;
    color: #494949;
    width: 16.6667%;
    text-align: center;
}

.HrList .item1 td {
    font-size: 16px;
    color: #fff;
}

.HrList .item td a {
    color: #4c4c4c;
}

.HrList .item1 td a {
    color: #fff;
}

.HrList .item td.hrw6 a {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url(../uploadfiles/image/jia.png) no-repeat center center;
}

.HrList .item.current td.hrw6 a {
    background: url(../uploadfiles/image/jian.png) no-repeat center center;
}

.HrList .stit {
    font-weight: bold;
    font-size: 16px;
    color: #000;
}

.HrList .stit1 {
    padding-top: 20px;
}

.HrList .stit i {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 19px;
    border-left: 2px solid #595959;
}

.HrList .item .txtCont {
    font-size: 14px;
    border-top: 1px solid #e6e6e6;
    position: relative;
    display: none;
    line-height: 30px;
    padding: 30px 5% 38px;
    color: #666666;
    background: #fff;
}

.HrList .item .txtCont .items {
    display: none;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.HrList .item .txtCont .items dd span {
    color: #4c4c4c;
}

.HrList .item .txtCont .applybtn {
    padding: 20px 0 0 9px;
    margin-top: 35px;
    text-align: right;
}

.HrList .item .txtCont a.apply {
    background: #e46c0a;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    width: 150px;
    color: #fff;
    line-height: 50px;
    border-radius: 50px;
}

.HrList .item .txtCont a:hover.apply {
    background: #e46c0a;
}

.HrList .item .apply {
    margin-top: 30px;
}

.HrList .item .apply a {
    display: inline-block;
    width: 150px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #104690;
    font-size: 14px;
    color: #fff;
}

.HrList .item.on .jobtitle {
    background: #f1f1f1;
}

.HrList .item:hover .jobtitle {
    background: #f1f1f1;
}

.HrList .item1:hover .jobtitle {
    background: #104690;
}

@media(max-width:1400px) {
    .join .Part1 .Partbox .item {
        padding: 25px;
    }
    .join .Part1 .Partbox .item .txt h1 {
        font-size: 18px;
    }
}

@media(max-width:992px) {
    .join .Part {
        padding: 20px 0;
    }
    .join .Part .Parttit h1 {
        font-size: 22px;
    }
    .join .Part1 .Partbox .item {
        width: 48%;
        padding: 15px;
    }
}

@media(max-width:768px) {
    .join .Part1 .Partbox .item {
        width: 98%;
        margin-bottom: 10px;
    }
    .join .Part1 .Partbox .item .txt p {
        line-height: 22px;
    }
    .join .Part2 .Partbox .item {
        width: 99%;
    }
    .join .Part2 .Partbox .item:nth-child(2),
    .join .Part2 .Partbox .item:nth-child(4) {
        width: 99%;
    }
    .join .Part2 .Partbox .item .imgbox {
        padding-top: 60%;
    }
    .join .Part2 .Partbox .item .Parttit {
        height: 180px;
    }
    .join .Part2 .Partbox {
        padding-top: 180px;
        position: relative;
    }
    .join .Part2 .Partbox .item:nth-child(2) {
        position: absolute;
        top: 0;
        left: 0;
    }
    .join .Part3 .Partbox .item {
        width: 100%;
    }
    .join .Part3 .Partbox .itemt {
        width: 50%;
        height: 198px;
        padding: 20px 10px;
        box-sizing: border-box;
    }
    .join .Part3 .Partbox .item:nth-child(2) {
        display: none;
    }
    .join .Part3 .Partbox .itemt h1 {
        font-size: 18px;
    }
    .join .Part3 .Partbox .itemt p {
        font-size: 12px;
    }
    .join .Part3 .Partbox .itemUl {
        height: auto;
    }
    .join .Part3 .Partbox .item ul {
        padding: 15px;
    }
    .join .Part3 .Partbox .item ul li {
        height: 80px;
        line-height: 78px;
        margin-bottom: 10px;
    }
    .join .Part3 .Partbox .item ul li img {
        max-width: 80%;
    }
    .join .Part3 .Partbox .item .imgbox {
        padding-top: 50%;
    }
    .join .Part4 .txt {
        padding: 20px;
        left: 5%;
    }
    .join .Part4 .txt .txttel {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .join .Part4 .txt .txttel .telbox {
        font-size: 25px;
        line-height: 30px;
    }
    .join .Part4 .txt .txttel span {
        top: 5px;
    }
    .join .Part4 .imgbox {
        padding-top: 60%;
    }
    .join .Part5 .jobnav {
        margin: 15px 0;
    }
    .join .Part5 .jobnav ul li {
        font-size: 16px;
    }
    .HrList .item td.hrw1 {
        width: 25%;
    }
    .HrList .item td.hrw2 {
        width: 20%;
    }
    .HrList .item td.hrw3,
    .HrList .item td.hrw5 {
        display: none;
    }
    .HrList .item td {
        font-size: 14px;
        height: 50px;
    }
    .HrList .item .txtCont {
        padding: 15px;
        line-height: 25px;
    }
    .HrList .item .apply a {
        width: 120px;
        height: 35px;
        line-height: 35px;
    }
}


/* 招聘表单 */

.Jobform {
    padding: 60px 0;
}

.Jobform .Jobtit h1 {
    font-size: 30px;
    color: #000;
    text-align: center;
}

.Jobform .JobBox {
    margin-top: 30px;
    padding: 70px 10%;
    background: #f7f7f7;
}

.Jobform .JobBox .formlist {
    margin-left: -5%;
}

.Jobform .JobBox .formlist::after {
    content: '';
    display: block;
    clear: both;
}

.Jobform .JobBox .formlist .inputbox {
    float: left;
    width: 45%;
    margin-left: 5%;
    position: relative;
    margin-bottom: 20px;
    height: 40px;
    line-height: 40px;
    padding-left: 120px;
    box-sizing: border-box;
}

.Jobform .JobBox .formlist .inputbox span {
    width: 120px;
    text-align: right;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
}

.Jobform .JobBox .formlist .inputbox span i {
    color: #d61e1e;
}

.Jobform .JobBox .formlist .inputbox input {
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 0 10px;
    box-sizing: border-box;
}

.Jobform .JobBox .formlist .inputbox select {
    width: 100%;
    height: 100%;
    background: url(../uploadfiles/image/select.png) no-repeat center right 10px #fff;
    border: none;
}

.Jobform .JobBox .formlist1 {
    position: relative;
    padding-left: 120px;
    margin-bottom: 20px;
    height: 40px;
    line-height: 40px;
}

.Jobform .JobBox .formlist1 span {
    width: 120px;
    text-align: right;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
}

.Jobform .JobBox .formlist1 span i {
    color: #d61e1e;
}

.Jobform .JobBox .formlist1 .upload {
    width: 100%;
    height: 100%;
    background: #fff;
    position: relative;
}

.Jobform .JobBox .formlist1 .upload img {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -9.5px;
}

.Jobform .JobBox .formlist1 .upload input {
    width: 19px;
    height: 19px;
    position: absolute;
    top: 50%;
    margin-top: -9.5px;
    right: 10px;
    opacity: 0;
}

.Jobform .JobBox .formtext {
    position: relative;
    padding-left: 120px;
    margin-bottom: 20px;
}

.Jobform .JobBox .formtext span {
    width: 120px;
    text-align: right;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
}

.Jobform .JobBox .formtext span i {
    color: #d61e1e;
}

.Jobform .JobBox .formtext textarea {
    height: 200px;
    width: 100%;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
}

.Jobform .JobBox .formBtn {
    text-align: center;
    margin-top: 50px;
}

.Jobform .JobBox .formBtn button {
    width: 120px;
    height: 40px;
    margin: 0 5px;
    color: #fff;
    background: #104690;
}

.Jobform .JobBox .formBtn button.reset {
    background: #7e7f80;
}

@media(max-width:992px) {
    .Jobform {
        padding: 20px 0;
    }
    .Jobform .Jobtit h1 {
        font-size: 22px;
    }
    .Jobform .JobBox {
        margin-top: 20px;
        padding: 30px;
    }
}

@media(max-width:768px) {
    .Jobform .JobBox {
        padding: 20px;
    }
    .Jobform .JobBox .formlist .inputbox {
        width: 95%;
        padding-left: 85px;
        margin-bottom: 10px;
    }
    .Jobform .JobBox .formlist .inputbox span {
        width: 85px;
    }
    .Jobform .JobBox .formlist1 {
        padding-left: 85px;
        margin-bottom: 10px;
    }
    .Jobform .JobBox .formlist1 span {
        width: 85px;
    }
    .Jobform .JobBox .formtext {
        padding-left: 85px;
        margin-bottom: 10px;
    }
    .Jobform .JobBox .formtext span {
        width: 85px;
    }
    .Jobform .JobBox .formBtn {
        margin: 30px 0;
    }
}


/* 服务体系 */

.Fwtx {}

.Fwtx .Part {
    padding: 60px 0;
}

.Fwtx .Part .Parttit {
    text-align: center;
}

.Fwtx .Part .Parttit h1 {
    font-size: 30px;
    color: #000;
}

.Fwtx .Part1 {
    background: #fbfbfb;
}

.Fwtx .Part1 .Parttit {
    display: none;
}

.Fwtx .Part1 .Partbox {
    background: url(../uploadfiles/image/center.png) no-repeat top 38% center;
    position: relative;
    overflow: hidden;
}

.Fwtx .Part1 .Partbox .PartCon {
    margin-left: -10%;
}

.Fwtx .Part1 .item {
    width: 40%;
    margin-left: 10%;
    float: left;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 30px;
}

.Fwtx .Part1 .item .ico {
    width: 200px;
    height: 200px;
    box-sizing: border-box;
    border-radius: 50%;
    border: 10px solid #104690;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 115px;
    right: 20px;
    background: #fff;
}

.Fwtx .Part1 .item .ico .box {
    position: absolute;
    width: 212px;
    height: 212px;
    position: absolute;
    top: 50%;
    left: 50%;
    animation: circleRoate infinite linear 8s;
    margin-top: -106px;
    margin-left: -106px;
}

.Fwtx .Part1 .item .ico p {
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
}

.Fwtx .Part1 .item .txt {
    width: 55%;
    max-width: 330px;
    border: 1px solid #d8e0eb;
    background: #fff;
    box-sizing: border-box;
    padding: 40px;
    position: relative;
    z-index: 99
}

.Fwtx .Part1 .item .txt .txtbox {
    text-align: right;
}

.Fwtx .Part1 .item .txt .txtbox h1 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.Fwtx .Part1 .item .txt .txtbox ul li {
    color: #888888;
    line-height: 25px;
    font-size: 14px;
    position: relative;
    padding-right: 10px;
}

.Fwtx .Part1 .item .txt .txtbox ul li::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: #2e80ba;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 10px;
}

.Fwtx .Part1 .item .txt .txtbox:nth-child(2) {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #f6f6f6;
}

.Fwtx .Part1 .item .ico .box::before {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    background: #104690;
    border-radius: 50%;
    border: 5px solid #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: -10px;
}

.Fwtx .Part1 .item .ico::after {
    display: block;
    content: '';
    width: 60px;
    height: 2px;
    background: #104690;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: -80px;
    z-index: 0;
}

/* .Fwtx .Part1 .item:nth-child(2) {
    height: 541px;
} */

.Fwtx .Part1 .item:nth-child(2n) .txt {
    float: right;
}

.Fwtx .Part1 .item:nth-child(2n) .txt .txtbox {
    text-align: left;
}

.Fwtx .Part1 .item:nth-child(2n) .txt .txtbox ul li {
    padding-right: 0;
    padding-left: 10px;
}

.Fwtx .Part1 .item:nth-child(2n) .txt .txtbox ul li::before {
    right: 0;
    left: 0;
}

.Fwtx .Part1 .item:nth-child(2n) .ico {
    right: 0;
    left: 20px;
}

.Fwtx .Part1 .item:nth-child(2n) .ico .box::before {
    left: auto;
    right: -10px;
}

.Fwtx .Part1 .item:nth-child(2n) .ico::after {
    left: auto;
    right: -80px;
}

.Fwtx .Part1 .item:nth-child(2) .ico {
    border: 10px solid #2e80ba;
}

.Fwtx .Part1 .item:nth-child(2) .ico .box::before {
    background: #2e80ba;
}

.Fwtx .Part1 .item:nth-child(2) .ico::after {
    background: #2e80ba;
}

.Fwtx .Part1 .item:nth-child(3) .ico {
    border: 10px solid #119089;
}

.Fwtx .Part1 .item:nth-child(3) .ico .box::before {
    background: #119089;
}

.Fwtx .Part1 .item:nth-child(3) .ico::after {
    background: #119089;
}

.Fwtx .Part1 .item:nth-child(4) .ico {
    border: 10px solid #6589ba;
}

.Fwtx .Part1 .item:nth-child(4) .ico .box::before {
    background: #6589ba;
}

.Fwtx .Part1 .item:nth-child(5) .ico::after {
    background: #6589ba;
}

.Fwtx .Part1 .item:nth-child(3) .ico,
.Fwtx .Part1 .item:nth-child(4) .ico {
    top: -30px;
}

@keyframes circleRoate {
    from {
        transform: rotate(0deg) infinite;
    }
    to {
        transform: rotate(360deg);
    }
}

.Fwtx .Part2 {}

.Fwtx .Part2 .Partbox {
    margin-left: -2%;
}

.Fwtx .Part2 .Partbox .item {
    width: 48%;
    float: left;
    margin-left: 2%;
    height: 220px;
    position: relative;
    box-sizing: border-box;
}

.Fwtx .Part2 .Partbox .item1 {
    background: #f2f5fb;
    padding-left: 190px;
}

.Fwtx .Part2 .Partbox .item1 .ico {
    height: 100%;
    width: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: 1px solid #e6e9ef;
    position: absolute;
    top: 0;
    left: 0;
}

.Fwtx .Part2 .Partbox .item1 .ico p {
    font-size: 24px;
    color: #333333;
    margin-top: 10px;
    text-align: center;
}

.Fwtx .Part2 .Partbox .item1 .txt {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 20px 10px 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.Fwtx .Part2 .Partbox .item1 .txt ul li {
    line-height: 25px;
    color: #666666;
    position: relative;
    padding-left: 20px;
    font-size: 15px;
}

.Fwtx .Part2 .Partbox .item1 .txt ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #6286b7;
    box-sizing: border-box;
    position: absolute;
    top: 10px;
    left: 0;
}

.Fwtx .Part2 .Partbox .item2 {
    background: url(../uploadfiles/image/telbg.png) no-repeat top center;
    background-size: cover;
    padding: 10px 20px 10px 130px;
}

.Fwtx .Part2 .Partbox .item2 .ico {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.Fwtx .Part2 .Partbox .item2 .txt {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.Fwtx .Part2 .Partbox .item2 .txt span {
    color: #fff;
    opacity: 0.6;
}

.Fwtx .Part2 .Partbox .item2 .txt p {
    font-size: 40px;
    font-family: oswald;
    color: #fff;
}

.Fwtx .Part3 .Partbox {
    margin-top: 30px;
    position: relative;
}

.Fwtx .Part3 .Partbox .item {
    float: left;
    width: 22.5%;
    position: relative;
}

.Fwtx .Part3 .Partbox .item:nth-child(3) {
    width: 32.5%;
}

.Fwtx .Part3 .Partbox .item .imgbox {
    padding-top: 300px;
}

.Fwtx .Part3 .Partbox .item:first-child .imgbox,
.Fwtx .Part3 .Partbox .item:nth-child(3) .imgbox {
    padding-top: 600px;
}

.Fwtx .Part3 .Partbox .item .txt {
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    transition: all .5s;
    -webkit-transition: all .5s;
    background: rgba(16, 70, 144, 0.8);
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 10%;
    box-sizing: border-box;
}

.Fwtx .Part3 .Partbox .item .txt h1 {
    font-size: 20px;
    margin-bottom: 20px;
}

.Fwtx .Part3 .Partbox .item .txt p {
    font-size: 14px;
    line-height: 25px;
    opacity: 0.5;
}

.Fwtx .Part3 .Partbox .item:nth-child(5),
.Fwtx .Part3 .Partbox .item:nth-child(6) {
    position: absolute;
    bottom: 0;
}

.Fwtx .Part3 .Partbox .item:nth-child(5) {
    left: 22.5%;
}

.Fwtx .Part3 .Partbox .item:nth-child(6) {
    right: 0;
}

.Fwtx .Part3 .Partbox .item:hover .txt {
    height: 100%;
    color: #fff;
}

@media(max-width:1366px) {
    .Fwtx .Part1 .item .ico {
        width: 160px;
        height: 160px;
    }
    .Fwtx .Part1 .item .ico p {
        font-size: 16px;
    }
    .Fwtx .Part1 .item .ico {
        top: 150px;
    }
    .Fwtx .Part1 .item:nth-child(3) .ico,
    .Fwtx .Part1 .item:nth-child(4) .ico {
        top: -5px;
    }
}

@media(max-width:992px) {
    .Fwtx .Part {
        padding: 20px 0;
    }
    .Fwtx .Part .Parttit h1 {
        font-size: 22px;
    }
    .Fwtx .Part1 .Partbox {
        background: none;
    }
    .Fwtx .Part1 .Parttit {
        display: block;
        margin-bottom: 20px;
    }
    .Fwtx .Part1 .item .ico {
        position: static;
        margin: 0 auto;
        z-index: 99;
        left: auto;
        top: auto;
    }
    .Fwtx .Part1 .item .ico::after,
    .Fwtx .Part1 .item .ico::before {
        display: none;
    }
    .Fwtx .Part1 .item .txt {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        margin-top: -30px;
        z-index: 0;
        position: static;
    }
    .Fwtx .Part1 .item {
        width: 90%;
    }
    .Fwtx .Part1 .item .txt .txtbox {
        text-align: left;
    }
    .Fwtx .Part1 .item .txt .txtbox ul li {
        padding-left: 10px;
        padding-right: 0;
    }
    .Fwtx .Part1 .item .txt .txtbox ul li::before {
        right: auto;
        left: 0;
    }
    .Fwtx .Part1 .item:nth-child(2) {
        height: auto;
    }
    .Fwtx .Part1 .item .ico .box {
        display: none;
    }
    .Fwtx .Part2 .Partbox .item {
        width: 98%;
        height: 160px;
    }
    .Fwtx .Part2 .Partbox .item1 {
        padding-left: 120px;
    }
    .Fwtx .Part2 .Partbox .item1 .ico {
        width: 120px;
    }
    .Fwtx .Part2 .Partbox .item1 .txt {
        padding-left: 20px;
    }
    .Fwtx .Part2 .Partbox .item1 .ico p {
        font-size: 18px;
    }
    .Fwtx .Part2 .Partbox .item2 {
        padding-left: 100px;
    }
    .Fwtx .Part2 .Partbox .item2 .ico {
        left: 30px;
    }
    .Fwtx .Part2 .Partbox .item2 .txt p {
        font-size: 30px;
    }
    .Fwtx .Part3 .Partbox {
        margin-top: 20px;
    }
    .Fwtx .Part3 .Partbox .item {
        width: 50%;
    }
    .Fwtx .Part3 .Partbox .item .imgbox {
        padding-top: 200px;
    }
    .Fwtx .Part3 .Partbox .item:first-child {
        width: 50%;
    }
    .Fwtx .Part3 .Partbox .item:first-child .imgbox,
    .Fwtx .Part3 .Partbox .item:nth-child(3) .imgbox {
        padding-top: 200px;
    }
    .Fwtx .Part3 .Partbox .item:nth-child(3) {
        width: 50%;
    }
    .Fwtx .Part3 .Partbox .item:nth-child(5),
    .Fwtx .Part3 .Partbox .item:nth-child(6) {
        position: relative;
        left: auto;
        top: auto;
    }
    .Fwtx .Part3 .Partbox .item .txt {
        padding: 0 10px;
    }
    .Fwtx .Part3 .Partbox .item .txt h1 {
        margin-bottom: 5px;
        font-size: 16px;
    }
    .Fwtx .Part3 .Partbox .item .txt p {
        font-size: 13px;
        line-height: 20px;
    }
}



@media(max-width:992px){
    body{padding-top:81px !important;}
    .Top .TopBox .fixTop{width:100%;}
    .Top .TopBox .fixTop .gpdm {width:90%;position: absolute;left:0;top:0;line-height: 15px;}
    .Top{height:80px;line-height: 110px;}
    .Top .search{margin-top:33px;}
    .Top .m-btn{margin-top:40px;}

    .nAbout .Part2 .PartBox .item .itemTxt p{line-height: 15px;font-size: 13px;}

    .nNav{height:auto;}
    .nNav ul li{font-size: 13px;line-height: 15px;height:65px;}
    .nProduct .nProBox .item .protxt h1{font-size: 13px;line-height: 15px;}
    .nProduct .nProBox .item .protxt{height:120px;}
    .nProduct .nProBox .item{height:270px;}

    .Solution .SolutionBox .mobileSolutionNav .item{height:80px;font-size: 14px;line-height: 20px;display:flex;justify-content:center;align-items:center;flex-direction: column;}

    .Fwtx .Part2 .Partbox .item1 .txt ul li{line-height: 17px;font-size: 13px;}
    .Fwtx .Part2 .Partbox .item1 .txt ul li::before{top:6px;}

    .nAbout .Part3 .PartBox .slider-for .item .itemTxt .txt{font-size: 14px;line-height: 20px;}

    .HomeFw .HomeBox .item:first-child .HomeTit{width:90%;}
    .HomeFw .HomeBox .item:first-child .HomeTit h1{font-size: 18px;line-height: 22px;}
    .HomeFw .HomeBox .item:first-child .HomeTit p{font-size: 12px;line-height: 15px;}
}
.contact-zb {
    width: 100%;
    background: url(../images/lx-bg.png) repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.contact-left {
    width: 50%;float: left;
}
.contact-left img{
    width: 100%;
}
.exhs-h1 {
    height: 80px;
}

.contact-zb {
    width: 100%;
    background: url(../images/lx-bg.png) repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.con-bg {
    background: url(../images/lx-bg.png) repeat !important;
    box-shadow: 0px 3px 7px #e0e0e0;
}

.ifont36 {
    font-size: 36px;
}

.c-pany {
    border-bottom: 1px solid #e1e1e0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    overflow: hidden;/*è¶…å‡ºéƒ¨åˆ†éšè—*/
    white-space: nowrap;/*ä¸æ¢è¡Œ*/
    text-overflow:ellipsis;/*è¶…å‡ºéƒ¨åˆ†æ–‡å­—ä»¥...æ˜¾ç¤º*/
    font-size: 22px;
}

.c-add {
    margin-top: 5px;
    margin-bottom: 5px;
    float: left;
    width: 100%;
}

.c-code {
    margin-top: 5px;
    margin-bottom: 5px;
    float: left;
    width: 100%;
}

.c-tel {
    margin-top: 5px;
    margin-bottom: 5px;
    float: left;
    width: 100%;
}

.c-email {
    margin-top: 5px;
    margin-bottom: 5px;
    float: left;
    width: 100%;
}

.c-web {
    margin-top: 5px;
    margin-bottom: 5px;
    float: left;
    width: 100%;
}

.c-web p {
    word-break: break-all;
}

.c-email p {
    word-break: break-all;
}

.c-tl {
    width: auto;
}
.c-flx{
    display: flex;
    display: -webkit-box;
 /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box;
 /* Firefox 17- */
    display: -webkit-flex;
 /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -moz-flex;
 /* Firefox 18+ */
    display: -ms-flexbox;
 /* IE 10 */
    justify-content: left;
    align-items: center;
    float:left;
    width: auto;
}
.c-flx img{
    margin-right: 5px;
}
.c-tr {
    width: calc(100% - 120px);
    word-break: break-all;
    float: left;
    font-size: 14px;
}
.c-tr a:hover{
    color:#104690;
}
.contact-right {
    display: -webkit-box;/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box;/* Firefox 17- */
    display: -webkit-flex;/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -moz-flex;/* Firefox 18+ */
    display: -ms-flexbox;/* IE 10 */
    justify-content: space-between;
    vertical-align: middle;
    align-items: center;
    width: 50%;
    padding:0 50px;
    box-sizing: border-box;
    float: right;
}
.ifont-36 {
    font-size: 36px;
}
.contact-zb {
    width: 100%;
    background: url(../images/lx-bg.png) repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
margin-bottom: 25px;
margin-top: 40px;
}

.con-bg {
    background: url(../images/lx-bg.png) repeat !important;
    box-shadow: 0px 3px 7px #e0e0e0;
}
.vemap {
    border: 1px solid #104690;
    border-radius: 1000px;
    color: #104690;
    padding: 5px 15px;
    text-align: center;
    width: 150px;
    margin-top: 15px;
    display: -webkit-box;/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box;/* Firefox 17- */
    display: -webkit-flex;/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -moz-flex;/* Firefox 18+ */
    display: -ms-flexbox;/* IE 10 */
    cursor: pointer;
    align-items: center;
    justify-content: center;
    display: flex;
    justify-content: center;
    float: left;
}

.vemap img {
    display: inline-block;
    padding: 0px 5px 0 0;
}


/* 商品列表 */
.product_list {
    width: 100%;
    float: left;
}
.med-pad{
    width: 100%;
    border:1px solid #f8f8f8;
    background: #ffffff;
    box-sizing: border-box;
}
.med-pad:hover{
    box-shadow: 0px 3px 7px #e0e0e0;
    border: 1px solid #104690;
    box-sizing: border-box;
    width: 100%;
}
.product_list_card {
    width: 33.3%;
    float: left;
    padding:15px;
    box-sizing: border-box;
}
.contpad{
    border: 1px solid transparent;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    width:100%;
    border-radius:10px;
    box-shadow: 0px 3px 7px #e0e0e0;
}
.contpad {
    padding: 30px;
    box-sizing: border-box;
    background: url(../images/lx-bg.png) repeat;
    float: left;
    min-height: 300px;
}
.contpad:hover {
    position: relative;
    border: 1px solid rgba(250,116,45,1);
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #104690;
    box-sizing: border-box;
    box-shadow: 1px 3px 16px 2px #dedede;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.c-pad-list{
     width: 100%;     height: 150px;

}
@media(max-width:768px){
    .product_list_card{
        width:100%;
        padding-bottom: 15px;
    }
    .contpad{
        min-height: 216px;
    }
        .contact-left{
        width: 100%;
    }
    .contact-left img{
        width: 100%;
    }
    .contact-right{
        width: 100%;
        padding:15px;
        box-sizing: border-box;
    }
        .contact-zb{
        display: block;
        margin-top: 15px;
    }
    }

