@charset "UTF-8";

@font-face {
    font-family: 'icomoon';
    src: url("/style/fonts/icomoon.eot?1z9v6x");
    src: url("/style/fonts/icomoon.eot?1z9v6x#iefix") format("embedded-opentype"), url("/style/fonts/icomoon.ttf?1z9v6x") format("truetype"), url("/style/fonts/icomoon.woff?1z9v6x") format("woff"), url("/style/fonts/icomoon.svg?1z9v6x") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: jdcfont;
    src: url(/style/fonts/jdcfont.eot);
    src: url(/style/fonts/jdcfont.eot#iefix) format("embedded-opentype"), url(/style/fonts/jdcfont.woff) format("woff"), url(/style/fonts/jdcfont.ttf) format("truetype"), url(/style/fonts/jdcfont.svg) format("svg")
}

.jdcfont {
    font-family: jdcfont !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: .2px;
    -moz-osx-font-smoothing: grayscale
}

:root {
    --main-color-one: #2685f9;
    --secondary-color: #111d5c;
    --heading-color: #0a1121;
    --paragraph-color: #333;
    --heading-font: 'Microsoft YaHei', sans-serif;
    --body-font: 'Microsoft YaHei', sans-serif;
    filter: none;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    font-family: var(--body-font);
    font-size: 16px;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    /* Firefox */
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
}

body {
    margin: 0;
    color: var(--paragraph-color);
    overflow-x: hidden;
    font-family: var(--body-font);
    font-size: 14px;
}

h1 {
    font-size: 48px;
    line-height: 1.0833333333333333;
}

h2 {
    font-size: 36px;
    line-height: 1.4444444444444444;
}

h3 {
    font-size: 24px;
    line-height: 1.0833333333333333;
}

h4 {
    font-size: 20px;
    line-height: 1.2380952380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

p {
    color: var(--paragraph-color);
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin-bottom: 10px;
}

a {
    color: inherit;
    text-decoration: none;
    color: var(--paragraph-color);
}

    a,
    a:hover,
    a:focus,
    a:active {
        text-decoration: none;
        outline: none;
        color: inherit;
    }
/* a:hover{
  color: #fe852a;
} */
pre {
    word-break: break-word;
}

a i {
    padding: 0 2px;
}

img {
    max-width: 100%;
}

ol {
    counter-reset: counter;
    padding-left: 0;
}

    ol li {
        list-style: none;
        margin-bottom: 1rem;
    }

/* ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px; } */

ul, li {
    list-style: none;
}

ul {
    padding: 0px;
}

.searchinput::-webkit-input-placeholder { /* WebKit browsers */
    color: #fff;
}

.searchinput::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #fff;
}

.searchinput::-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #fff;
}
/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    /* border: 1px solid #ddd; */
}

code {
    color: #faa603;
}

.dark-bg {
    background-color: #111d5c;
}

.section-bg-1 {
    background-color: #f4f7fc;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .check-list li {
        display: block;
        padding-left: 20px;
        position: relative;
        z-index: 0;
    }

        .check-list li:after {
            position: absolute;
            left: 0;
            top: 0;
            font-family: 'fontawesome';
            content: "\f105";
            color: var(--main-color-one);
        }

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

    .comment-navigation .nav-previous > a,
    .posts-navigation .nav-previous > a,
    .post-navigation .nav-previous > a,
    .comment-navigation .nav-next > a,
    .posts-navigation .nav-next > a,
    .post-navigation .nav-next > a {
        -webkit-transition: .3s ease-in;
        -o-transition: .3s ease-in;
        transition: .3s ease-in;
    }

    .comment-navigation .nav-previous:hover > a,
    .posts-navigation .nav-previous:hover > a,
    .post-navigation .nav-previous:hover > a,
    .comment-navigation .nav-next:hover > a,
    .posts-navigation .nav-next:hover > a,
    .post-navigation .nav-next:hover > a {
        color: var(--main-color-one);
    }


/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.padding-left-0 {
    padding-left: 0;
}

.padding-right-0 {
    padding-left: 0;
}

.gray-bg {
    background-color: #f8f8f8;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-top-70 {
    padding-top: 70px;
}

.padding-top-80 {
    padding-top: 80px;
}

.padding-top-90 {
    padding-top: 90px;
}

.padding-top-95 {
    padding-top: 95px;
}

.padding-top-100 {
    padding-top: 100px;
}

.padding-top-105 {
    padding-top: 105px;
}

.padding-top-110 {
    padding-top: 110px;
}

.padding-top-115 {
    padding-top: 115px;
}

