@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'webfont';
    src: url('../font/webfont.eot');
    /* IE9*/
    src: url('../font/webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../font/webfont.woff') format('woff'), /* chrome、firefox */
    url('../font/webfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
    url('../font/webfont.svg#webfont') format('svg');
    /* iOS 4.1- */
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    color: #333333;
    background: #ffffff;
    font-weight: 300;
    overflow-x: hidden;
    transition: all .4s;
    -webkit-transition: all .4s;
    font-family: "Microsoft YaHei", serif;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

ul, li, ol, dl, dt, dd, p, h1, h2, h3, h4, h5, h6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

input, textarea {
    outline: none;
}

::-webkit-input-placeholder {
    color: #bdbdbd;
}

::-moz-placeholder {
    color: #bdbdbd;
}

:-ms-input-placeholder {
    color: #bdbdbd;
}

a {
    display: block;
    text-decoration: none;
    color: #ffffff;
}

a:hover {
    color: #0084FF;
}

.clearfix:after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both
}

.clearfix {
    zoom: 1;
}

.clear {
    clear: both
}

/*图片放大*/

.imgZoom img {
    transition: all .4s;
    -webkit-transition: all .4s;
}

.imgZoom:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

/*图片旋转*/

.imgRotate img {
    -webkit-transition: -webkit-transform 2s ease-out;
    -moz-transition: -moz-transform 2s ease-out;
    -o-transition: -o-transform 2s ease-out;
    -ms-transition: -ms-transform 2s ease-out;
}

.imgRotate img:hover {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
}

/*按钮鼠标经过变暗*/

.wlp-button:hover {
    filter: alpha(opacity=90);
    background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1)) !important;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1)) !important;
}

/*鼠标经过有阴影*/

.wlp-shadow:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3) !important;
}

/*鼠标经过上浮并加阴影*/

.wlp-flow-shadow {
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

.wlp-flow-shadow:hover {
    transform: translate3d(0, -8px, 0);
    -webkit-transform: translate3d(0, -8px, 0);
    -webkit-box-shadow: 0 0 10px #e9e9e9;
    box-shadow: 0 0 10px #e9e9e9;
}

/*图片经过遮罩*/

.wlp-filter:hover img {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -webkit-opacity: 0.7;
    opacity: 0.7;
}

.center {
    text-align: center;
}

/*header*/

.header {
    height: 110px;
    border-bottom: 1px solid white;
    position: fixed;
    z-index: 999;
    width: 100%;
}

.active {
    background-color: #313740;
}

.w1400 {
    width: 1400px;
    margin: 0 auto;
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.logo {
    padding-top: 37px;
    width: 377px;
    height: 55px;
    float: left;
    margin-right: 170px;
}

.logo img {
    content: url(../images/logo.png);
    width: 100%;
    height: 55px;
}

.nav {
    padding-top: 60px;
    float: left;
}

.nav ul li {
    text-align: center;
    width: 120px;
    float: left;
}

.nav ul li a {
    font-size: 18px;
    position: relative;
}

.nav ul li a.focus {
    color: #0084FF;
}

.nav ul li a.focus:after {
    content: "";
    position: absolute;
    width: 70px;
    height: 4px;
    background: #0084FF;
    bottom: -26px;
    left: 25px;
}

.switchover {
    padding-top: 60px;
    float: right;
    width: 90px;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    color: white;
}

.switchover i {
    vertical-align: middle;
}

.search {
    float: left;
}

.language {
    float: right;
}

.menu {
    position: absolute;
    display: none;
}

.banner {
    width: 100%;
    height: 895px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    align-items: center;
    text-align: center;
    width: 100%;
}

.banner-content {
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    position: absolute;
    color: white;
    text-align: center;
    z-index: 999;
}

.banner-content-title {
    font-size: 104px;
    font-weight: bold;
    letter-spacing: 20px;
    margin-bottom: 30px;
}

.banner-content-text {
    letter-spacing: 8px;
    margin-bottom: 50px;
}

.banner-content-link {
    border: 1px solid white;
    width: 210px;
    line-height: 40px;
    margin: 0 auto;
    letter-spacing: 2px;
    border-radius: 20px;
    cursor: pointer;
}

/*首页标题*/

.iTitle {
    position: relative;
    height: 120px;
}

.iTitle h2 {
    font-size: 48px;
    color: #0084FF;
    font-weight: 900;
}

.iTitle h2 span {
    position: relative;
    line-height: 68px;
}

.iTitle h2 span:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: #0084FF;
    bottom: -10px;
    left: 0;
}

.iTitle p {
    position: relative;
    margin-top: 15px;
    color: #A4A4A4;
}

.iTitle>span {
    color: #E0E0E0;
    font-size: 145px;
    font-weight: bold;
    position: absolute;
    transform: translateX(-50%);
    top: -45px;
    z-index: 0;
}

.iPro-advantage .iTitle h2 {
    color: white;
    position: relative;
}

.iPro-advantage .iTitle p {
    color: white;
}

.iPro-advantage .iTitle>span {
    color: #1873B6;
    left: 100px;
}

.iPro-advantage>p {
    color: white;
    line-height: 27px;
}

.iabout .iTitle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 118px;
}

