@charset "utf-8";

/* CSS Document */
@media only screen and (min-width: 800px) {
    ::-webkit-scrollbar {
        width: 5px;
        height: 5px;
        background-color: #000;
    }

    /*定义滚动条轨道 内阴影+圆角*/
    ::-webkit-scrollbar-track {
        border-radius: 0px;
        background: #6b747b;
    }

    /*定义滑块 内阴影+圆角*/
    ::-webkit-scrollbar-thumb {
        border-radius: 0px;
        background-color: #000;
    }
}

@font-face {
    font-family: 'ziti';
    src: url("../fonts/tt0246m_0.ttf");
}

/*=========
  基本默认值
  ==========*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-word-break: normal !important;
    word-break: normal !important;
    word-wrap: break-word !important;
}

html {
    min-height: 100%;
}

body {
    min-height: 100%;
    font-size: 12px;
    color: #000;
    font-family: "sans-serif";
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

li {
    list-style: none;
}

img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
}

a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    color: #000;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
}

::after,
::before {
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
}

table {
    border-collapse: collapse;
}

input,
textarea,
select {
    font-family: "sans-serif";
    font-size: 12px;
    outline: none;
}

/* =========
  工具样式
  ========== */
.clearfix:before,
.clearfix:after {
    content: "";
    display: block;
}

.clearfix:after {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.fg {
    clear: both;
}

.donghua {
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
}

.all {
    max-width: 100%;
    /*overflow: hidden;*/
}

/*图片通用样式*/
.img-common {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-background-size: cover;
}

/*Flex居中样式*/
.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/*动画*/
.donghua {
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
}

/*文字溢出*/
.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}


/* =========

  首页

  ========== */
.wrap {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
}

/*中间广告轮播*/
.banner {
    position: relative;
    background-color: #ccc;
    margin-top: 105px;
}

