/**
 * Swiper 6.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 9, 2020
 */

@font-face {
    font-family: swiper-icons;
    src: url(../fonts/166ce51e818142498a990c1de4551dd4.woff?55726380cfca4b59bff7e2b2b917be47) format('woff');
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    transform: translate3d(0px, 0, 0)
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap
}

.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-container-3d {
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: 'prev'
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    content: 'next'
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #ffffff
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
    --swiper-navigation-color: #000000
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0)
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-white {
    --swiper-pagination-color: #ffffff
}

.swiper-pagination-black {
    --swiper-pagination-color: #000000
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg)
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0
}

.swiper-container-flip {
    overflow: visible
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

html, body {
    font-family: Arial, Helvetica, sans-serif;
    background: white;
    text-align: left;
    color: #363f4d;
}

* {
    margin: 0;
    padding: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
}

ul, li, ol {
    list-style: none outside
}

a {
    text-decoration: none;
    color: #363f4d;
}

img {
    border: none;
}

input, button, select, textarea {
    outline: none;
}

input, textarea {
    background: none
}

*, ::after, ::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

article, aside, footer, header, nav, section {
    display: block;
}

/*清除苹果按钮格式*/
input[type="text"], input[type="button"], input[type="submit"], input[type="reset"] {
    -webkit-appearance: none;
    border-radius: 0;
}

/*整体布局样式结束*/

.main {
    background-color: #fff;
}


/*网页头部开始*/
header {
    position: relative;
    z-index: 3;
}

.header-box {
    width: 100%;
}

.header-top {
    align-items: center;
    padding-top: 5px;
    background-color: #fff;
}

.header-inner {
    width: 90%;
    margin: auto;
    max-width: 1200px;
    position: relative;
}

/*清除浮动*/
.clear {
    clear: both
}

/*顶部联系方式*/
.header-contact {
    float: left;
}

.header-contact ul {
    overflow: hidden;
}

.header-contact ul li {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    color: #333;
    margin: 0 12px 5px 0;
    line-height: 34px;
}

.header-contact ul li a {
    display: inline-block;
    vertical-align: middle;
}

.header-contact ul li a:hover {
    color: #222;
}

.header-contact ul li i {
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}

.header-contact ul li.website-mailbox i {
    font-size: 18px;
    margin-top: -2px;
}

.header-contact ul li.website-phone i {
    font-size: 14px;
    font-weight: bold;
}

/*顶部社交*/
.social-link {
    float: right;
}

.social-link a {
    color: #fff;
    margin-left: 5px;
    float: left;
    display: inline-block;
    margin-bottom: 4px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: #ffd700;
    text-align: center;
}

.social-link a i {
    font-size: 22px;
    color: #fff;
}

/*.social-link a.facebook i{ color: #4267b2;}
.social-link a.twitter i{ color: #02b0e8;}
.social-link a.google-plus i{ color: #f2623b;}
.social-link a.linkedin i{ color: #0094d3;}
.social-link a.skype i{ color: #00aff0;}
.social-link a.youTube i{ color: #ff011d;}
.social-link a.pinterest i{ color: #ce2125;}
.social-link a.instagram i{ color: #cc3893;}
.social-link a:hover{ background-color: #ffd700;}*/
.social-link a:hover {
    background-color: #000;
}

/*语言选择开始*/
.language {
    float: right;
    margin-bottom: 4px;
}

.language .cur {
    cursor: pointer;
    position: relative;
    padding: 8px 5px 6px 8px;
    background-color: #f2f2f2;
    margin-right: 10px;
    border-radius: 2px;
}

.language .cur e {
    color: #555;
    font-size: 12px;
    line-height: 20px;
    background-image: url(../images/flag.png?29c07a7e5b4291aacd6c0e5966f6efe0);
    background-repeat: no-repeat;
    padding-left: 30px;
    height: 20px;
    display: block;
}

.language .cur e i {
    font-weight: bold;
    font-size: 12px;
    margin-left: 3px;
}

.language .cur:hover e {
    color: #ff3b23;
}

.language ul.language-list {
    max-height: 400px;
    overflow: auto;
    position: absolute;
    z-index: 2;
    top: 24px;
    right: 0;
    list-style-type: none;
    background-color: #fff;
    font-size: 12px;
    height: 0;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    opacity: 0;
}

.language .cur:hover .language-list {
    opacity: 1;
    height: auto;
    padding: 2px 5px;
    -webkit-box-shadow: 0 0 5px #ccc;
    -moz-box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px #ccc;
}

.language ul.language-list li {
    padding: 4px 4px 2px 4px;
    overflow: hidden;
    border-bottom: 1px solid #ececec;
    margin: 3px 0 2px 0;
}

.language ul.language-list li a {
    color: #1b1b1b;
    font-size: 12px;
    line-height: 20px;
    background-image: url(../images/flag.png?29c07a7e5b4291aacd6c0e5966f6efe0);
    background-repeat: no-repeat;
    background-position: 0 0;
    padding: 0 0 0 30px;
    float: left;
    width: 100%;
    white-space: nowrap;
}

.language ul.language-list li:hover {
    background-color: #ffd700;
}

.language ul.language-list li:hover a {
    color: #fff;
}

.language e.cn, .language ul.language-list li a.cn {
    background-position: 0 0;
}

.language e.en, .language ul.language-list li a.en {
    background-position: 0 -22px;
}

.language e.es, .language ul.language-list li a.es {
    background-position: 0 -44px;
}

.language e.nl, .language ul.language-list li a.nl {
    background-position: 0 -66px;
}

.language e.ar, .language ul.language-list li a.ar {
    background-position: 0 -88px;
}

.language e.ru, .language ul.language-list li a.ru {
    background-position: 0 -110px;
}

.language e.de, .language ul.language-list li a.de {
    background-position: 0 -132px;
}

.language e.ja, .language ul.language-list li a.ja {
    background-position: 0 -154px;
}

.language e.pt, .language ul.language-list li a.pt {
    background-position: 0 -176px;
}

.language e.fr, .language ul.language-list li a.fr {
    background-position: 0 -198px;
}

.language e.it, .language ul.language-list li a.it {
    background-position: 0 -220px;
}

.language e.ko, .language ul.language-list li a.ko {
    background-position: 0 -242px;
}

.language e.th, .language ul.language-list li a.th {
    background-position: 0 -264px;
}

.language e.el, .language ul.language-list li a.el {
    background-position: 0 -286px;
}

.language e.pl, .language ul.language-list li a.pl {
    background-position: 0 -308px;
}

.language e.bul, .language ul.language-list li a.bul {
    background-position: 0 -330px;
}

.language e.est, .language ul.language-list li a.est {
    background-position: 0 -352px;
}

.language e.dan, .language ul.language-list li a.dan {
    background-position: 0 -374px;
}

.language e.fin, .language ul.language-list li a.fin {
    background-position: 0 -396px;
}

.language e.cs, .language ul.language-list li a.cs {
    background-position: 0 -418px;
}

.language e.rom, .language ul.language-list li a.rom {
    background-position: 0 -440px;
}

.language e.slo, .language ul.language-list li a.slo {
    background-position: 0 -462px;
}

.language e.swe, .language ul.language-list li a.swe {
    background-position: 0 -484px;
}

.language e.hu, .language ul.language-list li a.hu {
    background-position: 0 -506px;
}

.language e.hi, .language ul.language-list li a.hi {
    background-position: 0 -528px;
}

.language e.tr, .language ul.language-list li a.tr {
    background-position: 0 -550px;
}

.language e.vi, .language ul.language-list li a.vi {
    background-position: 0 -572px;
}

.language e.fa, .language ul.language-list li a.fa {
    background-position: 0 -594px;
}

.language e.he, .language ul.language-list li a.he {
    background-position: 0 -616px;
}

.language e.sk, .language ul.language-list li a.sk {
    background-position: 0 -638px;
}

.language e.id, .language ul.language-list li a.id {
    background-position: 0 -660px;
}

.language e.lt, .language ul.language-list li a.lt {
    background-position: 0 -682px;
}

.language e.lv, .language ul.language-list li a.lv {
    background-position: 0 -704px;
}

.language e.ms, .language ul.language-list li a.ms {
    background-position: 0 -726px;
}

.language e.no, .language ul.language-list li a.no {
    background-position: 0 -748px;
}

.language e.uk, .language ul.language-list li a.uk {
    background-position: 0 -770px;
}

.language e.ur, .language ul.language-list li a.ur {
    background-position: 0 -792px;
}

.language e.hr, .language ul.language-list li a.hr {
    background-position: 0 -814px;
}

.language e.tw, .language ul.language-list li a.tw {
    background-position: 0 0;
}

.language e.bn, .language ul.language-list li a.bn {
    background-position: 0 -836px;
}

.language e.te, .language ul.language-list li a.te {
    background-position: 0 -859px;
}

.language e.ta, .language ul.language-list li a.ta {
    background-position: 0 -880px;
}

.language e.sr, .language ul.language-list li a.sr {
    background-position: 0 -902px;
}

.language e.tl, .language ul.language-list li a.tl {
    background-position: 0 -924px;
}

.language e.is, .language ul.language-list li a.is {
    background-position: 0 -946px;
}

.language e.ca, .language ul.language-list li a.ca {
    background-position: 0 -968px;
}

/*导航栏*/
.sm {
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.sm, .sm ul, .sm li {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: normal;
    direction: ltr;
    text-align: left;
}

.sm-rtl, .sm-rtl ul, .sm-rtl li {
    direction: rtl;
    text-align: right;
}

.sm > li > h1, .sm > li > h2, .sm > li > h3, .sm > li > h4, .sm > li > h5, .sm > li > h6 {
    margin: 0;
    padding: 0;
}

.sm ul {
    display: none;
}

.sm li, .sm a {
    position: relative;
}

.sm a {
    display: block;
}

.sm a.disabled {
    cursor: default;
}

.sm::after {
    content: "";
    display: block;
    height: 0;
    font: 0px/0 serif;
    clear: both;
    overflow: hidden;
}

.sm *, .sm *::before, .sm *::after {
    box-sizing: inherit;
}

.main-nav {
    padding: 0 10px;
}

.main-nav:after {
    clear: both;
    content: "\00a0";
    display: block;
    height: 0;
    font: 0px/0 serif;
    overflow: hidden;
}

.nav-brand {
    float: left;
    margin: 0;
}

.nav-brand a {
    display: block;
    padding: 10px 10px 10px 20px;
    color: #fff;
    font-size: 22px;
    font-weight: normal;
    line-height: 29px;
    text-decoration: none;
}

#main-menu {
    clear: both;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#main-menu:before {
    content: '';
    display: block;
    height: 1px;
    overflow: hidden;
    background: #fff;
}

@media (min-width: 768px) {
    #main-menu:before {
        display: none;
    }
}

.main-menu-btn {
    float: right;
    margin: 10px;
    position: relative;
    display: inline-block;
    width: 29px;
    height: 29px;
    text-indent: 29px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.main-menu-btn-icon,
.main-menu-btn-icon:before,
.main-menu-btn-icon:after {
    position: absolute;
    top: 50%;
    left: 2px;
    height: 2px;
    width: 24px;
    background: #fff;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.main-menu-btn-icon:before {
    content: '';
    top: -7px;
    left: 0;
}

.main-menu-btn-icon:after {
    content: '';
    top: 7px;
    left: 0;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
    height: 0;
    background: transparent;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#main-menu-state {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

#main-menu-state:not(:checked) ~ #main-menu {
    display: none;
}

#main-menu-state:checked ~ #main-menu {
    display: block;
}

@media (min-width: 768px) {
    .main-menu-btn {
        position: absolute;
        top: -99999px;
    }

    #main-menu-state:not(:checked) ~ #main-menu {
        display: table;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
}

.demo-text {
    margin: 3em 22px;
}

.demo-text p {
    margin-bottom: 1em;
}

.demo-text a {
    color: #999;
}

.sm-blue {
    max-height: 400px;
    background: transparent;
    overflow: auto;
}

.sm-blue li a {
    padding: 10px;
}

.sm-blue a, .sm-blue a:hover, .sm-blue a:focus, .sm-blue a:active {
    color: #fff;
    font-size: 16px;
    line-height: 23px;
    text-decoration: none;
}

.sm-blue a.disabled {
    color: #a1d1e8;
}

