﻿@charset "UTF-8";
* {
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
    line-height: 30px;
    margin:0;
    padding:0;
}

*,
::after,
::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}

html,
body,
div,
span,
applet,
object,
iframe,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
li {
	list-style: none;
}/*清除圆点*/
html,
body {
    color: #333;
}

html {
    -webkit-text-size-adjust: 100%;
    font-size: 14px;
}

body {
    /*font-size: 14px;*/
    /*  -webkit-text-size-adjust: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;*/
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

article,
aside,
details,
figcaption,
figure,
footer,
header,
section,
hgroup,
menu,
nav,
section {
    display: block;
    padding: 0;
    margin: 0;
}

/* input, textarea {
    margin: 0;
    padding: 0;
    outline: 0;
    -webkit-appearance: none;
    border-radius: 0;
} */
select {
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    border: solid 1px #000;
    /*很关键：将默认的select选择框样式清除*/
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url(../images/select.gif) no-repeat scroll 98% center transparent;
    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-right: 14px;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
    display: none;
}

a,
a:active {
    color: #333;
}

a:hover {
    color: #0c318a;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    noline: -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
    /* 去掉链接触摸高亮 */
    -webkit-tap-highlight-color: transparent;
}

:focus,
a:focus {
    outline: none;
    -moz-outline: none;
}

table,
td,
th {
    border-collapse: collapse;
    border-spacing: 0;
}

.ul,
.ul li {
    list-style: none;
}

hr {
    margin: 0;
    padding: 0;
    border: 0;
    color: #000;
    background-color: #000;
    height: 1px
}

img {
    border: none;
    max-width: 100%;
    vertical-align: middle;
}

.blockimg {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

pre {
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    margin: 0;
    text-align: justify;
    text-justify: inter-ideograph;
}

.clear {
    clear: both;
    height: 0px;
    font-size: 0px;
    line-height: 0px;
    overflow: hidden;
    zoom: 0;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    zoom: 1;
}

/*单行文本省略号*/
.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;
}

.ytable {
    display: table;
    width: 100%;
    height: 100%;
}

.ytable-cell {
    display: table-cell;
    vertical-align: middle;
}

/*设置隐藏*/
.none {
    display: none;
}

.hidden {
    visibility: hidden;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.center-wrap {
    width: 96%;
    max-width: 1440px;
    margin: 0 auto;
}

.pr {
    position: relative;
}

.nm {
    margin: 0;
}

.nfw {
    font-weight: normal;
}

.img-block {
    display: block;
    width: 100%;
}

/*baidu edit css*/
.view.editor p {
    margin: 16px 0;
}

.view.editor .list-paddingleft-2 {
    padding-left: 0;
}

.view.editor ol,
.view.editor ul {
    width: auto;
}

.view.editor li {
    clear: inherit;
}

/*STAR*/
.Pages {
    text-align: center;
}







.header {
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    /* background: #fff; */
    background: rgba(0, 71, 157, 0.8);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    padding: 20px 0;
}

.header .center-wrap {
    position: relative;
}

.header .logo {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 35%;
    max-width: 265px;
}

.header .logo .ytable {
    height: 100%;
}

.header .logo img {
    display: block;
    width: 100%;
}

.header .logo img.white {
    display: none;
}

.top-nav {
    /* padding: 21px 0; */
}

.top-nav dl {
    float: right;
}

.top-nav dl>* {
    float: left;
}

.top-nav dd a {
    display: inline-block;
}

.top-nav dd:not(:last-child):after {
    display: inline-block;
    content: '';
    width: 1px;
    height: 15px;
    /* background: #dedede; */
    margin: 0 28px;
}

.top-nav dd:not(:last-child) a {
    color: #0c318a;
    padding-left: 27px;
    background: url(../images/btn-search.png) no-repeat left center;
}

.top-nav dd a.oa {
    background-image: url(../images/btn-oa.png);
}

.top-nav dd .en {
    color: #999;
}

.top-nav dd .en:hover {
    color: #0c318a;
}

@media(max-width:480px) {
    .top-nav {
        padding: 16px 0;
    }

    .top-nav dd:not(:last-child) a {
        font-size: 0;
        width: 20px;
        height: 20px;
        padding: 0;
        float: left;
    }

    .top-nav dd:not(:last-child):after {
        margin: 0 15px;
    }
}

.top-search {
    z-index: 999;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    width: 100%;
    padding-right: 40px;
    max-width: 320px;
    display: none;
}

.top-search .text {
    height: 40px;
    line-height: 40px;
    border: 0;
    width: 100%;
    padding: 0 10px;
    background: #fff;
    color: #999;
}

.top-search .text.focus {
    color: #333;
}

.top-search .btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: url(../images/btn-search.png) no-repeat center center;
}

.open-search {
    position: relative;
}

.open-search.on {
    background: none !important;
}

.open-search:before,
.open-search:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 2px;
    left: 0;
    top: 50%;
    margin-top: -1px;
    transition: 0.5s;
}

.open-search.on:before,
.open-search.on:after {
    background: #0c318a;
}

.open-search.on:before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

.open-search.on:after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}




@media(min-width:1025px) {
    .nav-menu {
        padding-top: 15px;
        padding-bottom: 15px;
        display: block !important;
    }

    .nav-menu ul {
        float: right;
        width: 74%;
    }

    .nav-menu li {
        float: left;
        line-height: 35px;
        position: relative;
        list-style-type: none
    }

    .nav-menu li a {
        color: #fff;
        font-size: 18px;
    }

    .nav-menu li a:hover {
        color: #0c318a;
    }

    .nav-menu ul li .secondnav {
        position: absolute;
        left: 50%;
        top: 60px;
        line-height: 35px;
        z-index: 999;
        background: #fff;
        width: 150px;
        font-size: 15px;
        /* padding:10px 10px 10px 10px; */
        display: none;
        margin-left: -75px;
        box-sizing: border-box;
    }

    .nav-menu ul li .secondnav a {
        border-bottom: 1px dotted #ddd;
        text-align: center;
        font-size: 14px !important;
        display: block;
        height: 40px;
        line-height: 40px;
    }

    .header-fixed .secondnav a {
        color: #333 !important;
    }

    .nav-menu ul li .secondnav a:last-child {
        border-bottom: none;
    }

    .nav-menu ul li .secondnav.null {
        background: none;
        padding: 0;
    }


}

@media(max-width:1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        background: #0c318a;
        width: 70%;
        max-width: 240px;
        padding: 20px;
        border-radius: 0 0 5px 5px;
    }

    .nav-menu li {
        margin: 0 !important;
        list-style-type: none
    }

    .nav-menu li:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu li a {
        display: block;
        line-height: 22px;
        padding: 5px 0;
        color: #fff;
        font-size: 16px;
    }

    .open-menu {
        float: right;
        width: 46px;
        height: 32px;
        background: #0c318a;
        border-radius: 5px 5px 0 0;
        position: relative;
    }

    .open-menu span,
    .open-menu:after,
    .open-menu:before {
        position: absolute;
        width: 70%;
        left: 15%;
        height: 3px;
        background: #fff;
    }

    .open-menu:after,
    .open-menu:before {
        content: '';
        transition: transform 0.3s;
    }

    .open-menu span {
        top: 50%;
        margin-top: -1.5px;
    }

    .open-menu:before {
        top: 6px;
    }

    .open-menu:after {
        bottom: 6px;
    }

    .open-menu.on span {
        opacity: 0;
    }

    .open-menu.on:after,
    .open-menu.on:before {
        top: 50%;
        margin-top: -1.5px;
        transform: rotate(45deg);
        width: 50%;
        left: 25%;
    }

    .open-menu.on:before {
        transform: rotate(-45deg);
    }
}

.header-fixed {
    background: rgba(0, 71, 157, 0.8);
    /* background: #00479d; */
}

.header-fixed .logo img.white {
    display: block;
}

.header-fixed .logo img.color {
    display: none;
}

.header-fixed .nav-menu li a {
    color: #fff;
}

.header-fixed .top-nav dd:not(:last-child):after {
    /* background: #dedede; */
}

.header-fixed .top-nav dd .en,
.header-fixed .top-nav dd:not(:last-child) a {
    color: #fff;
}

.header-fixed .top-nav dd:not(:last-child) a {
    background-image: url(../images/btn-search.png);
}

.header-fixed .top-nav dd a.oa {
    background-image: url(../images/btn-oa.png);
}

.header-fixed .open-search.on:before,
.header-fixed .open-search.on:after {
    background: #fff;
}

.home-banner {
    position: relative;
    z-index: 1;
}

.mouse-scroll {
    width: 34px;
    height: 56px;
    border: 1px solid #fff;
    border-radius: 34px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    margin: auto;
    cursor: pointer;
    z-index: 50;
}

.mouse-scroll::before {
    content: '';
    width: 2px;
    height: 16px;
    background-color: #fff;
    position: absolute;
    top: 8px;
    left: 16px;
    animation: mouseScroll 3s infinite;
    -webkit-animation: mouseScroll 3s infinite;
}

@-webkit-keyframes mouseScroll {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(24px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes mouseScroll {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(24px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media(max-width:1024px) {
    .mouse-scroll {
        width: 20px;
        height: 32px;
        bottom: 10px;
    }

    .mouse-scroll::before {
        height: 6px;
        top: 3px;
        left: 8px;
    }

    @-webkit-keyframes mouseScroll {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(18px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    @keyframes mouseScroll {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(18px);
        }

        100% {
            transform: translateY(0px);
        }
    }

}

.home-banner .slick-dots {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 2%;
}

.home-banner .slick-dots li {
    padding: 15px 0;
}

.home-banner .slick-dots li button {
    display: block;
    width: 19px;
    height: 24px;
    background: url(../images/dots.png) no-repeat center bottom;
    border: 0;
    cursor: pointer;
    padding: 0;
    font-size: 0;
}

.home-banner .slick-dots li.slick-active button {
    background-position: center top;
}

.home-banner .slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    width: 28px;
    height: 28px;
    border: 0;
    border-top: 5px solid rgba(255, 255, 255, 0.7);
    border-right: 5px solid rgba(255, 255, 255, 0.7);
    font-size: 0;
    z-index: 10;
    background: none;
    cursor: pointer;
    padding: 0;
}

.home-banner .slick-prev {
    left: 7%;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
}

.home-banner .slick-next {
    right: 7%;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

@media(max-width:1024px) {
    .home-banner .slick-dots li {
        padding: 4px 0;
    }

    .home-banner .slick-dots li button {
        width: 10px;
        height: 12px;
        background-size: 100% auto;
    }

    .home-banner .slick-arrow {
        width: 20px;
        height: 20px;
        margin-top: -10px;
        border-width: 3px;
    }
}

.home-banner .slider li.slick-slide {
    position: relative;
    overflow: hidden;
}

.home-banner li img {
    transition: 10s linear;
    position: relative;
    z-index: 1;
}

.home-banner li.an-show img {
    transform: scale(1.12);
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
}

.home-banner #particles-js1,
.home-banner #particles-js2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

#index_product {
    background: url(../images/page2-bg.jpg) no-repeat center center;
    background-size: cover;
    /* padding-bottom: 75px; */
}

.module-tit {
    text-align: center;
    padding: 92px 0 62px 0;
    color: #0c318a;
    font-size: 42px;
}

.module-tit:after {
    display: block;
    margin: 20px auto 0;
    width: 58px;
    height: 4px;
    background: #0b318b;
    border-left: 29px solid #0ec54d;
    content: '';
}

@media(max-width:768px) {
    .module-tit {
        padding: 40px 0;
        font-size: 32px;
    }
}

@media(max-width:480px) {
    .module-tit {
        font-size: 24px;
    }
}
#index_product .productslider li{padding-bottom:50px;}
#index_product .productslider li.slick-slide {
    overflow: hidden;
}

#index_product .productslider li.slick-slide a {
    display: block;
    margin: 0 auto;
    width: 90%;
    max-width: 240px;
    position: relative;
    transform: translateY(-150%);
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transition: 1s;
    height: 260px;
    background: #fff;
}

@media(min-width:481px) {
    #index_product .productslider li.slick-slide:nth-child(2n) {
        /* padding-top: 90px; */
    }
}

#index_product .productslider li.slick-slide.on a {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
}

#index_product .productslider li.slick-slide aside.dot,
#index_product .productslider li.slick-slide .bg-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

#index_product .productslider li.slick-slide aside.dot {
    z-index: 10;
    line-height: 44px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 0 5%;
}

#index_product .productslider li.slick-slide .bg-line {
    height: 44px;
    z-index: 2;
    /* opacity: 0.6; */
    /* -webkit-opacity: 0.6; */
    background-color: #666;
}

#index_product .slick-arrow {
    opacity: 0;
    -webkit-opacity: 0;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    margin-top: -35px;
    background: none;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(11, 49, 139, 0.2);
}

#index_product .slick-arrow:after {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    border-top: 3px solid #0b318b;
    border-right: 3px solid #0b318b;
    left: 50%;
    top: 50%;
    margin: -8px 0 0 -8px;
    transform: rotate(-135deg);
}

#index_product .slick-next:after {
    transform: rotate(45deg);
}

#index_product.page2-btnshow .slick-arrow {
    opacity: 1;
    -webkit-opacity: 1;
}

@media(min-width:1721px) {
    #index_product .slick-prev {
        left: -140px;
    }

    #index_product .slick-next {
        right: -140px;
    }
}

@media(max-width:1720px) {
    #index_product .slick-prev {
        left: -70px;
    }

    #index_product .slick-next {
        right: -70px;
    }
}

@media(max-width:1600px) {
    #index_product .slick-prev {
        left: 10px;
    }

    #index_product .slick-next {
        right: 10px;
    }

    #index_product .center-wrap {
        width: auto;
        max-width: none;
    }

    #index_product .productslider {
        padding: 0 90px;
    }
}

@media(max-width:480px) {
    #index_product .slick-arrow {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    #index_product .slick-arrow:after {
        width: 10px;
        height: 10px;
        margin: -5px 0 0 -5px;
    }
}

#index_product .productslider li.slick-slide:hover {
    animation: 0.8s ease xy;
}