.iabout .iTitle h2, .iabout .iTitle p {
    color: white;
}

.iabout .iTitle>span {
    color: #3873A5;
}

.iPro {
    padding-top: 80px;
}

.iPro-tab-img {
    background: url(../images/ipro1.png) no-repeat center;
    background-size: cover;
    width: 138px;
    height: 160px;
    position: relative;
}

.iPro-tab-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.iPro-tab {
    margin-top: 60px;
 
}

.iPro-tab ul {
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.iPro-tab ul li {
    float: left;
    margin-right: 38px;
    text-align: center;
}

.iPro-tab ul li:last-child {
    margin-right: 0;
}

.iPro-tab ul li p {
    margin-top: 20px;
    font-size: 24px;
}

.iPro-tab ul li.cur .iPro-tab-img {
    background: url(../images/ipro2.png) no-repeat center !important;
    background-size: cover !important;
    width: 138px !important;
    height: 160px !important;
}

.iPro-show-list {
    padding: 0 67px;
    margin-top: 80px;
}

.iPro-show {
    display: none;
}

.iPro-show.cur {
    display: block;
}

.iPro-show ul {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}
.itemBox{
    width: 25%;
    height: 529px;
    padding: 0 15px;
    display: inline-block;
    margin-bottom: 26px;
}
.iPro-show ul li {
    text-align: center;
    width: 100%;
    height: 100%;
    border: 1px solid #DBDBDB;
    position: relative;
    float: left;
}



.iPro-show-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    height: 483px;
    overflow: hidden;
}

.iPro-show-img img {
    width: 100%;
}

.iPro-show ul li dl {
    position: absolute;
    height: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    transition: all .4s;
    -webkit-transition: all .4s;
    overflow: hidden;
}