.sm-blue a .sub-arrow {
    position: absolute;
    top: 50%;
    margin-top: -17px;
    left: auto;
    right: 4px;
    width: 34px;
    height: 34px;
    overflow: hidden;
    font: bold 16px/34px monospace !important;
    text-align: center;
    text-shadow: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.sm-blue a .sub-arrow::before {
    content: '+';
}

.sm-blue a.highlighted .sub-arrow::before {
    content: '-';
}

.sm-blue > li:last-child > a.highlighted, .sm-blue > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted {
    border-radius: 0;
}

.sm-blue ul {
    background: #fff;
}

.sm-blue ul ul {
    background: rgba(102, 102, 102, 0.1);
}

.sm-blue ul a, .sm-blue ul a:hover, .sm-blue ul a:focus, .sm-blue ul a:active {
    background: transparent;
    color: #2b82ac;
    font-size: 13px;
    text-shadow: none;
    border-left: 8px solid transparent;
}

.sm-blue ul a.current {
    background: #006892;
    background-image: linear-gradient(to bottom, #006188, #006f9c);
    color: #fff;
}

.sm-blue ul a.disabled {
    color: #b3b3b3;
}

.sm-blue ul ul a,
.sm-blue ul ul a:hover,
.sm-blue ul ul a:focus,
.sm-blue ul ul a:active {
    border-left: 16px solid transparent;
}

.sm-blue ul ul ul a,
.sm-blue ul ul ul a:hover,
.sm-blue ul ul ul a:focus,
.sm-blue ul ul ul a:active {
    border-left: 24px solid transparent;
}

.sm-blue ul ul ul ul a,
.sm-blue ul ul ul ul a:hover,
.sm-blue ul ul ul ul a:focus,
.sm-blue ul ul ul ul a:active {
    border-left: 32px solid transparent;
}

.sm-blue ul ul ul ul ul a,
.sm-blue ul ul ul ul ul a:hover,
.sm-blue ul ul ul ul ul a:focus,
.sm-blue ul ul ul ul ul a:active {
    border-left: 40px solid transparent;
}

.sm-blue ul li {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.sm-blue ul li:first-child {
    border-top: 0;
}

@media (min-width: 768px) {
    .main-nav {
        float: right;
        width: 74%;
        padding: 0;
    }

    .sm-blue ul {
        top: 80px;
        position: absolute;
        width: 12em;
    }

    .sm-blue > li {
        display: table-cell;
        height: 80px;
        vertical-align: middle;
        padding: 0 10px;
        text-align: center;
    }

    .sm-blue > li > a {
        padding: 0;
        position: relative;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .sm-blue.sm-rtl li {
        float: right;
    }

    .sm-blue ul li, .sm-blue.sm-rtl ul li, .sm-blue.sm-vertical li {
        float: none;
    }

    .sm-blue ul a, .sm-blue.sm-vertical a {
        white-space: normal;
    }

    .sm-blue .sm-nowrap > li > a, .sm-blue .sm-nowrap > li > :not(ul) a {
        white-space: nowrap;
        font-size: 14px;
    }

    .sm-blue a {
        color: #363f4d;
    }

    .sm-blue a:hover, .sm-blue a:focus, .sm-blue a:active, .sm-blue a.highlighted {
        color: #fff;
    }

    .sm-blue > li.current > a {
        color: #fff;
    }

    .sm-blue > li.current::before {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        width: 100%;
        height: 70px;
        background: #000;
        z-index: -1;
    }

    .sm-blue a.disabled {
        color: #000;
    }

    .sm-blue a:hover .sub-arrow, .sm-blue .highlighted .sub-arrow, .sm-blue > .current > a .sub-arrow {
        border-color: #fff transparent transparent transparent;
    }

    .sm-blue ul a:hover .sub-arrow, .sm-blue ul .highlighted .sub-arrow {
        border-color: transparent transparent transparent #ffd700;
    }

    .sm-blue a .sub-arrow {
        position: static;
        width: 0;
        height: 0;
        margin-top: 0;
        border-width: 5px;
        border-style: solid dashed dashed dashed;
        border-color: #333 transparent transparent transparent;
        background: transparent;
        border-radius: 0;
        display: inline-block;
        margin-left: 5px;
    }

    .sm-blue a .sub-arrow::before {
        display: none;
    }

    .sm-blue > li:first-child {
        border-left: 0;
    }

    .sm-blue ul {
        padding: 7px 0;
        background: #fff;
        border-radius: 0 0 4px 4px !important;
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    }

    .sm-blue ul ul {
        border-radius: 4px !important;
        background: #fff;
    }

    .sm-blue ul a, .sm-blue ul a:hover, .sm-blue ul a:focus, .sm-blue ul a:active, .sm-blue ul a.highlighted {
        border: 0 !important;
        padding: 9px 23px;
        background: transparent;
        color: #666;
        border-radius: 0 !important;
    }

    .sm-blue ul a:hover, .sm-blue ul a:focus, .sm-blue ul a:active, .sm-blue ul a.highlighted {
        color: #ffd700;
    }

    .sm-blue ul a.current {
        color: #ffd700;
    }

    .sm-blue ul a.disabled {
        background: #fff;
        color: #b3b3b3;
    }

    .sm-blue ul a .sub-arrow {
        top: 50%;
        margin-top: -5px;
        bottom: auto;
        left: auto;
        margin-left: 10;
        right: 10px;
        border-style: dashed dashed dashed solid;
        border-color: transparent transparent transparent #666;
    }

    .sm-blue ul li {
        border: 0;
    }

    .sm-blue .scroll-up,
    .sm-blue .scroll-down {
        position: absolute;
        display: none;
        visibility: hidden;
        overflow: hidden;
        background: #fff;
        height: 20px;
    }

    .sm-blue .scroll-up-arrow,
    .sm-blue .scroll-down-arrow {
        position: absolute;
        top: -2px;
        left: 50%;
        margin-left: -8px;
        width: 0;
        height: 0;
        overflow: hidden;
        border-width: 8px;
        border-style: dashed dashed solid dashed;
        border-color: transparent transparent #2b82ac transparent;
    }

    .sm-blue .scroll-down-arrow {
        top: 6px;
        border-style: solid dashed dashed dashed;
        border-color: #2b82ac transparent transparent transparent;
    }

    .sm-blue.sm-rtl.sm-vertical a .sub-arrow {
        right: auto;
        left: 10px;
        border-style: dashed solid dashed dashed;
        border-color: transparent #a1d1e8 transparent transparent;
    }

    .sm-blue.sm-rtl > li:first-child > a, .sm-blue.sm-rtl > li:first-child > :not(ul) a {
        border-radius: 0 8px 8px 0;
    }

    .sm-blue.sm-rtl > li:last-child > a, .sm-blue.sm-rtl > li:last-child > :not(ul) a {
        border-radius: 8px 0 0 8px !important;
    }

    .sm-blue.sm-rtl > li:first-child {
        border-left: 1px solid #2b82ac;
    }

    .sm-blue.sm-rtl > li:last-child {
        border-left: 0;
    }

    .sm-blue.sm-rtl ul a .sub-arrow {
        right: auto;
        left: 10px;
        border-style: dashed solid dashed dashed;
        border-color: transparent #a1d1e8 transparent transparent;
    }

    .sm-blue.sm-vertical {
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }

    .sm-blue.sm-vertical a {
        padding: 9px 23px;
    }

    .sm-blue.sm-vertical a .sub-arrow {
        top: 50%;
        margin-top: -5px;
        bottom: auto;
        left: auto;
        margin-left: 0;
        right: 10px;
        border-style: dashed dashed dashed solid;
        border-color: transparent transparent transparent #a1d1e8;
    }

    .sm-blue.sm-vertical > li:first-child > a, .sm-blue.sm-vertical > li:first-child > :not(ul) a {
        border-radius: 8px 8px 0 0;
    }

    .sm-blue.sm-vertical > li:last-child > a, .sm-blue.sm-vertical > li:last-child > :not(ul) a {
        border-radius: 0 0 8px 8px !important;
    }

    .sm-blue.sm-vertical > li {
        border-left: 0 !important;
    }

    .sm-blue.sm-vertical ul {
        border-radius: 4px !important;
    }

    .sm-blue.sm-vertical ul a {
        padding: 9px 23px;
    }
}

/*banner*/
.banner_sy {
    background-color: #fff;
}

.slides {
    text-align: center;
    overflow: hidden;
    display: block;
}

.flex-container a:active,
.flexslider a:active {
    outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 2;
}

.flexslider {
    width: 100%;
    overflow: hidden;
    position: relative;
    zoom: 1;
    z-index: 2;
}

.flexslider .slides > li {
    display: none;
}

.flexslider .slides img {
    width: 100%;
    display: block;
    text-align: center;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
}

.slides:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

html[xmlns] .slides {
    display: block;
}

* html .slides {
    height: 1%;
}

.no-js .slides > li:first-child {
    display: block;
}

.flexslider .slides {
    zoom: 1;
}

.flexslider .slides > li {
    position: relative;
}

.flex-direction-nav {
    width: 100%;
}

.flex-direction-nav li {
    position: absolute;
    bottom: 45%;
}

.flex-direction-nav li:nth-child(1) {
    left: 15px;
}

.flex-direction-nav li:nth-child(2) {
    right: 15px;
}

.flex-direction-nav li a {
    width: 45px;
    height: 45px;
    margin: -13px 0 0;
    display: block;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    background-position: 0 0;
    z-index: 1;
    font-size: 0;
    text-align: center;
    background-color: #e1e1e1;
}

.flexslider:hover a.next, .flexslider:hover a.prev {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

.flexslider a.prev {
    transform: rotateY(180deg);
}

.flex-direction-nav li a:before {
    font-family: "iconfont" !important;
    content: "\e61a";
    font-style: normal;
    font-weight: bold;
    speak: none;
    -webkit-font-smoothing: antialiased;
    text-transform: none;
    font-size: 16px;
    color: #fff;
    line-height: 45px;
}

.flex-direction-nav li a:hover {
    background-color: #ffd700;
}

.flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: 2%;
    text-align: center;
    overflow: hidden;
    height: 20px;
}

.flex-control-nav li {
    display: inline-block;
    zoom: 1;
    *display: inline;
    margin: 0px 5px 0px 5px;
    vertical-align: middle;
}

.flex-control-nav li a {
    width: 8px;
    height: 8px;
    display: block;
    cursor: pointer;
    text-indent: -9999px;
    background-color: #ececec;
    border: 2px solid #FFF;
    border-radius: 50%;
}

.flex-control-nav li a:hover {
    background-color: #CCC;
}

.flex-control-nav li a.active {
    width: 14px;
    height: 14px;
    cursor: default;
    background-color: #ffd700;
}

/*文字*/
.banner-text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-text-c {
    width: 90%;
    height: 100%;
    max-width: 1170px;
    margin: auto;
    position: relative;
}

.banner-text-c .itme {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.banner-text-c .itme .th {
    font-size: 38px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
}

.banner-text-c .itme p {
    color: #363f4d;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 48px;
}

.banner-text-c .itme span {
    display: inline-block;
}

.banner-text-c .itme span a {
    position: relative;
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    text-transform: uppercase;
    padding: 10px 30px;
    background: transparent;
    display: inline-block;
    border: 2px solid #fff;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.banner-text-c .itme span a:hover {
    border-color: #ffd700;
    background: #ffd700;
    color: #363f4d;
}

@media screen and (max-width: 1044px) {
    .banner-text-c .itme .th {
        font-size: 30px;
    }

    .banner-text-c .itme p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        max-height: 48px;
    }
}

@media screen and (max-width: 768px) {
    .banner-text-c .itme .th {
        font-size: 18px;
    }

    .banner-text-c .itme p {
        display: none;
    }

    .banner-text-c .itme span a {
        font-size: 14px;
        line-height: 28px;
        padding: 0px 10px;
    }

    .flex-direction-nav li {
        position: absolute;
        bottom: 35%;
    }

    .flex-direction-nav li:nth-child(1) {
        left: 5px;
    }

    .flex-direction-nav li:nth-child(2) {
        right: 5px;
    }

    .flex-direction-nav li a {
        width: 30px;
        height: 30px;
        opacity: 0.5;
    }

    .flex-direction-nav li a.next:before {
        font-size: 13px;
        line-height: 30px;
    }

    .flex-direction-nav li a.prev:before {
        font-size: 12px;
        line-height: 32px;
    }
}

@media screen and (max-width: 480px) {
    .banner-text-c .itme .th {
        font-size: 16px;
        font-weight: normal;
    }

    .banner-text-c .itme span a {
        font-size: 12px;
        line-height: 22px;
        font-weight: normal;
    }
}

/*语言选择结束*/
/*导航栏置顶固定*/
#fixedMenu {
    width: 100%;
}

.header-middle.top-fixed {
    position: fixed;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
}

.header-middle.top-fixed .main-nav {
    margin: 0
}

.header-middle .header-logo, .main-nav, .header-logo-box a img {
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transform: translate3d(0, 0, 0);
}

/*头部中间*/
.header-middle {
    width: 100%;
    background-color: #ffd700;
    display: inline-block;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.header-middle .header-logo {
    float: left;
    height: 60px;
    max-width: 24%;
    margin-top: 10px;
}

.header-logo-box {
    height: 100%;
    float: left;
    display: table;
}

.header-logo-box a {
    display: table-cell;
    vertical-align: middle;
}

.header-logo-box a img {
    display: inline-block;
    max-height: 60px;
    max-width: 100%;
}

/*头部格言*/
.header-middle .company-motto {
    margin: 15px 0;
    height: 70px;
    padding-right: 260px;
}

.company-motto-p {
    display: table;
    height: 70px;
}

.company-motto-p p {
    display: table-cell;
    line-height: 20px;
    font-size: 18px;
    vertical-align: middle;
}

/*头部搜索*/
.header-search {
    float: right;
    margin-bottom: 5px;
}

.header-search .search-box input.input-text {
    padding: 2px 8px;
    line-height: 30px;
    float: left;
    height: 30px;
    height: 34px \0;
    background-color: #f2f2f2;
    border: 0;
    border-radius: 2px 0 0 2px;

}

.search-box button.search-btn {
    color: #fff;
    cursor: pointer;
    height: 34px;
    width: 30px;
    border: none;
    float: left;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0 2px 2px 0;
}

/*首页部分*/
/*焦点*/
.focus {
    padding: 40px 0;
    overflow: hidden;
    background-color: #f2f2f2;
}

.focus-center {
    width: 90%;
    margin: auto;
    max-width: 1200px;
    text-align: center;
}

.focus-center h1 {
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 10px;
}

.focus-center p {
    font-size: 14px;
    line-height: 28px;
}

/*快速链接,派生词*/
.quick-links {
    padding: 30px 0;
    overflow: hidden;
}

.quick-links-center, .derivative-center {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

.quick-links-t, .derivative-t {
    margin-bottom: 20px;
    position: relative;
}

.quick-links-t span, .derivative-t span {
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    display: inline-block;
    background-color: #fff;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

.quick-links-box {
    background-color: #f2f2f2;
    padding: 15px;
}

.quick-links-box ul, .derivative-box ul {
    font-size: 0;
}

.quick-links-box ul li {
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
    margin: 4px 8px;
    line-height: 20px;
}

.quick-links-box ul li h4 {
    font-size: 14px;
    font-weight: normal;
}

.derivative {
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid #eee
}

.derivative-box ul li {
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    margin: 5px 8px;
    line-height: 20px;
}

.derivative-box ul li h5 {
    font-size: 12px;
    font-weight: normal;
}

.quick-links-box ul li a:hover, .derivative-box ul li a:hover {
    color: #ffd700;
}

/*首页中部*/
.mian-contain {
    width: 100%;
    overflow: hidden;
}

.subblock {
    padding: 40px 0;
}

.subblock .category {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.subblock .category ul {
    text-align: center;
    font-size: 0;
    margin: -15px;
}

.subblock .category ul li {
    width: 33.3333%;
    display: inline-block;
    vertical-align: top
}

.subblock .category ul li:hover img {
    transform: scale(1.1);
}

.category-box {
    margin: 15px;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.category-box-zoom {
    overflow: hidden;
    display: block;
}

.category-box a img {
    overflow: hidden;
    width: 100%;
    display: block;
}

.category-box a img, .category-box-detail, .category-box-type h2 {
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.category-box-detail {
    margin-top: 15px;
    position: relative;
    text-align: left;
}

.category-box:hover .category-box-type h2 {
    color: #ffd700;
}

.category-box-type {
    width: 100%;
    margin-bottom: 14px;
}

.category-box-type a {
    display: block;
}

.category-box-type h2 {
    font-size: 18px;
    line-height: 20px;
}

.category-box-detail .btn {
    font-size: 14px;
}

.category-box-detail .btn a {
    background-color: #ffd700;
    font-size: 14px;
    color: #333;
    line-height: 30px;
    padding: 2px 15px;
    display: inline-block;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.category-box-detail .btn a:hover {
    color: #fff;
    background-color: #444;
}

/*精选产品,热门产品*/
.featured-products, .hot-products {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.hot-products {
    background-color: #f2f2f2;
}

.featured-products-center, .hot-products-center {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

.featured-products-t, .hot-products-t, .index-news-t, .index-case-t, .index-about-t {
    margin-bottom: 20px;
    padding-right: 80px;
}

.featured-products-t span, .hot-products-t span, .index-about-t span, .index-case-t span, .index-news-t span {
    font-size: 24px;
    font-weight: bold;
    line-height: 25px;
    position: relative;
    text-transform: uppercase;
}

.featured-products .item, .hot-products .item {
    overflow: hidden;
    margin: 0 15px;
}

.featured-products .item img, .hot-products .item img {
    width: 100%;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.featured-products .item:hover img, .hot-products .item:hover img {
    opacity: 0.5;
}

.featured-products-box-t, .hot-products-box-t {
    height: 40px;
    margin: 10px 0;
    width: 100%;
    display: table;
}

.featured-products-box-t a, .hot-products-box-t a {
    display: table-cell;
    vertical-align: middle;
}

.featured-products-box-t h3, .hot-products-box-t h3 {
    font-size: 16px;
    font-weight: normal;
    line-height: 20px;
}

.featured-products-box-t:hover h3, .hot-products-box-t:hover h3 {
    color: #ffd700;
}

.featured-products .owl-buttons, .hot-products .owl-buttons {
    position: absolute;
    top: -45px;
    right: 15px;
}

.featured-products .owl-controls .owl-prev, .featured-products .owl-controls .owl-next, .hot-products .owl-controls .owl-prev, .hot-products .owl-controls .owl-next {
    font-size: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 0;
    color: #333;
    background-color: #f2f2f2;
    display: inline-block;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.hot-products .owl-controls .owl-prev, .hot-products .owl-controls .owl-next {
    background-color: #fff;
}

.featured-products .owl-controls .owl-prev:hover, .featured-products .owl-controls .owl-next:hover, .hot-products .owl-controls .owl-prev:hover, .hot-products .owl-controls .owl-next:hover {
    color: #fff;
    background-color: #ffd700;
}

.featured-products .owl-controls .owl-next, .hot-products .owl-controls .owl-next {
    margin-left: 10px;
    transform: rotateY(180deg);
}

.featured-products .owl-controls .owl-prev:before, .featured-products .owl-controls .owl-next:before, .hot-products .owl-controls .owl-prev:before, .hot-products .owl-controls .owl-next:before {
    font-family: "iconfont" !important;
    content: "\e7d1";
    font-style: normal;
    font-weight: bold;
    speak: none;
    -webkit-font-smoothing: antialiased;
    text-transform: none;
    font-size: 14px;
}

.index-merge {
    padding: 30px 0;
}

.index-merge-box {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
    font-size: 0;
}

/*首页关于我们*/
.index-about {
    width: 50%;
    display: inline-block;
    vertical-align: top;
}

.index-about-center {
    margin-right: 25px;
}

.index-about-box {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.index-about-l {
    width: 100%;
}

.index-about-l-frame {
}

.index-about-l img {
    max-width: 100%;
}

.index-about-r {
}

.index-about-r .th {
    font-size: 26px;
    font-weight: normal;
    margin: 5px 0;
    display: table;
    line-height: 30px;
}

.index-about-r .th b {
    display: table-cell;
    vertical-align: middle;
    height: 60px;
}

.index-about-r .th b a {
    color: #ffd700;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.index-about-r .th a:hover {
    color: #333e48;
}

.index-about-r p {
    font-size: 14px;
    line-height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin-bottom: 30px;
}

.index-about-r span {
    display: block;
    margin-bottom: 10px;
}

.index-about-r span a {
    background-color: #ffd700;
    font-size: 14px;
    line-height: 30px;
    padding: 5px 25px;
    display: inline-block;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.index-about-r span a:hover {
    background-color: #444;
    color: #fff;
}

/*首页新闻*/
.index-news {
    padding: 40px 0;
    overflow: hidden;
    background-color: #f2f2f2;
}

.index-news-center {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

.index-news-box ul {
    font-size: 0;
    margin: -15px;
    text-align: center;
}

.index-news-box ul li {
    width: 33.33333%;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    position: relative;
    text-align: left;
}

.index-news-box ul li .item {
    overflow: hidden;
    margin: 15px;
}

.index-news-box ul li .item a {
    overflow: hidden;
}

.index-news-box-frame {
    overflow: hidden;
    border: 1px solid #ebebeb;
}

.index-news-box ul li .item img {
    width: 100%;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.index-news-box ul li .item img:hover {
    transform: scale(1.1);
}

.index-news-text {
    padding-left: 90px;
    min-height: 75px;
    position: relative;
}

.index-news-box ul li .item .th {
    font-size: 18px;
    line-height: 22px;
    font-weight: normal;
    margin-bottom: 12px;
}

.index-news-box ul li .item .th a {
}

.index-news-box ul li .item .th a:hover {
    color: #ffd700;
}

.index-news-box ul li .item p {
    color: #7a7a7a;
    font-size: 14px;
    line-height: 20px;
    max-height: 40px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.index-news-text span {
    position: absolute;
    left: 0;
    top: 0;
    height: 64px;
    width: 64px;
    border-radius: 50%;
    float: left;
    background-color: #ffd700;
    overflow: hidden;
    font-size: 14px;
    color: #333;
    text-align: center;
    line-height: 20px;
    padding: 5px;
    margin: 0px 15px 15px 0;
}

.index-news-text span b {
    font-size: 28px;
    display: block;
    margin: 10px 0 5px 0;
}

/*首页案例*/
.index-case {
    width: 50%;
    display: inline-block;
    vertical-align: top;
}

.index-case-center {
    margin-left: 25px;
}

.index-case-box ul {
    overflow: hidden;
    font-size: 0;
    margin: -15px;
}

.index-case-box ul li {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
}

.index-case-box ul li .item {
    overflow: hidden;
    margin: 15px;
    position: relative;
}

.index-case-box ul li .item:hover img {
    filter: alpha(opacity=40);
    -moz-opacity: 0.4;
    opacity: 0.4;
    transform: scale(1.1);
}

.index-case-box-frame img, .index-case-box-text {
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.index-case-box-frame {
    width: 100%;
    overflow: hidden
}

.index-case-box-frame img {
    max-width: 100%;
    display: block;
}

.index-case-box-text {
    overflow: hidden;
}

.index-case-box ul li .item:hover .index-case-box-text {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

.index-case-box ul li .item .th {
    font-size: 18px;
    line-height: 20px;
    font-weight: normal;
    padding: 5px 0;
    display: table;
    height: 45px;
    width: 100%;
}

.index-case-box ul li .item .th b {
    display: table-cell;
    vertical-align: middle;
}

.index-case-box ul li .item .th a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.index-case-box ul li .item .th a:hover {
    color: #ffd700;
}

.index-case-box ul li .item p {
    font-size: 14px;
    line-height: 20px;
    max-height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 20px;
}

.index-case-box ul li .item span {
    display: block;
}

.index-case-box ul li .item span a {
    background-color: #ffd700;
    font-size: 14px;
    line-height: 30px;
    padding: 2px 15px;
    display: inline-block;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.index-case-box ul li .item span a:hover {
    color: #fff;
    background-color: #444;
}

/*友情链接*/
.index-links {
    overflow: hidden;
    padding: 30px 0;
}

.index-links-center {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    z-index: 1;
}

.index-links-center .owl-carousel {
    margin: 0 30px;
}

.index-links-box {
    text-align: center;
    margin: 0 10px;
}

.index-links-box img {
    max-width: 100%;
}

.index-links .owl-controls .owl-prev, .index-links .owl-controls .owl-next {
    position: absolute;
    top: 25%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 0;
    color: #b2b2b2;
    border: 1px solid #ebebeb;
    background-color: #fff;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.index-links .owl-controls .owl-prev:hover, .index-links .owl-controls .owl-next:hover {
    background-color: #ffd700;
    border: 1px solid #ffd700;
    color: #fff;
}

.index-links .owl-controls .owl-prev {
    left: -30px;
}

.index-links .owl-controls .owl-next {
    right: -30px;
}

.index-links .owl-controls .owl-prev:before, .index-links .owl-controls .owl-next:before {
    font-family: "iconfont" !important;
    font-style: normal;
    font-weight: bold;
    speak: none;
    -webkit-font-smoothing: antialiased;
    text-transform: none;
    font-size: 14px;
}

.index-links .owl-controls .owl-prev:before {
    content: "\e7d1";
    font-size: 13px;
    line-height: 30px;
}

.index-links .owl-controls .owl-next:before {
    content: "\e61a";
    line-height: 28px;
}

/*首页部分结束*/

/*内页部分*/
.inner-page-main {
    width: 100%;
    overflow: hidden;
}

.inner-page-middle {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
}

/*内页广告图*/
.shop-banner {
    overflow: hidden;
    padding: 40px 0;
}

.shop-banner-box {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.shop-banner-box img {
    width: 100%;
    display: block;
}

/*面包屑导航*/
.bread-crumb {
    width: 100%;
    overflow: hidden;
    padding-top: 20px;
}

.bread-crumb ul {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.bread-crumb ul li {
    font-size: 14px;
    line-height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.bread-crumb ul li span {
    color: #333;
}

.bread-crumb ul li a:hover {
    color: #222;
}

.inner-page-content {
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
}

/*分页符*/
.pagination-bar {
    text-align: left;
    padding: 20px 0;
    overflow: hidden;
}

.pagination-bar ul {
    display: block;
    margin: -5px;
}

.pagination-bar ul li {
    margin: 5px;
    display: inline-block;
    vertical-align: top;
}

.pagination-bar ul li a {
    background: #f2f2f2;
    height: 28px;
    width: 28px;
    display: inline-block;
    line-height: 28px;
    text-align: center;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.pagination-bar ul li.pageinfo {
    background: #f2f2f2;
    line-height: 28px;
    text-align: center;
    padding: 0 15px;
}

.pagination-bar ul li.active {
    background: #ffd700;
    color: #fff;
    height: 28px;
    width: 28px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #ffd700;
}

.pagination-bar ul li a i {
    vertical-align: middle;
    font-weight: bold;
}

.pagination-bar ul li a:hover {
    color: #fff;
    background: #ffd700;
}

/*左边*/
.inner-page-l {
    width: 26%;
    float: left;
    margin-bottom: 40px;
}

.inner-page-r {
    width: 74%;
    float: right;
    margin-bottom: 40px;
}

/*侧边*/
.sidebar-block {
    margin-right: 30px;
    overflow: hidden;
}

.sidebar-box {
    overflow: hidden;
    margin-bottom: 40px;
    background-color: #f2f2f2;
    padding: 16px 20px;
}

.sidebar-title {
    overflow: hidden;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #ebebeb;
}

.sidebar-title span {
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize;
}

.sidebar-contant {
    overflow: hidden;
}

.sidebar-featured ul {
    overflow: hidden;
}

.sidebar-featured ul li {
    width: 100%;
    overflow: hidden;
    margin: 8px 0;
    float: left;
}

.sidebar-featured ul li .item {
    overflow: hidden;
}

.sidebar-featured ul li .item .pro-media {
    float: left;
    width: 40%;
    overflow: hidden;
}

.sidebar-featured ul li .item .pro-media img {
    max-width: 100%;
    display: block;
}

.sidebar-featured ul li .item .pro-detail-info {
    float: right;
    width: 60%;
}

.sidebar-featured ul li .item .pro-detail-info .th {
    margin-left: 15px;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 12px;
    font-weight: normal;
    max-height: 54px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.sidebar-featured ul li .item .pro-detail-info .th a {
    display: block;
}

.sidebar-featured ul li .item .pro-detail-info .th a:hover {
    color: #ffd700;
}

.sidebar-featured ul li .item .pro-detail-info span {
    margin-left: 15px;
    display: block;
}

.sidebar-featured ul li .item .pro-detail-info span a {
    background-color: #ffd700;
    font-size: 14px;
    line-height: 24px;
    padding: 0 15px;
    display: inline-block;
    border-radius: 2px;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.sidebar-featured ul li .item .pro-detail-info span a:hover {
    color: #fff;
    background-color: #363f4d;
}

/*侧边联系方式*/
.sidebar-contact .mb-20 {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 15px;
    padding-left: 45px;
    position: relative;
}

.sidebar-contact .mb-20:nth-last-child(1) {
    margin-bottom: 0;
}

.sidebar-contact .mb-20:nth-child(1) .inner-title i {
    font-size: 16px;
}

.sidebar-contact .inner-title {
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    border-radius: 4px;
    float: left;
    font-size: 20px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    width: 35px;
}

.sidebar-contact .inner-title i {
    font-size: 17px;
    color: #ffd700;
}

.sidebar-contact ul li a {
    word-break: break-all;
    display: inline-block;
}

.sidebar-contact ul li a:hover {
    color: #ffd700;
}

.sidebar-contact ul {
    overflow: hidden;
}

.sidebar-contact ul li {
    font-size: 14px;
    line-height: 20px;
    margin: 8px 0;
    float: left;
}

/*侧边新闻列表*/

/*产品页*/
.product-key {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ebebeb;
}

.product-key-box {
    padding: 14px 20px;
}

.product-key h1 {
    font-size: 20px;
    line-height: 24px;
    display: block;
}

.product-key p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
}

.product-listing-t {
    position: relative;
    margin: 20px 0;
    overflow: hidden;
}

.product-listing-t h2 {
    font-size: 18px;
    line-height: 30px;
    display: inline-block;
    padding-right: 30px;
    background-color: #fff;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
}

.product-listing-t span {
    font-size: 14px;
    color: #404042;
    display: inline-block;
    padding-left: 20px;
    background-color: #fff;
    z-index: 1;
    position: relative;
    float: right;
    margin-top: 5px;
}

.product-listing-t span a {
    padding: 2px 8px;
    background-color: #f9f9f9;
    display: inline-block;
}

.product-listing-t span a:hover {
    color: #fff;
    background-color: #ffd700;
}

.product-listing-t::after {
    background-color: #eee;
    bottom: 14px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
}

.product-listing {
    padding-bottom: 30px;
}

.product-listing ul {
    font-size: 0;
    overflow: hidden;
    margin: -10px;
}

.product-listing ul li {
    width: 33.33333%;
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
}

.product-listing .product-item {
    overflow: hidden;
    position: relative;
    margin: 10px;
}

.product-listing .product-item, .product-listing .product-image img {
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.product-listing .product-item .sale-label {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 1;
}

.product-listing .product-item .sale-label span {
    font-size: 14px;
    color: #fff;
    background-color: #C30;
    display: inline-block;
    padding: 4px 10px;
}

.product-listing .product-image {
    overflow: hidden;
}

.product-listing .product-image img {
    max-width: 100%;
}

.product-listing .product-item:hover img {
    transform: scale(1.1);
}

.product-listing .product-item-name {
    height: 40px;
    display: table;
    width: 100%;
    margin: 10px 0;
}

.product-listing .product-item-name a {
    display: table-cell;
    vertical-align: middle;
}

.product-listing .product-item-name h3 {
    font-size: 16px;
    font-weight: normal;
    line-height: 20px;
}

.product-listing .product-item-name h3:hover {
    color: #ffd700;
}

/*产品类别*/
.product-category {
}

.product-category li {
    width: 100%;
    margin-bottom: 30px;
}

.product-category .product-item {
    text-align: left;
    font-size: 0;
    position: relative;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ebebeb;
}

.product-category .product-item .sale-label {
    position: absolute;
    top: 10px;
    left: 0;
}

.product-category .product-item .sale-label span {
    font-size: 14px;
    background-color: #ffd700;
    display: inline-block;
    padding: 4px 10px;
    position: relative;
    z-index: 1;
}

.product-category li .product-image img, .product-item-text span a {
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.product-category li .product-image {
    width: 30%;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
}

.product-category li .product-image img {
    width: 100%;
    max-width: 500px;
}

.product-category li .product-item:hover img {
    transform: scale(1.1);
}

.product-item-text {
    font-size: 14px;
    width: 70%;
    display: inline-block;
    vertical-align: middle;
}

.product-item-text-b {
    margin-left: 30px;
}

.product-item-text h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 12px;
}

.product-item-text p {
    font-size: 14px;
    line-height: 24px;
}

.product-item-text .tag {
    font-size: 12px;
    width: 100%;
    margin: 10px -5px
}

.product-item-text .tag a {
    padding: 4px 8px;
    background-color: #fff;
    display: inline-block;
    margin: 5px;
    border-radius: 2px;
}

.product-item-text .tag a:hover {
    color: #fff;
    background-color: #ffd700;
}

.product-item-text span a {
    line-height: 24px;
    background-color: #ffd700;
    padding: 8px 15px;
    display: inline-block;
}

.product-item-text span a i {
    font-size: 20px;
    line-height: 18px;
    margin-right: 5px;
}

.product-item-text span a.more {
    color: #242424;
    background-color: #f2f2f2;
    margin-left: 10px;
}

.product-item-text span a:hover {
    color: #fff;
    background-color: #666;
}

/*产品详情*/
.product-details {
    overflow: hidden;
}

.product-page-plan {
    width: 46%;
    float: left;
}

.product-attributes {
    width: 54%;
    float: right;
}

.product-attributes .product-name {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
}

.product-attributes-item {
    margin-bottom: 20px;
}

.product-attributes-item ul li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.product-attributes-item ul li label {
    color: #ffd700;
    font-size: 15px;
    margin: 0 0 5px 0;
}

.product-overview {
    margin-bottom: 20px;
}

.product-overview p {
    font-size: 14px;
    line-height: 24px;
}

.product-detail-annex {
    margin-bottom: 10px;
    overflow: hidden;
}

.product-detail-annex .pro-email-icon {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.product-detail-annex .pro-email-icon a {
    line-height: 20px;
    background-color: #ffd700;
    padding: 8px 15px;
    display: block;
}

.product-detail-annex .pro-email-icon a i {
    font-size: 22px;
    margin-right: 5px;
}

.product-detail-annex .pro-annex-icon {
    display: inline-block;
    margin-bottom: 10px;
}

.product-detail-annex .pro-annex-icon a {
    line-height: 20px;
    background: #f0f0f0;
    padding: 8px 15px;
    display: block;
}

.product-detail-annex .pro-annex-icon a i {
    margin-right: 5px;
}

.product-detail-annex a:hover {
    color: #fff;
    background-color: #666;
}

.product-information {
    margin: 30px 0;
    overflow: hidden;
}

.product-information-content {
    border-bottom: 1px solid #ececec;
    overflow: hidden;
    padding: 0;
    line-height: 28px;
    font-size: 14px;
    padding-bottom: 20px;
}

.product-information-t {
    background: #f7f3f2;
    margin-bottom: 20px;
    padding: 12px 20px;
}

.product-information-t h1 {
    font-size: 18px;
    line-height: 24px;
}

.product-information-box h2 {
    font-size: 16px;
    line-height: 28px;
}

.product-information-content img {
    display: inline-block;
    max-width: 100%;
}

/*表格手机端滑动*/
.nei-table {
    width: 100%;
    overflow: auto;
}

.nei-table table {
    border-collapse: collapse;
    border-spacing: 0;
}

.nei-table table, .nei-table table th, .nei-table table td {
    border: 1px solid #bbb;
}

.nei-table table th, .nei-table table td {
    padding: 4px 10px;
}

/*详情页标签*/
.product-tag {
    display: flex;
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #ececec;
}

.product-tag-title {
    display: inline-block;
}

.product-tag span {
    font-size: 16px;
    padding: 5px 0;
    float: left;
    white-space: nowrap;
}

.product-tag-item {
    vertical-align: top;
}

.product-tag-item a {
    margin: 5px 12px;
    line-height: 20px;
    font-size: 14px;
    display: inline-block;
}

.product-tag-item a:hover {
    color: #ffd700;
}

/*附件下载*/
.product-annex {
    display: flex;
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ececec;
}

.product-annex span {
    font-size: 16px;
    margin-bottom: 10px;
}

.product-annex ul li {
    font-size: 14px;
    line-height: 20px;
    margin: 0 12px 10px 12px;
}

.product-annex ul li i {
    margin-right: 5px;
}

.product-annex ul li a:hover {
    color: #ffd700;
}

/*相关产品*/
.related-products {
    width: 100%;
    margin-top: 20px;
}

.related-products-t {
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.related-products-t::after {
    background-color: #eee;
    bottom: 10px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
}

.related-products-t span, .related-products-t span {
    font-size: 18px;
    line-height: 30px;
    background-color: #fff;
    display: inline-block;
    padding-right: 30px;
    position: relative;
    z-index: 1;
}

.related-products ul {
    font-size: 0;
}

.related-products ul li {
    font-size: 14px;
    width: 25%;
    display: inline-block;
    vertical-align: top;
}

.related-products ul li .item {
    padding: 15px;
}

.related-products ul li .item img {
    width: 100%;
    max-width: 500px;
}

.related-products ul li .item .text {
    font-size: 14px;
    line-height: 20px;
    margin-top: 5px;
}

/*产品折叠菜单*/
.sidebar-product dl {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.sidebar-product dl dt {
    font-size: 14px;
    line-height: 18px;
    font-weight: normal;
    padding: 10px 15px 10px 0;
    border-bottom: 1px solid #ebebeb;
    position: relative;
    margin-bottom: 0;
}

.sidebar-product dl:last-child dt {
    border-bottom: 0;
}

.sidebar-product dl dt a {
    font-size: 14px;
}

.sidebar-product dl dt i {
    width: 0;
    height: 0;
    background-color: #6d6d6d;
    overflow: hidden;
    position: absolute;
    left: 5px;
    top: 15px;
}

.sidebar-product dl dt a:hover {
    color: #ffd700;
}

.sidebar-product dl span {
    overflow: hidden;
    font-size: 16px;
    font-weight: bold;
    color: #6d6d6d;
    height: 38px;
    display: block;
    line-height: 38px;
    float: right;
    cursor: pointer;
    padding: 0 5px;
    position: relative;
    z-index: 1;
}

.sidebar-product dl span.clicker_active {
    font-size: 26px;
    font-weight: normal;
}

.sidebar-product dl span:hover {
    background-position: 10px 20px;
    text-decoration: none;
    color: #ffd700;
}

.sidebar-product dl dd {
    overflow: hidden;
    line-height: 18px;
    font-size: 14px;
    margin: 8px 0 8px 15px;
}

.sidebar-product dl dd a {
    font-size: 12px;
    color: #6d6d6d;
    width: 100%;
    display: block;
    padding-bottom: 8px;
    border-bottom: 1px dashed #ebebeb;
}

.sidebar-product dd a:hover {
    text-decoration: none;
    color: #ffd700;
}


/*侧边新闻*/
.sidebar-news ul li, .sidebar-news ul li i, .sidebar-about ul li, .sidebar-about ul li i, .news-list-top-box .item img, .news-listing ul li .news-listing-box, .case-listing-frame img, .case-listing ul li .item span a, .certificate-listing .item, .certificate-listing .item span a {
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.sidebar-news ul {
    overflow: hidden;
}

.sidebar-news ul li {
    line-height: 20px;
    font-size: 16px;
    padding: 10px 20px;
    position: relative;
    display: block;
    overflow: hidden;
}

.sidebar-news ul li:hover {
    padding: 10px 10px 10px 30px;
}

.sidebar-news ul li a {
    display: block;
}

.sidebar-news ul li i {
    font-size: 8px;
    position: absolute;
    top: 10px;
    left: 0;
}

.sidebar-news ul li:hover i {
    left: 10px;
}

.sidebar-news ul li a:hover {
    color: #ffd700;
}

/*侧边关于我们*/
.sidebar-about ul {
    overflow: hidden;
}

.sidebar-about ul li {
    line-height: 20px;
    font-size: 16px;
    padding: 10px 20px;
    position: relative;
    display: block;
    overflow: hidden;
}

.sidebar-about ul li:hover {
    padding: 10px 10px 10px 30px;
}

.sidebar-about ul li a {
    display: block;
}

.sidebar-about ul li i {
    font-size: 8px;
    position: absolute;
    top: 10px;
    left: 0;
}

.sidebar-about ul li:hover i {
    left: 10px;
}

.sidebar-about ul li a:hover {
    color: #ffd700;
}

/*新闻列表*/
/*推荐新闻*/
.news-list-top {
    overflow: hidden;
}

.news-list-top-box {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 40px;
    font-size: 14px;
}

.news-list-top-box .item {
    position: relative;
    overflow: hidden;
    font-size: 0;
}

.news-list-top-box .item a {
    overflow: hidden;
    display: block;
}

.news-list-top-box-frame {
    overflow: hidden;
    width: 40%;
    display: inline-block;
    vertical-align: middle;
}

.news-list-top-box .item img {
    height: auto;
    display: block;
    font-size: 0;
    overflow: hidden;
    width: 100%;
}

.news-list-top-box .item img:hover {
    transform: scale(1.1);
}

.news-list-top-box .item h2, .news-list-top-box .item h3 {
    font-size: 18px;
    line-height: 30px;
    margin-left: 25px;
    margin-bottom: 8px;
}

.news-list-top-box .item h2:hover, .news-list-top-box .item h3:hover {
    color: #ffd700;
}

.news-list-top-box .item p {
    font-size: 14px;
    line-height: 20px;
    max-height: 80px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin-left: 25px;
    margin-bottom: 8px;
}

.news-list-top-box-text {
    display: inline-block;
    width: 60%;
    vertical-align: middle;
}

.news-list-top-box-text span {
    font-size: 14px;
    color: #ffd700;
    margin-left: 25px;
}

/*新闻列表*/
.news-listing {
    overflow: hidden;
    margin-bottom: 40px;
}

.news-listing-t {
    margin-bottom: 15px;
    overflow: hidden;
}

.news-listing-t .th {
    float: left;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    text-transform: capitalize;
}

.news-listing-t .th a:hover {
    color: #ffd700;
}

.news-listing-t span {
    float: right;
    font-size: 14px;
    line-height: 24px;
}

.news-listing-t span a {
    float: right;
    font-size: 14px;
    line-height: 24px;
}

.news-listing-t span a:hover {
    color: #ffd700;
}

.news-listing ul {
    overflow: hidden;
    padding: 25px 20px 0 20px;
    border: 1px solid #ebebeb;
}

.news-listing ul li {
    margin-bottom: 20px;
}

.news-listing ul li .news-listing-box {
    overflow: hidden;
    position: relative;
    padding-right: 100px;
}

.news-listing ul li .news-listing-box:hover {
    padding-right: 75px;
    padding-left: 25px;
}

.news-listing ul li h2, .news-listing ul li h3 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 8px;
}

.news-listing ul li h2:hover, .news-listing ul li h3:hover {
    color: #ffd700
}

.news-listing ul li p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 6px;
}

.news-listing ul li span {
    font-size: 14px;
    color: #ffd700;
    position: absolute;
    top: 2px;
    right: 0;
}

/*新闻详情*/
.news-details {
    border-bottom: 1px solid #ececec;
    overflow: hidden;
    padding: 0;
    line-height: 28px;
    font-size: 14px;
    padding-bottom: 20px;
}

.news-details-t {
    background: #f7f3f2;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.news-details-t h1 {
    font-size: 18px;
    line-height: 24px;
}

.news-details-box {
    overflow: hidden;
}

.news-details-time {
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}

.news-details-time e {
    font-size: 14px;
    background: #f0f0f0;
    padding: 8px 10px;
}

/*案例列表*/
.case-listing {
}

.case-listing ul {
    overflow: hidden;
    font-size: 0;
    margin: 0 -15px;
}

.case-listing ul li {
    width: 33.33333%;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
}

.case-listing ul li .item {
    margin: 0 15px 30px 15px;
    overflow: hidden;
}

.case-listing-frame {
    width: 100%;
    overflow: hidden;
}

.case-listing-frame img {
    max-width: 100%;
    display: block;
}

.case-listing-frame img:hover {
    transform: scale(1.1);
}

.case-listing ul li .item h2, .case-listing ul li .item h3 {
    font-size: 18px;
    line-height: 20px;
    font-weight: normal;
    margin: 10px 0;
}

.case-listing ul li .item h2:hover, .case-listing ul li .item h3:hover {
    color: #ffd700;
}

.case-listing ul li .item p {
    font-size: 14px;
    line-height: 20px;
    max-height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 20px;
}

.case-listing ul li .item span {
    display: block;
}

.case-listing ul li .item span a {
    font-size: 16px;
    background-color: #ffd700;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
}

.case-listing ul li .item span a:hover {
    color: #fff;
    background-color: #363f4d;
}

/*证书展示*/
.certificate-listing ul {
    font-size: 0;
    overflow: hidden;
    margin: -10px
}

.certificate-listing ul li {
    width: 33.33333%;
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
}

.certificate-listing .item {
    background-color: #f7f3f2;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    padding: 15px;
    margin: 10px;
    position: relative;
}

.certificate-listing .item:hover {
    background-color: #ffd700;
}

.certificate-listing-frame {
    overflow: hidden;
    height: 280px;
    text-align: center;
    display: table;
    width: 100%;
}

.certificate-listing-frame a {
    display: table;
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}

.certificate-listing-frame img {
    max-height: 280px;
    max-width: 100%;
}

.certificate-listing .item span {
    font-size: 16px;
    font-weight: normal;
    display: table;
    margin: 8px 0;
    width: 100%;
    text-align: center;
    line-height: 20px;
    height: 40px;
    overflow: hidden;
}

.certificate-listing .item span a {
    display: table-cell;
    vertical-align: middle;
    color: #333;
}

.certificate-listing .item:hover h3 a {
    color: #fff;
}

/*site-map网站地图*/
.site-map {
    background-color: #f2f2f2;
}

.site-map-t {
    font-size: 18px;
    line-height: 30px;
    padding: 12px 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
    text-transform: capitalize;
}

.site-map-th {
    font-size: 16px;
    line-height: 30px;
    border-bottom: 1px dashed #f7f3f2;
    padding: 8px 30px;
}

.site-map-th h2 {
    font-size: 16px;
    font-weight: normal;
}

.site-map ul {
    font-size: 0;
    overflow: hidden;
    margin: 20px 0 30px 0;
    border-bottom: 1px solid #f7f3f2;
    padding: 10px 30px 0 30px;
}

.site-map ul li {
    font-size: 14px;
    margin-bottom: 12px;
    display: inline-block;
    vertical-align: top;
    line-height: 20px;
    width: 33.3%;
}

.site-map ul li h3 {
    font-size: 14px;
    font-weight: normal;
}

.site-map ul.site-map-l1 li {
    width: 25%;
}

.site-map ul.site-map-l2 li {
    width: 50%;
}

.site-map a:hover {
    color: #ffd700
}

/*案例详情,工厂展示,关于我们*/
.case-details, .factory-details, .about-details {
    overflow: hidden;
    padding: 0;
    line-height: 28px;
    font-size: 14px;
}

.case-details-t, .factory-details-t, .about-details-t {
    padding: 12px 20px;
    background-color: #fff;
    border: 1px solid #ebebeb;
    margin-bottom: 20px;
    overflow: hidden;
}

.case-details-t h1, .factory-details-t h1, .about-details h1 {
    font-size: 18px;
    line-height: 24px;
}

.case-details-box, .factory-details-box, .about-details-box {
    overflow: hidden;
    border-bottom: 1px solid #ececec;
    padding-bottom: 20px;
}

.case-details-box img, .factory-details-box img, .about-details-box img, .news-details-box img {
    max-width: 100%;
}

.product-information-box embed, .case-details-box embed, .factory-details-box embed, .about-details-box embed {
    max-width: 100% !important;
}

.product-information-box a, .case-details-box a, .factory-details-box a, .about-details-box a {
    text-decoration: underline;
    color: #06C;
}

.product-information-box ul, .product-information-box ol, .product-information-box li,
.case-details-box ul, .case-details-box ol, .case-details-box li,
.factory-details-box ul, .factory-details-box ol, .factory-details-box li,
.about-details-box ul, .about-details-box ol, .about-details-box li {
    list-style: unset;
    margin-left: 20px;
}

/*关于我们图片切换*/
.pb {
    display: inline-block;
    position: relative;
    height: auto;
    width: 100%;
    margin-bottom: 10px;
    z-index: 1;
}

.pb .banners {
    width: 100%;
    overflow: hidden;
    padding: 0px;
    margin: 0px;
}

.pb .banners li.current {
    display: block;
}

.pb .banners li {
    display: none;
    padding: 0;
    margin: 0;
}

.C_top_R1IMG2 {
    width: 100%;
    height: auto;
}

.C_top_R1IMG2 a img {
    width: 100%;
    display: block;
}

.switcher_2 {
    position: absolute;
    right: 5px;
    bottom: 5px;
}

.pb .points_2 li {
    width: 22px;
    height: 22px;
    text-align: center;
    cursor: pointer;
    float: left;
    background-color: #999;
    line-height: 22px;
    color: #FFF;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    list-style-position: outside;
    list-style-image: none;
    list-style-type: none;
    padding: 0px;
    margin: 0px 5px 0px 0px;
    border: 1px solid #FFF;
}

.pb .points_2 li.current {
    color: #FFF;
    margin-right: 5px;
    height: 22px;
    width: 22px;
    border: 1px solid #FFF;
    background-color: #C00;
}

/*关于我们头部表格*/
.about_pc_tab {
    overflow: hidden;
    margin-bottom: 20px;
}

.about_pc_tab table {
    background-color: #ececec;
    width: 100%;
}

.about_pc_tab table tr {
    background-color: #fff;
    line-height: 20px;
}

.about_pc_tab table tr th, .about_pc_tab table tr td {
    padding: 8px 15px;
}

.about_pc_tab table tr th {
    width: 24%;
}

/*联系我们表格*/
.contact-table-box {
    overflow: hidden;
    margin-bottom: 30px;
}

.contact-name {
    background: #f2f2f2;
    padding: 12px 20px;
    margin-bottom: 15px;
}

.contact-name h5 {
    font-size: 16px;
    line-height: 24px;
}

.contact-info {
    border: 15px solid #f2f2f2;
}

.contact-info table {
    width: 100%;
    border-collapse: collapse;
}

.contact-info tr {
    background-color: #fff;
    word-break: break-all;
}

.contact-info tr:hover {
    background-color: #faf9f9;
}

.contact-info tr th, .contact-info tr td {
    font-size: 14px;
}

.contact-info tr th:first-child, .contact-info tr td:first-child {
    width: 28%;
}

.contact-info td a {
    color: #fff;
    padding: 13px;
}

.contact-info td {
    padding: 15px 10px;
    border: 1px solid #ebebeb;
    vertical-align: middle;
}

.contact-info td i {
    font-size: 18px;
    margin-right: 10px;
}

.contact-info td.name, .contact-info td.description {
    vertical-align: top;
}

.contact-info td:first-child {
    padding: 15px 10px;
    text-transform: uppercase;
    font-weight: bold;
    vertical-align: middle;
}

/*邮件*/
.inner-message {
    margin-bottom: 30px;
    overflow: hidden;
}

.inner-message-t {
    background: #f0f0f0;
    padding: 10px 16px;
    margin-bottom: 20px;
}

.inner-message-t h5 {
    font-size: 18px;
    line-height: 24px;
}

.inner-message .th {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    padding: 12px 20px;
    background-color: #f2f2f2;
}

.inner-message .inner-message-centered {
    font-size: 16px;
}

.inner-message .inner-message-centered span {
    color: #F60;
}

.inner-message-row {
    margin-top: 20px;
    overflow: hidden;
}

.inner-message-row .item {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

.inner-message-row .item input {
    color: #999;
    width: 100%;
    line-height: 30px;
    border: 0;
    height: 30px;
}

.inner-message-row .item textarea {
    color: #999;
    width: 100%;
    line-height: 30px;
    border: 0;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 110px;
}

.inner-message-row .item button {
    color: #fff;
    font-size: 14px;
    background-color: #333;
    display: block;
    line-height: 30px;
    padding: 8px 20px;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
    cursor: pointer;
    border: 0;
}

.inner-message-row .item button:hover {
    background-color: #ffd700;
}

.inner-message-row .item button:active {
    background-color: #F60;
}

.inner-message-row .item.item-half {
    width: 50%;
}

.inner-message-half {
    padding: 8px;
    margin-right: 20px;
    background-color: #fff;
    border: 1px solid #ebebeb;
}

.inner-message-box {
    padding: 8px;
    background-color: #fff;
    border: 1px solid #ebebeb;
}

/*空位符*/
.air-h30 {
    width: 100%;
    height: 30px;
    display: block;
}

/*上下篇*/
.other-upper-next {
    border-bottom: 1px solid #ececec;
    overflow: hidden;
    line-height: 28px;
    font-size: 14px;
    padding: 20px 0;
    margin-bottom: 30px;
}

.other-upper-next-box {
    overflow: hidden;
}

.other-upper-next .other-upper {
    float: left;
}

.other-upper-next .other-next {
    float: right;
}

.other-upper-next .other-upper i {
    font-size: 13px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.other-upper-next .other-next i {
    float: right;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.other-upper-next span a:hover {
    color: #ffd700;
}

/*底部*/
.footer-middle {
    padding-top: 40px;
    background-color: #161615;
}

.footer-content {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
    font-size: 0;
}

.footer-main {
    margin: 20px 0;
}

.footer-content .item {
    width: 22%;
    display: inline-block;
    font-size: 14px;
    vertical-align: top;
    margin-bottom: 30px;
}

.footer-content .item.footer-contactus {
    width: 34%;
}

.footer-content .item.footer-contactus li {
    position: relative;
    display: flex;
}

.footer-content .item.footer-contactus li label {
    display: inline-block;
    vertical-align: top;
}

.footer-content .item:nth-last-child(1) .footer-static-block {
    margin-right: 0;
}

.footer-static-block {
    margin-right: 30px;
}

.footer-content .item:nth-child(4) .footer-static-block {
    margin-right: 0;
}

.footer-static-block .th {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
}

.footer-static-block .th a {
    color: #fff;
}

.footer-static-block .th a:hover {
    color: #ffd700;
}

.footer-block-contant li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 18px;
    color: #fff;
}

.footer-block-contant li b {
    font-size: 16px;
}

.footer-block-contant li label {
    white-space: nowrap;
    margin-right: 5px;
}

.footer-block-contant li span {
    display: inline-block;
}

.key-words li {
    height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    padding-left: 20px;
}

.key-words li i {
    width: 6px;
    height: 6px;
    width: 10px \0;
    height: 10px \0;
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
}

.footer-block-contant li a {
    color: #fff;
}

.footer-block-contant li a:hover {
    color: #ffd700;
}

.footer-secondary {
    width: 100%;
    padding: 20px 0;
    display: inline-block;
    background-color: #101010;
}

.footer-secondary-box {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.footer-secondary p {
    color: #fff;
    font-size: 13px;
    text-align: left;
    line-height: 18px;
    padding: 14px 240px 15px 0;
}


/*右侧漂浮替换样式*/
.im {
    position: fixed;
    right: 2px;
    top: auto;
    bottom: 40px;
    z-index: 11;
}

.im-l {
    color: #fff;
    width: 32px;
    height: 60px;
    cursor: pointer;
    background-color: #ffd700;
    box-shadow: 0 0 8px #eaf0f6;
    border-radius: 4px 0px 0px 4px;
    display: block;
    text-align: center;
    line-height: 60px;
    float: left;
}

.im-l i {
    font-size: 20px;
}

#select {
    display: none;
}

.im .box {
    float: right;
    width: 60px;
    background-color: #ffd700;
    border-radius: 0 4px 4px 4px;
    display: none;
}

.im .box ul {
    background-color: #fff;
    list-style-type: none;
    margin: 5px;
}

.im .box ul li {
    height: 50px;
    width: 50px;
    overflow: hidden;
    text-align: center;
    line-height: 50px;
}

.im .box ul li a {
    text-decoration: none;
    display: block;
}

.im .box ul li i {
    font-size: 24px;
    color: #f39d22;
}

.im .box ul li i.img-skype {
    color: #00aff0;
}

.im .box ul li i.img-whatsapp {
    color: #00d51b;
}

.im .box ul li i.img-user {
    color: #F66;
}

.im .box ul li i.img-skype, .im .box ul li i.img-envelope {
    font-size: 28px;
}

.im .box ul li a:hover i {
    color: #343537;
}

#select:checked + .box {
    display: block;
}

#cus_ser1 .msn {
    background-image: url(../images/c.jpg?e6a08906ac304037666ea6d0c7f1264b);
    background-repeat: no-repeat;
    height: 50px;
    width: 50px;
}

.im .skype {
    background-image: url(../images/c.jpg?e6a08906ac304037666ea6d0c7f1264b);
    background-repeat: no-repeat;
    background-position: -47px 0;
    height: 50px;
    width: 47px;
}

.im .mail {
    background-image: url(../images/c.jpg?e6a08906ac304037666ea6d0c7f1264b);
    background-repeat: no-repeat;
    background-position: -94px 0;
    height: 50px;
    width: 47px;
}

.im .kefu_01 {
    background-image: url(../images/kefu_01.png?29c07a7e5b4291aacd6c0e5966f6efe0);
    background-repeat: no-repeat;
    background-position: center center;
    height: 50px;
    width: 50px;
    overflow: hidden;
    background-color: #FFF;
}

.im .whatsapp {
    background-image: url(../images/kefu_02.png?29c07a7e5b4291aacd6c0e5966f6efe0);
    background-repeat: no-repeat;
    background-position: center center;
    height: 50px;
    width: 50px;
    overflow: hidden;
    background-color: #FFF;
}

@media screen and (min-width: 768px) {
    .im {
        width: 92px;
        position: fixed;
        right: -60px;
        top: 250px;
        transition: right 0.5s;
        bottom: auto;
        z-index: 11;
    }

    .im:hover {
        right: 0;
    }

    .im .box {
        position: absolute;
        display: block;
        width: 60px;
        right: 0;
        top: 0;
    }
}

/*返回顶部*/
.scroll {
    width: 40px;
    height: 40px;
    color: #fff;
    line-height: 42px;
    text-align: center;
    position: fixed;
    right: 34px;
    bottom: 74px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    z-index: 10;
}

.scroll i {
    font-size: 28px;
}

@media screen and (max-width: 1220px) {
    .inner-page-l {
        width: 32%;
    }

    .inner-page-r {
        width: 68%;
    }
}

@media screen and (max-width: 1044px) {
    .subblock .category ul li, .footer-content .item, .footer-content .item.footer-contactus, .product-listing ul li, .index-news-box ul li, .certificate-listing ul li, .case-listing ul li {
        width: 50%;
    }

    .index-about {
        background-size: auto 100%;
    }

    /*首页产品分类*/
    .category-box-type h2 {
        font-size: 16px;
    }

    .category-box-detail a.btn {
        padding: 5px 25px;
    }

    .index-about, .index-case {
        width: 100%;
    }

    .index-about-center {
        margin: 0 auto 20px auto;
    }

    .index-case-center {
        margin: 0 auto;
    }

    .hot-products-box ul li .item span a {
        padding: 0 20px;
    }

    .sidebar-featured ul li .item .pro-media {
        width: 100%;
    }

    .sidebar-featured ul li .item .pro-detail-info {
        width: 100%;
        margin-top: 10px;
    }

    .sidebar-featured ul li .item .pro-detail-info .th {
        margin-left: 0;
        line-height: 20px;
    }

    .sidebar-featured ul li .item .pro-detail-info span {
        margin-left: 0;
        display: block;
    }

    /*产品详情展示*/
    .product-page-plan, .product-attributes {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .language {
        float: left;
    }

    .language ul.language-list {
        right: auto;
        left: 0;
    }

    .social-link {
        float: none;
        width: 100%;
        overflow: hidden;
    }

    .social-link a {
        margin-left: 0;
        margin-right: 5px;
    }

    .header-middle {
        padding: 0;
    }

    .header-middle .header-logo {
        width: 100%;
        max-width: none;
        margin-top: 5px;
        float: none;
        text-align: center;
        height: 0;
    }

    .header-logo-box {
        height: 100%;
        margin-right: 0;
        float: none;
        margin: auto;
    }

    .header-logo-box a img {
        max-height: 40px;
        margin: auto;
    }

    .top-fixed.header-middle .header-logo {
        margin: 5px 0 0 0;
        height: 0;
    }

    .top-fixed.header-middle .header-logo-box a img {
        max-height: 40px;
        max-width: 250px;
    }

    .header-middle .company-motto {
        width: 100%;
        margin: 10px 0;
        height: auto;
        padding: 0;
        float: left;
    }

    .company-motto-p {
        display: block;
        height: auto;
    }

    .header-search {
        float: none;
        display: inline-block;
    }

    .index-about-l .th {
        font-size: 20px;
        margin-right: 0;
        line-height: 30px;
    }

    .subblock .category ul li {
        width: 100%;
        max-width: 500px;
    }

    .featured-products-t span, .hot-products-t span, .index-news-t span, .index-case-t span, .index-about-t span {
        font-size: 18px;
    }

    .index-about-r .th {
        font-size: 18px;
        line-height: 28px;
    }

    .hot-products-box ul li {
        width: 50%;
        margin-right: 0;
    }

    .hot-products-box ul li .item span a {
        font-size: 12px;
        line-height: 20px;
        padding: 0 15px;
        border-radius: 20px;
    }

    .hot-products-box ul li .item {
        margin: 0 5px;
    }

    .hot-products-box ul li .item h3 {
        font-size: 14px;
    }

    .index-news-box ul li {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .header-contact, .index-news-box ul li::after {
        display: none;
    }

    .footer-content .item, .footer-content .item.footer-contactus {
        width: 100%;
    }

    .hot-products-box-t {
        padding: 5px 5px 15px 5px;
    }

    .featured-products-box .item {
        margin: 10px;
    }

    .featured-products-box-t {
        margin: 10px;
        overflow: hidden;
    }

    .index-case-box ul li {
        width: 100%;
    }

    .index-case-box-text {
        color: #363f4d;
        position: static;
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        opacity: 1;
    }

    .index-case-box ul li .item .th {
        font-size: 16px;
        line-height: 20px;
        height: 40px;
    }

    .product-listing ul, .certificate-listing ul {
        margin: -5px;
    }

    .product-listing .product-item, .certificate-listing .item {
        margin: 5px;
        padding: 10px;
    }

    /*联系我们表格*/
    .contact-info {
        border: 8px solid #f7f3f2;
    }

    .contact-info tr th, .contact-info tr td {
        font-size: 12px;
    }

    /*返回顶部*/
    .scroll {
        width: 32px;
        height: 32px;
        line-height: 34px;
        right: 2px;
        bottom: 8px;
    }

    .scroll i {
        font-size: 22px;
    }

    /*侧边*/
    .inner-page-content, .inner-page-l, .inner-page-r {
        width: 100%;
        margin-bottom: 0;
    }

    .sidebar-block {
        margin-right: 0;
    }

    .product-listing .product-item-name h3 {
        font-size: 14px;
    }

    /*侧边联系方式*/
    .sidebar-contact {
        display: none;
    }

    /*案例列表*/
    .case-listing-frame {
        width: 100%;
        margin: 0 0 20px 0;
        float: none;
        max-width: 500px;
    }

    .news-list-top-box-frame, .news-list-top-box-text {
        width: 100%;
        margin-bottom: 10px;
    }

    .news-list-top-box .item h2, .news-list-top-box .item h3, .news-list-top-box .item p, .news-list-top-box-text span {
        margin-left: 0;
    }

    .case-listing ul li .item h2, .case-listing ul li .item h3 {
        font-size: 16px;
    }

    /*证书*/
    .certificate-listing-frame {
        height: 180px;
    }

    .certificate-listing-frame img {
        max-height: 180px;
    }

    .site-map ul li, .site-map ul li, .site-map ul.site-map-l1 li, .site-map ul.site-map-l2 li {
        width: 100%;
    }

    .product-category li .product-image, .product-item-text, .product-item-text-b {
        margin: 0;
        width: 100%;
    }

    .related-products ul li {
        width: 50%;
    }

    .footer-secondary p {
        width: 100%;
        padding: 10px 0;
    }
}

/*轮播图*/
.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel {
    display: none;
    position: relative;
    -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
    float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer;
}

.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.container {
    padding-left: 0;
    padding-right: 0;
}

.owl-carousel .owl-wrapper-outer {
    display: inline-block;
    padding-top: 7px;
    margin-top: -7px;
}

.roll-box {
    margin: 0 -15px;
}

/*移动端侧边,底部折叠*/
.sidebar-block-but, .footer-content-but {
    display: none;
}

@media screen and (max-width: 768px) {
    .footer-middle {
        padding-top: 10px;
    }

    .inner-message {
        margin-bottom: 0;
    }

    .sidebar-block-but, .footer-content-but {
        position: relative;
        padding: 10px 40px 10px 20px;
        background-color: #eee;
        display: block;
        margin-bottom: 10px;
    }

    .sidebar-block-but span, .footer-content-but span {
        text-transform: uppercase;
        color: #222;
        font-size: 16px;
        line-height: 20px;
    }

    .sidebar-block-but button, .footer-content-but button {
        position: absolute;
        top: 9px;
        right: 5px;
        width: 30px;
        height: 24px;
        border: 0;
        color: #222;
        display: inline-block;
        border-radius: 0;
        line-height: 24px;
        background: none;
    }

    .sidebar-block-but button i, .footer-content-but button i {
        font-size: 20px;
        position: relative;
    }

    .sidebar-block-but button i::after, .footer-content-but button i::after {
        content: "\e660";
        font-family: "iconfont" !important;
    }

    .sidebar-block-but.expand button, .footer-content-but.expand button {
        transform: rotateZ(180deg);
    }

    .sidebar-box, .footer-main {
        display: none;
    }

    .sidebar-box.expand, .footer-main.expand {
        display: block;
    }
}

/*产品详情页图片*/
.pgwMenu {
    background: #333;
    height: 40px;
    position: relative;
    list-style: none
}

.pgwMenu ul {
    list-style: none;
    white-space: nowrap;
    margin: 0;
    padding: 0
}

.pgwMenu .pm-links.mobile, .pgwMenu .pm-viewMore > ul {
    background: #333;
    box-shadow: 2px 2px 4px #777;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1000
}

.pgwMenu .pm-links.mobile li, .pgwMenu .pm-viewMore > ul > li {
    display: block;
    clear: both;
    width: 175px
}

.pgwMenu li {
    float: left;
    font-size: .9rem
}

.pgwMenu a {
    display: block;
    color: #fff;
    line-height: 40px;
    text-decoration: none;
    padding: 0 12px
}

.pgwMenu.light a {
    color: #000
}

.pgwMenu a.selected {
    background: #777
}

.pgwMenu li a:hover {
    background: #666;
    text-decoration: none
}

.pgwMenu.light li a:hover {
    background: #d0d0d0
}

.pgwMenu .pm-dropDown a {
    display: inline-block;
    background: #777
}

.pgwMenu .pm-dropDown a.active, .pgwMenu .pm-viewMore a.active {
    background: #666
}

.pgwMenu.light .pm-dropDown a.active {
    background: #bbb
}

.pgwMenu .pm-dropDown span.icon, .pgwMenu .pm-dropDown span.white {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwQAADsEBuJFr7QAAABZ0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMDvo9WkAAABKSURBVEhL7ZOxDQAwCMN6O4/T0tmjsxHJDB4yROJ0dz3s1BRHEi2OTREBpQFKA5QGKA3m7IP8RKeIgNIApQFKA5QGc/ZBfkJTdF0oUafLBAFNbAAAAABJRU5ErkJggg==) no-repeat;
    display: block;
    height: 22px;
    width: 22px;
    margin: 9px 5px
}

.pgwMenu.light .pm-dropDown span.icon, .pgwMenu .pm-dropDown span.black {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvgAADr4B6kKxwAAAABZ0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMDvo9WkAAABpSURBVEhL7ZPLCcAwDEM9jefI/ks1Hyj2QbiGSLcKHggl8sEktjTc/WGyZxo6YKAbrFzFoav3/hdhmsrlijBN5XJFmKZyuSJMU7lcsfV/kIN0FRJgyACGDGDIAIYMpK8CHt6iG6xZhY0JIJ+6AHGbUFsAAAAASUVORK5CYII=) no-repeat;
    display: block;
    height: 22px;
    width: 22px;
    margin: 9px 5px
}

.pgwMenu .pm-viewMore {
    display: none;
    position: relative
}

.pgwMenu .pm-viewMore > ul {
    left: auto;
    right: 0
}

.pgwMenu .pm-viewMore li {
    float: none
}

.pgwMenu .pm-viewMore span.icon, .pgwMenu .pm-viewMore span.white {
    margin-left: 3px;
    display: inline-block;
    border-color: #fff transparent;
    border-style: solid;
    border-width: 8px 6px 0
}

.pgwMenu.light .pm-viewMore span.icon, .pgwMenu .pm-viewMore span.black {
    margin-left: 3px;
    display: inline-block;
    border-color: #000 transparent;
    border-style: solid;
    border-width: 8px 6px 0
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local(OpenSans), url(/skin/style/.SETTING_STATIC. "/fonts/opensans.wof") format(woff)
}

.cntr {
    max-width: 450px;
    float: left;
    width: 100%;
    position: relative;
    z-index: 2;
    background-color: #FFF
}

.cntr:before, .cntr:after {
    content: ' ';
    display: table
}

.pgwSlideshow {
    background: #fff;
    display: none;
    margin-right: 30px
}

.pgwSlideshow .ps-list {
    overflow: hidden;
    position: relative
}

.pgwSlideshow .ps-list li a {
    border: 1px solid #e1e1e1;
    display: table-cell;
    width: 60px;
    height: 60px
}

.pgwSlideshow .ps-list li img {
    max-width: 60px;
    max-height: 60px;
    background-color: #FFF
}

.pgwSlideshowLight {
    width: 100%;
    background: #ddd;
    display: none
}

.pgwSlideshowLight .ps-list {
    border-top: 1px solid #aaa;
    box-shadow: 0 10px 10px -5px #999 inset;
    background: #ddd;
    overflow: hidden;
    position: relative
}

.pgwSlideshowLight .ps-list li img {
    display: block;
    border: 1px solid #aaa;
    width: 80px;
    height: 80px
}

.pgwMenu.light, .pgwMenu.light .pm-links.mobile {
    background: #ddd
}

.pgwMenu.light a.selected, .pgwMenu.light .pm-dropDown a {
    background: #c5c5c5
}

.pgwMenu .pm-dropDown, .pgwMenu .pm-viewMore, .pgwMenu .pm-viewMore > ul, .hide {
    display: none
}

.pgwMenu .pm-viewMore > a, .dib {
    display: inline-block
}

.cntr:after, .clr {
    clear: both
}

.flf, .pgwSlideshow .ps-list li, .pgwSlideshowLight .ps-list li {
    float: left;
    width: 72px;
    height: 72px;
    display: table
}

.pgwSlideshow a, .pgwSlideshowLight a {
    display: table-cell;
    vertical-align: middle;
    color: #fff
}

.pgwSlideshow .ps-current, .pgwSlideshowLight .ps-current {
    text-align: center;
    position: relative;
    min-height: 150px;
    overflow: hidden;
    border: 1px solid #e1e1e1
}

.pgwSlideshow .ps-current > ul {
    padding: 0;
    height: 100%
}

.pgwSlideshow .ps-current > ul > li, .pgwSlideshowLight .ps-current > ul > li {
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    display: block;
    position: absolute
}

.pgwSlideshow .ps-current > ul > li img, .pgwSlideshowLight .ps-current > ul > li img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    background-color: #FFF
}

.pgwSlideshow .ps-caption, .pgwSlideshowLight .ps-caption {
    background: rgba(0, 0, 0, 0.5);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#99000000', endColorstr='#99000000');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#99000000', endColorstr='#99000000')";
    text-align: left;
    font-size: 1rem;
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: none;
    padding: 10px
}

.pgwSlideshow .ps-caption span, .pgwSlideshowLight .ps-caption span {
    display: inline-block;
    padding: 7px
}

.pgwSlideshow .ps-list ul, .pgwSlideshowLight .ps-list ul {
    position: relative;
    list-style: none;
    left: 0;
    margin: 0;
    padding: 5px 0;
    overflow: hidden
}

.pgwSlideshow .ps-list li .ps-item, .pgwSlideshowLight .ps-list li .ps-item {
    display: table-cell;
    opacity: .6;
    filter: alpha(opacity=60);
    margin: 5px;
    width: 62px;
    height: 62px;
    text-align: center;
    vertical-align: middle
}

.pgwSlideshow .ps-list li .ps-item.ps-selected, .pgwSlideshowLight .ps-list li .ps-item.ps-selected {
    opacity: 1;
    overflow: hidden
}

.pgwSlideshow .ps-list li .ps-item.ps-selected a {
    border: 1px solid #C00
}

.pgwSlideshow .ps-prevIcon, .pgwSlideshowLight .ps-prevIcon {
    display: block;
    border-color: transparent #666;
    border-style: solid;
    border-width: 10px 10px 10px 0
}

.pgwSlideshow .ps-nextIcon, .pgwSlideshowLight .ps-nextIcon {
    display: block;
    border-color: transparent #666;
    border-style: solid;
    border-width: 10px 0 10px 10px
}

.pgwSlideshow .ps-current .ps-prev, .pgwSlideshowLight .ps-current .ps-prev {
    background: rgba(0, 0, 0, 0.5);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#99000000', endColorstr='#99000000');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#99000000', endColorstr='#99000000')";
    border: 1px solid #777;
    border-left: 0;
    border-radius: 0 4px 4px 0;
    position: absolute;
    left: 0;
    top: 45%;
    cursor: pointer;
    padding: 20px 20px 20px 15px
}

.pgwSlideshow .ps-current .ps-next, .pgwSlideshowLight .ps-current .ps-next {
    background: rgba(0, 0, 0, 0.5);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#99000000', endColorstr='#99000000');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#99000000', endColorstr='#99000000')";
    border: 1px solid #777;
    border-right: 0;
    border-radius: 4px 0 0 4px;
    position: absolute;
    right: 0;
    top: 45%;
    cursor: pointer;
    padding: 20px 15px 20px 20px
}

.pgwSlideshow .ps-list .ps-prev, .pgwSlideshowLight .ps-list .ps-prev {
    background: #f5f5f5;
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#bb000000', endColorstr='#bb000000');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#bb000000', endColorstr='#bb000000')";
    border-left: 0;
    border-radius: 0;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: 1000;
    display: none;
    padding: 20px 15px 20px 12px
}

.pgwSlideshow .ps-list .ps-next, .pgwSlideshowLight .ps-list .ps-next {
    background: #f5f5f5;
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#bb000000', endColorstr='#bb000000');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#bb000000', endColorstr='#bb000000')";
    border-right: 0;
    border-radius: 0;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 25px;
    z-index: 1000;
    display: none;
    padding: 20px 12px 20px 15px
}

.pgwSlideshow.narrow .ps-current .ps-prev, .pgwSlideshowLight.narrow .ps-current .ps-prev {
    top: 40%;
    padding: 15px 15px 15px 12px
}

.pgwSlideshow.narrow .ps-current .ps-next, .pgwSlideshowLight.narrow .ps-current .ps-next {
    top: 40%;
    padding: 15px 12px 15px 15px
}

.pgwSlideshow.narrow .ps-list .ps-prev, .pgwSlideshowLight.narrow .ps-list .ps-prev {
    top: 16px;
    padding: 15px 8px 15px 8px
}

.pgwSlideshow.narrow .ps-list .ps-next, .pgwSlideshowLight.narrow .ps-list .ps-next {
    top: 16px;
    padding: 15px 8px 15px 8px
}

.pgwSlideshow.narrow .ps-caption, .pgwSlideshowLight.narrow .ps-caption {
    display: none;
    padding: 0;
    width: 0;
    font-size: 0
}

.pgwSlideshow.narrow .ps-list .ps-next:hover, .pgwSlideshow.narrow .ps-list .ps-prev:hover {
    background: #f1ac06
}

.pgwSlideshow.narrow .ps-list .ps-next:hover .ps-nextIcon, .pgwSlideshow.narrow .ps-list .ps-prev:hover .ps-prevIcon {
    border-color: transparent #fff
}

@media screen and (max-width: 1024px) {
    .pgwSlideshow {
        margin-right: 0
    }
}

@media (min-width: 768px) {
    .cntr {
        float: left;
        width: 100%;
        position: relative;
        z-index: 2;
        background-color: #FFF
    }
}

/*产品详图情放大*/
#jquery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 900000;
    width: 100%;
    height: auto;
}

#jquery-lightbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000000;
    text-align: center;
    line-height: 0;
}

#jquery-lightbox a img {
    max-width: 100%;
    border: none;
}

#lightbox-container-image-box {
    max-width: 100%;
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

#lightbox-container-image {
    padding: 10px;
    background-color: #fff;
    position: relative;
}

#lightbox-loading {
    position: absolute;
    top: 40%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

#lightbox-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

#lightbox-container-image-box > #lightbox-nav {
    left: 0;
}

#lightbox-nav a {
    outline: none;
}

#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
    width: 49%;
    height: 100%;
    zoom: 1;
    display: block;
}

#lightbox-nav-btnPrev {
    left: 0;
    float: left;
}

#lightbox-nav-btnNext {
    right: 0;
    float: right;
}

#lightbox-container-image-data-box {
    font: 10px Verdana, Helvetica, sans-serif;
    background-color: #fff;
    margin: 0 auto;
    line-height: 1.4em;
    overflow: auto;
    width: 100%;
    padding: 0 10px 0;
}

#lightbox-container-image-data {
    padding: 0 10px;
    color: #666;
}

#lightbox-container-image-data #lightbox-image-details {
    width: 70%;
    float: left;
    text-align: left;
}

#lightbox-image-details-caption {
    font-weight: bold;
}

#lightbox-image-details-currentNumber {
    display: block;
    clear: left;
    padding-bottom: 1.0em;
}

#lightbox-secNav-btnClose {
    width: 66px;
    float: right;
    padding-bottom: .7em;
}

#files {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
}

#lightbox-image {
    max-width: 100%;
}

/*详情页seo内容*/
.article-append {
    padding: 10px 0;
    overflow: hidden;
    width: 100%;
}

.article-outline {
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    margin-top: 10px
}

.article-outline p {
    font-size: 16px
}

.append-item {
    padding: 10px 0;
    border-top: 1px solid #ccc;
    overflow: hidden;
    margin-bottom: 20px
}

.article-append-t {
    overflow: hidden
}

.article-append-t span {
    font-size: 18px;
    line-height: 22px;
    display: inline-block;
    border-bottom: 1px solid #8e969b;
    padding: 5px 0
}

.append-item h2 {
    font-size: 18px;
    text-align: left
}

.append-item p {
    overflow: hidden;
    text-align: left
}

@media screen and (max-width: 426px) {
    .article-outline {
        margin-top: 20px
    }
}

/*证书放大*/
body.fancybox-active {
    overflow: hidden
}

body.fancybox-iosfix {
    position: fixed;
    left: 0;
    right: 0
}

.fancybox-is-hidden {
    position: absolute;
    top: -9999px;
    left: -9999px;
    visibility: hidden
}

.fancybox-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99992;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif
}

.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.fancybox-outer {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71)
}

.fancybox-is-open .fancybox-bg {
    opacity: .87;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1)
}

.fancybox-caption-wrap, .fancybox-infobar, .fancybox-toolbar {
    position: absolute;
    direction: ltr;
    z-index: 99997;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility 0s linear .25s;
    box-sizing: border-box
}

.fancybox-show-caption .fancybox-caption-wrap, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    visibility: visible;
    transition: opacity .25s, visibility 0s
}

.fancybox-infobar {
    top: 0;
    left: 0;
    font-size: 13px;
    padding: 0 10px;
    height: 44px;
    min-width: 44px;
    line-height: 44px;
    color: #ccc;
    text-align: center;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: subpixel-antialiased;
    mix-blend-mode: exclusion
}

.fancybox-toolbar {
    top: 0;
    right: 0;
    margin: 0;
    padding: 0
}

.fancybox-stage {
    overflow: hidden;
    direction: ltr;
    z-index: 99994;
    -webkit-transform: translateZ(0)
}

.fancybox-is-closing .fancybox-stage {
    overflow: visible
}

.fancybox-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    outline: none;
    white-space: normal;
    box-sizing: border-box;
    text-align: center;
    z-index: 99994;
    -webkit-overflow-scrolling: touch;
    display: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform
}

.fancybox-slide:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0
}

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
    display: block
}

.fancybox-slide--image {
    overflow: visible
}

.fancybox-slide--image:before {
    display: none
}

.fancybox-slide--video .fancybox-content, .fancybox-slide--video iframe {
    background: #000
}

.fancybox-slide--map .fancybox-content, .fancybox-slide--map iframe {
    background: #e5e3df
}

.fancybox-slide--next {
    z-index: 99995
}

.fancybox-slide > * {
    display: inline-block;
    position: relative;
    padding: 24px;
    margin: 44px 0;
    border-width: 0;
    vertical-align: middle;
    text-align: left;
    background-color: #fff;
    overflow: auto;
    box-sizing: border-box
}

.fancybox-slide > base, .fancybox-slide > link, .fancybox-slide > meta, .fancybox-slide > script, .fancybox-slide > style, .fancybox-slide > title {
    display: none
}

.fancybox-slide .fancybox-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    border: 0;
    z-index: 99995;
    background: transparent;
    cursor: default;
    overflow: visible;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform
}

.fancybox-can-zoomOut .fancybox-image-wrap {
    cursor: zoom-out
}

.fancybox-can-zoomIn .fancybox-image-wrap {
    cursor: zoom-in
}

.fancybox-can-drag .fancybox-image-wrap {
    cursor: -webkit-grab;
    cursor: grab
}

.fancybox-is-dragging .fancybox-image-wrap {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.fancybox-image, .fancybox-spaceball {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    max-width: none;
    max-height: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-spaceball {
    z-index: 1
}

.fancybox-slide--iframe .fancybox-content {
    padding: 0;
    width: 80%;
    height: 80%;
    max-width: calc(100% - 100px);
    max-height: calc(100% - 88px);
    overflow: visible;
    background: #fff
}

.fancybox-iframe {
    display: block;
    padding: 0;
    border: 0;
    height: 100%
}

.fancybox-error, .fancybox-iframe {
    margin: 0;
    width: 100%;
    background: #fff
}

.fancybox-error {
    padding: 40px;
    max-width: 380px;
    cursor: default
}

.fancybox-error p {
    margin: 0;
    padding: 0;
    color: #444;
    font-size: 16px;
    line-height: 20px
}

.fancybox-button {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 10px;
    border: 0;
    border-radius: 0;
    background: rgba(30, 30, 30, .6);
    transition: color .3s ease;
    cursor: pointer;
    outline: none
}

.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
    color: #ccc
}

.fancybox-button:focus, .fancybox-button:hover {
    color: #fff
}

.fancybox-button[disabled] {
    color: #ccc;
    cursor: default;
    opacity: .6
}

.fancybox-button svg {
    display: block;
    position: relative;
    overflow: visible;
    shape-rendering: geometricPrecision
}

.fancybox-button svg path {
    fill: currentColor;
    stroke: currentColor;
    stroke-linejoin: round;
    stroke-width: 3
}

.fancybox-button--share svg path {
    stroke-width: 1
}

.fancybox-button--pause svg path:nth-child(1), .fancybox-button--play svg path:nth-child(2) {
    display: none
}

.fancybox-button--zoom svg path {
    fill: transparent
}

.fancybox-navigation {
    display: none
}

.fancybox-show-nav .fancybox-navigation {
    display: block
}

.fancybox-navigation button {
    position: absolute;
    top: 50%;
    margin: -50px 0 0;
    z-index: 99997;
    background: transparent;
    width: 60px;
    height: 100px;
    padding: 17px
}

.fancybox-navigation button:before {
    content: "";
    position: absolute;
    top: 30px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(30, 30, 30, .6)
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0
}

.fancybox-navigation .fancybox-button--arrow_right {
    right: 0
}

.fancybox-close-small {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    z-index: 10;
    cursor: pointer
}

.fancybox-close-small:after {
    content: "×";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    font: 22px/30px Arial, Helvetica Neue, Helvetica, sans-serif;
    color: #888;
    font-weight: 300;
    text-align: center;
    border-radius: 50%;
    border-width: 0;
    background-color: transparent;
    transition: background-color .25s;
    box-sizing: border-box;
    z-index: 2
}

.fancybox-close-small:focus {
    outline: none
}

.fancybox-close-small:focus:after {
    outline: 1px dotted #888
}

.fancybox-close-small:hover:after {
    color: #555;
    background: #eee
}

.fancybox-slide--iframe .fancybox-close-small, .fancybox-slide--image .fancybox-close-small {
    top: 0;
    right: -40px
}

.fancybox-slide--iframe .fancybox-close-small:after, .fancybox-slide--image .fancybox-close-small:after {
    font-size: 35px;
    color: #aaa
}

.fancybox-slide--iframe .fancybox-close-small:hover:after, .fancybox-slide--image .fancybox-close-small:hover:after {
    color: #fff;
    background: transparent
}

.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
    display: none
}

.fancybox-caption-wrap {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 2vw 0;
    background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .1) 20%, rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .6) 80%, rgba(0, 0, 0, .8));
    pointer-events: none
}

.fancybox-caption {
    padding: 30px 0;
    border-top: 1px solid hsla(0, 0%, 100%, .4);
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    -webkit-text-size-adjust: none
}

.fancybox-caption a, .fancybox-caption button, .fancybox-caption select {
    pointer-events: all;
    position: relative
}

.fancybox-caption a {
    color: #fff;
    text-decoration: underline
}

.fancybox-slide > .fancybox-loading {
    border: 6px solid hsla(0, 0%, 39%, .4);
    border-top: 6px solid hsla(0, 0%, 100%, .6);
    border-radius: 100%;
    height: 50px;
    width: 50px;
    -webkit-animation: a .8s infinite linear;
    animation: a .8s infinite linear;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    z-index: 99999
}

@-webkit-keyframes a {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes a {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1)
}

.fancybox-fx-slide.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    opacity: 0
}