@keyframes xy {
    0% {
        -webkit-transform: perspective(500px) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
        -ms-transform: perspective(500px) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
        -o-transform: perspective(500px) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
        transform: perspective(500px) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
        transform-style: preserve-3d;
    }

    25% {
        -webkit-transform: perspective(900px) translate3d(0, 0px, 0) rotateX(0deg) rotateY(-45deg);
        -ms-transform: perspective(900px) translate3d(0, 0px, 0) rotateX(0deg) rotateY(-45deg);
        -o-transform: perspective(900px) translate3d(0, 0px, 0) rotateX(0deg) rotateY(-45deg);
        transform: perspective(900px) translate3d(0, 0px, 0) rotateX(0deg) rotateY(-45deg);
        transform-style: preserve-3d;
    }

    75% {
        -webkit-transform: perspective(900px) translate3d(0, 0px, 0) rotateX(0deg) rotateY(45deg);
        -ms-transform: perspective(900px) translate3d(0, 0px, 0) rotateX(0deg) rotateY(45deg);
        -o-transform: perspective(900px) translate3d(0, 0px, 0) rotateX(0deg) rotateY(45deg);
        transform: perspective(900px) translate3d(0, 0px, 0) rotateX(0deg) rotateY(45deg);
        transform-style: preserve-3d;
    }

    100% {
        -webkit-transform: perspective(500px) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
        -ms-transform: perspective(500px) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
        -o-transform: perspective(500px) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
        transform: perspective(500px) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
        transform-style: preserve-3d;
    }
}

#index_choice .tit-area {
    background: url(../images/page3-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 56px 0;
}

#index_choice .desc {
    color: #fff;
    font-size: 22px;
    opacity: 0.8;
    text-align: center;
}

#index_choice .module-tit {
    color: #fff;
    padding: 0 0 35px 0;
}

#index_choice .slick-list li {
    position: relative;
    overflow: hidden;
}

#index_choice .slick-list li>* {
    position: absolute;
    z-index: 10;
    color: #fff;
    transition: 0.5s;
}

#index_choice .slick-list li:before {
    position: absolute;
    content: '';
    opacity: 0;
    background: #06194e;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: 0.5s;
}

#index_choice .slick-list li .blockimg {
    position: relative;
    z-index: 1;
    padding-bottom: 114.584%;
}

#index_choice .slick-list li .line {
    bottom: 9%;
    left: 0;
    width: 100%;
    height: 16px;
}

#index_choice .slick-list li .line i {
    position: absolute;
    height: 8px;
    opacity: 0;
    transition: 0.5s;
}

#index_choice .slick-list li .line i.l {
    left: 0;
    bottom: 0;
    width: 0;
    background: url(../images/line-1.png) no-repeat right center;
}

#index_choice .slick-list li .line i.r {
    right: 0;
    top: 0;
    width: 0;
    background: url(../images/line-2.png) no-repeat left center;
}

#index_choice .slick-list li .more {
    width: 0;
    top: 0;
    right: -100px;
    top: -100px;
    border: 50px solid transparent;
    border-top-color: #0ec64e;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
}

#index_choice .slick-list li .more i {
    position: absolute;
    width: 16px;
    height: 16px;
    left: -10px;
    top: -40px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
}

#index_choice .slick-list li .more i:before,
#index_choice .slick-list li .more i:after {
    position: absolute;
    content: '';
    background: #fff;
}

#index_choice .slick-list li .more i:before {
    width: 100%;
    left: 0;
    height: 2px;
    top: 50%;
    margin-top: -1px;
}

#index_choice .slick-list li .more i:after {
    left: 50%;
    width: 2px;
    margin-left: -1px;
    top: 0;
    height: 100%;
}

#index_choice .slick-list li .txt {
    margin: auto;
    top: 20%;
    left: 0;
    right: 0;
    width: 90%;
    max-width: 320px;
    opacity: 0;
    -webkit-opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
}

#index_choice .slick-list li .txt aside.dot {
    font-size: 34px;
    line-height: 50px;
    margin-bottom: 20px;
}

#index_choice .slick-list li .txt aside.dot a {
    color: #fff;
}

#index_choice .slick-list li .txt p {
    margin: 5% 0 0 0;
    line-height: 40px;
    /* max-height:224px; */
    overflow: hidden;
    font-size: 16px;
    text-align: justify;
}

#index_choice .slick-list li .icon {
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    max-width: 247px;
    width: 70%;
}

#index_choice .slick-list li .icon .inner {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    text-align: center;
}

#index_choice .slick-list li .icon>img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

#index_choice .slick-list li .icon .inner img {
    width: 28%;
    max-width: 70px;
}

#index_choice .slick-list li .icon aside.dot {
    font-size: 22px;
    line-height: 24px;
    margin-top: 10px;
}

#index_choice .slick-list li:hover:before {
    opacity: 0.8;
    -webkit-opacity: 0.8;
}

#index_choice .slick-list li:hover .blockimg {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
}

#index_choice .slick-list li:hover .more {
    right: -55px;
    top: -55px;
}

#index_choice .slick-list li:hover .txt {
    opacity: 1;
    -webkit-opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
}

#index_choice .slick-list li:hover .line i.l,
#index_choice .slick-list li:hover .line i.r {
    opacity: 1;
    -webkit-opacity: 1;
}

#index_choice .slick-list li:hover .line i.l {
    width: 22.708%;
}

#index_choice .slick-list li:hover .line i.r {
    width: 81.458%;
}

#index_choice .slick-list li:hover .icon {
    opacity: 0;
    -webkit-opacity: 0;
    transform: translateY(-50%) scale(0);
    -webkit-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
}

@media(max-width:1500px) {
    #index_choice .slick-list li .txt p {
        max-height: 112px;
    }
}

@media(max-width:1024px) {
    #index_choice .slick-list li .txt aside.dot {
        font-size: 20px;
    }
}

@media(max-width:640px) {
    #index_choice .slick-list li .icon aside.dot {
        font-size: 18px;
        margin-top: 5px;
    }

    #index_choice .slick-list li .txt p {
        line-height: 20px;
        max-height: 100px;
        font-size: 14px;
    }
}

@media(max-width:400px) {
    #index_choice .slick-list li .txt p {
        max-height: 80px;
    }
}

#index_choice .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 100%;
    margin-bottom: 10px;
    text-align: center;
    padding: 10px 0;
}

#index_choice .slick-dots li {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    margin: 0 2px;
    opacity: 0.5;
    -webkit-opacity: 0.5;
}

#index_choice .slick-dots li button {
    display: none;
}

#index_choice .slick-dots li.slick-active {
    opacity: 1;
    -webkit-opacity: 1;
}


#index_about {
    background: url(../images/page4-bg.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 6%;
}

#index_about .fl .singlepage {

    font-size: 16px;
    color: #666;
}


#index_about .fl .singlepage p{
    line-height:40px;
    text-indent:2em;
}



#index_about .fl .singlepage p {
    margin: 0 0 30px 0;
}


#index_about .links li {
    float: left;
    width: 30%;
    max-width: 285px;
    text-align: center;
    font-size: 16px;
    color: #999;
}

#index_about .links li:nth-child(2n) {
    float: right;
}

#index_about .links li:nth-child(3) {
    margin: 0 5%;
}

#index_about .links li .pic {
    position: relative;
    border: 1px solid #eee;
    padding: 14px;
    margin-bottom: 15px;
}

#index_about .links li .blockimg {
    background-size: contain;
    padding-bottom: 63.83%;
    display: block
}

#index_about .links li .pic:before,
#index_about .links li .pic:after {
    position: absolute;
    content: '';
    width: 25px;
    height: 15px;
    transition: 0.5s;
}

#index_about .links li .pic:before {
    left: 0;
    top: 0;
    border-top: 2px solid #0b318b;
    border-left: 2px solid #0b318b;
}

#index_about .links li .pic:after {
    right: 0;
    bottom: 0;
    border-right: 2px solid #0b318b;
    border-bottom: 2px solid #0b318b;
}

#index_about .links li:hover .pic:before,
#index_about .links li:hover .pic:after {
    width: 100%;
    height: 100%;
}

#index_about .fr {
    padding: 9px;
    border: 1px solid #ced6e8;
}

#index_about .video {
    position: relative;
    overflow: hidden;
}

#index_about .video video {
    height: 515px;
    width: 100%;
    background: #000;
}

#index_about .video .play {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 8, 20, 0.2) url(../images/play.png) no-repeat center center;
    cursor: pointer;
}

#index_about .video>img {
    transition: 0.3s;
}

#index_about .video:hover>img {
    transform: scale(1.12);
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#index_about .c-ys {
    margin-top: 100px;
}

#index_about .c-ys .ys {
    width: 25%;
    float: left;
}

#index_about .c-ys .ys:nth-child(2),
#index_about .c-ys .ys:nth-child(3) {
    text-align: center;
}

#index_about .c-ys .ys:last-child {
    text-align: right;
}

#index_about .c-ys .ys .ys-box {
    display: inline-block;
    width: 227px;
    height: 227px;
    background: url(../images/y.png) no-repeat;
    background-size: 100% 100%;
    text-align: center;
    position: relative;
}

#index_about .c-ys .ys .ys-box .line-active {
    width: 227px;
    height: 227px;
    background: url(../images/y-active.png) no-repeat top left;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
}

#index_about .c-ys .ys .ys-box .ys-txt {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

#index_about .c-ys .ys .ys-box .ys-txt p {
    font-size: 24px;
    color: #0b318b;
    margin: 0;
}

#index_about .c-ys .ys .ys-box .ys-txt p strong {
    font-size: 40px;
}

#index_about .c-ys .ys .ys-box .ys-txt span {
    font-size: 16px;
}

@media(min-width:1025px) {
    #index_about .fl {
        width: 44.862%;
    }

    #index_about .fr {
        width: 50%;
    }
}

@media(max-width:1024px) {
    #index_about .center-wrap {
        max-width: 720px;
    }

    #index_about .fr {
        margin-top: 8%;
        width: 100%;
    }

    #index_about .c-ys {
        margin-top: 30px;
    }

    #index_about .c-ys .ys {
        width: 25%;
        text-align: center;
        margin-bottom: 10px;
    }

    #index_about .c-ys .ys .ys-box {
        width: 150px;
        height: 150px;
    }

    #index_about .c-ys .ys .ys-box .line-active {
        width: 150px;
        height: 150px;
    }

    #index_about .c-ys .ys .ys-box .ys-txt p {
        font-size: 16px;
    }

    #index_about .c-ys .ys .ys-box .ys-txt p strong {
        font-size: 20px;
    }

    #index_about .c-ys .ys .ys-box .ys-txt span {
        font-size: 12px;
    }

    #index_about .c-ys .ys:last-child {
        text-align: center;
    }
}

@media (max-width:768px) {
    #index_about .c-ys .ys {
        width: 50%;
    }

    #index_about .c-ys .ys .ys-box {
        width: 110px;
        height: 110px;
    }

    #index_about .c-ys .ys .ys-box .line-active {
        width: 110px;
        height: 110px;
    }

    #index_about .video video {
        height: 250px;
    }
}

#index_xinwen {
    background: url(../images/page5-bg.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 58px;
}

#index_xinwen .module-tit {
    color: #fff;
    padding-top: 78px;
}

#index_xinwen .more {
    text-align: center;
    padding-top: 43px;
}

#index_xinwen .more a {
    display: inline-block;
    line-height: 34px;
    color: #fff;
    font-size: 18px;
}

#index_xinwen .more a:before {
    display: inline-block;
    content: '';
    vertical-align: middle;
    width: 29px;
    height: 34px;
    margin-right: 15px;
    background: url(../images/more.png) no-repeat;
    transition: 0.5s;
}

#index_xinwen .more a:hover:before {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}

#index_xinwen .slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    background: none;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff
}

#index_xinwen .slick-arrow:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    left: 50%;
    top: 50%;
    margin: -5px 0 0 -5px;
    transform: rotate(-135deg);
}

#index_xinwen .slick-next:after {
    transform: rotate(45deg);
}

@media(min-width:1601px) {
    #index_xinwen .xinwenslider {
        margin-left: -20px;
        margin-right: -20px;
    }

    #index_xinwen .slick-prev {
        left: -60px;
    }

    #index_xinwen .slick-next {
        right: -60px;
    }
}

@media(max-width:1600px) {
    #index_xinwen .xinwenslider {
        padding: 0 40px;
    }

    #index_xinwen .slick-prev {
        left: 0;
    }

    #index_xinwen .slick-next {
        right: 0;
    }
}


@media(min-width:1500px) {
    #index_xinwen .xinwenslider {
        margin-left: -30px;
        margin-right: -30px;
    }
}

#index_xinwen .slick-list li .pic {
    position: relative;
    display: block;
    z-index: 1;
    overflow: hidden;
}

#index_xinwen .slick-list li .blockimg {
    padding-bottom: 68.182%;
    transition: 0.5s;
}

#index_xinwen .slick-list li:hover .blockimg {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
}

#index_xinwen .slick-list li .inner {
    position: relative;
    margin: 0 30px;
}

@media(max-width:1024px) {
    #index_xinwen .slick-list li .inner {
        margin: 0 15px;
    }
}

#index_xinwen .slick-list li time {
    float: left;
    width: 20%;
    color: #0b318b;
    font-size: 14px;
    font-weight: bold;
    margin-top: -10px;
}

#index_xinwen .slick-list li time b {
    font-size: 36px;
    display: block;
    color: #0b318b;
    font-family: Arial;
}

#index_xinwen .slick-list li time:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border: 41px solid transparent;
    border-top-color: #0b318b;
    border-top-width: 20px;
}

#index_xinwen .slick-list li .line {
    height: 16px;
    position: relative;
    margin-top: -8px;
    z-index: 10;
}

#index_xinwen .slick-list li .line:after,
#index_xinwen .slick-list li .line:before {
    position: absolute;
    content: '';
    height: 8px;
    transition: 0.5s;
}

#index_xinwen .slick-list li .line:after {
    width: 22.708%;
    left: 0;
    bottom: 0;
    background: url(../images/line-1.png) no-repeat right center;
}

#index_xinwen .slick-list li .line:before {
    width: 81.458%;
    right: 0;
    top: 0;
    background: url(../images/line-2.png) no-repeat left center;
}

#index_xinwen .slick-list li:hover .line:after {
    width: 81.458%;
}

#index_xinwen .slick-list li:hover .line:before {
    width: 22.708%;
}

#index_xinwen .slick-list li .txt-box {
    background: #fff;
    padding: 40px 30px;
}

#index_xinwen .slick-list li .txt {
    width: 80%;
    float: left;
    background: #fff;
    margin-top: -8px;
}

#index_xinwen .slick-list li .txt p {
    margin: 20px 0 0 0;
    line-height: 22px;
    height: 66px;
    color: #999;
    font-size: 16px;
}

#index_xinwen .slick-list li .txt aside {
    font-size: 20px;
    line-height: 26px;
    height: 60px;
}

#index_xinwen .slick-dots {
    text-align: center;
    padding: 30px 0 0 0;
}

#index_xinwen .slick-dots li {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    margin: 0 5px;
    opacity: 0.5;
    -webkit-opacity: 0.5;
}