.padding-top-120 {
    padding-top: 120px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.padding-bottom-65 {
    padding-bottom: 65px;
}

.padding-bottom-70 {
    padding-bottom: 70px;
}

.padding-bottom-80 {
    padding-bottom: 80px;
}

.padding-bottom-85 {
    padding-bottom: 85px;
}

.padding-bottom-90 {
    padding-bottom: 90px;
}

.padding-bottom-95 {
    padding-bottom: 95px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

.padding-bottom-110 {
    padding-bottom: 110px;
}

.padding-bottom-105 {
    padding-bottom: 105px;
}

.padding-bottom-115 {
    padding-bottom: 115px;
}

.padding-bottom-120 {
    padding-bottom: 120px;
}

.padding-bottom-130 {
    padding-bottom: 130px;
}

.padding-bottom-135 {
    padding-bottom: 135px;
}

.padding-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.padding-110 {
    padding-top: 110px;
    padding-bottom: 110px;
}

.padding-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.padding-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padding-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.padding-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.padding-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.padding-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.padding-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.padding-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-15 {
    margin-top: 15px;
}


.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-55 {
    margin-top: 55px;
}

.margin-top-60 {
    margin-top: 60px;
}

.margin-top-70 {
    margin-top: 70px;
}

.margin-top-80 {
    margin-top: 80px;
}

.margin-top-90 {
    margin-top: 90px;
}

.margin-top-100 {
    margin-top: 100px;
}

.margin-bottom-0 {
    margin-bottom: 0px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-25 {
    margin-bottom: 25px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.margin-bottom-55 {
    margin-bottom: 55px;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.margin-bottom-70 {
    margin-bottom: 70px;
}

.margin-bottom-80 {
    margin-bottom: 80px;
}

.margin-bottom-90 {
    margin-bottom: 90px;
}

.margin-top-100 {
    margin-bottom: 100px;
}

.margin-top-120 {
    margin-top: 120px;
}

.min-height-600 {
    min-height: 600px;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    float: left;
    clear: both;
    margin-right: 20px;
}

.alignright {
    float: right;
    clear: both;
    margin-left: 20px;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
}

.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.alignwide {
    max-width: 1100px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*-------------------------
     返回顶部 Css
---------------------------*/
.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 85px;
    width: 58px;
    height: 58px;
    background-color: #00479d;
    color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 99;
    font-size: 25px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    display: none;
}

    .back-to-top i.fa {
        line-height: 50px;
    }
/*----------------------------
    头部
----------------------------*/

.info-bar-area {
    background: url("/Images/top-bg.png") repeat-x bottom;
    height: 88px;
}

    .info-bar-area.style-three .info-bar-inner {
        padding: 10px 0 18px 0;
    }

        .info-bar-area.style-three .info-bar-inner .social-icon {
            margin-top: 15px;
        }

    .info-bar-area.style-two .info-bar-inner {
        padding: 0;
    }

.weblogo {
    margin-top: 26px;
    margin-left: 40px;
}

.telbox {
    float: right;
}

    .telbox img {
        float: left;
    }

.telone, .teltwo {
    float: left;
}

.li-active {
    color: #000;
}

.probootstrap-burger-menu {
    position: absolute;
    top: 0px;
    right: 0rem;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    color: #24344f;
    font-size: 1.5rem;
    cursor: pointer;
    text-decoration: none;
    line-height: 3rem;
    text-align: center;
}

a.probootstrap-burger-menu:hover {
    color: #24344f !important;
}

.probootstrap-mobile-menu-active.show .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay {
    z-index: 1099;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,.7);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease-out;
    transition: .3s all ease-out;
}

.probootstrap-mobile-menu-active .probootstrap-nav {
    text-align: left;
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    height: 100vh;
    width: 300px;
    background: #fff;
    padding: 1.5rem;
    /* -webkit-transition: .3s all ease-out;
  transition: .3s all ease-out;
  -webkit-transform: translateX(350px);
  transform: translateX(350px); */
    display: none;
}

.probootstrap-mobile-menu-active.show .probootstrap-nav {
    /* -webkit-transform: translateX(0);
  transform: translateX(0); */
    display: block !important;
}

.probootstrap-nav {
    width: 100%;
}

.probootstrap-main-nav {
    padding: 0px;
    margin: 0rem;
}

    .probootstrap-main-nav li {
        width: 11.111%;
        float: left;
        font-size: 1rem;
        /* font-weight: bold; */
        text-align: center;
    }

        .probootstrap-main-nav li.fangwen {
            width: 25%;
            font-size: 14px;
        }

            .probootstrap-main-nav li.fangwen:hover {
                background-color: #5f5f5f;
            }

.fangwen .num {
    font-size: 12px;
    padding: 0px 5px;
}

.menehover {
    width: 11.111%;
    height: 57px;
    background: url(/Images/menu-hover.png) center no-repeat;
    position: absolute;
    left: 0px;
    box-shadow: 0 0 6px #888;
}

.first-li a {
    display: block;
    width: 100%;
}

.probootstrap-main-nav > li {
    /* border-bottom: 4px solid #5f5f5f; */
}

    .probootstrap-main-nav > li:hover .underline {
        background-color: #fe852a;
    }

.underline {
    width: 100%;
    height: 4px;
    /* margin: 0px auto; */
}


.probootstrap-main-nav li ul {
    display: none;
    padding: 0px;
}

.probootstrap-main-nav li:hover ul {
    display: block;
    border-radius: 4px;
}

.probootstrap-main-nav li ul li {
    float: left;
    width: 100%;
}

.probootstrap-header .content {
    height: 100%;
}

.bannerslider {
    height: auto;
    overflow: hidden;
}

.probootstrap-header .fa-close, .probootstrap-header .fa-bars {
    line-height: 48px;
}
/* Flexslider override style */



.lead {
    font-size: 20px;
}

.flexslider {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    margin: 0 0 0;
    border-radius: 0px;
    color: rgba(255, 255, 255, 0.7);
}

    .flexslider .slidertext {
        position: absolute;
        color: #fff;
        height: 30px;
        line-height: 30px;
        width: 100%;
        text-indent: 8px;
        bottom: 0px;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .flexslider .probootstrap-heading {
        color: #ffffff;
        font-weight: 300;
        font-size: 70px;
        line-height: 60px;
        font-family: "Rubik", sans-serif;
        text-transform: uppercase;
        font-weight: 700;
    }

        .flexslider .probootstrap-heading a {
            color: rgba(255, 255, 255, 0.8);
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        }

            .flexslider .probootstrap-heading a:hover {
                border-bottom: 2px solid white;
            }

    .flexslider .probootstrap-sub-wrap {
        max-width: 700px;
        text-align: left;
        font-size: 18px;
        line-height: 1.5;
    }

        .flexslider .probootstrap-sub-wrap a {
            color: rgba(255, 255, 255, 0.8);
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        }

            .flexslider .probootstrap-sub-wrap a:hover {
                border-bottom: 2px solid white;
            }

    .flexslider .text-center .probootstrap-sub-wrap {
        margin: 0 auto;
        text-align: center;
    }

    .flexslider .probootstrap-slider-text {
        margin-top: 300px;
    }

    .flexslider .slides > li {
        background-size: cover;
        background-position: center center;
        background-repeat: none;
    }

        .flexslider .slides > li.overlay:before {
            content: "";
            background: rgba(0, 0, 0, 0.3);
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

    .flexslider .flex-control-paging {
        position: absolute;
        bottom: 0px;
        z-index: 20;
    }

    .flexslider.probootstrap-inner {
        height: 500px;
    }

        .flexslider.probootstrap-inner .probootstrap-slider-text {
            margin-top: 150px;
        }

    .flexslider .flex-direction-nav a {
        text-decoration: none;
        display: block;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 10;
        overflow: hidden;
        opacity: 0;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        border: 2px solid rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        padding: 30px;
    }

        .flexslider .flex-direction-nav a:hover, .flexslider .flex-direction-nav a:active, .flexslider .flex-direction-nav a:focus {
            outline: none;
        }

        .flexslider .flex-direction-nav a:before {
            font-family: 'icomoon';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            /* Better Font Rendering =========== */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: absolute;
            content: "\e929";
            -webkit-transition: .3s all;
            transition: .3s all;
            font-size: 30px;
            display: inline-block;
            color: white;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

        .flexslider .flex-direction-nav a.flex-next:before {
            content: "\e92a";
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

.flex-direction-nav .flex-prev {
    left: 50px;
}

.flex-direction-nav .flex-next {
    right: 50px;
    text-align: right;
}

.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: 0.7;
    left: 60px;
}

    .flexslider:hover .flex-direction-nav .flex-prev:hover,
    .flexslider:hover .flex-direction-nav .flex-next:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 0.3);
    }

.flexslider:hover .flex-direction-nav .flex-next {
    opacity: 0.7;
    right: 60px;
}

.flex-control-paging li a {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    display: block;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    text-indent: -9999px;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-transition: .3s all;
    transition: .3s all;
}

    .flex-control-paging li a:hover {
        background: #333;
        background: rgba(255, 255, 255, 0.7);
    }

    .flex-control-paging li a.flex-active {
        background: #f8981f;
        cursor: default;
    }

.flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: -40px;
    text-align: right;
    color: transparent;
}

.slides, .slides > li, .flex-control-nav, .flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .flex-control-nav li {
        margin: 0 6px;
        display: inline-block;
        zoom: 1;
        *display: inline;
    }

img {
    max-width: 100%;
}

.f-r {
    float: right;
}

.f-l {
    float: left;
}

.logininput {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #d7d7d7;
    line-height: 40px;
    height: 40px;
    text-indent: 8px;
}

.kefu {
    /* margin: 0px 15px 15px 15px; */
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden;
    height: 100px;
    text-align: center;
}

    .kefu img {
        display: block;
        margin: 0px auto;
    }

.logintable > tbody > tr > td {
    border-top: 0px;
    line-height: 40px;
    padding: 4px 0px;
}

.loginbox {
    max-width: 410px;
    margin: 0px auto;
}

.loginbtn {
    width: 100%;
    border-radius: 6px;
    height: 40px;
    background: url('/Images/login-btn-bg.png') repeat-x #dfe6ec;
    text-shadow: 1px 1px 2px #fff;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1), 0 2px 4px 0 rgba(0,0,0,0.1);
    border-width: 1px;
    font-size: 20px;
    line-height: 30px;
}

.tabonebox {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    line-height: 60px;
}

.taboneouter {
    height: 60px;
    overflow: hidden;
    float: left;
    background-color: #fff;
}

.tabone {
    height: 66px;
    padding: 0px 30px;
    float: left;
    border: 1px solid #e8e8e8;
    font-size: 24px;
    color: #848484;
    border-radius: 6px;
    cursor: pointer;
    background: url(/Images/tab-one-out.png) repeat-x;
}

.taboneon {
    font-size: 30px;
    color: #3d3f40;
    background: url(/Images/tab-one-on.png) repeat-x;
}

.tabtwobox {
    width: 100%;
    height: 40px;
    border-bottom: 1px solid #d7d7d7;
    position: relative;
    line-height: 40px;
}

.tabtwoouter {
    height: 40px;
    overflow: hidden;
    float: left;
    background-color: #fff;
}

.tabtwo {
    color: #404040;
    height: 46px;
    padding: 0px 15px;
    float: left;
    border: 1px solid #d7d7d7;
    font-size: 18px;
    color: #848484;
    border-radius: 6px;
    cursor: pointer;
}

.tabtwoon {
    font-size: 24px;
    color: #00479d;
    background-color: #d7d7d7;
}

.headerone {
    width: 100%;
    overflow: hidden;
}

.headeronetxt {
    float: left;
    color: #00479d;
    font-size: 24px;
}

.headeronemore {
    float: right;
    color: #00479d;
    font-size: 18px;
    margin-top: 7px;
}

    .headeronemore a:hover {
        color: #F00;
    }

.ulone {
    margin-bottom: 0px;
}

    .ulone li {
        line-height: 30px;
        padding-left: 30px;
        overflow: hidden;
        background: url(/Images/arrow_1.gif) no-repeat 10px center;
    }

    .ulone span {
        display: block;
        float: left;
    }

.txtname {
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .txtname a:hover {
        color: #F00;
        text-decoration: underline;
    }

.date {
    width: 20%;
    text-align: right;
}

a.shichangbiaoti {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
}

    a.shichangbiaoti:hover {
        color: #F00;
        text-decoration: underline;
    }

.M00 {
    width: auto;
    height: auto;
    overflow: hidden;
    line-height: 25px;
    margin-top: 15px;
}

.huodongimg {
    width: 47%;
    height: 160px;
    float: left;
    margin-left: 5%;
    margin-top: 15px;
}

    .huodongimg:nth-child(odd) {
        margin-left: 0px;
    }

    .huodongimg img {
        width: 100%;
        height: 100%;
    }

.videobox {
    width: 100%;
    height: 200px;
    margin-top: 10px;
}

.changeproduct {
    background-color: #eef2f6;
}

.changeproducttitle {
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    color: #3d3f40;
    padding: 0px;
}

.changetabthree {
    width: 100%;
    overflow: hidden;
    padding: 5px;
    /*margin-left: -1%;*/
}

    .changetabthree span {
        width: 32%;
        float: left;
        margin: 0px;
        text-align: center;
        color: #00479d;
        font: 1.2rem;
        background: url(/Images/product-bg.png) repeat-x #fff;
        border: 1px solid #dbdfe4;
        /*margin-left: 1%;*/
        font-size: 1.5rem;
        padding: 10px 5px;
        text-shadow: 1px 1px 1px #fff, 2px 2px 1px #ccc;
        box-shadow: 0px 0px 2px #99a8b8;
    }

        .changetabthree span:not(:last-of-type) {
            margin-right: 2%;
        }
/* */
.nav-pills,
.nav-tabs {
    margin: 0;
    border: 0;
}

.nav-item .nav-link {
    border: 0;
}

.nav-pills .nav-item .nav-link,
.nav-tabs .nav-item .nav-link {
    padding: 0;
}

.nav-tabs .nav-link {
    border-radius: 0;
}

.nav-tabs .nav-item {
    margin-bottom: 0;
}

    .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active {
        background: transparent;
    }

.nav-tabs > li > a {
    margin: 0;
}

.cpzx-box .nav-item.active .nav-link {
    font-weight: 700;
    color: #1A4099;
    /*text-shadow: 0px 3px 2px rgba(0,8,33,0.4);*/
    background: linear-gradient(180deg, #2B9CFF33 0%, #fff 100%);
}

.cpzx-box .nav-item .nav-link {
    text-align: center;
    background: linear-gradient(180deg, #EAEDF1 0%, #FFFFFF 100%);
    border: 1px solid #dbdfe4;
    font-size: 1.5rem;
    padding: 10px 5px;
    /*text-shadow: 1px 1px 1px #fff, 2px 2px 1px #ccc;*/
    color: #707273;
    position: relative;
    z-index: 1;
    border-bottom: 0 none;
}

.cpzx-box .nav-item {
    position: relative;
}

    .cpzx-box .nav-item:after {
        content: "";
        display: none;
        width: 100%;
        height: calc(100% + 1px);
        background: linear-gradient(180deg, #2B9CFF33 0%, #fff 100%);
        position: absolute;
        top: 0;
        left: 0;
        border: 1px solid #D3DBE3;
        border-bottom: 0 none;
    }

    .cpzx-box .nav-item.active:after {
        display: block;
    }

.cpzx-box.nav-tabs > li.active > a,
.cpzx-box.nav-tabs > li.active > a:focus,
.cpzx-box.nav-tabs > li.active > a:hover {
    color: #00479d;
    cursor: default;
    background: linear-gradient(180deg, #2B9CFF33 0%, #fff 100%);
    border-bottom-color: transparent;
    border: 1px solid #dbdfe4;
    border-bottom: 0;
}

.cpzx-box .nav-link img {
    max-width: 70%;
    margin: 5px auto;
    display: block;
}

.cpzx-box .nav-item {
    width: 32%;
}

    .cpzx-box .nav-item:not(:last-of-type) {
        margin-right: 2%;
    }

/*.cpzx-box {
    margin-bottom: 15px;
}*/

/*.szjy-body tbody td {
    height: 100px;
}*/

.table-title {
    color: #fff;
    text-shadow: 0px 2px 2px rgba(0,8,33,0.4);
    width: 100%;
    display: table-cell;
    padding: 0px 5px;
    vertical-align: middle;
    text-align: center;
    transition: all .3s ease;
}

    .table-title:hover {
        opacity: .8;
    }

.h-1 {
    height: 102px;
}

.h-2 {
    height: 208px;
}

.h-3 {
    height: 220px;
}

.h-4 {
    height: 450px;
}

.hsz-1 {
    font-size: 16px;
}

    .hsz-1:hover {
        font-size: 18px;
    }

.hsz-2 {
    font-size: 28px;
    font-weight: 700;
}

    .hsz-2:hover {
        font-size: 32px;
    }

.hsz-3 {
    font-size: 36px;
    font-weight: 700;
}

    .hsz-3:hover {
        font-size: 38px;
    }

.szky-table,
.szzw-table,
.szjy-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

    .szjy-table a {
        display: block;
    }

    .szjy-table td {
        border: 4px solid #fff;
    }

    .szky-table td,
    .szzw-table td {
        border: 5px solid #fff;
    }


.d-table {
    display: table;
    width: 100%;
}

.c-1 {
    background: #008272;
}

.c-2 {
    background: #3181E8;
}

.c-3 {
    background: #2541AF;
}

.c-4 {
    background: #008396;
}

.c-5 {
    background: #00A127;
}

.c-6 {
    background: #E35E3D;
}

.c-7 {
    background: #00A127;
}

.c-8 {
    background: #662EB4;
}

.c-9 {
    background: #1C6DD4;
}

.c-10 {
    background: #16ACED;
}

.c-11 {
    background: #2541AF;
}

.c-12 {
    background: #86367C;
}

.c-13 {
    background: #662EB4;
}

.c-14 {
    background: #00A590;
}

.c-15 {
    background: #662EB4;
}

.c-16 {
    background: #008272;
}

.c-17 {
    background: #16ACED;
}

.c-18 {
    background: #284CD7;
}

.c-19 {
    background: #00A590;
}

.c-2-1 {
    background: #00A127;
}

.c-2-2 {
    background: #662EB4;
}

.c-2-3 {
    background: #284CD7;
}

.c-2-4 {
    background: #3181E8;
}

.c-3-1 {
    background: #00A590;
}

.c-3-2 {
    background: #16ACED;
}

.c-3-3 {
    background: #284CD7;
}

.none {
    display: none !important;
}


.dxkh-tabs .nav-item .nav-link {
    font-size: 18px;
    color: #626262;
}

.dxkh-tabs .nav-item.active .nav-link {
    color: #1A4099;
}

.dxkh-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    color: inherit;
    cursor: default;
    background: transparent;
    border: 0 none;
    border-bottom-color: transparent;
}

.nav-tabs > li > a:hover {
    background: transparent;
}

.dxkh-tabs .nav-item {
    margin: 0 20px;
    position: relative;
}

    .dxkh-tabs .nav-item::after {
        content: "";
        display: block;
        width: 0;
        height: 2px;
        background: #1A4099;
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translate(-50%);
        transition: all .3s ease;
    }

    .dxkh-tabs .nav-item.active::after {
        width: 30px;
    }

.dxkh-pagination {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

    .dxkh-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 5px 7px;
        position: relative;
        opacity: 0.3;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        background: #00479d;
    }

    .dxkh-pagination .swiper-pagination-bullet-active {
        opacity: 1;
    }

/* */
/* 2021.02.02修改注释
.changetabthree a {
  width: 24%;
  float: left;
  margin: 0px;
  text-align: center;
  color: #00479d;
  font: 1.2rem;
  background: url(/Images/product-bg.png) repeat-x #fff;
  border: 1px solid #dbdfe4;
  margin-left: 1%;
  font-size: 1.5rem;
  padding:10px 5px;
  text-shadow: 1px 1px 1px #fff, 2px 2px 1px #ccc;
  box-shadow: 0px 0px 2px #99a8b8;
}*/
.changeproduct .tab-content {
    border: 1px solid #d8dce2;
    padding: 5px;
    z-index: 200;
    /*margin-top: -2px;*/
    background-color: #fff;
    margin-bottom: 30px;
    /*border-radius: 6px;*/
}

.changetabthree span img {
    max-width: 70%;
    margin: 5px auto;
    display: block;
}


/* 2021.02.02修改注释
.changetabthree a img {
  max-width: 70%;
  margin: 5px auto;
  display: block;
}
*/
.sanjiaobox {
    position: relative;
}

    .sanjiaobox img {
        position: relative;
        margin-left: -16px;
        left: 12.5%;
        transition: left 0.5s;
        -webkit-transition: left 0.5s;
        z-index: 201;
    }

.producttable {
    width: 100%;
    max-width: 100%;
}

    .producttable th, .producttable td {
        padding: 5px;
    }

.productbox {
    color: #ffff;
    text-align: center;
    font-size: 17px;
    text-shadow: 1px 1px 2px #000;
    display: table;
    width: 100%;
}

.producttext {
    width: 100%;
    display: table-cell;
    padding: 0px 20px;
    color: #fff;
    vertical-align: middle;
    text-align: center;
}

.p-1 {
    height: 110px;
    background-color: #da542e;
}

.p-2 {
    height: 100px;
    background-color: #008272;
}

.p-3 {
    height: 220px;
    background-color: #5e3bb9;
}

.p-3-1 {
    height: 143px;
    background-color: #094cb4;
}

.p-3-2 {
    height: 143px;
    background-color: #1b88ed;
}

.p-3-3 {
    height: 144px;
    background-color: #833a7f;
}

.p-4 {
    height: 175px;
    background-color: #019f02;
}

.p-5 {
    height: 85px;
    background-color: #1b88ed;
}

.p-6 {
    height: 260px;
    background-color: #b91c47;
    font-size: 20px;
}

.p-7 {
    height: 170px;
    background-color: #5e3bb9;
}

.p-8 {
    height: 170px;
    background-color: #01b0f1;
}

.p-9 {
    height: 175px;
    background-color: #018498;
}

.p-10 {
    height: 85px;
    background-color: #0b4ab4;
}

.m-p-1 {
    background-color: #da542e;
}

.m-p-2 {
    background-color: #008272;
}

.m-p-3 {
    background-color: #5e3bb9;
}

.m-p-3-1 {
    background-color: #094cb4;
}

.m-p-3-2 {
    background-color: #1b88ed;
}

.m-p-3-3 {
    background-color: #833a7f;
}

.m-p-4 {
    background-color: #019f02;
}

.m-p-5 {
    background-color: #1b88ed;
}

.m-p-6 {
    background-color: #b91c47;
}

.m-p-7 {
    background-color: #5e3bb9;
}

.m-p-8 {
    background-color: #01b0f1;
}

.m-p-9 {
    background-color: #018498;
}

.m-p-10 {
    background-color: #0b4ab4;
}

.mobiletable div {
    color: #ffff;
    text-align: center;
    font-size: 16px;
    text-shadow: 1px 1px 2px #000;
    width: 100%;
    line-height: 60px;
    margin-top: 10px;
}

.centertable {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.ct-1 {
    width: 30%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.ct-2 {
    width: 70%;
    position: absolute;
    left: 30%;
    top: 0px;
}

    .ct-2 .productbox {
        margin-left: 10px;
    }

.ct-3 {
    width: 40%;
    position: absolute;
    left: 30%;
    top: 95px;
    overflow: hidden;
}

    .ct-3 .productbox {
        margin-left: 10px;
    }

.ct-4 {
    width: 70%;
    position: absolute;
    left: 0px;
    top: 365px;
}

.ct-5 {
    width: 30%;
    position: absolute;
    right: 0px;
    top: 95px;
    overflow: hidden;
}

    .ct-5 .productbox {
        margin-left: 10px;
    }
/* .text-in-10{
  text-indent: -10px;
} */
.customline {
    width: 160px;
    height: 1px;
    background-color: #858384;
    margin: 0px auto;
}

.secszjy-slider .owl-pagination,
.secszzw-slider .owl-pagination,
.customer-slider .owl-pagination {
    margin-top: 30px;
    margin-bottom: 20px;
}

.footer {
    padding: 15px;
    padding-top: 40px;
    overflow: hidden;
    background-color: #a9b7c2;
}

.footerul li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 12px;
}

.footerul {
    display: block;
    float: left;
    width: 20%;
    padding: 0px 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 180px;
}

.footerone {
    overflow: hidden;
}

.footerul li.footertitle {
    font-size: 1rem;
    font-weight: bold;
    color: #404040;
    margin-bottom: 20px;
}

.text-c {
    text-align: center;
}

.reda:hover {
    color: #F00;
    text-decoration: underline;
}

.copyright {
    background-color: #a9b7c2;
    text-align: center;
    padding: 20px;
    font-size: 12px;
}

.online {
    font-size: 14px;
}

.onlinebtn {
    float: right;
    width: 69px;
    height: 69px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 999;
}

.onlineservicebox {
    width: 75%;
    background-color: rgba(255,255,255,0.9);
    box-shadow: 0px 3px 13px rgba(0,0,0,0.34);
    display: none;
    height: 68px;
    position: fixed;
    bottom: 15px;
    right: 88px;
    z-index: 9999;
}

.onlinebox {
    position: relative;
    overflow: hidden;
    padding: 10px;
    padding-right: 10px;
    padding-right: 0px;
}

.onlineimg {
    margin: 5px auto;
    width: 35px;
    height: 35px;
    display: block;
}

.onlineerweima {
    height: 58px;
    float: right;
}

.online {
    width: 33.3333%;
    float: left;
    text-align: center;
}

.PF_R {
    width: 147px;
    height: auto;
    background-color: #efefef;
    position: absolute;
    right: 0;
    top: 20%;
    overflow: hidden;
    z-index: 1000;
}

.M01 {
    width: auto;
    height: auto;
    overflow: hidden;
}

.divline_10 {
    height: 10px;
    line-height: 10px;
    width: auto;
    overflow: hidden;
    clear: both;
}

.probootstrap-header .container {
    position: relative;
}

.z_16 {
    font-size: 16px;
}

.picnews-slider div.owl-prev {
    float: left;
    background: #00479d !important;
}

    .picnews-slider div.owl-prev i, .picnews-slider div.owl-next i {
        font-size: 20px;
    }

.picnews-slider div.owl-next {
    float: right;
    background: #00479d !important;
}

.picnews-slider .owl-controls {
    overflow: hidden;
    position: absolute;
    top: 40%;
    width: 100%;
}

.picnews-slider {
    height: 100%;
}

    .picnews-slider .owl-wrapper-outer {
        height: 100%;
    }

    .picnews-slider .owl-wrapper {
        height: 100%;
    }

    .picnews-slider .owl-item {
        height: 100%;
    }

    .picnews-slider img {
        height: 100%;
        width: 100%;
    }

    .picnews-slider .pic-info {
        background: rgba(0,0,0,.5);
        color: #fff;
        position: absolute;
        bottom: 0px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding: 5px 10px
    }




.videonews-slider div.owl-prev {
    float: left;
    background: #00479d !important;
}

    .videonews-slider div.owl-prev i, .videonews-slider div.owl-next i {
        font-size: 20px;
    }

.videonews-slider div.owl-next {
    float: right;
    background: #00479d !important;
}

.videonews-slider .owl-controls {
    overflow: hidden;
    position: absolute;
    top: 40%;
    width: 100%;
}

.videonews-slider {
    height: 100%;
}

    .videonews-slider .owl-wrapper-outer {
        height: 100%;
    }

    .videonews-slider .owl-wrapper {
        height: 100%;
    }

    .videonews-slider .owl-item {
        height: 100%;
    }

    .videonews-slider img {
        height: 100%;
        width: 100%;
    }

.mobiletable a {
    color: #fff
}

.homepage-slider .owl-pagination {
    margin-top: -35px;
}

.homepage-slider .owl-controls {
    margin-bottom: 8px;
}

@media screen and (min-width: 992px) {
    .onlinebtn {
        display: none;
    }

    .telbox {
        margin-top: 25px;
    }

        .telbox img {
            margin-right: 10px;
        }

    .telone, .teltwo {
        line-height: 45px;
    }

    .telone {
        font-size: 18px;
        color: #00479d;
        font-weight: 600;
    }

    .teltwo {
        font-size: 18px;
        color: #de001e;
        font-weight: 600;
    }

    .probootstrap-main-nav {
        color: #333;
        font-weight: bold;
        font-size: 16px;
    }

    .slider-height, .flexslider, .flexslider .slides > li {
        height: 240px;
        overflow: hidden;
    }

    .visible-xs {
        display: none !important;
    }

    .visible-max {
        display: block !important;
    }

    .header-zhanwei {
        height: 145px;
    }

    .probootstrap-header {
        background-color: #eef2f6;
        color: #fff;
        font-size: 16px;
        line-height: 41px;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

    .probootstrap-nav {
        position: relative;
        height: 57px;
    }

    .probootstrap-main-nav {
        position: absolute;
        width: 100%;
        z-index: 1000;
        bottom: 0px;
    }
    /*web histroy*/
    .RD_00 {
        width: 100%;
        min-width: 1200px;
        height: 128px;
        background-color: #eef1f6;
        overflow: hidden;
    }

    #prev, #next {
        width: 4.5%;
        height: 128px;
        cursor: pointer;
    }

    .historylineweb {
        overflow: hidden;
        background-color: #eef2f6;
    }

    #prev img {
        float: right;
    }

    #next img {
        float: left;
    }

    .FL {
        float: left;
    }

    #slider_pic {
        width: 91%;
        height: 128px;
        overflow: hidden;
        position: relative;
    }

    .slider_pic_bg {
        position: absolute;
        width: 100%;
    }

    #slider_pic ul {
        position: absolute;
        left: 0;
        height: 128px;
    }

        #slider_pic ul li {
            float: left;
        }

    .RD_01 {
        height: 128px;
        /* margin: 0 10px; */
        overflow: hidden;
    }

    .RD_01_T {
        height: 48px;
        text-align: center;
        line-height: 48px;
        overflow: hidden;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    .zL {
        color: #00469c;
    }

    .z_14 {
        font-size: 14px;
    }

    .divline_10 {
        height: 10px;
        line-height: 10px;
        width: auto;
        overflow: hidden;
        clear: both;
    }

    .RD_01_B {
        width: 80%;
        margin: 0px auto;
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        line-height: 24px;
        -webkit-line-clamp: 2;
        height: 45px;
    }

    .lanmutitle {
        font-size: 30px;
        text-align: left;
    }

    .shichangtxt {
        margin-left: 30px;
    }

    .huodongimg {
        height: 96px;
    }
}

@media only screen and (max-width: 991px) {
    .second-menu-list {
        display: none
    }

    #PF, #PF_R {
        display: none !important;
    }

    .jdc-side {
        display: none !important;
    }

    .onlinebtn {
        display: block;
    }

    .homepage-slider img {
        min-height: 200px;
    }

    body {
        font-size: 14px;
    }

    .slider-height, .flexslider, .flexslider .slides > li {
        height: inherit;
        height: 300px;
    }

    .header-zhanwei {
        height: 3rem;
    }

    .probootstrap-header {
        background: url("/Images/top-bg.png") repeat-x bottom #fff;
        height: 3rem;
        position: fixed;
        z-index: 1000;
        width: 100%;
    }

    .visible-xs {
        display: block !important;
    }

    .visible-max {
        display: none !important;
    }

    .container {
        max-width: none;
    }

    .logo-mobile {
        width: 60%;
        padding: 1rem 0rem;
    }

    .show .probootstrap-nav .probootstrap-main-nav li {
        width: 100%;
        color: #fff;
        line-height: 3rem;
        font-size: 1rem;
    }

    .probootstrap-main-nav li {
        text-align: left;
    }

        .probootstrap-main-nav li i {
            text-align: center;
        }

    .show .probootstrap-nav .probootstrap-main-nav li a {
        text-align: left;
        text-indent: 0.2rem;
    }

    .first-li a {
        display: inline-block;
        width: auto;
    }

    .first-li i {
        float: right;
        line-height: 3rem;
        width: 3rem;
    }

    .probootstrap-main-nav li:hover i {
        transform-origin: center center;
        -webkit-transition: .3s all ease-out;
        transition: .3s all ease-out;
        transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -o-transform: rotate(90deg);
    }

    .panelclose {
        width: 3rem;
        height: 3rem;
        display: block;
        z-index: 10000;
        background: url(/Images/close.png) no-repeat center;
        top: 0rem;
        right: 0.5rem;
        position: absolute;
    }

    .probootstrap-main-nav {
        padding: 0px;
        margin: 0rem;
        margin-top: 7rem;
        /* overflow: hidden; */
        float: left;
    }

    .mobile {
        margin-top: 2rem;
        width: 100%;
        height: 3rem;
    }

    #nav {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

        #nav li {
            width: 100%;
            height: 3rem;
            line-height: 3rem;
            text-align: left;
            text-indent: 16px;
            border-bottom: 1px solid #eee;
        }

            #nav li i {
                float: right;
                height: 3rem;
                line-height: 3rem;
                margin-right: 16px;
            }

    .mobilelogo {
        height: 2rem;
        margin-top: 0.5rem;
        float: left;
    }

    .header-tel {
        display: block;
        float: right;
        min-width: 120px;
        margin-top: 5px;
        overflow: hidden;
        position: absolute;
        left: 130px;
        right: 60px;
        font-size: 14px;
    }

    .telone {
        color: #00479d;
    }

    .teltwo {
        color: #de001e;
    }

    .historyline {
        background-color: #eef2f6;
        padding: 20px 0px;
        position: relative;
    }

    .historycontent {
        padding: 0px 20px 0px 25px;
    }

    .bigevent {
        font-size: 22px;
        font-weight: normal;
        text-align: center;
        padding-top: 0px;
        margin-bottom: 5px;
        margin-top: 0px;
    }

    .linebg {
        padding-left: 12px;
        background-image: url(/Images/histroyline.png);
        background-position: left;
        background-repeat: repeat-y;
        padding-top: 10px;
    }

        .linebg:last-child {
            padding-top: 0px;
            padding-bottom: 10px;
        }

    .historytime {
        color: #00479d;
        font-weight: bold;
        font-size: 14px;
        margin-left: -15px;
        padding-left: 15px;
        background: url(/Images/jiediansmall.png) no-repeat left center;
    }

    .historystart {
        margin-left: -18px;
        padding-left: 17px;
        height: 17px;
        background: url(/Images/histroystart.png) no-repeat left center;
    }

    .historyend {
        margin-left: -18px;
        padding-left: 17px;
        height: 17px;
        background: url(/Images/histroyend.png) no-repeat left center;
    }

    .lineleft {
        position: absolute;
        width: 10px;
        height: auto;
        background: url(/Images/lineleft.png) repeat-y;
        top: 10px;
        bottom: 10px;
        left: 10px;
    }

    .lineright {
        position: absolute;
        width: 10px;
        height: auto;
        background: url(/Images/lineright.png) repeat-y;
        top: 10px;
        bottom: 10px;
        right: 10px;
    }

    .lanmutitle {
        text-align: center;
    }

    .txtname {
        width: 60%;
    }

    .date {
        width: 40%;
    }

    .changetabthree span {
        font-size: 1rem;
    }
    /* 2021.02.02修改注释
.changetabthree a {
      font-size: 1rem;
}*/
}


@media only screen and (max-width:375px) {
    .show .probootstrap-nav .probootstrap-main-nav li {
        line-height: 2.5rem;
    }

    .first-li i {
        float: right;
        line-height: 2.5rem;
        width: 2.5rem;
    }
}

@media (min-width: 1400px) {
    .container {
        width: 1230px;
    }
}

@media (max-width: 1200px) {
    .RD_01_T {
        height: 30px;
    }
}

@media (max-width: 800px) {
    .productbox {
        font-size: 12px;
    }

    .p-6 {
        font-size: 12px;
    }

    .footerul {
        width: 33.33%;
    }
}

@media (max-width: 600px) {
    .tabone {
        padding: 0px 20px;
        font-size: 20px;
    }

    .taboneon {
        font-size: 24px;
    }

    .webtable {
        display: none;
    }

    .mobiletable {
        display: block;
    }

    .dxkh-tabs .nav-item {
        margin: 0 8px;
    }
}

@media (min-width: 600px) {
    .webtable {
        display: block;
    }

    .mobiletable {
        display: none !important;
    }
}

@media (min-width: 768px)and(max-width:992px) {
    .container {
        width: auto;
    }
}

.second-menu {
    float: right;
    line-height: 63px;
    color: #24344f;
    font-size: 20px;
}

.SCHDPic {
    width: 100%;
    height: 210px
}