.fancybox-fx-slide.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    opacity: 0
}

.fancybox-fx-slide.fancybox-slide--current {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
}

.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
    opacity: 0
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    -webkit-transform: scale3d(.5, .5, .5);
    transform: scale3d(.5, .5, .5);
    opacity: 0
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1
}

.fancybox-fx-rotate.fancybox-slide--previous {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
    opacity: 0
}

.fancybox-fx-rotate.fancybox-slide--next {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    opacity: 0
}

.fancybox-fx-rotate.fancybox-slide--current {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1
}

.fancybox-fx-circular.fancybox-slide--previous {
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    opacity: 0
}

.fancybox-fx-circular.fancybox-slide--next {
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    opacity: 0
}

.fancybox-fx-circular.fancybox-slide--current {
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
    opacity: 1
}

.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg)
}

.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg)
}

.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1)
}

.fancybox-share {
    padding: 30px;
    border-radius: 3px;
    background: #f4f4f4;
    max-width: 90%;
    text-align: center
}

.fancybox-share h1 {
    color: #222;
    margin: 0 0 20px;
    font-size: 35px;
    font-weight: 700
}

.fancybox-share p {
    margin: 0;
    padding: 0
}

p.fancybox-share__links {
    margin-right: -10px
}

.fancybox-share__button {
    display: inline-block;
    text-decoration: none;
    margin: 0 10px 10px 0;
    padding: 0 15px;
    min-width: 130px;
    border: 0;
    border-radius: 3px;
    background: #fff;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    transition: all .2s
}