.iPro-show ul li:hover dl {
    height: 447px;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.iPro-show ul li dl img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.iPro-show ul li p {
    padding-top: 14px;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    position: absolute;
    background-color: #0084FF;
    height: 45px;
    color: white;
    bottom: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.iPro-show ul li p span {
    font-size: 14px;
    font-weight: normal;
}

.iPro-show ul li:hover p {
    transition: all .4s;
    -webkit-transition: all .4s;
    height: 80px;
}

.iPro-advantage {
    padding-top: 60px;
}

.iProcess {
    width: 100%;
    height: 625px;
    padding-top: 80px;
}

.iProcess ul {
    margin-top: 60px;
    border-top: 1px solid #D3D3D3;
    padding-top: 35px;
    overflow: hidden;
}

.iProcess ul li {
    width: 144px;
    text-align: center;
    float: left;
    margin-bottom: 20px;
    position: relative;
}

.iProcess ul li:after {
    content: url(../images/iproecss-icon.jpg);
    position: absolute;
    width: 11px;
    height: 60px;
    top: 20px;
    right: 0;
}

.iProcess ul li p {
    font-size: 18px;
    font-weight: bolder;
    color: #0084FF;
}

.iProcess ul li span {
    font-size: 16px;
    line-height: 32px;
}

.iabout {
    position: relative;
    padding-bottom: 200px;
}

.iabout-bc {
    z-index: 998;
    height: 335px;
    background-color: white;
    position: absolute;
    top: 290px;
    left: 50%;
    transform: translateX(-50%);
    padding: 80px 100px 0;
    text-align: center;
}

.iabout-bc-left {
    position: absolute;
    top: 0;
    z-index: -1;
    left: -65px;
}

.iabout-bc p {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 2px;
}

.iabout-bc a {
    background-color: #005FBB;
    width: 126px;
    line-height: 38px;
    font-size: 16px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 240px;
    border-radius: 5px;
}

.inews {
    padding-bottom: 90px;
}

.inews ul {
    margin-top: 30px;
    overflow: hidden;
}

.inews ul li {
    float: left;
    width: 290px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    margin-right: 12px;
}

.inews ul li:last-child {
    margin-right: 0;
}

.inews ul li>div {
    padding: 16px;
}

.inews ul li img {
    width: 100%;
}

.inews-title {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bolder;
    width: 250px;
    color: black;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 32px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.inews-content {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.inews ul li a {
    width: 290px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: #005FBB;
}

.footer {
    padding-top: 48px;
    height: 310px;
    width: 100%;
    color: white;
    background-color: #303741;
}

.copyright {
    text-align: center;
    background-color: #1C2027;
    line-height: 53px;
    color: #ACAEAF;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-nav {
    width: 260px;
}

.footer-nav ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-nav ul li {
    width: 33%;
    margin-bottom: 30px;
}

.footer-link {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 85px;
    font-size: 16px;
}

.service-hotLine {
    margin-bottom: 15px;
}

.hot-line {
    font-size: 24px;
    font-weight: 600;
}

.server-time {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 15px;
}

.footer-contact>div span {
    margin-right: 20px;
}

.footer-contact>div i {
    vertical-align: middle;
    margin-right: 10px;
}

.ewm {
    text-align: center;
}

.ewm img {
    margin-bottom: 20px;
}

/*about*/

.innerBanner {
    position: relative;
    width: 100%;
}

.title {
    color: white;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
}

.title span {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 2px;
}

.title p {
    font-size: 30px;
}

.about {
    padding-top: 60px;
}

.about-content {
    margin: 50px auto 0;
}

.about-content ul {
    overflow: hidden;
    height: 355px;
    background-color: #EFEFEF;
}

.about-content ul li {
    width: 50%;
    float: left;
}

.about-content ul li img {
    height: 100%;
}

.about-content-text {
    padding-top: 20px;
    float: right;
    width: 600px;
    font-weight: bolder;
    padding-right: 50px;
    line-height: 42px;
}

.about-content-text p {
    width: 100%;
    text-indent: 36px;
    font-size: 18px;
}

.about-content-text-title {
    margin-top: 20px;
    font-size: 24px !important;
    font-weight: 500;
    color: black;
    text-align: center;
}

/*使用说明*/

.instructions {
    padding-top: 110px;
}

.instructions ul {
    height: auto;
}

.instructions ul li {
    position: relative;
    height: auto;
    border: 1px dashed #0084FF;
    padding: 90px 45px 110px;
    line-height: 36px;
    border-radius: 50px;
    margin-bottom: 120px;
}

.instructions-title {
    text-align: center;
    position: absolute;
    color: white;
    font-weight: 600;
    font-size: 24px;
    width: 250px;
    line-height: 60px;
    background-color: #0084FF;
    border-radius: 50px;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
}

.instructions-content span {
    color: #0084FF;
    font-weight: 700;
    position: relative;
    padding-left: 23px;
}

/*.instructions-content p:before {*/

/*	content: url(../images/instructions-icon.png);*/

/*	position: absolute;*/

/*	left: 0;*/

/*	top: -4px;*/

/*}*/

.instructions-content-title {
    color: #0084FF !important;
    font-weight: 600;
}

.instructions-content p {
    color: black;
}

.instructions-content-img {
    text-align: center;
    margin-top: 20px;
}

/*新闻中心*/

.new {
    padding: 30px 0;
}

.new ul li {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    height: 135px;
    margin-bottom: 25px;
    padding-top: 33px;
    cursor: pointer;
}

.new ul li a {
    display: block;
}

.new ul li .time {
    text-align: center;
    margin-left: 31px;
    width: 80px;
    height: 80px;
    background-color: #F5F5F5;
    color: #5E5E5E;
    font-weight: 600;
    float: left;
}

.new ul li .time .day {
    font-size: 26px;
    line-height: 48px;
}

.new ul li:hover .new-content-title {
    color: #007aff;
}

.new-content {
    width: 990px;
    float: right;
    margin-right: 60px;
}

.new-content-title {
    font-size: 18px;
    font-weight: bold;
    color: black;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-content-text {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    line-height: 32px;
    color: #cccccc;
}

.new-content-source {
    font-size: 14px;
    line-height: 32px;
    color: #cccccc;
}

.pages {
    margin: 55px 0 65px 0;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

.pages a {
    font-size: 22px;
    color: #666;
    border: 1px solid #ccc;
    margin: 0 6px;
    padding: 5px 15px;
    cursor: pointer;
}

.pages .prev img {
    transform: rotate(180deg);
}

.pages .prev, .pages .next {
    background: none !important;
    border-color: #ccc !important;
}

.pages a.current {
    color: #fff;
    background-color: #666;
    border-color: #666;
}

.pages a:hover {
    color: #fff;
    background-color: #666;
    border-color: #666;
}

.news {
    overflow: hidden;
    padding-bottom: 50px;
}

.orientation {
    border-bottom: 1px solid #CCCCCC;
    overflow: hidden;
    padding: 38px 0 20px;
    margin-bottom: 60px;
}

.orientation p {
    display: inline;
    float: right;
}

.orientation p a {
    color: #7C7C7C;
    display: inline;
}

.news-content-title {
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: black;
}

.news-content-time {
    text-align: center;
    font-size: 14px;
    line-height: 30px;
    border-bottom: 2px dashed #DADADA;
}

.news-content-text {
    margin-top: 35px;
    margin-bottom: 100px;
    font-size: 16px;
    line-height: 30px;
    text-indent: 32px;
}

.news-content-page .prev {
    float: left;
}

.news-content-page .next {
    float: right;
}

.news-content-page a {
    color: #6B6B6B;
    cursor: pointer;
    line-height: 32px;
}

.news-content-page a:hover {
    color: #0084FF;
}

/*产品中心*/

.products {
    overflow: hidden;
    padding-bottom: 50px;
}

.products-content {
    text-align: center;
}

.products-content-page {
    border-top: 1px solid #999999;
    padding-top: 68px;
    margin-top: 68px;
}

.products-content-page a {
    cursor: pointer;
    display: inline;
    width: 80px;
    line-height: 40px;
    background-color: #0084FF;
    padding: 12px 17px;
    margin-right: 34px;
    margin-left: 34px;
}

.products-content-page a:hover {
    color: black;
}

/*联系我们*/

.contact-title {
    font-size: 24px;
    font-weight: 600;
    padding-top: 45px;
    padding-bottom: 30px;
}

.contact-info ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info ul li p {
    font-size: 18px;
    line-height: 36px;
    color: black;
}

.map {
    margin-top: 60px;
    width: 100%;
    height: 735px;
}

@media (max-width: 1600px) {

   
}

@media (max-width: 1450px) {
    .banner-content-title {
        font-size: 90px;
    }
    .banner-content-text {
        letter-spacing: 6px;
    }
    
}

@media (max-width: 1200px) {
    .w1200, .w1400 {
        width: 100%;
    }
    .title span {
        font-size: 32px;
    }
    .header {
        height: 65px;
        padding: 0 10px;
    }
    .logo {
        padding-top: 5px;
        width: 55px;
        margin-right: 0;
    }
    .logo img {
        content: url(../images/logo1.png);
        width: 55px;
    }
    .nav {
        position: fixed;
        padding-top: 0;
        margin-top: 65px;
        width: 100%;
        left: 0px;
        top: 0px;
    }
    .nav ul {
        width: 100%;
        background-color: #313740;
        height: 100%;
        float: right;
        display: none;
    }
    .nav ul li {
        float: none;
        width: 100%;
        text-align: right;
        padding-right: 60px;
    }
    .nav ul li:hover {
        background-color: #e9e9e9;
    }
    .nav ul li a {
        line-height: 60px;
    }
    .nav ul li a.focus:after {
        display: none;
    }
    .switchover {
        padding-top: 0;
        line-height: 65px;
        margin-right: 65px;
    }
    .switchover i {
        padding-top: 5px;
    }
    .menu {
        display: block;
        float: right;
    }
    .menu {
        width: 65px;
        height: 65px;
        position: absolute;
        right: 0;
        top: 0;
        float: right;
        z-index: 99999;
        display: block;
    }
    .menu span {
        width: 35px;
        height: 2px;
        background: white;
        display: block;
        position: relative;
        opacity: 1;
        transition: all 300ms;
        margin: 32px 0 0 12px;
    }
    .menu span:before {
        content: "";
        width: 35px;
        height: 2px;
        background: white;
        display: block;
        position: absolute;
        left: 0;
        top: -10px;
        transition: all 300ms;
    }
    .menu span:after {
        content: "";
        width: 35px;
        height: 2px;
        background: white;
        display: block;
        position: absolute;
        left: 0;
        top: 10px;
        transition: all 300ms;
    }
    .menu.cur span {
        background-color: transparent;
    }
    .menu.cur span:before {
        transform: rotate(45deg);
        top: 0;
    }
    .menu.cur span:after {
        transform: rotate(-45deg);
        top: 0;
    }
    .banner-content-title {
        font-size: 24px;
    }
    .banner {
        height: 500px;
    }
    .iPro-tab ul {
        display: flex;
        flex-wrap: wrap;
    }
    .iPro-tab ul li:nth-child(2n) {
        margin-right: 0;
    }
    .iPro-show-list {
        padding: 0;
    }
    .itemBox{
        width: 100%;
    }
    .iProcess {
        height: auto;
    }
    .iProcess ul {
        padding-left: 30px;
    }
    .iabout {
        height: auto;
    }
    .iabout .iTitle {
        width: 100%;
    }
    .iabout-bc {
        padding: 0;
    }
    .iabout-bc a {
        top: auto;
    }
    .inews {
        padding-bottom: 40px;
    }
    .inews ul li {
        width: 100%;
    }
    .inews ul li a {
        width: 100%;
    }
    .inews-title {
        width: auto;
    }
    .footer-content {
        display: none;
    }
    .footer {
        padding: 0;
        height: auto;
    }
    .about {
        width: 100%;
    }
    .about-content ul {
        height: auto;
    }
    .about-content ul li {
        width: 100%;
    }
    .about-content-text {
        width: 100%;
        padding: 0 10px;
    }
    .about-content-text p {
        text-indent: 0;
    }
    .instructions-content-img img {
        width: 100%;
    }
    .new ul li .time {
        margin-left: 10px;
    }
    .new-content {
        width: auto;
        float: none;
        margin-right: 0;
        margin-left: 100px;
    }
    .news-content-page .next {
        float: left;
    }
    .news-content-text {
        padding: 0 10px;
    }
    .news-content-page {
        padding-left: 10px;
    }
    .map {
        margin-top: 30px;
        margin-bottom: 30px;
        height: 450px;
    }
    .contact-info ul {
        padding: 0 20px;
    }
}