#index_xinwen .slick-dots li button {
    display: none;
}

#index_xinwen .slick-dots li.slick-active {
    opacity: 1;
    -webkit-opacity: 1;
}

@media(max-width:768px) {
    #index_xinwen .slick-list li .txt-box {
        padding: 15px 10px;
    }

    #index_xinwen .slick-list li time {
        font-size: 12px;
    }

    #index_xinwen .slick-list li time b {
        font-size: 16px;
    }

    #index_xinwen .slick-list li .txt aside {
        font-size: 16px;
    }

    #index_xinwen .slick-list li .txt p {
        font-size: 12px;
    }
}


#index_hezuo {
    background: url(../images/page6-bg.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 60px;
}

#index_hezuo .module-tit {
    padding: 56px 0 20px 0;
}

#index_hezuo .slick-list li a {
    margin: 0 20px;
    padding: 20px 0;
    display: block;
    transition: all .5s;
    -webkit-transition: all .5s;
}

#index_hezuo .slick-list li a:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

#index_hezuo .slick-list li .blockimg {
    padding-bottom: 42.96875%;
    background-size: contain;
    background-color: #fff;
    box-shadow: 12px 0 20px rgba(45, 48, 60, 0.08);
}

#index_hezuo .slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    background: none;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(11, 49, 139, 0.1);
}

#index_hezuo .slick-arrow:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #516cac;
    border-right: 2px solid #516cac;
    left: 50%;
    top: 50%;
    margin: -5px 0 0 -5px;
    transform: rotate(-135deg);
}

#index_hezuo .slick-next:after {
    transform: rotate(45deg);
}

@media(min-width:1601px) {
    #index_hezuo .hezuoslider {
        margin-left: -20px;
        margin-right: -20px;
    }

    #index_hezuo .slick-prev {
        left: -60px;
    }

    #index_hezuo .slick-next {
        right: -60px;
    }
}

@media(max-width:1600px) {
    #index_hezuo .hezuoslider {
        padding: 0 40px;
    }

    #index_hezuo .slick-prev {
        left: 0;
    }

    #index_hezuo .slick-next {
        right: 0;
    }
}

@media(max-width:1024px) {
    #index_hezuo .slick-list li a {
        margin: 0 10px;
    }

    #index_hezuo .slick-list li .blockimg {
        box-shadow: 6px 0 10px rgba(45, 48, 60, 0.08);
    }
}

@media(max-width:640px) {
    #index_hezuo {
        padding-bottom: 30px;
    }

    #index_hezuo .module-tit {
        padding: 30px 0 20px 0;
    }
}

.footer-main {
    padding-top: 30px;
    background: #2d303c;
}

.footer-main a:hover {
    color: #fff !important;
}

.footer-main .daohang {
    width: 82.153%;
    float: left;
}

.footer-main .daohang dl {
    float: left;
    max-width: 150px;
    margin-right: 7% !important;
}

.footer-main .daohang dl:last-child {
    margin-right: 0 !important;
}

.footer-main .daohang dt {
    margin-bottom: 10px;
}

.footer-main .daohang dt a {
    color: #fff;
    font-size: 18px;
}

.footer-main .daohang dd {
    line-height: 10px;
    padding: 5px 0;
}

.footer-main .daohang dd a {
    color: #9799a2;
    font-size: 16px;
}

.footer-main .ewm {
    text-align: center;
    max-width: 130px;
    font-size: 18px;
    color: #fff;
}

.footer-main .ewm img {
    margin-top: 25px;

                display: block;
                width: 100%;
            }
.footer-main .copyright {
    border-top: 1px solid #494b53;
    margin-top: 25px;
    padding: 20px 0;
    text-align: center;
    color: #6a6c75;
    font-size: 16px;
}

.footer-main .copyright a {
    color: #6a6c75;
    margin-left: 5px;
}

.footer-main .copyright img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

@media(max-width:1280px) {
    .footer-main .daohang dl {
        margin-right: 5% !important;
    }

}

@media(min-width:1025px) {
    .footer-main .ewm {
        float: right;
        width: 15%;
    }
}

@media(max-width:1024px) {
    .footer-main .daohang {
        display: none;
    }

    .footer-main .ewm {
        margin: 0 auto;
    }
}


/* 内页 */

.Contain {
    width: 100%;
    margin: 0 auto;
}

@media(max-width:1800px) {
    .Contain {
        width: 96%;
    }
}

/* 内页top */
.n_top-main {
    width: 100%;
    background: #fff;
    transition: 0.3s;
}

.n_top-main .center-wrap {
    position: relative;
}

.n_top-main .logo {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 35%;
    max-width: 265px;
}

.n_top-main .logo .ytable {
    height: 100%;
}

.n_top-main .logo img {
    display: block;
    width: 100%;
}


.n_top-main .n-nav li {
    float: left;
    font-size: 18px;
    line-height: 35px;
    margin-left: 20px;
}

.n_top-main .n-nav li a.open-search {
    color: #0c318a;
    padding: 3px 0;
    padding-left: 27px;
    background: url(../images/btn-search.png) no-repeat left center;
}

.n_top-main .n-nav li.change-en {
    position: relative;
}

.n_top-main .n-nav li.change-en img {
    transition: all .5s;
    -webkit-transition: all .5s;
}

.n_top-main .n-nav li.change-en.on img {
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
}

.n_top-main .n-nav li p {
    display: none;
    height: 50px;
    width: 100px;
    margin: 0;
    background: #fff;
    text-align: center;
    line-height: 50px;
    box-shadow: 0 0 10px #ddd;
    position: absolute;
    top: 40px;
    left: -30px;
    z-index: 999;
}



.n_top-main .n-nav-menu,
.n_top-main .n-nav {
    margin: 30px 0;
    z-index: 999;
}

.n_top-main .n-nav-menu ul li {
    float: left;
    font-size: 18px;
    line-height: 35px;
    padding: 0 20px;
    margin: 0 5px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.n_top-main .n-nav-menu ul li:hover {
    background: #0c318a;
    border-radius: 10px 0 10px 0;
}

.n_top-main .n-nav-menu ul li:hover a {
    color: #fff;
}

@media(max-width:1440px) {
    .n_top-main .n-nav-menu ul li {
        padding: 0 10px;
        margin: 0 3px;
    }
}

@media(max-width:1268px) {
    .n_top-main .n-nav-menu ul li {
        padding: 0 8px;
        margin: 0 1px;
        font-size: 16px;
    }

    .n_top-main .n-nav li {
        margin-left: 5px;
        font-size: 16px;
    }
}

@media (max-width:1024px) {
    .n_top-main .n-nav {
        margin: 10px 0 0 0;
    }

    .n_top-main .n-nav-menu {
        margin: 0;
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        background: #0c318a;
        width: 70%;
        max-width: 240px;
        padding: 20px;
        border-radius: 0 0 5px 5px;
    }

    .n_top-main .n-nav-menu li {
        margin: 0 !important;
    }

    .n_top-main .n-nav-menu li a {
        display: block;
        line-height: 30px;
        padding: 10px 0;
        color: #fff;
        font-size: 18px;
    }

    .n_top-main .open-menu {
        top: 13px;
    }

    .n_top-main .logo img {
        height: 30px;
        width: auto;
    }
}

/* 内页top  end*/

/* 内页bottom */

.n-footer .Contain {
    background: #0c318a;
    border-radius: 30px 0 0 0;
}

.n-footer .n-foot-box {
    background: url(../images/n-foot-bg.png) no-repeat bottom center;
    background-size: 100%;
    padding: 60px 0;
}

.f-partner {
    padding-bottom: 30px;
    border-bottom: 2px solid #3d5aa1;
}

.f-partner .f-partner-tit {
    margin-top: 10px;
    font-size: 40px;
    font-weight: lighter;
    color: #fff;
    width: 13%;
}

.f-partner .f-partner-main {
    width: 82%;
}

.f-partner .f-partner-main ul li a {
    margin: 0 20px;
    display: block;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.f-partner .f-partner-main ul li .blockimg {
    padding-bottom: 42.96875%;
    background-size: contain;
    background-color: #fff;
    box-shadow: 12px 0 20px rgba(45, 48, 60, 0.08);
}

.f-partner .slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    background: none;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(11, 49, 139, 0.1);
}

.f-partner .slick-arrow:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #516cac;
    border-right: 2px solid #516cac;
    left: 50%;
    top: 50%;
    margin: -5px 0 0 -5px;
    transform: rotate(-135deg);
}

.f-partner .slick-arrow:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.f-partner .slick-next:after {
    transform: rotate(45deg);
}

.n-foot-main {
    padding: 100px 0 40px 0;
    color: #fff;
    font-weight: 100;
}

.n-foot-main a {
    color: #fff;
}

.n-foot-main .n-foot-left p {
    font-size: 24px;
    margin: 0 0 10px 0;
}

.n-foot-main .n-foot-left span {
    font-size: 14px;
}

.n-foot-main .n-foot-right ul {
    display: inline-block;
    position: relative;
    top: 10px;
}