.banner .my-swiper .swiper-slide {
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.banner .my-swiper .swiper-slide img {
    width: 100%;
}

.banner .my-swiper .swiper-slide a {
    display: block;
    height: 100%;
    position: relative;
}

.banner .my-swiper .swiper-slide a .inbox {
    bottom: 210px;
    position: absolute;
    left: 14.3%;
    z-index: 11;
    width: 80%;
}

.banner .my-swiper .swiper-slide a .inbox .title {
    font-size: 38px;
    color: #ffffff;
    font-family: "ziti";
    font-weight: bold;
    line-height: 2;
    max-height: 144px;
    overflow: hidden;
    max-width: 660px;
    margin-bottom: 20px;
}

.banner .my-swiper .swiper-slide a .inbox .line {
    height: 50px;
    width: 1px;
    background-color: #fff;
    margin-top: 10px;
    margin-bottom: 22px;
}

.banner .my-swiper .swiper-slide a .inbox .more {
    width: 104px;
    height: 39px;
    text-align: center;
    line-height: 39px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    background-color: #da251d;
    border-radius: 20px;
}

.banner .my-swiper .scrolldowm {
    position: absolute;
    bottom: 0;
    right: 5.2%;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-size: 12px;
    color: #ffffff;
    font-weight: bold;
    z-index: 10;
    padding-bottom: 30px;
    font-family: "Arial";
    width: 24px;
    cursor: pointer;
}

.banner .my-swiper .scrolldowm:after {
    content: '';
    display: block;
    background-color: #fff;
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 100%;
    width: 1px;
    -webkit-animation: elastic 2.5s infinite;
    animation: elastic 2.5s infinite;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

@-webkit-keyframes elastic {
    0% {
        height: 100%;
    }

    90% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

@keyframes elastic {
    0% {
        height: 100%;
    }

    90% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

.banner .my-swiper .btn {
    position: absolute;
    top: 50%;
    height: 60px;
    width: 60px;
    z-index: 10;
    cursor: pointer;
    margin-top: -30px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, .1);
}

.banner .my-swiper .my-prev {
    left: 50px;
}

.banner .my-swiper .my-next {
    right: 50px;
}

.banner .my-swiper .btn:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 50%;
    left: 50%;
    margin-top: -4px;
    margin-left: -4px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.banner .my-swiper .my-prev:after {
    border-top: 2px solid #f4f4f5;
    border-left: 2px solid #f4f4f5;
}

.banner .my-swiper .my-next:after {
    border-bottom: 2px solid #f4f4f5;
    border-right: 2px solid #f4f4f5;
}

.banner .my-swiper .my-pagination {
    position: absolute;
    bottom: 30px;
    text-align: center;
    left: 0;
    z-index: 11;
}

.banner .my-swiper .my-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #fff;
    opacity: 1;
    vertical-align: middle;
}

.banner .my-swiper .my-pagination .swiper-pagination-bullet-active {
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 1px solid #fff;
    position: relative;
}

.banner .my-swiper .my-pagination .swiper-pagination-bullet-active:after {
    content: "";
    width: 4px;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    margin-left: -2px;
    margin-top: -2px;
    background-color: #fff;
}

.banner .my-swiper .swiper-slide {
    -webkit-transform: scale(0.85);
    -moz-transform: scale(0.85);
    -ms-transform: scale(0.85);
    -o-transform: scale(0.85);
    transform: scale(0.85);
}

.banner .my-swiper .swiper-slide-active {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-animation: myscale 1.7s;
    -moz-animation: myscale 1.7s;
    -ms-animation: myscale 1.7s;
    -o-animation: myscale 1.7s;
    animation: myscale 1.7s;
}

@-webkit-keyframes myscale {

    0%,
    50% {
        -webkit-transform: scale(0.85);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes myscale {

    0%,
    50% {
        -moz-transform: scale(0.85);
    }

    100% {
        -moz-transform: scale(1);
    }
}

@-ms-keyframes myscale {

    0%,
    50% {
        -ms-transform: scale(0.85);
    }

    100% {
        -ms-transform: scale(1);
    }
}

@-o-keyframes myscale {

    0%,
    50% {
        -o-transform: scale(0.85);
    }

    100% {
        -o-transform: scale(1);
    }
}

@keyframes myscale {

    0%,
    50% {
        transform: scale(0.85);
    }

    100% {
        transform: scale(1);
    }
}

@media only screen and (max-width: 1660px) {
    .banner .my-swiper .swiper-slide a .inbox {
        bottom: 150px;
    }
}

@media only screen and (max-width: 1440px) {
    .banner .my-swiper .my-prev {
        left: 40px;
    }

    .banner .my-swiper .my-next {
        right: 40px;
    }

    .banner .my-swiper .swiper-slide a .inbox .title {
        font-size: 30px;
    }

    .banner .my-swiper .swiper-slide a .inbox .line {
        height: 40px;
    }

    .banner .my-swiper .swiper-slide a .inbox {
        bottom: 120px;
    }
}

@media only screen and (max-width: 1280px) {
    .banner .my-swiper .swiper-slide a .inbox {
        bottom: 100px;
    }
}

@media only screen and (max-width: 1024px) {
    .banner .my-swiper .btn {
        width: 50px;
        height: 50px;
        margin-top: -25px;
    }

    .banner .my-swiper .swiper-slide a .inbox .title {
        font-size: 24px;
    }

    .banner .my-swiper .swiper-slide a .inbox .line {
        height: 30px;
    }

    .banner .my-swiper .swiper-slide a .inbox {
        bottom: 50px;
    }

    .banner .my-swiper .scrolldowm {
        padding-bottom: 15px;
    }

    .banner .my-swiper .my-pagination {
        bottom: 15px;
    }

    .banner .my-swiper .my-prev {
        left: 30px;
    }

    .banner .my-swiper .my-next {
        right: 30px;
    }
}

@media only screen and (max-width: 1023px) {
    .banner {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 800px) {
    .banner .my-swiper .btn {
        display: none;
    }

    .banner .my-swiper .my-prev {
        left: 20px;
    }

    .banner .my-swiper .my-next {
        right: 20px;
    }

    .banner .my-swiper .swiper-slide img {
        display: none;
    }

    .banner .my-swiper {
        height: 350px;
    }

    .banner .my-swiper .swiper-slide a .inbox .title {
        font-size: 20px;
    }

    .banner .my-swiper .swiper-slide a .inbox .line {
        height: 24px;
        margin-top: 8px;
        margin-bottom: 15px;
    }

    .banner .my-swiper .swiper-slide a .inbox .more {
        width: 100px;
        height: 30px;
        line-height: 30px;
    }

    .banner .my-swiper .swiper-slide a .inbox {
        bottom: initial;
        top: 50%;
        transform: translateY(-50%);
    }

    .banner .my-swiper .my-pagination {
        bottom: 10px;
    }
}

@media only screen and (max-width: 600px) {
    .banner .my-swiper .scrolldowm {
        display: none;
    }

    .banner .my-swiper {
        height: 280px;
    }

    .banner .my-swiper .btn {
        width: 30px;
        height: 30px;
        margin-top: -15px;
    }

    .banner .my-swiper .my-prev:after {
        margin-left: -3px;
    }

    .banner .my-swiper .my-next:after {
        margin-left: -5px;
    }

    .banner .my-swiper .swiper-slide a .inbox .title {
        font-size: 16px;
    }

    .banner .my-swiper .swiper-slide a .inbox .line {
        height: 18px;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .banner .my-swiper .swiper-slide a .inbox .more {
        width: 90px;
        font-size: 12px;
    }

    .banner .my-swiper .my-prev {
        left: 5px;
    }

    .banner .my-swiper .my-next {
        right: 5px;
    }

    .banner .my-swiper .swiper-slide a .inbox {
        width: 80%;
    }
}

@media only screen and (max-width: 414px) {
    .banner .my-swiper {
        height: 210px;
    }
}

/*中间广告轮播 End*/
/*index-middle-box*/
.index-middle-box {
    position: relative;
}

.index-middle-box:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(../images/bg02.png);
    background-repeat: no-repeat;
    width: 517px;
    height: 668px;
}

.index-middle-box .top {
    height: 115px;
    line-height: 114px;
    border-bottom: 1px solid #dadada;
    background-color: #e6e8e9;
}

.index-middle-box .top .inbox {
    font-size: 30px;
    color: #788589;
    font-family: "ziti";
}

.index-middle-box .middle {
    background-image: url(../images/bg03.png);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}

.index-middle-box .middle .inbox {
    position: relative;
    z-index: 1;
}

.index-middle-box .middle .inbox .mtop {
    padding-top: 20px;
}

.index-middle-box .middle .inbox .mtop .right {
    width: 65%;
    display: block;
    padding-top: 50px;
}

.index-middle-box .middle .inbox .mtop .left {
    display: block;
    width: 35%;
    text-align: right;
}

.index-middle-box .middle .inbox .mtop .left img {
    max-height: 368px;
}

.index-middle-box .middle .inbox .mtop .right .line {
    width: 24px;
    height: 2px;
    background-color: #151515;
    margin-bottom: 10px;
}

.index-middle-box .middle .inbox .mtop .right .title {
    font-size: 30px;
    color: #212121;
    font-family: "ziti";
    line-height: 1.5;
    height: 45px;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.index-middle-box .middle .inbox .mtop .right .desc {
    font-size: 14px;
    color: #788589;
    line-height: 1.8;
    margin-top: 25px;
    margin-bottom: 50px;
}

.index-middle-box .middle .inbox .mtop .right .icon {
    width: 50px;
    height: 50px;
    background-color: #da251d;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.index-middle-box .list {
    margin-top: 50px;
}

.index-middle-box .list a {
    width: 49.08%;
    position: relative;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.index-middle-box .list .right {
    margin-top: 110px;
}

.index-middle-box .list a img {
    width: 100%;
}

.index-middle-box .list a .title {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 44px;
    color: #ffffff;
    font-family: "ziti";
    white-space: nowrap;
}

.index-middle-box .list a .more {
    position: absolute;
    bottom: 9.8%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 210px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid #fff;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    border-radius: 30px;
}

.index-middle-box .bottom {
    background-color: #e4e5e5;
    margin-top: -205px;
    background-image: url(../images/bg04.png);
    background-repeat: no-repeat;
    background-position: top center;
    padding-bottom: 150px;
    background-size: 100%;
}

.index-middle-box .bottom .btop {
    padding-top: 196px;
    margin-top: 55px;
}

.index-middle-box .bottom .btop .d1 {
    font-size: 30px;
    color: #212121;
    font-family: "ziti";
}

.index-middle-box .bottom .btop .d2 {
    font-size: 14px;
    color: #788589;
    width: 60%;
    line-height: 24px;
}

.index-middle-box .bmiddle {
    max-width: 1720px;
    position: relative;
}

.index-middle-box .bmiddle .indexproduct-swiper {
    max-width: 1620px;
    width: calc(100% - 100px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
}

.indexproduct-swiper .swiper-slide a {
    display: block;
    padding-top: 50px;
    border-top: 1px solid #bdbdbd;
    margin-top: 20px;
}

.indexproduct-swiper .swiper-slide a .imgbox {
    overflow: hidden;
    width: 70.19%;
    margin-left: auto;
    margin-right: auto;
}

.indexproduct-swiper .swiper-slide a .imgbox .inbox {
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}

.indexproduct-swiper .swiper-slide a .imgbox .inbox .img {
    padding-top: calc(365 / 365 * 100%);
}

.indexproduct-swiper .swiper-slide a .line {
    width: 24px;
    height: 2px;
    background-color: #da251d;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 15px;
}

.indexproduct-swiper .swiper-slide a .title {
    text-align: center;
    font-size: 16px;
    color: #282828;
    line-height: 1.5;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-family: "ziti";
}

.index-middle-box .bmiddle .btn {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: 32px;
    cursor: pointer;
}

.index-middle-box .bmiddle .btn:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 2px;
    background-color: #da251d;
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
    margin-top: -1px;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
}

.index-middle-box .bmiddle .btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 2px;
    background-color: #da251d;
    -webkit-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
    margin-top: -1px;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
}

.index-middle-box .bmiddle .ip-prev {
    left: 0;
}

.index-middle-box .bmiddle .ip-next {
    right: 0;
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

@media only screen and (min-width: 601px) {
    .index-middle-box .list a:hover {
        opacity: 0.85;
    }

    .indexproduct-swiper .swiper-slide:hover a .imgbox .inbox {
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
    }

    .indexproduct-swiper .swiper-slide:hover a .title {
        color: #da251d;
    }
}

@media only screen and (max-width: 1600px) {}

@media only screen and (max-width: 1440px) {}

@media only screen and (max-width: 1280px) {
    .index-middle-box .top {
        height: 81px;
        line-height: 80px;
    }

    .index-middle-box .top .inbox {
        font-size: 24px;
    }

    .index-middle-box:after {
        -webkit-transform: scale(.7);
        -ms-transform: scale(.7);
        -moz-transform: scale(.7);
        -o-transform: scale(.7);
        transform: scale(.7);
        -webkit-transform-origin: 100% 0;
        -moz-transform-origin: 100% 0;
        -ms-transform-origin: 100% 0;
        -o-transform-origin: 100% 0;
        transform-origin: 100% 0;
    }

    .index-middle-box .middle .inbox .mtop .right .desc {
        margin-bottom: 40px;
    }

    .index-middle-box .list .right {
        margin-top: 90px;
    }

    .indexproduct-swiper .swiper-slide a {
        margin-top: 0;
        padding-top: 30px;
    }

    .index-middle-box .bmiddle .btn {
        margin-top: 12px;
    }

    .indexproduct-swiper .swiper-slide a .imgbox {
        width: 90%;
    }

    .index-middle-box .bottom .btop .d1 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 1024px) {
    .index-middle-box .middle {
        /*padding-top: 6%;*/
    }

    .index-middle-box .list {
        margin-top: 5%;
    }

    .index-middle-box .list .right {
        margin-top: 60px;
    }

    .index-middle-box .middle .inbox .mtop .right .desc {
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .index-middle-box .bottom .btop .d1 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 800px) {

    .index-middle-box:after {
        -webkit-transform: scale(.4);
        -ms-transform: scale(.4);
        -moz-transform: scale(.4);
        -o-transform: scale(.4);
        transform: scale(.4);
    }

    .index-middle-box .top {
        height: 46px;
        line-height: 46px;
    }

    .index-middle-box .top .inbox {
        font-size: 20px;
    }

    .index-middle-box .middle .inbox .mtop .right .title {
        font-size: 24px;
        height: 36px;
    }

    .index-middle-box .middle .inbox .mtop .right .icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .index-middle-box .middle .inbox .mtop .right .desc {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .index-middle-box .list .right {
        margin-top: 40px;
    }

    .index-middle-box .list a .title {
        font-size: 36px;
    }

    .index-middle-box .bmiddle .indexproduct-swiper {
        width: calc(100% - 70px);
    }

    .index-middle-box .bmiddle .btn {
        margin-top: 8px;
    }

    .indexproduct-swiper .swiper-slide a {
        padding-top: 20px;
    }

    .indexproduct-swiper .swiper-slide a .line {
        margin-top: 15px;
        margin-bottom: 8px;
    }

    .index-middle-box .bottom .btop .d2 {
        width: 100%;
    }

    .index-middle-box .bottom .btop .d1 {
        font-size: 22px;
    }

}

@media only screen and (max-width: 600px) {

    .index-middle-box .middle .inbox .mtop .left,
    .index-middle-box .middle .inbox .mtop .right {
        float: none;
        width: 100%;
    }

    .index-middle-box .middle .inbox .mtop .right {
        margin-top: 3%;
    }

    .index-middle-box .list a {
        float: none;
        width: 100%;
    }

    .index-middle-box .list a img {
        width: 70%;
    }

    .index-middle-box .list .right {
        margin-top: 5%;
    }

    .index-middle-box .bottom .btop .d1 {
        margin-top: 5%;
        font-size: 20px;
    }
}

@media only screen and (max-width: 500px) {
    .indexproduct-swiper .swiper-slide a {
        padding-top: 10px;
    }

    .index-middle-box .bmiddle .btn {
        margin-top: 2px;
    }

    .index-middle-box .bmiddle .indexproduct-swiper {
        width: calc(100% - 60px);
    }
}

@media only screen and (max-width: 414px) {
    .index-middle-box:after {
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        -moz-transform: scale(.3);
        -o-transform: scale(.3);
        transform: scale(.3);
    }

    .index-middle-box .top {
        height: 35px;
        line-height: 34px;
    }

    .index-middle-box .top .inbox {
        font-size: 16px;
    }

    .index-middle-box .middle .inbox .mtop .right .title {
        font-size: 20px;
        height: 30px;
    }

    .index-middle-box .middle .inbox .mtop .right .desc {
        margin-top: 5px;
        margin-bottom: 10px;
        font-size: 12px !important;
    }

    .index-middle-box .middle .inbox .mtop .right .icon {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .index-middle-box .list a .title {
        font-size: 30px;
    }

    .index-middle-box .list a .more {
        width: 150px;
        height: 40px;
        line-height: 40px;
    }

    .index-middle-box .bottom .btop .d1 {
        font-size: 24px;
    }

    .index-middle-box .bmiddle .indexproduct-swiper {
        margin-top: 15px;
    }

    .index-middle-box .bmiddle .btn {
        margin-top: -3px;
    }
}

/*index-middle-box End*/
/*index-bottom*/
.index-bottom .ivideo-box {
    background: -webkit-linear-gradient(#4a5862, #303940);
    background: -moz-linear-gradient(#4a5862, #303940);
    background: -ms-linear-gradient(#4a5862, #303940);
    background: linear-gradient(#4a5862, #303940);
    padding-top: 35px;
    position: relative;
    padding-bottom: 142px;
}

.index-bottom .ivideo-box .tit {
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-family: "ziti";
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 68px;
}

.index-bottom .ivideo-box .tit::after {
    content: "";
    width: 25px;
    height: 2px;
    background-color: #da251d;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -12.5px;
}

.index-bottom .ivideo-box .partners {
    max-width: 1521px;
    margin-left: auto;
    margin-right: auto;
    width: 94%;
    overflow: hidden;
}

.index-bottom .ivideo-box .partners .partners-swiper .swiper-slide {
    margin-bottom: 80px;
}

.index-bottom .ivideo-box .partners .partners-swiper .swiper-slide .img {
    padding-top: calc(59 / 169 * 100%);
}

.index-bottom .ivideo-box .innew {
    background-color: #fff;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1521px;
    overflow: hidden;
    padding: 26px 0 28px 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 88;
}

.index-bottom .ivideo-box .innew .bbottom {
    max-width: 1161px;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 46px;
}

.index-bottom .ivideo-box .innew .bbottom .left {
    font-size: 30px;
    color: #000;
    overflow: hidden;
    font-family: "ziti";
    line-height: 1;
}

.index-bottom .ivideo-box .innew .bbottom .more {
    position: relative;
    width: 23px;
    height: 23px;
}

.index-bottom .ivideo-box .innew .bbottom .more::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 23px;
    height: 2px;
    background-color: #f50100;
    margin-top: -1px;
}

.index-bottom .ivideo-box .innew .bbottom .more::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 23px;
    background-color: #f50100;
    margin-left: -1px;
}

.index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1161px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox .imgbox {
    float: left;
    width: 310px;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox .imgbox .img {
    padding-top: calc(160 / 310 * 100%);
    transition: all .5s;
}

.index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox .right {
    float: left;
    margin-left: 3.33%;
    width: calc(96% - 310px);
}

.index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox .right .title {
    font-size: 16px;
    color: #2a2a2a;
    line-height: 1.5;
    height: 24px;
    font-family: "ziti";
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}

.index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox .right .data {
    font-size: 13px;
    color: #888888;
    margin-bottom: 8px;
}

.index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox .right .desc {
    font-size: 12px;
    line-height: 1.5;
    height: 36px;
    color: #888888;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox .right .more {
    color: #da251d;
    font-size: 12px;
}

.index-bottom .ivideo-box .innew .tjnews-swiper {
    margin: 0 53px;
    padding: 0 50px;
}

.index-bottom .ivideo-box .innew .tjnews-swiper .nbtn {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
}

.index-bottom .ivideo-box .innew .tjnews-swiper .nbtn.tjnews-prev {
    left: 0;
}

.index-bottom .ivideo-box .innew .tjnews-swiper .nbtn.tjnews-next {
    right: 0;
}

.index-bottom .ivideo-box .innew .tjnews-swiper .nbtn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #da251d #da251d transparent transparent;
    margin-top: -5px;
}

.index-bottom .ivideo-box .innew .tjnews-swiper .nbtn.tjnews-prev::before {
    border-color: transparent transparent #da251d #da251d;
    transform: rotate(45deg);
    margin-left: -3px;
}

.index-bottom .ivideo-box .innew .tjnews-swiper .nbtn.tjnews-next::before {
    border-color: #da251d #da251d transparent transparent;
    transform: rotate(45deg);
    margin-left: -6px;
}

@media only screen and (min-width: 600px) {
    .index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox:hover .right .title {
        text-decoration: underline;
    }

    .index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox:hover .imgbox .img {
        transform: scale(1.1);
    }
}

@media only screen and (max-width: 1440px) {
    .index-bottom .ivideo-box .tit {
        margin-bottom: 45px;
    }

    .index-bottom .ivideo-box .partners .partners-swiper .swiper-slide {
        margin-bottom: 55px;
    }
}

@media only screen and (max-width: 1280px) {
    .index-bottom .ivideo-box .tit {
        margin-bottom: 4%;
    }

    .index-bottom .ivideo-box .partners .partners-swiper .swiper-slide {
        margin-bottom: 3%;
    }

    .index-bottom .ivideo-box .innew .bbottom {
        margin-bottom: 30px;
    }

    .index-bottom .ivideo-box .innew .bbottom .left {
        font-size: 26px;
    }

    .index-bottom .ivideo-box .innew .tjnews-swiper {
        margin: 0 2%;
        padding: 0 4%;
    }
}

@media only screen and (max-width: 1024px) {
    .index-bottom .ivideo-box {
        padding-bottom: 120px;
    }

    .index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox .imgbox {
        width: 30%;
    }

    .index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox .right {
        width: 66%;
    }

    .index-bottom .ivideo-box .innew .bbottom {
        margin-bottom: 2%;
    }

    .index-bottom .ivideo-box .innew .tjnews-swiper .nbtn {
        width: 30px;
    }

    .index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox .right .desc {
        margin-bottom: 2%;
    }
}

@media only screen and (max-width: 800px) {
    .index-bottom .ivideo-box .innew {
        padding: 3% 0;
    }

    .index-bottom .ivideo-box .innew .bbottom .left {
        font-size: 22px;
    }
}

@media only screen and (max-width: 600px) {
    .index-bottom .tjnewsBox .imgbox {
        width: 120px;
    }

    .index-bottom .tjnewsBox .right {
        width: calc(96% - 120px);
    }

    .index-bottom .tjnewsBox .right .title {
        font-size: 14px;
        height: 21px;
    }

    .index-bottom .tjnewsBox .right .data {
        font-size: 12px;
        line-height: 1;
        margin-top: 3px;
        margin-bottom: 6px;
    }

    .index-bottom .tjnewsBox .right .desc {
        margin-bottom: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .index-bottom .ivideo-box {
        padding-bottom: 8%;
    }

    .index-bottom .ivideo-box .innew {
        position: relative;
        left: 0;
        transform: translateX(0);
        margin-top: 2%;
    }

    .index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox {
        flex-direction: column;
    }

    .index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox .imgbox {
        width: 100%;
    }

    .index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox .right {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }

    .index-bottom .ivideo-box .innew .tjnews-swiper .nbtn {
        width: 16px;
    }

    .index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox .right .title {
        white-space: normal;
        height: auto;
    }

    .index-bottom .ivideo-box .innew .tjnews-swiper .tjnewsBox .right .desc {
        display: block;
        height: auto;
    }
}

/*index-bottom End*/
/*index-news*/
.index-news {
    background-color: #f5f5f5;
    position: relative;
    z-index: 1;
}

.index-news:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0075c2;
    height: 50%;
    z-index: -1;
}

.index-news .inbox {
    max-width: 1520px;
    background-color: #fff;
    font-family: "Arial";
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    position: relative;
}

.index-news .inbox .idn-swiper {
    max-width: 1200px;
    width: calc(100% - 100px);
    margin-left: auto;
    margin-right: auto;
    border-right: 1px solid #e5e5e5;
}

.index-news .inbox .idn-swiper .swiper-slide a {
    display: block;
    padding-top: 45px;
    padding-bottom: 45px;
    border-left: 1px solid #e5e5e5;
    padding-left: 40px;
}

.index-news .inbox .idn-swiper .swiper-slide .data {
    font-size: 13px;
    color: #a0a0a0;
}

.index-news .inbox .idn-swiper .swiper-slide .title {
    font-size: 16px;
    color: #3b3b3b;
    line-height: 1.5;
    height: 48px;
    overflow: hidden;
    font-family: "Microsoft JhengHei";
    margin-bottom: 22px;
    margin-top: 8px;
}

.index-news .inbox .idn-swiper .swiper-slide .more {
    font-size: 14px;
    color: #0075c2;
}

.index-news .btn {
    position: absolute;
    top: 50%;
    height: 38px;
    width: 38px;
    z-index: 10;
    cursor: pointer;
    margin-top: -19px;
}

.index-news .btn:before {
    content: "";
    width: 38px;
    height: 2px;
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #0075c2;
}

.index-news .idn-prev:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 6px solid #0075c2;
    border-bottom: 6px solid transparent;
    position: absolute;
    top: 15px;
    left: -2px;
}

.index-news .idn-next:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-left: 6px solid #0075c2;
    border-bottom: 6px solid transparent;
    position: absolute;
    top: 15px;
    right: -2px;
}

.index-news .idn-prev {
    left: 3.81%;
}

.index-news .idn-next {
    right: 3.81%;
}

/*index-news End*/
@media only screen and (max-width: 1580px) {
    .index-news .idn-prev {
        left: 2%;
    }

    .index-news .idn-next {
        right: 2%;
    }
}

@media only screen and (max-width: 1440px) {
    .index-news .idn-prev {
        left: 1%;
    }

    .index-news .idn-next {
        right: 1%;
    }

    .index-news .btn {
        width: 30px;
        height: 30px;
        margin-top: -15px;
    }

    .index-news .btn:before {
        width: 28px;
    }
}

@media only screen and (max-width: 1280px) {
    .index-middle-box .bottom {
        padding-bottom: 110px;
    }

    .index-news .inbox .idn-swiper .swiper-slide a {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 1024px) {
    .index-middle-box .bottom {
        padding-bottom: 8%;
    }

    .index-bottom .ivideo-box .mejs-overlay-button {
        width: 50px;
        height: 50px;
        margin: -25px 0 0 -25px;
    }

    .index-bottom .ivideo-box .mejs-overlay-button:after {
        border-top: 6px solid transparent;
        border-left: 8px solid #fff;
        border-bottom: 6px solid transparent;
        margin-top: -6px;
        margin-left: -3px;
    }

    .index-bottom .ivideo-box .inbox .right .title {
        font-size: 24px;
        height: 36px;
        margin-bottom: 25px;
    }

    .index-bottom .ivideo-box .inbox .right .line {
        margin-top: 35px;
        margin-bottom: 12px;
    }

    .index-bottom .ivideo-box .inbox .right .icon {
        width: 42px;
        height: 42px;
        line-height: 42px;
    }

    .index-bottom .ivideo-box .inbox .left {
        margin-top: -80px;
    }

    .index-news .inbox .idn-swiper .swiper-slide a {
        padding-left: 20px;
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .index-news .inbox .idn-swiper .swiper-slide .title {
        font-size: 14px;
        height: 42px;
        margin-bottom: 15px;
    }

    .index-news .idn-prev {
        left: 11px;
    }

    .index-news .idn-next {
        right: 11px;
    }
}

@media only screen and (max-width: 800px) {

    .index-bottom .ivideo-box .inbox .left,
    .index-bottom .ivideo-box .inbox .right {
        float: none;
        width: 100%;
    }

    .index-bottom .bbottom .left {
        font-size: 24px;
    }

    .index-bottom .bbottom .more {
        height: 40px;
        line-height: 40px;
        width: 130px;
    }
}

@media only screen and (max-width: 600px) {
    .index-news .inbox .idn-swiper .swiper-slide a {
        padding-top: 25px;
        padding-bottom: 25px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 414px) {
    .index-bottom .ivideo-box:before {
        height: 50px;
    }

    .index-bottom .ivideo-box .inbox .left {
        margin-top: -50px;
    }

    .index-bottom .ivideo-box .inbox .right .line {
        margin-top: 20px;
        margin-bottom: 8px;
    }

    .index-bottom .ivideo-box .inbox .right .title {
        font-size: 20px;
        height: 30px;
        margin-bottom: 15px;
    }

    .index-bottom .ivideo-box .inbox .right .icon {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 14px;
    }

    .index-bottom .bbottom .left {
        font-size: 20px;
        height: 30px;
        line-height: 30px;
    }

    .index-bottom .bbottom .more {
        height: 30px;
        line-height: 32px;
        width: 100px;
        font-size: 12px;
    }

    .index-news .inbox .idn-swiper .swiper-slide .title {
        margin-bottom: 10px;
    }
}

/*侧边工具栏*/
.toolbar-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 99;
}

.toolbar-box .ul1 li {
    background: -webkit-linear-gradient(left, #da251d, #9a1411);
    background: -o-linear-gradient(right, #da251d, #9a1411);
    background: -moz-linear-gradient(right, #da251d, #9a1411);
    background: linear-gradient(to right, #da251d, #9a1411);
    border: 1px solid rgba(255, 255, 255, .2);
    border-bottom-color: rgba(255, 255, 255, .6);
}

.toolbar-box .ul1 li .d1 {
    color: #fff;
    font-size: 12px;
    margin-top: 10px;
    line-height: 1;
}

.toolbar-box .ul1 li .a1 {
    display: block;
    text-align: center;
}

.toolbar-box .ul1 li .a1.weixin {
    border-bottom: 0;
}

.toolbar-box .ul1 li .qq {
    position: relative;
    border-bottom: 0;
    text-align: center;
}

.toolbar-box .ul1 li .icon {
    display: block;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.toolbar-box .ul1 li .icon img {
    width: 45px;
    height: 45px;
}

.toolbar-box .ul1 li .icon .img1 {
    z-index: 1;
}

.toolbar-box .ul1 li .icon .img2 {
    z-index: -1;
    opacity: 0;
}

.toolbar-box .ul1 li .weixin {
    position: relative;
}

.toolbar-box .ul1 li .weixin .ewm-box {
    position: absolute;
    top: 0px;
    left: -132px;
    width: 125px;
    height: 125px;
    -webkit-transform: scale(0.0001);
    -moz-transform: scale(0.0001);
    -ms-transform: scale(0.0001);
    -o-transform: scale(0.0001);
    transform: scale(0.0001);
}

.toolbar-box .ul1 li .weixin .ewm {
    max-width: none;
    width: 125px;
    height: 125px;
}

.toolbar-box .ul1 li .qq .hover-box {
    position: absolute;
    top: 0px;
    right: 50px;
    width: 170px;
    border: 1px solid #dfdfdf;
    background-color: #fff;
    font-size: 12px;
    color: #e94f25;
    line-height: 24px;
    z-index: 12;
    text-align: center;
    padding: 5px 0;
    -webkit-transform: scale(0.0001);
    -moz-transform: scale(0.0001);
    -ms-transform: scale(0.0001);
    -o-transform: scale(0.0001);
    transform: scale(0.0001);
}

.toolbar-box .ul1 li .qq .hover-box:before {
    content: "";
    position: absolute;
    top: 12px;
    right: -5px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 5px solid #dfdfdf;
    border-bottom: 5px solid transparent;
}

.toolbar-box .ul1 li .qq .hover-box:after {
    content: " ";
    position: absolute;
    top: 12px;
    right: -4px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-left: 4px solid #fff;
    border-bottom: 4px solid transparent;
    margin-top: 1px;
}

.toolbar-box .ul1 li .qq .hover-box .hb-span {
    font-size: 14px;
    color: #515151;
    font-weight: bold;
}

.toolbar-box .ul1 li .qq .hover-box a {
    font-size: 12px;
    color: #333333;
    display: block;
    line-height: 2;
    margin-bottom: 3px;
}

.toolbar-box .ul1 li .qq .hover-box a:last-child {
    margin-bottom: 0;
}

.toolbar-box .ul1 li .qq .hover-box a .color {
    font-size: 12px;
    color: #898989;
}

.toolbar-box .ul1 li .qq .hover-box .bshare-custom a {
    display: inline-block;
}

.toolbar-box .ul1 li .qq .hover-box .bshare-custom a {
    margin-bottom: 3px;
}

.bsBox {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -ms-box-sizing: content-box;
    -o-box-sizing: content-box;
}

.toolbar-box .ul1 .back-top {
    display: none;
    cursor: pointer;
}

@media only screen and (min-width: 601px) {

    .toolbar-box .ul1 li .weixin:hover .ewm-box,
    .toolbar-box .ul1 li .qq:hover .hover-box {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@media only screen and (max-width: 1023px) {
    .toolbar-box .ul1 li.telli {
        display: block;
    }

    .toolbar-box .ul1 li.telli[data-on=""] .qq {
        border-bottom: 0;
    }

    .toolbar-box .ul1 li.telli[data-on="scroll"] .qq {
        border-bottom: 1px solid #fff;
    }

    .toolbar-box .ul1 li .icon img {
        width: 40px;
        height: 40px;
    }
}

@media only screen and (max-width: 600px) {
    .toolbar-box {
        display: none;
    }

    .toolbar-box .ul1 li .weixin[data-on="hover"] .ewm-box,
    .toolbar-box .ul1 li .qq[data-on="hover"] .hover-box,
    .footer .inbox .top .right .d2 .sharebox .ewm[data-on="click"] img {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

/*侧边工具栏 End*/
@media only screen and (max-width: 414px) {
    .footer .inbox .top .right .d2 {
        z-index: 1111;
        position: relative;
    }

    .footer .inbox .top .right .d2 .sharebox .ewm img {
        bottom: 28px;
        width: 80px;
        height: 80px;
        left: 10px;
        -webkit-transform-origin: 5% 95%;
        -moz-transform-origin: 5% 95%;
        -ms-transform-origin: 5% 95%;
        -o-transform-origin: 5% 95%;
        transform-origin: 5% 95%;
    }
}

/* =========

  内页大图

  ========== */
.allbg {
    height: 700px;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 105px;
    background-color: #ccc;
    position: relative;
}

.allbg .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 44px;
}

/* .allbg .title::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1px;
    height: 35px;
    background-color: #fff;
    margin-top: 20px;
} */

.allbg.casev {
    max-height: 500px;
}

.allmap {
    height: 700px;
    margin-top: 105px;
}

.allmap img {
    max-width: none;
}

.allbg .res-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.allbg .res-banner .tit {
    color: #fff;
    font-size: 44px;
    position: relative;
    text-align: center;
    margin-bottom: 55px;
}

.allbg .res-banner .tit::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1px;
    height: 35px;
    background-color: #fff;
    margin-top: 20px;
}

.allbg .res-banner .stit {
    font-size: 24px;
    color: #fff;
    padding: 20px 0 12px 0;
    text-align: center;
}

.allbg .res-banner .res-search {
    width: 650px;
}

.allbg .res-banner .res-search input[type="text"] {
    border: 0;
    height: 45px;
    width: calc(100% - 50px);
    background-color: #fff;
    text-indent: 10px;
}

.allbg .res-banner .res-search input[type="submit"] {
    width: 50px;
    height: 45px;
    cursor: pointer;
    right: 0;
    position: absolute;
    background: url(/html/phone/images/search-icon2.png) #2a2a2a no-repeat center;
    border: 0;
}

.allbg .res-banner .res-may {
    font-size: 14px;
    color: #fff;
    margin-top: 15px;
    text-align: center;
}

@media only screen and (max-width: 1600px) {

    .allbg,
    .allmap {
        height: 620px;
    }

}

@media only screen and (max-width: 1440px) {

    .allbg,
    .allmap {
        height: 540px;
    }

    .allbg .title,
    .allbg .res-banner .tit {
        font-size: 40px;
    }
}

@media only screen and (max-width: 1280px) {

    .allbg,
    .allmap {
        height: 460px;
    }

    .allbg .title,
    .allbg .res-banner .tit {
        font-size: 36px;
    }

}

@media only screen and (max-width: 1023px) {

    .allbg,
    .allmap {
        height: 380px;
        margin-top: 50px;
    }

    .allbg .title,
    .allbg .res-banner .tit {
        font-size: 32px;
    }

    .allbg .res-banner .tit {
        margin-bottom: 35px;
    }

    .allbg .res-banner .tit::after {
        margin-top: 10px;
    }

    .allbg .res-banner .res-search input[type="text"] {
        height: 40px;
    }

    .allbg .res-banner .res-search input[type="submit"] {
        height: 40px;
    }
}

@media only screen and (max-width: 800px) {

    .allbg,
    .allmap {
        height: 320px;
    }

    .allbg .title,
    .allbg .res-banner .tit {
        font-size: 26px;
        white-space: nowrap;
    }

    .allbg .res-banner .res-search {
        width: 450px;
    }
}

@media only screen and (max-width: 600px) {

    .allbg,
    .allmap {
        height: 250px;
    }

    .allbg .title,
    .allbg .res-banner .tit {
        font-size: 24px;
    }

    .allbg .res-banner .tit {
        margin-bottom: 20px;
    }

    .allbg .res-banner .tit::after {
        margin-top: 4px;
    }

    .allbg .res-banner .stit {
        font-size: 20px;
        padding: 20px 0 8px 0;
    }

    .allbg .res-banner .res-search {
        width: 300px;
    }

    .allbg .res-banner .res-search input[type="text"] {
        height: 35px;
        width: calc(100% - 40px);
    }

    .allbg .res-banner .res-search input[type="submit"] {
        height: 35px;
        width: 40px;
    }

    .allbg .res-banner .res-may {
        margin-top: 5px;
    }
}

@media only screen and (max-width: 414px) {

    .allbg,
    .allmap {
        height: 200px;
    }
}

/* =========

  发展历程

  ========== */
.comLinkBox {
    margin-top: 30px;
}

.comLinkBox a,
.comLinkBox .s1 {
    font-size: 12px;
    color: #8f8f8f;
}

.comLinkBox a .color {
    font-family: "宋体";
    margin-left: 5px;
    margin-right: 2px;
}

@media only screen and (min-width: 601px) {
    .comLinkBox a:hover {
        color: #da251d;
    }
}

.aboutcomBox .d1 {
    text-align: center;
    color: #2a2a2a;
    font-family: "Microsoft JhengHei";
    font-size: 44px;
    line-height: 1.2;
    text-transform: uppercase;
}

.aboutcomBox .dline {
    height: 36px;
    width: 1px;
    margin-left: auto;
    margin-right: auto;
    background: -webkit-linear-gradient(#ff0b00, #c72018);
    background: -moz-linear-gradient(#ff0b00, #c72018);
    background: -ms-linear-gradient(#ff0b00, #c72018);
    background: linear-gradient(#ff0b00, #c72018);
    margin-top: 25px;
}

.aboutlc-box {
    margin-top: 50px;
    margin-bottom: 120px;
}

.aboutlc-box .binbox {
    position: relative;
}

.aboutlc-box .binbox .btn {
    position: absolute;
    top: 156px;
    height: 60px;
    width: 60px;
    z-index: 10;
    cursor: pointer;
}

.aboutlc-box .binbox .btn:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    left: 8px;
    margin-top: -15px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.aboutlc-box .binbox .aboutlc-prev:after {
    border-top: 2px solid #c2c2c2;
    border-left: 2px solid #c2c2c2;
}

.aboutlc-box .binbox .aboutlc-next:after {
    border-bottom: 2px solid #c2c2c2;
    border-right: 2px solid #c2c2c2;
    left: auto;
    right: 8px;
}

.aboutlc-box .binbox .aboutlc-prev {
    left: 0;
}

.aboutlc-box .binbox .aboutlc-next {
    right: 0;
}

.aboutlc-box .inbox {
    max-width: 1000px;
    width: calc(100% - 200px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.aboutlc-box .inbox .imgbox .box {
    float: left;
    width: calc(33.333% - 33.33333px);
    margin-right: 50px;
    text-align: center;
}

.aboutlc-box .inbox .imgbox .box:nth-child(3n+0) {
    margin-right: 0;
    text-align: center;
}

.aboutlc-box .inbox .imgbox .box img {
    max-height: 200px;
}

.aboutlc-box .aboutlc-swiper {
    margin-top: 25px;
}

.aboutlc-box .aboutlc-swiper .swiper-slide .title {
    width: 136px;
    text-align: center;
    border-radius: 20px;
    background-color: #006fc4;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    margin-left: auto;
    margin-right: auto;
}

.aboutlc-box .aboutlc-swiper .swiper-slide .line {
    background-color: #e0e0e0;
    height: 1px;
    margin-top: 24px;
    margin-bottom: 40px;
}

.aboutlc-box .aboutlc-swiper .swiper-slide .content {
    font-size: 14px;
    color: #545454;
    line-height: 1.8;
}

@media only screen and (max-width: 1024px) {
    .aboutlc-box .inbox .imgbox .box {
        float: left;
        width: calc(33.333% - 26.6666px);
        margin-right: 40px;
    }

    .aboutlc-box {
        margin-top: 5%;
        margin-bottom: 11%;
    }

    .aboutcomBox .d1 {
        font-size: 36px;
    }

    .aboutcomBox .dline {
        height: 30px;
        margin-top: 20px;
    }

    .aboutlc-box .inbox {
        margin-top: 5%;
    }

    .aboutlc-box .aboutlc-swiper {
        margin-top: 2.5%;
    }

    .aboutlc-box .aboutlc-swiper .swiper-slide .line {
        margin-top: 18px;
        margin-bottom: 30px
    }

    .aboutlc-box .inbox {
        width: calc(100% - 100px);
    }

    .aboutlc-box .binbox .btn {
        width: 36px;
        height: 36px;
        top: 144px;
    }

    .aboutlc-box .binbox .btn:after {
        width: 16px;
        height: 16px;
        margin-top: -8px;
    }

    .comLinkBox {
        margin-top: 3%;
    }
}

@media only screen and (max-width: 800px) {
    .aboutlc-box .inbox .imgbox {
        display: none;
    }

    .aboutlc-box .aboutlc-swiper .swiper-slide .line {
        margin-top: 15px;
        margin-bottom: 24px
    }

    .aboutcomBox .d1 {
        font-size: 30px;
    }

    .aboutcomBox .dline {
        height: 26px;
        margin-top: 15px;
    }

    .aboutlc-box .binbox .btn {
        top: 27px;
    }

    .aboutlc-box .aboutlc-swiper {
        margin-top: 0;
    }
}

@media only screen and (max-width: 414px) {
    .aboutcomBox .d1 {
        font-size: 24px;
    }

    .aboutcomBox .dline {
        margin-top: 10px;
        height: 22px;
    }

    .aboutlc-box .aboutlc-swiper .swiper-slide .line {
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .aboutlc-box .binbox .btn {
        top: 21px;
    }
}

/*动画*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/*动画 End*/



/* =========

  品牌简介

  ========== */
.aboutjj-box {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.aboutjj-text {
    font-size: 14px;
    color: #4a4949;
    line-height: 2;
    margin-top: 25px;
}

.aboutjj-text .text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

/*aboutjj-pp*/
.aboutjj-pp {
    margin-top: 120px;
}

.aboutjj-pp .iconlist {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.aboutjj-pp .iconlist .icon {
    padding: 0 35px;
    border-right: 1px solid #e7e7e7;
}

.aboutjj-pp .iconlist .icon:last-child {
    border-right: none;
}

.aboutjj-pp .iconlist .icon img {
    width: 42px;
}

.aboutjj-pp .content {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    color: #4a4949;
    line-height: 2;
    margin-top: 25px;
}

/*aboutjj-pp End*/
.aboutjj-img {
    background-color: #2e373e;
    margin-top: 55px;
    display: flex;
    align-items: center;
}

.aboutjj-img .img-l {
    width: 50%;
    margin-right: 3%;
}

.aboutjj-img .img-l .img {
    padding-top: calc(570 / 960 * 100%);
}

.aboutjj-img .text-r {
    width: 44%;
    margin-left: 3%;
    padding-right: 8%;
}

.aboutjj-img .text-r .tit {
    font-size: 44px;
    color: #fff;
}

.aboutjj-img .text-r .line {
    width: 1px;
    height: 35px;
    background-color: rgba(255, 255, 255, .35);
    margin-top: 22px;
    margin-bottom: 14px;
}

.aboutjj-img .text-r .text {
    font-size: 14px;
    color: #fff;
    line-height: 2;
}

/*aboutjj-yy */
.aboutjj-yy {
    margin-top: 120px;
}

.aboutjj-yy .title {
    font-size: 44px;
    color: #2a2a2a;
    font-family: "Microsoft JhengHei";
    text-align: center;
}

.aboutjj-yy .content {
    text-align: center;
    margin-top: 30px;
    color: #4a4949;
    font-size: 14px;
    line-height: 2;
}

/*aboutjj-yy End*/
/*aboutjj-td*/
.aboutjj-td {
    margin-top: 120px;
    position: relative;
}

.aboutjj-td .factorylist {
    margin-top: 68px;
    margin-bottom: 4%;
}

.aboutjj-td .factorylist .factory-item {
    position: relative;
    width: 32%;
    margin-right: 2%;
    float: left;
    margin-bottom: 3%;
    overflow: hidden;
}

.aboutjj-td .factorylist .factory-item:nth-child(3n) {
    margin-right: 0;
}

.aboutjj-td .factorylist .factory-item .img {
    padding-top: calc(269 / 382 * 100%);
}

.aboutjj-td .factorylist .factory-item .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55px;
    line-height: 55px;
    font-size: 20px;
    color: #fff;
    background-color: rgba(46, 55, 62, .68);
    padding-left: 10px;
}

.aboutjj-td .factorylist .factory-item .dan {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 1;
    background: #0b7bcf;
    background: -moz-linear-gradient(top, rgba(80, 89, 95, .9) 0%, rgba(47, 56, 63, .9) 100%);
    background: -webkit-linear-gradient(top, rgba(80, 89, 95, .9) 0%, rgba(47, 56, 63, .9) 100%);
    background: linear-gradient(to bottom, rgba(80, 89, 95, .9) 0%, rgba(47, 56, 63, .9) 100%);
    opacity: 0;
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    -webkit-transform: scale(2);
    transform: scale(2);
}

.aboutjj-td .factorylist .factory-item .dan::before {
    width: 1px;
    height: 28.6%;
    background: #fff;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.aboutjj-td .factorylist .factory-item .dan::after {
    width: 19%;
    height: 1px;
    background: #fff;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.aboutjj-td .factorylist .factory-item .dan .text {
    color: #fff;
    width: 100%;
    line-height: 26px;
    font-size: 16px;
    position: absolute;
    left: 0px;
    bottom: 3%;
    font-size: 14px;
    text-align: center;
}

.aboutjj-td .factorylist .factory-item:hover {
    cursor: pointer;
}

.aboutjj-td .factorylist .factory-item:hover .title {
    opacity: 0;
}

.aboutjj-td .factorylist .factory-item:hover .dan {
    opacity: 1;
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.zhuan-box {
    display: none;
    width: 600px;
}

/*.zhuan-box .photo-swiper .swiper-slide.hhhh{
	width: auto!important;
}*/
.zhuan-box .photo-swiper .swiper-slide .topimg {
    padding-top: calc(559 / 800 * 100%);
}

.zhuan-box .photo-swiper .photo-prev,
.zhuan-box .photo-swiper .photo-next {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    z-index: 11;
    border-style: solid;
    border-width: 2px;
    cursor: pointer;
    margin-top: -15px;
}

.zhuan-box .photo-swiper .photo-prev {
    border-color: transparent transparent #fff #fff;
    transform: rotate(45deg);
    left: 20px;
}

.zhuan-box .photo-swiper .photo-next {
    right: 20px;
    border-color: #fff #fff transparent transparent;
    transform: rotate(45deg);
}

.zhuan-box .photo-swiper .photo-prev.swiper-button-disabled {
    border-color: transparent transparent #fff #fff;
}

.zhuan-box .photo-swiper .photo-next.swiper-button-disabled {
    border-color: #fff #fff transparent transparent;
}

.zhuan-box .photo-swiper .swiper-pagination-bullet {
    background: #fff;
}

.zhuan-box .photo-swiper .swiper-pagination-bullet-active {
    background: #fff;
}


.flybanner-close {
    background: rgba(0, 0, 0, .8);
    z-index: 112;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0;
}

.flybanner-close[data-on="on"] {
    opacity: 1;
}

.flybanner {
    width: 100%;
    position: fixed;
    z-index: 113;
    left: 50%;
    top: 50%;
    opacity: 0;
    -moz-transform: scale(0.000000001) translate(-50%, -50%);
    -ms-transform: scale(0.000000001) translate(-50%, -50%);
    -o-transform: scale(0.000000001) translate(-50%, -50%);
    -webkit-transform: scale(0.000000001) translate(-50%, -50%);
    transform: scale(0.000000001) translate(-50%, -50%);
    padding-bottom: 40px;
}

.flybanner[data-on="on"] {
    opacity: 1;
    -moz-transform: scale(1);
    -ms-transform: scale(1) translate(-50%, -50%);
    -o-transform: scale(1) translate(-50%, -50%);
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
}

.flybanner .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.flybanner .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
}

.flybanner-gb {
    width: 50px;
    height: 50px;
    position: fixed;
    cursor: pointer;
    z-index: 114;
    top: 0px;
    right: 0px;
}

.flybanner-gb:before,
.flybanner-gb:after {
    width: 26px;
    height: 2px;
    background: #fff;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px -13px;
}

.flybanner-gb:before {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.flybanner-gb:after {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media only screen and (max-width: 1280px) {
    .aboutjj-td .factorylist .factory-item .title {
        font-size: 18px;
        height: 45px;
        line-height: 45px;
    }

    .aboutjj-pp,
    .aboutjj-yy {
        margin-top: 9%;
    }
}

@media only screen and (max-width: 1024px) {
    .aboutjj-img {
        display: block;
    }

    .aboutjj-img .img-l {
        width: 100%;
        margin-right: 0;
    }

    .aboutjj-img .text-r {
        width: 94%;
        margin-left: auto;
        margin-right: auto;
        padding-right: 0;
    }

    .aboutjj-pp,
    .aboutjj-yy {
        margin-top: 7%;
    }
}

@media only screen and (max-width: 800px) {
    .aboutjj-td .factorylist .factory-item .title {
        font-size: 14px;
        height: 40px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 600px) {
    .aboutjj-td .factorylist .factory-item {
        width: 49%;
    }

    .aboutjj-td .factorylist .factory-item:nth-child(3n) {
        margin-right: 2%;
    }

    .aboutjj-td .factorylist .factory-item:nth-child(2n) {
        margin-right: 0;
    }

}

@media only screen and (max-width: 414px) {
    .aboutjj-td .factorylist .factory-item {
        width: 100%;
        margin-right: 0;
    }

    .aboutjj-td .factorylist .factory-item:nth-child(3n) {
        margin-right: 0;
    }

    .aboutjj-pp .iconlist .icon {
        padding: 0 20px;
    }
}


/*aboutjj-td End*/

/*history*/
.ab-history {
    margin-top: 50px;
    margin-bottom: 162px;
}

.ab-history .abouthis-l .lc-item {
    display: flex;
    align-items: center;
}

.ab-history .abouthis-l .lc-box {
    border-bottom: 1px solid #ececec;
    padding: 0px 0 20px;
    margin-bottom: 48px;
    width: 60%;
}

.ab-history .abouthis-l .lc-box .nian {
    height: 50px;
    line-height: 50px;
    color: #da251d;
    font-size: 24px;
    margin-bottom: 15px;
}

.ab-history .abouthis-l .lc-box .list {
    padding-left: 65px;
    position: relative;
}

.ab-history .abouthis-l .lc-box .list .line {
    width: 1px;
    height: 98%;
    top: 5px;
    background: #dfdfdf;
    position: absolute;
    left: 8px;
}

.ab-history .abouthis-l .lc-box .list .item {
    position: relative;
    margin-bottom: 30px;
}

.ab-history .abouthis-l .lc-box .list .item .bt {
    height: 32px;
    line-height: 22px;
    color: #7a7a7a;
    font-size: 20px;
}

.ab-history .abouthis-l .lc-box .list .item .bt .biao {
    width: 28px;
    height: 17px;
    position: absolute;
    background: url(../images/gt_03.png);
    background-position: left;
    background-repeat: no-repeat;
    top: 1px;
    left: -65px;
}

.ab-history .abouthis-l .lc-box .list .item .view {
    color: #4d4d4d;
    font-size: 14px;
    line-height: 2;
}

.ab-history .abouthis-l .abouthis-r {
    width: 40%;
}

.ab-history .abouthis-l .abouthis-r .img {
    padding-top: calc(450 / 449 * 100%);
    background-image: url(../images/history01.png);
}

.ab-history .abouthis-l .lc-item:nth-child(2n) .abouthis-r .img {
    background-image: url(../images/history02.png);
}

@media only screen and (max-width: 1440px) {
    .ab-history {
        margin-bottom: 10%;
    }
}

@media only screen and (max-width: 1280px) {
    .ab-history {
        margin-top: 5%;
        margin-bottom: 8%;
    }
}

@media only screen and (max-width: 800px) {
    .ab-history .abouthis-l .abouthis-r {
        display: none;
    }

    .ab-history .abouthis-l .lc-box {
        width: 100%;
        margin-bottom: 4%;
    }

    .ab-history .abouthis-l .lc-box .list .item {
        margin-bottom: 3%;
    }

    .ab-history .abouthis-l .lc-box .list .item .view {
        line-height: 1.5;
    }

}

/*history end*/

/*NEWS*/
/* =========

  新闻资讯

  ========== */
.news-tbox {
    margin-top: 50px;
    margin-bottom: 50px;
}

.newschose {
    overflow: visible;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.newschose .formbox {
    width: 31.33%;
    float: left;
    position: relative;
}

.newschose .formbox input[type="text"] {
    width: 100%;
    font-size: 16px;
    color: #b5b5b5;
    text-indent: 20px;
    height: 45px;
    border-width: 0 0 3px 0;
    border-style: solid;
    -webkit-border-image: -webkit-linear-gradient(to right, #da251d, #9a1411) 3 0;
    -o-border-image: -o-linear-gradient(to right, #da251d, #9a1411) 3 0;
    border-image: linear-gradient(to right, #da251d, #9a1411) 3 0;
    font-family: "ziti";
}

.newschose .formbox input[type="submit"] {
    position: absolute;
    right: 20px;
    top: 13px;
    width: 16px;
    height: 16px;
    background: none;
    border: 0;
    background-image: url(../images/icon09.png);
    background-repeat: no-repeat;
}

.select {
    width: 31.33%;
    line-height: 25px;
    border-radius: 5px;
    font-size: 12px;
    position: relative;
    margin-right: 3%;
    float: left;
}

.select .checkspan {
    display: block;
    font-size: 16px;
    color: #4f4f4f;
    cursor: pointer;
    line-height: 42px;
    border-width: 0 0 3px 0;
    border-style: solid;
    -webkit-border-image: -webkit-linear-gradient(to right, #da251d, #9a1411) 3 0;
    -o-border-image: -o-linear-gradient(to right, #da251d, #9a1411) 3 0;
    border-image: linear-gradient(to right, #da251d, #9a1411) 3 0;
    padding-left: 20px;
    font-family: "ziti";
}

.select i {
    width: 8px;
    height: 8px;
    position: absolute;
    top: 16px;
    right: 20px;
    border-left: 1px solid #da251d;
    border-bottom: 1px solid #da251d;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.select[data-on="click"] i {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.select[data-on="click"] .checkspan {
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .25);
    box-shadow: 0 0 8px rgba(0, 0, 0, .25);
}

.select ul {
    display: none;
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.select ul li {
    line-height: 44px;
    color: #666;
    list-style-type: none;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    background-color: rgba(80, 89, 95, .8);
}

.select ul li a {
    display: block;
    padding-left: 20px;
    font-size: 16px;
    color: #ffffff;
    font-family: "ziti";
}

.newsUl {
    margin-top: 30px;
}

.newsUl li a {
    display: block;
    position: relative;
    padding: 24px 0 24px 20px;
    border-bottom: 1px solid #dfdfdf;
}

.newsUl li a .imgbox {
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    float: left;
    width: 18.33%;
    min-width: 200px;
    overflow: hidden;
}

.newsUl li a .imgbox .img {
    padding-top: calc(140 / 220 * 100%);
    transition: all .5s;
}

.newsUl li a .right {
    float: left;
    margin-left: 3.333%;
    width: 78%;
}

.newsUl li a .right .data {
    font-size: 14px;
    color: #da251d;
    line-height: 18px;
    height: 18px;
    overflow: hidden;
    font-family: "ziti";
}

.newsUl li a .right .title {
    font-size: 22px;
    color: #2f2f2f;
    line-height: 1.5;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    height: 33px;
    font-family: "ziti";
    margin-top: 16px;
    margin-bottom: 8px;
}

.newsUl li a .right .desc {
    font-size: 14px;
    color: #6f6f6f;
    line-height: 1.5;
    height: 42px;
    overflow: hidden;
}




.fenye {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fenye li {
    display: inline-block;
    text-align: center;
    margin-right: 18px;
}

.fenye li.prev {
    margin-right: 35px;
}

.fenye li.next {
    margin-left: 17px;
}

.fenye li:last-child {
    margin-right: 0;
}

.fenye li a {
    display: block;
    color: #808080;
    line-height: 20px;
    font-size: 14px;

}

.fenye li.active a {
    color: #da251d;
    font-weight: bold;
}

.fenye li.prev a,
.fenye li.next a {
    font-family: "宋体";
    color: #262626;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ededed;
    line-height: 42px;
}

.newsfenye {
    margin-top: 30px;
}

@media only screen and (min-width: 601px) {
    .fenye li a:hover {
        color: #da251d;
    }

    .select li:hover {
        background-color: rgba(80, 89, 95, 1);
    }

    .newsUl li:hover a {
        background-color: #f5f5f5;
    }

    .newsUl li:hover a .right .title {
        color: #da251d;
    }

    .newsUl li:hover a .imgbox .img {
        transform: scale(1.1);
    }
}

@media only screen and (max-width: 1280px) {
    .news-tbox {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .newsUl {
        margin-top: 25px;
    }

    .newsUl li a .right {
        width: calc(96% - 200px);
    }
}

@media only screen and (max-width: 1024px) {
    .news-tbox {
        margin-top: 4%;
        margin-bottom: 4%;
    }

    .newsUl {
        margin-top: 3%;
    }

    .newsfenye {
        margin-top: 3%;
    }

    .newschose {
        margin-top: 5%;
    }
}

@media only screen and (max-width: 800px) {

    .newsUl li a {
        padding: 18px 0 18px 20px;
    }
}

@media only screen and (max-width: 600px) {
    .newsUl li a .imgbox {
        width: 100%;
    }

    .newsUl li a .right {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .newsUl li a {
        padding: 12px 0 12px 10px;
    }

    .newsUl li a .right .title {
        font-size: 18px;
        height: 27px;
        margin-top: 5px;
        margin-bottom: 3px;
        white-space: normal;
    }

    .newsUl li a .right .desc {
        height: auto;
    }

    .select,
    .newschose .formbox {
        float: none;
        width: 100%;
    }

    .select {
        margin-bottom: 5px;
    }

    .select i {
        top: 6px;
        right: 10px;
    }

    .select .checkspan {
        line-height: 27px;
        font-size: 12px;
        padding-left: 10px;
    }

    .select ul {
        top: 30px;
    }

    .select ul li {
        line-height: 30px;
    }

    .select ul li a {
        padding-left: 10px;
        font-size: 12px;
    }

    .select[data-on="click"] i {
        top: 11px;
    }

    .newschose .formbox input[type="text"] {
        height: 27px;
        /*font-size: 12px;*/
        text-indent: 10px;
    }

    .newschose .formbox input[type="submit"] {
        top: 4px;
        right: 7px;
    }

    .newschose .formbox input[type="submit"] {
        width: 12px;
        height: 12px;
        -webkit-background-size: 12px 12px;
        background-size: 12px 12px;
    }
}

@media only screen and (max-width: 414px) {
    .newsUl li a .right .data {
        font-size: 12px;
        line-height: 16px;
        height: 16px;
    }

    .newsUl li a .right .title {
        font-size: 14px;
        height: 21px;
        margin-top: 2px;
    }

    .newsUl li a {
        padding: 8px 0 8px 10px;
    }

    .newsfenye {
        margin-top: 15px;
    }

    .fenye li a {
        font-size: 12px;
    }

    .fenye li.active a {
        font-size: 14px;
    }

    .fenye li {
        margin-right: 10px;
    }
}

/* =========

  新闻详情

  ========== */
.newDetTop {
    height: 300px;
    margin-top: 105px;
    background: -webkit-linear-gradient(to right, #6a747b 0px, #808b94 50%, #6a747b 100%);
    background: -moz-linear-gradient(to right, #6a747b 0px, #808b94 50%, #6a747b 100%);
    background: -ms-linear-gradient(to right, #6a747b 0px, #808b94 50%, #6a747b 100%);
    background: linear-gradient(to right, #6a747b 0px, #808b94 50%, #6a747b 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.newDetTop .inbox .data {
    font-size: 18px;
    color: #ffffff;
    font-family: "Microsoft JhengHei";
    line-height: 1.5;
    height: 27px;
    overflow: hidden;
}

.newDetTop .inbox .title {
    font-size: 36px;
    color: #fff;
    font-family: "Microsoft JhengHei";
    line-height: 1.5;
    height: 54px;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-top: 8px;
}

.newsDetLink {
    margin-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #dfdfdf;
}

.newsDetLink .back {
    color: #da251d;
}

.newsDetLink .back .color {
    font-family: "宋体";
    margin-right: 5px;
}

.newsDetContent {
    margin-top: 50px;
    font-size: 14px;
    color: #6c6c6c;
    line-height: 2;
}

.newsDetpn {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 150px;
}

.newsDetpn a {
    font-size: 18px;
    color: #0075c2;
    font-family: "Microsoft JhengHei";
}

.newsDetpn .prev {
    padding-right: 30px;
    border-right: 1px solid #d7d7d7;
}

.newsDetpn .next {
    padding-left: 30px;
    border-left: 1px solid #d7d7d7;
    margin-left: -3px;
}

@media only screen and (max-width: 1280px) {
    .newDetTop .inbox .title {
        font-size: 30px;
        height: 45px;
    }

    .newDetTop {
        height: 270px;
    }
}

@media only screen and (max-width: 1024px) {
    .newDetTop .inbox .title {
        font-size: 24px;
        height: 36px;
        margin-top: 0;
    }

    .newDetTop .inbox .data {
        font-size: 16px;
        height: 24px;
    }

    .newDetTop {
        height: 220px;
    }

    .newsDetLink {
        margin-top: 18px;
        padding-bottom: 18px;
    }

    .newsDetContent {
        margin-top: 5%;
    }

    .newsDetpn {
        margin-top: 7%;
        margin-bottom: 15%;
    }
}

@media only screen and (max-width: 1023px) {
    .newDetTop {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 800px) {
    .newDetTop {
        height: 180px;
    }

    .newDetTop .inbox .title {
        font-size: 20px;
        height: 30px;
    }

    .newDetTop .inbox .data {
        font-size: 14px;
        height: 21px;
    }

    .newsDetLink {
        margin-top: 12px;
        padding-bottom: 12px;
    }
}

@media only screen and (max-width: 600px) {
    .newsDetpn .prev {
        padding-right: 15px;
    }

    .newsDetpn .next {
        padding-left: 15px;
    }

    .newsDetpn a {
        font-size: 14px;
    }

    .newDetTop .inbox .title {
        font-size: 16px;
        height: auto;
        max-height: 48px;
        white-space: normal;
    }

    .newDetTop {
        height: 150px;
    }

    .newDetTop .inbox .data {
        font-size: 12px;
        height: 18px;
    }
}

@media only screen and (max-width: 414px) {
    .newsDetLink {
        margin-top: 8px;
        padding-bottom: 8px;
    }
}

/*NEWS end*/



/*aboutjj-js*/
.aboutjj-js {
    margin-top: 115px;
}

.aboutjj-js .content {
    margin-top: 26px;
    font-size: 14px;
    color: #4a4949;
    line-height: 2;
    text-align: center;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

/*aboutjj-js end*/
@media only screen and (max-width: 1600px) {

    .aboutjj-td .right {
        padding: 120px 110px;
    }
}

@media only screen and (max-width: 1440px) {
    .aboutjj-td .right {
        padding: 100px 90px;
    }

    .aboutjj-td .right .desc {
        margin-top: 25px;
    }
}

@media only screen and (max-width: 1280px) {

    /*.aboutjj-yy .title{
		font-size: 30px;
	}*/
    .aboutjj-td {
        margin-top: 7%;
    }

    .aboutjj-td .right {
        padding: 80px 70px;
    }

    .aboutjj-td .right .desc {
        margin-top: 15px;
    }

    .aboutjj-js {
        margin-top: 100px;
    }

    .aboutjj-td .factorylist {
        margin-top: 3%;
    }
}

@media only screen and (max-width: 1024px) {

    .aboutjj-box {
        margin-top: 5%;
    }

    .aboutjj-pp .content {
        margin-top: 2.5%;
    }

    .aboutjj-yy .content {
        margin-top: 3%;
    }

    /*.aboutjj-yy .title{
		font-size: 26px;
	}*/
    .aboutjj-td .left {
        position: static;
        width: 100%;
    }

    .aboutjj-td .left img {
        display: inline-block;
        width: 100%;
    }

    .aboutjj-td .right {
        float: none;
        width: 100%;
        padding: 7% 3%;
    }

    .aboutjj-js {
        margin-top: 9%;
    }

    .aboutjj-js .content {
        margin-top: 3%;
    }
}

@media only screen and (max-width: 800px) {}

@media only screen and (max-width: 414px) {

    /*.aboutjj-yy .title{
		font-size: 20px;
	}*/
    .aboutjj-pp .content,
    .aboutjj-js .content {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    .aboutjj-td .right .desc {
        margin-top: 10px;
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
}



/* =========

  企业文化

  ========== */
.aboutcul-box {
    margin-top: 52px;
    margin-bottom: 100px;
}

.aboutcul-box .content {
    margin-top: 25px;
    font-size: 14px;
    color: #4a4949;
    line-height: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.aboutcul-middle {
    height: 580px;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.aboutcul-middle .culture-swiper {
    height: 100%;
    font-family: "sans-serif";
}

.aboutcul-middle .culture-swiper .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.aboutcul-middle .culture-swiper .swiper-slide .title {
    font-size: 36px;
    color: #ffffff;
    font-family: "Microsoft JhengHei";
    line-height: 1;
}

.aboutcul-middle .culture-swiper .swiper-slide .line {
    width: 35px;
    height: 1px;
    background-color: #0093f4;
    margin-top: 25px;
    margin-bottom: 45px;
}

.aboutcul-middle .culture-swiper .swiper-slide .desc {
    font-size: 14px;
    color: #ffffff;
    line-height: 2;
    padding-right: 15px;
}

.aboutcul-middle .culture-pagination {
    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%);
}

.aboutcul-middle .culture-pagination .swiper-pagination-bullet {
    display: block;
    opacity: 1;
    background-color: transparent;
    border: 1px solid #fff;
    width: 10px;
    height: 10px;
    margin-bottom: 10px;
}

.aboutcul-middle .culture-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
}

@media only screen and (max-width: 1600px) {
    .aboutcul-middle {
        height: 510px;
    }
}

@media only screen and (max-width: 1440px) {
    .aboutcul-middle {
        height: 430px;
    }

    .aboutcul-middle .culture-swiper .swiper-slide .line {
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 1280px) {
    .aboutcul-middle {
        height: 370px;
    }

    .aboutcul-middle .culture-swiper .swiper-slide .title {
        font-size: 30px;
    }

    .aboutcul-middle .culture-swiper .swiper-slide .line {
        margin-top: 18px;
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 1024px) {
    .aboutcul-middle {
        height: 320px;
    }

    .aboutcul-middle .culture-swiper .swiper-slide .title {
        font-size: 26px;
    }

    .aboutcul-middle .culture-swiper .swiper-slide .line {
        margin-top: 12px;
        margin-bottom: 20px;
    }

    .aboutcul-box {
        margin-top: 5.2%;
        margin-bottom: 10%;
    }

    .aboutcul-box .content {
        margin-top: 2.5%;
    }
}

@media only screen and (max-width: 600px) {
    .aboutcul-middle {
        height: 260px;
    }

    .aboutcul-middle .culture-swiper .swiper-slide .title {
        font-size: 22px;
    }

    .aboutcul-middle .culture-swiper .swiper-slide .line {
        margin-top: 8px;
        margin-bottom: 14px;
    }
}

@media only screen and (max-width: 414px) {

    .aboutcul-middle .culture-swiper .swiper-slide .desc,
    .aboutcul-box .content {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
}

/* =========

  产业优势

  ========== */
.aboutys-box .content {
    max-width: 820px;
    margin-top: 40px;
}

.aboutys-middle {
    background-color: #ededed;
    padding-top: 90px;
    padding-bottom: 215px;
}

.aboutys-middle .inbox .left {
    width: 48.33%;
}

.aboutys-middle .inbox {
    position: relative;
}

.aboutys-middle .inbox:after {
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 1px dashed #a0a0a0;
    width: 1px;
    height: 100%;
}

/*.aboutys-sj*/
.aboutys-sj {
    background-color: #fff;
    position: relative;
}

.aboutys-sj:before {
    content: "";
    position: absolute;
    background-color: #ededed;
    height: 125px;
    left: 0;
    width: 100%;
    top: 0;
}

.aboutys-sj .inbox {
    margin-top: -125px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    max-width: 1380px;
    text-align: center;
}

.aboutys-sj .inbox .title {
    font-size: 22px;
    color: #3b3b3b;
    text-align: center;
    line-height: 1.4;
    padding-bottom: 45px;
    padding-top: 52px;
}

.aboutys-sj .inbox img {}

/*.aboutys-sj End*/
/*aboutys-cp*/
.aboutys-cp {
    margin-top: 100px;
    margin-bottom: 155px;
}

.aboutys-cp .my-swiper {
    margin-top: 50px;
    border-left: 1px solid #d7d7d7;
}

.aboutys-cp .my-swiper .swiper-slide .d1 {
    font-size: 14px;
    color: #333333;
    font-weight: bold;
    height: 46px;
    text-align: center;
    line-height: 46px;
    cursor: pointer;
    border: 1px solid #d7d7d7;
    border-left: 0;
    overflow: hidden;
}

.aboutys-cp .my-swiper .active .d1 {
    color: #0075c2;
    border-top: 2px solid #0075c2;
}

.aboutys-cp .my-swiper .choseul-prev {
    position: absolute;
    top: 50%;
    left: 0px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10;
    text-align: center;
    line-height: 30px;
    font-family: "宋体";
    font-size: 16px;
    color: rgba(0, 0, 0, .6);
    display: none;
}

.aboutys-cp .my-swiper .choseul-next {
    position: absolute;
    top: 50%;
    right: 0px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10;
    text-align: center;
    line-height: 30px;
    font-family: "宋体";
    font-size: 16px;
    color: rgba(0, 0, 0, .6);
    display: none;
}

.aboutys-cp .d2 {
    margin-top: 45px;
    display: none;
}

.aboutys-cp .d2 .title {
    color: #0075c2;
    font-size: 30px;
    font-family: "Microsoft JhengHei";
    line-height: 1;
}

.aboutys-cp .d2 .content {
    font-size: 14px;
    color: #545454;
    line-height: 2;
    font-family: "sans-serif";
    margin-top: 30px;
}

/*aboutys-cp End*/
@media only screen and (min-width: 601px) {
    .aboutys-cp .my-swiper .swiper-slide .d1:hover {
        color: #0075c2;
    }
}

@media only screen and (max-width: 1280px) {
    .aboutys-middle {
        padding-bottom: 170px;
    }

    .aboutys-sj .inbox {
        margin-top: -100px;
    }

    .aboutys-sj .inbox .title {
        padding-top: 42px;
        padding-bottom: 35px;
        font-size: 20px;
    }

    .aboutys-sj:before {
        height: 105px;
    }

    .aboutys-cp {
        margin-top: 80px;
        margin-bottom: 120px;
    }
}

@media only screen and (max-width: 1024px) {
    .aboutys-box .content {
        margin-top: 4%;
    }

    .aboutys-middle {
        padding-top: 9%;
    }

    .aboutys-cp {
        margin-top: 8%;
        margin-bottom: 12%;
    }

    .aboutys-cp .my-swiper {
        margin-top: 4.5%;
    }

    .aboutys-cp .d2 {
        margin-top: 4%;
    }

    .aboutys-cp .d2 .content {
        margin-top: 3%;
    }
}

@media only screen and (max-width: 800px) {
    .aboutys-sj .inbox .title {
        padding-top: 32px;
        padding-bottom: 25px;
        font-size: 18px;
    }

    .aboutys-sj:before {
        height: 85px;
    }

    .aboutys-middle {
        padding-bottom: 150px;
    }

    .aboutys-sj .inbox {
        margin-top: -80px;
    }

    .aboutys-cp .d2 .title {
        font-size: 26px;
    }
}

@media only screen and (max-width: 640px) {

    .aboutys-cp .my-swiper .choseul-prev,
    .aboutys-cp .my-swiper .choseul-next {
        display: block;
    }

    .aboutys-cp .d2 .title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 600px) {
    .aboutys-middle .inbox .left {
        width: 100%;
        float: none;
    }

    .aboutys-middle .inbox .right {
        margin-top: 20px;
    }

    .aboutys-middle .inbox:after {
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        border-left: 0;
        border-top: 1px dashed #a0a0a0;
    }

    .aboutys-sj .inbox .title {
        padding-top: 22px;
        padding-bottom: 15px;
        font-size: 16px;
    }

    .aboutys-sj:before {
        height: 59px;
    }

    .aboutys-middle {
        padding-bottom: 100px;
    }

    .aboutys-sj .inbox {
        margin-top: -60px;
    }
}

@media only screen and (max-width: 414px) {

    .aboutys-box .content,
    .aboutys-cp .d2 .content {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    .aboutys-sj .inbox .title {
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .aboutys-cp .d2 .title {
        font-size: 20px;
    }

    .aboutys-cp .my-swiper .swiper-slide .d1 {
        height: 36px;
        line-height: 36px;
        font-size: 13px;
    }
}

/* =========

  资质证书

  ========== */
.aboutzs-box .content {
    max-width: 890px;
}

.aboutzs-imgBox {
    margin-bottom: 115px;
}

.aboutzs-imgBox .item {
    float: left;
    width: 24.16%;
    margin-right: 1.12%;
    margin-bottom: 35px;
    border: 1px solid #e9e9e9;
    cursor: pointer;
}

.aboutzs-imgBox .item:nth-child(4n+0) {
    margin-right: 0;
}

.aboutzs-imgBox .item .itemimg {
    background: #727272;
    background: -moz-linear-gradient(top, #727272 0%, #737373 3%, #808080 14%, #959595 27%, #9a9a9a 28%, #9c9c9c 31%, #a2a2a2 33%, #afafaf 41%, #bdbdbd 51%, #c4c4c4 58%, #c4c4c4 65%, #c0c0c0 70%, #bcbcbc 72%, #b6b6b6 77%, #9b9b9b 94%, #939393 97%, #919191 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #727272 0%, #737373 3%, #808080 14%, #959595 27%, #9a9a9a 28%, #9c9c9c 31%, #a2a2a2 33%, #afafaf 41%, #bdbdbd 51%, #c4c4c4 58%, #c4c4c4 65%, #c0c0c0 70%, #bcbcbc 72%, #b6b6b6 77%, #9b9b9b 94%, #939393 97%, #919191 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #727272 0%, #737373 3%, #808080 14%, #959595 27%, #9a9a9a 28%, #9c9c9c 31%, #a2a2a2 33%, #afafaf 41%, #bdbdbd 51%, #c4c4c4 58%, #c4c4c4 65%, #c0c0c0 70%, #bcbcbc 72%, #b6b6b6 77%, #9b9b9b 94%, #939393 97%, #919191 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#727272', endColorstr='#919191', GradientType=0);
    /* IE6-8 */
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.aboutzs-imgBox .item .itemimg img {
    width: 100%;
}

.aboutzs-imgBox .item .item-box {
    border-top: 1px solid #e9e9e9;
    font-family: "sans-serif";
    padding: 13px 18px 15px;
    position: relative;
}

.aboutzs-imgBox .item .item-box .icon {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 3px;
    background-color: #2187ca;
    height: 16px;
    margin-top: -8px;
}

.aboutzs-imgBox .item .item-box .icon:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 3px;
    background-color: #2187ca;
    margin-top: -1px;
    right: 2px;
    border-radius: 3px;
}

.aboutzs-imgBox .item .item-box .icon:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 8px;
    height: 8px;
    border-top: 3px solid #2187ca;
    border-right: 3px solid #2187ca;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -5px;
    border-radius: 3px;
}

.aboutzs-imgBox .item .item-box .title {
    font-size: 16px;
    color: #424242;
    line-height: 1.5;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    padding-right: 20px;
}

.aboutzs-imgBox .item .item-box .year {
    font-size: 14px;
    color: #b6b6b6;
    line-height: 20px;
    height: 20px;
}

.layui-layer-content .intitle {
    font-size: 20px;
    text-align: center;
    height: 30px;
    line-height: 1.5;
    background-color: #fff;
}

@media only screen and (min-width: 601px) {
    .aboutzs-imgBox .item:hover .item-box {
        background-color: #0075c2;
    }

    .aboutzs-imgBox .item:hover .item-box .icon,
    .aboutzs-imgBox .item:hover .item-box .icon:before {
        background-color: #fff;
    }

    .aboutzs-imgBox .item:hover .item-box .icon:after {
        border-color: #fff;
    }

    .aboutzs-imgBox .item:hover .title,
    .aboutzs-imgBox .item:hover .year {
        color: #fff;
    }
}

@media only screen and (max-width: 1280px) {
    .aboutzs-imgBox {
        margin-bottom: 100px;
    }

    .aboutzs-imgBox .item {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 1024px) {
    .aboutzs-imgBox {
        margin-bottom: 10%;
    }

    .aboutzs-imgBox .item {
        margin-bottom: 3%;
        width: 32.66%;
        margin-right: 1%;
    }

    .aboutzs-imgBox .item:nth-child(4n+0) {
        margin-right: 1%;
    }

    .aboutzs-imgBox .item:nth-child(3n+0) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 800px) {
    .aboutzs-imgBox .item .item-box {
        padding: 10px 12px 12px;
    }

    .aboutzs-imgBox .item .item-box .icon {
        right: 12px;
    }
}

@media only screen and (max-width: 640px) {
    .aboutzs-imgBox .item {
        width: 49.5%;
    }

    .aboutzs-imgBox .item:nth-child(3n+0) {
        margin-right: 1%;
    }

    .aboutzs-imgBox .item:nth-child(2n+0) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 414px) {
    .aboutzs-imgBox .item .item-box {
        padding: 8px 10px 10px;
    }

    .aboutzs-imgBox .item .item-box .title {
        font-size: 14px;
        height: 21px;
        padding-right: 12px;
    }

    .aboutzs-imgBox .item .item-box .year {
        font-size: 12px;
        line-height: 16px;
        height: 16px;
    }

    .aboutzs-imgBox .item .item-box .icon {
        right: 10px;
    }
}

/* =========

  经销网络

  ========== */
.contactNetNox {
    margin-top: 50px;
    text-align: center;
    margin-bottom: 40px;
}

.contactNetNox .content {
    font-size: 16px;
    color: #4a4949;
    line-height: 2;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 20px;
}

.contactNetNox img {
    margin-top: 35px;
}

.conNetchoose-top {
    border-left: 1px solid #d7d7d7;
}

.conNetchoose-top .d1 {
    width: 50%;
    border: 1px solid #d7d7d7;
    border-left: 0;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
}

.conNetchoose-top .d1.active {
    border-top: 2px solid #da251d;
    color: #da251d;
    font-weight: bold;
}

.conNetul {
    margin-top: 60px;
    margin-bottom: 140px;
}

#choose0 {
    display: block;
}

#choose1 {
    display: none;
}

.conNetul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.conNetul li {
    width: 29.41%;
    margin-right: 5.885%;
    margin-bottom: 25px;
}

.conNetul li:nth-child(3n+0) {
    margin-right: 0;
}

.conNetul li .title {
    font-size: 26px;
    color: #373737;
    font-family: "Microsoft JhengHei";
    padding-left: 30px;
    line-height: 1;
    height: 26px;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 8px;
    position: relative;
}

.conNetul li .title:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 7px 7px 0 7px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #da251d;
}

.conNetul li .title:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 4px;
    width: 7px;
    height: 7px;
    background-color: #fff;
    border-radius: 50%;
}

.conNetul li .content {
    font-size: 14px;
    color: #373737;
    line-height: 2;
    font-family: "sans-serif";
    max-height: 140px;
    overflow: hidden;
}

@media only screen and (min-width: 601px) {
    .conNetchoose-top .d1:hover {
        color: #da251d;
    }
}

@media only screen and (max-width:1280px) {
    .conNetul {
        margin-top: 50px;
        margin-bottom: 120px;
    }
}

@media only screen and (max-width:1024px) {
    .conNetul {
        margin-top: 5%;
        margin-bottom: 12%;
    }

    .contactNetNox {
        margin-top: 5%;
        margin-bottom: 4%;
    }

    .contactNetNox img {
        margin-top: 3.5%;
    }

    .contactNetNox .content {
        margin-top: 10px;
    }

    .conNetul li {
        margin-bottom: 2.5%;
        width: 32%;
        margin-right: 2%;
    }
}

@media only screen and (max-width:800px) {
    .conNetul li {
        width: 49%;
    }

    .conNetul li:nth-child(3n+0) {
        margin-right: 2%;
    }

    .conNetul li:nth-child(2n+0) {
        margin-right: 0;
    }
}

@media only screen and (max-width:414px) {

    .contactNetNox .content,
    .conNetul li .content {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    .conNetul li {
        width: 100%;
        float: none;
    }

    .conNetul li:nth-child(3n+0) {
        margin-right: 0;
    }

    .conNetul li .content {
        height: auto;
    }

    .conNetul li .title {
        font-size: 20px;
        margin-bottom: 3px;
    }

    .conNetchoose-top .d1 {
        height: 36px;
        line-height: 36px;
    }
}

/* =========

  联系方式

  ========== */
.BMapLib_SearchInfoWindow .BMapLib_bubble_center,
.BMapLib_SearchInfoWindow .BMapLib_bubble_tools {
    display: none;
}

.BMapLib_SearchInfoWindow .BMapLib_bubble_title,
.BMapLib_SearchInfoWindow .BMapLib_bubble_top {
    height: auto !important;
}

.BMapLib_SearchInfoWindow .BMapLib_bubble_title {
    font-weight: bold;
    color: #686868;
    line-height: 1.5;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.BMapLib_SearchInfoWindow .BMapLib_bubble_top {
    padding-left: 10px;
    padding-right: 10px;
}

.BMapLib_SearchInfoWindow {
    border: 0;
    margin-bottom: -20px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    margin-left: -28px;
}

.BMapLib_SearchInfoWindow:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid rgba(0, 0, 0, .3);
    bottom: -9px;
    left: 50%;
    margin-left: -8px;
}

.BMapLib_SearchInfoWindow:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid #fff;
    bottom: -8px;
    left: 50%;
    margin-left: -7px;
}

.BMapLib_SearchInfoWindow .BMapLib_trans {
    display: none;
}

.contactBox {
    margin-top: 45px;
    margin-bottom: 130px;
}

.contactBox .left {
    float: left;
    width: calc(87.5% - 300px);
}

.contactBox .left .top .title {
    font-size: 36px;
    color: #da251d;
    font-family: "Microsoft JhengHei";
    line-height: 1;
}

.contactBox .left .top .content {
    font-size: 18px;
    color: #2f2f2f;
    line-height: 1.5;
    font-family: "Microsoft JhengHei";
    margin-top: 25px;
    margin-bottom: 70px;
}

.contactBox .left .form-box .ttitle {
    width: 220px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    font-size: 18px;
    color: #da251d;
    font-family: "Microsoft JhengHei";
    border: 1px solid #ececec;
    margin-bottom: -1px;
}

.contactBox .left .form-box input[type="text"] {
    width: 100%;
    border: 0;
    border-top: 1px solid #ececec;
    height: 75px;
    text-indent: 20px;
    font-size: 16px;
    color: #7a7a7a;
    font-family: "Microsoft JhengHei";
}

.contactBox .left .form-box textarea {
    width: 100%;
    border: 0;
    border-top: 1px solid #ececec;
    height: 210px;
    text-indent: 20px;
    padding-top: 30px;
    font-size: 16px;
    color: #7a7a7a;
    font-family: "Microsoft JhengHei";
    resize: none;
}

.contactBox .left .form-box input[type="text"].tdinput2 {
    border-bottom: 1px solid #ececec;
}

.contactBox .left .form-box .yzm-box {
    margin-top: 36px;
}

.contactBox .left .form-box .yzm-box .code {
    float: left;
    width: 100px;
    height: 48px;
    background-color: #010101;
    text-align: center;
    line-height: 48px;
    color: #ffffcc;
    font-size: 18px;
    cursor: pointer;
}

.contactBox .left .form-box .yzm-box input[type="submit"] {
    width: 220px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    border: 1px solid #da251d;
    font-size: 18px;
    color: #da251d;
    font-family: "Microsoft JhengHei";
    background-color: #fff;
    margin-left: 10px;
    cursor: pointer;
}

.contactBox .right {
    float: right;
    width: 200px;
}

.contactBox .right .imgbox {
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    border: 1px solid #dfdfdf;
    display: block;
    width: 200px;
}

.contactBox .right .imgbox .img {
    padding-top: calc(200 / 200 * 100%);
}

.contactBox .right .title {
    font-size: 22px;
    color: #fff;
    font-family: "Microsoft JhengHei";
    text-indent: 20px;
    height: 54px;
    line-height: 54px;
    background-color: #a3a3a3;
    border-top: 1px solid rgba(255, 255, 255, .5);
    display: none;
}

@media only screen and (max-width:1280px) {
    .contactBox .left .form-box input[type="text"] {
        height: 61px;
    }

    .contactBox .left .form-box textarea {
        height: 150px;
        padding-top: 20px;
    }

    .contactBox .left .top .title {
        font-size: 32px;
    }

    .contactBox .left .top .content {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width:1024px) {
    .contactBox {
        margin-top: 4.5%;
        margin-bottom: 12%;
    }

    .contactBox .left .top .title {
        font-size: 26px;
    }

    .contactBox .left .top .content {
        margin-top: 20px;
        margin-bottom: 45px;
    }

    .contactBox .left .form-box input[type="text"] {
        height: 51px;
        font-size: 14px;
    }

    .contactBox .left .form-box textarea {
        height: 130px;
        padding-top: 15px;
        font-size: 14px;
    }
}

@media only screen and (max-width:800px) {
    .contactBox .left {
        width: calc(94% - 240px);
    }

    .contactBox .left .top .title {
        font-size: 24px;
    }

    .contactBox .left .top .content {
        margin-top: 15px;
        margin-bottom: 30px;
        font-size: 16px !important;
    }

    .contactBox .left .form-box .ttitle {
        width: 200px;
        height: 46px;
        line-height: 46px;
    }
}

@media only screen and (max-width:600px) {
    .contactBox .right {
        width: 200px;
        float: none;
        margin: 0 auto;
    }

    .contactBox .left {
        width: 100%;
        float: none;
        margin-bottom: 4%;
    }

    .contactBox .left .form-box input[type="text"] {
        height: 37px;
        text-indent: 10px;
    }

    .contactBox .left .form-box textarea {
        height: 120px;
        padding-top: 10px;
        text-indent: 10px;
        font-size: 12px;
    }

    .contactBox .left .form-box .ttitle {
        width: 180px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }

    .contactBox .left .top .content {
        margin-top: 3%;
        margin-bottom: 5%;
    }

    .contactBox .left .top .title {
        font-size: 20px;
    }

    .contactBox .left .form-box .yzm-box {
        margin-top: 15px;
    }

    .contactBox .left .form-box .yzm-box .code {
        height: 40px;
        line-height: 40px;
        width: 80px;
        font-size: 15px;
    }

    .contactBox .left .form-box .yzm-box input[type="submit"] {
        height: 40px;
        width: 160px;
        line-height: 40px;
        font-size: 15px;
    }
}

@media only screen and (max-width:414px) {
    .BMapLib_SearchInfoWindow .BMapLib_bubble_title {
        font-size: 12px;
    }
}

/* =========

  人才招聘

  ========== */
.contactzpBox .content {
    font-size: 14px;
    color: #4a4949;
    max-width: 780px;
}

.contactzp-img {
    margin-top: 120px;
    margin-bottom: 120px;
    border-bottom: 3px solid #008eec;
    display: block;
}

@media only screen and (max-width:1024px) {
    .contactzp-img {
        margin-top: 12%;
        margin-bottom: 12%;
    }
}

/*网站地图*/
.siteBox .btitle {
    font-size: 48px;
    color: #008eec;
    text-align: center;
    margin-top: 200px;
    line-height: 1;
    margin-bottom: 100px;
}

.siteBox .outul {
    margin-bottom: 55px;
}

.siteBox .outul .li1 {
    display: inline-block;
    width: 30%;
    margin-right: calc(5% - 4px);
    margin-bottom: 55px;
    vertical-align: top;
}

.siteBox .outul .li1:nth-child(3n+0) {
    margin-right: 0;
}

.siteBox .outul .li1 .a1 {
    display: block;
    font-size: 24px;
    color: #008eec;
    padding-bottom: 14px;
    border-bottom: 1px solid #d9d9d9;
    font-family: "Microsoft JhengHei";
    font-weight: bold;
}

.siteBox .outul .li1 .inul {
    margin-top: 15px;
}

.siteBox .outul .li1 .inul li a {
    font-size: 18px;
    color: #3b3b3b;
    line-height: 32px;
    display: block;
    font-family: "Microsoft JhengHei";
}

@media only screen and (min-width: 601px) {
    .siteBox .outul .li1 .inul li:hover a {
        color: #000;
        background-color: #f5f7fa;
    }
}

@media only screen and (max-width: 1280px) {
    .siteBox .btitle {
        font-size: 42px;
        margin-bottom: 80px;
    }

    .siteBox .outul .li1 {
        margin-bottom: 45px;
    }
}

@media only screen and (max-width: 1024px) {
    .siteBox .btitle {
        font-size: 38px;
        margin-bottom: 7.5%;
    }

    .siteBox .outul .li1 {
        margin-bottom: 4.2%;
    }

    .siteBox .outul .li1 .a1 {
        font-size: 22px;
    }

    .siteBox .outul {
        margin-bottom: 5.5%;
    }
}

@media only screen and (max-width: 1023px) {
    .siteBox .btitle {
        margin-top: calc(71px + 4%);
    }
}

@media only screen and (max-width: 800px) {
    .siteBox .btitle {
        font-size: 32px;
    }
}

@media only screen and (max-width: 600px) {
    .siteBox .btitle {
        font-size: 26px;
    }

    .siteBox .outul .li1 .a1 {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .siteBox .outul .li1 .inul {
        margin-top: 10px;
    }

    .siteBox .outul .li1 .inul li a {
        font-size: 16px;
    }
}

@media only screen and (max-width: 414px) {
    .siteBox .btitle {
        font-size: 22px;
    }

    .siteBox .outul .li1 .a1 {
        font-size: 16px;
        padding-bottom: 7px;
    }

    .siteBox .outul .li1 .inul {
        margin-top: 7px;
    }

    .siteBox .outul .li1 {
        width: 47.2%;
    }

    .siteBox .outul .li1:nth-child(3n+0) {
        margin-right: calc(5.6% - 4px);
    }

    .siteBox .outul .li1:nth-child(2n+0) {
        margin-right: 0;
    }

    .siteBox .outul .li1 .inul li a {
        font-size: 12px;
        line-height: 22px;
    }
}

/*网站地图 End*/

/* =========

  应用方案

  ========== */
.casetop-box {
    margin-top: 50px;
    margin-bottom: 90px;
}

.casetop-box .desc {
    font-size: 18px;
    color: #4a4949;
    margin-top: 20px;
    text-align: center;
}

.casetop-box .content {
    font-size: 14px;
    color: #4a4949;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
    margin-top: 22px;
}

.case-content {
    margin-bottom: 54px;
}

.case-content .case-swiper .swiper-slide {
    width: auto;
    overflow: hidden;
    margin-top: 0;
}

.case-content .case-swiper .swiper-slide .case-item {
    display: block;
    padding-top: calc(320 / 480 * 100%);
    position: relative;
}

.case-content .case-swiper .swiper-slide .case-item .inbox {
    position: absolute;
    bottom: 25px;
    left: 30px;
}

.case-content .case-swiper .swiper-slide .case-item .inbox .title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 18px;
}

.case-content .case-swiper .swiper-slide .case-item .inbox .more {
    position: relative;
    width: 16px;
    height: 16px;
}

.case-content .case-swiper .swiper-slide .case-item .inbox .more::before {
    content: "";
    width: 16px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
}

.case-content .case-swiper .swiper-slide .case-item .inbox .more::after {
    content: "";
    width: 2px;
    height: 16px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
}

.case-content .case-swiper .swiper-slide .case-item .inboxhide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(47, 56, 63, .64), transparent);
    background: -o-linear-gradient(right, rgba(47, 56, 63, .64), transparent);
    background: -moz-linear-gradient(right, rgba(47, 56, 63, .64), transparent);
    background: linear-gradient(to right, rgba(47, 56, 63, .64), transparent);
    padding: 0 30px;
    transform: translateX(-100%);
    transition: all .5s;
}

.case-content .case-swiper .swiper-slide .case-item .inboxhide .tit {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 40px;
}

.case-content .case-swiper .swiper-slide .case-item .inboxhide .text {
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.5;
    max-height: 96px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case-content .case-swiper .swiper-slide .case-item .inboxhide .more {
    position: absolute;
    width: 16px;
    height: 16px;
    bottom: 25px;
}

.case-content .case-swiper .swiper-slide .case-item .inboxhide .more::before {
    content: "";
    width: 16px;
    height: 2px;
    background-color: #da251d;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
}

.case-content .case-swiper .swiper-slide .case-item .inboxhide .more::after {
    content: "";
    width: 2px;
    height: 16px;
    background-color: #da251d;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
}

.case-content .case-swiper .case-pagination {
    text-align: center;
    padding-top: 20px;
}

.case-content .case-swiper .case-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 2px;
    background: #bfbfbf;
    opacity: 1;
    border-radius: initial;
}

.case-content .case-swiper .case-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #da251d;
}

@media only screen and (min-width: 601px) {
    .case-content .case-swiper .swiper-slide .case-item:hover .inboxhide {
        transform: translateX(0);
    }

    .case-content .case-swiper .swiper-slide .case-item:hover .inbox {
        opacity: 0;
    }
}

@media only screen and (max-width: 1280px) {
    .casetop-box {
        margin-top: 40px;
        margin-bottom: 90px;
    }

    .case-content .case-swiper .swiper-slide .case-item .inbox .title {
        font-size: 20px;
    }

    .case-content .case-swiper .swiper-slide .case-item .inboxhide .tit {
        font-size: 20px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .case-content .case-swiper .swiper-slide .case-item .inboxhide .text {
        -webkit-line-clamp: 3;
        max-height: 72px;
        line-height: 1.2;
    }
}

@media only screen and (max-width: 1024px) {
    .casetop-box {
        margin-top: 4%;
        margin-bottom: 8%;
    }

    .casetop-box .desc {
        margin-top: 2%;
        font-size: 16px;
    }

    .casetop-box .content {
        margin-top: 2%;
    }

    .case-content .case-swiper .swiper-slide .case-item .inbox .title {
        font-size: 18px;
    }

    .case-content .case-swiper .swiper-slide .case-item .inboxhide .tit {
        font-size: 18px;
    }

}

@media only screen and (max-width: 600px) {
    .case-content .case-swiper .swiper-slide .case-item .inbox .title {
        font-size: 16px;
    }

    .case-content .case-swiper .swiper-slide .case-item .inboxhide .tit {
        font-size: 16px;
    }
}

@media only screen and (max-width: 414px) {
    .casetop-box .content {
        margin-top: 2%;
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    .casetop-box .desc {
        font-size: 14px;
    }

    .aboutcomBox .d1 {
        font-size: 26px;
    }

}

/* =========

  应用方案详细

  ========== */
.caseDetTop-box {
    margin-top: 60px;
    padding-bottom: 70px;
    border-bottom: 1px solid #e0e0e0;
}

.caseDetTop-box .d1 {
    color: #373737;
}

.caseDetTop-box .demo,
.systembox .demo {
    font-size: 14px;
    line-height: 2;
    color: #4a4949;
    margin: 30px auto 0;
    max-width: 1013px;
}

.systembox {
    margin-top: 58px;
    padding-bottom: 38px;
    border-bottom: 1px solid #e0e0e0;
}

.casev-bottom {
    margin-top: 58px;
    padding-bottom: 62px;
    border-bottom: 1px solid #e0e0e0;
}

.casev-bottom .casevb-list {
    margin-top: 35px;
}

.casev-bottom .casevb-list .casevb-item {
    display: block;
    width: calc((100% - 48px) / 3);
    margin-right: 24px;
    float: left;
}

.casev-bottom .casevb-list .casevb-item:last-child {
    margin-right: 0;
}

.casev-bottom .casevb-list .casevb-item .img {
    padding-top: calc(310 / 384 * 100%);
}

.casev-bottom .casevb-list .casevb-item .tit {
    font-size: 14px;
    color: #686868;
    font-weight: bold;
    text-align: center;
    line-height: 2;
    margin-top: 14px;
}

.casevimg {
    width: 100%;
    position: fixed;
    z-index: 113;
    left: 50%;
    top: 50%;
    opacity: 0;
    -moz-transform: scale(0.000000001) translate(-50%, -50%);
    -ms-transform: scale(0.000000001) translate(-50%, -50%);
    -o-transform: scale(0.000000001) translate(-50%, -50%);
    -webkit-transform: scale(0.000000001) translate(-50%, -50%);
    transform: scale(0.000000001) translate(-50%, -50%);
    padding-bottom: 40px;
}

.casevimg[data-on="on"] {
    opacity: 1;
    -moz-transform: scale(1);
    -ms-transform: scale(1) translate(-50%, -50%);
    -o-transform: scale(1) translate(-50%, -50%);
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
}

.casevimg .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.casevimg .swiper-slide .img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
}

.casevimg-gb {
    width: 50px;
    height: 50px;
    position: fixed;
    cursor: pointer;
    z-index: 114;
    top: 0px;
    right: 0px;
}

.casevimg-gb:before,
.casevimg-gb:after {
    width: 26px;
    height: 2px;
    background: #fff;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px -13px;
}

.casevimg-gb:before {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.casevimg-gb:after {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.casevimg-close {
    background: rgba(0, 0, 0, .8);
    z-index: 112;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0;
}

.casevimg-close[data-on="on"] {
    opacity: 1;
}

.casev-btn {
    margin-top: 35px;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.casev-btn a {
    display: block;
    font-size: 16px;
    color: #616161;
    font-family: "ziti";
}

.casev-btn a span {
    display: inline-block;
    color: #d80202;
    font-size: 16px;

}

.casev-btn a.prev span {
    margin-right: 15px;
}

.casev-btn a.next span {
    margin-left: 15px;
}


@media only screen and (min-width: 600px) {
    .casev-btn a:hover {
        color: #d80202;
    }
}

@media only screen and (max-width: 1280px) {
    .caseDetTop-box {
        margin-top: 40px;
    }

}

@media only screen and (max-width: 1024px) {
    .caseDetTop-box {
        margin-top: 4%;
    }

    .casev-bottom .casevb-list .casevb-item {
        margin-right: 10px;
        width: calc((100% - 20px) / 3);
    }

}

@media only screen and (max-width: 800px) {
    .casev-bottom .casevb-list .casevb-item {
        margin-right: 0;
        width: 100%;
        margin-bottom: 10px;
    }

}

@media only screen and (max-width: 600px) {}

@media only screen and (max-width: 414px) {}

/* =========

  产品中心

  ========== */
.pro-index-main {
    margin: 50px auto 95px;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    width: 94%;
}

.pro-item-box {
    position: relative;
    overflow: hidden;
    margin: 0 auto 70px;
    width: 100%;
}

.pro-item-box .bbt {
    height: 95px;
    line-height: 95px;
    position: relative;
    border-bottom: 1px solid #f9f9f9;
    margin-bottom: 42px;
}

.pro-item-box .bbt .bt a {
    font-size: 30px;
    color: #2a2a2a;
    font-weight: bold;
}

.pro-item-box .bbt .href {
    position: absolute;
    right: 0px;
    top: 0px;
    /*padding-right: 26px;*/
    max-width: 860px;
    white-space: nowrap;
}

/*.pro-item-box .bbt .href::after{
	content: "";
	position: absolute;
	right: 2px;
	top: 50%;
	width: 6px;
	height: 6px;
	border-style: solid;
	border-width: 1px;
	border-color: #2a2a2a #2a2a2a transparent transparent;
	transform: rotate(45deg);
	margin-top: -3px;
}*/
.pro-item-box .bbt .href .prohref-swiper {
    margin: 0 30px;
}

.pro-item-box .bbt .href .prohref-swiper .swiper-wrapper .swiper-slide {
    width: auto;
}

.pro-item-box .bbt .href .prohref-prev,
.pro-item-box .bbt .href .prohref-next {
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 1px;
    transform: rotate(45deg);
    margin-top: -4px;
    cursor: pointer;
}

.pro-item-box .bbt .href .prohref-prev {
    left: 0;
    border-color: transparent transparent #2a2a2a #2a2a2a;
}

.pro-item-box .bbt .href .prohref-next {
    right: 5px;
    border-color: #2a2a2a #2a2a2a transparent transparent;
}

.pro-item-box .bbt .href a {
    *display: inline;
    *zoom: 1;
    display: inline-block;
    height: 95px;
    position: relative;
    font-size: 14px;
    color: #2a2a2a;
    /*margin-left: 40px;*/
}

.pro-item-box .bbt .href a.on {
    color: #da251d;
    font-weight: bold;
}

.pro-item-box .bbt .href a:after {
    height: 2px;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #da251d;
    transform: translateX(-50%);
}

.pro-item-box .bbt .href a.on:after {
    width: 100%;
}

.pro-item-box .list {
    width: 100% !important;
}

.pro-item-box .list dl {
    display: block;
    width: 100% !important;
}

.pro-item-box .list dl dd {
    display: block;
    float: left;
    height: 370px;
    /*width: 796px;*/
    margin: 0 4px 4px 0;
    width: calc((100% - 4px) / 3 * 2);
    transition: all .5s;
}

.pro-item-box .list dl dd a {
    display: block;
    height: 370px;
    background: #f8f8f8;
    overflow: hidden;
    position: relative;
}

.pro-item-box .list dl dd a .img {
    padding-top: calc(370 / 796 * 100%);
    transition: all .5s;
}

.pro-item-box .list dl dd a .demo {
    position: absolute;
    left: 50px;
    top: 50%;
    width: 45%;
    transform: translateY(-50%);
}

.pro-item-box .list dl dd a .demo .tit {
    font-size: 28px;
    color: #2a2a2a;
    margin-bottom: 35px;
}

.pro-item-box .list dl dd a .demo .text {
    font-size: 13px;
    color: #7d7d7d;
    line-height: 25px;
    max-height: 100px;
    margin-bottom: 70px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pro-item-box .list dl dd a .demo .more {
    position: relative;
    width: 100px;
    height: 35px;
    border-radius: 25px;
    background-color: #c62019;
}

.pro-item-box .list dl dd a .demo .more::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 16px;
    background-color: #fff;
    margin-top: -8px;
    margin-left: -1px;
}

.pro-item-box .list dl dd a .demo .more::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: #fff;
    margin-top: -1px;
    margin-left: -8px;
}

.pro-item-box .list dl dt {
    display: block;
    float: left;
    margin: 0 4px 4px 0;
    height: 370px;
    width: calc((100% - 8px) / 3);
}

.pro-item-box .list dl dt:nth-child(2) {
    margin-right: 0;
}

.pro-item-box .list dl dt:nth-child(5n) {
    margin-right: 0;
}

.pro-item-box .list dl dt a {
    display: block;
    background: #f8f8f8;
    height: 370px;
    text-align: center;
}

.pro-item-box .list dl dt a .tu {
    width: 100%;
    overflow: hidden;
}

.pro-item-box .list dl dt a .tu .img {
    padding-top: calc(260 / 400 * 100%);
    transition: all .5s;
}

.pro-item-box .list dl dt a .title {
    font-size: 18px;
    line-height: 26px;
    height: 26px;
    color: #000;
    font-weight: bold;
    margin-bottom: 2px;
}

.pro-item-box .list dl dt a .brandbt {
    color: #919191;
    font-size: 18px;
    line-height: 26px;
    height: 26px;
}

.pro-item-box .list dl dt a .brandbt {
    color: #919191;
    font-size: 14px;
    line-height: 22px;
    height: 22px;
}



@media only screen and (min-width: 601px) {
    .pro-item-box .list dl dt a:hover {
        box-shadow: 0 0 15px #e0e0e0;
    }

    .pro-item-box .list dl dd a:hover .img {
        transform: scale(1.1);
    }

    .pro-item-box .list dl dt a:hover .tu .img {
        transform: scale(1.1);
    }
}

@media only screen and (max-width: 1280px) {
    .pro-item-box .list dl dt {
        width: calc((100% - 4px) / 2);
        height: auto;
    }

    .pro-item-box .list dl dd {
        width: 100%;
        height: auto;
    }

    .pro-item-box .list dl dt:nth-child(2) {
        margin-right: 4px;
    }

    .pro-item-box .list dl dt:nth-child(3n) {
        margin-right: 0px;
    }

    .pro-item-box .list dl dd a {
        height: auto;
    }

    .pro-item-box .list dl dt a {
        height: auto;
    }

    .pro-item-box .list dl dt a .brandbt {
        padding-bottom: 4%;
        height: auto;
        line-height: 1;
    }

    .pro-item-box .bbt .bt a {
        font-size: 28px;
    }

    .pro-item-box .bbt .href {
        max-width: 680px;
    }
}

@media only screen and (max-width: 1024px) {
    .pro-item-box .bbt .bt {
        margin-bottom: 20px;
    }

    .pro-item-box .bbt .bt a {
        font-size: 26px;
    }

    .pro-item-box .bbt {
        height: auto;
        line-height: initial;
    }

    .pro-item-box .bbt .href {
        position: relative;
        max-width: 100%
    }

    .pro-item-box .bbt .href a {
        height: 40px;
    }

    .pro-item-box .bbt .href::after {
        display: none;
    }

    .pro-item-box .bbt .href .prohref-swiper {
        margin: 0;
    }

    .pro-item-box .bbt .href .prohref-prev,
    .pro-item-box .bbt .href .prohref-next {
        display: none;
    }
}

@media only screen and (max-width: 800px) {
    .pro-item-box .list dl dd a .demo .tit {
        margin-bottom: 3%;
        font-size: 24px;
    }

    .pro-item-box .list dl dd a .demo .text {
        margin-bottom: 8%;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 600px) {
    .pro-item-box .list dl dd a .demo {
        width: 100%;
        left: 0;
        padding: 0 4%;
    }

    .pro-item-box .list dl dd a .demo .tit {
        font-size: 22px;
    }
}

@media only screen and (max-width:414px) {
    .pro-item-box .list dl dd a .demo .text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 6%;
    }

}


/* =========

  产品分类 producttype

  ========== */
.protypebox {
    margin-top: 60px;
}

.protypebox .protype-left {
    width: 275px;
    float: left;
    margin-right: 55px;
}

.protypebox .protype-left .pl-title {
    font-size: 30px;
    color: #000000;
    padding-bottom: 23px;
    line-height: 1;
    border-bottom: 1px solid #eceff1;
}

.protypebox .protype-left .pl-menu {
    margin-top: 19px;
}

.protypebox .protype-left .pl-menu .mli {
    display: block;
    padding: 18px 30px 18px 10px;
    font-size: 16px;
    line-height: 1;
    color: #3b3b3b;
    border-bottom: 1px solid #eceeef;
    position: relative;
}

.protypebox .protype-left .pl-menu .mli::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-width: 2px;
    border-color: #5a5a5a #5a5a5a transparent transparent;
    transform: rotate(45deg);
    margin-top: -3px;
    display: none;
}

.protypebox .protype-left .pl-menu .plmenu-swiper {
    display: none;
}

.protypebox .protype-left .pl-menu .plmenu-swiper .swiper-wrapper .swiper-slide {
    width: auto;
}

.protypebox .protype-left .pl-menu .plmenu-swiper .mli {
    border-bottom: none;
}


.protypebox .protype-right {
    width: calc(100% - 330px);
    float: right;
    margin-bottom: 35px;
}

.protypebox .protype-right .pr-top {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.protypebox .protype-right .pr-top .tit {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
}

.protypebox .protype-right .pr-top .text {
    font-size: 18px;
    color: #878787;
    margin-bottom: 15px;
}

.protypebox .protype-right .pr-list {
    margin-bottom: 60px;
}

.protypebox .protype-right .pr-list .pr-item {
    display: block;
    width: calc((100% - 6px) / 3);
    margin-right: 3px;
    float: left;
    background-color: #f8f8f8;
    text-align: center;
    margin-bottom: 3px;
}

.protypebox .protype-right .pr-list .pr-item:nth-child(3n) {
    margin-right: 0;
}

.protypebox .protype-right .pr-list .pr-item .imgdiv {
    overflow: hidden;
}

.protypebox .protype-right .pr-list .pr-item .imgdiv .img {
    padding-top: calc(185 / 286 * 100%);
    transition: all .5s;
}

.protypebox .protype-right .pr-list .pr-item .type {
    font-size: 15px;
    font-weight: bold;
    color: #000000;
    line-height: 24px;
    height: 24px;
}

.protypebox .protype-right .pr-list .pr-item .tit {
    font-size: 14px;
    color: #6c6c6c;
    line-height: 24px;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 10%;
    overflow: hidden;
}

.protypebox .protype-right .pr-list .pr-item .icon {
    position: relative;
    width: 11px;
    height: 11px;
    left: 50%;
    margin-left: -5.5px;
    margin-bottom: 20px;
    margin-top: 5px;
}

.protypebox .protype-right .pr-list .pr-item .icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 11px;
    height: 1px;
    background-color: #da251d;
    margin-top: -0.5px;
}

.protypebox .protype-right .pr-list .pr-item .icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 11px;
    background-color: #da251d;
    margin-left: -0.5px;
}


@media only screen and (min-width: 601px) {

    .protypebox .protype-left .pl-menu .mli:hover,
    .protypebox .protype-left .pl-menu .mli.on {
        background-color: #da251d;
        color: #fff;
    }

    .protypebox .protype-left .pl-menu .mli:hover::after,
    .protypebox .protype-left .pl-menu .mli.on::after {
        border-color: #fff #fff transparent transparent;
    }

    .protypebox .protype-right .pr-list .pr-item:hover {
        box-shadow: 0 0 15px #e0e0e0;
    }

    .protypebox .protype-right .pr-list .pr-item:hover .imgdiv .img {
        transform: scale(1.1);
    }
}

@media only screen and (max-width: 1024px) {
    .protypebox .protype-left {
        width: 100%;
        float: none;
        margin-right: 0;
    }

    .protypebox .protype-right {
        width: 100%;
        float: none;
    }

    .protypebox .protype-left .pl-menu {
        margin-bottom: 4%;
    }

    .protypebox .protype-left .pl-menu ul {
        display: none;
    }

    .protypebox .protype-left .pl-menu .plmenu-swiper {
        display: block;
    }

    .protypebox .protype-left .pl-menu .mli.on {
        background-color: #da251d;
        color: #fff;
    }

    .protypebox .protype-left .pl-menu .mli.on::after {
        border-color: #fff #fff transparent transparent;
    }

}

@media only screen and (max-width: 640px) {
    .protypebox .protype-right .pr-list .pr-item {
        width: calc((100% - 6px) / 2);
    }

    .protypebox .protype-right .pr-list .pr-item:nth-child(2n) {
        margin-right: 0;
    }

    .protypebox .protype-right .pr-list .pr-item:nth-child(3n) {
        margin-right: 3px;
    }
}



/* =========

  产品详细

  ========== */
.provbg {
    padding-top: calc(800 / 1920 * 100%);
    margin-top: 105px;
    position: relative;
    min-height: 200px;
}

.provbg .provbg-content {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 1200px;
    transform: translate(-50%, -50%);
    width: 94%;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.provbg .provbg-content .bg-left {
    float: left;
    width: 50%;
}

.provbg .provbg-content .bg-left .title {
    font-size: 44px;
    font-weight: bold;
    ;
    color: #fff;
    line-height: 1;
    margin-bottom: 44px;
}

.provbg .provbg-content .bg-left .content {
    font-size: 14px;
    line-height: 2.5;
    color: #fff;
}

.provbg .provbg-content .bg-left .download {
    width: 160px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background-color: #1f81d1;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    display: block;
    margin-top: 70px;
}

.provbg .provbg-content .bg-left .download img {
    margin-right: 10px;
    width: 19px;
    height: 19px;
}

.provbg .provbg-content .bg-right {
    float: left;
    width: 50%;
}

.provbg .provbg-content .bg-right .img {
    padding-top: calc(650 / 691 * 100%);
}

.proDetBox {
    color: #686868;
    font-size: 16px;
    line-height: 2;
    margin-top: 70px;
    margin-bottom: 80px;
    overflow: visible;
    position: relative;
}

.proDetBox .top {
    font-size: 40px;
    color: #373737;
    font-family: "Microsoft JhengHei";
    line-height: 1;
    height: 40px;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 36px;
}

.proDetBox .content .info {
    border-top: 1px solid #e1e1e1;
    padding: 64px 0;
}

.proDetBox .content .info .info-l {
    float: left;
    width: 25%;
    font-size: 30px;
    color: #373737;
}

.proDetBox .content .info .info-r {
    float: left;
    width: 75%;
    font-size: 16px;
    color: #686868;
    line-height: 2;
}

.explorebox {
    margin-bottom: 85px;
}

.explorebox .title {
    position: relative;
    font-size: 16px;
    color: #000000;
    padding-right: 22px;
    display: inline-block;
    margin-bottom: 10px;
}

.explorebox .title::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 13px;
    height: 2px;
    background-color: #f50100;
    margin-top: -1px;
}

.explorebox .title::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: 2px;
    height: 13px;
    background-color: #f50100;
    margin-top: -6.5px;
}

.explorebox .explore-list .explore-item {
    display: block;
    width: calc((100% - 48px) / 3);
    position: relative;
    float: left;
    margin-right: 24px;
    overflow: hidden;
}

.explorebox .explore-list .explore-item:last-child {
    margin-right: 0;
}

.explorebox .explore-list .explore-item .img {
    padding-top: calc(268 / 384 * 100%);
    transition: all .5s;
}

.explorebox .explore-list .explore-item .tit {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100%;
    font-size: 16px;
    color: #fff;
}

@media only screen and (min-width:600px) {
    .explorebox .explore-list .explore-item:hover .img {
        transform: scale(1.1);
    }
}

@media only screen and (max-width:1600px) {
    .product-embed {
        height: 700px !important;
    }
}

@media only screen and (max-width:1440px) {
    .product-embed {
        height: 620px !important;
    }
}

@media only screen and (max-width:1280px) {
    .product-embed {
        height: 540px !important;
    }

    .proDetBox {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .proDetBox .line {
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .proDetBox .top {
        font-size: 36px;
        height: 36px;
    }

    .proDetBg .left .title {
        font-size: 36px;
        max-height: 72px;
    }

    .proDetBg .left {
        padding-top: 10%;
    }

    .provbg .provbg-content .bg-left .title {
        font-size: 36px;
    }

    .provbg .provbg-content .bg-left .download {
        margin-top: 6%;
    }
}

@media only screen and (max-width:1024px) {
    .product-embed {
        height: 440px !important;
    }

    .product-video .word {
        font-size: 36px;
        height: 36px;
    }

    .product-video .mejs-overlay-button {
        top: calc(50% + 45px);
        width: 60px;
        height: 60px;
        margin-left: -30px;
    }

    .proDetBg {
        padding-bottom: 5%;
    }

    .product-video .mejs-overlay-button:after {
        border-top: 6px solid transparent;
        border-left: 12px solid #fff;
        border-bottom: 6px solid transparent;
        margin-left: -4px;
        margin-top: -6px;
    }

    .proDetBox {
        margin-top: 6%;
        margin-bottom: 6%;
    }

    .proDetBox .line {
        margin-top: 2%;
        margin-bottom: 5%;
    }

    .proDetBox .top {
        font-size: 30px;
        height: 30px;
    }

    .proDetNext {
        height: 200px;
    }

    .proDetNext .inbox .d1 {
        font-size: 18px;
        height: 18px;
    }

    .proDetNext .inbox .title {
        font-size: 30px;
        height: 45px;
        margin-top: 8px;
    }

    .prdLinkBox {
        height: 50px;
        line-height: 50px;
    }

    .proDetShow {
        padding-top: 6%;
        padding-bottom: 6.5%;
    }

    .proDetShow .title {
        font-size: 30px;
    }

    .proDetShow ul {
        margin-top: 2.5%;
    }

    .proDetBg {
        height: 600px;
    }

    .proDetBg .left .title {
        font-size: 30px;
        max-height: 60px;
    }

    .proDetBg .left .desc {
        margin-top: 22px;
        margin-bottom: 30px;
    }

    .proDetBg .left {
        padding-top: 8%;
    }

    .provbg {
        margin-top: 50px;
    }

    .provbg .provbg-content .bg-left .title {
        font-size: 30px;
        margin-bottom: 3%;
    }

    .provbg .provbg-content .bg-left .content {
        line-height: 2;
    }

    .proDetBox .content .info {
        padding: 5% 0;
    }

    .explorebox .explore-list .explore-item {
        margin-right: 15px;
        width: calc((100% - 30px) / 3);
    }

}

@media only screen and (max-width:1023px) {
    .proDetTop {
        top: 51px;
    }

    .proDetBg {
        margin-top: 125px;
    }
}

@media only screen and (max-width:800px) {
    .proDetBg {
        height: 500px;
    }

    .proDetBg .left .title {
        font-size: 24px;
        max-height: 48px;
    }

    .proDetBg .left .desc {
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .proDetBg .left {
        padding-top: 6%;
    }

    .product-video .word {
        font-size: 24px;
        height: 24px;
    }

    .proDetBox .top {
        font-size: 24px;
        height: 24px;
    }

    .product-video .mejs-overlay-button {
        top: calc(50% + 30px);
        width: 40px;
        height: 40px;
        margin-left: -20px;
        border-width: 2px;
    }

    .product-embed {
        height: 340px !important;
    }

    .proDetNext {
        height: 160px;
    }

    .proDetNext .inbox .d1 {
        font-size: 16px;
        height: 16px;
    }

    .proDetNext .inbox .title {
        font-size: 24px;
        height: 36px;
        margin-top: 5px;
    }

    .proDetShow .title {
        font-size: 24px;
    }

    .proDetShow ul li {
        width: 49%;
        margin-right: 2%;
    }

    .proDetShow ul li:nth-child(3n+0) {
        margin-right: 2%;
    }

    .proDetShow ul li:nth-child(2n+0) {
        margin-right: 0;
    }

    .prdLinkBox {
        height: 44px;
        line-height: 44px;
    }

    .provbg .provbg-content .bg-left .title {
        font-size: 26px;
    }

    .proDetBox .content .info {
        padding: 3% 0;
    }

    .proDetBox .content .info .info-l,
    .proDetBox .content .info .info-r {
        float: none;
        width: 100%;
    }

    .provbg {
        padding-top: initial;
        height: 400px;
    }
}

@media only screen and (max-width:640px) {
    .proDetBg {
        padding-top: 6%;
        padding-bottom: 6%;
        height: auto;
    }

    .proDetBg .left {
        float: left;
        width: 100%;
        padding-top: 0;
    }

    .proDetBg .right {
        float: none;
        width: 100%;
        height: auto;
        display: inline-block;
    }

    .proDetTop .linkbox .a1 {
        margin-right: 15px;
    }

    .proDetTop {
        height: auto;
        line-height: 1;
        padding-bottom: 10px;
    }

    .proDetTop .left {
        float: none;
        width: 100%;
        line-height: 40px;
        height: 40px;
        font-size: 16px;
    }

    .proDetTop .linkbox {
        max-width: none;
        float: none;
    }

    .proDetBg {
        margin-top: 130px;
    }

    .proDetBg .left .title {
        font-size: 20px;
        max-height: none;
        line-height: 1.2;
    }

    .proDetBg .left .desc {
        margin-top: 10px;
        margin-bottom: 15px;
        line-height: 1.5 !important;
        font-size: 12px !important;
    }

    .proDetBg .left .bottom .down {
        width: 90px;
        height: 28px;
        line-height: 28px;
        font-size: 12px;
    }

    .proDetBg .left .bottom .down .icon {
        height: 12px;
    }

    .proDetBg .left .bottom .line {
        width: 30px;
    }

    .explorebox .explore-list .explore-item {
        margin-right: 0;
        width: 100%;
        margin-bottom: 10px;
    }

    .provbg {
        height: auto;
    }

    .provbg .provbg-content {
        flex-direction: column-reverse;
        position: static;
        top: 0;
        left: 0;
        transform: translate(0, 0);
        padding-bottom: 20px;
    }

    .provbg .provbg-content .bg-left {
        width: 100%;
        float: none;
    }

    .provbg .provbg-content .bg-right {
        width: 50%;
        float: none;
    }
}

@media only screen and (max-width:414px) {
    .proDetShow ul li {
        margin-right: 10px;
        width: calc(50% - 5px);
    }

    .prdLinkBox {
        height: 36px;
        line-height: 36px;
    }

    .proDetShow ul li:nth-child(3n+0) {
        margin-right: 10px;
    }

    .proDetShow .title {
        font-size: 18px;
    }

    .proDetBox .top {
        font-size: 18px;
        height: 18px;
    }

    .product-embed {
        height: 240px !important;
    }

    .product-video .word {
        font-size: 18px;
        height: 18px;
    }

    .product-video .mejs-overlay-button {
        top: calc(50% + 25px);
        width: 30px;
        height: 30px;
        margin-left: -15px;
    }

    .product-video .mejs-overlay-button:after {
        border-top: 4px solid transparent;
        border-left: 8px solid #fff;
        border-bottom: 4px solid transparent;
        margin-left: -3px;
        margin-top: -4px;
    }

    .proDetNext {
        height: 120px;
    }

    .proDetNext .inbox .d1 {
        font-size: 14px;
        height: 14px;
    }

    .proDetNext .inbox .title {
        font-size: 20px;
        height: 30px;
        margin-top: 2px;
    }
}

/* =========

  技术支持

  ========== */
.faqbox {
    margin-top: 50px;
    margin-bottom: 147px;
    position: relative;
}

.faqbox .faq-nav {
    margin-bottom: 80px;
}

.faqbox .faq-nav.phone {
    display: none;
}

.faqbox .faq-nav .faq-a {
    display: inline-block;
    padding: 0 30px;
    height: 32px;
    line-height: 32px;
    color: #666666;
    font-size: 16px;
    background-color: #eeeeee;
    border-radius: 16px;
    margin-left: 55px;
    margin-bottom: 23px;
}

.faqbox .faq-nav .faq-a:nth-child(1) {
    margin-left: 0;
}

.faqbox .faq-nav .faq-a.on {
    background-color: rgb(20, 98, 60);
    color: #fff;
}

.faqbox .faq-title {
    color: rgb(20, 98, 60);
    font-size: 30px;
    line-height: 1;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.faqbox .faq-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: rgb(20, 98, 60);
}

.faqbox .faq-list .faq-item {
    position: relative;
    margin-bottom: 2px;
}

.faqbox .faq-list .faq-item .f-top {
    width: 100%;
    height: 80px;
    background-color: #efefef;
    position: relative;
    padding: 0 70px 0 35px;
    display: flex;
    align-items: center;
}

.faqbox .faq-list .faq-item .f-top .tit {
    font-size: 18px;
    color: #7f7f7f;
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.faqbox .faq-list .faq-item .f-top .more {
    position: absolute;
    right: 29px;
    top: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #aaaaaa;
    margin-top: -15px;
}

.faqbox .faq-list .faq-item .f-top .more::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: #fff;
    margin-top: -1px;
    margin-left: -10px;
}

.faqbox .faq-list .faq-item .f-top .more::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 20px;
    background-color: #fff;
    margin-top: -10px;
    margin-left: -1px;
}

.faqbox .faq-list .faq-item .f-content {
    font-size: 14px;
    color: #888888;
    line-height: 24px;
    padding-bottom: 4%;
    display: none;
    padding-left: 35px;
}

.faqbox .faq-list .faq-item[data-on="on"] .f-top {
    background-color: transparent;
}

.faqbox .faq-list .faq-item[data-on="on"] .f-top .tit {
    color: #2a2a2a;
    font-size: 20px;
}

.faqbox .faq-list .faq-item[data-on="on"] .f-top .more::after {
    display: none;
}

.faqbox .faq-list .faq-item[data-on="on"] .f-content {
    display: block;
}

.faqbox .faq-nav .faq-swiper .swiper-slide {
    width: auto;
}

.downlist {
    margin-top: 50px;
    margin-bottom: 74px;
}

.downlist .downitem {
    border-bottom: 1px solid #d9d9d9;
    position: relative;
    display: block;
    padding: 55px 0 68px 0;
}

.downlist .downitem .time {
    font-size: 14px;
    color: #c62019;
    margin-bottom: 25px;
}

.downlist .downitem .tit {
    font-size: 22px;
    color: #2f2f2f;
    padding-right: 130px;
}

.downlist .downitem .icon {
    position: absolute;
    right: 80px;
    top: 50%;
    width: 33px;
    height: 31px;
    border-bottom: 2px solid #616161;
}

.downlist .downitem .icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 26px;
    background-color: #616161;
    margin-left: -1px;
}

.downlist .downitem .icon::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: transparent transparent #616161 #616161;
    transform: rotate(-45deg);
    margin-left: -7px;
}

/*加载动画*/
#preloader_1 {
    position: relative;
    left: 50%;
    padding: 20px 0;
    font-size: 20px;
    color: #aaaaaa;
    cursor: pointer;
}

#preloader_1 span {
    display: block;
    bottom: 0px;
    width: 9px;
    height: 5px;
    background: #85919a;
    position: absolute;
    animation: preloader_1 1.5s infinite ease-in-out;
}

#preloader_1 span:nth-child(2) {
    left: 11px;
    animation-delay: .2s;

}

#preloader_1 span:nth-child(3) {
    left: 22px;
    animation-delay: .4s;
}

#preloader_1 span:nth-child(4) {
    left: 33px;
    animation-delay: .6s;
}

#preloader_1 span:nth-child(5) {
    left: 44px;
    animation-delay: .8s;
}

@keyframes preloader_1 {
    0% {
        height: 5px;
        transform: translateY(0px);
        background: #85919a;
    }

    25% {
        height: 30px;
        transform: translateY(15px);
        background: #2f383f;
    }

    50% {
        height: 5px;
        transform: translateY(0px);
        background: #85919a;
    }

    100% {
        height: 5px;
        transform: translateY(0px);
        background: #85919a;
    }
}

#end {
    font-size: 20px;
    color: #aaaaaa;
    text-align: center;
    padding: 15px 0;
}

@media only screen and (min-width:600px) {
    .downlist .downitem:hover .icon {
        border-bottom: 2px solid #da251d;
    }

    .downlist .downitem:hover .icon::before {
        background-color: #da251d;
    }

    .downlist .downitem:hover .icon::after {
        border-color: transparent transparent #da251d #da251d;
    }

    .downlist .downitem:hover .tit {
        color: #da251d;
    }
}

@media only screen and (max-width:1280px) {
    .faqbox .faq-nav {
        margin-bottom: 60px;
    }

    .faqbox .faq-nav .faq-a {
        margin-left: 5%;
    }

    .faqbox .faq-list .faq-item .f-top {
        height: 70px;
        line-height: 70px;
    }
}

@media only screen and (max-width:1024px) {
    .faqbox {
        margin-top: 5%;
        margin-bottom: 10%;
    }

    .faqbox .faq-nav {
        margin-bottom: 5%;
        display: none;
    }

    .faqbox .faq-nav.phone {
        display: block;
    }

    .faqbox .faq-nav .faq-a {
        margin-left: 3%;
        margin-bottom: 15px;
    }

    .faqbox .faq-list .faq-item .f-top {
        height: 60px;
        line-height: 60px;
    }

    .faqbox .faq-title {
        font-size: 26px;
        padding-bottom: 35px;
    }

    .downlist {
        margin-top: 4%;
        margin-bottom: 6%;
    }

    .downlist .downitem {
        padding: 4% 0 6% 0;
    }

    .downlist .downitem .icon {
        right: 60px;
    }

    .downlist .downitem .tit {
        padding-right: 100px;
    }
}

@media only screen and (max-width:800px) {
    .faqbox .faq-list .faq-item .f-top .tit {
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .faqbox .faq-list .faq-item[data-on="on"] .f-top .tit {
        font-size: 16px;
    }

    .downlist .downitem .tit {
        padding-right: 80px;
    }

    .downlist .downitem .icon {
        right: 40px;
    }

    .faqbox .faq-list .faq-item .f-top .more {
        right: 20px;
    }
}

@media only screen and (max-width:640px) {
    .faqbox .faq-list .faq-item .f-top {
        padding: 0 70px 0 5px;
    }

    .faqbox .faq-list .faq-item .f-content {
        padding-left: 0;
    }

    .faqbox .faq-title {
        line-height: 1.5;
        padding-bottom: 28px;
    }

    .downlist .downitem .icon {
        right: 20px;
    }

    .downlist .downitem .tit {
        padding-right: 62px;
    }
}

/* =========

  视频中心

  ========== */
.videoBox-top {
    margin-top: 50px;
    margin-bottom: 17px;
}

.videoBox {
    max-width: 1414px;
    margin-bottom: 130px;
}

.videoBox .left {
    float: left;
    width: 73.05%;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.videoBox .left:before {
    content: "";
    float: left;
    width: 1px;
    margin-left: -1px;
    padding-top: calc(596 / 1033 * 100%);
}

.videoBox .left:after {
    content: "";
    display: table;
    clear: both;
}

.videoBox .left .box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.videoBox .right-swiper {
    float: right;
    width: 26.95%;
    height: 100%;
    overflow: visible;
}

.videoBox .right-swiper .swiper-slide {
    line-height: 100%;
    cursor: pointer;
}

.videoBox .right-swiper .swiper-slide:before {
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.videoBox .right-swiper .swiper-slide:nth-child(8n+1):before {
    background-color: #01bedc;
}

.videoBox .right-swiper .swiper-slide:nth-child(8n+2):before {
    background-color: #00b4d9;
}

.videoBox .right-swiper .swiper-slide:nth-child(8n+3):before {
    background-color: #00a9d4;
}

.videoBox .right-swiper .swiper-slide:nth-child(8n+4):before {
    background-color: #009dd0;
}

.videoBox .right-swiper .swiper-slide:nth-child(8n+5):before {
    background-color: #0092cd;
}

.videoBox .right-swiper .swiper-slide:nth-child(8n+6):before {
    background-color: #0188c8;
}

.videoBox .right-swiper .swiper-slide:nth-child(8n+7):before {
    background-color: #017dc5;
}

.videoBox .right-swiper .swiper-slide:nth-child(8n+8):before {
    background-color: #0172c2;
}

.videoBox .right-swiper .swiper-slide .num {
    float: left;
    width: 75px;
    border-right: 1px solid rgba(255, 255, 255, .2);
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    position: relative;
}

.videoBox .right-swiper .swiper-slide .title {
    float: left;
    width: calc(100% - 75px);
    font-size: 16px;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    padding-right: 10px;
}

.videoBox .right-swiper .swiper-slide .title .imgbox {
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    vertical-align: middle;
    width: 0px;
    height: 65px;
    display: inline-block;
}

.videoBox .right-swiper .swiper-slide .title .d1 {
    display: inline-block;
    vertical-align: middle;
    padding-left: 25px;
}

.videoBox .right-swiper .swiper-slide .icon {
    position: absolute;
    top: 50%;
    left: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #0075c2;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}

.videoBox .right-swiper .swiper-slide .icon:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #0075c2;
    border-left: 2px solid #0075c2;
    -webkit-transform: rotate(45deg) translate(-10px, -50%);
    -ms-transform: rotate(45deg) translate(-10px, -50%);
    -o-transform: rotate(45deg) translate(-10px, -50%);
    transform: rotate(45deg) translate(-10px, -50%);
    margin-left: -6px;
    margin-top: 3px;
}

.videoBox .right-swiper .swiper-slide .num:after {
    content: "";
    position: absolute;
    top: -12px;
    right: 25px;
    height: calc(100% + 23px);
    width: 1px;
    background-color: #e5e5e5;
    opacity: 0;
}

.videoBox .left .mejs-overlay-button {
    background: none;
    border-radius: 50%;
    background-color: rgba(0, 117, 194, .7);
}

.videoBox .left .mejs-overlay-button:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 15px solid transparent;
    margin-left: -7px;
    margin-top: -15px;
}

.videoBox .right-swiper .btn {
    position: absolute;
    top: 50%;
    left: 0px;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
    text-align: center;
    line-height: 20px;
    font-family: 宋体;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    display: none;
}

.videoBox .right-swiper .rs-next {
    right: 0;
    left: auto;
}

@media only screen and (min-width:601px) {
    .videoBox .right-swiper .swiper-slide.active {
        z-index: 1;
    }

    .videoBox .right-swiper .swiper-slide.active:before {
        top: -12px;
        left: -45px;
        bottom: -12px;
        background-color: #fff;
    }

    .videoBox .right-swiper .swiper-slide.active .num:after {
        opacity: 1;
    }

    .videoBox .right-swiper .swiper-slide.active .title {
        text-indent: 0;
        margin-left: -10px;
    }

    .videoBox .right-swiper .swiper-slide.active .num {
        border: 0;
    }

    .videoBox .right-swiper .swiper-slide.active .title .d1 {
        color: #2e2e2e;
        padding-left: 8px;
    }

    .videoBox .right-swiper .swiper-slide.active .title .imgbox {
        width: 112px;
    }

    .videoBox .right-swiper .swiper-slide.active .icon {
        opacity: 1;
        -webkit-transition-delay: .2s;
        -o-transition-delay: .2s;
        transition-delay: .2s;
    }

    .videoBox .right-swiper .swiper-slide:hover {
        z-index: 1;
    }

    .videoBox .right-swiper .swiper-slide:hover:before {
        top: -12px;
        left: -45px;
        bottom: -12px;
        background-color: #fff;
    }

    .videoBox .right-swiper .swiper-slide:hover .num:after {
        opacity: 1;
    }

    .videoBox .right-swiper .swiper-slide:hover .title {
        text-indent: 0;
        margin-left: -10px;
    }

    .videoBox .right-swiper .swiper-slide:hover .num {
        border: 0;
    }

    .videoBox .right-swiper .swiper-slide:hover .title .d1 {
        color: #2e2e2e;
        padding-left: 8px;
    }

    .videoBox .right-swiper .swiper-slide:hover .title .imgbox {
        width: 112px;
    }

    .videoBox .right-swiper .swiper-slide:hover .icon {
        opacity: 1;
        -webkit-transition-delay: .2s;
        -o-transition-delay: .2s;
        transition-delay: .2s;
    }

    .videoBox .right-swiper:hover .swiper-slide.active {
        z-index: 0;
    }

    .videoBox .right-swiper:hover .swiper-slide.active:before {
        top: 0px;
        left: 0px;
        bottom: 0px;
    }

    .videoBox .right-swiper:hover .swiper-slide.active:nth-child(8n+1):before {
        background-color: #01bedc;
    }

    .videoBox .right-swiper:hover .swiper-slide.active:nth-child(8n+2):before {
        background-color: #00b4d9;
    }

    .videoBox .right-swiper:hover .swiper-slide.active:nth-child(8n+3):before {
        background-color: #00a9d4;
    }

    .videoBox .right-swiper:hover .swiper-slide.active:nth-child(8n+4):before {
        background-color: #009dd0;
    }

    .videoBox .right-swiper:hover .swiper-slide.active:nth-child(8n+5):before {
        background-color: #0092cd;
    }

    .videoBox .right-swiper:hover .swiper-slide.active:nth-child(8n+6):before {
        background-color: #0188c8;
    }

    .videoBox .right-swiper:hover .swiper-slide.active:nth-child(8n+7):before {
        background-color: #017dc5;
    }

    .videoBox .right-swiper:hover .swiper-slide.active:nth-child(8n+8):before {
        background-color: #0172c2;
    }

    .videoBox .right-swiper:hover .swiper-slide.active .num:after {
        opacity: 0;
    }

    .videoBox .right-swiper:hover .swiper-slide.active .title {
        margin-left: 0px;
    }

    .videoBox .right-swiper:hover .swiper-slide.active .num {
        border-width: 1;
    }

    .videoBox .right-swiper:hover .swiper-slide.active .title .d1 {
        color: #fff;
        padding-left: 25px;
    }

    .videoBox .right-swiper:hover .swiper-slide.active .title .imgbox {
        width: 0;
    }

    .videoBox .right-swiper:hover .swiper-slide.active .icon {
        opacity: 0;
    }
}

@media only screen and (max-width:1280px) {
    .videoBox .right-swiper .swiper-slide .title .imgbox {
        height: 56px;
    }

    .videoBox .right-swiper .swiper-slide.active .title .imgbox {
        width: 96px;
    }

    .videoBox .right-swiper .swiper-slide:hover .title .imgbox {
        width: 96px;
    }

    .videoBox .right-swiper {
        width: 325px;
    }

    .videoBox .left {
        width: calc(100% - 325px);
    }
}

@media only screen and (max-width:1024px) {
    .mejs-overlay-button {
        width: 74px;
        height: 74px;
        margin: -37px 0 0 -37px;
    }

    .videoBox-top {
        margin-top: 5%;
        margin-bottom: 1.7%;
    }

    .videoBox {
        margin-bottom: 11%;
    }
}

@media only screen and (max-width:800px) {
    .videoBox .right-swiper .swiper-slide .num {
        width: 50px;
    }

    .videoBox .right-swiper .swiper-slide .title {
        width: calc(100% - 50px);
        font-size: 14px;
    }

    .videoBox .right-swiper {
        width: 250px;
    }

    .videoBox .left {
        width: calc(100% - 250px);
    }

    .videoBox .right-swiper .swiper-slide .title .d1 {
        padding-left: 15px;
    }

    .videoBox .right-swiper .swiper-slide .title .imgbox {
        height: 42px;
    }

    .videoBox .right-swiper .swiper-slide.active .title .imgbox {
        width: 72px;
    }

    .videoBox .right-swiper .swiper-slide:hover .title .imgbox {
        width: 72px;
    }

    .videoBox .right-swiper .swiper-slide .icon {
        width: 30px;
        height: 30px;
        left: -15px;
    }

    .videoBox .right-swiper .swiper-slide .icon:after {
        width: 10px;
        height: 10px;
        margin-top: 5px;
        margin-left: 0px;
    }

    .videoBox .right-swiper .swiper-slide.active:before,
    .videoBox .right-swiper .swiper-slide:hover:before {
        left: -30px;
        top: -8px;
        bottom: -8px;
    }

    .videoBox .right-swiper .swiper-slide .num:after {
        height: calc(100% + 15px);
        top: -8px;
    }
}

@media only screen and (max-width:600px) {
    .videoBox .right-swiper .btn {
        display: block;
    }

    .videoBox .left {
        float: none;
        width: 100%;
        margin-top: 8px;
    }

    .videoBox .right-swiper {
        float: none;
        width: 100%;
        height: auto !important;
    }

    .videoBox .right-swiper .swiper-slide.active:before,
    .videoBox .right-swiper .swiper-slide:hover:before {
        left: 0;
        top: 0;
        bottom: 0;
    }

    .videoBox .right-swiper .swiper-slide.active .title .imgbox,
    .videoBox .right-swiper .swiper-slide:hover .title .imgbox {
        display: none;
        width: 0;
    }

    .videoBox .right-swiper .swiper-slide {
        line-height: 42px;
    }

    .videoBox .right-swiper .swiper-slide.active .title .d1,
    .videoBox .right-swiper .swiper-slide.active .num {
        color: #000;
    }
}

@media only screen and (max-width:414px) {
    .videoBox .right-swiper .swiper-slide .num {
        font-size: 12px;
        width: 36px;
    }

    .videoBox .right-swiper .swiper-slide .title .d1 {
        padding-left: 10px;
        font-size: 12px;
    }

    .videoBox .right-swiper .swiper-slide .title {
        width: calc(100% - 36px);
    }

    .mejs-overlay-button {
        width: 40px;
        height: 40px;
        margin: -20px 0 0 -20px;
    }

    .videoBox .left .mejs-overlay-button:after {
        border-top: 6px solid transparent;
        border-left: 10px solid #fff;
        border-bottom: 6px solid transparent;
        margin-left: -3px;
        margin-top: -6px;
    }
}

.comLinka {
    position: absolute;
    top: -105px;
    width: 1px;
    height: 1px;
    left: 0;
}

@media only screen and (max-width:1023px) {
    .comLinka {
        top: -50px;
    }
}

/*搜索*/
.search-main img {
    max-width: 100%;
}

.search-main {
    width: 94%;
    max-width: 1200px;
    margin: auto;
    padding: 30px 0;
    min-height: 300px;
    margin-top: 100px;
}

.search-main .list {
    margin-bottom: 30px;
}

.search-main .type {
    line-height: 50px;
    font-size: 30px;
    color: #000;
    font-weight: bold;
}

.search-main .list ul li {
    display: block;
    overflow: hidden;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
    padding: 30px 0;
    float: left;
    width: 48%;
    margin-right: 4%;
}

.search-main .list ul li:nth-child(2n) {
    margin-right: 0;
}

.search-main .list ul li.nothing {
    height: 100px;
    border: 0px;
    line-height: 100px;
    text-align: center;
    font-size: 18px;
    color: #999;
}


.search-main .list ul li a .text .title {
    font-size: 18px;
    margin-bottom: 10px;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.search-main .list ul li a .text .demo {
    font-size: 12px;
    opacity: .7;
    line-height: 1.5;
    margin-bottom: 20px;
    height: 90px;
    overflow: hidden;
}

.search-main .list ul li a .text .rq {
    font-size: 14px;
    opacity: .7;
    line-height: 1.5;
    margin-bottom: 15px;
}

.search-main .list ul li a .tu .img {
    padding-top: calc(200 / 200 * 100%);
}


@media only screen and (min-width:601px) {
    .search-main .list ul li a {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-box-orient: horizontal;
        -ms-box-orient: horizontal;
        box-orient: horizontal;
    }

    .search-main .list ul li a .tu {
        margin-bottom: 20px;
        width: 200px;
        margin-right: 30px;
    }

    .search-main .list ul li a .text {
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-box-flex: 1;
        width: calc(100% - 200px);
    }
}

.search-main .list ul li a span {
    float: right;
    margin-right: 20px;
}

.search-main .list ul li a:hover {
    color: #21263f;
}

@media only screen and (max-width:1024px) {
    .search-main .list ul li a .tu {
        width: 160px;
    }

    .search-main .list ul li a .text {
        width: calc(100% - 160px);
    }
}

@media only screen and (max-width:800px) {
    .search-main {
        margin-top: 60px;
    }

    .search-main .list ul li {
        float: none;
        width: 100%;
        padding: 5% 0;
    }

    .search-main {
        padding-top: 10px;
    }

    .search-main .list ul li a .text .demo {
        margin-bottom: 10px;
    }

    .search-main .list ul li a .text .demo {
        height: auto;
    }
}

@media only screen and (max-width:600px) {
    .search-main .type {
        font-size: 22px;
    }

    .search-main .list ul li a .tu {
        width: 100%;
    }

    .search-main .list ul li a .text {
        width: 100%;
    }
}

@media only screen and (max-width:414px) {}

/* =========

  资料索取

  ========== */
.videoBox-top .content {
    text-align: center;
    color: #4a4949;
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 70px;
}

.dataBox {
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
}

.dataBox:before {
    position: absolute;
    left: 275px;
    top: 50px;
    height: 100%;
    width: 1px;
    background-color: #e5e5e5;
}

.dataBox .left {
    float: left;
    width: 274px;
    font-size: 30px;
    color: #373737;
    font-family: "Microsoft JhengHei";
}

.dataBox .data-form {
    float: right;
    width: calc(100% - 275px);
    padding-left: 35px;
}

.dataBox .data-form .title {
    height: 50px;
    line-height: 50px;
    text-indent: 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    background: -webkit-linear-gradient(to right, #0075c2 0px, #0084db 50%, #0093f4 100%);
    background: -moz-linear-gradient(to right, #0075c2 0px, #0084db 50%, #0093f4 100%);
    background: -ms-linear-gradient(to right, #0075c2 0px, #0084db 50%, #0093f4 100%);
    background: linear-gradient(to right, #0075c2 0px, #0084db 50%, #0093f4 100%);
}

.dataBox .data-form .inputbox {
    background-color: #eaeaea;
    border-bottom: 1px dashed #fff;
}

.dataBox .data-form .inputbox .inbox {
    float: left;
    width: 50%;
    line-height: 50px;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.dataBox .data-form .inputbox .inbox .word {
    float: left;
    margin-left: 20px;
    color: #4f4f4f;
    font-size: 14px;
    overflow: hidden;
}

.dataBox .data-form .inputbox input[type="text"] {
    height: 100%;
    border: 0;
    background-color: transparent;
    font-size: 14px;
    color: #4f4f4f;
    text-indent: 8px;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.dataBox .data-form .inputbox .inbox.float {
    position: relative;
}

.dataBox .data-form .inputbox .inbox.float:after {
    content: attr(data-desc);
    position: absolute;
    top: 0;
    height: 100%;
    font-size: 12px;
    right: 20px;
    color: #8f8f8f;
}

.dataBox .data-form .inputbox .inbox:first-child {
    border-right: 1px dashed #fff;
}

.dataBox .radiobox {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    display: block !important;
    line-height: 1 !important;
    height: auto !important;
}

.dataBox .inputbox .d2 {
    font-size: 14px;
    color: #4f4f4f;
    margin-bottom: 10px;
    display: block;
}

.dataBox .radiobox label {
    font-size: 14px;
    color: #8b8b8b;
    line-height: 16px;
    margin-right: 70px;
    position: relative;
}

.dataBox .radiobox label:last-child {
    margin-right: 0;
}

.dataBox .radiobox label .icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #c9c9c9;
    background-color: #fff;
}

.dataBox .radiobox label .icon:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 18px;
    border-bottom: 2px solid #c9c9c9;
    border-right: 2px solid #c9c9c9;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -4px;
    display: none;
}

.dataBox .radiobox label input[type="radio"] {
    opacity: 0;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.dataBox .radiobox label input[type="radio"]:checked+.icon:after {
    display: block;
}

.dataBox .submit-box {
    margin-top: 15px;
}

.dataBox .submit-box input[type="submit"] {
    border: 0;
    width: 160px;
    height: 50px;
    font-size: 16px;
    color: #fff;
    background: -webkit-linear-gradient(to right, #0075c2 0px, #0084db 50%, #0093f4 100%);
    background: -moz-linear-gradient(to right, #0075c2 0px, #0084db 50%, #0093f4 100%);
    background: -ms-linear-gradient(to right, #0075c2 0px, #0084db 50%, #0093f4 100%);
    background: linear-gradient(to right, #0075c2 0px, #0084db 50%, #0093f4 100%);
    cursor: pointer;
    float: left;
}

.dataBox .submit-box .qx {
    width: 74px;
    cursor: pointer;
    background-color: #d1d1d1;
    text-align: center;
    line-height: 50px;
    height: 50px;
    color: #585858;
    font-size: 16px;
    margin-left: 10px;
    float: left;
}

.dataBox2 {
    margin-top: 50px;
    padding-top: 0;
    border-top: 0;
    margin-bottom: 100px;
}

.dataBox2:before {
    top: 0;
}

@media only screen and (max-width:1280px) {
    .dataBox .left {
        width: 199px;
        font-size: 24px;
    }

    .dataBox:before {
        left: 200px;
    }

    .dataBox .data-form {
        width: calc(100% - 200px);
    }
}

@media only screen and (max-width:1024px) {
    .dataBox2 {
        margin-bottom: 9%;
        margin-top: 0%;
    }

    .dataBox {
        padding-top: 5%;
        padding-bottom: 5%;
    }

    .videoBox-top .content {
        margin-top: 3%;
        margin-bottom: 7%;
    }

    .dataBox .left {
        width: 100%;
        float: none;
    }

    .dataBox:before {
        display: none;
    }

    .dataBox .data-form {
        padding-left: 0;
        width: 100%;
        float: none;
        margin-top: 4%;
    }
}

@media only screen and (max-width:640px) {
    .dataBox .left {
        font-size: 20px;
    }

    .dataBox .data-form .title {
        height: 36px;
        line-height: 36px;
        font-size: 14px;
    }

    .dataBox .data-form .inputbox .inbox {
        height: 36px;
        line-height: 36px;
    }

    .dataBox .data-form .inputbox .inbox .word {
        font-size: 12px;
        margin-left: 10px;
    }

    .dataBox .data-form .inputbox .inbox {
        float: none;
        width: 100%;
        border-right: 0 !important;
        border-bottom: 1px dashed #fff;
    }

    .dataBox .data-form .inputbox {
        border-bottom: 0;
    }

    .dataBox .radiobox {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }

    .dataBox .inputbox .d2 {
        font-size: 12px;
    }

    .dataBox .radiobox label {
        font-size: 12px;
        margin-right: 20px;
    }

    .dataBox .submit-box input[type="submit"],
    .dataBox .submit-box .qx {
        height: 36px;
        line-height: 36px;
        font-size: 14px;
    }

    .dataBox .submit-box input[type="submit"] {
        width: 130px;
    }

    .dataBox .inputbox2 {
        border-top: 1px dashed #fff;
    }


}


#md {
    position: absolute;
    top: -60px;
}

#news {
    position: absolute;
    top: -200px;
}