.fancybox-share__button:hover {
    text-decoration: none
}

.fancybox-share__button--fb {
    background: #3b5998
}

.fancybox-share__button--fb:hover {
    background: #344e86
}

.fancybox-share__button--pt {
    background: #bd081d
}

.fancybox-share__button--pt:hover {
    background: #aa0719
}

.fancybox-share__button--tw {
    background: #1da1f2
}

.fancybox-share__button--tw:hover {
    background: #0d95e8
}

.fancybox-share__button svg {
    position: relative;
    top: -1px;
    width: 25px;
    height: 25px;
    margin-right: 7px;
    vertical-align: middle
}

.fancybox-share__button svg path {
    fill: #fff
}

.fancybox-share__input {
    box-sizing: border-box;
    width: 100%;
    margin: 10px 0 0;
    padding: 10px 15px;
    background: transparent;
    color: #5d5b5b;
    font-size: 14px;
    outline: none;
    border: 0;
    border-bottom: 2px solid #d7d7d7
}

.fancybox-thumbs {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 212px;
    margin: 0;
    padding: 2px 2px 4px;
    background: #fff;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    box-sizing: border-box;
    z-index: 99995
}

.fancybox-thumbs-x {
    overflow-y: hidden;
    overflow-x: auto
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px
}

.fancybox-thumbs > ul {
    list-style: none;
    position: absolute;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 0;
    white-space: nowrap
}

.fancybox-thumbs-x > ul {
    overflow: hidden
}

.fancybox-thumbs-y > ul::-webkit-scrollbar {
    width: 7px
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px
}

.fancybox-thumbs > ul > li {
    float: left;
    overflow: hidden;
    padding: 0;
    margin: 2px;
    width: 100px;
    height: 75px;
    max-width: calc(50% - 4px);
    max-height: calc(100% - 8px);
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box
}

li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, .1)
}

.fancybox-thumbs > ul > li > img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-thumbs > ul > li:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94)
}

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
    opacity: 1
}

@media (max-width: 800px) {
    .fancybox-thumbs {
        width: 110px
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px
    }

    .fancybox-thumbs > ul > li {
        max-width: calc(100% - 10px)
    }
}

/*!
 * Viewer.js v1.2.0
 * https://fengyuanchen.github.io/viewerjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2018-07-15T10:09:17.532Z
 */
.viewer-close:before, .viewer-flip-horizontal:before, .viewer-flip-vertical:before, .viewer-fullscreen-exit:before, .viewer-fullscreen:before, .viewer-next:before, .viewer-one-to-one:before, .viewer-play:before, .viewer-prev:before, .viewer-reset:before, .viewer-rotate-left:before, .viewer-rotate-right:before, .viewer-zoom-in:before, .viewer-zoom-out:before {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAAAUCAYAAABWOyJDAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAQPSURBVHic7Zs/iFxVFMa/0U2UaJGksUgnIVhYxVhpjDbZCBmLdAYECxsRFBTUamcXUiSNncgKQbSxsxH8gzAP3FU2jY0kKKJNiiiIghFlccnP4p3nPCdv3p9778vsLOcHB2bfveeb7955c3jvvNkBIMdxnD64a94GHMfZu3iBcRynN7zAOI7TG15gHCeeNUkr8zaxG2lbYDYsdgMbktBsP03jdQwljSXdtBhLOmtjowC9Mg9L+knSlcD8TNKpSA9lBpK2JF2VdDSR5n5J64m0qli399hNFMUlpshQii5jbXTbHGviB0nLNeNDSd9VO4A2UdB2fp+x0eCnaXxWXGA2X0au/3HgN9P4LFCjIANOJdrLr0zzZ+BEpNYDwKbpnQMeAw4m8HjQtM6Z9qa917zPQwFr3M5KgA6J5rTJCdFZJj9/lyvGhsDvwFNVuV2MhhjrK6b9bFiE+j1r87eBl4HDwCF7/U/k+ofAX5b/EXBv5JoLMuILzf3Ap6Z3EzgdqHMCuF7hcQf4HDgeoHnccncqdK/TvSDWffFXI/exICY/xZyqc6XLWF1UFZna4gJ7q8BsRvgd2/xXpo6P+D9dfT7PpECtA3cnWPM0GXGFZh/wgWltA+cDNC7X+AP4GzjZQe+k5dRxuYPeiuXU7e1qwLpDz7dFjXKRaSwuMLvAlG8zZlG+YmiK1HoFqT7wP2z+4Q45TfEGcMt01xLoNZEBTwRqD4BLpnMLeC1A41UmVxsXgXeBayV/Wx20rpTyrpnWRft7p6O/FdqzGrDukPNtkaMoMo3FBdBSQMOnYBCReyf05s126fU9ytfX98+mY54Kxnp7S9K3kj6U9KYdG0h6UdLbkh7poFXMfUnSOyVvL0h6VtIXHbS6nOP+s/Zm9mvyXW1uuC9ohZ72E9uDmXWLJOB1GxsH+DxPftsB8B6wlGDN02TAkxG6+4D3TWsbeC5CS8CDFce+AW500LhhOW2020TRjK3b21HEmgti9m0RonxbdMZeVzV+/4tF3cBpP7E9mKHNL5q8h5g0eYsCMQz0epq8gQrwMXAgcs0FGXGFRcB9wCemF9PkbYqM/Bas7fxLwNeJPdTdpo4itQti8lPMqTpXuozVRVXPpbHI3KkNTB1NfkL81j2mvhDp91HgV9MKuRIqrykj3WPq4rHyL+axj8/qGPmTqi6F9YDlHOvJU6oYcTsh/TYSzWmTE6JT19CtLTJt32D6CmHe0eQn1O8z5AXgT4sx4Vcu0/EQecMydB8z0hUWkTd2t4CrwNEePqMBcAR4mrBbwyXLPWJa8zrXmmLEhNBmfpkuY2102xxrih+pb+ieAb6vGhuA97UcJ5KR8gZ77K+99xxeYBzH6Q3/Z0fHcXrDC4zjOL3hBcZxnN74F+zlvXFWXF9PAAAAAElFTkSuQmCC");
    background-repeat: no-repeat;
    color: rgba(0, 0, 0, 0);
    display: block;
    font-size: 0;
    height: 20px;
    line-height: 0;
    width: 20px
}

.viewer-zoom-in:before {
    background-position: 0 0;
    content: "Zoom In"
}

.viewer-zoom-out:before {
    background-position: -20px 0;
    content: "Zoom Out"
}

.viewer-one-to-one:before {
    background-position: -40px 0;
    content: "One to One"
}

.viewer-reset:before {
    background-position: -60px 0;
    content: "Reset"
}

.viewer-prev:before {
    background-position: -80px 0;
    content: "Previous"
}

.viewer-play:before {
    background-position: -100px 0;
    content: "Play"
}

.viewer-next:before {
    background-position: -120px 0;
    content: "Next"
}

.viewer-rotate-left:before {
    background-position: -140px 0;
    content: "Rotate Left"
}

.viewer-rotate-right:before {
    background-position: -160px 0;
    content: "Rotate Right"
}

.viewer-flip-horizontal:before {
    background-position: -180px 0;
    content: "Flip Horizontal"
}

.viewer-flip-vertical:before {
    background-position: -200px 0;
    content: "Flip Vertical"
}

.viewer-fullscreen:before {
    background-position: -220px 0;
    content: "Enter Full Screen"
}

.viewer-fullscreen-exit:before {
    background-position: -240px 0;
    content: "Exit Full Screen"
}

.viewer-close:before {
    background-position: -260px 0;
    content: "Close"
}

.viewer-container {
    -moz-user-select: none;
    -ms-touch-action: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    bottom: 0;
    direction: ltr;
    font-size: 0;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    touch-action: none;
    user-select: none
}

.viewer-container::-moz-selection, .viewer-container ::-moz-selection {
    background-color: rgba(0, 0, 0, 0)
}

.viewer-container::-moz-selection, .viewer-container ::-moz-selection {
    background-color: rgba(0, 0, 0, 0)
}

.viewer-container::selection, .viewer-container ::selection {
    background-color: rgba(0, 0, 0, 0)
}

.viewer-container img {
    display: block;
    height: auto;
    max-height: none !important;
    max-width: none !important;
    min-height: 0 !important;
    min-width: 0 !important;
    width: 100%
}

.viewer-canvas {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0
}

.viewer-canvas > img {
    height: auto;
    margin: 15px auto;
    max-width: 90% !important;
    width: auto
}

.viewer-footer {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    text-align: center
}

.viewer-navbar {
    background-color: rgba(0, 0, 0, .5);
    overflow: hidden
}

.viewer-list {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 50px;
    margin: 0;
    overflow: hidden;
    padding: 1px 0
}

.viewer-list > li {
    -webkit-transition: opacity .15s;
    color: rgba(0, 0, 0, 0);
    cursor: pointer;
    float: left;
    font-size: 0;
    height: 50px;
    line-height: 0;
    opacity: .5;
    overflow: hidden;
    transition: opacity .15s;
    width: 30px
}

.viewer-list > li:hover {
    opacity: .75
}

.viewer-list > li + li {
    margin-left: 1px
}

.viewer-list > .viewer-loading {
    position: relative
}

.viewer-list > .viewer-loading:after {
    border-width: 2px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    width: 20px
}

.viewer-list > .viewer-active, .viewer-list > .viewer-active:hover {
    opacity: 1
}

.viewer-player {
    background-color: #000;
    bottom: 0;
    cursor: none;
    display: none;
    right: 0
}

.viewer-player, .viewer-player > img {
    left: 0;
    position: absolute;
    top: 0
}

.viewer-toolbar > ul {
    display: inline-block;
    margin: 0 auto 5px;
    overflow: hidden;
    padding: 3px 0
}

.viewer-toolbar > ul > li {
    -webkit-transition: background-color .15s;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 50%;
    cursor: pointer;
    float: left;
    height: 24px;
    overflow: hidden;
    transition: background-color .15s;
    width: 24px
}

.viewer-toolbar > ul > li:hover {
    background-color: rgba(0, 0, 0, .8)
}

.viewer-toolbar > ul > li:before {
    margin: 2px
}

.viewer-toolbar > ul > li + li {
    margin-left: 1px
}

.viewer-toolbar > ul > .viewer-small {
    height: 18px;
    margin-bottom: 3px;
    margin-top: 3px;
    width: 18px
}

.viewer-toolbar > ul > .viewer-small:before {
    margin: -1px
}

.viewer-toolbar > ul > .viewer-large {
    height: 30px;
    margin-bottom: -3px;
    margin-top: -3px;
    width: 30px
}

.viewer-toolbar > ul > .viewer-large:before {
    margin: 5px
}

.viewer-tooltip {
    background-color: rgba(0, 0, 0, .8);
    border-radius: 10px;
    color: #fff;
    display: none;
    font-size: 12px;
    height: 20px;
    left: 50%;
    line-height: 20px;
    margin-left: -25px;
    margin-top: -10px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 50px
}

.viewer-title {
    -webkit-transition: opacity .15s;
    color: #ccc;
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    margin: 0 5% 5px;
    max-width: 90%;
    opacity: .8;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity .15s;
    white-space: nowrap
}

.viewer-title:hover {
    opacity: 1
}

.viewer-button {
    -webkit-transition: background-color .15s;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 50%;
    cursor: pointer;
    height: 80px;
    overflow: hidden;
    position: absolute;
    right: -40px;
    top: -40px;
    transition: background-color .15s;
    width: 80px
}

.viewer-button:focus, .viewer-button:hover {
    background-color: rgba(0, 0, 0, .8)
}

.viewer-button:before {
    bottom: 15px;
    left: 15px;
    position: absolute
}

.viewer-fixed {
    position: fixed
}

.viewer-open {
    overflow: hidden
}

.viewer-show {
    display: block
}

.viewer-hide {
    display: none
}

.viewer-backdrop {
    background-color: rgba(0, 0, 0, .5)
}

.viewer-invisible {
    visibility: hidden
}

.viewer-move {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab
}

.viewer-fade {
    opacity: 0
}

.viewer-in {
    opacity: 1
}

.viewer-transition {
    -webkit-transition: all .3s;
    transition: all .3s
}

@-webkit-keyframes viewer-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes viewer-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.viewer-loading:after {
    -webkit-animation: viewer-spinner 1s linear infinite;
    animation: viewer-spinner 1s linear infinite;
    border: 4px solid hsla(0, 0%, 100%, .1);
    border-left: 4px solid hsla(0, 0%, 100%, .5);
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 40px;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    width: 40px;
    z-index: 1
}

@media (max-width: 767px) {
    .viewer-hide-xs-down {
        display: none
    }
}

@media (max-width: 991px) {
    .viewer-hide-sm-down {
        display: none
    }
}

@media (max-width: 1199px) {
    .viewer-hide-md-down {
        display: none
    }
}

html, body {
    padding: 0;
    margin: 0;
    background: #fff;
}

* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, Verdana, 'Microsoft YaHei';
    border: 0;
    outline: medium;
    text-shadow: none;
    text-decoration: none;
}

body {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input {
    vertical-align: middle;
}

textarea {
    resize: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    font-size: 14px;
}

hr {
    border-width: 1px;
    border-style: inset;
}

ul {
    list-style: none;
}

p {
    margin: 0;
}

a, a:link, a:active, a:visited, a:hover {
    text-decoration: none;
}

img, i {
    display: block;
}

i, em {
    font-style: normal;
}

html {
    height: 100%;
}

html, body {
    width: 100%;
    min-height: 100%;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    zoom: 1;
}

.warpper {
    width: 1600px;
    margin: 0 auto;
}

.dH {
    overflow: hidden;
}

.inp_pla {
    color: #999 !important;
}

.rig-title-over {
    float: left;
    line-height: 60px;
    max-width: 400px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*input placeholder 样式 */

::-webkit-input-placeholder {
    color: #999999;
}

:-moz-placeholder {
    color: #999999;
}

::-moz-placeholder {
    color: #999999;
}

:-ms-input-placeholder {
    color: #999999;
}

/*修改滚动条*/

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px transparent;
    background: #f8f8f8;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: #bbb;
}

/* 无内容 */
.no-goods, .no-network {
    padding-top: 100px;
    overflow: hidden;
    text-align: center;
}

.no-goods img {
    display: block;
    margin: 0 auto 30px;
    width: 220px;
    max-height: 105px;
}

.no-network img {
    display: block;
    margin: 0 auto 30px;
    width: 222px;
    height: 160px;
}

.no-goods p, .no-network p {
    font-size: 14px;
    color: #666666;
    line-height: 20px;
}

/* 更改layer样式 */
.layui-layer-btn {
    text-align: center !important;
    padding-bottom: 28px !important;
}

.layui-layer-btn .layui-layer-btn0 {
    display: block;
    margin: 0 auto !important;
    border-radius: 0 !important;
    width: 88px !important;
    text-align: center !important;
    height: 34px !important;
    line-height: 34px !important;
    border-color: #237ed2 !important;
    background-color: #237ed2 !important;
}

.layui-layer-btn .layui-layer-btn0:hover {
    background: #348eed !important;
    border-color: #348eed !important;
}

.iframe-video {
    width: 100%;
    height: 470px;
    overflow: hidden;
    margin-bottom: 30px;
}

.iframe-video .video-preview {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0;
    text-align: center;
    cursor: pointer;
}

.iframe-video .video-preview::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.iframe-video .video-preview::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/media-icon.png?72326e2080d1201997e0a2783904bb54) no-repeat center;
    z-index: 2;
}

.iframe-video .video-preview img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.iframe-video iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.pagebar {
    padding: 20px;
    overflow: hidden;
    clear: both
}

.pagebar .pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.pagination a {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-size: 12px;
    padding: 8px 10px;
    margin: 0 2px;
    border-radius: 3px;
    line-height: 100%
}

.pagination span {
    color: #333;
    font-size: 12px;
    padding: 7px 2px;
    margin: 0 2px;
    border-radius: 3px;
}

.pagination a:hover {
    color: #333;
    border: 1px solid #333;
}

.pagination a.page-num-current {
    color: #fff;
    background: #333;
    border: 1px solid #333;
}

.pagination .st {
    font-family: 宋体
}

.text-secondary {
    text-align: center;
    padding: 20px 0
}

.bg-color {
    background: #fff;
}

.top_bar {
    font-size: 13px;
    height: 34px;
    line-height: 34px;
    background: #eeeeee;
    color: #666666;
}

.top_bar .tb-left {
    float: left;
    height: 34px;
    overflow: hidden;

}

.top_bar .tb-left a {
    font-size: 13px;
    color: #b70c0c;
}

.top_bar .tb-left a:hover {
    color: #f81616;
}

.top_bar .tb-rig {
    float: right;
}

.top_bar .tb-rig ul li {
    position: relative;
    float: left;
    font-size: 13px;
}

.top_bar .tb-rig ul li > a {
    color: #666666;
    padding: 0px 22px;
}

.top_bar .tb-rig ul li > a:hover {
    color: #268ae7;
}

.top_bar .tb-rig ul li.drop-down > a {
    background: url(../images/down-icon.png?29c07a7e5b4291aacd6c0e5966f6efe0) no-repeat 74px center;
}

.top_bar .tb-rig ul li .drop-list {
    display: none;
    position: absolute;
    top: 40px;
    padding: 10px 0 8px;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(246, 246, 247, 0.95) !important;
    filter: alpha(opacity=95);
    background: #f6f6f7;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    box-shadow: 1px 3px 3px #ccc;
}

.top_bar .tb-rig ul li .drop-list ul li {
    float: none;
    line-height: 32px;
}

.top_bar .tb-rig ul li .drop-list ul li a {
    display: block;
    text-align: center;
    padding: 0;
}

.top_bar .tb-rig ul li.drop-down:hover > a {
    color: #268ae7;
}

.top_bar .tb-rig ul li.drop-down:hover .drop-list {
    display: block;
}

.head {
    height: 135px;
    background: #fff;
}

.head .logo {
    float: left;
    height: 55px;
    max-width: 900px;
    margin-top: 40px;
    overflow: hidden;
}

.head .logo img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.head h1.head-title {
    display: block;
    float: left;
    font-size: 26px;
    color: #333333;
    line-height: 55px;
    font-weight: bold;
    max-width: 635px;
    overflow: hidden;
    margin-top: 40px;
}

.head .QR_code {
    float: right;
    margin-left: 115px;
    width: 100px;
    height: 100px;
    margin-top: 17px;
    font-size: 0;
    line-height: 100px;
    text-align: center;
}

.head .QR_code img {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.head .head-group {
    overflow: hidden;
    float: right;
    margin-top: 51px;
}

.head .head-group .head-search {
    overflow: hidden;
    min-width: 255px;
}

.head .head-group .head-search input {
    float: left;
    width: 194px;
    height: 34px;
    border: 1px solid #d2d2d2;
    border-right: none;
    line-height: 34px;
    padding: 0 5px;
}

.head .head-group .head-search a {
    float: left;
    display: block;
    width: 50px;
    height: 36px;
    background: #1b1b1d url(../images/search-btn.png?4631bf215c8f8768d9ed5c6bb76c580a) no-repeat center;
}

.head .tel {
    line-height: 30px;
    font-size: 14px;
    color: #676767;
    padding-left: 36px;
    background: url(../images/tel.png?18df1cba2d69b7337efd49a0a00e5dc0) no-repeat 8px center;
}

.head .tel span {
    font-size: 20px;
    color: #0058b1;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-bar {
    background: #0058b1;
    height: 57px;
    font-size: 0;
}

.nav-bar ul {
    overflow: hidden;
    display: inline-block;

}

.nav-bar ul li {
    float: left;
    line-height: 57px;
}

.nav-bar ul li a {
    position: relative;
    display: block;
    font-size: 16px;
    color: #fff;
    width: 150px;
    text-align: center;
}

.nav-bar ul li a::after {
    position: absolute;
    content: '';
    right: -1px;
    top: 50%;
    width: 0;
    margin-top: -9px;
    height: 18px;
    border-left: 1px solid #268ae7;
}

.nav-bar ul li a:hover,
.nav-bar ul li.active a {
    background: #268ae7;
}

.nav-bar ul li a:hover::after,
.nav-bar ul li.active a::after {
    display: none;
}

.nav-bar ul li:last-child a::after {
    display: none;
}

.banner {
    position: relative;
    height: 420px;
}

.banner #bannerSwiper {
    height: 420px;
}

.banner .swiper-slide {
    position: relative;
    height: 420px;
    float: left;
}

.banner .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.banner .pagination {
    position: absolute;
    font-size: 0;
    left: 0;
    text-align: center;
    bottom: 13px;
    width: 100%;
    z-index: 9;
}

.banner .pagination .swiper-pagination-switch {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    opacity: 0.6;
    margin: 0 5px;
    cursor: pointer;
}

.banner .pagination .swiper-active-switch {
    background: #fff;
    opacity: 1;
}

#main {
    overflow: hidden;
}

/* 首页产品 */
#main .product-main {
    margin: 40px 0 22px;
    overflow: hidden;
}

#main .product-main .pro-sider .pro-sider-ul {
    height: 413px;
    overflow: auto;
}

#main .product-main .pro-main-rig {
    width: 900px;
    float: right;
}

#main .product-main .pro-main-rig .pr-title {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #ededed;
    overflow: hidden;
    font-size: 18px;
    color: #0058b1;
    font-weight: bold;
    margin-bottom: 15px;
}

#main .product-main .pro-main-rig .pr-title a {
    font-weight: normal;
    display: block;
    float: right;
    font-size: 14px;
    color: #0058b1;
}

#main .product-main .pro-main-rig .pr-title a:hover {
    text-decoration: underline;
}

#main .product-main .pro-main-rig .pr-list {
    overflow: hidden;
}

#main .product-main .pro-main-rig .pr-list ul {
    margin: 0 -12px;
}

#main .product-main .pro-main-rig .pr-list ul li {
    float: left;
    width: 280px;
    height: 260px;
    border: 2px solid #fff;
    margin: 0 12px 18px;
}

#main .product-main .pro-main-rig .pr-list ul li a {
    display: block;
}

#main .product-main .pro-main-rig .pr-list ul li .pro-img {
    width: 278px;
    height: 210px;
    font-size: 0;
    text-align: center;
    line-height: 210px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-bottom: none;
}

#main .product-main .pro-main-rig .pr-list ul li .pro-img img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

#main .product-main .pro-main-rig .pr-list ul li .title {
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    color: #595959;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid #e5e5e5;
    border-top: none;
}

#main .product-main .pro-main-rig .pr-list ul li .title h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#main .product-main .pro-main-rig .pr-list ul li:hover {
    /* background: #268ae7;
  color: #fff; */
    border-color: #268ae7;
}

#main .product-main .pro-main-rig .pr-list ul li:hover .title {
    border: none;
}

#main .company-main {
    padding: 50px 0 60px;
    background: #f2f2f2;
    overflow: hidden;
}

#main .company-main .warpper {
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 2px 1px rgba(102, 102, 102, 0.1);
}

#main .company-main .com-main-left,
#main .company-main .com-main-rig {
    position: relative;
    float: left;
    height: 490px;
    overflow: hidden;
}

#main .company-main .com-main-left {
    padding: 0 47px 0 30px;
    width: 523px;
}

#main .company-main .com-main-left .title {
    margin: 35px 0 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
}

#main .company-main .com-main-left .title h3 {
    font-size: 22px;
    color: #0058b1;
    font-weight: bold;
    margin-bottom: 4px;
}

#main .company-main .com-main-left .title em {
    font-size: 16px;
    color: #d1d1d1;
}

#main .company-main .com-main-left .com-content {
    overflow: hidden;
    font-size: 14px;
    color: #595959;
    line-height: 24px;
    height: 216px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
}

#main .company-main .com-main-left .com-content img {
    max-width: 100%;
}

#main .company-main .com-main-left .com-btn {
    margin-top: 35px;
    float: left;
    overflow: hidden;
    border: 1px solid #268ae7;
}

#main .company-main .com-main-left .com-btn a {
    display: block;
    width: 145px;
    float: left;
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 14px;
    color: #595959;
}

#main .company-main .com-main-left .com-btn a.active {
    background: #268ae7;
    color: #fff;
}

#main .company-main .com-main-rig {
    width: 600px;
}

#main .company-main .com-main-rig .company-img {
    position: relative;
    width: 570px;
    height: 420px;
    font-size: 0;
    text-align: center;
    line-height: 420px;
    margin-top: 35px;
    z-index: 1;
}

#main .company-main .com-main-rig .company-img img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

#main .company-main .com-main-rig::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 0;
    width: 450px;
    background: #0058b1;
}

#main .news-main {
    background: #fff;
    overflow: hidden;
    padding: 50px 0 40px;
}

#main .news-main .news-content {
    float: left;
    width: 600px;
}

#main .news-main .news-content .news-title {
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-weight: bold;
    color: #323232;
    border-bottom: 1px solid #ededed;
    margin-bottom: 20px;
}

#main .news-main .news-content .news-title a {
    font-weight: normal;
    float: right;
    font-size: 14px;
    color: #0058b1;
}

#main .news-main .news-content .news-title a:hover {
    text-decoration: underline;
}

#main .news-main .news-content .news-show {
    overflow: hidden;
    height: 140px;
    margin-bottom: 25px;
}

#main .news-main .news-content .news-show .show-box {
    width: 160px;
    float: left;
    text-align: center;
    line-height: 140px;
    color: #fff;
    font-size: 27px;
    font-weight: bold;
    background: #0058b1;
}

#main .news-main .news-content .news-show .show-img {
    float: left;
    width: 440px;
    height: 140px;
    font-size: 0;
    text-align: center;
    line-height: 140px;
}

#main .news-main .news-content .news-show .show-img img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

#main .news-main .news-content .news-show-one {
    margin-bottom: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ededed;
}

#main .news-main .news-content .news-show-one .title {
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

#main .news-main .news-content .news-show-one .title a {
    display: block;
    float: left;
    color: #323232;
    max-width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#main .news-main .news-content .news-show-one .title a h4 {
    font-weight: bold !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#main .news-main .news-content .news-show-one .title a:hover {
    color: #0058b1;
}

#main .news-main .news-content .news-show-one .title span {
    float: right;
    color: #808080;
}

#main .news-main .news-content .news-show-one .title span em {
    color: #d9d9d9;
    margin: 0 5px;
}

#main .news-main .news-content .news-show-one .news-p {
    font-size: 14px;
    line-height: 24px;
    max-height: 48px;
    color: #808080;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

#main .news-main .news-content .news-list {
    overflow: hidden;
}

#main .news-main .news-content .news-list ul {
    margin: 0 -20px;
}

#main .news-main .news-content .news-list ul li {
    float: left;
    width: 280px;
    margin: 0 20px;
    font-size: 14px;
    line-height: 30px;
}

#main .news-main .news-content .news-list ul li a {
    position: relative;
    padding-left: 10px;
    display: block;
    color: #808080;
}

#main .news-main .news-content .news-list ul li a h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#main .news-main .news-content .news-list ul li a::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 2px;
    background: #555555;
    left: 0;
    top: 50%;
    margin-top: -1px;
}

#main .news-main .news-content .news-list ul li a:hover {
    color: #0058b1;
}

#main .news-main .online-main {
    width: 480px;
    float: right;
}

#main .news-main .online-main .title {
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-weight: bold;
    color: #323232;
    border-bottom: 1px solid #ededed;
    margin-bottom: 20px;
}

#main .news-main .online-main .online-form {
    overflow: hidden;
}

#main .news-main .online-main .online-form input {
    float: left;
    display: block;
    width: 460px;
    padding: 0 9px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #ededed;
    margin-bottom: 13px;
    font-size: 14px;
    color: #323232;
}

#main .news-main .online-main .online-form input.code {
    width: 300px;
}

#main .news-main .online-main .online-form a {
    display: block;
}

#main .news-main .online-main .online-form a.code {
    float: right;
    height: 42px;
    max-width: 130px;
    line-height: 42px;
    font-size: 0;
    text-align: center;
}

#main .news-main .online-main .online-form a.code img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

#main .news-main .online-main .online-form textarea {
    display: block;
    float: left;
    font-size: 14px;
    color: #323232;
    width: 460px;
    border: 1px solid #ededed;
    height: 120px;
    line-height: 30px;
    padding: 5px 9px;
    margin-bottom: 26px;
}

#main .news-main .online-main .online-form .btn-box {
    float: left;
    width: 100%;
    overflow: hidden;
}

#main .news-main .online-main .online-form .btn-box a.btn {
    display: block;
    width: 265px;
    height: 42px;
    text-align: center;
    line-height: 42px;
    background: #268ae7;
    color: #fff;
    margin: 0 auto;
}

#main .news-main .online-main .online-form .btn-box a.btn:hover {
    background: #0058b1;
}

.link-cover {
    overflow: hidden;
    padding: 30px 0 20px;
    border-top: 1px solid #e6e6e6;
}

.link-cover .title {
    float: left;
    width: 80px;
    height: 35px;
    background: url(../images/link-icon.png?0bc245c254b39f4ec6ab6fa5d34b100a) no-repeat left center;
}

.link-cover .link-list {
    float: left;
    width: 1000px;
    height: 35px;
    overflow: hidden;
}

.link-cover .link-list a {
    display: block;
    float: left;
    height: 35px;
    line-height: 35px;
    padding: 0 22px;
    font-size: 14px;
    color: #808080;
}

.link-cover .link-list a img {
    display: block;
    height: 25px;
    margin: 5px 0 0;
    width: auto;
}

.link-cover .link-list a:hover {
    color: #268ae7;
}

.link-cover .link-list em {
    display: block;
    float: left;
    font-size: 14px;
    color: #e6e6e6;
    line-height: 35px;
}

.link-cover .link-list.active {
    height: auto;
}

.link-cover .link-more {
    cursor: pointer;
    float: right;
    font-size: 14px;
    color: #4c4c4c;
    line-height: 35px;
    height: 35px;
    padding-right: 20px;
    background: url(../images/down-arr.png?cd076a496b617036fd1e84819cbb1976) no-repeat right center;
}

.link-cover .link-more.on {
    background: url(../images/up-arr.png?0e4b34eaf2e1460047e4f9baf121dbb5) no-repeat right center;
}

.footer {
    background: #242e3a;
}

.footer .foot-contact {
    overflow: hidden;
    margin-top: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #3e4956;
}

.footer .foot-contact .f-contact-l {
    float: left;
    width: 1000px;
    padding-top: 20px;
}