.n-foot-main .n-foot-right ul li {
    float: left;
    position: relative;
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.n-foot-main .n-foot-right ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.n-foot-main .n-foot-right ul li.facebook a {
    background: url(../images/icon.png) no-repeat 0 0;
}

.n-foot-main .n-foot-right ul li.in a {
    background: url(../images/icon.png) no-repeat -41px 0;
}

.n-foot-main .n-foot-right ul li.er a {
    background: url(../images/icon.png) no-repeat -81px 0;
}

.n-foot-main .n-foot-right ul li .er-box {
    position: absolute;
    top: -75px;
    left: -20px;
    width: 70px;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.n-foot-main .n-foot-right ul li:hover .er-box {
    transform: scale(1);
    -webkit-transform: scale(1);
}

@media(min-width:1601px) {
    .f-partner .slider {
        margin-left: -20px;
        margin-right: -20px;
    }

    .f-partner .slick-prev {
        right: -50px;
        top: 30%;
    }

    .f-partner .slick-next {
        right: -45px;
        top: 70%;
    }
}

@media(max-width:1600px) {
    .f-partner .slider {
        padding: 0 20px;
    }

    .f-partner .slick-prev {
        right: -5px;
        top: 30%;
    }

    .f-partner .slick-next {
        right: 0;
        top: 70%;
    }
}

@media (max-width:1440px) {
    .f-partner .f-partner-tit {
        font-size: 35px;
        width: 12%;
    }

    .f-partner .f-partner-main {
        width: 85%;
    }
}

@media (max-width:1366px) {
    .f-partner .f-partner-tit {
        font-size: 30px;
        margin-top: 0;
        width: 12%;
    }

    .f-partner .f-partner-main {
        width: 85%;
    }
}

@media (max-width:1024px) {
    .f-partner .slider {
        padding: 0;
    }

    .f-partner .f-partner-tit {
        font-size: 25px;
        margin-top: 10px;
        width: 15%;
        font-size: 20px;
    }

    .f-partner .f-partner-main {
        width: 80%;
    }

    .n-foot-main {
        padding: 30px 0;
    }

    .n-foot-main .n-foot-left p {
        font-size: 18px;
    }
}

@media (max-width:640px) {
    .f-partner .slider {
        padding: 0;
    }

    .f-partner .f-partner-tit {
        margin-top: 10px;
        font-size: 30px;
        width: 15%;
        font-size: 20px;
    }

    .f-partner .f-partner-main {
        width: 80%;
    }

    .n-foot-main .n-foot-right {
        float: left;
    }
}


/* 内页bottom end */

.n-main {
    padding: 100px 0;
}


/* 公司介绍 */
.n-ban {
    /* margin-top:125px; */
}

.n-ban-box {
    position: relative;
}

.ban-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
}

.ban-txt .ban-txt-box p {
    font-size: 30px;
    font-weight: lighter;
    margin: 0;
    line-height: 50px;
}

.ban-txt .ban-txt-box span {
    font-size: 20px;
    font-weight: lighter;
}

.ban-txt .n-nav {
    margin: 30px 0;
}

.ban-txt .n-nav ul li {
    display: inline-block;
    margin-right: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
}

.ban-txt .n-nav ul li a {
    font-size: 24px;
    font-weight: lighter;
    color: #fff;
}

.ban-txt .n-nav ul li:hover {
    border-bottom: 2px solid #fff;
}

.ban-txt .n-nav ul li.active {
    border-bottom: 2px solid #fff;
}

.ban-txt-color {
    color: #0c318a;
}

.ban-txt-color .n-nav ul li a {
    font-size: 20px;
    font-weight: lighter;
    color: #fff;
}

.ban-txt-color .n-nav ul li:hover {
    border-bottom: 2px solid #fff;
}

.ban-txt-color .n-nav ul li.active {
    border-bottom: 2px solid #0c318a;
}

.p-search {
    margin-top: -20px;
}

/* .p-search .p-select, .p-search .search-box{display: inline-block;} */
.p-search .p-select {
    height: 55px;
    width: 150px;
    line-height: 55px;
    background: #fff;
    border-radius: 55px;
    text-align: center;
    position: relative;
    float: left;
}

.p-search .p-select .select-box {
    background: #fff;
    position: absolute;
    top: 58px;
    left: 0;
    border-radius: 10px;
    line-height: 30px;
    text-align: center;
    display: none;
    width: 150%;
    z-index: 999;
}

.p-search .p-select .select-box ul li {
    margin-right: 0;
}

.p-search .p-select .select-box ul li a {
    font-size: 16px;
}

.p-search .p-select p {
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 50px;
}

.p-search .p-select p img {
    display: inline-block;
    margin-left: 10px;
}

.p-search .search-box {
    height: 55px;
    width: 350px;
    background: rgba(12, 49, 138, 0.8);
    border-radius: 55px;
    position: relative;
    float: left;
}

.p-search .search-box input {
    color: #fff;
    ;
    font-size: 16px;
    height: 100%;
    border: none;
    background: none;
    padding: 0 10px 0 20px;
    width: 70%;
}

.p-search .search-box button {
    height: 100%;
    border: none;
    background: none;
    margin-right: 10px;
}

.p-search .search-box input::-webkit-input-placeholder {
    color: #fff;
}

.p-search .search-box input::-moz-placeholder {
    color: #fff;
}

/* firefox 19+ */
.p-search .search-box input:-ms-input-placeholder {
    color: #fff;
}

/* Internet Explorer 10+ */
.p-search .search-box input:-moz-placeholder {
    color: #fff;
}

/* firefox 14-18 */



.n-about {
    /* background:url(../images/n-bg.png) no-repeat top center; */
    background-size: 100%;
    background: none;
}

.n-tit {
    font-size: 40px;
    padding: 0 0 80px 0;
}

.n-tit:after {
    display: block;
    margin: 20px 0 0 0;
    width: 58px;
    height: 4px;
    background: #0b318b;
    border-left: 29px solid #0ec54d;
    content: '';
}

.n-tit1 {
    text-align: center;
}

.n-tit1:after {
    margin: 20px auto 0;
}

.n-tit2 {
    font-size: 40px;
    padding: 0 0 30px 0;
    color: #fff;
}

.n-tit2:after {
    display: block;
    margin: 20px auto 0;
    width: 58px;
    height: 4px;
    background: #fff;
    border-left: 29px solid #0ec54d;
    content: '';
}

@media(max-width:1024px) {
    .n-main {
        padding: 50px 0;
    }

    .n-ban {
        margin-top: 0;
    }

    .ban-txt .ban-txt-box p {
        font-size: 20px;
        line-height: 30px;
    }

    .ban-txt .ban-txt-box span {
        font-size: 16px;
    }

    .ban-txt .n-nav ul li {
        margin-right: 10px;
    }

    .ban-txt .n-nav ul li a {
        font-size: 16px;
    }

    .n-tit {
        font-size: 25px;
    }
}

@media(max-width:768px) {
    .n-tit {
        padding: 10px 0;
        font-size: 32px;
    }
}

@media(max-width:480px) {
    .n-tit {
        font-size: 24px;
    }
}

.n-about .n-about-left {
    width: 60%;
    font-size: 16px;
}

.n-about .n-about-left .n-about-con {
    height: 350px;
    overflow: auto;
    padding-right: 30px;
    line-height: 40px;
}

.n-about .n-about-left .n-about-con p {
    text-indent: 2em;
}

.n-about .n-about-right {
    width: 35%;
}

.n-about .n-about-right .n-about-img img {
    width: 100%;
}

.n-about .n-about-left .n-about-con::-webkit-scrollbar {
    width: 6px;
}

.n-about .n-about-left .n-about-con::-webkit-scrollbar-track {
    background-color: #e5e5e5;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

.n-about .n-about-left .n-about-con::-webkit-scrollbar-thumb {
    background-color: #0b318b;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

.n-about .links {
    /* margin-top:100px; */
}

.n-about .links li {
    float: left;
    width: 30%;
    text-align: center;
    font-size: 16px;
    color: #999;
    margin-right: 2.5%;
}

.n-about .links li:nth-child(3n) {
    /* float: right; */
    margin-right: 0%;
}

.n-about .links li:nth-child(3n) {
    /* margin-right: 2.5%; */
}

.n-about .links li .pic {
    position: relative;
    border: 1px solid #eee;
    padding: 24px;
    /* margin-bottom: 15px; */
}

.n-about .links li .blockimg {
    background-size: contain;
    padding-bottom: 63.83%;
}

.n-about .links li .pic:before,
.n-about .links li .pic:after {
    position: absolute;
    content: '';
    width: 25px;
    height: 15px;
    transition: 0.5s;
}

.n-about .links li .pic:before {
    left: 0;
    top: 0;
    border-top: 2px solid #0b318b;
    border-left: 2px solid #0b318b;
}

.n-about .links li .pic:after {
    right: 0;
    bottom: 0;
    border-right: 2px solid #0b318b;
    border-bottom: 2px solid #0b318b;
}

.n-about .links li:hover .pic:before,
.n-about .links li:hover .pic:after {
    width: 100%;
    height: 100%;
}

.n-about .links li .dot {
    font-size: 16px;
    color: #0b318b;
    height: 80px;
    line-height: 80px;
}

@media(max-width:1024px) {
    .n-about .n-about-left {
        width: 100%;
    }

    .n-about .n-about-left .n-about-con {
        height: 365px;
    }

    .n-about .n-about-right {
        width: 100%;
        margin-top: 10px;
    }

    .n-about .links li {
        width: 100%;
    }

    .n-about .links li:nth-child(3) {
        margin: 0;
    }

    .n-about .n-about-left .n-about-con {
        padding-right: 0;
    }
}

@media(max-width:768px) {
    .ban-txt .ban-txt-box {
        display: none;
    }

    .ban-txt .n-nav {
        margin: 0;
    }

    .ban-txt .n-nav ul li {
        margin-right: 5px;
    }

    .ban-txt .n-nav ul li a {
        font-size: 12px;
    }
}


/* 董事长致辞 */
.dsz {
    margin: 100px 0;
}

.dsz .dsz-box {
    background: #eef3ff;
    border-radius: 50px 0 50px 0;
}

.dsz .dsz-box .dsz-bg {
    background: url(../images/dsz-bg.png) no-repeat bottom center;
    background-size: 100%;
    padding: 30px 100px;
}

.dsz .dsz-box .dsz-bg .dsz-left {
    width: 35%;
}

.dsz .dsz-box .dsz-bg .dsz-left .dsz-img img {
    width: 100%;
}

.dsz .dsz-box .dsz-bg .dsz-right {
    width: 60%;
    padding-top: 50px;
    line-height: 30px;
}

.dsz .dsz-box .dsz-bg .dsz-right .n-dsz-con p {
    font-size: 16px;
    text-indent: 2em;
}

.dsz .dsz-box .dsz-bg .dsz-right .n-dsz-con p.p-color {
    color: #0b318b;
    text-indent: 0;
    margin-top: 30px;
}

@media(max-width:1024px) {
    .dsz .dsz-box .dsz-bg {
        padding: 20px;
    }
}

@media(max-width:768px) {
    .dsz .dsz-box .dsz-bg .dsz-left {
        width: 100%;
        margin-bottom: 10px;
    }

    .dsz .dsz-box .dsz-bg .dsz-right {
        width: 100%;
    }
}

/* 发展历程 */
.dev {
    background: url(../images/dev-bg.png) no-repeat bottom center;
    background-size: 100%;
    padding: 100px 0;
}

.dev .dev-box .dev-list .dev1 {
    width: 45%;
}

.dev .dev-box .dev-list .dev-center {
    width: 10%;
    margin: 0 auto;
}

.dev .dev-box .dev-list .dev-center .dev-cen-box {
    width: 40px;
    height: 40px;
    border: 1px solid #ccd6ed;
    border-radius: 50%;
    margin: 0 auto;
    box-sizing: border-box;
}

.dev .dev-box .dev-list .dev-center .dev-cen-box .cen-dian {
    background: #1c51cd;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin: 9px auto;
}

.dev .dev-box .dev-line {
    height: 100px;
    width: 1px;
    background: #ccd6ed;
    margin: 0 auto;
}

.dev .dev-box .dev-list .dev1 .dev_1 {
    display: inline-block;
}

.dev .dev-box .dev-list .dev1 .dev-img {
    width: 153px;
    height: 96px;
    border-radius: 30px 0 30px 0;
    overflow: hidden;
}

.dev .dev-box .dev-list .dev1 .dev-img img {
    width: 100%;
}

.dev .dev-box .dev-list .dev1 .dev-txt p {
    color: #1c51cd;
    font-size: 18px;
    margin: 0;
}

.dev .dev-box .dev-list .dev1 .dev-txt p strong {
    font-size: 36px;
}

.dev .dev-box .dev-list .dev1 .dev-txt span {
    font-size: 16px;
}

.dev .dev-box .dev-list .dev-left {
    text-align: right;
}

.dev .dev-box .dev-list .dev-left .dev-txt {
    margin-right: 20px;
}

.dev .dev-box .dev-list .dev-right {
    text-align: left;
    margin-top: -40px;
}

.dev .dev-box .dev-list .dev-right .dev-txt {
    margin-left: 20px;
}

.dev .dev-box .dev-list .dev1 .dev-txt {
    position: relative;
    top: -10px;
}

.dev .dev-box .dev-more {
    width: 50px;
    height: 50px;
    border: 1px solid #ccd6ed;
    border-radius: 50%;
    margin: 0 auto;
    text-align: center;
    line-height: 50px;
}

.dev .dev-box .dev-more img {
    transition: all .5s;
    -webkit-transition: all .5s;
}

.dev .dev-box .dev-part2 {
    display: none;
}

.dev .dev-box .dev-more.on img {
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
}


@media(max-width:1024px) {
    .dev .dev-box .dev-list .dev1 .dev-img {
        width: 100px;
        height: 63px;
        display: none;
    }

    .dev .dev-box .dev-list .dev1 .dev-txt p {
        font-size: 14px;
    }

    .dev .dev-box .dev-list .dev1 .dev-txt p strong {
        font-size: 16px;
    }

    .dev .dev-box .dev-list .dev1 .dev-txt span {
        font-size: 14px;
    }

    .dev .dev-box .dev-list .dev-center .dev-cen-box {
        width: 30px;
        height: 30px;
    }

    .dev .dev-box .dev-list .dev-center .dev-cen-box .cen-dian {
        width: 10px;
        height: 10px;
    }
}



/* 企业文化 */
.culture {
    background: url(../images/culture-bg.png) no-repeat bottom left;
}

.culture-box {
    padding: 100px 0;
}

.culture-box .cul-list {
    float: left;
    width: 31.33%;
    border-radius: 50px 0 50px 0;
    overflow: hidden;
    min-height: 527px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.culture-box .cul-list1 {
    background: url(../images/cul1.png) no-repeat;
    background-size: 100% 100%;
}

.culture-box .cul-list2 {
    background: url(../images/cul2.png) no-repeat;
    background-size: 100% 100%;
    margin: 0 3%;
    margin-top: 100px;
}

.culture-box .cul-list3 {
    background: url(../images/cul3.png) no-repeat;
    background-size: 100% 100%;
}

.culture-box .cul-list .cul-list-box {
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.culture-box .cul-list .cul-list-box p {
    font-size: 30px;
    margin: 20px 0 8px 0;
}

.culture-box .cul-list .cul-list-box b {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: #fff;
}

.culture-box .cul-list .cul-list-box .cul-content p {
    font-size: 16px;
    line-height: 30px;
}

.culture-box .cul-list:hover {
    background-size: 120% 120%;
}


/* 荣誉资质 */
.honor .honor-box .slider .n-honor-list .n-honor-img {
    padding: 5px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    margin: 0 10px;
    background: #fff;
    overflow: hidden;
}

.honor .honor-box .slider .n-honor-list .n-honor-img img {
    width: 100%;
    max-height: 450px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.honor .honor-box .slider .n-honor-list p {
    text-align: center;
    font-size: 16px;
    padding: 10px 0 0 0;
}

.honor .honor-box .slider .n-honor-list .n-honor-img:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    box-shadow: 0 0 10px #ddd;
}

.honor .slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    background: #e7e7e7;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none
}

.honor .slick-arrow:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #0c318a;
    border-right: 2px solid #0c318a;
    left: 50%;
    top: 50%;
    margin: -5px 0 0 -5px;
    transform: rotate(-135deg);
}

.honor .slick-next:after {
    transform: rotate(45deg);
}

.honor .slick-arrow:hover {
    background: #0c318a;
}

.honor .slick-arrow:hover:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    left: 50%;
    top: 50%;
    margin: -5px 0 0 -5px;
    transform: rotate(-135deg);
}

.honor .slick-next:hover:after {
    transform: rotate(45deg);
}

@media(min-width:1601px) {
    .honor .slider {
        margin-left: -20px;
        margin-right: -20px;
    }

    .honor .slick-prev {
        left: -60px;
    }

    .honor .slick-next {
        right: -60px;
    }
}

@media(max-width:1600px) {
    .honor .slider {
        padding: 0 40px;
    }

    .honor .slick-prev {
        left: 0;
    }

    .honor .slick-next {
        right: 0;
    }
}

@media(max-width:1024px) {
    .culture-box .cul-list {
        width: 100%;
    }

    .culture-box .cul-list2 {
        margin: 10px 0;
    }
}

@media(max-width:640px) {
    .honor .honor-box .slider .n-honor-list .n-honor-img {
        height: 280px;
    }

    .honor .honor-box .slider .n-honor-list .n-honor-img img {
        max-height: 280px;
        width: auto;
        max-width: 100%;
    }
}


/* 研发技术 */
.yf .yf-part1 .yf-part1-con {
    padding: 100px 0;
    background: Url(../images/yf.jpg) no-repeat;
    background-size: cover;
    color: #fff;
}

.yf .yf-part1 .yf-part1-con .yf-part1-tit {
    text-align: center;
}

.yf .yf-part1 .yf-part1-con .yf-part1-tit p {
    line-height: 50px;
    font-size: 40px;
    margin: 0;
    font-weight: lighter;
}

.yf .yf-part1 .yf-part1-con .yf-part1-tit span {
    font-size: 20px;
    font-weight: lighter;
}

.yf .yf-part1 .yf-part1-con .yf-part1-menu {
    margin-top: 50px;
}

.yf .yf-part1 .yf-part1-con .yf-part1-list {
    float: left;
    width: 50%;
}

.yf .yf-part1 .yf-part1-con .yf-part1-list {
    padding: 0 120px;
    text-align: center;
}

.yf .yf-part1 .yf-part1-con .yf-part1-list .yf-list-img {
    width: 290px;
    height: 290px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.yf .yf-part1 .yf-part1-con .yf-part1-list .yf-list-img img {
    width: 100%;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.yf .yf-part1 .yf-part1-con .yf-part1-list .yf-list-img:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.yf .yf-part1 .yf-part1-con .yf-part1-list p {
    font-size: 21px;
    margin: 10px 0;
    font-family: syr;
}

.yf .yf-part1 .yf-part1-con .yf-part1-list span p {
    font-size: 16px !important;
    display: block;
    font-family: syr;
}

@media(max-width:1024px) {
    .yf .yf-part1 .yf-part1-con .yf-part1-list {
        padding: 0 50px;
    }

    .yf .yf-part1 .yf-part1-con .yf-part1-list .yf-list-img {
        width: 150px;
        height: 150px;
    }

    .yf .yf-part1 .yf-part1-con .yf-part1-list p {
        font-size: 16px;
    }

    .yf .yf-part1 .yf-part1-con .yf-part1-list span {
        font-size: 13px;
    }

    .yf .yf-part1 .yf-part1-con .yf-part1-tit p {
        font-size: 25px;
        line-height: 40px;
    }

    .yf .yf-part1 .yf-part1-con .yf-part1-tit span p {
        font-size: 14px;
    }

}

@media(max-width:768px) {
    .yf .yf-part1 .yf-part1-con .yf-part1-list {
        width: 100%;
        margin-bottom: 20px;
        padding: 0 20px;
    }
}

/* 技术链条 */
.yf-part2 {
    background: url(../images/yf-bg.png) no-repeat top center;
    background-size: 100%;
    margin: 0;
    position: relative;
}

.yf-part2 .jslt-tit {
    position: absolute;
    top: 100px;
    left: 20%;
    text-align: left;
}

.yf-part2 .jslt-tit::after {
    margin: 20px 0 0 0 !important;
}

.jslt .jslt-img {
    text-align: center;
}

@media(max-width:1024px) {
    .yf-part2 {
        margin-top: 30px;
    }
}

/* 功能模块 */
.gnmk {
    margin: 0 0 80px 0;
}

.gnmk .gnmk-box {
    width: 100%;
    border-radius: 50px 0 50px 0;
    overflow: hidden;
}

.gnmk .gnmk-box .gnmk-bg {
    background: url(../images/gnmk-bg.jpg) no-repeat;
    background-size: cover;
    padding: 60px 0 160px 0;
}

.gnmk .gnmk-box .gnmk-con {
    text-align: center;
}

.gnmk .gnmk-box .gnmk-con ul li {
    position: relative;
    display: inline-block;
    width: 168px;
    height: 188px;
    background: url(../images/gnmk-icon-bg.png) no-repeat;
    background-size: cover;
    margin: 0 15px;
    padding-top: 50px;
    color: #0c318a;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.gnmk .gnmk-box .gnmk-con ul li:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.gnmk .gnmk-box .gnmk-con ul li:nth-child(2n) {
    position: relative;
    top: 100px;
}

.gnmk .gnmk-box .gnmk-con ul li img {
    transition: all .5s;
    -webkit-transition: all .5s;
}

.gnmk .gnmk-box .gnmk-con ul li:hover img {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

/* 配套资源 */
.ptzy .ptzy-list {
    margin: 0 10px;
    transition: all .5s;
}

.ptzy .ptzy-list .ptzy-img {
    overflow: hidden;
}

.ptzy .ptzy-list .ptzy-img img {
    width: 100%;
    transition: all .5s;
}

.ptzy .ptzy-list:hover .ptzy-img {
    box-shadow: 0 0 10px #ddd;
}

.ptzy .ptzy-list:hover .ptzy-img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.ptzy .ptzy-list p {
    text-align: center;
    font-size: 18px;
}

.ptzy .slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    background: #e7e7e7;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none
}

.ptzy .slick-arrow:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #0c318a;
    border-right: 2px solid #0c318a;
    left: 50%;
    top: 50%;
    margin: -5px 0 0 -5px;
    transform: rotate(-135deg);
}

.ptzy .slick-next:after {
    transform: rotate(45deg);
}

.ptzy .slick-arrow:hover {
    background: #0c318a;
}

.ptzy .slick-arrow:hover:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    left: 50%;
    top: 50%;
    margin: -5px 0 0 -5px;
    transform: rotate(-135deg);
}

.ptzy .slick-next:hover:after {
    transform: rotate(45deg);
}



@media(min-width:1601px) {
    .ptzy .slider {
        margin-left: -20px;
        margin-right: -20px;
    }

    .ptzy .slick-prev {
        left: -60px;
    }

    .ptzy .slick-next {
        right: -60px;
    }
}

@media(max-width:1600px) {
    .ptzy .slider {
        padding: 0 40px;
    }

    .ptzy .slick-prev {
        left: 0;
    }

    .ptzy .slick-next {
        right: 0;
    }
}

@media(max-width:1200px) {
    .gnmk .gnmk-box .gnmk-con ul li {
        width: 120px;
        height: 134px;
        padding-top: 40px;
    }

    .gnmk .gnmk-box .gnmk-con ul li img {
        height: 30px;
    }
}

@media(max-width:1024px) {
    .gnmk .gnmk-box .gnmk-bg {
        padding: 30px 0;
    }

    .gnmk .gnmk-box .gnmk-con ul li {
        margin-bottom: 10px;
    }

    .gnmk .gnmk-box .gnmk-con ul li:nth-child(2n) {
        top: 0;
    }
}



/* 研发技术 :end */



@keyframes down {
    0% {
        transform: translateY(-5px);
        opacity: 1;
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(5px);
        opacity: 0;
    }
}

@-webkit-keyframes down {
    0% {
        -webkit-transform: translateY(-5px);
        opacity: 1;
    }

    50% {
        -webkit-transform: translateY(5px);
    }

    100% {
        -webkit-transform: translateY(5px);
        opacity: 0;
    }
}


@media(max-width:992px) {
    .pro-info .p-down {
        width: 100%;
        margin-left: 0;
    }

    .pro-info .p-down::after {
        content: '';
        display: block;
        clear: both;
    }

    .pro-info .p-down .pro-download {
        width: 100%;
        float: left;
        margin-left: 0%;
    }
}

.pro-info .pro-download .download:hover .download-icon img {
    animation: down 1s infinite;
    -webkit-animation: down 1s infinite;
}



.pro-info .pro-info-gg {
    padding-top: 50px;
    border-top: 3px solid #d7dae3;
    margin-top: 80px;
}

.pro-info .pro-info-table table {
    width: 100%;
}

.pro-info .pro-info-table table tr td {
    padding-left: 20px;
    border: 1px solid #d7dae3;
    line-height: 40px;
}

.pro-info .go-back {
    text-align: center;
    margin-top: 50px;
}

.pro-info .go-back a {
    display: inline-block;
    padding: 5px 15px;
    background: #0c318a;
    border-radius: 10px 0 10px 0;
    color: #fff;
}

/* 产品详情弹出层 */




@media(min-width:1601px) {
    .yy-box .yy-list .yy-list-img .slider {
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media(max-width:1024px) {
    .culture-box .cul-list {
        width: 100%;
    }

    .culture-box .cul-list2 {
        margin: 10px 0;
    }

    .p-search {
        display: none;
    }

    .pro-info {
        padding: 20px;
    }

    .pro-info h3 {
        font-size: 20px;
    }

    .pro-info .pro-info-box .pro-info-tit {
        width: 100%;
    }

    .pro-info .pro-info-box .pro-info-con {
        width: 100%;
    }

    .pro-info .pro-info-box .pro-info-con .pro-info-txt {
        width: 100%;
    }

    .pro-info .pro-download {
        margin: 30px 0;
    }

    .pro-info .pro-download .pro-download-tit {
        width: 70%;
    }

    .pro-info .pro-download .download {
        width: 30%;
    }

    .pro-info .pro-download .download span {
        display: none;
    }

    .pro-info .pro-info-table table tr td {
        padding-left: 5px;
        font-size: 12px;
    }

    .modal .modal-box .modal-form {
        width: 350px;
        height: 320px;
    }

    .modal .modal-box .modal-form h3 {
        font-size: 18px;
        margin: 0 0 10px 0;
    }

    .modal .modal-box .modal-form .modal-input {
        height: 35px;
        line-height: 35px;
    }

    .modal .modal-box .modal-form .modal-input .modal-input-name {
        width: 30%;
    }

    .modal .modal-box .modal-form .modal-input .modal-input-box {
        width: 60%;
    }

    .modal .modal-box .modal-form .modal-button button {
        height: 35px;
    }


}



/* 新闻中心 */
.n-news .n-news-list {
    border: 1px solid #0c318a;
    border-radius: 50px 0 50px 0;
    padding: 40px;
    margin-bottom: 30px;
    transition: all .5s;
}

.n-news .n-news-list .n-news-img {
    width: 30%;
}

.n-news .n-news-list .n-news-img img {
    width: 100%;
}

.n-news .n-news-list .n-news-con {
    width: 65%;
}

.n-news .n-news-list .n-news-con h3 {
    color: #0b318b;
    font-size: 20px;
    font-weight: lighter;
}

.n-news .n-news-list .n-news-con p {
    color: #adb2c0;
    padding-bottom: 20px;
    font-size: 16px;
}

.n-news .n-news-list .n-news-con .news-time {
    padding: 30px 0 0 0;
    border-top: 1px solid #ced6ea;
}

.n-news .n-news-list .n-news-con .news-time .news-time-box {
    color: #c2c7d3;
}

.n-news .n-news-list .n-news-con .news-time .news-time-box span {
    color: #959aa8;
}

.n-news .n-news-list .n-news-con .news-time .news-more {
    width: 95px;
    height: 28px;
    background: #0b318b;
    border-radius: 10px 0 10px 0;
    text-align: center;
    line-height: 28px;
}

.n-news .n-news-list:hover {
    box-shadow: 0 10px 20px #e0eaff;
}

@media(max-width:1024px) {
    .n-news .n-news-list {
        padding: 20px;
    }

    .n-news .n-news-list .n-news-img {
        width: 100%;
    }

    .n-news .n-news-list .n-news-con {
        width: 100%;
    }

    .n-news .n-news-list .n-news-con h3 {
        font-size: 16px;
    }

    .n-news .n-news-list .n-news-con p {
        font-size: 14px;
    }
}

/* 新闻详情 */
.news-info .news-info-title {
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.news-info .news-info-title h3 {
    font-size: 26px;
    padding: 10px 0;
}

.news-info .news-info-title .date {
    color: #808080;
    padding: 5px 0 0 0;
}

.news-info .news-info-title .bshare-custom {
    display: inline-block;
}

.news-info .news-info-content {
    margin: 50px 0 100px 0;
    font-size: 16px;
    line-height: 40px;
}

.news-info .news-info-content img {
    margin: 0 auto;
    display: block;
}

.news-info .news-info-content p {
    text-indent: 2em;
    line-height: 28px;
}

.prev-next .prev-next-box {
    width: 50%;
    padding: 20px 0;
    border-top: 1px dotted #eee;
}

.prev-next .prev-next-box.next_1 {
    text-align: right;
}

@media(max-width:1024px) {
    .news-info .news-info-title h3 {
        font-size: 16px;
    }

    .prev-next .prev-next-box {
        width: 100%;
    }

    .prev-next .prev-next-box.next_1 {
        text-align: left;
    }
}

/* 岗位申请 */
.job {
    margin: 50px 0;
}

.job .job-list {
    border: 1px solid #eee;
    border-left: 5px solid #ced6ea;
    margin-bottom: 20px;
    cursor: pointer;
}

.job .job-list .job-name {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
}

.job .job-list .job-name .span0 {
    font-size: 18px;
    font-weight: bold;
}

.job .job-list .job-name .job-more {
    float: right;
    width: 55px;
    height: 25px;
    margin-top: 12px;
    line-height: 25px;
    border-radius: 10px 0 10px 0;
    text-align: center;
    color: #fff;
    background: #0c318a;
}

.job .job-list .job-name .job-more2 {
    display: none;
}

.job .job-list.on {
    border-left: 5px solid #0c318a;
}

.job .job-list.on .job-name .job-more1 {
    display: none;
}

.job .job-list.on .job-name .job-more2 {
    display: inline-block;
}

.job .job-list .job-detail {
    padding: 0 50px;
    display: none;
}

.job .job-list .job-detail .yq {
    margin-bottom: 20px;
}

.job .job-list .job-detail .yq h3 {
    font-weight: normal;
    margin-bottom: 10px;
    position: relative;
}

.job .job-list .job-detail .yq h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d2d2d2;
    position: absolute;
    top: 12px;
    left: -20px;
}

.job .job-list .job-detail p.warn {
    color: #df1616;
    font-size: 14px;
}

.job .job-list .job-detail a.sq {
    display: block;
    width: 100px;
    height: 27px;
    line-height: 27px;
    background: #0ec54d;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border-radius: 27px;
    margin: 20px 0 40px;
}

@media(max-width:1024px) {
    .job .job-list .job-detail {
        padding: 0 30px;
    }
}

.Jobbox {
    line-height: 38px;
    width: 68%;
    position: relative;
    padding: 4%;
    border-radius: 10px;
    margin: 20px auto;
    background: #fff;
}

.Jobtit {
    text-align: center;
    color: #333;
    padding-bottom: 3%;
    font-size: 24px;
}

.Jobitem {
    color: #222222;
}

.Jobitem dd {
    margin-bottom: 8px;
    width: 33.333%;
    float: left;
}

.Jobtit2 {
    font-size: 18px;
    color: #0080af;
}

.jobbtn {
    display: block;
    margin-top: 5%;
    color: #fff;
    font-size: 18px;
    width: 140px;
    line-height: 45px;
    text-align: center;
    background: #d7b36f;
    border-radius: 20px;
}

.Jobbox .mfp-close {
    border-radius: 50%;
    background: #0c318a;
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    opacity: 1;
    width: 39px;
    height: 39px;
    position: absolute;
    right: -15px;
    top: -15px;
}

.mfp-close-btn-in .mfp-close {
    color: #fff !important;
}

.JobForm {
    color: #666666;
    margin: 0px 0px 0px 0px;
}

.JobForm dl {
    width: 48%;
    float: left;
    padding-left: 1%;
    line-height: 28px;
}

.JobForm dl dt {
    width: 22%;
    float: left;
    text-align: right;
    padding: 5px 2% 5px 0;
}

.JobForm dl dd {
    width: 70%;
    float: left;
}

.JobForm dl.other {
    width: 99%;
    float: none;
    padding-left: 1%;
}

.JobForm dl.other dt {
    width: 10.8%;
    padding-right: 1%;
}

.JobForm dl.other dd {
    width: 84%;
}

.JobForm dd {
    padding: 5px 0px;
}

.JobForm .input {
    background: #fff;
    border: 1px solid #dbdbdb;
    width: 99%;
    height: 28px;
    line-height: 28px;
}

.JobForm .input2 {
    background: #fff;
    border: 1px solid #dbdbdb;
    width: 99%;
    height: 116px;
    line-height: 23px;
}

.JobForm select {
    border: 1px solid #dbdbdb;
    width: 190px;
    height: 23px;
    line-height: 23px;
}

.JobForm .sendbtn {
    cursor: pointer;
    color: #fff;
    width: 120px;
    height: 40px;
    font-size: 16px;
    background: #0c318a;
    margin-right: 8px;
    border: none;
}

.JobForm .resetbtn {
    cursor: pointer;
    color: #fff;
    width: 120px;
    height: 40px;
    font-size: 16px;
    background: #999;
    border: none;
}

@media (max-width:768px) {
    .Jobtit {
        font-size: 18px;
    }

    .JobForm dl {
        width: auto;
        float: none;
        padding-left: 0%;
    }

    .JobForm dl.other {
        width: auto;
        padding-left: 0%;
    }

    .JobForm dl dt {
        width: 25%;
    }

    .JobForm dl dd {
        width: 70%;
    }

    .JobForm dl.other dt {
        width: 25%;
    }

    .JobForm dl.other dd {
        width: 70%;
    }

    .JobForm .sendbtn {
        width: 100px;
        height: 35px;
    }

    .JobForm .resetbtn {
        width: 100px;
        height: 35px;
    }

    .Jobbox {
        width: 92%;
    }

    .Jobbox .mfp-close {
        right: 0;
        top: 0;
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 30px;
    }
}


/* 联系我们 */
.contact .con-tit {
    font-size: 40px;
    font-weight: 100;
    padding: 0 0 10px 0;
    border-bottom: 2px solid #333;
}

.contact .con-box {
    margin: 50px 0;
}

.contact .con-box .con-part {
    width: 40%;
}

.contact .con-box .con-part-1 {
    width: 30%;
    padding: 0 30px;
    border-left: 1px solid #c8d3e0;
}

.contact .con-box .con-part .con-add h3 {
    font-size: 28px;
    margin: 0 0 15px 0;
}

.contact .con-box .con-part .con-add strong {
    font-size: 20px;
    font-weight: bold;
    color: #0b318b;
}

.contact .con-box .con-part .con-add p {
    font-size: 16px;
    margin: 5px 0 0 0;
}

.contact .con-box .con-part .con-tel {
    margin-top: 30px;
}

.contact .con-box .con-part .con-tel ul li {
    padding: 20px 0 0 0;
}

.contact .con-box .con-part .con-tel ul h1 {
    font-size: 16px;
    margin: 0;
}

.contact .con-box .con-part .con-tel1 ul {
    float: left;
    width: 50%;
}

.contact .con-box .con-part .con-tel1 ul li {
    padding: 4px 0;
}

.contact .map {
    margin: 100px 0;
    position: relative;
}

.contact .map .map-img {
    width: 60%;
}

.contact .map .map-img img {
    width: 100%;
}

.contact .map .map-txt {
    width: 30%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.contact .map .map-txt p {
    font-size: 30px;
    font-weight: bold;
    color: #0b318b;
    margin: 0 0 10px 0;
}

.contact .map .map-txt b {
    display: block;
    width: 20px;
    height: 3px;
    background: #ced6ea;
    margin: 20px 0;
}

.contact .map .map-txt span {
    font-size: 16px;
    color: #0b318b;
    line-height: 30px;
}

.message .message-left {
    width: 35%;
}

.message .message-left .message-tit {
    border: 1px solid #ced6ea;
    width: 60%;
    padding: 50px 50px 50px 30px;
    border-radius: 30px 0 30px 0;
    margin-left: 50px;
    box-shadow: 10px 10px 10px #f3f6ff;
    ;
}

.message .message-left .message-tit .zs {
    margin: 10px 0;
}

.message .message-left .message-tit .zs1 {
    text-align: right;
}

.message .message-left .message-tit p {
    font-size: 40px;
    margin: 0 0 20px 0;
}

.message .message-right {
    width: 65%;
}

.message .message-right form {
    width: 100%;
}

.message .message-right form .form-list {
    margin-left: -2%;
}

.message .message-right form .input-box {
    position: relative;
    padding: 8px 0;
    border-bottom: 2px solid #ddd;
    margin: 15px 0;
}

.message .message-right form .input-box1 {
    width: 31.33%;
    margin-left: 2%;
    float: left;
}

.message .message-right form .input-box input {
    width: 100%;
    height: 100%;
    border: none;
    text-indent: 3em;
    font-size: 16px;
}

.message .message-right form .input-box img {
    position: absolute;
    top: 8px;
    left: 0;
}

.message .message-right form .input-box textarea {
    width: 100%;
    height: 120px;
    border: none;
    text-indent: 3em;
    font-size: 16px;
    resize: none;
}

.message .message-right form .form-button {
    margin-top: 20px;
    text-align: right;
}

.message .message-right form .form-button .tj {
    height: 50px;
    width: 150px;
    border: none;
    background: #1f4dbd;
    border-radius: 20px 0 20px 0;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

@media (max-width:1024px) {
    .contact .con-tit {
        font-size: 20px;
    }

    .contact .con-box .con-part {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact .con-box .con-part-1 {
        width: 100%;
        padding: 0;
        border: none;
    }

    .contact .con-box .con-part .con-add h3 {
        font-size: 18px;
    }

    .contact .con-box .con-part .con-tel {
        margin-top: 10px;
    }

    .contact .con-box .con-part .con-tel ul li {
        padding: 10px 0 0 0;
    }

    .contact .con-box .con-part .con-tel1 ul {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact .map {
        margin: 30px 0;
    }

    .contact .map .map-img {
        width: 100%;
    }

    .contact .map .map-txt {
        width: 100%;
        display: none;
    }

    .message .message-left {
        width: 100%;
    }

    .message .message-left .message-tit {
        width: 100%;
        padding: 20px;
        margin-left: 0;
    }

    .message .message-right {
        width: 100%;
        font-size: 14px;
    }

    .message .message-right form .input-box1 {
        width: 100%;
    }
}


/* 公益活动 */
.gy .gy-list {
    margin-bottom: 80px;
    border: 1px solid #ddd;
}

.gy .gy-list .gy-img {
    width: 45%;
    float: left;
}

.gy .gy-list:nth-child(2n) .gy-img {
    float: right;
}

.gy .gy-list .gy-img img {
    transform: scale(1.1);
}

.gy .gy-list .gy-txt {
    width: 50%;
    float: right;
    padding: 30px;
}

.gy .gy-list:nth-child(2n) .gy-txt {
    float: left;
}

.gy .gy-list .gy-txt span {
    color: #959aa8;
    font-size: 16px;
}

.gy .gy-list .gy-txt p {
    font-size: 20px;
    color: #0c318a;
    margin: 0 0 15px 0;
    padding: 10px 0 15px 0;
    border-bottom: 1px solid #ced6ea;
}

.gy .gy-list .gy-txt .gy-dec {
    color: #adb2c0;
    font-size: 16px;
    line-height: 30px;
}

.gy .gy-list .gy-txt .gy-more {
    width: 95px;
    height: 28px;
    background: #0b318b;
    border-radius: 10px 0 10px 0;
    text-align: center;
    line-height: 28px;
    margin: 50px 0 0 0;
}

.gy .gy-list:hover {
    box-shadow: 0 0 10px #d5def8;
}

@media(max-width:1200px) {
    .gy .gy-list .gy-txt .gy-more {
        margin: 30px 0 0 0;
    }
}

@media(max-width:1024px) {
    .gy .gy-list .gy-img {
        width: 100%;
    }

    .gy .gy-list .gy-img img {
        transform: scale(1);
        width: 100%;
    }

    .gy .gy-list .gy-txt {
        width: 100%;
        padding: 10px;
    }

    .gy .gy-list .gy-txt p {
        font-size: 16px;
    }

    .gy .gy-list .gy-txt .gy-dec {
        font-size: 14px;
    }
}

/* 人力资源 */
.rlzy .rlzy-img {
    width: 45%;
    padding: 0 30px;
}

.rlzy .rlzy-img img {
    width: 100%;
}

.rlzy .rlzy-txt {
    width: 50%;
}

.rlzy .rlzy-txt .n-tit {
    margin-top: 20px;
}

.rlzy .rlzy-txt .rlzy-content p {
    font-size: 28px;
}

.rlzy .rlzy-txt .rlzy-content span {
    font-size: 16px;
}

@media(max-width:1024px) {
    .rlzy .rlzy-img {
        width: 100%;
    }

    .rlzy .rlzy-txt {
        width: 100%;
        margin-top: 30px;
    }

    .rlzy .rlzy-txt img {
        height: 30px;
    }

    .rlzy .rlzy-txt .n-tit {
        margin-top: 10px;
    }

    .rlzy .rlzy-txt .rlzy-content p {
        font-size: 18px;
    }

    .rlzy .rlzy-txt .rlzy-content span {
        font-size: 14px;
    }
}

/* 职业卫生 */
.zyws .zyws-img {
    width: 45%;
    overflow: hidden;
    border-radius: 50px 0 50px 0;
    position: relative;
}

.zyws .zyws-img img {
    width: 100%;
}

.zyws .zyws-img .zyws-tit {
    position: absolute;
    left: 20%;
    top: 20%;
    color: #0c318a;
    max-width: 250px
}

.zyws .zyws-img .zyws-tit p {
    font-size: 40px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.zyws .zyws-img .zyws-tit span {
    font-size: 28px;
    color: #dce2ef;
}

.zyws .zyws-txt {
    width: 50%;
    padding: 50px 0;
    font-size: 16px;
}

.zyws .zyws-box {
    margin-top: 50px;
}

@media(max-width:1024px) {
    .zyws .zyws-img {
        width: 100%;
    }

    .zyws .zyws-txt {
        width: 100%;
    }

    .zyws .zyws-img .zyws-tit p {
        font-size: 25px;
    }

    .zyws .zyws-img .zyws-tit span {
        font-size: 18px;
    }
}

/* 环境保护 */
.hjbh-box {
    margin-top: 30px;
}

.hjbh-box .hjbh-part1 {
    border-radius: 50px 0 50px 0;
    overflow: hidden;
    position: relative;
}

.hjbh-box .hjbh-part1 img {
    width: 100%;
}

.hjbh-box .hjbh-part1 .hjbh-tit {
    position: absolute;
    left: 10%;
    top: 20%;
    color: #0c318a;
}

.hjbh-box .hjbh-part1 .hjbh-tit p {
    font-size: 40px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.hjbh-box .hjbh-part1 .hjbh-tit span {
    font-size: 28px;
    color: #dce2ef;
}

.hjbh-box .hjbh-part2 {
    padding: 0 100px;
    margin-left: -3%;
    position: relative;
    top: -100px;
}

.hjbh-box .hjbh-part2 .hjbh-list {
    width: 30.33%;
    margin-left: 3%;
    float: left;
    margin-bottom: 30px;
    transition: all .5s;
}

.hjbh-box .hjbh-part2 .hjbh-list .hjbh-list-img img {
    width: 100%;
}

.hjbh-box .hjbh-part2 .hjbh-list p {
    text-align: center;
    font-size: 16px;
    border: 1px solid #e2e7f3;
    border-top: none;
    box-sizing: border-box;
    margin: 0;
    padding: 15px 0;
}

.hjbh-box .hjbh-part2 .hjbh-list:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #ddd;
}


@media(max-width:1024px) {
    .hjbh-box .hjbh-part1 .hjbh-tit p {
        font-size: 25px;
    }

    .hjbh-box .hjbh-part1 .hjbh-tit span {
        font-size: 18px;
    }

    .hjbh-box .hjbh-part2 {
        padding: 0 20px;
        top: 20px;
    }

    .hjbh-box .hjbh-part2 .hjbh-list {
        width: 100%;
    }
}



/* Pages */
.Pages a {
    font-size: 16px;
    color: #808080;
    font-weight: 100;
}

.Pages .num {
    text-align: center;
    width: 70%;
    display: block;
    font-style: normal;
}

.Pages .num a {
    display: inline-block;
    padding: 0 5px;
}

.Pages .a_prev,
.Pages .a_next {
    display: block;
    width: 15%;
}

.Pages .a_next {
    text-align: right;
}

.Pages a:hover {
    color: #0c318a;
}

@media(max-width:768px) {
    .Pages a {
        font-size: 14px;
    }

    .Pages .num {
        width: 56%;
    }

    .Pages .a_prev,
    .Pages .a_next {
        width: 22%;
    }
}


.addnav {
    margin: 0 0 50px 0;
}

.addnav ul li {
    display: inline-block;
    line-height: 55px;
    width: 140px;
    margin-right: 10px;
}

.addnav ul li a {
    display: block;
    border: 2px solid #e6e6e6;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    font-weight: bold;
}

.addnav ul li a:hover {
    border: 2px solid #0b318b;
}

.addnav ul li.on a {
    border: 2px solid #0b318b;
    color: #0b318b;
}

/**内页CSS**/
.probox{height: 1600px;font-family:"Microsoft Yahei";padding:40px 0 0;}
.product_nav{width:314px;background:#fafafa;}
.product_nav h2{font-size:30px;line-height:49px;height:95px;padding:18px 0 0;background:#18469b;overflow: hidden;text-align: center;margin-bottom: 5px;}
.product_nav h2 span{font-size:12px;line-height:18px;background:url(/mycms/templates/images/procbg.gif) no-repeat center 0;font-family: Arial;display: block;text-transform: uppercase;color: #bacff2;}
.product_nav h2 a{color: #fff;}
.product_nav_main_item:nth-child(2n){background:#d4eefd;}
.product_nav_main{/* padding:2px 20px 0; *//* height:652px; */overflow: hidden;}
.product_nav_main h3{clear: both;padding: 9px 30px 9px;height: 60px;line-height: 60px;font-size: 15px;display: block;/* font-weight: normal; */white-space: nowrap;}
.product_nav_main h3 a{display: block;/* background: url(/mycms/templates/images/ico1.jpg) no-repeat 247px 13px #f4f4f4; *//* padding: 0 18px 0 18px; */color: #666;/* font-size: 15px; */overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
.product_nav_main h3.on{
    background:#18469b;
}
.product_nav_main h3.on a{
    /* background:url(/mycms/templates/images/ico2.gif) no-repeat 247px 13px #18469b; */
  
    color:#fff;}
.product_nav_main li{height: 50px;line-height: 50px;font-size:16px;position: relative;border-bottom:dashed 1px #e6e6e6;padding: 0 24px;white-space: nowrap;}
.product_nav_main li a{display: block;background:url(/mycms/templates/images/ico03.gif) no-repeat 0 center;padding: 0 0 0 25px;color: #555;}

.pro_pho{background:url(/mycms/templates/images/pro_pho.jpg) no-repeat 0 0;line-height: 28px;padding: 42px 0 0 97px;height: 85px;color: #666;white-space: nowrap;}
.pro_pho b{display: block;font-size: 24px;line-height:30px;color: #18469b;letter-spacing: -1px;}

.pro_list{width:860px;overflow: hidden;}
.pro_list h2{height: 42px;border: solid 1px #dcdcd8;position: relative;font-weight: normal;font-size: 20px;line-height: 42px;margin-bottom: 10px;}
.pro_list h2 a{color: #fff;}
.pro_list h2 b{position: absolute;display: block;width: 117px;height: 44px;line-height: 44px;left:-1px;top:-1px;z-index: 1;font-weight: normal;background:#18469b;color: #fff;text-align: center;}
.more01{width: 65px;font-size: 14px;text-transform: uppercase;font-weight: normal;}
.more01 a,.pro_list h2 .more01 a{color: #555;}

.pro_lc ul{width: 930px;}
.pro_lc li{width:278px;height: 238px;float: left;margin: 10px 12px 10px 0;position: relative;overflow: hidden;color: #fff;font-size: 16px;}
.pro_lc li img{max-width:276px;max-height: 184px;display: block;border-bottom: 0;}
.pro_lc li p{display: block;width:278px;line-height:54px;z-index: 1;position: absolute;background: #18469b;left: 0;bottom: 0;text-align: center;}
.pro_lc li p span{display:none;}
.pro_lc li a{display:inline-block;color: #fff;font-weight: NORMAL;font-size: 15px;}
.pro_lc li .indexpro{width: 276px;height: 184px;border: solid 1px #dcdcdc;display: flex;justify-content: center;align-items: center;}
.pro_lc li.cur p{background: #18469b;}
.pro_lc li.cur p span{display: block;height: 52px;}
.pro_lc li.cur p span a{display: inline-block;width: 108px;line-height: 33px;border: solid 1px #fff;font-size: 14px;}
.pro_lc li.cur p span a:nth-child(2){margin-left:16px;}


.pro_pic{height: 404px; background: #f6f6f6;margin-top:6px;}
.pro_img{width:860px;margin: 0 auto 0; padding-top: 20px;}
.pro_img dt{float: left;width: 450px;height: 360px;display: flex;justify-content: center;align-items: center;}
.pro_img dt img{max-width: 450px;max-height: 360px;}
.pro_img dd{width: 360px;float: right;font-size: 14px;line-height: 26px;color: #666;padding-right: 30px;}
.pro_img h4{height: 60px;font-size: 30px;line-height: 60px;padding-top:16px;padding-bottom: 16px;background: url(/mycms/templates/images/pro_icon5.png) no-repeat left top;margin-top: 22px;}
.pro_img h4 a{color: #333;text-decoration:none;}
.pro_img p{height: 160px;overflow: hidden;font-size: 16px;line-height: 40px;color: #666;margin-bottom: 30px;}
.pro_img dd span{display: block; width: 120px; height: 35px; font-size: 14px; line-height: 35px; text-align: center; background: url(/mycms/templates/images/pro_icon1.png) no-repeat center top;}
.pro_img dd span a{display: block; color: #fff;}
.pro_prev{width: 43px; height: 85px; top: 160px; left: 0; overflow: hidden; cursor: pointer;z-index:10;}
.pro_next{width: 43px; height: 85px; top: 160px; right: 0; overflow: hidden; cursor: pointer;z-index:10;}
.pro_prev img,.pro_next img{display: block; width: 43px; height: 171px;}
.pro_prev:hover img,.pro_next:hover img {margin-top: -86px;}




.pageright {width:1080PX;padding: 0 20px;background: #fff;float: right;padding-bottom: 20px;}

.pageright_position {

    overflow: hidden;

    padding-top: 28px;

    padding-bottom: 9px;

    border-bottom: 1px solid #dbdbdb;

}

.pageright_position h5 {

    float: left;

    padding-left: 10px;

    border-left: 3px solid #003b83;

    font-weight: normal;

    line-height: 16px;

}

.pageright_position h5 a {

    font-size: 16px;

    color: #003b83;

}

.pageright_position span {

    float: right;

}

.pageright_position span em {
    font-style: normal;

    color: #999;

}

.pageright_position span a {

    color: #999;

}

/*cpshow*/

.cpshow {

    overflow: hidden;

    padding-top: 20px;

}

.cpshow li {

    float: left;

    width: 224px;

    margin-bottom: 30px;

    margin-left: 19px; _display:inline

}

.cpshow li.noMl {

    margin-right: 0;

}

.cpshow li img {

    display: block;

    border: 1px solid #d3d3d3;

}

.cpshow li h4 {

    line-height: 16px;

    margin-top: 26px;

    margin-bottom: 8px;

    text-align: center;

}

.cpshow li h4 a {

    font-size: 16px;

    color: #003b83;

}

.cpshow li p {

    font-size: 13px;

    color: #666;

    line-height: 21px;

    height: 63px;

    overflow: hidden;

    text-align: center;

}

.cpshow li span {

    display: block;

    overflow: hidden;

    margin-top: 20px;

}

.cpshow li span .zx {

    float: left;

    width: 103px;

    height: 40px;

    line-height: 40px;

    text-align: center;

    font-size: 13px;

    color: #fff;

    text-decoration: none;

    border-left: 3px solid #272727;

    background: #272727;

}

.cpshow li span .xq {

    float: right;

    font-size: 13px;

    color: #666;

    margin-top: 14px;

}

.cpshow li img:hover {

    border-color: #003b83;

}

.cpshow li span .zx:hover {

    background: #003b83;

    border-left-color: #003b83;

}

/*newsCont*/

.newsCont {

    background: #ececec;

    overflow: hidden;

}

.newsCont .container {

    background: #fff;

    margin-top: 20px;

}

.newsCont .nnBox {

    padding: 0 20px;

}

.ntop {

    overflow: hidden;

    padding-top: 28px;

    padding-bottom: 9px;

    border-bottom: 1px solid #dbdbdb;

}

.ntop>h5 {

    float: left;

    font-weight: normal;

    line-height: 20px;

}

.ntop>h5>a {

    font-size: 20px;

    color: #003366;

}

.ntop span {

    float: right;

    line-height: 20px;

}

.ntop span em {

    color: #999;

}

.ntop span a {

    color: #999;

}

/*xzCont*/

.xzCont {

    margin-top: 20px;

    padding-bottom: 54px;

}

.xzCont dl {

    overflow: hidden;

    padding: 20px;

    background: #ececec;

}

.xzCont dt {

    float: left;

}

.xzCont dt img {

    display: block;

}

.xzCont dd {

    margin-left: 234px;

}

.xzCont dd h5 {

    font-weight: normal;

    line-height: 16px;

    margin-bottom: 12px;

}

.xzCont dd h5 a {

    font-size: 16px;

    color: #133a58;

}

.xzCont dd p {

    font-size: 13px;

    line-height: 23px;

    height: 69px;

    overflow: hidden;

}

.xzCont dd>a {

    display: block;

    width: 90px;

    height: 30px;

    line-height: 30px;

    text-align: center;

    font-size: 13px;

    color: #ececec;

    text-decoration: none;

    background: #777777;

    margin-top: 32px;

}

.xzCont ul {

    overflow: hidden;

}

.xzCont li {

    float: left;

    width: 421px;

    padding: 20px;

    border: 1px solid #ececec;

    border-left-width: 3px;

    margin-right: 10px;

    margin-top: 10px;

}

.xzCont li.noMl {

    margin-right: 0;

}

.xzCont li h5 {

    font-weight: normal;

    line-height: 16px;

    margin-bottom: 15px;

}

.xzCont li h5 a {

    font-size: 16px;

    color: #003366;

}

.xzCont li p {

    font-size: 13px;

    color: #666;

    line-height: 23px;

    height: 46px;

    overflow: hidden;

}

.xzCont li:hover {

    border-color: #0c4da1;

}

.pro_ls {

    float: left;

    width: 226px;

    border: 2px solid #d7d7d7;

}

.pro_ls .pt {/* background: url(../images/ptbg.png) no-repeat center top; */background: #003b83;}

.pro_ls .pt a {display: block;text-decoration: none;font-size: 22px;color: #fff;text-align: center;padding-top: 20px;padding-bottom: 27px;}

.pro_ls .pt img {

    display: block;

    margin: 0 auto;

    margin-top: 3px;

}

.pro_ls ul {

    padding: 0 10px;

    overflow: hidden;

    padding-top: 5px;

    background-color: #fff;

}

.pro_ls li {


}

.pro_ls li h5 a {

    font-size: 16px;

    color: #fff;

    display: block;

    padding-left: 53px;

    height: 39px;

    line-height: 39px;

    text-decoration: none;

}

.pro_ls li h5.pl1 {

    background: url(../images/pl1.png) no-repeat left center;

}

.pro_ls li h5.pl2 {

    background: url(../images/pl2.png) no-repeat left center;

}

.pro_ls li .sed_p p {

    line-height: 34px;

    height: 34px;

    overflow: hidden;

    border-bottom: 1px solid #ebebeb;

}

.pro_ls li .sed_p p a {

    font-size: 13px;

    color: #333;

    margin-left: 52px;

    padding-left: 21px;

    background: url(../images/yuan.png) no-repeat left center;

}

.pro_ls dl {

    background-color: #003b83;

    overflow: hidden;

    padding: 20px 0;

}

.pro_ls dt {float: left;margin-left: 28px;margin-top: 7px;}

.pro_ls dd {

    margin-left: 70px;

    color: #fff;

}

.pro_ls dd p {

    font-size: 20px;

    font-family: "Arial";

}

.nlist {

    float: left;

    width: 230px;

    background: #fff;

}

.nlist .nt {

    font-weight: normal;

    padding: 18px 0;

    padding-left: 20px;

    background: #003b83 url(../images/hhbg.png) no-repeat 190px center;

}

.nlist .nt a {

    font-size: 20px;

    color: #fff;

    text-decoration: none;

}

.nlist .nt p {

    font-size: 12px;

    color: #fff;

    font-family: "Arial";

    margin-top: 1px;

}

.nlist ul {

    padding: 20px;

}

.pro_ls li {line-height: 50px;height: 50px;overflow: hidden;border-bottom: 1px solid #ebebeb;width: 100%;float: left;}

.pro_ls li a {font-size: 13px;color: #333;margin-left: 52px;/* padding-left: 15px; *//* background: url(../images/yuan1.png) no-repeat left center; */}

.pro_ls li a.cur {

    color: #ff0000;

}

.pro_ls li a:hover, .nlist li.cur a {

}

.nlist .dphone {

    overflow: hidden;

    background: #333;

    padding: 20px 0;

}

.nlist .dphone dt {

    float: left;

    background: url(../images/phimg.png) no-repeat center;

    margin-left: 5px;

    width: 62px;

    height: 50px;

}

.nlist .dphone dd {

    margin-left: 66px;

    color: #fff;

    padding: 5px 13px;

    border-left: 1px dotted #5c5c5c;

}

.nlist .dphone dd span {

    font-size: 13px;

}

.nlist .dphone dd p {

    font-size: 20px;

    font-family: "Arial";

}

.pro_lss {

    float: left;

    width: 226px;

    border: 0px solid #003b83;

}

.pro_lss .pt {

    background: url(../images/ptbg.png) no-repeat center top;

}

.pro_lss .pt a {

    display: block;

    text-decoration: none;

    font-size: 22px;

    color: #003b83;

    text-align: center;

    padding-top: 20px;

    padding-bottom: 27px;

}

.pro_lss .pt img {

    display: block;

    margin: 0 auto;

    margin-top: 3px;

}

.pro_lss ul {

    padding: 0 10px;

    overflow: hidden;

    padding-top: 5px;

    background-color: #fff;

}

.pro_lss li {

    margin-bottom: 14px;

}

.pro_lss li h5 a {

    font-size: 16px;

    color: #fff;

    display: block;

    padding-left: 53px;

    height: 39px;

    line-height: 39px;

    text-decoration: none;

}

.pro_lss li h5.pl1 {

    background: url(../images/pl1.png) no-repeat left center;

}

.pro_lss li h5.pl2 {

    background: url(../images/pl2.png) no-repeat left center;

}

.pro_lss li .sed_p p {

    line-height: 34px;

    height: 34px;

    overflow: hidden;

    border-bottom: 1px solid #ebebeb;

}

.pro_lss li .sed_p p a {

    font-size: 13px;

    color: #333;

    margin-left: 52px;

    padding-left: 21px;

    background: url(../images/yuan.png) no-repeat left center;

}

.pro_lss dl {

    background-color: #003b83;

    overflow: hidden;

    padding: 20px 0;

}

.pro_lss dt {

    float: left;

    margin-left: 28px;

}

.pro_lss dd {

    margin-left: 70px;

    color: #fff;

}

.pro_lss dd p {

    font-size: 20px;

    font-family: "Arial";

}

.pageright_neirong {

    margin: 40px 0;

}

.pageright_neirong img {

}



.newsmaincontent .news h5 {font-size: 14px;color: #323232;font-weight: normal;margin-top: 8px!important;}

.newsmaincontent .news p {

    color: #a8a8a8;

    line-height: 20px;

    margin-top: 8px;

}

.newsmaincontent .news h4 {/* padding-top: 13px; */background: url(../images/dbg.png) no-repeat left top;height: 65px;width: 65px;position: absolute;font-size: 18px;color: #fff;font-weight: normal;text-align: center;top: 26px;left: -30px;}

.newsmaincontent .news h4 span {

    display: block;

    font-size: 12px;

}

.newsmaincontent .news .newteail {

    font-size: 14px;

    color: #fff;

    display: block;

    background: url(../images/xqbg.png) no-repeat center;

    width: 94px;

    height: 32px;

    line-height: 32px;

    text-align: center;

    position: absolute;

    top: 40px;

    right: 0;

}

.newsmaincontent .news:hover h4 {

    background: url(../images/dbg.png) no-repeat left bottom;

}

.newsmaincontent .news:hover .newteail {

    background: url(../images/xqbg2.png) no-repeat center;

}

.neiyemain {
    background: #fff;
    padding: 40px 0;
    overflow: hidden;
}


.right {width: 100%;float: right;display: inline;overflow: hidden;background: #fff;}

.newsmaincontent {

    padding-left: 30px;

    margin-top: 15px;

    margin-bottom: 20px;

}

.newsmaincontent .news {padding-left: 53px;padding-right: 130px;/* width: 680px; */height: 115px;border: 1px solid #e4e4e4;position: relative;margin-bottom: 24px;cursor: pointer;}

.newsmaincontent .news h5 {font-size: 14px;color: #323232;font-weight: normal;margin-top: 8px!important;}

.newsmaincontent .news p {

    color: #a8a8a8;

    line-height: 20px;

    margin-top: 8px;

}

.newsmaincontent .news h4 {/* padding-top: 13px; */background: url(../images/dbg.png) no-repeat left top;height: 65px;width: 65px;position: absolute;font-size: 18px;color: #fff;font-weight: normal;text-align: center;top: 26px;left: -30px;}

.newsmaincontent .news h4 span {

    display: block;

    font-size: 12px;

}

.newsmaincontent .news .newteail {

    font-size: 14px;

    color: #fff;

    display: block;

    background: url(../images/xqbg.png) no-repeat center;

    width: 94px;

    height: 32px;

    line-height: 32px;

    text-align: center;

    position: absolute;

    top: 40px;

    right: 0;

}

.newsmaincontent .news:hover h4 {

    background: url(../images/dbg.png) no-repeat left bottom;

}

.newsmaincontent .news:hover .newteail {

    background: url(../images/xqbg2.png) no-repeat center;

}




dl.dl_2 {width: 265px;height: 318px;margin: 20px 20px 20px 0;float: left;display: inline-block;}

dl.dl_2:nth-child(3n){margin-right:0;}

dl.dl_2 dt {width: 267px;border: 1px solid #d7d7d7;/* overflow: hidden; */border-bottom: none;} /*ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂºÃƒâ€šÃ‚Â¾ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡ÃƒÆ’Ã‚Â¨Ãƒâ€šÃ‚Â¾Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚Â¡ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â */

dl.dl_2 dt a {width: 265px;height: 265px;/* border: 1px solid #d7d7d7; */border-bottom:none;display: block;display:flex;justify-content: center;align-items: center;}

/* dl.dl_2 dt a:hover {

    border: 1px solid #003b83;

} */

dl.dl_2 img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

dl.dl_2 dd {width: 266px;height: 54px;line-height: 54px;overflow: hidden;text-align: center;border: solid 1px #18469b;background: #18469b;}

dl.dl_2 dd a{
    color: #fff;
    font-size: 15px;
    height: 54px;
    line-height: 54px;
    overflow: hidden;
}

/*.news_con2{ background:#f5fafe; width:730px; margin:0 auto;display:inline-block;padding:6px 0 25px 5px;}*/

dl.dl_42 {

    height: 210px;

    margin-bottom: 20px;

    border-bottom: 1px dotted #d7d7d7

}

.dl_42 dt {

    width: 204px;

    float: left;

}

.dl_42 dt a {

    width: 200px;

    padding: 1px;

    border: 1px solid #d7d7d7;

    display: block;

}

.dl_42 dt a:hover {

    border: 1px solid #003b83;

}/*ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂºÃƒâ€šÃ‚Â¾ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡ÃƒÆ’Ã‚Â¨Ãƒâ€šÃ‚Â¾Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚Â¡ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ,ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã‚Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬ÂÃƒâ€šÃ‚Â¶ÃƒÆ’Ã‚Â§Ãƒâ€¦Ã‚Â¡ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã‚Â§Ãƒâ€¦Ã‚Â Ãƒâ€šÃ‚Â¶ÃƒÆ’Ã‚Â¦ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â*/

.dl_42 dt img {

    display: block;

    width: 200px;

}

.dl_42 dd {

    padding-left: 15px;

    float: left;

    width: 474px;

    line-height: 24px;

    height: 194px;

    overflow: hidden;

    color: #666;

}

.dl_42 dd h4 {

    font-size: 14px;

    padding-bottom: 5px;

    height: 24px;

    line-height: 24px;

    overflow: hidden;

}

.dl_42 dd h4 a {

    color: #003b83;

}

.dl_42 dd span {

}

dl.gongc {

    height: 165px;

    margin-bottom: 20px;

    border-bottom: 1px dotted #d7d7d7

}

.gongc dt {

    width: 204px;

    float: left;

}

.gongc dt a {

    width: 200px;

    height: 155px;

    padding: 1px;

    border: 1px solid #d7d7d7;

    display: block;

}

.gongc dt a:hover {

    border: 1px solid #003b83;

}

.gongc dt img {

    display: block;

    width: 200px;

    height: 155px;

}

.gongc dd {

    padding-left: 15px;

    float: left;

    width: 470px;

    line-height: 24px;

    height: 155px;

    overflow: hidden;

    color: #666;

}

.gongc dd h4 {

    font-size: 14px;

    padding-bottom: 5px;

    height: 24px;

    line-height: 24px;

    overflow: hidden;

}

.gongc dd h4 a {

    color: #003b83;

}


.pagess {clear: both;margin: 20px;margin-left: 0px;text-align: center;font-size:12px}
.pagess ul li { display:inline-block;border: 1px solid #ccc;padding: 2px 9px;margin: 0 3px;line-height: 20px;background: #fff;color:#999}
.pagess ul li.thisclass {display: inline-block;border: 1px solid #ccc;padding: 2px 9px;margin: 0 3px;background: #ccc;color: #fff;}
.pagess ul li.thisclass a {color: #fff;}
.pagess ul span{ color:#fff;background:#003b83;border:solid 1px #003b83;padding:5px 10px;}
.pagess ul a{ color:#333;padding:5px 10px;border:solid 1px #d7d7d7;}
/* .pagess ul li a:hover {color: #fff;} */



.product-show {
        position: relative;
        padding: 12px 18px 16px 20px;
        margin-bottom: 15px;
        background: #fff;
        border: 1px solid #eee;
    }

    .product-show-right-con {
        line-height: 36px;
        font-size: 14px;
        max-height: 388px;
        margin-bottom: 86px;
        overflow: hidden;
    }

    .product-show-left {
        position: relative;
        width: 398px;
        float: left;
        line-height: 0;
        overflow: hidden;
        border: 1px solid #e7e7e7;
        margin-right: 22px;
    }

    .product-show-left-jt {
        width: 12px;
        height: 23px;
        position: absolute;
        top: 50%;
        margin-top: -11px;
        cursor: pointer;
        z-index: 33;
    }

    .product-show-left-prev {
        left: 10px;
    }

    .product-show-left-next {
        right: 10px;
    }

    .product-show-left-size {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 56px;
        height: 28px;
        font-size: 14px;
        line-height: 16px;
        padding: 0 15px;
    }

    .product-show-left-size em {
        font-style: normal;
    }

    .product-show-left-pic {
        width: 100%;
        text-align: center;
    }

    .product-show-left-pic li {
        float: left;
    }

    .product-show-left-pic img {
        width: 100%;
        display: block;
    }

    .product-show-right {
        width: calc(100% - 420px);
        float: left;
    }

    .product-show-right-tit {
        height: 40px;
        font-size: 24px;
        line-height: 40px;
        color: #454545;
        margin-bottom: 16px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }


    .product-show-content-1 {
        background: #fff;
        padding: 32px 0 22px;
        margin-bottom: 12px;
    }

    .product-show-content-1-tit {
        height: 40px;
        font-size: 24px;
        line-height: 40px;
        border-bottom: 2px solid #d4d4d4;
        margin-bottom: 20px;
    }

    .product-show-content-1-tit span {
        display: inline-block;
        height: 40px;
        color: #464646;
        border-bottom: 2px solid #469ff7;
        padding-left: 34px;
        background: url(../images/p14-icon11.png) no-repeat 2px center;
    }

    .product-show-content-1-tit em {
        font-size: 18px;
        font-family: Arial;
        text-transform: uppercase;
        font-style: normal;
        color: #c2c2c1;
    }

    .product-show-content-1-desc {
        padding-left: 5px;
        padding-right: 5px;
    }

    .product-show-content-1-desc img {
        display: block;
        margin: 0 auto;
    }

    .p14-product-2-tit {
        height: 46px;
        line-height: 46px;
        border-bottom: 2px solid #dfdfdf;
        margin-bottom: 30px;
        padding-top: 26px;
    }

    .p14-product-2-tit b {
        display: inline-block;
        font-size: 24px;
        font-weight: normal;
        color: #464646;
        padding-left: 52px;
        border-bottom: 2px solid #469ff7;
        background: url(../images/p14-icon11.png) no-repeat 22px center;
    }

    .p14-product-2-tit span {
        margin-left: 10px;
        font-size: 18px;
        font-family: Arial;
        color: #c2c2c1;
        text-transform: uppercase;
    }

    .p14-product-2-list dl {
        float: left;
        width: 23.8%;
        border: 1px solid #dfdfdf;
        margin-right: 1.5%;
        box-sizing: border-box;
    }

    .p14-product-2-list dl:nth-child(4) {
        margin-right: 0;
    }

    .p14-product-2-list dl img {
        display: block;
        width: 100%;
    }

    .p14-product-2-list dd {
        padding: 10px 28px 10px 10px;
        margin-right: 2px;
        position: relative;
    }

    .p14-product-2-list h3 {
        height: 30px;
        font-size: 16px;
        font-weight: normal;
        line-height: 30px;
        color: #191919;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .p14-product-2-list h3 a {
        color: #191919;
    }

    .p14-product-2-desc {
        font-size: 14px;
        line-height: 24px;
        color: #666;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .p14-product-2-list dl:hover {
        border-color: #18469b;
    }

    .p14-product-2-list dl:hover h3 a {
        color: #18469b;
    }

    .pc-cx-tel-1 {
        width: calc(100% - 460px);
        height: 56px;
        border-top: 2px solid #e6e6e6;
        padding-top: 10px;
        position: absolute;
        bottom: 16px;
        right: 2%;
    }

    .pc-cx-tel-1-t1 {
        width: 114px;
        height: 44px;
        background: #18469b;
        font-size: 18px;
        line-height: 44px;
        text-align: center;
        float: right;
    }

    .pc-cx-tel-1-t1 a {
        display: block;
        color: #fff;
    }

    .pc-cx-tel-1-t2 {
        height: 56px;
        padding-left: 70px;
        background: url(../images/pc-xc-icon2.png) no-repeat 10px top;
        font-size: 18px;
        line-height: 18px;
        color: #454545;
    }

    .pc-cx-tel-1-t2 p {
        line-height: 24px;
    }












.header h3, .wap_nav {
	display: none;
}

.mobile_lnav{
	display:none;
}



@media(max-width:768px) {

.product_nav{width: 100%}
.pageright{width:100%;float:left;padding:0;}
.newsmaincontent  { padding-left: 0px;}
.newsmaincontent .news{padding-right:0; height: 80px;}
.newsmaincontent .news p{display: none}
.newsmaincontent .news h4{display: none}
.newsmaincontent .news {width:100%;padding:0px;}
.product_nav{display: none}
dl.dl_2{width: 48%;margin:1%;}
dl.dl_2 dt{width:100%;}
dl.dl_2 dt a{width:100%;}
dl.dl_2 dd{width:100%;}
.product-show-left{width:100%;}
.product-show-left li{width:100%;}
.product-show-right{width:100%;}
.pc-cx-tel-1{width:100%;position: relative;bottom:0;right:0;}
.pc-cx-tel-1-t2{font-size: 16px;}
.pc-cx-tel-1-t1{width: auto;padding:0px 8px;height: auto}
.product-show{padding:12px 8px;}

#index_about .fl .singlepage p{
    line-height:1.8;
    font-size:14px;
    text-indent:2em;
}
.footer-main .copyright{padding:10px;font-size: 14px;}
#index_product .productslider li.slick-slide aside.dot{font-size: 10px}



#index_product .productslider li.slick-slide a {

    width: 96%;
    max-width: 240px;
    position: relative;
    transform: translateY(-150%);
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transition: 1s;
    height: auto;

}



.secondnav{display: none}

.nav-menu .dropmenu {
    background: url(../images/darr.png) right 12px no-repeat;
    -webkit-background-size: 12px auto;
    background-size: 12px auto;
}
.dropmenu .secondnav a{font-size: 12px;text-indent:10px}

.dropmenu.on .secondnav{display: block;}


.header h3{ display:block; float:right; padding-top:0px;}
.header h3 img{ display:block; height:20px; width:auto;}
/*wap_nav*/
.wap_nav{ display:block;position:fixed;top:0px;left:0px;width:0px;height:0px;overflow:hidden;z-index:10000;}
.wap_nav_bg{position:absolute;width:100%;height:100%;background:#0b0d19;filter:alpha(opacity=0);opacity:0;left:0px;top:0px;z-index:1}
.wap_nav_closed{position:absolute;width:20%;left:0px;top:5%;z-index:100;text-align:center;filter:alpha(opacity=0);opacity:0}
.wap_nav_closed img{ display:block; width:25px; height:auto; margin:0 auto;}
.wap_nav_min{ position:absolute;width:80%;right:0px;top:0px;background:#0b0d19;height:100%;z-index:100;right:-80%;}
.wap_nav_min u{padding:0 5% 0 5%;}
.wap_nav_min ul li{ width:100%; float:left;border-bottom:1px solid #232530;}
.wap_nav_min ul li a{ display:block;height:40px;color:#fff;line-height:40px;padding-left:5%;font-size:16px; }
.wap_nav_min ul li a.more{ background:url(../images/nav_ico_01.png) 95% center no-repeat;-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}
.wap_nav_min ul li a.a_js2_on{ background:url(../images/nav_ico_02.jpg) 95% center no-repeat;-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}
.wap_nav_min ul li div{ display:none}
.wap_nav_min ul li div a{ height:36px; line-height:36px; font-size:14px; background:none;}

/*左侧nav*/
.mobile_lnav{
	top:0px;
	display:block;
	float:none;
	width:100%;
	height:40px;
	font-size:16px;
	background-color:#f5f5f5;
	border:1px solid #dfdfdf;
	z-index:999
}
.mobile_lnav ul > li{
	width:100%;
	line-height:40px;
	text-indent:10px;
	position:relative;
	z-index:1
}
.mobile_lnav ul > li a{
	display:block;
	color:#333;
}
.mobile_lnav ul > li a img{
	vertical-align:middle;
	margin-left:5px;
	transition:all .2s ease-in 0s;
	-moz-transition:all .2s ease-in 0s;
	-ms-transition:all .2s ease-in 0s;
	-o-transition:all .2s ease-in 0s;
	-webkit-transition:all .2s ease-in 0s;
}
.mobile_lnav ul > li a.show img{
	transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
}
			   
.mobile_lnav ul > li > ul{
	position:absolute;
	left:-1px;
	top:38px;
	width:100%;
	text-align:center;
	border:1px solid #dfdfdf;
	border-bottom:0;
	display:none;
}
.mobile_lnav ul > li > ul > li{
	height:30px;
	line-height:30px;
	border-bottom:1px solid #dfdfdf;
	background-color:#f5f5f5;
}
.mobile_lnav ul > li > ul > li a{
	display:block;
	padding:5px 0;
	color:#777;
}
.mobile_lnav ul > li > ul > li a:hover{
	background-color:#396aaa;
	color:white;
}
.mobile_lnav ul > li > ul > li{
	height:auto
}
.mobile_lnav ul > li > ul > li.hover{
	background-color:#dedede
}
.mobile_lnav ul > li > ul > li.hover>a{
	background-color:#18469b;
	color:white;
}
.mobile_lnav ul > li > ul > li.hover .js_xjz{
	background-color:#dedede
}
.mobile_lnav ul > li > ul > li.hover .js_xjz>a{
	text-align:left;
	display:inline-block
}
.mobile_lnav ul > li > ul > li.hover>div{
	color:#333;
	text-align:left
}
.mobile_lnav ul > li > ul > li.hover .js_xjz>a:hover{
	background:none;
	color:#e13f38
}

.mobile_lnav ul > li > ul > li.hover>div li{
	line-height:10px;
}
.tree-default li {
  background-position: -64px -6px;
}
.mobile_lnav ul > li > ul{
	height:400px;
	overflow-y:auto
}

}