.footer .foot-contact .f-contact-l .fcl-floor {
    overflow: hidden;
}

.footer .foot-contact .f-contact-l .fcl-floor.mar-bot-28 {
    margin-bottom: 28px;
}

.footer .foot-contact .f-contact-l .fcl-floor .fl-item {
    width: 230px;
    min-height: 44px;
    float: left;
    overflow: hidden;
    padding-left: 65px;
}

.footer .foot-contact .f-contact-l .fcl-floor .fl-item.icon-01 {
    background: url(../images/fot-icon-01.png?511b71d4f6704c0092c3a23a5a420413) no-repeat top left;
}

.footer .foot-contact .f-contact-l .fcl-floor .fl-item.icon-02 {
    background: url(../images/fot-icon-02.png?dcfeb0c1e07e6efdce95eaacf2405e9e) no-repeat top left;
}

.footer .foot-contact .f-contact-l .fcl-floor .fl-item.icon-03 {
    width: 340px;
    background: url(../images/fot-icon-03.png?2530d627792f9352b495649c98b12218) no-repeat top left;
}

.footer .foot-contact .f-contact-l .fcl-floor .fl-item.icon-04 {
    background: url(../images/fot-icon-04.png?6ca818c550f65d88e54d8460c67a9430) no-repeat top left;
}

.footer .foot-contact .f-contact-l .fcl-floor .fl-item.icon-05 {
    background: url(../images/fot-icon-05.png?efebccdf30c154a9ea5b01558f41c3c4) no-repeat top left;
}

.footer .foot-contact .f-contact-l .fcl-floor .fl-item.icon-06 {
    width: 340px;
    background: url(../images/fot-icon-06.png?5dfef36b0130d8c5f26307463b61105b) no-repeat top left;
}

.footer .foot-contact .f-contact-l .fcl-floor .fl-item h3 {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.footer .foot-contact .f-contact-l .fcl-floor .fl-item p {
    font-size: 14px;
    color: #707985;
    line-height: 20px;
    word-wrap: break-word;
}

.footer .foot-contact .f-contact-r {
    float: right;
    width: 120px;
}

.footer .foot-contact .f-contact-r img {
    display: block;
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

.footer .foot-contact .f-contact-r .title {
    text-align: center;
    font-size: 14px;
    line-height: 1;
    color: #707985;
}

.footer .foot-nav {
    overflow: hidden;
}

.footer .foot-nav .foot-logo {
    float: left;
    width: 315px;
    height: 130px;
    font-size: 0;
    line-height: 130px;
}

.footer .foot-nav .foot-logo h1 {
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    line-height: 55px;
    margin-top: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.footer .foot-nav .foot-logo img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.footer .foot-nav .foot-nav-list {
    overflow: hidden;
    margin-top: 55px;
}

.footer .foot-nav .foot-nav-list ul li {
    float: left;
    margin: 0 25px;
    line-height: 20px;
}

.footer .foot-nav .foot-nav-list ul li a {
    font-size: 16px;
    color: #707985;
}

.footer .foot-nav .foot-nav-list ul li a:hover,
.footer .foot-nav .foot-nav-list ul li.active a {
    color: #b4b9bf;
}

.foot {
    background: #191e24;
    height: 48px;
    font-size: 13px;
    line-height: 48px;
    color: #495665;
}

.foot .foot-l {
    float: left;
}

.foot .foot-r {
    float: right;
}

.foot a {
    color: #495665;
}

.foot a:hover {
    color: #b4b9bf;
}

.pro-sider {
    float: left;
    width: 260px;
}

.pro-sider .in-title {
    height: 80px;
    background: url(../images/i-pro-title.jpg?1a90ab70335b09468e56a9e587cff091) no-repeat center;
    text-align: center;
    line-height: 1;
    overflow: hidden;
}

.pro-sider .in-title h3 {
    margin-top: 20px;
    font-size: 22px;
    color: #fff;
    margin-bottom: 5px;
}

.pro-sider .in-title em {
    font-size: 13px;
    color: #728dbc;
}

.pro-sider .pro-sider-ul {
    border: 1px solid #ededed;
    background: #fff;
    border-top: none;
    overflow: hidden;
}

.pro-sider .pro-sider-ul .ul-li {
    padding: 0 15px;
    height: 59px;
}

.pro-sider .pro-sider-ul .ul-li a {
    position: relative;
    height: 58px;
    line-height: 58px;
    font-size: 14px;
    color: #595959;
    display: block;
    padding-left: 10px;
    padding-right: 30px;
    border-bottom: 1px dashed #ededed;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pro-sider .pro-sider-ul .ul-li a h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pro-sider .pro-sider-ul .ul-li a div.icon {
    position: absolute;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    background: #ededed url(../images/sider-bg-01.png?dc873afb66cc10894055cded2f1656bc) no-repeat center;
    border-radius: 50%;
    right: 8px;
    top: 50%;
    margin-top: -8px;
    font-size: 12px;
}

.pro-sider .pro-sider-ul .ul-li:hover,
.pro-sider .pro-sider-ul .ul-li.active {
    background: #268ae7;
}

.pro-sider .pro-sider-ul .ul-li:hover a,
.pro-sider .pro-sider-ul .ul-li.active a {
    border: none;
    color: #fff;
}

.pro-sider .pro-sider-ul .ul-li:hover div.icon,
.pro-sider .pro-sider-ul .ul-li.active div.icon {
    background: #0058b1 url(../images/sider-bg-02.png?3f9d941550061624149e6568ef144a7b) no-repeat center;
}

.pro-sider .pro-sider-ul .ul-li:last-child a {
    border-bottom: none;
}

.pro-sider .pro-sider-tel {
    overflow: hidden;
    height: 100px;
    line-height: 1;
    font-size: 20px;
    color: #0058b1;
    border: 1px solid #ededed;
    border-top: none;
    padding-left: 80px;
    background: url(../images/sider-tel.png?562d258b1cb776bc2dc054ad1786c277) no-repeat 25px center;
}

.pro-sider .pro-sider-tel span {
    display: block;
    margin: 30px 0 8px;
    font-size: 14px;
    color: #808080;
}

.pro-sider .pro-sider-tel em {
    letter-spacing: 2px;
    font-weight: bold;
}


.m-column-t {
    position: relative;
    text-align: center;
    font-size: 0;
}

.m-column-t .center {
    display: inline-block;
    font-size: 0;
}

.m-column-t .center h3 {
    color: #333;
    font-size: 30px;
}

.m-column-t .center p {
    color: #d2d2d2;
    font-size: 30px;
}

.m-column-t span {
    position: absolute;
    width: 415px;
    top: 50%;
    margin-top: -5px;
    height: 5px;
    border-bottom: 1px solid #d2d2d2;
    z-index: 1;
}

.m-column-t span.mcl {
    left: 0;
}

.m-column-t span.mcl em {
    float: right;
}

.m-column-t span.mcr {
    right: 0;
}

.m-column-t span em {
    display: block;
    height: 11px;
    border-left: 1px solid #d2d2d2;
}

.textLine {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.textLine3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.textHidden {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.domHidden {
    overflow: hidden;
}

.about-main {
    padding: 20px 0 70px;
    min-height: 170px;
}

.about-main .ab-content {
    float: right;
    width: 925px;
}

.about-main .ab-content .title {
    line-height: 50px;
}

.about-main .ab-content .title a {
    color: #333;
    padding: 0 5px;
}

.about-main .ab-content .title span.icon-home {
    color: #535353;
}

.about-main .ab-content .title em {
    color: #999;
}

.about-main .ab-content .ab-conBox {
    overflow: hidden;
    background: #fff;
    min-height: 55px;
    padding: 30px 45px 40px;
}

.about-main .ab-content .ab-conBox .de-title {
    text-align: center;
    font-size: 20px;
    color: #333;
    line-height: 25px;
    margin-bottom: 8px;
}

.about-main .ab-content .ab-conBox .sub-co {
    font-size: 14px;
    color: #999;
    text-align: center;
    line-height: 18px;
}

.about-main .ab-content .ab-conBox .ab-detail {
    overflow: hidden;
    margin-top: 30px;
    font-size: 14px;
    color: #777373;
    line-height: 25px;
}

.ab-sild {
    float: left;
    width: 260px;
}

.ab-sild .title {
    position: relative;
    height: 50px;
    text-align: center;
    background: #f3c04b;
    font-size: 16px;
    line-height: 50px;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.ab-sild .title span {
    position: absolute;
    height: 3px;
    width: 30px;
    top: 50%;
    margin-top: -3px;
    border-bottom: 1px solid #fff;
}

.ab-sild .title span em {
    display: block;
    height: 7px;
    border-left: 1px solid #fff;
}

.ab-sild .title span.stl {
    left: 35px;
}

.ab-sild .title span.stl em {
    float: right;
}

.ab-sild .title span.str {
    right: 35px;
}

.ab-sild .sild-cate {
    background: #fff;
    margin-bottom: 20px;
}

.ab-sild .sild-cate .list {
    overflow: hidden;
}

.ab-sild .sild-cate .list li {
    position: relative;
    border-bottom: 1px solid #eee;
    height: 60px;
    line-height: 60px;
}

.ab-sild .sild-cate .list li a {
    display: block;
    padding-right: 35px;
    font-size: 14px;
    color: #333;
    padding-left: 20px;
}

.ab-sild .sild-cate .list li:last-child {
    border-bottom: none;
}

.ab-sild .sild-cate .list li:hover {
    border-color: #f3c04b;
    background: #f3c04b;
}

.ab-sild .sild-cate .list li:hover a {
    color: #fff;
}

.ab-sild .sild-cate .list li:hover:after {
    color: #fff;
}

.ab-sild .sild-cate .list li:after {
    font-weight: bold;
    right: 20px;
    top: 0;
    color: #999;
    position: absolute;
    content: "\e904";
    font-family: 'icomoon' !important;
}

.ab-sild .sild-cont {
    background: #fff;
}

.ab-sild .sild-cont .cont-list {
    padding: 20px;
}

.ab-sild .sild-cont .cont-list ul li {
    color: #333;
    padding: 5px 0;
    padding-left: 60px;
    font-size: 14px;
}

.ab-sild .sild-cont .cont-list ul li span {
    width: 60px;
    margin-left: -60px;
    display: block;
    height: 20px;
    line-height: 20px;
    float: left;
    color: #666;
}

.pro-center {
    background: #fff;
    padding-bottom: 25px;
}

.pro-center .pro-list {
    overflow: hidden;
    padding: 25px 18px 10px;
}

.pro-center .pro-list ul li {
    float: left;
    width: 200px;
    margin: 0 10px 20px;
    border: 1px solid #fff;
}

.pro-center .pro-list ul li:hover {
    border-color: #f3c04b;
}

.pro-center .pro-list ul li .img {
    overflow: hidden;
    width: 200px;
    height: 200px;
    line-height: 200px;
    text-align: center;
    font-size: 0;
    background: #eee;
}

.pro-center .pro-list ul li .img img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.pro-center .pro-list ul li .title {
    background: #f7f8fc;
    height: 40px;
    line-height: 40px;
    padding: 0 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.pro-center .pro-list ul li .title:hover {
    color: #f3c04b;
}

.page {
    font-size: 0;
    text-align: center;
}

.page .center {
    display: inline-block;
    overflow: hidden;
}

.page .center .page-span {
    float: left;
    font-size: 14px;
    color: #c3c3c3;
    line-height: 32px;
    margin-right: 30px;
}

.page .center .page-list {
    float: left;
    overflow: hidden;
}

.page .center .page-list ul li {
    float: left;
    width: auto;
    min-width: 30px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    margin: 0 4px;
    padding: 0;
    border: none;
    background: transparent;
}

.page .center .page-list ul li a {
    min-width: 20px;
    padding: 0 5px;
    border: 1px solid #eee;
    display: block;
    color: #333;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.page .center .page-list ul li:hover a {
    color: #f3c04b;
}

.page .center .page-list ul li.active a {
    background: #f3c04b;
    color: #fff;
}

.news-center {
    background: #fff;
    padding-bottom: 25px;
}

.news-center .new-list {
    padding: 45px 45px 0px;
}

.news-center .new-list ul li {
    margin-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.news-center .new-list ul li a {
    overflow: hidden;
    display: block;
    height: 90px;
    padding-bottom: 30px;
}

.news-center .new-list ul li a .img {
    float: left;
    width: 130px;
    height: 90px;
    background: #eee;
    line-height: 90px;
    font-size: 0;
    text-align: center;
}

.news-center .new-list ul li a .img img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.news-center .new-list ul li a .info {
    float: right;
    width: 690px;
}

.news-center .new-list ul li a .info h3 {
    font-size: 14px;
    font-weight: bold;
    line-height: 24px;
    color: #333;
}

.news-center .new-list ul li a .info em {
    display: block;
    font-size: 12px;
    color: #999;
    line-height: 16px;
    margin-bottom: 10px;
}

.news-center .new-list ul li a .info p {
    font-size: 14px;
    line-height: 22px;
    color: #999;
    max-height: 44px;
    overflow: hidden;
}

.news-center .new-list ul li a:hover h3 {
    color: #f3c04b;
}

.message-c {
    background: #fff;
    padding: 40px 50px;
    overflow: hidden;
}

.message-c .p {
    font-size: 16px;
    line-height: 30px;
    color: #666;
    margin-bottom: 35px;
}

.message-c .from input {
    display: block;
    height: 38px;
    line-height: 38px;
    padding: 0 5px;
    border: 1px solid #d2d2d2;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.message-c .from input[name=user],
.message-c .from input[name=phone] {
    width: 348px;
}

.message-c .from textarea {
    font-size: 14px;
    color: #333;
    line-height: 20px;
    display: block;
    width: 728px;
    height: 130px;
    border: 1px solid #d2d2d2;
    padding: 5px;
    margin-bottom: 10px;
}

.message-c .from .code {
    overflow: hidden;
}

.message-c .from .code input[name=code] {
    width: 258px;
    float: left;
}

.message-c .from .code a {
    display: block;
    float: left;
    width: 80px;
    height: 38px;
    padding: 1px 0;
    margin-left: 10px;
}

.message-c .from .code a img {
    width: 80px;
    height: 38px;
}

.message-c .from .btn {
    padding-top: 25px;
}

.message-c .from .btn a {
    display: block;
    width: 362px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
    background: #8fa4de;
}

.message-c .from .btn a:hover {
    background: #8397d0;
}

.contact-o {
    background: #fff;
    overflow: hidden;
    padding: 40px 0;
    text-align: center;
}

.contact-o iframe {
    width: 830px;
    height: 500px;
    margin: 0 auto;
}

.fixed-banner {
    overflow: hidden;
    text-align: center;
    height: 230px;
}

.fixed-banner h3 {
    margin: 78px 0 5px;
    font-size: 36px;
    color: #fff;
    line-height: 1;
}

.fixed-banner p {
    font-size: 18px;
    color: #949daa;
}

.common-inner {
    background: #f6f6f6;
    padding: 28px 0 48px;
    min-height: 500px;
}

.common-inner .inner-left {
    float: left;
    width: 260px;
}

.common-inner .inner-left .pro-sider {
    float: none;
}

.common-inner .inner-right {
    float: right;
    width: 870px;
    background: #fff;
    min-height: 800px;
    padding: 0 25px;
}

.common-inner .inner-right .rig-title {
    font-size: 18px;
    color: #0058b1;
    font-weight: bold;
    height: 54px;
    line-height: 60px;
    overflow: hidden;
    border-bottom: 1px solid #ededed;
}

.common-inner .inner-right .rig-title .crumbs {
    overflow: hidden;
    margin-top: 6px;
    float: right;
    padding-left: 25px;
    height: 48px;
    line-height: 54px;
    background: url(../images/home-icon.png?6f97f5710dd09df97d4080a98685f675) no-repeat left center;
    color: #b2b2b2;
    font-size: 13px;
    font-weight: normal;
    max-width: 400px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.common-inner .inner-right .rig-title .crumbs a {
    color: #b2b2b2;
}

.common-inner .inner-right .rig-title .crumbs a:hover {
    color: #237ed2;
    text-decoration: underline;
}

.common-inner .inner-right .search-result {
    height: 50px;
    line-height: 50px;
    background: #f5f5f5;
    margin: 12px 0 25px;
    padding: 0 17px;
    font-size: 14px;
    color: #595959;
}

.common-inner .inner-right .search-result span {
    color: #0058b1;
    font-weight: bold;
}

.common-inner .inner-right .search-result .search-record {
    float: right;
}

.common-inner .inner-right .search-list,
.common-inner .inner-right .de-product-list {
    overflow: hidden;
    min-height: 622px;
}

.common-inner .inner-right .search-list ul,
.common-inner .inner-right .de-product-list ul {
    margin: 0 -12px;
}

.common-inner .inner-right .search-list ul li,
.common-inner .inner-right .de-product-list ul li {
    border: 2px solid #fff;
    float: left;
    width: 270px;
    margin: 0 12px 25px;
}

.common-inner .inner-right .search-list ul li a,
.common-inner .inner-right .de-product-list ul li a {
    display: block;
}

.common-inner .inner-right .search-list ul li .img,
.common-inner .inner-right .de-product-list ul li .img {
    width: 268px;
    height: 200px;
    background: #e6e6e6;
    font-size: 0;
    line-height: 200px;
    text-align: center;
    border: 1px solid #e6e6e6;
    border-bottom: none;
    overflow: hidden;
}

.common-inner .inner-right .search-list ul li .img img,
.common-inner .inner-right .de-product-list ul li .img img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    transition: all 0.5s;
}

.common-inner .inner-right .search-list ul li .title,
.common-inner .inner-right .de-product-list ul li .title {
    font-size: 14px;
    padding: 0 18px;
    height: 80px;
    border: 1px solid #e6e6e6;
    border-top: none;
}

.common-inner .inner-right .search-list ul li .title h3,
.common-inner .inner-right .de-product-list ul li .title h3 {
    color: #595959;
    line-height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.common-inner .inner-right .search-list ul li .title em,
.common-inner .inner-right .de-product-list ul li .title em {
    font-weight: bold;
    display: block;
    color: #ff8111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.common-inner .inner-right .search-list ul li:hover,
.common-inner .inner-right .de-product-list ul li:hover {
    border-color: #268AE7;
}

.common-inner .inner-right .search-list ul li:hover .title,
.common-inner .inner-right .de-product-list ul li:hover .title {
    border-color: #fff;
}

.common-inner .inner-right .search-list ul li:hover .img img,
.common-inner .inner-right .de-product-list ul li:hover .img img {
    transform: scale(1.1);
}

.common-inner .inner-right .de-product-list {
    margin-top: 26px;
}

.common-inner .inner-right .de-about-content {
    padding: 30px 50px;
}

.common-inner .inner-right .de-about-content img {
    margin: 0 auto;
    max-width: 100%;
}

.common-inner .inner-right .de-about-content p {
    font-size: 14px;
    color: #595959;
    line-height: 24px;
}

.common-inner .inner-right .de-news-list {
    overflow: hidden;
    min-height: 644px;
    padding: 5px;
}

.common-inner .inner-right .de-news-list ul li {
    padding: 20px 15px;
    overflow: hidden;
    border-bottom: 1px solid #ededed;
}

.common-inner .inner-right .de-news-list ul li a {
    display: block;
}

.common-inner .inner-right .de-news-list ul li .img {
    float: left;
    width: 175px;
    height: 120px;
    text-align: center;
    line-height: 120px;
    font-size: 0;
}

.common-inner .inner-right .de-news-list ul li .img img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.common-inner .inner-right .de-news-list ul li .box {
    float: right;
    width: 640px;
    font-size: 14px;
}

.common-inner .inner-right .de-news-list ul li .box h4 {
    color: #323232;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
}

.common-inner .inner-right .de-news-list ul li .box p {
    color: #595959;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    margin: 15px 0 25px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.common-inner .inner-right .de-news-list ul li .box .time {
    color: #999999;
    line-height: 1.1;
}

.common-inner .inner-right .de-news-list ul li .box .time span {
    display: block;
    float: right;
    font-size: 14px;
    color: #0058b1;
}

.common-inner .inner-right .de-news-list ul li:hover {
    box-shadow: 0 0 4px 2px rgba(104, 104, 104, 0.1);
}

.common-inner .inner-right .de-news-list ul li:hover .time span {
    color: #237ed2;
}

.common-inner .inner-right .news-detail-content {
    padding: 0 18px;
}

.common-inner .inner-right .news-detail-content .news-detail-title {
    padding-bottom: 15px;
    border-bottom: 1px dashed #ededed;
    text-align: center;
    margin-bottom: 15px;
}

.common-inner .inner-right .news-detail-content .news-detail-title .h3 {
    font-size: 18px;
    color: #323232;
    line-height: 24px;
    font-weight: bold;
    margin: 25px 0 10px;
}

.common-inner .inner-right .news-detail-content .news-detail-title .b {
    font-size: 13px;
    color: #999999;
    line-height: 20px;
}

.common-inner .inner-right .news-detail-content .news-detail {
    padding: 0 12px 30px;
}

.common-inner .inner-right .news-detail-content .news-detail p {
    font-size: 14px;
    color: #595959;
    line-height: 24px;
}

.common-inner .inner-right .news-detail-content .news-detail img {
    max-width: 100%;
    margin: 0 auto;
}

.newsPage {
    font-size: 14px;
    color: #666;
    line-height: 30px;
    margin: 2% 0 0 0;
    padding-top: 3%;
}

.newsPage .page-a {
    line-height: 50px;
    background: #f6f6f6;
    padding: 0 20px;
    margin-bottom: 10px;
}

.newsPage a {
    color: #5e5e5e;
}

.newsPage a:hover {
    color: #333;
    font-weight: 700;
}

.common-inner .inner-right .de-honor-list {
    overflow: hidden;
    margin: 0 auto;
    margin-top: 24px;
    padding-top: 6px;
    min-height: 556px;
}

.common-inner .inner-right .de-honor-list ul {
    margin: 0 -5px;
}

.common-inner .inner-right .de-honor-list ul li {
    float: left;
    margin: 0 10px 30px;
    overflow: hidden;
    width: 270px;
    background: #f6f6f6;
}

.common-inner .inner-right .de-honor-list ul li a {
    display: block;
}

.common-inner .inner-right .de-honor-list ul li .img {
    width: 270px;
    height: 200px;
    text-align: center;
    line-height: 200px;
    font-size: 0;
    overflow: hidden;
}

.common-inner .inner-right .de-honor-list ul li .img img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    transition: all 0.5s;
}

.common-inner .inner-right .de-honor-list ul li .title {
    text-align: center;
    height: 48px;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 48px;
    font-size: 14px;
    color: #595959;
}

.common-inner .inner-right .de-honor-list ul li:hover {
    box-shadow: 0 0 4px 2px rgba(104, 104, 104, 0.1);
}

.common-inner .inner-right .de-honor-list ul li:hover .img img {
    transform: scale(1.1);
}

.common-inner .inner-right .de-job-list {
    overflow: hidden;
    padding-bottom: 19px;
    min-height: 645px;
    padding: 5px 5px;
}

.common-inner .inner-right .de-job-list ul li {
    overflow: hidden;
    padding: 0 55px 0 25px;
    height: 128px;
    border-bottom: 1px solid #ededed;
}

.common-inner .inner-right .de-job-list ul li .job-title {
    float: left;
    width: 260px;
    margin-right: 10px;
    padding-top: 38px;
}

.common-inner .inner-right .de-job-list ul li .job-title h3 {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 15px;
}

.common-inner .inner-right .de-job-list ul li .job-title p {
    font-size: 16px;
    color: #237ed2;
    line-height: 20px;
    font-weight: bold;
}

.common-inner .inner-right .de-job-list ul li .job-title p em {
    font-weight: normal;
    font-size: 12px;
}

.common-inner .inner-right .de-job-list ul li .job-info {
    float: left;
    width: 200px;
    padding-top: 38px;
}

.common-inner .inner-right .de-job-list ul li .job-info p {
    font-size: 13px;
    color: #b2b2b2;
    line-height: 20px;
    margin-bottom: 15px;
}

.common-inner .inner-right .de-job-list ul li .job-info p span {
    color: #737373;
}

.common-inner .inner-right .de-job-list ul li .job-btn {
    display: none;
    float: right;
    width: 80px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background: #237ed2;
    margin-top: 50px;
}

.common-inner .inner-right .de-job-list ul li:hover {
    box-shadow: 0 0 4px 2px rgba(104, 104, 104, 0.1);
}

.common-inner .inner-right .de-job-list ul li:hover .job-btn {
    display: block;
}

.common-inner .inner-right .jobs-info {
    padding: 40px 10px 30px;
    margin-bottom: 28px;
    border-bottom: 1px dashed #ededed;
}

.common-inner .inner-right .jobs-info .h3 {
    overflow: hidden;
    margin-bottom: 15px;
}

.common-inner .inner-right .jobs-info .h3 .job-name {
    float: left;
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    width: 450px;
}

.common-inner .inner-right .jobs-info .h3 .job-price {
    float: right;
    font-weight: bold;
    font-size: 24px;
    color: #237ed2;
    line-height: 1.1;
    max-width: 360px;
}

.common-inner .inner-right .jobs-info .h3 .job-price em {
    font-weight: normal;
    font-size: 16px;
}

.common-inner .inner-right .jobs-info .p {
    font-size: 13px;
    color: #999999;
    line-height: 20px;
    margin-bottom: 10px;
}

.common-inner .inner-right .jobs-info .p span {
    color: #595959;
}

.common-inner .inner-right .jobs-info .btn {
    padding-top: 10px;
    overflow: hidden;
}

.common-inner .inner-right .jobs-info .btn a {
    display: block;
    width: 230px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    color: #fff;
    background: #237ed2;
    font-size: 14px;
}

.common-inner .inner-right .jobs-info .btn a:hover {
    background: #0058b1;
}

.common-inner .inner-right .jobs-info-content {
    padding: 0 20px 30px;
    overflow: hidden;
}

.common-inner .inner-right .jobs-info-content h3 {
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 10px;
}

.common-inner .inner-right .jobs-info-content p {
    font-size: 14px;
    color: #333;
    line-height: 24px;
}

.common-inner .inner-right .newsPage {
    padding: 0 20px;
    font-size: 16px;
    color: #323232;
    line-height: 30px;
    margin: 15px 0 30px;
}

.common-inner .inner-right .newsPage a {
    color: #323232;
}

.common-inner .inner-right .newsPage a:hover {
    color: #237ed2;
}

.common-inner .inner-right .apply-job {
    overflow: hidden;
    margin-top: 20px;
}

.common-inner .inner-right .apply-job .job-tr {
    overflow: hidden;
}

.common-inner .inner-right .apply-job .job-tr .tr-over {
    overflow: hidden;
}

.common-inner .inner-right .apply-job .job-tr .error {
    padding-left: 75px;
    height: 18px;
    line-height: 18px;
    font-size: 12px;
    color: #f00;
}

.common-inner .inner-right .apply-job .job-tr .tr-title {
    float: left;
    width: 50px;
    min-height: 20px;
    text-align: right;
    font-size: 14px;
    color: #808080;
    margin-right: 25px;
    line-height: 40px;
}

.common-inner .inner-right .apply-job .job-tr .tr-cont {
    float: left;
    width: 640px;
}

.common-inner .inner-right .apply-job .job-tr .tr-cont h3 {
    font-size: 14px;
    color: #4c4c4c;
    line-height: 40px;
    font-weight: bold;
}

.common-inner .inner-right .apply-job .job-tr .tr-cont input[type=text] {
    line-height: 38px;
    font-size: 14px;
    color: #333;
    display: block;
    padding: 0 10px;
    width: 618px;
    height: 38px;
    border: 1px solid #e6e6e6;
}

.common-inner .inner-right .apply-job .job-tr .tr-cont input[name='captcha'] {
    font-size: 14px;
    line-height: 38px;
    color: #333;
    width: 190px;
    float: left;
    margin-right: 30px;
}

.common-inner .inner-right .apply-job .job-tr .tr-cont .verify {
    cursor: pointer;
    float: left;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 0;
}

.common-inner .inner-right .apply-job .job-tr .tr-cont .verify img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.common-inner .inner-right .apply-job .job-tr .tr-cont textarea {
    font-size: 14px;
    color: #333;
    display: block;
    height: 170px;
    line-height: 20px;
    padding: 5px 10px;
    width: 618px;
    border: 1px solid #e6e6e6;
}

.common-inner .inner-right .apply-job .job-tr .tr-cont.radio-cont {
    line-height: 40px;
}

.common-inner .inner-right .apply-job .job-tr .tr-cont.radio-cont input[type=radio] {
    margin-right: 10px;
}

.common-inner .inner-right .apply-job .job-tr .tr-cont.radio-cont label {
    margin-right: 30px;
    color: #4c4c4c;
    line-height: 40px;
    font-weight: bold;
}

.common-inner .inner-right .apply-job .job-tr .tr-cont a.submit {
    display: block;
    width: 190px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #237ed2;
    color: #fff;
    font-size: 15px;
}

.common-inner .inner-right .apply-job .job-tr .tr-cont a.submit:hover {
    background: #0058b1;
}

.common-inner .inner-right .de-message {
    overflow: hidden;
    padding: 0 5px;
}

.common-inner .inner-right .de-message .tips {
    font-size: 13px;
    line-height: 55px;
    color: #737373;
}

.common-inner .inner-right .de-message .mes-form {
    overflow: hidden;
}

.common-inner .inner-right .de-message .mes-form .form-tr {
    overflow: hidden;
}

.common-inner .inner-right .de-message .mes-form .form-tr input {
    display: block;
    width: 658px;
    padding: 0 10px;
    height: 38px;
    line-height: 38px;
    border: 1px solid #e6e6e6;
}

.common-inner .inner-right .de-message .mes-form .form-tr textarea {
    display: block;
    width: 658px;
    padding: 5px 10px;
    height: 168px;
    border: 1px solid #e6e6e6;
}

.common-inner .inner-right .de-message .mes-form .form-tr .code {
    overflow: hidden;
}

.common-inner .inner-right .de-message .mes-form .form-tr .code input {
    width: 188px;
    float: left;
}

.common-inner .inner-right .de-message .mes-form .form-tr .code .verify {
    cursor: pointer;
    float: left;
    margin-left: 25px;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 0;
}

.common-inner .inner-right .de-message .mes-form .form-tr .code .verify img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.common-inner .inner-right .de-message .mes-form .form-tr .submit {
    margin-top: 15px;
    display: block;
    width: 190px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #237ed2;
    color: #fff;
    font-size: 15px;
}

.common-inner .inner-right .de-message .mes-form .form-tr .submit:hover {
    background: #0058b1;
}

.common-inner .inner-right .de-message .mes-form .form-tr .error {
    height: 18px;
    line-height: 18px;
    font-size: 12px;
    color: #f00;
    padding: 0 5px;
}

.common-inner .inner-right .de-contact {
    overflow: hidden;
}

.common-inner .inner-right .de-contact .contact-list {
    overflow: hidden;
    margin: 25px 0 35px;
}

.common-inner .inner-right .de-contact .contact-list ul li {
    min-height: 28px;
    padding-left: 50px;
    float: left;
    width: 365px;
    font-size: 14px;
    color: #595959;
    line-height: 20px;
    padding-top: 8px;
    margin-bottom: 14px;
    word-wrap: break-word;
}

.common-inner .inner-right .de-contact .contact-list ul li span {
    display: block;
    float: left;
    color: #999;
}

.common-inner .inner-right .de-contact .contact-list ul li.icon-01 {
    background: url(../images/contact-icon-01.png?fc9d52a2084cee2cf46d6abc5fe29bf1) no-repeat left top;
}

.common-inner .inner-right .de-contact .contact-list ul li.icon-02 {
    background: url(../images/contact-icon-02.png?a02a763b1fbe7ac7f36947a91560b8f7) no-repeat left top;
}

.common-inner .inner-right .de-contact .contact-list ul li.icon-03 {
    background: url(../images/contact-icon-03.png?8342049883326c834d2e5a7897ca0055) no-repeat left top;
}

.common-inner .inner-right .de-contact .contact-list ul li.icon-04 {
    background: url(../images/contact-icon-04.png?83daba9929cb33ce59a36398b1ea0fd3) no-repeat left top;
}

.common-inner .inner-right .de-contact .contact-list ul li.icon-05 {
    background: url(../images/contact-icon-05.png?07f72f8b3e3dff5c563a70294de33345) no-repeat left top;
}

.common-inner .inner-right .de-contact .contact-list ul li.icon-06 {
    background: url(../images/contact-icon-06.png?b4797be198d332d9e12d285a1dceea76) no-repeat left top;
}

.common-inner .inner-right .de-contact .contact-map {
    overflow: hidden;
}

.common-inner .inner-right .de-contact .contact-map #dituContent {
    width: 785px;
    height: 475px;
    margin: 0 auto 30px;
}

.inner-contact {
    width: 260px;
    margin-top: 18px;
}

.inner-contact .title {
    height: 80px;
    background: url(../images/i-pro-title.jpg?1a90ab70335b09468e56a9e587cff091) no-repeat center;
    text-align: center;
    line-height: 1;
    overflow: hidden;
}

.inner-contact .title h3 {
    margin-top: 20px;
    font-size: 22px;
    color: #fff;
    margin-bottom: 5px;
}

.inner-contact .title em {
    font-size: 13px;
    color: #728dbc;
}

.inner-contact .contact-box {
    min-height: 180px;
    border: 1px solid #ededed;
    border-top: none;
    background: #fff;
    padding: 20px 20px 10px;
    padding-right: 5px;
}

.inner-contact .contact-box .contact-item {
    overflow: hidden;
    padding-left: 60px;
    font-size: 14px;
    color: #595959;
    line-height: 20px;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.inner-contact .contact-box .contact-item .act {
    float: left;
    width: 60px;
    margin-left: -60px;
    color: #808080;
}

.prodect-Info {
    overflow: hidden;
    background: #f6f6f6;
    min-height: 500px;
    padding-bottom: 48px;
}

.prodect-Info .info-crumbs {
    overflow: hidden;
    height: 54px;
    line-height: 58px;
    font-size: 14px;
    color: #999;
    padding-left: 28px;
    background: url(../images/home-icon.png?6f97f5710dd09df97d4080a98685f675) no-repeat 5px center;
}

.prodect-Info .info-crumbs a {
    color: #595959;
}

.prodect-Info .info-crumbs a:hover {
    color: #237ed2;
    text-decoration: underline;
}

.prodect-Info .info-main {
    overflow: hidden;
    background: #fff;
    padding: 25px 25px 20px;
    margin-bottom: 25px;
}

.prodect-Info .info-main .info-preview {
    float: left;
    width: 350px;
}

.prodect-Info .info-main .info-main-rig {
    float: right;
    width: 775px;
    overflow: hidden;
}

.prodect-Info .info-main .info-main-rig .title {
    font-size: 20px;
    line-height: 30px;
    color: #333;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 18px 0;
}

.prodect-Info .info-main .info-main-rig .price {
    height: 65px;
    background: #f6f6f6;
    line-height: 65px;
    padding: 0 20px;
    color: #ff8111;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
}

.prodect-Info .info-main .info-main-rig .price span {
    font-size: 14px;
    color: #808080;
    font-weight: normal;
    margin-right: 25px;
}

.prodect-Info .info-main .info-main-rig .de-list {
    overflow: hidden;
    padding: 0 20px;
    min-height: 150px;
    max-height: 223px;
}

.prodect-Info .info-main .info-main-rig .de-list .list-item {
    overflow: hidden;
    padding-left: 60px;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    word-wrap: break-word;
    margin-bottom: 10px;
}

.prodect-Info .info-main .info-main-rig .de-list .list-item .item-title {
    width: 60px;
    float: left;
    margin-left: -60px;
    color: #808080;
}

.prodect-Info .info-main .info-main-rig .order-btn {
    overflow: hidden;
    padding: 0 10px;
}

.prodect-Info .info-main .info-main-rig .order-btn .submit {
    display: block;
    width: 155px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: #237ed2;
    color: #fff;
    font-size: 14px;
}

.prodect-Info .info-main .info-main-rig .order-btn .submit:hover {
    background: #0058b1;
}

.prodect-Info .info-center {
    overflow: hidden;
}

.prodect-Info .info-center .infoCenter-left {
    float: left;
    width: 260px;
}

.prodect-Info .info-center .infoCenter-left .pro-sider {
    float: none;
}

.prodect-Info .info-center .infoCenter-right {
    float: right;
    width: 870px;
    background: #fff;
    padding: 0 25px;
    min-height: 800px;
}

.prodect-Info .info-center .infoCenter-right .center-title {
    font-weight: bold;
    font-size: 18px;
    color: #0058b1;
    line-height: 60px;
    margin-bottom: 20px;
    height: 59px;
    border-bottom: 1px solid #ededed;
}

.prodect-Info .info-center .infoCenter-right .center-content {
    overflow: hidden;
    padding-bottom: 30px;
}

.prodect-Info .info-center .infoCenter-right .center-content img {
    max-width: 100%;
}

.prodect-Info .info-center .infoCenter-right .center-content table {
    max-width: 100%;
}

.prodect-Info .info-center .infoCenter-right .center-content table.contentTab {
    font-family: '微软雅黑';
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-bottom: 20px;
}

.prodect-Info .info-center .infoCenter-right .center-content table.contentTab tr th {
    width: 50%;
    text-align: center;
    font-size: 15px;
    color: #262626;
    background: #f6f6f6;
    border: 1px solid #e6e6e6;
    line-height: 48px;
    font-weight: bold;
}

.prodect-Info .info-center .infoCenter-right .center-content table.contentTab tr td {
    line-height: 45px;
    color: #595959;
    font-size: 15px;
    text-align: center;
    border: 1px solid #e6e6e6;
}

.prodect-Info .info-center .infoCenter-right .newsPage {
    font-size: 16px;
    color: #323232;
    line-height: 30px;
    margin: 15px 0 30px;
}

.prodect-Info .info-center .infoCenter-right .newsPage a {
    color: #323232;
}

.prodect-Info .info-center .infoCenter-right .newsPage a:hover {
    color: #237ed2;
}

#MagnifierWrap2 {
    position: relative;
    width: 350px;
}

.MagnifierMain {
    position: relative;
    width: 350px;
    height: 350px;
    font-size: 0;
    text-align: center;
    line-height: 350px;
    border: 1px solid #e6e6e6;
}

.MagnifierMain.video {
    cursor: pointer;
}

.MagnifierMain.video::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-left: -35px;
    margin-top: -35px;
    z-index: 1;
    background: url(../images/media-icon.png?72326e2080d1201997e0a2783904bb54) no-repeat center;
    background-size: 100% auto;
}

.play-video {
    width: 350px;
    height: 350px;
    border: 1px solid #e6e6e6;
}

.play-video iframe {
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
}

.MagnifierMain img {
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.MagnifierDrag {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ccc;
    opacity: 0.4;
    filter: alpha(opacity=40);
    cursor: move;
}

.MagnifierPop {
    position: absolute;
    top: 0;
    overflow: hidden;
    background: #fff;
}

.MagnifierImg {
    position: absolute;
    top: 0;
    left: 0;
}

.spec-items {
    position: relative;
    width: 292px;
    height: 69px;
    overflow: hidden;
    padding-top: 20px;
    margin: 0 auto;
}

.spec-items ul {
    width: 500%;
    position: absolute;
    top: 20px;
    left: 0;
}

.spec-items ul * {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.spec-items li {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    float: left;
    overflow: hidden;
    margin-right: 5px;
    border: 2px solid #fff;
    font-size: 0;
    cursor: pointer;
}

.spec-items li[data-type=video] {
    position: relative;
}

.spec-items li[data-type=video]::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
    background: url(../images/video-icon.png?a1ecbe65fc3cecd7836a2963214f80dc) no-repeat center;
    background-size: 100% auto;
}

.spec-items li.on {
    border: 2px solid #268ae7;
}

.spec-items li img {
    display: inline-block;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
}

span.spe_leftBtn,
span.spe_rightBtn {
    position: absolute;
    bottom: 0px;
    display: block;
    width: 20px;
    height: 69px;
    line-height: 69px;
    text-align: center;
    font-size: 21px;
    font-weight: bold;
    color: #ddd;
    cursor: default;
    background-color: #f9f9f9;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

span.on {
    background-color: #f9f9f9;
    color: #0058b1;
    cursor: pointer;
}

span.spe_leftBtn {
    left: 0;
    background: url(../images/p-detail-left.png?f21ea8aa3f9a98e06cbea79d5a580011) no-repeat center;
}

span.spe_leftBtn.on {
    background: url(../images/p-detail-left-active.png?e652dadd2ad817cdc1e736fb41fcc550) no-repeat center;
}

span.spe_rightBtn {
    right: 0;
    background: url(../images/p-detail-right.png?1f8e1dbb1866f23e1da0fa766402edfd) no-repeat center;
}

span.spe_rightBtn.on {
    background: url(../images/p-detail-right-active.png?5a2b8593daec759cbf1295cfb0027ed7) no-repeat center;
}

.clearfix:after {
    display: block;
    content: '';
    clear: both;
}

button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: none;
    padding: 0;
}

input[type="button"], input[type="submit"], input[type="reset"], input[type="text"] {
    -webkit-appearance: none;
}

textarea {
    -webkit-appearance: none;
}

* {
    box-sizing: border-box;
}

a {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

@font-face {
    font-family: 'lianmeng';
    src: url("/static/fonts/lianmeng.ttf");
}

.warpper_min {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.padding {
    padding: 5% 0;
}

.padding-top {
    padding-top: 5%;
}

.padding-bottom {
    padding-bottom: 5%;
}

.transi {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.img_jz {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.img_cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.img_container {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.textover {
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.over-line-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.over-line-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.over-line-12 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}


/*banner*/
.bannerbox {
    position: relative;
}

.bannerbox .swiper-container {
    width: 100%;
    height: 100%;
}

.bannerbox .swiper-slide img {
    width: 100%;
}

.fix_head {
    position: fixed;
    width: 100%;
    top: 40px;
    left: 0;
    z-index: 1000;
    background: none;
}

.fix_head.scroll {
    top: 0;
}

.fix_head_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    background: #fff;
    overflow: hidden;
    border-radius: 12px;
}

.fix_head.scroll .fix_head_inner {
    box-shadow: 0px 2px 7px #0000006b;
}

.fix_head_inner h1 {
    width: 28%;
    height: 100%;
}

.fix_head_inner h1 a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.fix_head_inner h1 a .logo {
    position: relative;
    height: 100%;
    width: 90%;
}

.fix_head_inner h1 a .logo img {
    max-width: 100%;
}

.fix_head_inner h1 a .logo .img2 {
    opacity: 0;
}

.fix_head_inner h1 a .logo .img3 {
    opacity: 0;
}

.fix_head_inner .menubox {
    width: 54%;
    background: #c32629;
}

.fix_head_inner .menubox a {
    display: block;
    position: relative;
    font-size: 20px;
    color: #fff;
    float: left;
    width: 20%;
    text-align: center;
    line-height: 110px;

}

.fix_head_inner .menubox a:after {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #fff;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -ms-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
    left: 0;
    bottom: 0;
}

.fix_head_inner .menubox a:hover, .fix_head_inner .menubox a.active {
    background: #234995;
}

.fix_head_inner .menubox a:hover:after, .fix_head_inner .menubox a.active:after {
    width: 100%;
}

.fix_head_inner .searchbox {
    width: 18%;
    background: #c32629;
    height: 100%;
    position: relative;
    padding: 0 1.7%;
    display: flex;
    align-items: center;
}

.fix_head_inner .searchbox:before {
    content: "";
    position: absolute;
    background: #fff;
    width: 2px;
    height: 40px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.fix_head_inner .searchbox form {
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.fix_head_inner .searchbox form input[type=text] {
    float: left;
    width: 80%;
    background: #fff;
    outline: none;
    font-size: 16px;
    color: #333;
    line-height: 45px;
    text-indent: 12px;
}

.fix_head_inner .searchbox form input::-moz-placeholder {
    color: #999;
    font-size: 16px;
}

.fix_head_inner .searchbox form input::placeholder {
    color: #999;
    font-size: 16px;
}

.fix_head_inner .searchbox form input[type=submit] {
    float: left;
    width: 20%;
    background: #fff url(../images/search.png?a1c2157c24af4435b6a818472c32028e) no-repeat center;
    outline: none;
    height: 45px;
}

.banner-jiao {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.banner-jiao .warpper {
    position: relative;
    height: 145px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-jiao .jiaodian {
    position: relative;
    width: 100%;
}

.banner-jiao .swiper-button-black {
    width: 80px;
    height: 60px;
    background: #ffffff;
}

.banner-jiao .swiper-button-black:after {
    font-size: 27px;
    font-weight: bold;
}

.banner-jiao .swiper-button-prev {
    left: initial;
    right: 100px;
}

.banner-jiao .swiper-button-next {
    right: 0;
}

.banner-jiao .swiper-button-black:hover {
    background: #af2225;
}

.banner-jiao .swiper-button-black:hover:after {
    color: #fff;
}

@-webkit-keyframes arrowMove {
    to {
        -webkit-transform: translateY(1.25rem);
        transform: translateY(1.25rem);
        opacity: 0;
    }
}

@keyframes arrowMove {
    to {
        -webkit-transform: translateY(1.25rem);
        transform: translateY(1.25rem);
        opacity: 0;
    }
}

.alltitle {
    text-align: center;
    margin-bottom: 5%;
}

.alltitle .en {
    font-family: Arial;
    font-size: 60px;
    color: #e6e6e6;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 52px;
}

.alltitle .fir {
    font-size: 40px;
    color: #333333;
    font-weight: bold;
    margin-top: -35px;
}

.alltitle .fir span {
    color: #c32629;
}

.alltitle .sec {
    font-size: 16px;
    color: #333333;
    margin-top: 25px;
}

.protype {
    margin-bottom: 2%;
}

.protype .item {
    border: 1px solid #e9ecf4;
}

.protype .item .list {
    float: left;
    width: 16.66666%;
    position: relative;
    height: 180px;
    text-align: center;
    border-left: 1px solid #e9ecf4;
    overflow: hidden;
}

.protype .item .list:first-child {
    border-left: none;
}

.protype .item .list .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
}

.protype .item .list .text {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 0 3%;
}

.protype .item .list .text .inner {
    width: 100%;
    margin-top: 20%;
}

.protype .item .list .text .icon {
    width: 100%;
    height: 60px;
    position: relative;
}

.protype .item .list .text .title {
    font-size: 16px;
    color: #666666;
    margin-top: 14%;
}

.protype .item .list:hover .bg {
    opacity: 1;
}

.protype .item .list:hover .text .title {
    color: #fff;
}

.protype .item .list:hover .text .icon img {
    filter: brightness(10000%) grayscale(1000%);
}

.pro-item {
    padding: 0 2%;
}

.pro-item .list {
    float: left;
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2.5%;
}

.pro-item .list:nth-child(4n) {
    margin-right: 0;
}

.allpro .imgbox {
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #dcdcdc;
}

.allpro .picbox {
    width: 100%;
    height: 100%;
}

.allpro .picbox .pic {
    height: 100%;
    overflow: hidden;
    position: relative;
    float: left;
}

.allpro .picbox .title {
    width: 110px;
    height: 100%;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4% 0;
    overflow: hidden;
}

.allpro .picbox .title .s1 {
    font-size: 22px;
    color: #333333;
    writing-mode: vertical-rl;
    writing-mode: tb-rl;
    margin: 0 auto;
    height: 230px;
}

.allpro .picbox .title .s2 {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #c42a2d;
    position: relative;
    margin: 0 auto;
    border-radius: 100%;
}

.allpro:hover .picbox .title {
    width: 0;
}

.allpro:hover .picbox .pic {
    width: 100%;
}

.allpro .imgbox .meng {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(195, 38, 41, 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    opacity: 0;
}

.allpro:hover .imgbox .meng {
    opacity: 1;
}

.allpro .imgbox .meng-inner {
    width: 100%;
    text-align: center;
}

.allpro .imgbox .meng span {
    display: block;
    font-size: 22px;
    color: #fff;
}

.allpro .imgbox .meng .more {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 100%;
    position: relative;
    margin: 10% auto 0 auto;
}

.allpro .imgbox .meng .xian {
    position: absolute;
    width: 90%;
    height: 90%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.allpro .imgbox .meng .xiansec {
    position: absolute;
    width: 90%;
    height: 83%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.allpro .imgbox .meng i {
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.allpro .imgbox .meng .i1, .allpro .imgbox .meng .i2 {
    width: 0;
    height: 2px;
}

.allpro .imgbox .meng .i1 {
    top: 0;
    left: 0;
}

.allpro .imgbox .meng .i2 {
    bottom: 0;
    right: 0;
}

.allpro .imgbox .meng .i3, .allpro .imgbox .meng .i4 {
    width: 2px;
    height: 0;
}

.allpro .imgbox .meng .i3 {
    left: 0;
    bottom: 0;
}

.allpro .imgbox .meng .i4 {
    right: 0;
    top: 0;
}

.allpro:hover .imgbox .meng .i1, .allpro:hover .imgbox .meng .i2 {
    width: 100%;
}

.allpro:hover .imgbox .meng .i3, .allpro:hover .imgbox .meng .i4 {
    height: 100%;
}

.allmore {
    width: 189px;
    height: 50px;
    background: transparent;
    border-radius: 45px;
    overflow: hidden;
}

.allmore a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
}

.allmore a span {
    font-size: 20px;
    color: #333;
    display: inline-block;
    margin-right: 17px;
    position: relative;
    z-index: 2;
    margin-left: 20px;
}

.allmore a .bg {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #f3d4d4;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 24px;
    z-index: 1;
}

.allmore:hover {
    background: #c32629;
}

.allmore:hover a span {
    color: #fff;
    margin-left: 9px;
}

.allmore:hover a img {
    filter: brightness(1000%) grayscale(1000%);
}

.allmore:hover a .bg {
    background: #cf5154;
    width: 30px;
    height: 30px;
}

.in_pro .allmore {
    margin: 1% auto 0 auto;
}


.in_youshi .item {
    border: 1px solid #dcdcdc;
}

.in_youshi .item .list {
    float: left;
    width: 33.33%;
    height: 378px;
    position: relative;
    padding: 0 3%;
    border-left: 1px solid #dcdcdc;
    overflow: hidden;
    background: #fff;
}

.in_youshi .item .list:first-child {
    border-left: none;
}

.in_youshi .item .list .text {
    height: 100%;
}

.in_youshi .item .list .text .inner {
    margin-top: 16%;
}

.in_youshi .item .list .title {
    font-weight: bold;
    font-size: 30px;
    color: #333333;
}

.in_youshi .item .list .con {
    font-size: 16px;
    color: #999999;
    margin: 10% 0 33% 0;
}

.in_youshi .item .list .shu {
    font-size: 30px;
    color: #c32629;
    font-weight: bold;
}

.in_youshi .item .list .shu span {
    opacity: 0;
}

.in_youshi .item .list .img1 {
    position: absolute;
    height: 100%;
    width: 55%;
    top: 0;
    right: 0;
}

.in_youshi .item .list .img2 {
    opacity: 0;
    position: absolute;
    height: 100%;
    width: 55%;
    top: 0;
    right: 0;
}

.in_youshi .item .list:hover {
    background: #c32629;
}

.in_youshi .item .list:hover .img1 {
    opacity: 0;
}

.in_youshi .item .list:hover .img2 {
    opacity: 1;
}

.in_youshi .item .list:hover .text .title {
    color: #fff;
}

.in_youshi .item .list:hover .text .con {
    color: #fff;
}

.in_youshi .item .list:hover .text .shu {
    color: #fff;
}

.in_youshi .item .list:hover .text .shu span {
    color: #fff;
    opacity: 1;
}

.in_adv {
    position: relative;
    height: 398px;
    width: 100%;
    background: url(../images/advbg.jpg?d0acab5acd3ecf6dacb0150b5a21cd16) no-repeat center top;
}

.in_adv .left {
    width: 560px;
    text-align: center;
    color: #fff;
    float: left;
    margin-top: 4.5%;
}

.in_adv .left .fir {
    font-weight: bold;
    font-size: 40px;
}

.in_adv .left .sec {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 7% 0 13% 0;
}

.in_adv .left .sec span {
    color: #fff;
    font-size: 22px;
    letter-spacing: 2px;
}

.in_adv .left .sec i {
    display: inline-block;
    margin: 0 15px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 100%;
}

.in_adv .left .thr {
    width: 85%;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 40px;
    overflow: hidden;
}

.in_adv .left .thr .a1 {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-left: 6%;
}

.in_adv .left .thr .a1 span {
    display: inline-block;
    margin-left: 16px;
    font-weight: bold;
    font-size: 30px;
    color: #c32629;
}

.in_adv .left .thr .a2 {
    display: inline-block;
    width: 40%;
    text-align: center;
    line-height: 60px;
    border-radius: 40px;
    color: #fff;
    font-size: 24px;
    background: #c32629;
}

.in_adv .left .thr .a2:hover {
    background: #234995;
}

.in_adv .right {
    position: absolute;
    top: 0;
    right: 4%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
}

.caselunbo {
    width: 100%;
    position: relative;
}

.caselunbo .swiper-container {
    width: 100%;
}

.caselunbo .imgbox {
    width: 100%;
    height: 555px;
    overflow: hidden;
    position: relative;
}

.caselunbo .swiper-slide {
    width: 49% !important;
}

.caselunbo .title {
    margin-top: 5%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    padding-top: 2%;
    border-top: 2px solid #dcdcdc;
    position: relative;
}

.caselunbo .title:after {
    content: "";
    position: absolute;
    width: 25%;
    height: 2px;
    background: #c32629;
    left: 0;
    top: -2px;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -ms-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
}

.caselunbo .swiper-slide:hover .title:after {
    width: 100%;
}

.caselunbo .title .t {
    width: 50%;
    font-size: 30px;
    color: #333333;
    font-weight: bold;
}

.caselunbo .swiper-slide-active .title {
    opacity: 1;
}


.caselunbo .imgbox:hover a > img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.caselunbo .imgbox a > img {
    filter: brightness(35%);
}

.caselunbo .swiper-slide-active .imgbox a > img {
    filter: brightness(100%);
}

.caselunbo .but {
    width: 84%;
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 42%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.but_fang {
    width: 68px;
    height: 68px;
    background: #c32629;
}

.but_fang:hover {
    background: #234995;
}

.but_fang:after {
    font-size: 23px;
    font-weight: bold;
}

.in_company {
    width: 100%;
}

.in_company .imgbox {
    float: right;
    width: 50%;
    height: 600px;
}

.in_company .imgbox img {
    -o-object-position: bottom;
    object-position: bottom;
}

.in_company .text {
    float: left;
    width: 44%;
}

.in_company .text .fir {
    font-weight: bold;
    font-size: 46px;
    color: #333333;
}

.in_company .text .fir span {
    color: #c32629;
}

.in_company .text .sec {
    font-size: 22px;
    color: #333333;
    border-bottom: 1px solid #bdc8df;
    display: inline-block;
    margin: 2% 0 6% 0;
    font-weight: bold;
}

.in_company .text .sec span {
    font-weight: 500;
    font-size: 14px;
    color: #999999;
    display: inline-block;
    margin-left: 12px;
}

.in_company .text .thr {
    line-height: 30px;
    font-size: 16px;
    color: #666666;
    text-align: justify;
}

.in_company .allmore {
    width: 147px;
    margin-top: 4%;
}

.in_company .allmore a {
    justify-content: space-between;
}

.in_company .allmore a .bg {
    left: 0;
}

.in_company .allmore:hover {
    width: 190px;
    padding: 0 20px;
}

.in_news {
    background: #f5f5f5;
}

.in_news_lunbo .swiper-slide .time {
    margin-bottom: 4%;
}

.in_news_lunbo .swiper-slide .time .t1 {
    font-weight: bold;
    color: #c32629;
    font-size: 40px;
}

.in_news_lunbo .swiper-slide .time .t2 {
    color: #666666;
    font-size: 20px;
}

.in_news_lunbo .swiper-slide .title {
    font-weight: bold;
    font-size: 30px;
    color: #333333;
}

.in_news_lunbo .swiper-slide .con {
    line-height: 27px;
    font-size: 16px;
    color: #666666;
    margin: 4% 0;
}

.in_news_lunbo .swiper-slide .imgbox {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.in_news_lunbo .swiper-slide .allmore {
    width: 147px;
    margin-top: 8%;
}

.in_news_lunbo .swiper-slide .allmore a {
    justify-content: space-between;
}

.in_news_lunbo .swiper-slide .allmore a .bg {
    left: 0;
}

.in_news_lunbo .swiper-slide .allmore:hover {
    width: 190px;
    padding: 0 20px;
}

.in_news_lunbo .swiper-slide .text1 {
    position: relative;
    z-index: 1;
}

.in_news_lunbo .swiper-slide .text2 {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
}

.in_news_lunbo .swiper-slide .text2 a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.in_news_lunbo .swiper-slide .text2 a .pic {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;

}

.in_news_lunbo .swiper-slide .text2 a .wenzi {
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, #c32629d6, #c3262978);
    width: 100%;
    height: 100%;
    padding: 12% 9%;
}

.in_news_lunbo .swiper-slide .text2 a .wenzi .time .t1 {
    color: #fff;
}

.in_news_lunbo .swiper-slide .text2 a .wenzi .time .t2 {
    color: #fff;
}

.in_news_lunbo .swiper-slide .text2 a .wenzi .title {
    color: #fff;
}

.in_news_lunbo .swiper-slide .text2 a .wenzi .con {
    color: #fff;
}

.in_news_lunbo .swiper-slide .text2 a .wenzi .more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 157px;
    background: #fff;
    border-radius: 40px;
    height: 50px;
    margin-top: 13%;
}

.in_news_lunbo .swiper-slide .text2 a .wenzi .more span {
    display: inline-block;
    color: #c32629;
    font-size: 20px;
    letter-spacing: 1px;
    margin-right: 10px;
}

.in_news_lunbo .swiper-slide:hover .text2 {
    opacity: 1;
}

.in_news_lunbo .swiper-slide .text2 .time {
    margin-bottom: 17%;
}


.footerbox {
    background: url(../images/footbg.jpg?a4aabd031535fb383c97c4bd8fa42faf) no-repeat center / cover;
}

.footerbox .f-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 178px;
    border-bottom: 1px solid #66696e;
}

.footerbox .f-top .item {
    width: 58%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footerbox .f-top .item .list {
    display: flex;
    align-items: center;
    justify-content: left;
}

.footerbox .f-top .item .list .icon {
    width: 76px;
    height: 76px;
    position: relative;
    margin-right: 13px;
    background: url(../images/f-yuan.png?28c767741a231b2a4be89257ed1efc66) no-repeat center;
    border-radius: 100%;
}

.footerbox .f-top .item .list .text .title {
    font-size: 24px;
    color: #fff;
}

.footerbox .f-top .item .list .text .con {
    font-size: 14px;
    color: #bdbebe;
    margin-top: 5px;
}

.footerbox .f-bottom {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footerbox .f-bottom .lxbox {
    width: 360px;
    color: #fff;
    font-size: 20px;
}

.footerbox .f-bottom .lxbox a {
    color: #fff;
}

.footerbox .f-bottom .lxbox .list {
    margin-bottom: 10%;
}

.footerbox .f-bottom .lxbox .list:last-child {
    margin-bottom: 0;
}

.footerbox .f-bottom .fmenu {
    width: calc(100% - 555px);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footerbox .ft {
    margin-bottom: 30px;
}

.footerbox .ft .title a {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 14px;
    color: #fff;
    display: block;
}

.footerbox .ft .line {
    width: 30px;
    height: 3px;
    background: #c32629;
}

.footerbox .f-bottom .fmenu .list .abox a {
    display: block;
    position: relative;
    margin-bottom: 20px;
}

.footerbox .f-bottom .fmenu .list .abox a span {
    position: relative;
    z-index: 2;
    font-size: 16px;
    color: #fff;
}

.footerbox .f-bottom .fmenu .list .abox a .bg {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: rgb(195 38 41 / 53%);
    top: -11%;
    left: -12px;
    z-index: 1;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.footerbox .f-bottom .fmenu .list .abox a:hover .bg {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.footerbox .f-bottom .fmenu .erbox {
    width: 155px;
    height: 155px;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.footerbox .f-bottom .fmenu .erbox img {
    width: 100%;
}

.copy {
    line-height: 80px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5%;
}

.copy .warpper {
    border-top: 1px solid #66696e;
}

.copy a {
    color: rgba(255, 255, 255, 0.8);
}

.copy .left {
    float: left;
}

.copy .right {
    float: right;
}

.sbanner {
    width: 100%;
    height: 690px;
    position: relative;
}

.sbanner .text {
    position: absolute;
    width: 100%;
    left: 0;
    top: 44%;
    color: #fff;
    text-align: center;
}

.sbanner .text .en {
    display: inline-block;
    font-size: 20px;
    font-weight: 100;
    border-bottom: 1px solid #fff;
    line-height: 18px;
}

.sbanner .text .fir {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 1% 0;
    letter-spacing: 3px;
}

.sbanner .text .sec {
    font-size: 20px;
}

.allcurmbs {
    background: #efefef;
    line-height: 80px;
}

.allcurmbs .left {
    float: left;
}

.allcurmbs .left a {
    display: inline-block;
    font-size: 14px;
    color: #323232;
    position: relative;
    margin-right: 20px;
}

.allcurmbs .left a:after {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background: #0059b3;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -ms-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
    right: 0;
    bottom: 0;
}

.allcurmbs .left a:hover:after, .allcurmbs .left a.active:after {
    width: 100%;
    left: 0;
}

.allcurmbs .right {
    float: right;
    padding-left: 37px;
    background: url(../images/home-icon.png?6f97f5710dd09df97d4080a98685f675) no-repeat left center;
    font-size: 14px;
    color: #323232;
}

.allcurmbs .right a {
    color: #323232;
}

.alltitle .line {
    width: 40px;
    height: 8px;
    background: #234995;
    margin: 1% auto 0 auto;
}

.inner-company-fir {
    background: #f4f6fa;
}

.inner-company-fir .con .text {
    float: left;
    width: 48%;
}

.inner-company-fir .con .text .title {
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    padding-left: 35px;
    margin-bottom: 3%;
    background: url(../images/douhao.png?a31bb35d849bd90d0760185e5c85efec) no-repeat left top;
    text-align: justify;
}

.inner-company-fir .con .text .des {
    font-size: 15px;
    line-height: 33px;
    color: #666666;
    text-align: justify;
}

.inner-company-fir .con .imgbox {
    float: right;
    width: 48%;
    height: 600px;
    position: relative;
}

.inner-company-fir .con .imgbox .swiper-container {
    width: 100%;
    height: 100%;
}

.inner-company-fir .con .imgbox .pic {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.inner-company-fir .con .imgbox .but {
    position: absolute;
    width: 300px;
    height: 80px;
    background: #c32629;
    bottom: 0;
    right: 100%;
    z-index: 2;
}

.inner-company-fir .con .imgbox .swiper-button-next {
    right: 9%;
}

.inner-company-fir .con .imgbox .swiper-button-prev {
    left: 9%;
}

.inner-company-fir .con .imgbox .but .anniu:after {
    font-size: 22px;
}

.inner-company-fir .con .imgbox .swiper-pagination {
    bottom: initial;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
    z-index: 1;
}

.inner-company-fir .con .imgbox .swiper-pagination span {
    font-size: 16px;
    display: initial;
    margin: 0 13px;
}

.inner-company-fir .con .imgbox .swiper-pagination .swiper-pagination-total {
    font-weight: bold;
    font-size: 22px;
}

.inner-company-fir .shuzi-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 5%;
}

.inner-company-fir .shuzi-item .list {
    width: 30.5%;
    height: 200px;
    background: #fff;
    border-radius: 60px 0 60px 0;
    display: flex;
    align-items: center;

}

.inner-company-fir .shuzi-item .list .inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-company-fir .shuzi-item .list .icon {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: #c32629;
    position: relative;
    margin-right: 40px;
}

.inner-company-fir .shuzi-item .list .icon img {
    filter: brightness(1000%) grayscale(1000%);
}

.inner-company-fir .shuzi-item .list .text .t1 {
    display: flex;
    align-items: baseline;
    justify-content: left;
    font-size: 60px;
    color: #c32629;
    font-weight: bold;
}

.inner-company-fir .shuzi-item .list .text .t2 {
    font-size: 16px;
    color: #333333;
}

.inner-company-fir .shuzi-item .list:hover {
    background: #c32629;
}

.inner-company-fir .shuzi-item .list:hover .icon {
    background: #fff;
}

.inner-company-fir .shuzi-item .list:hover .icon img {
    filter: inherit;
}

.inner-company-fir .shuzi-item .list:hover .text .t1 {
    color: #fff;
}

.inner-company-fir .shuzi-item .list:hover .text .t2 {
    color: #fff;
}

.inner-company-sec .item {
    height: 470px;
    border: 1px solid #dcdcdc;
}

.inner-company-sec .item .list {
    width: 20%;
    height: 100%;
    float: left;
    border-right: 1px solid #dcdcdc;
}

.inner-company-sec .item .list:last-child {
    border-right: none;
}

.inner-company-sec .item .list .con {
    height: 100%;
}

.inner-company-sec .item .list.act {
    width: 60%;
}

.inner-company-sec .item .list .imgbox {
    width: 0;
    height: 100%;
    float: left;
    overflow: hidden;
    display: none;
}

.inner-company-sec .item .list.act .imgbox {
    width: 70%;
    display: block;
}

.inner-company-sec .item .list .text {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.inner-company-sec .item .list.act .text {
    width: 30%;
}

.inner-company-sec .item .list .text .pic {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.inner-company-sec .item .list .text .pic img {

}

.inner-company-sec .item .list .text .wenxi {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.72);
}

.inner-company-sec .item .list .text .wenxi .inner {
    width: 100%;
    padding: 0 3%;
}

.inner-company-sec .item .list .text .wenxi .title {
    font-size: 30px;
    font-weight: bold;
    color: #333333;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    margin-bottom: 57%;
}

.inner-company-sec .item .list .text .wenxi .title:after {
    content: "";
    position: absolute;
    left: 2px;
    bottom: -4px;
    background: #333333;
    width: 30px;
    height: 3px;
}

.inner-company-sec .item .list .text .wenxi .icon {
    width: 80px;
    height: 70px;
    margin: 0 auto;
    position: relative;
}

.inner-company-sec .item .list .text .wenxi .icon .img2 {
    opacity: 0;
}

.inner-company-sec .item .list.act .text .wenxi {
    background: rgba(195, 38, 41, 0.8);
}

.inner-company-sec .item .list.act .text .wenxi .title:after {
    display: none;
}

.inner-company-sec .item .list.act .text .wenxi .title {
    color: #fff;
    margin-bottom: 22%;
}

.inner-company-sec .item .list.act .text .wenxi .icon .img2 {
    opacity: 1;
}

.inner-company-sec .item .list.act .text .wenxi .icon .img1 {
    opacity: 0;
}

.inner-company-thr .factlunbo .swiper-slide .imgbox {
    width: 100%;
    height: 432px;
    position: relative;
    overflow: hidden;
}

.inner-company-thr .factlunbo .swiper-slide:hover .imgbox img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.inner-company-thr .factlunbo .swiper-button-next {
    right: 0;
}

.inner-company-thr .factlunbo .swiper-button-prev {
    left: 0;
}

.inner-company-thr .factlunbo .but_fang {
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.inner-company-thr .factlunbo .swiper-slide .imgbox .shuzi {
    width: 48px;
    line-height: 48px;
    background: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 30px;
    color: #c32629;
    z-index: 2;
    font-style: italic;
    font-weight: bold;
    text-align: center;
}

.inner-pro-list {
    float: left;
    width: 25%;
    padding: 0 1%;
    margin-bottom: 2%;
}

.pro-des-top {
    width: 100%;
}

.pro-des-top .swiper-container {
    height: 100%;
}

.pro-des-imgbox {
    width: 50%;
    float: left;
    height: 600px;
    border: 1px solid #e6e6e6;
}

.pro-des-imgbox .imgbox {
    width: 100%;
    height: 100%;
    background: #fff;
    position: relative;
}

.pro-des-imgbox .imgbox img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.pro-des-imgbox .swiper-button-white {
    width: 37px;
    height: 56px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    margin-top: -28px;
}

.pro-des-imgbox .swiper-button-white:after {
    font-size: 20px;
}

.pro-des-text {
    float: right;
    width: 46%;
    height: 100%;
    position: relative;
}

.pro-des-text .title {
    font-size: 24px;
    color: #333;
}

.pro-des-text .line {
    width: 100%;
    height: 1px;
    background: #eee;
    margin: 4% 0 6% 0;
    position: relative;
}

.pro-des-text .line i {
    position: absolute;
    display: block;
    width: 20px;
    height: 3px;
    background: #c32629;
    left: 0;
    top: -1px;
}

.pro-des-text .des {
    font-size: 16px;
    color: #666;
    position: relative;
    line-height: 28px;
}

.pro-des-text .des span {
    display: block;
    border-bottom: 1px dashed #ebebeb;
    padding-bottom: 2%;
    margin-bottom: 5%;
}

.pro-des-text .des span i {
    font-weight: 700;
    font-style: initial;
    display: inline-block;
    color: #333;
}

.pro-des-text .contact-a {
    display: inline-block;
    width: 121px;
    line-height: 35px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    border: 1px solid #c32629;
    background: #c32629;
    border-radius: 5px;
}

.pro-des-text .contact-a:hover {
    background: #234995;
    border: 1px solid #234995;
}

.pro-des-text .des span em {
    display: inline-block;
    padding: 0 15px;
    border-radius: 5px;
    background: #ffe7e7;
    font-size: 14px;
    color: #c32629;
    margin-bottom: 10px;
}

.pro-des-text .des .destel {
    color: #c32629;
    font-family: Impact;
    font-size: 30px;
    letter-spacing: 1px;
}

.pro-des-bottom {
    margin-top: 7%;
}

.product-t {
    border-top: #e5e5e5 solid 1px;
    border-bottom: #e5e5e5 solid 1px;
    margin-bottom: 4%;
}

.product-t span {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    border-bottom: #c32629 solid 2px;
    color: #c32629;
    font-weight: 700;
}

.pro-des-content {
    font-size: 16px;
    color: #333;
    line-height: 30px;
    margin-bottom: 4%;
}

.pro-des-content img {
    max-width: 100%;
    margin: 1% auto;
}

.pro-des-content table {
    width: 100% !important;
    margin: 0 auto 20px auto;
    border: 1px solid #e5e5e5;
    border-collapse: collapse;
}

.pro-des-content table th {
    line-height: 30px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    padding: 0.5%;
    word-break: break-all;
    word-wrap: break-word;
    border: 1px solid #eee;
    background: #edfff8;
}

.pro-des-content table tr td {
    line-height: 30px;
    font-size: 14px;
    color: #333;
    padding: 0.5%;
    word-break: break-all;
    word-wrap: break-word;
    border: 1px solid #eee;
}

.otherprobox .imgbox {
    width: 100%;

    background: #fff;
    position: relative;
    border: 1px solid #dbdbdb;
}

.otherprobox .swiper-slide:hover .imgbox {
    border: 1px solid #c32629;
}

.otherprobox .swiper-slide:hover .title {
    color: #c32629;
}

.otherprobox .title {
    text-align: center;
    padding: 0 15px;
    font-size: 14px;
    color: #666;
    margin-top: 4%;
}

.inner-news-list-box {
    float: left;
    width: 33.33%;
    padding: 0 1%;
    margin-bottom: 2%;
}

.inner-news-list-box:hover .inner-news-list {
    box-shadow: 0 10px 30px rgb(0 0 0 / 20%);
}

.inner-news-list .imgbox {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.inner-news-list:hover .imgbox img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.inner-news-list .imgbox .more {
    position: absolute;
    right: 0;
    top: 0;
    text-transform: uppercase;
    font-size: 20px;
    color: #fff;
    padding: 4%;
    background: #234995;
}

.inner-news-list:hover .imgbox .more {
    background: #c32629;
}

.inner-news-list .imgbox .news-title {
    position: absolute;
    width: 100%;
    padding: 3% 6% 3% 6%;
    left: 0;
    bottom: 0;
    transition: all .5s ease-in-out;
    background: #00000061;
}

.inner-news-list .imgbox .news-title .fir {
    font-size: 22px;
    margin-bottom: 1%;
    color: #fff;
    text-shadow: 0 2px 3px #000000;
}

.inner-news-list .imgbox .news-title .time {
    font-size: 16px;
    color: #fff;
}

.inner-news-list:hover .imgbox .news-title {
    opacity: 0;
    transform: translateY(100%);
}

.inner-news-list .imgbox .news-text {
    position: absolute;
    width: 100%;
    background: #fff;
    padding: 4% 6%;
    left: 0;
    bottom: 0;
    transition: all .5s ease-in-out;
    transform: translateY(100%);
}

.inner-news-list .imgbox .news-text .fir {
    font-size: 20px;
    color: #333;
    margin-bottom: 2%;
    font-weight: bold;
}

.inner-news-list .imgbox .news-text .sec {
    font-size: 14px;
    color: #666;
    line-height: 25px;
}

.inner-news-list:hover .imgbox .news-text {
    transform: translateY(0);
}

.inner-news-des .left {
    width: 100%;
}

.inner-news-des .left .tbox {
    margin-bottom: 2%;
    padding-bottom: 1%;
    border-bottom: 1px solid #eee;
}

.inner-news-des .left .tbox .fir {
    font-size: 24px;
    color: #333;
}

.inner-news-des .left .tbox .sec {
    font-size: 14px;
    color: #777;
    margin-top: 1%;
}

.des-content {
    font-size: 14px;
    line-height: 30px;
    color: #777;
}

.des-content img {
    max-width: 100%;
    display: block;
    margin: 1% 0;
}

.inner-case-list {
    float: left;
    width: 25%;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 2% 3%;
    background: #fff;
}

.inner-case-list .time {
    line-height: 40px;
    font-size: 22px;
    color: #777;
}

.inner-case-list .imgbox {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    margin: 2% 0 8% 0;
}

.inner-case-list .title {
    font-size: 16px;
    color: #333;
}

.inner-case-list .con {
    font-size: 14px;
    color: #666;
    margin-top: 3%;
}

.inner-case-list span {
    display: inline-block;
    line-height: 35px;
    padding: 0 11%;
    font-size: 14px;
    color: #666;
    border: 1px solid #999;
    border-radius: 40px;
    margin-top: 4%;
}

.inner-case-list:hover {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 6px 15px;
}

.inner-case-list a {
    display: block;
}

.inner-case-list:hover a {
    transform: translate3d(0, -10px, 0);
}

.inner-con-fir {
    background: #f4f6fa;
}

.inner-con-fir .con {
    width: 100%;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px rgb(0 0 0 / 10%);
}

.inner-con-fir .con .lxbox {
    float: left;
    width: 63%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
}

.inner-con-fir .con .lxbox .inner {
    width: 100%;
    padding: 0 9%;
}

.inner-con-fir .con .lxbox .tbox {
    margin-bottom: 9%;
}

.inner-con-fir .con .lxbox .tbox .t1 {
    font-weight: bold;
    color: #234995;
    font-size: 30px;
    letter-spacing: 1px;
}

.inner-con-fir .con .lxbox .tbox .t2 {
    text-transform: uppercase;
    color: #999999;
    font-size: 12px;
}

.inner-con-fir .con .lxbox .pboxout .pbox {
    float: left;
    font-size: 16px;
    color: #333;
}

.inner-con-fir .con .lxbox .pboxout .pbox p {
    margin-bottom: 9%;
}

.inner-con-fir .con .lxbox .pboxout .pbox p:last-child {
    margin-bottom: 0;
}

.inner-con-fir .con .lxbox .pboxout .pbox p span {
    color: #999;
    -moz-text-align-last: justify;
    text-align-last: justify;
    display: inline-block;
    width: 92px;
}

.inner-con-fir .con .lxbox .pboxout .erbox {
    float: left;
    width: 180px;
    margin-left: 20%;
}

.inner-con-fir .con .lxbox .pboxout .erbox p {
    font-size: 16px;
    color: #999;
}

.inner-con-fir .con .lxbox .pboxout .erbox .imgbox {
    width: 100%;
}

.inner-con-fir .con .lxbox .pboxout .erbox .imgbox img {
    width: 100%;
}

.inner-con-fir .con .telbox {
    float: left;
    width: 37%;
    height: 100%;
    background: #c32629;
    display: flex;
    align-items: center;
}

.inner-con-fir .con .telbox .inner {
    width: 100%;
    padding: 0 13%;
}

.inner-con-fir .con .telbox .t {
    font-size: 25px;
    color: #fff;
    margin-bottom: 3%;
    font-weight: bold;
}

.inner-con-fir .con .telbox .t1 {
    font-size: 16px;
    font-weight: lighter;
    margin-bottom: 17%;
    color: #fff;
}

.inner-con-fir .con .telbox .t11 {
    margin-bottom: 10px;
}

.inner-con-fir .con .telbox .t111 {
    margin-bottom: 0;
    margin-top: 18%;
}

.inner-con-fir .con .telbox .t2 {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}

.inner-con-fir .con .telbox .t2 span {
    font-weight: lighter;
}

.inner-con-fir .con .telbox a {
    color: #fff;
}

.cont-ditu {
    width: 100%;
    height: 656px;
    position: relative;
}

.cont-ditu #mymap {
    width: 100%;
    height: 100%;
}

.cont-ditu .make {
    position: absolute;
    width: 405px;
    padding: 8px;
    background: #c32629;
    display: flex;
    align-items: center;
    justify-content: left;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 28%;
}

.cont-ditu .make .icon {
    width: 90px;
    height: 90px;
    background: #fff;
    position: relative;
    margin-right: 10px;
}

.cont-ditu .make .text .t1 {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
}

.cont-ditu .make .text .t2 {
    font-size: 14px;
    color: #fff;
    font-weight: lighter;
    margin-top: 5px;
}

.cont-ditu .make:after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #c32629;
}

.inner-con-thr .tbox {
    margin-bottom: 4%;
}

.inner-con-thr .tbox .t1 {
    font-weight: bold;
    color: #333333;
    font-size: 40px;
}

.inner-con-thr .tbox .t1 span {
    color: #c32629;
}

.inner-con-thr .tbox .t2 {
    text-transform: uppercase;
    color: #999999;
    font-size: 18px;
}

.inner-con-thr .con .left {
    float: left;
    width: 45%;
}

.inner-con-thr .con .left .img {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.inner-con-thr .con .left .item {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-top: 5%;
}

.inner-con-thr .con .left .item .list {
    display: flex;
    align-items: center;
    justify-content: left;
}

.inner-con-thr .con .left .item .list:first-child {
    margin-right: 14%;
}

.inner-con-thr .con .left .item .list .icon {
    width: 44px;
    height: 44px;
    border: 1px solid #c32629;
    position: relative;
    border-radius: 100%;
    margin-right: 10px;
}

.inner-con-thr .con .left .item .list .text .t1 {
    font-size: 16px;
    color: #999999;
    font-weight: lighter;
}

.inner-con-thr .con .left .item .list .text .t2 {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
}

.inner-con-thr .con .right {
    float: right;
    width: 45%;
}

.inner-con-thr .con .right .form_top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.inner-con-thr .con .right .form_top .inputbox {
    width: 47.5%;
    background: #f5f5f5;
    border: 1px solid #dcdcdc;
    position: relative;
    margin-bottom: 35px;
}

.inner-con-thr .con .right .form_top .inputbox .icon {
    width: 50px;
    height: 50px;
    position: relative;
    margin-left: 5px;
    float: left;
}

.inner-con-thr .con .right .form_top .inputbox input {
    float: left;
    width: calc(100% - 55px);
    line-height: 50px;
    font-size: 16px;
    color: #333;
    font-weight: lighter;
}

.inner-con-thr .con .right .form_top .inputbox input::-moz-placeholder {
    font-size: 16px;
    color: #999;
}

.inner-con-thr .con .right .form_top .inputbox input::placeholder {
    font-size: 16px;
    color: #999;
}

.inner-con-thr .con .right .form_top .inputbox .verify {
    position: absolute;
    width: 97px;
    height: 34px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
}

.inner-con-thr .con .right .form_top .inputbox .verify img {
    width: 100%;
    height: 100%;
}

.inner-con-thr .con .right textarea {
    width: 100%;
    height: 120px;
    font-size: 16px;
    color: #333;
    font-weight: lighter;
    background: #f5f5f5;
    border: 1px solid #dcdcdc;
    padding: 21px;
    margin-bottom: 35px;
}

.inner-con-thr .con .right textarea::-moz-placeholder {
    font-size: 16px;
    color: #999;
}

.inner-con-thr .con .right textarea::placeholder {
    font-size: 16px;
    color: #999;
}

.inner-con-thr .con .right button.submit {
    display: block;
    text-align: center;
    font-size: 22px;
    color: #fff;
    background: #c32629;
    border-radius: 30px;
    line-height: 60px;
    letter-spacing: 3px;
    width: 100%;
}

.inner-con-thr .con .right .submit:hover {
    background: #234995;
}

.contact-liuyan {
    width: 100%;
    padding: 3%;
    border: 1px solid #eee;
    margin-top: 3%;
}

.contact-liuyan .form-left {
    float: left;
    width: 75%;
}

.contact-liuyan .form-right {
    float: right;
    width: 24%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-liuyan .inputbox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.contact-liuyan input[type=text] {
    width: 49.5%;
    line-height: 45px;
    border: 1px solid #eee;
    padding-left: 15px;
    outline: none;
    background: #fff;
    font-size: 14px;
    color: #333;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-bottom: 8px;
}

.contact-liuyan input:focus {
    border: 1px solid #0059b3;
}

.contact-liuyan input[type=text]::-moz-placeholder {
    font-size: 14px;
    color: #999;
}

.contact-liuyan input[type=text]::placeholder {
    font-size: 14px;
    color: #999;
}

.contact-liuyan input[name=captcha] {
    width: 100%;
}

.contact-liuyan .verify {
    height: 45px;
    width: 100%;
    border: 1px solid #eee;
    padding: 3px;
}

.contact-liuyan .verify img {
    width: 100%;
    height: 100%;
}

.contact-liuyan textarea {
    width: 100%;
    height: 155px;
    border: 1px solid #eee;
    padding: 15px;
    outline: none;
    resize: none;
    font-size: 14px;
    color: #333;
    font-family: "Microsoft Yahei";
}

.contact-liuyan textarea::-moz-placeholder {
    font-size: 14px;
    color: #999;
}

.contact-liuyan textarea::placeholder {
    font-size: 14px;
    color: #999;
}

.contact-liuyan textarea:focus {
    border: 1px solid #0059b3;
}

.contact-liuyan .submit {
    display: block;
    width: 100%;
    line-height: 45px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background: #0059b3;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-top: 21%;
}

.contact-liuyan .submit:hover {
    background: #c00c1a;
}

.contact-liuyan .contact-liuyan-title {
    color: #333;
    font-size: 25px;
    letter-spacing: 1px;
    margin-bottom: 2%;
}

.inner-pointer-list-box {
    width: 25%;
    padding: 0 1%;
    float: left;
    margin-bottom: 2%;
}

.inner-pointer-list .imgbox {
    border: 1px solid #eee;
    position: relative;
    height: 100px;
}

.inner-pointer-list .imgbox img {
    max-width: 90%;
    max-height: 80%;
}

.inner-honor-list-box {
    width: 25%;
    padding: 0 1%;
    float: left;
    margin-bottom: 2%;
}

.inner-honor-list-box .imgbox {
    border: 1px solid #eee;
    position: relative;
    height: 300px;
}

.k {
    color: red;
    font-weight: bold;
}

.fixBut {
    position: fixed;
    right: 31px;
    top: 18px;
    z-index: 1001;
    background: #c32629;
    width: 41px;
    height: 41px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 21px;
    display: none;
    z-index: 1003;
}

.sm-button-xian {
    width: 26px;
    height: 15px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.sm-button-xian span {
    display: block;
    position: absolute;
    height: 2px;
    background-color: #fff;
    right: 0;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -ms-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
}

.sm-button-xian span.lin-top {
    top: 0;
    width: 70%;
    -webkit-transform-origin: left top 0;
    -ms-transform-origin: left top 0;
    transform-origin: left top 0;
}

.sm-button-xian span.lin-cent {
    top: 6px;
    width: 100%;
}

.sm-button-xian span.lin-bottom {
    bottom: 0;
    width: 70%;
    -webkit-transform-origin: left bottom 0;
    -ms-transform-origin: left bottom 0;
    transform-origin: left bottom 0;
}

.fixBut.active .sm-button-xian span.lin-top {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.fixBut.active .sm-button-xian span.lin-cent {
    opacity: 0;
}

.fixBut.active .sm-button-xian span.lin-bottom {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navBg {
    position: fixed;
    z-index: 1001;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all .5s ease 0s;
    transform: translate(-100%, 0);
    z-index: 1000;
}

.navBg.active {
    opacity: 1;
    transform: translate(0, 0);
}

.navBg .right {
    width: 100%;
    height: 100%;
    background: #252525;

}

.navBg .right ul {
    width: 100%;
    height: 100%;
    padding: 8% 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.navBg .right ul li {
    width: 49%;
    height: 46%;
    border: 1px solid #fff;
    padding: 1% 3%;
}

.navBg .right ul li .fir {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-family: Impact;
}

.navBg .right ul li .sec {
    color: #fff;
    font-size: 20px;
    padding-bottom: 5%;
    border-bottom: 1px solid #696969;
    margin-bottom: 8%;
}

.navBg .right ul li .sec a {
    color: #fff;
}

.navBg .right ul li .abox a {
    display: block;
    font-size: 13px;
    color: #c3c3c3;
    margin-bottom: 2%;
}

.navBg .right ul li .abox a:hover {
    color: #c32629;
}


.mobile-footer {
    width: 100%;
    position: fixed;
    z-index: 999;
    left: 0;
    bottom: 0;
    background: #333;
    display: none;
}

.mobile-footer a {
    float: left;
    width: 33.33%;
    display: block;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    padding-left: 6%;
    position: relative;
}

.mobile-footer a:after {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 10px;
    width: 1px;
    background: #c9dfff;
}

.mobile-footer a:last-child:after {
    display: none;
}

.mobile-footer a.mobile-home {
    background: url(../images/mobile-home.png?29c07a7e5b4291aacd6c0e5966f6efe0) no-repeat left 17% center;
    background-size: 23px;
}

.mobile-footer a.mobile-pro {
    background: url(../images/mobile-pro.png?29c07a7e5b4291aacd6c0e5966f6efe0) no-repeat left 17% center;
    background-size: 23px;
}

.mobile-footer a.mobile-tel {
    background: url(../images/mobile-tel.png?29c07a7e5b4291aacd6c0e5966f6efe0) no-repeat left 17% center;
    background-size: 23px;
}

.cultrebox {
    margin: 0 0 5% 0;
    text-align: center;
    display: none;
}

.cultrebox a {
    display: inline-block;
    line-height: 45px;
    background: #eee;
    font-size: 15px;
    color: #333;
    padding: 0 5%;
}

.cultrebox a.active {
    background: #0059b3;
    color: #fff;
}

.pro-des-tu {
    width: 50%;
    float: left
}


@media (max-width: 1600px) {
    .warpper {
        width: 95%;
    }

}

@media (max-width: 1200px) {
    .warpper_min {
        width: 95%;
    }

}

@media (max-width: 1600px) and (min-width: 1400px) {
    .fix_head_inner {
        height: 90px;
    }

    .fix_head_inner .searchbox form input[type=text] {
        font-size: 14px;
    }

    .fix_head_inner .searchbox form input::-moz-placeholder {
        color: #999;
        font-size: 14px;
    }

    .fix_head_inner .searchbox form input::placeholder {
        color: #999;
        font-size: 14px;
    }

    .fix_head_inner .menubox a {
        font-size: 17px;
        line-height: 90px;
    }

    .sbanner {
        height: 560px;
    }

    .sbanner .text {
        top: 49%;
    }

    .sbanner .text .fir {
        font-size: 36px;
    }

    .banner-jiao .swiper-button-black {
        width: 65px;
        height: 50px;
    }

    .banner-jiao .swiper-button-black:after {
        font-size: 22px;
    }

    .protype .item .list .text .title {
        font-size: 15px;
    }

    .allpro .picbox .title {
        width: 70px;
    }

    .allpro .picbox .pic {

    }

    .in_company .text {
        width: 46%;
    }

    .in_adv .left .fir {
        font-size: 33px;
    }

    .in_adv .left .sec {
        margin: 5% 0 9% 0;
    }

    .in_adv .right img {
        max-width: 69%;
    }

    .allpro .picbox .title .s1 {
        font-size: 20px;
    }

    .in_adv .left .thr .a2 {
        line-height: 52px;
        font-size: 22px;
    }

    .in_adv {
        height: 363px;
    }

    .in_adv .left {
        margin-top: 6%;
    }

    .caselunbo .imgbox {
        height: 480px;
    }

    .caselunbo .title .t {
        font-size: 28px;
    }

    .in_news_lunbo .swiper-slide .con {
        -webkit-line-clamp: 2;
    }

    .in_news_lunbo .swiper-slide .title {
        font-size: 26px;
    }

    .in_news_lunbo .swiper-slide .text2 a .wenzi .more {
        height: 43px;
    }

    .in_news_lunbo .swiper-slide .text2 a .wenzi .more span {
        font-size: 18px;
    }

    .footerbox .f-top .logo img {
        max-width: 100%;
    }

    .footerbox .f-top .item {
        width: 63%;
    }

    .footerbox .f-bottom .fmenu .erbox {
        width: 130px;
        height: 130px;
    }

    .footerbox .f-bottom .fmenu {
        width: calc(100% - 466px);
    }

    .footerbox .f-bottom .fmenu .list .abox a span {
        font-size: 15px;
    }

    .footerbox .f-bottom .lxbox {
        font-size: 17px;
    }

    .footerbox .f-top .item .list .text .title {
        font-size: 21px;
    }

    .inner-company-fir .con .text .des {
        font-size: 14px;
        line-height: 29px;
    }

    .inner-company-fir .shuzi-item .list {
        height: 186px;
    }

    .inner-company-thr .factlunbo .swiper-slide .imgbox {
        height: 325px;
    }

    .inner-con-fir .con .lxbox .pboxout .erbox {
        margin-left: 11%;
    }

    .cont-ditu {
        height: 490px;
    }

    .cont-ditu .make {
        top: 20%;
    }

    .inner-con-thr .con .right .submit {
        line-height: 50px;
        font-size: 20px;
    }

    .inner-con-fir .con .telbox .inner {
        padding: 0 10%;
    }

    .in_company .text .thr {
        -webkit-line-clamp: 8;
    }

    .in_company .imgbox {
        height: 476px;
    }

    .in_youshi .item .list {
        height: 344px;
    }

    .in_youshi .item .list .text .inner {
        margin-top: 14%;
    }

    .in_youshi .item .list .con {
        margin: 10% 0 27% 0;
    }
}

@media (max-width: 1400px) and (min-width: 1200px) {
    .fix_head_inner h1 {
        width: 23%;
    }

    .fix_head_inner .menubox {
        width: 57%;
    }

    .fix_head_inner .searchbox {
        width: 20%;
    }

    .banner-jiao .swiper-button-prev {
        right: 75px;
    }

    .alltitle .en {
        font-size: 48px;
        line-height: 45px;
    }

    .protype .item .list .text .icon {
        height: 50px;
    }

    .protype .item .list {
        height: 163px;
    }

    .pro-item .list {
        width: 32.5%;
        margin-right: 1%;
    }

    .pro-item .list:nth-child(3n) {
        margin-right: 0;
    }

    .pro-item .list:nth-child(4n) {
        margin-right: 1%;
    }

    .pro-item .list:nth-child(12n) {
        margin-right: 0;
    }

    .in_pro .pro-item .list:nth-last-child(-n+2) {
        display: none;
    }

    .in_youshi .item .list .title {
        font-size: 26px;
    }

    .sbanner {
        height: 550px;
    }

    .fix_head_inner {
        height: 90px;
    }

    .fix_head_inner .searchbox form input[type=text] {
        font-size: 14px;
    }

    .fix_head_inner .searchbox form input::-moz-placeholder {
        color: #999;
        font-size: 14px;
    }

    .fix_head_inner .searchbox form input::placeholder {
        color: #999;
        font-size: 14px;
    }

    .fix_head_inner .menubox a {
        font-size: 17px;
        line-height: 90px;
    }

    .sbanner {
        height: 560px;
    }

    .sbanner .text {
        top: 49%;
    }

    .sbanner .text .fir {
        font-size: 36px;
    }

    .banner-jiao .swiper-button-black {
        width: 65px;
        height: 50px;
    }

    .banner-jiao .swiper-button-black:after {
        font-size: 22px;
    }

    .protype .item .list .text .title {
        font-size: 15px;
    }

    .allpro .picbox .title {
        width: 70px;
    }

    .allpro .picbox .pic {

    }

    .in_company .text {
        width: 46%;
    }

    .in_adv .left .fir {
        font-size: 31px;
    }

    .in_adv .left .sec {
        margin: 5% 0 9% 0;
    }

    .in_adv .right img {
        max-width: 57%;
    }

    .in_news_lunbo .swiper-slide .imgbox {
        height: 220px;
    }

    .allpro .picbox .title .s1 {
        font-size: 20px;
    }

    .in_adv .left .thr .a2 {
        line-height: 52px;
        font-size: 22px;
    }

    .in_adv {
        height: 325px;
    }

    .in_adv .left {
        margin-top: 6%;
    }

    .caselunbo .imgbox {
        height: 480px;
    }

    .caselunbo .title .t {
        font-size: 28px;
    }

    .in_news_lunbo .swiper-slide .con {
        -webkit-line-clamp: 2;
    }

    .in_news_lunbo .swiper-slide .title {
        font-size: 26px;
    }

    .in_news_lunbo .swiper-slide .text2 a .wenzi .more {
        height: 43px;
    }

    .in_news_lunbo .swiper-slide .text2 a .wenzi .more span {
        font-size: 18px;
    }

    .pro-des-imgbox {
        height: 394px;
    }

    .footerbox .f-top .logo img {
        max-width: 100%;
    }

    .footerbox .f-top .item {
        width: 63%;
    }

    .footerbox .f-bottom .fmenu .erbox {
        width: 130px;
        height: 130px;
    }

    .footerbox .f-bottom .fmenu {
        width: calc(100% - 373px);
    }

    .allmore a .bg {
        width: 35px;
        height: 35px;
    }

    .footerbox .f-top .item .list .icon {
        width: 70px;
        height: 70px;
    }

    .footerbox .f-bottom .fmenu .list .abox a span {
        font-size: 15px;
    }

    .footerbox .f-bottom .lxbox {
        font-size: 17px;
    }

    .footerbox .f-top .item .list .text .title {
        font-size: 21px;
    }

    .inner-company-fir .con .text .title {
        font-size: 18px;
    }

    .inner-company-fir .con .text .des {
        font-size: 14px;
        line-height: 25px;
    }

    .inner-company-fir .shuzi-item .list .text .t1 {
        font-size: 39px;
    }

    .inner-company-fir .shuzi-item .list {
        height: 150px;
    }

    .inner-company-fir .shuzi-item .list .icon {
        width: 70px;
        height: 70px;
        margin-right: 23px;
    }

    .inner-company-thr .factlunbo .swiper-slide .imgbox {
        height: 325px;
    }

    .inner-con-fir .con .lxbox .pboxout .erbox {
        margin-left: 11%;
        width: 121px;
    }

    .inner-con-fir .con .telbox .t {
        font-size: 20px;
    }

    .cont-ditu {
        height: 490px;
    }

    .cont-ditu .make {
        top: 20%;
    }

    .cont-ditu .make .icon {
        width: 70px;
        height: 70px;
    }

    .inner-con-thr .con .right {
        width: 51%;
    }

    .inner-con-thr .con .right .submit {
        line-height: 50px;
        font-size: 20px;
    }

    .inner-con-fir .con .telbox .inner {
        padding: 0 10%;
    }

    .in_company .text .thr {
        -webkit-line-clamp: 8;
    }

    .in_company .imgbox {
        height: 476px;
    }

    .in_youshi .item .list {
        height: 344px;
    }

    .in_youshi .item .list .text .inner {
        margin-top: 14%;
    }

    .in_youshi .item .list .con {
        margin: 10% 0 27% 0;
    }
}

@media (max-width: 1200px) and (min-width: 992px) {

    .copy {
        line-height: 55px;
    }

    .fix_head_inner {
        height: 75px;
    }

    .fix_head_inner h1 a .logo .img1 {
        opacity: 0;
    }

    .fix_head_inner h1 a .logo .img2 {
        opacity: 1;
    }

    .fix_head_inner h1 {
        width: 15%;
    }

    .fix_head_inner h1 a .logo {
        height: 49%;
        width: 79%;
    }

    .fix_head_inner .menubox {
        width: 61%;
    }

    .fix_head_inner .searchbox {
        width: 24%;
    }

    .fix_head_inner .menubox a {
        font-size: 16px;
    }

    .fix_head_inner .searchbox:before {
        width: 1px;
    }

    .banner-jiao .swiper-button-black:after {
        font-size: 20px;
    }

    .banner-jiao .swiper-button-black {
        width: 58px;
        height: 50px;
    }

    .banner-jiao .swiper-button-black:after {
        font-size: 20px;
    }

    .banner-jiao .swiper-button-prev {
        right: 70px;
    }

    .alltitle .en {
        font-size: 45px;
    }

    .alltitle .fir {
        font-size: 35px;
    }

    .alltitle .sec {
        font-size: 16px;
        margin-top: 4px;
    }

    .protype .item .list .text .icon {
        height: 40px;
    }

    .protype .item .list {
        height: 144px;
    }

    .pro-item .list {
        width: 32.5%;
        margin-right: 1%;
    }

    .pro-item .list:nth-child(3n) {
        margin-right: 0;
    }

    .pro-item .list:nth-child(4n) {
        margin-right: 1%;
    }

    .pro-item .list:nth-child(12n) {
        margin-right: 0;
    }

    .in_pro .pro-item .list:nth-last-child(-n+2) {
        display: none;
    }

    .in_youshi .item .list .title {
        font-size: 26px;
    }

    .sbanner {
        height: 465px;
    }

    .sbanner .text {
        top: 48%;
    }

    .sbanner .text .fir {
        font-size: 29px;
    }

    .sbanner .text .sec {
        font-size: 18px;
    }

    .banner-jiao .swiper-button-black {
        width: 65px;
        height: 50px;
    }

    .banner-jiao .swiper-button-black:after {
        font-size: 22px;
    }

    .protype .item .list .text .title {
        font-size: 15px;
    }

    .allpro .picbox .title {
        width: 70px;
    }

    .allpro .picbox .pic {

    }

    .in_company .text {
        width: 46%;
    }

    .in_adv .left .fir {
        font-size: 26px;
    }

    .in_adv .left .sec {
        margin: 5% 0 6% 0;
    }

    .in_adv .left .thr .a1 span {
        font-size: 24px;
    }

    .in_adv .right img {
        max-width: 57%;
    }

    .in_news_lunbo .swiper-slide .imgbox {
        height: 200px;
    }

    .allpro .picbox .title .s1 {
        font-size: 20px;
    }

    .in_adv .left .thr .a2 {
        line-height: 47px;
        font-size: 20px;
    }

    .in_adv {
        height: 325px;

    }

    .in_adv .left {
        width: 413px;
        margin-top: 9%;
    }

    .in_adv .left .thr {
        width: 96%;
    }

    .caselunbo .imgbox {
        height: 400px;
    }

    .caselunbo .title .t {
        font-size: 24px;
    }

    .in_news_lunbo .swiper-slide .con {
        -webkit-line-clamp: 2;
    }

    .in_news_lunbo .swiper-slide .title {
        font-size: 20px;
    }

    .in_news_lunbo .swiper-slide .text2 a .wenzi .more {
        height: 43px;
    }

    .in_news_lunbo .swiper-slide .text2 a .wenzi .more span {
        font-size: 18px;
    }

    .but_fang {
        width: 50px;
        height: 50px;
    }

    .allmore a span {
        font-size: 18px;
    }

    .pro-des-imgbox {
        height: 394px;
    }

    .footerbox .f-top .logo img {
        max-width: 100%;
    }

    .footerbox .f-top .item {
        width: 67%;
    }

    .footerbox .f-bottom .fmenu .erbox {
        width: 100px;
        height: 100px;
    }

    .footerbox .f-bottom .fmenu {
        width: calc(100% - 373px);
    }

    .allmore a .bg {
        width: 35px;
        height: 35px;
    }

    .footerbox .f-top {
        height: 133px;
    }

    .footerbox .ft .title a {
        font-size: 18px;
    }

    .footerbox .ft .line {
        width: 22px;
        height: 1px;
    }

    .footerbox .f-top .item .list .icon {
        width: 55px;
        height: 55px;
    }

    .footerbox .f-bottom .fmenu .list .abox a span {
        font-size: 15px;
    }

    .footerbox .f-bottom .lxbox {
        font-size: 17px;
    }

    .footerbox .f-top .item .list .text .title {
        font-size: 18px;
    }

    .inner-company-fir .con .text {
        width: 100%;
    }

    .inner-company-fir .con .imgbox {
        display: none;
    }

    .inner-company-fir .con .text .title {
        font-size: 18px;
    }

    .inner-company-fir .con .text .des {
        font-size: 14px;
        line-height: 25px;
    }

    .inner-company-fir .shuzi-item .list .text .t1 {
        font-size: 33px;
    }

    .inner-company-fir .shuzi-item .list {
        height: 150px;
        width: 31.5%;
    }

    .inner-company-fir .shuzi-item .list .icon {
        width: 60px;
        height: 60px;
        margin-right: 14px;
    }

    .inner-company-sec .item {
        height: 393px;
    }

    .inner-company-sec .item .list .text .wenxi .title {
        font-size: 25px;
    }

    .inner-company-thr .factlunbo .swiper-slide .imgbox {
        height: 325px;
    }

    .inner-con-fir .con {
        height: 409px;
    }

    .inner-con-fir .con .telbox .t2 {
        font-size: 26px;
    }

    .inner-con-fir .con .lxbox .pboxout .erbox {
        margin-left: 0;
        width: 121px;
    }

    .inner-con-fir .con .telbox .t {
        font-size: 18px;
    }

    .inner-con-fir .con .telbox .t1:nth-child(2) {
        display: none;
    }

    .inner-con-fir .con .lxbox .inner {
        padding: 0 7%;
    }

    .inner-con-fir .con .lxbox .tbox .t1 {
        font-size: 26px;
    }

    .cont-ditu {
        height: 406px;
    }

    .cont-ditu .make {
        top: 20%;
    }

    .cont-ditu .make .icon {
        width: 70px;
        height: 70px;
    }

    .inner-con-thr .tbox .t1 {
        font-size: 33px;
    }

    .inner-con-thr .con .right {
        width: 48%;
    }

    .inner-con-thr .con .right .form_top .inputbox {
        margin-bottom: 30px;
    }

    .inner-con-thr .con .right textarea {
        margin-bottom: 30px;
    }

    .inner-con-thr .con .right .form_top .inputbox .verify {
        width: 67px;
    }

    .inner-con-thr .con .right .submit {
        line-height: 50px;
        font-size: 20px;
    }

    .inner-con-fir .con .telbox .inner {
        padding: 0 10%;
    }

    .in_company .text .thr {
        -webkit-line-clamp: 8;
    }

    .in_company .imgbox {
        height: 476px;
    }

    .in_youshi .item .list {
        height: 344px;
    }

    .in_youshi .item .list .text .inner {
        margin-top: 14%;
    }

    .in_youshi .item .list .con {
        margin: 10% 0 27% 0;
    }
}

@media (max-width: 992px) and (min-width: 768px) {
    .fix_head {
        top: 10px;
    }

    .padding {
        padding: 7% 0;
    }

    .inner-news-list .imgbox {
        height: 235px;
    }

    .inner-news-list .imgbox .news-text .fir {
        font-size: 18px;
    }

    .inner-news-list .imgbox .more {
        font-size: 16px;
    }


    .copy {
        line-height: 55px;
    }

    .fix_head_inner {
        height: 75px;
    }

    .fix_head_inner h1 a .logo .img1 {
        opacity: 0;
    }

    .fix_head_inner h1 a .logo .img2 {
        opacity: 1;
    }

    .fix_head_inner h1 {
        width: 15%;
    }

    .fix_head_inner h1 a .logo {
        height: 49%;
        width: 79%;
    }

    .fix_head_inner .menubox {
        width: 88%;
    }

    .fix_head_inner .searchbox {
        display: none;
    }

    .fix_head_inner .menubox a {
        font-size: 16px;
    }

    .fix_head_inner .searchbox:before {
        width: 1px;
    }

    .banner-jiao .warpper {
        height: 74px;
    }

    .banner-jiao .swiper-button-black:after {
        font-size: 20px;
    }

    .banner-jiao .swiper-button-black {
        width: 58px;
        height: 50px;
    }

    .banner-jiao .swiper-button-black:after {
        font-size: 20px;
    }

    .banner-jiao .swiper-button-prev {
        right: 54px;
    }

    .alltitle .en {
        font-size: 45px;
    }

    .alltitle .fir {
        font-size: 30px;
    }

    .alltitle .sec {
        font-size: 16px;
        margin-top: 4px;
    }

    .protype .item .list .text .icon {
        height: 40px;
    }

    .protype .item .list {
        height: 144px;
    }

    .pro-item .list {
        width: 32.5%;
        margin-right: 1%;
    }

    .pro-item .list:nth-child(3n) {
        margin-right: 0;
    }

    .pro-item .list:nth-child(4n) {
        margin-right: 1%;
    }

    .pro-item .list:nth-child(12n) {
        margin-right: 0;
    }

    .in_pro .pro-item .list:nth-last-child(-n+2) {
        display: none;
    }

    .in_youshi .item .list .title {
        font-size: 22px;
    }

    .sbanner {
        height: 465px;
    }

    .sbanner .text {
        top: 48%;
    }

    .sbanner .text .fir {
        font-size: 29px;
    }

    .sbanner .text .sec {
        font-size: 18px;
    }

    .banner-jiao .swiper-button-black {
        width: 43px;
        height: 43px;
    }

    .banner-jiao .swiper-button-black:after {
        font-size: 22px;
    }

    .protype .item .list .text .title {
        font-size: 15px;
    }

    .allpro .picbox .title {
        width: 70px;
    }

    .allpro .picbox .pic {

    }

    .in_company .text {
        width: 100%;
    }

    .in_adv .left .fir {
        font-size: 25px;
    }

    .in_adv .left .sec {
        margin: 2% 0 6% 0;
    }

    .in_adv .left .sec span {
        font-size: 19px;
    }

    .in_adv .left .thr {
        width: 73%;
    }

    .in_adv .left .thr .a1 span {
        font-size: 25px;
    }

    .in_adv .right img {
        max-width: 57%;
    }

    .in_news_lunbo .swiper-slide .imgbox {
        height: 200px;
    }

    .allpro .picbox .title .s1 {
        font-size: 18px;
    }

    .in_adv .left .thr .a2 {
        line-height: 45px;
        font-size: 20px;
    }

    .in_adv .right {
        display: none;
    }

    .in_adv {
        height: 292px;
    }

    .in_adv .left {
        float: none;
        margin: 0% auto 0 auto;
        padding-top: 9%;
    }

    .caselunbo .imgbox {
        height: 342px;
    }

    .caselunbo .title .t {
        font-size: 24px;
    }

    .in_news_lunbo .swiper-slide .time {
        margin-bottom: 4%;
    }

    .in_news_lunbo .swiper-slide .con {
        -webkit-line-clamp: 2;
        margin: 4% 0;
    }

    .in_news_lunbo .swiper-slide .text2 .time {
        margin-bottom: 6%;
    }

    .in_news_lunbo .swiper-slide .title {
        font-size: 20px;
    }

    .in_news_lunbo .swiper-slide .text2 a .wenzi .more {
        height: 43px;
    }

    .in_news_lunbo .swiper-slide .text2 a .wenzi .more span {
        font-size: 18px;
    }

    .but_fang {
        width: 50px;
        height: 50px;
    }

    .allmore a span {
        font-size: 18px;
    }

    .pro-des-imgbox {
        height: 394px;
    }

    .footerbox .f-top .logo img {
        max-width: 100%;
    }

    .footerbox .f-top .item {
        width: 100%;
        margin-top: 5%;
    }

    .footerbox .f-bottom .fmenu .erbox {
        width: 100px;
        height: 100px;
    }

    .footerbox .f-bottom .fmenu {
        width: calc(100% - 373px);
    }

    .footerbox .f-bottom .fmenu .list {
        display: none;
    }

    .footerbox .f-bottom .lxbox .list {
        margin-bottom: 5%;
    }

    .caselunbo .swiper-slide {
        width: 60% !important;
    }

    .caselunbo .but {
        width: 94%;
    }

    .allmore a .bg {
        width: 35px;
        height: 35px;
    }

    .footerbox .f-top {
        height: auto;
        display: block;
        padding: 5% 0;
    }

    .footerbox .ft .title a {
        font-size: 18px;
    }

    .footerbox .ft .line {
        width: 22px;
        height: 1px;
    }

    .footerbox .f-top .item .list .icon {
        width: 55px;
        height: 55px;
    }

    .footerbox .f-bottom .fmenu .list .abox a span {
        font-size: 15px;
    }

    .footerbox .f-bottom .lxbox {
        font-size: 17px;
    }

    .footerbox .f-top .item .list .text .title {
        font-size: 18px;
    }

    .inner-company-fir .con .text {
        width: 100%;
    }

    .inner-company-fir .con .imgbox {
        display: none;
    }

    .inner-company-fir .con .text .title {
        font-size: 18px;
    }

    .inner-company-fir .con .text .des {
        font-size: 14px;
        line-height: 25px;
    }

    .inner-company-fir .shuzi-item .list .text .t1 {
        font-size: 28px;
    }

    .inner-company-fir .shuzi-item .list .text .t2 {
        font-size: 14px;
    }

    .inner-company-fir .shuzi-item .list {
        height: 116px;
        width: 32.5%;
        border-radius: 20px 0 20px 0;
    }

    .inner-company-fir .shuzi-item .list .icon {
        width: 49px;
        height: 49px;
        margin-right: 3px;
        margin-bottom: 3%;
    }

    .inner-company-fir .shuzi-item .list .icon img {
        max-width: 48%;
    }

    .inner-company-sec .item {
        height: 393px;
    }

    .inner-company-sec .item .list .text .wenxi .title {
        font-size: 21px;
    }

    .inner-company-sec .item .list .text .wenxi .icon {
        height: 40px;
    }

    .inner-company-thr .factlunbo .swiper-slide .imgbox {
        height: 325px;
    }

    .inner-con-fir .con .lxbox .pboxout .erbox {
        margin-left: 0;
        width: 121px;
    }

    .inner-con-fir .con .telbox .t {
        font-size: 20px;
    }

    .inner-con-fir .con .lxbox .inner {
        padding: 0 7%;
    }

    .inner-con-fir .con .lxbox .tbox .t1 {
        font-size: 26px;
    }

    .cont-ditu {
        height: 374px;
    }

    .cont-ditu .make {
        top: 20%;
    }

    .cont-ditu .make .icon {
        width: 70px;
        height: 70px;
    }

    .inner-con-thr .con .right {
        width: 57%;
    }

    .inner-con-thr .con .right .form_top .inputbox {
        margin-bottom: 12px;
        width: 48.5%;
    }

    .inner-con-thr .con .right textarea {
        margin-bottom: 15px;
    }

    .inner-con-thr .con .right .form_top .inputbox .verify {
        width: 67px;
    }

    .inner-con-thr .con .right .submit {
        line-height: 50px;
        font-size: 20px;
    }

    .inner-con-fir .con .telbox .inner {
        padding: 0 10%;
    }

    .inner-con-fir .con {
        height: 409px;
    }

    .inner-con-fir .con .telbox .t2 {
        font-size: 21px;
    }

    .inner-con-fir .con .lxbox .pboxout .erbox {
        margin-left: 0;
        width: 121px;
        margin-top: 5%;
    }

    .inner-con-fir .con .telbox .t {
        font-size: 18px;
        margin-bottom: 17%;
    }

    .inner-con-fir .con .telbox .t1:nth-child(2) {
        display: none;
    }

    .inner-con-fir .con .lxbox .inner {
        padding: 0 7%;
    }

    .inner-con-fir .con .lxbox .tbox .t1 {
        font-size: 22px;
    }

    .inner-con-fir .con .lxbox .pboxout .pbox p {
        margin-bottom: 2%;
    }

    .inner-con-fir .con .lxbox .tbox {
        margin-bottom: 4%;
    }

    .in_company .text .thr {
        -webkit-line-clamp: 8;
    }

    .in_company .imgbox {
        height: 383px;
        width: 100%;
        margin-top: 5%;
    }

    .in_company .text .sec {
        margin: 0% 0 3% 0;
    }

    .in_company .allmore {
        margin-top: 2%;
    }

    .in_youshi .item .list {
        height: 275px;
    }

    .in_youshi .item .list .text .inner {
        margin-top: 14%;
    }

    .in_youshi .item .list .con {
        margin: 10% 0 41% 0;
    }

    .inner-con-thr .tbox .t1 {
        font-size: 30px;
    }

    .inner-con-thr .con .left .item {
        display: block;
    }

    .inner-con-thr .con .left .item .list:nth-child(1) {
        margin-bottom: 4%;
    }

    .inner-con-thr .con .left .img {
        height: 200px;
    }

    .inner-con-thr .con .left {
        width: 40%;
    }

    .inner-con-thr .con .right .form_top .inputbox .icon {
        width: 31px;
    }

    .inner-con-thr .con .right .form_top .inputbox input::-moz-placeholder {
        font-size: 14px;
    }

    .inner-con-thr .con .right .form_top .inputbox input::placeholder {
        font-size: 14px;
    }

    .inner-con-thr .con .right textarea::-moz-placeholder {
        font-size: 14px;
    }

    .inner-con-thr .con .right textarea::placeholder {
        font-size: 14px;
    }
}

@media (max-width: 768px) {

    .fixBut {
        right: 14px;
        top: 11px;
        display: block;
    }

    .fix_head_inner h1 a .logo .img1 {
        opacity: 0;
    }

    .fix_head_inner h1 a .logo .img2 {
        opacity: 0;
    }

    .fix_head_inner h1 a .logo .img3 {
        opacity: 1;
    }

    .padding {
        padding: 7% 0;
    }

    .inner-news-list .imgbox {
        height: 235px;
    }

    .inner-news-list .imgbox .news-text .fir {
        font-size: 18px;
    }

    .inner-news-list .imgbox .more {
        font-size: 16px;
    }

    .pro-des-imgbox {
        width: 100%;
        height: 306px;
        margin-bottom: 5%;
    }

    .pro-des-text {
        width: 100%;
    }

    .pro-des-tu {
        width: 100%;
    }

    .pro-des-text .baojia-a {
        display: none;
    }

    .inner-news-list-box {
        width: 100%;
    }

    .inner-news-list .imgbox .news-title .fir {
        font-size: 20px;
    }

    .inner-pointer {
        padding-bottom: 30%;
    }


    .fix_head_inner .searchbox {
        display: none;
    }

    .fix_head_inner .menubox {
        display: none;
    }

    .fix_head_inner h1 {
        width: 69%;
    }

    .fix_head {
        background: rgba(0, 0, 0, 0.35);
        top: 0;
        height: 60px;
    }

    .fix_head_inner {
        height: 60px;
        background: none;
        border-radius: 0;
    }

    .bannerbox {
        height: 212px;
    }

    .bannerbox .swiper-slide img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .fix_head.scroll .fix_head_inner {
        box-shadow: none;
    }

    .banner-jiao .swiper-button-black {
        width: 35px;
        height: 35px;
    }

    .banner-jiao .swiper-button-black:after {
        font-size: 16px;
    }

    .banner-jiao .swiper-button-prev {
        right: 42px;
    }

    .banner-jiao .warpper {
        height: 41px;
    }

    .alltitle .en {
        font-size: 30px;
    }

    .alltitle .fir {
        font-size: 25px;
    }

    .alltitle .sec {
        font-size: 13px;
        margin-top: 6px;
    }

    .protype .item .list {
        width: 50%;
        height: 97px;
        border-bottom: 1px solid #e9ecf4;
    }

    .protype .item .list:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .protype .item .list .text .icon {
        height: 35px;
    }

    .protype .item .list .text .title {
        font-size: 14px;
        margin-top: 6%;
    }

    .protype .item .list .text .inner {
        margin-top: 9%;
    }

    .pro-item .list {
        width: 48.5%;
        margin-right: 1.5%;
    }

    .pro-item .list:nth-child(2n) {
        margin-right: 0;
    }

    .allpro .imgbox {
        height: auto;
    }

    .allpro .picbox .title {
        width: 100%;
        height: 40px;
        padding: 0 4%;
        align-items: center;
        flex-direction: row;
    }

    .allpro .picbox .pic {
        width: 100%;

    }

    .allpro .picbox .title .s1 {
        font-size: 16px;
        height: auto;
        width: 81%;
        margin: 0;
        writing-mode: initial;
    }

    .allpro .picbox .title .s2 {
        width: 25px;
        height: 25px;
        margin: 0;
    }

    .allmore {
        width: 155px;
        height: 41px;
    }

    .allmore a .bg {
        width: 23px;
        height: 23px;
        left: 13px;
    }

    .allmore a span {
        font-size: 16px;
        margin-right: 4px;
        margin-left: -24px;
    }

    .in_company .text {
        width: 100%;
    }

    .in_company .text .thr {
        -webkit-line-clamp: 8;
    }

    .in_company .imgbox {
        height: 204px;
        width: 100%;
        margin-top: 5%;
    }

    .in_company .text .sec {
        margin: 0% 0 3% 0;
    }

    .in_company .allmore {
        margin-top: 2%;
        width: 118px;
    }

    .in_company .allmore a span {
        margin-right: 4px;
        margin-left: 14px;
    }

    .in_company .text .sec span {
        margin-left: 0;
    }

    .in_company .text .fir {
        font-size: 31px;
    }

    .in_youshi .item .list {
        width: 100%;
        border-bottom: 1px solid #dcdcdc;
        border-left: none;
        height: 205px;
    }

    .in_youshi .item .list:last-child {
        border-bottom: none;
    }

    .in_youshi .item .list .title {
        font-size: 21px;
    }

    .in_youshi .item .list .con {
        margin: 4% 0 13% 0;
    }

    .in_youshi .item .list .shu {
        font-size: 25px;
    }

    .in_youshi .item .list .img1 {
        width: 42%;
    }

    .in_youshi .item .list .text .inner {
        margin-top: 9%;
    }

    .in_adv .left .thr .a2 {
        line-height: 40px;
        font-size: 16px;
    }

    .in_adv .right {
        display: none;
    }

    .in_adv {
        height: 230px;
    }

    .in_adv .left {
        float: none;
        margin: 0% auto 0 auto;
        padding-top: 16%;
        width: 100%;
    }

    .in_adv .left .fir {
        font-size: 21px;
    }

    .in_adv .left .sec {
        margin: 2% 0 6% 0;
    }

    .in_adv .left .sec span {
        font-size: 16px;
    }

    .in_adv .left .thr {
        width: 100%;
    }

    .in_adv .left .thr .a1 span {
        font-size: 20px;
    }

    .in_adv .right img {
        max-width: 57%;
    }

    .caselunbo .imgbox {
        height: 221px;
    }

    .caselunbo .title .t {
        font-size: 24px;
    }

    .caselunbo .swiper-slide {
        width: 75% !important;
    }

    .caselunbo .but {
        width: 94%;
        top: 42%;
    }

    .caselunbo .title {
        display: none;
    }

    .but_fang {
        width: 40px;
        height: 40px;
    }

    .but_fang:after {
        font-size: 17px;
    }

    .in_news_lunbo .swiper-slide .time {
        margin-bottom: 4%;
    }

    .in_news_lunbo .swiper-slide .time .t1 {
        font-size: 26px;
    }

    .in_news_lunbo .swiper-slide .time .t2 {
        font-size: 16px;
    }

    .in_news_lunbo .swiper-slide .title {
        font-size: 18px;
    }

    .in_news_lunbo .swiper-slide .con {
        line-height: 23px;
        font-size: 14px;
        margin: 3% 0;
        -webkit-line-clamp: 2;
    }

    .in_news_lunbo .swiper-slide .imgbox {
        height: 200px;
    }

    .in_news_lunbo .allmore a span {
        margin-right: 4px;
        margin-left: 14px;
    }

    .footerbox .f-top {
        height: auto;
        display: block;
        padding: 5% 0;
    }

    .footerbox .ft .title a {
        font-size: 18px;
    }

    .footerbox .ft .line {
        width: 22px;
        height: 1px;
    }

    .footerbox .f-top .item .list .icon {
        width: 55px;
        height: 55px;
    }

    .footerbox .f-bottom .fmenu .list .abox a span {
        font-size: 15px;
    }

    .footerbox .f-bottom .lxbox {
        font-size: 17px;
        width: 100%;
    }

    .footerbox .f-top .item .list .text .title {
        font-size: 18px;
    }

    .footerbox .f-top .logo img {
        max-width: 100%;
    }

    .footerbox .f-top .item {
        width: 100%;
        margin-top: 5%;
        display: none;
    }

    .footerbox .f-bottom .fmenu .erbox {
        width: 100px;
        height: 100px;
    }

    .footerbox .f-bottom .fmenu {
        width: 100%;
        margin-top: 5%;
    }

    .footerbox .f-bottom .fmenu .list {
        display: none;
    }

    .footerbox .f-bottom .lxbox .list {
        margin-bottom: 5%;
    }

    .copy {
        text-align: center;
        line-height: inherit;
    }

    .copy .warpper {
        padding: 5% 0;
    }

    .copy .left {
        float: none;
    }

    .copy .right {
        float: none;
    }

    .sbanner {
        height: 230px;
    }

    .sbanner .text {
        top: 42%;
    }

    .sbanner .text .fir {
        font-size: 18px;
        margin: 0 0 2% 0;
        letter-spacing: 0;
    }

    .sbanner .text .sec {
        font-size: 12px;
    }

    .otherprobox .imgbox img {

    }

    .inner-company-fir .con .text {
        width: 100%;
    }

    .inner-company-fir .con .imgbox {
        display: none;
    }

    .inner-company-fir .con .text .title {
        font-size: 16px;
        padding-left: 28px;
        background-size: 18px;
    }

    .inner-company-fir .con .text .des {
        line-height: 28px;
    }

    .inner-company-fir .shuzi-item .list {
        width: 100%;
        height: 105px;
        padding-left: 9%;
        border-radius: 20px 0 20px 0;
    }

    .inner-company-fir .shuzi-item .list:nth-last-child(-n+2) {
        margin-top: 4%;
    }

    .inner-company-fir .shuzi-item .list .icon {
        width: 49px;
        height: 49px;
        margin-right: 13px;
        margin-bottom: 3%;
    }

    .inner-company-fir .shuzi-item .list .icon img {
        max-width: 48%;
    }

    .inner-company-fir .shuzi-item .list .text .t1 {
        font-size: 28px;
    }

    .inner-company-fir .shuzi-item .list .text .t2 {
        font-size: 14px;
    }

    .inner-company-fir .shuzi-item .list .inner {
        justify-content: left;
    }

    .inner-company-sec .item {
        height: 223px;
    }

    .inner-company-sec .item .list .imgbox {
        display: none;
    }

    .inner-company-sec .item .list.act .imgbox {
        display: none;
    }

    .inner-company-sec .item .list.act .text {
        width: 100%;
    }

    .inner-company-sec .item .list {
        width: 33.33%;
    }

    .inner-company-sec .item .list.act {
        width: 33.33%;
    }

    .inner-company-sec .item .list .text .wenxi .title {
        font-size: 18px;
        margin-bottom: 49%;
    }

    .inner-company-sec .item .list .text .wenxi .title:after {
        height: 1px;
    }

    .inner-company-sec .item .list .text .wenxi .icon {
        height: 32px;
    }

    .inner-company-thr .factlunbo .swiper-slide .imgbox {
        height: 246px;
    }

    .allpro .imgbox .meng span {
        font-size: 14px;
    }

    .inner-con-fir .con {
        height: auto;
    }

    .inner-con-fir .con .lxbox {
        width: 100%;
        padding: 6% 0;
    }

    .inner-con-fir .con .telbox {
        width: 100%;
        padding: 6% 0;
    }

    .inner-con-fir .con .lxbox .inner {
        padding: 0 7%;
    }

    .inner-con-fir .con .lxbox .tbox .t1 {
        font-size: 20px;
    }

    .inner-con-fir .con .lxbox .tbox .t2 {
        display: none;
    }

    .inner-con-fir .con .lxbox .tbox {
        margin-bottom: 4%;
    }

    .inner-con-fir .con .lxbox .pboxout .pbox p {
        margin-bottom: 1%;
    }

    .inner-con-fir .con .lxbox .pboxout .erbox {
        width: 124px;
        margin-left: 0;
        margin-top: 4%;
    }

    .inner-con-fir .con .telbox .inner {
        padding: 0 7%;
    }

    .inner-con-fir .con .telbox .t {
        font-size: 20px;
    }

    .inner-con-fir .con .telbox .t1:nth-child(2) {
        display: none;
    }

    .inner-con-fir .con .telbox .t2 {
        font-size: 22px;
    }

    .inner-con-fir .con .telbox .t111 {
        margin-top: 3%;
    }

    .cont-ditu {
        height: 210px;
    }

    .cont-ditu .make {
        width: 90%;
        top: 11%;
    }

    .cont-ditu .make .icon {
        width: 24px;
        height: 24px;
    }

    .cont-ditu .make .text .t1 {
        font-size: 16px;
    }

    .cont-ditu .make .text .t2 {
        font-size: 14px;
        margin-top: 0;
    }

    .inner-con-thr .tbox .t1 {
        font-size: 20px;
    }

    .inner-con-thr .tbox .t2 {
        font-size: 14px;
    }

    .inner-con-thr .con .left {
        width: 100%;
    }

    .inner-con-thr .con .right {
        width: 100%;
        margin-top: 5%;
    }

    .inner-con-thr .con .left .img {
        height: 131px;
    }

    .inner-con-thr .con .left .item .list:first-child {
        margin-right: 6%;
    }

    .inner-con-thr .con .left .item .list .icon {
        width: 30px;
        height: 30px;
    }

    .inner-con-thr .con .left .item .list .icon img {
        max-width: 62%;
    }

    .inner-con-thr .con .left .item .list .text .t1 {
        font-size: 14px;
    }

    .inner-con-thr .con .left .item .list .text .t2 {
        font-size: 15px;
    }

    .inner-con-thr .con .right .form_top .inputbox {
        width: 100%;
        margin-bottom: 10px;
    }

    .inner-con-thr .con .right .form_top .inputbox .icon {
        width: 50px;
        height: 40px;
    }

    .inner-con-thr .con .right .form_top .inputbox input {
        line-height: 40px;
    }

    .inner-con-thr .con .right .form_top .inputbox input {
        font-size: 14px;
    }

    .inner-con-thr .con .right .form_top .inputbox input::-moz-placeholder {
        font-size: 14px;
    }

    .inner-con-thr .con .right .form_top .inputbox input::placeholder {
        font-size: 14px;
    }

    .inner-con-thr .con .right textarea {
        font-size: 14px;
    }

    .inner-con-thr .con .right textarea::-moz-placeholder {
        font-size: 14px;
    }

    .inner-con-thr .con .right textarea::placeholder {
        font-size: 14px;
    }

    .inner-con-thr .con .right textarea {
        height: 101px;
        font-size: 16px;
        padding: 14px 21px;
        margin-bottom: 10px;
    }

    .inner-con-thr .con .right .submit {
        font-size: 16px;
        line-height: 40px;
    }


}

* {
    padding: 0;
    margin: 0;
}

html, body {
    font-size: 12px;
    font-family: "微软雅黑";
    outline: none;
    color: #666;
    background: #fff;
}

ul, ol {
    list-style: none;
}

img {
    border: none;
    outline: none;
}

a {
    color: #666;
    text-decoration: none;
    outline: none;
}

a:hover {
    color: #e8431f;
}

/*浮动客服*/
#floatDivBoxs {
    width: 170px;
    background: #fff;
    position: fixed;
    top: 180px;
    right: 0;
    z-index: 999;
}

#floatDivBoxs .floatDtt {
    width: 100%;
    height: 45px;
    line-height: 45px;
    background: #f08326;
    color: #fff;
    font-size: 18px;
    text-indent: 22px;
    position: relative;
}

#floatDivBoxs .floatDqq {
    padding: 0 14px;
}

#floatDivBoxs .floatDqq li {
    height: 45px;
    line-height: 45px;
    font-size: 15px;
    border-bottom: 1px solid #e3e3e3;
    padding: 0 0 0 50px;
}

#floatDivBoxs .floatDtxt {
    font-size: 18px;
    color: #333;
    padding: 12px 14px;
}

#floatDivBoxs .floatDtel {
    padding: 0 0 15px 10px;
}

#floatDivBoxs .floatDtel img {
    display: block;
}

#floatDivBoxs .floatDbg {
    width: 100%;
    height: 20px;
    background: url(../images/online_botbg.jpg?ebb0ebf44b64d40dbda5d5e1a883fa25) no-repeat;
    box-shadow: -2px 0 3px rgba(0, 0, 0, 0.25);
}

.floatShadow {
    background: #fff;
    box-shadow: -2px 0 3px rgba(0, 0, 0, 0.25);
}

#rightArrow {
    width: 50px;
    height: 45px;
    background: url(../images/online_arrow.jpg?7e04385464d80b9fa3c617ee1cee950e) no-repeat;
    position: fixed;
    top: 180px;
    right: 170px;
    z-index: 999;
}

#rightArrow a {
    display: block;
    height: 45px;
}

@charset "UTF-8";
.pagebar .pagination .page-item.active .page-link {
    color: #fff;
    background: #333;
    border: 1px solid #333;
}

.pagebar .pagination .page-item .page-link {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-size: 12px;
    padding: 8px 10px;
    margin: 0 2px;
    border-radius: 3px;
    line-height: 100%;
}

.pagebar .pagination .page-item:first-child {
    font-family: 宋体;
}

.banner-button {
    display: block;
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: #c32629;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 40px;
}

.banner-button:hover {
    color: #fff;
}
