﻿@charset "utf-8";

/*=========
 基本默认值
 ==========*/
* {
    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, body {
    min-height: 100%;
    -webkit-overflow-scrolling: touch; /*苹果手机端滑动卡屏*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent; /*手机端点击底部出现背景*/
    width: 100%;
    overflow-x: hidden;
    min-width: 320px;
    font-size: 12px;
}

body {
    font-size: 12px;
    color: #000;
    font-family: "Arial", "Microsoft YaHei";
}

li {
    list-style: none;
}

img {
    border: none;
    vertical-align: top;
    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;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

table {
    border-collapse: collapse;
}

input, textarea, select {
    font-family: "Arial", "Microsoft YaHei";
    font-size: 12px;
    outline: none;
}

/*94%的内容*/
.container {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    position: relative;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/*图片通用样式*/
.img-common {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-background-size: cover;
}

/*清楚浮动*/
.clearfix:before,
.clearfix:after {
    content: "";
    display: block;
}

.clearfix:after {
    clear: both;
}

/*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;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

/*文字溢出*/
.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
/* =========

  首页

  ========== */
/*导航*/
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 90px;
    z-index: 122;
    background-color: #fff;
}

/*logo*/
.header .logo {
    float: left;
    display: block;
}

.header .logo .logomm-img {
    display: none;
}

@media only screen and (max-width: 1280px) {
    .header .logo .logo-img {
        display: none;
    }

    .header .logo .logomm-img {
        display: block;
    }
}
@media only screen and (max-width: 1024px) {
    .header .logo .logomm-img {
        height: 60px;
    }
}


/*手机导航按钮*/
.header .mm-nav-button {
    float: right;
    height: 90px;
    display: none;
    position: relative;
    width: 25px;
    margin-left: 3%;
}

.header .mm-nav-button .line {
    width: 24px;
    height: 2px;
    background-color: #000000;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1px;
}

.header .mm-nav-button .line.line1 {
    margin-top: -8px;
}

.header .mm-nav-button .line.line3 {
    margin-top: 7px;
}

/*语言*/
.header .language-box {
    float: right;
    margin-left: 30px;
    position: relative;
    cursor: pointer;
}

.header .language-box .language-word {
    font-size: 1.16rem;
    line-height: 90px;
    color: #969696;
    padding-right: 15px;
    padding-left: 30px;
    position: relative;
}

.header .language-box .language-word:before {
    content: "";
    display: block;
    background-image: url(../images/earth_03.png);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}

.header .language-box .language-word:after {
    content: "";
    display: block;
    border-style: solid;
    border-width: 4px;
    border-color: #d3d3d3 transparent transparent transparent;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -2px;
}

.header .language-box .language-sub {
    position: absolute;
    left: -50%;
    top: 100%;
    background-color: #fff;
    width: 200%;
    box-shadow: 0 0 1px rgba(0, 0, 0, .5);
    display: none;
    z-index: 125;
}
.header .language-box[data-on="click"] .language-sub {
    display: block;
}
.header .language-box .language-sub .language-select {
    font-size: 1.16rem;
    text-align: center;
    height: 30px;
    line-height: 30px;
}
@media only screen and (min-width: 601px) {
.header .language-box:hover .language-sub {
    display: block;
}
}
/*搜索*/
.header .inSearch-box {
    height: 90px;
    float: right;
    background-color: #fff;
    width: 50px;
    border-left: 1px solid #d3d3d3;
    position: relative;
    z-index: 113;
}
.header .inSearch-box[data-on="click"]{
    margin-left: -100px;
    width: 150px;
}
.header .inSearch-box[data-on="click"] .inSearch-form input[type="text"]{
   width: 100%;
}
.header .inSearch-box .inSearch-form input[type="text"] {
    line-height: 90px;
    width: 0;
    outline: none;
    transition: all .4s;
    border: none;
    font-size: 1.16rem;
    height: 90px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}
.header .inSearch-box .inSearch-form input[type="submit"] {
    background-image: url(../images/insearch2_03.png);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    z-index: 112;
}

@media only screen and (min-width: 601px) {
    .header .inSearch-box:hover {
        margin-left: -100px;
        width: 150px;
    }

    .header .inSearch-box:hover .inSearch-form input[type="text"] {
        width: 100%;
    }
}
@media only screen and (max-width: 320px){
    .header .inSearch-box[data-on="click"]{
        margin-left: -70px;
        width: 120px;
    }
}

/*导航条*/
.header .nav-list {
    float: right;
    line-height: 90px;
    position: relative;
}

.header .nav-list .list-index {
    display: inline-block;
    padding: 0 18px;
    cursor: pointer;
    position: relative;
}

.header .nav-list .list-index .nav-word {
    display: block;
    font-size: 1.16rem;
    color: #969696;
    width: auto;
}
.header .nav-list .list-index .nav-word.on{
    color: rgb(0, 145, 220);
}
.header .nav-list .list-n {
    display: inline-block;
    padding: 0 18px;
    position: relative;
    z-index: 112;
    cursor: pointer;
}

.header .nav-list .list-n .nav-word {
    display: block;
    font-size: 1.16rem;
    color: #969696;
    width: auto;
}

.header .nav-list .list-n .nav-menu {
    position: fixed;
    top: 90px;
    left: auto;
    margin-left: -90px;
    width: auto;
    display: inline-block;
    height: 65px;
    line-height: 65px;
    z-index: 111;
    opacity: 0;
    visibility: hidden;
    transition-delay: .2s;
}

.header .nav-list .list-n[data-on="touch"] .nav-menu {
    opacity: 1;
    visibility: visible;
}

.header .nav-list .list-n .nav-menu .nav-menu-icon {
    display: inline-block;
    padding-right: 20px;
    border-right: 1px solid #4e5054;
    -webkit-transform: translate3d(10%, 0, 0);
    -ms-transform: translate3d(10%, 0, 0);
    -o-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
    opacity: 0;
    visibility: hidden;
}

.header .nav-list .list-n[data-on="touch"] .nav-menu .nav-menu-icon {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}


.header .nav-list .list-n .nav-menu .menu-a {
    display: inline-block;
    line-height: 65px;
    padding: 0 18px;
    font-size: 1.16rem;
    color: #888888;
    -webkit-transform: translate3d(10%, 0, 0);
    -ms-transform: translate3d(10%, 0, 0);
    -o-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
    opacity: 0;
    visibility: hidden;
}

.header .nav-list .list-n[data-on="touch"] .nav-menu .menu-a {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}

.header .nav-list .nav-border {
    width: 0px;
    left: -1000px;
    bottom: 0;
    position: absolute;
    height: 5px;
    margin-left: 18px;
    background: rgb(0, 145, 220);
    transition: height 0.1s, width 0.1s, left 0.3s;
    z-index: -1;
}

@media only screen and (min-width: 601px) {
    .header .nav-list .list-n .nav-menu .menu-a:hover{
        color: #ffffff;
    }
}

/*下拉背景*/
.sub-bg {
    position: fixed;
    height: 66px;
    background-color: #33353a;
    top: 90px;
    left: 0;
    width: 100vw;
    z-index: 100;
    display: none;
}

@media only screen and (max-width: 1024px) {
    .header .nav-list {
        display: none;
    }

    .header .mm-nav-button {
        display: block;
    }

    .header {
        height: 60px;
    }

    .header .mm-nav-button {
        height: 60px;
    }

    .header .language-box {
        margin-left: 3%;
    }

    .header .language-box .language-word {
        line-height: 60px;
    }

    .header .inSearch-box {
        height: 60px;
    }

    .header .inSearch-box .inSearch-form input[type="text"] {
        line-height: 60px;
        height: 60px;
    }
}

/*手机导航*/
.mm-nav {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .mm-nav {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 59px;
        background-color: #fff;
        border-top: 1px solid #f6f7fa;
        z-index: 122;
        overflow-y: auto;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        opacity: 0;
        visibility: hidden;
    }

    .mm-nav[data-on="click"] {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
    }
    .mm-nav .mmNav-list{
        background-color: #fff;
    }
    .mm-nav .mmNav-list .list-mm {
        line-height: 50px;
    }

    .mm-nav .mmNav-list .list-mm .mmNav-word {
        font-size: 1.16rem;
        padding: 0 3%;
        display: block;
        border-bottom: 1px solid #f6f7fa;
        position: relative;
    }

    .mm-nav .mmNav-list .list-mm .mmNav-word:after {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        border-width: 1px;
        border-style: solid;
        border-color: #807f81 #807f81 transparent transparent;
        position: absolute;
        right: 3%;
        top: 50%;
        margin-top: -4px;
        transform: rotate(45deg);
        -ms-transform: rotate(45deg); /* IE 9 */
        -moz-transform: rotate(45deg); /* Firefox */
        -webkit-transform: rotate(45deg); /* Safari 和 Chrome */
        -o-transform: rotate(45deg); /* Opera */
    }

    .mm-nav .mmNav-list .list-mm[data-on="click"] .mmNav-word:after {
        transform: rotate(135deg);
        -ms-transform: rotate(135deg); /* IE 9 */
        -moz-transform: rotate(135deg); /* Firefox */
        -webkit-transform: rotate(135deg); /* Safari 和 Chrome */
        -o-transform: rotate(135deg);
    }

    .mm-nav .mmNav-list .list-mm .mmNav-sub {
        padding: 0 3%;
        background-color: #f6f7fa;
        display: none;
    }

    .mm-nav .mmNav-list .list-mm .mmNav-sub .mmNav-a {
        display: block;
    }
}

/*首页轮播图*/
.inBanner-swiper {
    margin-top: 90px;
    height: 800px;
    position: relative;
}

.inBanner-swiper .swiper-wrapper .swiper-slide a {
    display: block;
    height: 100%;
}

.inBanner-swiper .inBanner-prev {
    width: 30px;
    height: 30px;
    border-style: solid;
    border-width: 1px;
    border-color: #909090 transparent transparent #909090;
    position: absolute;
    left: 6%;
    top: 50%;
    margin-top: -8px;
    z-index: 100;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg); /* IE 9 */
    -moz-transform: rotate(-45deg); /* Firefox */
    -webkit-transform: rotate(-45deg); /* Safari 和 Chrome */
    -o-transform: rotate(-45deg); /* Opera */
    cursor: pointer;
}

.inBanner-swiper .inBanner-next {
    width: 30px;
    height: 30px;
    border-style: solid;
    border-width: 1px;
    border-color: #909090 #909090 transparent transparent;
    position: absolute;
    right: 6%;
    top: 50%;
    margin-top: -8px;
    z-index: 100;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg); /* IE 9 */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari 和 Chrome */
    -o-transform: rotate(45deg); /* Opera */
    cursor: pointer;
}

.inBanner-swiper .inBanner-pagination {
    position: absolute;
    bottom: 6%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 102;
}

.inBanner-swiper .inBanner-pagination .swiper-pagination-bullet {
    width: 45px;
    height: 2px;
    border-radius: 0;
    background-color: #aaaaaa;
    opacity: 1;
}

.inBanner-swiper .inBanner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #585858;
}

@media only screen and (max-width: 1920px) {
    .inBanner-swiper {
        height: 600px;
    }
}

@media only screen and (max-width: 1600px) {
    .inBanner-swiper {
        height: 580px;
    }
}

@media only screen and (max-width: 1400px) {
    .inBanner-swiper {
        height: 550px;
    }
}

@media only screen and (max-width: 1280px) {
    .inBanner-swiper {
        height: 520px;
    }
}

@media only screen and (max-width: 1024px) {
    .inBanner-swiper {
        margin-top: 60px;
        height: 500px;
    }
}

@media only screen and (max-width: 800px) {
    .inBanner-swiper {
        height: 450px;
    }
}

@media only screen and (max-width: 600px) {
    .inBanner-swiper {
        height: 420px;
    }
}

@media only screen and (max-width: 414px) {
    .inBanner-swiper {
        height: 260px;
    }

    .inBanner-swiper .inBanner-next {
        display: none;
    }

    .inBanner-swiper .inBanner-prev {
        display: none;
    }
}

@media only screen and (max-width: 320px) {
    .inBanner-swiper {
        height: 200px;
    }
}

/*关于显触*/
.index-about {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
}

.index-about .about-img {
    width: -moz-calc(100% - 800px);
    width: -webkit-calc(100% - 800px);
    width: calc(100% - 800px);
}

.index-about .about-img img {
    width: 100%;
}

.index-about .about-right {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-flex: 1;
    width: 800px;
    padding: 80px 0;
}

.index-about .about-right .about-title {
    font-size: 2.5rem;
    height: 60px;
    color: #0091dc;
    text-align: left;
    position: relative;
    margin-bottom: 18px;
}

.index-about .about-right .about-title:after {
    content: "";
    display: block;
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: #00903c;
    left: 0;
    bottom: 0;
}

.index-about .about-right .about-massage {
    font-size: 1.16rem;
    line-height: 2.5rem;
    color: #5c5c5c;
    margin-bottom: 36px;
}

.index-about .about-right .about-link .about-more {
    display: inline-block;
    font-size: 1rem;
    line-height: 2;
    height: 24px;
    color: #0091dc;
    padding: 0 30px 0 20px;
    border: 1px solid #0091dc;
    border-radius: 50px;
    position: relative;
}

.index-about .about-right .about-link .about-more:before {
    content: "";
    display: block;
    width: 5px;
    height: 1px;
    background-color: #0091dc;
    position: absolute;
    top: 50%;
    margin-top: -0.5px;
    right: 23px;
}

.index-about .about-right .about-link .about-more:after {
    content: "";
    display: block;
    width: 1px;
    height: 5px;
    background-color: #0091dc;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: 25px;
}

@media only screen and (max-width: 1600px) {
    .index-about .about-right {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 1400px) {
    .index-about .about-right {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 1024px) {
    .index-about .about-img {
        display: none;
    }

    .index-about .about-right {
        padding: 6% 0;
    }

    .index-about .about-right .about-title {
        margin-bottom: 2%;
    }

    .index-about .about-right .about-massage {
        margin-bottom: 3.6%;
    }

    .index-about .about-right .about-more {
        margin: 0 auto;
    }

    .index-about .about-right .about-link {
        text-align: center;
    }
}

/*显触实力*/
.index-strength {
    position: relative;
    padding-top: 90px;
    z-index: 97;
    padding-bottom: 100px;
}

.index-strength:after {
    content: "";
    display: block;
    width: 100%;
    height: 280px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 98;
}

.inAll-title {
    text-align: center;
}

.inAll-title .title-word {
    display: inline-block;
    font-size: 3rem;
    color: #0091dc;
    line-height: 1;
    position: relative;
}

.inAll-title .title-word .cline {
    position: absolute;
    top: 50%;
    height: 1px;
    width: 60px;
    background-color: #d1d1d1;
}

.inAll-title .title-word .cline.cleft-line {
    left: -80px;
}

.inAll-title .title-word .cline.cleft-line:after {
    content: "";
    display: block;
    width: 1px;
    height: 24px;
    background-color: #d1d1d1;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -12px;
}

.inAll-title .title-word .cline.cright-line {
    right: -80px;
}

.inAll-title .title-word .cline.cright-line:after {
    content: "";
    display: block;
    width: 1px;
    height: 24px;
    background-color: #d1d1d1;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
}

.index-strength .index-strength-list {
    margin-top: 40px;
}

.index-strength .index-strength-list .list-s {
    float: left;
    width: -moz-calc((100% - 100px) / 3);
    width: -webkit-calc((100% - 100px) / 3);
    width: calc((100% - 100px) / 3);
    margin-right: 50px;
    padding-top: 45px;
    padding-bottom: 60px;
    border-top: 1px solid #dbdce2;
    position: relative;
       -moz-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    transition: all 1s ease-out;
    -webkit-transform: translate3d(20%, 0, 0);
    -ms-transform: translate3d(20%, 0, 0);
    -o-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
    opacity: 0;
    visibility: hidden;
}

.index-strength .index-strength-list .list-s:last-child {
    margin-right: 0;
}

.index-strength .index-strength-list .list-s.on{
     -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}
.index-strength .index-strength-list .list-s:nth-child(2).on {
    transition-delay: .2s;
}
.index-strength .index-strength-list .list-s:last-child.on{
    transition-delay: .4s;
}


.index-strength .index-strength-list .list-s:after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border: 2px solid #0091dc;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    margin-left: -7px;
    top: 0;
    margin-top: -7px;
    background-color: #f5f6f9;
}

.index-strength .index-strength-list .list-s .strength-theme {
    font-size: 1.5rem;
    line-height: 1;
    color: #0091dc;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index-strength .index-strength-list .list-s .strength-title {
    font-size: 1.33rem;
    color: #5a5a5a;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 45px;
    margin-bottom: 24px;
    position: relative;
}

.index-strength .index-strength-list .list-s .strength-title:after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    background-color: #00903c;
    position: absolute;
    left: 0;
    bottom: 0;
}

.index-strength .index-strength-list .list-s .strength-massage {
    font-size: 1.16rem;
    line-height: 2.2rem;
    color: #5a5a5a;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-strength .inStrength-swiper-box {
    position: relative;
    z-index: 112;
}

.index-strength .inStrength-swiper-box .inStrength-swiper .swiper-wrapper .swiper-slide {
    display: block;
    width: 547px;
}

.index-strength .inStrength-swiper-box .inStrength-swiper .swiper-wrapper .swiper-slide .inStrength-img {
    padding-top: -moz-calc(345 / 547 * 100%);
    padding-top: -webkit-calc(345 / 547 * 100%);
    padding-top: calc(345 / 547 * 100%);
}

.index-strength .inStrength-swiper-box .inStrength-prev {
    width: 62px;
    height: 62px;
    background-color: #ffffff;
    border-radius: 50%;
    border: 2px solid #f8f8f8;
    position: absolute;
    left: -110px;
    top: 50%;
    margin-top: -36px;
    z-index: 113;
    cursor: pointer;
}

.index-strength .inStrength-swiper-box .inStrength-prev:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    border-style: solid;
    border-width: 2px;
    border-color: #6f6f6f transparent transparent #6f6f6f;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    left: 50%;
    margin-left: -6px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg); /* IE 9 */
    -moz-transform: rotate(-45deg); /* Firefox */
    -webkit-transform: rotate(-45deg); /* Safari 和 Chrome */
    -o-transform: rotate(-45deg); /* Opera */
}

.index-strength .inStrength-swiper-box .inStrength-next {
    width: 62px;
    height: 62px;
    background-color: #ffffff;
    border-radius: 50%;
    border: 2px solid #f8f8f8;
    position: absolute;
    right: -110px;
    top: 50%;
    margin-top: -36px;
    z-index: 113;
    cursor: pointer;
}

.index-strength .inStrength-swiper-box .inStrength-next:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    border-style: solid;
    border-width: 2px;
    border-color: #6f6f6f transparent transparent #6f6f6f;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    right: 50%;
    margin-right: -6px;
    transform: rotate(135deg);
    -ms-transform: rotate(135deg); /* IE 9 */
    -moz-transform: rotate(135deg); /* Firefox */
    -webkit-transform: rotate(135deg); /* Safari 和 Chrome */
    -o-transform: rotate(135deg); /* Opera */
}

.index-strength .inStrength-swiper-box .inStrength-pagination {
    position: absolute;
    width: 100%;
    text-align: center;
    margin-top: 35px;
}

.index-strength .inStrength-swiper-box .inStrength-pagination .swiper-pagination-bullet {
    margin: 0 6px;
}

.index-strength .inStrength-swiper-box .inStrength-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0091dc;
}

@media only screen and (max-width: 1600px) {
    .index-strength {
        padding-top: 80px;
        padding-bottom: 90px;
    }

}

@media only screen and (max-width: 1400px) {
    .index-strength {
        padding-top: 70px;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 1280px) {
    .index-strength {
        padding-top: 60px;
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 1024px) {
    .index-strength {
        padding-top: 6%;
        padding-bottom: 7%;
    }

    .index-strength:after {
        height: 230px;
    }

    .index-strength .index-strength-list {
        margin-top: 4%;
    }

    .index-strength .index-strength-list .list-s {
        padding-top: 4.5%;
        padding-bottom: 6%;
    }

    .index-strength .index-strength-list .list-s .strength-theme {
        margin-bottom: 1.2%;
    }

    .index-strength .index-strength-list .list-s .strength-title {
        height: 30px;
        margin-bottom: 2.4%;
    }

    .index-strength .inStrength-swiper-box .inStrength-swiper .swiper-wrapper .swiper-slide {
        width: 500px;
    }

    .index-strength .inStrength-swiper-box .inStrength-pagination {
        margin-top: 2%;
    }
}

@media only screen and (max-width: 800px) {
    .index-strength:after {
        height: 200px;
    }

    .index-strength .inStrength-swiper-box .inStrength-swiper .swiper-wrapper .swiper-slide {
        width: 400px;
    }
}

@media only screen and (max-width: 600px) {
    .index-strength:after {
        height: 150px;
    }

    .inAll-title .title-word .cline {
        width: 40px;
    }

    .inAll-title .title-word .cline.cleft-line {
        left: -60px;
    }

    .inAll-title .title-word .cline.cright-line {
        right: -60px;
    }

    .index-strength .index-strength-list .list-s {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .index-strength .inStrength-swiper-box .inStrength-swiper .swiper-wrapper .swiper-slide {
        width: 300px;
    }
    .inAll-title .title-word {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 414px) {
    .index-strength:after {
        height: 100px;
    }

    .inAll-title .title-word .cline {
        width: 30px;
    }

    .inAll-title .title-word .cline.cleft-line {
        left: -40px;
    }

    .inAll-title .title-word .cline.cleft-line:after {;
        height: 18px;
        margin-top: -9px;
    }

    .inAll-title .title-word .cline.cright-line {
        right: -40px;
    }

    .inAll-title .title-word .cline.cright-line:after {;
        height: 18px;
        margin-top: -9px;
    }

    .index-strength .index-strength-list .list-s .strength-title {
        height: 25px;
    }

    .index-strength .inStrength-swiper-box .inStrength-swiper .swiper-wrapper .swiper-slide {
        width: 250px;
    }
}

@media only screen and (max-width: 320px) {
    .index-strength .inStrength-swiper-box .inStrength-swiper .swiper-wrapper .swiper-slide {
        width: 100%;
    }
}

/*产品展示*/
.index-product-title {
    background-color: #0091dc;
    text-align: center;
}

.index-product-title .index-product-word {
    display: inline-block;
    line-height: 90px;
    font-size: 2.5rem;
    color: #ffffff;
    position: relative;
}

.index-product-title .index-product-word a {
    position: absolute;
    display: block;
    right: -100px;
    top: 0;
    font-size: 1.03rem;
    color: #ffffff;
}

.index-product-title .index-product-word a:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-width: 1px;
    border-color: #ffffff #ffffff transparent transparent;
    position: absolute;
    right: -6px;
    top: 50%;
    margin-top: -3px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg); /* IE 9 */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari 和 Chrome */
    -o-transform: rotate(45deg); /* Opera */
}

.index-product-title .index-product-word a:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-width: 1px;
    border-color: #ffffff #ffffff transparent transparent;
    position: absolute;
    right: -12px;
    top: 50%;
    margin-top: -3px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg); /* IE 9 */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari 和 Chrome */
    -o-transform: rotate(45deg); /* Opera */
}

.indexProduct-swiper {
    position: relative;
}

.indexProduct-swiper:before {
    content: "";
    display: block;
    width: 10px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}

.indexProduct-swiper:after {
    content: "";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    right: 25%;
    margin-right: -25px;
    top: 50%;
    margin-top: -25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
    z-index: 10;
}

.indexProduct-swiper .swiper-wrapper .swiper-slide {
    padding-top: 35px;
    padding-right: 35px;
    padding-left: 35px;
    border-right: 1px solid #eeeeee;
    display: block;
}
.indexProduct-swiper .swiper-wrapper .swiper-slide a{
    display: block;
}
.indexProduct-swiper .swiper-wrapper .swiper-slide .index-product-img {
    padding-top: -moz-calc((166 / 245) * 100%);
    padding-top: -webkit-calc((166 / 245) * 100%);
    padding-top: calc((166 / 245) * 100%);
}

.indexProduct-swiper .swiper-wrapper .swiper-slide .index-product-massage {
    font-size: 1.16rem;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.indexProduct-swiper .indexProduct-prev {
    position: absolute;
    width: 25px;
    height: 50px;
    background-color: transparent;
    border-radius: 50px 0 0 50px;
    right: 25%;
    top: 50%;
    margin-top: -25px;
    z-index: 11;
    cursor: pointer;
}

.indexProduct-swiper .indexProduct-prev:after {
    content: "";
    display: block;
    border-width: 6px;
    border-style: solid;
    border-color: transparent #0091dc transparent transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 4px;
}

.indexProduct-swiper .indexProduct-next {
    position: absolute;
    width: 25px;
    height: 50px;
    background-color: transparent;
    border-radius: 0 50px 50px 0;
    right: 25%;
    margin-right: -25px;
    top: 50%;
    margin-top: -25px;
    z-index: 11;
    cursor: pointer;
}

.indexProduct-swiper .indexProduct-next:after {
    content: "";
    display: block;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #0091dc;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    left: 4px;
}

@media only screen and (min-width: 601px){
    .indexProduct-swiper .swiper-wrapper .swiper-slide:hover .index-product-img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@media only screen and  (max-width: 1400px) {
    .index-product-title .index-product-word {
        line-height: 80px;
    }
}

@media only screen and  (max-width: 1280px) {
    .index-product-title .index-product-word {
        line-height: 70px;
    }
}

@media only screen and  (max-width: 1024px) {
    .index-product-title .index-product-word a {
        right: -80px;
    }

    .indexProduct-swiper:after {
        display: none;
    }

    .indexProduct-swiper .indexProduct-prev {
        display: none;
    }

    .indexProduct-swiper .indexProduct-next {
        display: none;
    }
}

@media only screen and  (max-width: 800px) {
    .index-product-title .index-product-word a {
        right: -70px;
    }
}

@media only screen and  (max-width: 600px) {
    .index-product-title .index-product-word a {
        right: -60px;
    }
}

@media only screen and  (max-width: 320px) {
    .indexProduct-swiper:before {
        right: -5px;
    }
}

/*品质保证*/
.quality-bg {
    padding-top: 90px;
    padding-bottom: 95px;
}

.quality-bg .inAll-title.quality-title .title-word {
    color: #ffffff;
}

.quality-bg .quality-description {
    text-align: center;
    font-size: 1.33rem;
    line-height: 1;
    color: #ffffff;
    margin-top: 20px;
}

.quality-bg .quality-list {
    margin-top: 60px;
    margin-bottom: 60px;
}

.quality-bg .quality-list .list-q {
    float: left;
    width: -moz-calc((100% - 135px) / 4);
    width: -webkit-calc((100% - 135px) / 4);
    width: calc((100% - 135px) / 4);
    margin-right: 45px;
     -moz-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    transition: all 1s ease-out;
    -webkit-transform: translate3d(-20%, 0, 0);
    -ms-transform: translate3d(-20%, 0, 0);
    -o-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
    opacity: 0;
    visibility: hidden;
}
.quality-bg .quality-list .list-q.on{
   -webkit-transform: translate3d(0, 0, 0);
   -ms-transform: translate3d(0, 0, 0);
   -o-transform: translate3d(0, 0, 0);
   transform: translate3d(0, 0, 0);
   opacity: 1;
   visibility: visible;
}
.quality-bg .quality-list .list-q:nth-child(2).on{
    transition-delay: .3s; 
}
.quality-bg .quality-list .list-q:nth-child(3).on{
    transition-delay: .6s;
}
.quality-bg .quality-list .list-q:nth-child(4).on{
    transition-delay: 1.2s;
}
.quality-bg .quality-list .list-q:last-child {
    margin-right: 0;
}

.quality-bg .quality-list .list-q .qli-title {
    font-size: 1.5rem;
    color: #ffffff;
    height: 50px;
    position: relative;
    text-align: left;
}

.quality-bg .quality-list .list-q .qli-title:after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    background-color: #51d840;
    position: absolute;
    left: 0;
    bottom: 0;
}

.quality-bg .quality-list .list-q .qli-massage {
    margin-top: 25px;
    font-size: 1.16rem;
    line-height: 2.16rem;
    color: #ffffff;
}

.quality-bg .materials-box {
    width: 215px;
    height: 215px;
    float: left;
    overflow: hidden;
    transition-timing-function: linear;
    -webkit-transition-timing-function: linear;
    cursor: pointer;
}

.quality-bg .materials-box[data-on="touch"] {
    width: 740px;
}

.quality-bg .materials-box .materials-sub {
    width: 740px;
    height: 100%;
}

.quality-bg .materials-box .materials-left {
    background-color: #0091dc;
    width: 215px;
    height: 100%;
    float: left;
    position: relative;
}
.quality-bg .materials-box .materials-left img{
    display: block;
    margin: 0 auto;
}
.quality-bg .materials-box .materials-left .materials-img {
    background: -webkit-linear-gradient(left, rgba(96, 249, 255, 1), rgba(44, 143, 255, 1)); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(left, rgba(96, 249, 255, 1), rgba(44, 143, 255, 1)); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(left, rgba(96, 249, 255, 1), rgba(44, 143, 255, 1)); /* Firefox 3.6 - 15 */
    background: linear-gradient(left, rgba(96, 249, 255, 1), rgba(44, 143, 255, 1)); /* 标准的语法 */
    border-radius: 50%;
    padding: 5px;
    margin: 0 auto;
    width: 145px;
    height: 145px;
}

.quality-bg .materials-box .materials-left .materials-img img {
    width: 100%;
}

.quality-bg .materials-box .materials-left .materials-title {
    font-size: 1.33rem;
    line-height: 1.5;
    margin-top: 10px;
    color: #ffffff;
    text-align: center;
    padding: 0 20px;
}

.quality-bg .materials-box:nth-child(2) {
    margin: 0 15px;
}

.quality-bg .materials-box:nth-child(2) .materials-left {
    background-color: #1f334c;
}

.quality-bg .materials-box:nth-child(2) .materials-img {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0 auto;
    display: block;
}

.quality-bg .materials-box:nth-child(3) .materials-left {
    background-color: #fff;
}

.quality-bg .materials-box:nth-child(3) .materials-left .materials-title {
    color: #000000;
}

.quality-bg .materials-box .materials-right {
    width: -moz-calc(100% - 215px);
    width: -webkit-calc(100% - 215px);
    width: calc(100% - 215px);
    height: 100%;
    padding: 40px;
    float: left;
    background-color: #fff;
    font-size: 1.16rem;
    line-height: 2;
    color: #7c7c7c;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media only screen and  (max-width: 1600px) {
    .quality-bg {
        padding-top: 80px;
        padding-bottom: 85px;
    }
}

@media only screen and  (max-width: 1400px) {
    .quality-bg {
        padding-top: 70px;
        padding-bottom: 75px;
    }

    .quality-bg .materials-box {
        width: 100%;
        margin-bottom: 3%;
    }

    .quality-bg .materials-box:nth-child(2) {
        margin-bottom: 3%;
        margin-left: 0;
        margin-right: 0;
    }

    .quality-bg .materials-box[data-on="touch"] {
        width: 100%;
    }

    .quality-bg .materials-box .materials-sub {
        width: 100%;
    }
}

@media only screen and  (max-width: 1280px) {
    .quality-bg {
        padding-top: 60px;
        padding-bottom: 65px;
    }
}

@media only screen and  (max-width: 1024px) {
    .quality-bg {
        padding-top: 6%;
        padding-bottom: 6.5%;
    }

    .quality-bg .quality-description {
        margin-top: 2%;
    }

    .quality-bg .quality-list {
        margin-top: 6%;
        margin-bottom: 6%;
    }

    .quality-bg .quality-list .list-q .qli-title {
        height: 35px;
    }

    .quality-bg .quality-list .list-q .qli-massage {
        margin-top: 3%;
    }

    .quality-bg .materials-box {
        height: 185px;
    }
    .quality-bg .materials-box .materials-left {
        width: 185px;
    }

    .quality-bg .materials-box .materials-right {
        width: -moz-calc(100% - 185px);
        width: -webkit-calc(100% - 185px);
        width: calc(100% - 185px);
        padding: 4%;
    }
    .quality-bg .materials-box .materials-left .materials-img {
        width: 120px;
        height: 120px;
    }
}

@media only screen and  (max-width: 800px) {
    .quality-bg .quality-list .list-q {
        width: -moz-calc((100% - 45px) / 2);
        width: -webkit-calc((100% - 45px) / 2);
        width: calc((100% - 45px) / 2);
        margin-bottom: 3%;
    }

    .quality-bg .quality-list .list-q:nth-child(2n) {
        margin-right: 0;
    }

}

@media only screen and  (max-width: 600px) {
    .quality-bg .materials-box {
        height: auto;
    }
    .quality-bg .materials-box .materials-left {
        width: 100%;
        padding: 2%;
    }
    .quality-bg .materials-box .materials-right {
        width:100%;
        float: none;
    }

}

@media only screen and  (max-width: 414px) {
    .quality-bg .quality-list .list-q {
        width: 100%;
        margin-right: 0;
    }
}

/*应用行业*/
.index-application {
    padding-top: 80px;
    padding-bottom: 50px;
    background-color: #f5f6f9;
}

.index-application .application-description {
    font-size: 1.16rem;
    line-height: 1.5;
    color: #4c4c4c;
    margin-top: 20px;
    text-align: center;
}

.index-application .application-list {
    margin-top: 50px;
}

.index-application .application-list .list-a {
    width: 16.6%;
    float: left;
    -webkit-transform: translate3d(0, -30%, 0);
    -ms-transform: translate3d(0, -30%, 0);
    -o-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    opacity: 0;
    visibility: hidden;
}
.index-application .application-list .list-a:nth-child(2){
    transition-delay: .1s;
}
.index-application .application-list .list-a:nth-child(3){
    transition-delay: .2s;
}
.index-application .application-list .list-a:nth-child(4){
    transition-delay: .3s;
}
.index-application .application-list .list-a:nth-child(5){
    transition-delay: .4s;
}
.index-application .application-list .list-a:nth-child(6){
    transition-delay: .5s;
}
.index-application .application-list .list-a.on{
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}

.index-application .application-list .list-a a {
    display: block;
    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;
    position: relative;
}

.index-application .application-list .list-a a:after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 50px;
    background-color: rgba(3, 146, 220, .25);
    right: 0;
    top: 50%;
    margin-top: -40px;
}

.index-application .application-list .list-a:last-child a:after {
    display: none;
}

.index-application .application-list .list-a a .application-icon {
    display: block;
    margin: 0 auto;
    width: 100%;
    width: 100px;
    height: 100px;
}

.index-application .application-list .list-a a .application-kind {
    margin-top: 20px;
    font-size: 1.16rem;
    line-height: 1;
    text-align: center;
    color: #363636;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media only screen and (max-width: 1280px){
    .index-application {
        padding-top: 60px;
    }
}

@media only screen and (max-width: 1024px){
    .index-application {
        padding-top: 6%;
        padding-bottom: 5%;
    }
    .index-application .application-description {
        margin-top: 2%;
    }
    .index-application .application-list {
        margin-top: 5%;
    }
}

@media only screen and (max-width: 600px){
    .index-application .application-list .list-a {
        width: 33.3%;
        float: left;
        margin-bottom: 3%;
    }
    .index-application .application-list .list-a:nth-child(3) a:after{
        display: none;
    }
}


/*资讯活动*/
.index-new-bg {
    padding-top: 75px;
    padding-bottom: 100px;
}

.index-new-bg .index-new-title {
    margin-bottom: 35px;
    text-align: center;
}

.index-new-bg .index-new-title .index-new-word {
    display: inline-block;
    position: relative;
    font-size: 3rem;
    line-height: 3rem;
    color: #323232;
}

.index-new-bg .index-new-title .index-new-word a {
    position: absolute;
    display: block;
    right: -100px;
    top: 0;
    height: 100%;
    font-size: 1.03rem;
    color: #0091dc;
}

.index-new-bg .index-new-title .index-new-word a:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-width: 1px;
    border-color: #0091dc #0091dc transparent transparent;
    position: absolute;
    right: -6px;
    top: 50%;
    margin-top: -3px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.index-new-bg .index-new-title .index-new-word a:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-width: 1px;
    border-color: #0091dc #0091dc transparent transparent;
    position: absolute;
    right: -12px;
    top: 50%;
    margin-top: -3px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.index-new-bg .index-new-box .list-new {
    width: -moz-calc((100% - 46px) / 3);
    width: -webkit-calc((100% - 46px) / 3);
    width: calc((100% - 46px) / 3);
    float: left;
    margin-right: 23px;
    display: block;
}


.index-new-bg .index-new-box .list-new .list-new-img {
    padding-top: -moz-calc(215 / 385 * 100%);
    padding-top: -webkit-calc(215 / 385 * 100%);
    padding-top: calc(215 / 385 * 100%);
}

.index-new-bg .index-new-box .list-new .list-new-time {
    font-size: 1.16rem;
    line-height: 1;
    color: #bebebe;
    margin-top: 25px;
}

.index-new-bg .index-new-box .list-new .list-new-title {
    font-size: 1.33rem;
    line-height: 1.5;
    color: #292929;
    margin-top: 10px;
    min-height: 23px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index-new-bg .index-new-box .list-new .list-new-massage {
    font-size: 1.08rem;
    line-height: 2;
    color: #888787;
    margin-top: 20px;
    margin-bottom: 25px;
    height:  4rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-new-bg .index-new-box .list-new .list-new-more {
    display: block;
    font-size: 1.08rem;
    color: #0091dc;
}

.index-new-bg .index-new-box .list-new .list-new-more span {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #0091dc;
    margin-right: 8px;
    position: relative;
}

.index-new-bg .index-new-box .list-new .list-new-more span:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: #ffffff #ffffff transparent transparent;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg); /* IE 9 */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari 和 Chrome */
    -o-transform: rotate(45deg); /* Opera */
    position: absolute;
    top: 50%;
    margin-top: -4px;
}

.index-new-bg .index-new-box .list-new:nth-child(3) {
    margin-right: 0;
    background-color: #f5f6f9;
}

.index-new-bg .index-new-box .list-new:nth-child(3) .list-new-detail {
    padding-top: 20px;
    padding-bottom: 15px;
    padding-left: 24px;
    border-top: 1px solid #e2e2e2;
    display: block;
}

.index-new-bg .index-new-box .list-new:nth-child(3) .list-new-detail .new-detail-title {
    font-size: 1.16rem;
    color: #4a4849;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 10px;
}

.index-new-bg .index-new-box .list-new:nth-child(3) .list-new-detail .new-detail-time {
    font-size: 1rem;
    color: #c7c7c7;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media only screen and (min-width: 601px) {
    .index-new-bg .index-new-box .list-new:nth-child(3) .list-new-detail:hover {
        background-color: #0091dc;
    }

    .index-new-bg .index-new-box .list-new:nth-child(3) .list-new-detail:hover .new-detail-title {
        color: #ffffff;
    }

    .index-new-bg .index-new-box .list-new:nth-child(3) .list-new-detail:hover .new-detail-time {
        color: #ffffff;
    }
}
@media only screen and (max-width: 1600px){
    .index-new-bg {
        padding-top: 75px;
        padding-bottom: 90px;
    }
}
@media only screen and (max-width: 1400px){
    .index-new-bg {
        padding-top: 75px;
        padding-bottom:80px;
    }
}
@media only screen and (max-width: 1280px){
    .index-new-bg {
        padding-top: 65px;
        padding-bottom:70px;
    }
}
@media only screen and (max-width: 1024px){
    .index-new-bg {
        padding-top: 6.5%;
        padding-bottom:7%;
    }
.index-new-bg .index-new-box .list-new .list-new-time {
    margin-top: 2.5%;
}

.index-new-bg .index-new-box .list-new .list-new-title {
    margin-top: 1%;
}

.index-new-bg .index-new-box .list-new .list-new-massage {
    margin-top: 2%;
    margin-bottom: 2.5%;
}
.index-new-bg .index-new-box .list-new:nth-child(3) .list-new-detail .new-detail-title {
    margin-bottom: 1%;
}
}
@media only screen and (max-width: 600px){
    .index-new-bg .index-new-box .list-new {
        width: -moz-calc((100% - 46px) / 2);
        width: -webkit-calc((100% - 46px) / 2);
        width: calc((100% - 46px) / 2);
        margin-right: 23px;
        margin-bottom: 3%;
    }
    .index-new-bg .index-new-box .list-new:nth-child(3){
        width: 100%;
    }
    .index-new-bg .index-new-title .index-new-word {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }
}
@media only screen and (max-width: 414px){
    .index-new-bg .index-new-box .list-new {
        width:100%;
        margin-right: 0;
    }
    .index-new-bg .index-new-box .list-new:nth-child(2) {
       display: none;
    }
    .index-new-bg .index-new-box .list-new:nth-child(3){
        width: 100%;
    }
}

/*首页客服*/
.index-kefu{
    position: fixed;
    right: 0;
    top:73%;
    background-color: #33a7e3;
    z-index: 122;
}
.index-kefu .kefu-box{
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    cursor: pointer;
    position: relative;
}
.index-kefu .kefu-box.kefu-phone{
    background-image: url(../images/kefup_03.png);
    background-color: #0091dc;
    margin-bottom: 1px;
}
.index-kefu .kefu-box.kefu-phone .sub-box{
    position: absolute;
    border: 1px solid #d6d6d6;
    right: 100%;
    top:0;
    width: 140px;
    padding: 10px 0;
    background-color: #fff;
}
.index-kefu .kefu-box.kefu-phone .sub-box:before{
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #d6d6d6 #d6d6d6 transparent transparent;
    transform:rotate(45deg);
    -ms-transform:rotate(45deg); 	/* IE 9 */
    -moz-transform:rotate(45deg); 	/* Firefox */
    -webkit-transform:rotate(45deg); /* Safari 和 Chrome */
    -o-transform:rotate(45deg); 	/* Opera */
    position: absolute;
    right: -5px;
    top:50%;
    margin-top: -5px;
}
.index-kefu .kefu-box.kefu-phone .sub-box:after{
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: #fff;
    transform:rotate(45deg);
    -ms-transform:rotate(45deg); 	/* IE 9 */
    -moz-transform:rotate(45deg); 	/* Firefox */
    -webkit-transform:rotate(45deg); /* Safari 和 Chrome */
    -o-transform:rotate(45deg); 	/* Opera */
    position: absolute;
    right: -4px;
    top:50%;
    margin-top: -4px;
}
.index-kefu .kefu-box.kefu-phone .sub-box .phone-title{
    font-size: 1.16rem;
    line-height: 2.16rem;
    color: #515151;
    text-align: center;
    font-weight: bold;
}
.index-kefu .kefu-box.kefu-phone .sub-box .phone-number{
    display: block;
   font-size: 1.16rem;
    font-weight: bold;
    color: #0083ca;
    text-align: center;
}
.index-kefu .kefu-box.kefu-qq{
    background-image: url(../images/kefuqq_03.png);
    background-color: #0091dc;
    margin-bottom: 1px;
}
.index-kefu .kefu-box.kefu-qq .sub-box{
    position: absolute;
    border: 1px solid #d6d6d6;
    right: 100%;
    top:0;
    width: 140px;
    padding: 10px 0;
    background-color: #fff;
}
.index-kefu .kefu-box.kefu-qq .sub-box:before{
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #d6d6d6 #d6d6d6 transparent transparent;
    transform:rotate(45deg);
    -ms-transform:rotate(45deg); 	/* IE 9 */
    -moz-transform:rotate(45deg); 	/* Firefox */
    -webkit-transform:rotate(45deg); /* Safari 和 Chrome */
    -o-transform:rotate(45deg); 	/* Opera */
    position: absolute;
    right: -5px;
    top:20%;
}
.index-kefu .kefu-box.kefu-qq .sub-box:after{
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: #fff;
    transform:rotate(45deg);
    -ms-transform:rotate(45deg); 	/* IE 9 */
    -moz-transform:rotate(45deg); 	/* Firefox */
    -webkit-transform:rotate(45deg); /* Safari 和 Chrome */
    -o-transform:rotate(45deg); 	/* Opera */
    position: absolute;
    right: -4px;
    top:20%;
}
.index-kefu .kefu-box.kefu-qq .sub-box .qq-title{
    font-size: 1.16rem;
    line-height: 2.16rem;
    color: #515151;
    text-align: center;
    font-weight: bold;
}
.index-kefu .kefu-box.kefu-qq .sub-box .qq-number{
    display: block;
    font-size: 1.16rem;
    font-weight: bold;
    color: #0083ca;
    text-align: center;
}
.index-kefu .kefu-box.kefu-weixin{
    background-image: url(../images/kefuw_03.png);
    background-color: #0091dc;
    margin-bottom: 1px;
}
.index-kefu .kefu-box.kefu-weixin .sub-box{
    width: 140px;
    height: 140px;
    position: absolute;
    right: 100%;
    top:-50%;
}
.index-kefu .kefu-box.kefu-weixin .sub-box img{
    position: relative;
    display: block;
    z-index: 100;
    width: 100%;
}
.index-kefu .kefu-box.kefu-weixin .sub-box:before{
     content: "";
     display: block;
     width: 10px;
     height: 10px;
     border-width: 1px;
     border-style: solid;
     border-color: #d6d6d6 #d6d6d6 transparent transparent;
     transform:rotate(45deg);
     -ms-transform:rotate(45deg); 	/* IE 9 */
     -moz-transform:rotate(45deg); 	/* Firefox */
     -webkit-transform:rotate(45deg); /* Safari 和 Chrome */
     -o-transform:rotate(45deg); 	/* Opera */
     position: absolute;
     right: -5px;
     top:30%;
    z-index: 99;
 }
.index-kefu .kefu-box.kefu-weixin .sub-box:after{
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #ffffff #ffffff transparent transparent;
    transform:rotate(45deg);
    -ms-transform:rotate(45deg); 	/* IE 9 */
    -moz-transform:rotate(45deg); 	/* Firefox */
    -webkit-transform:rotate(45deg); /* Safari 和 Chrome */
    -o-transform:rotate(45deg); 	/* Opera */
    position: absolute;
    right: -4px;
    top:30%;
    z-index: 99;
}
.index-kefu .kefu-box.kefu-top{
    display: none;
}
.index-kefu .kefu-box.kefu-top.in{
    display: block;
}
.index-kefu .kefu-box.kefu-top:after{
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-style: solid;
    border-width:1px;
    border-color: #ffffff #ffffff transparent transparent;
    position: absolute;
    left: 50%;
    top:50%;
    margin-left: -7px;
    margin-top: -7px;
    transform:rotate(-45deg);
    -ms-transform:rotate(-45deg); 	/* IE 9 */
    -moz-transform:rotate(-45deg); 	/* Firefox */
    -webkit-transform:rotate(-45deg); /* Safari 和 Chrome */
    -o-transform:rotate(-45deg); 	/* Opera */
}
.index-kefu .kefu-box .sub-box{
    display: none;
}
@media only screen and (min-width: 601px) {
 .index-kefu .kefu-box.kefu-phone:hover .sub-box{
    display: block;
}
.index-kefu .kefu-box.kefu-qq:hover .sub-box{
    display: block;
}
.index-kefu .kefu-box.kefu-weixin:hover .sub-box{
    display: block;
} 
}
@media only screen and (max-width: 600px) {
    .index-kefu{
        display: none;
    }
}

/*通用内页导航*/
.allPage-nav {
    margin-top: 90px;
    background-color: #0091dc;
    width: 100%;
    height: 40px;
}

.allPage-nav .allPage-index {
    width: 43px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    border-left: 1px solid rgba(255, 255, 255, .15);
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.allPage-nav .allPage-name {
    display: inline-block;
    line-height: 40px;
    height: 40px;
    padding-left: 15px;
    padding-right: 70px;
    font-size: 1rem;
    color: #ffffff;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.allPage-nav .allPage-name:before {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 15px;
}

.allPage-nav .allPage-name:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-width: 1px;
    border-style: solid;
    border-color: #ffffff #ffffff transparent transparent;
    position: absolute;
    top: 50%;
    margin-top: -3px;
    right: 23px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg); /* IE 9 */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari 和 Chrome */
    -o-transform: rotate(45deg); /* Opera */
}

.allPage-nav .allPage-kind {
    display: inline-block;
    height: 40px;
    position: relative;
}

.allPage-nav .allPage-kind .allPage-word {
    line-height: 40px;
    padding-left: 15px;
    padding-right: 70px;
    font-size: 1rem;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .15);
    cursor: pointer;
    position: relative;
}

.allPage-nav .allPage-kind .allPage-word:before {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 15px;
}

.allPage-nav .allPage-kind .allPage-word:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-width: 1px;
    border-style: solid;
    border-color: #ffffff #ffffff transparent transparent;
    position: absolute;
    top: 50%;
    margin-top: -3px;
    right: 23px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg); /* IE 9 */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari 和 Chrome */
    -o-transform: rotate(45deg); /* Opera */
}

.allPage-nav .allPage-kind[data-on="click"] .allPage-word:after {
    transform: rotate(135deg);
    -ms-transform: rotate(135deg); /* IE 9 */
    -moz-transform: rotate(135deg); /* Firefox */
    -webkit-transform: rotate(135deg); /* Safari 和 Chrome */
    -o-transform: rotate(135deg); /* Opera */
    right: 20px;
}

.allPage-nav .allPage-kind .allPage-sub {
    position: absolute;
    background-color: #0091dc;
    left: 0;
    top: 100%;
    z-index: 120;
    width: 100%;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.allPage-nav .allPage-kind[data-on="click"] .allPage-sub {
    display: block;
}

.allPage-nav .allPage-kind .allPage-sub .list-p {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    font-size: 1rem;
    color: #ffffff;
}
@media only screen and (max-width: 1024px) {
    .allPage-nav {
        margin-top: 60px;
    }
}
@media only screen and (max-width: 414px) {
    .allPage-nav .allPage-name {
        padding-right: 45px;
    }
    .allPage-nav .allPage-kind .allPage-word {
        padding-right: 45px;
    }
}

/*通用内页大图*/
.allPage-banner {
    height: 285px;
}
.allPage-banner .allPage-banner-title{
    font-size: 3.66rem;
    color: #ffffff;
         -moz-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    transition: all 1s ease-out;
   -webkit-transform: translate3d(0, -30%, 0);
    -ms-transform: translate3d(0, -30%, 0);
    -o-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    opacity: 0;
    visibility: hidden;
    text-transform:uppercase;
}
.allPage-banner .allPage-banner-title.on{
   -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 600px){
    .allPage-banner .allPage-banner-title{
        display: none;
    }
}

/*通用内页标题*/
.allPage-title {
    font-size: 3rem;
    line-height: 1;
    padding-bottom: 28px;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
      -moz-transition: all 1.5s;
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
    -ms-transition: all 1.5s;
    transition: all 1.5s;
        -webkit-transform: translate3d(0,-20%, 0);
    -ms-transform: translate3d(0,-20%, 0);
    -o-transform: translate3d(0,-20%, 0);
    transform: translate3d(0,-20%, 0);
    opacity: 0;
    visibility: hidden;
}
.allPage-title.on{
       -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}
.allPage-title:after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background-color: #0091dc;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -12.5px;
}
@media only screen and(max-width: 600px){
   .allPage-title {
    font-size: 2.5rem;
    } 
}

/*通用分页*/
.all-Page-box {
    text-align: center;
    height: 40px;
}

.all-Page-box .all-page-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid #d2d2d2;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 40px;
    position: relative;
}

.all-Page-box .all-page-btn.page-left:before {
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    background-color: #aaaaaa;
    position: absolute;
    left: 50%;
    margin-left: -4px;
    top: 50%;
    margin-top: -5px;
}

.all-Page-box .all-page-btn.page-left:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-width: 2px;
    border-style: solid;
    border-color: #b1b1b1 transparent transparent #b1b1b1;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -4px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg); /* IE 9 */
    -moz-transform: rotate(-45deg); /* Firefox */
    -webkit-transform: rotate(-45deg); /* Safari 和 Chrome */
    -o-transform: rotate(-45deg); /* Opera */
}

.all-Page-box .all-page-btn.page-right:before {
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    background-color: #aaaaaa;
    position: absolute;
    right: 50%;
    margin-right: -4px;
    top: 50%;
    margin-top: -5px;
}

.all-Page-box .all-page-btn.page-right:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-width: 2px;
    border-style: solid;
    border-color: #b1b1b1 #b1b1b1 transparent transparent;
    position: absolute;
    right: 50%;
    top: 50%;
    margin-top: -4px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg); /* IE 9 */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari 和 Chrome */
    -o-transform: rotate(45deg); /* Opera */
}

.all-Page-box .all-page-btn.page-prev:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-width: 2px;
    border-style: solid;
    border-color: #b1b1b1 transparent transparent #b1b1b1;
    position: absolute;
    left: 50%;
    margin-left: -2px;
    top: 50%;
    margin-top: -4px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg); /* IE 9 */
    -moz-transform: rotate(-45deg); /* Firefox */
    -webkit-transform: rotate(-45deg); /* Safari 和 Chrome */
    -o-transform: rotate(-45deg); /* Opera */
}

.all-Page-box .all-page-btn.page-next:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-width: 2px;
    border-style: solid;
    border-color: #b1b1b1 #b1b1b1 transparent transparent;
    position: absolute;
    right: 50%;
    margin-right: -2px;
    top: 50%;
    margin-top: -4px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg); /* IE 9 */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari 和 Chrome */
    -o-transform: rotate(45deg); /* Opera */
}

.all-Page-box .all-page-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 2px solid transparent;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #9b9b9b;
}

.all-Page-box .all-page-link.on {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 2px solid transparent;
    text-decoration: underline;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #0091dc;
}

/* =========

  显触简介

  ========== */
/*显触简介*/
.intro-top-bg {
    padding-top: 60px;
}
.intro-top-bg2{
    padding-bottom: 95px;
}
.intro-top-bg .intro-top-massage {
    font-size: 1.33rem;
    line-height: 2;
    color: #717171;
}

.intro-top-bg2 .intro-team-box {
    padding-bottom: 40px;
    margin-top: 90px;
    position: relative;
}

.intro-top-bg2 .intro-team-box .intro-team-swiper {
    width: 910px;
    float: left;
}

.intro-top-bg2 .intro-team-box .intro-team-swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 480px;
}

.intro-top-bg2 .intro-team-box .intro-team-swiper .intro-team-pagination {
    position: absolute;
    bottom: 3%;
    z-index: 100;
    text-align: center;
}

.intro-top-bg2 .intro-team-box .intro-team-swiper .intro-team-pagination .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
}

.intro-top-bg2 .intro-team-box .intro-team-swiper .intro-team-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0091dc !important;
}

.intro-top-bg2 .intro-team-box .intro-team-right {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #0091dc;
    padding: 60px 55px;
    width: 400px;
    z-index: 111;
}

.intro-top-bg2 .intro-team-box .intro-team-right .allPage-title.intro-team-title {
    color: #ffffff;
    text-align: left;
}

.intro-top-bg2 .intro-team-box .intro-team-right .allPage-title.intro-team-title:after {
    background-color: #fff;
    left: 0;
    margin-left: 0;
}

.intro-top-bg2 .intro-team-box .intro-team-right .intro-team-massage {
    font-size: 1.16rem;
    line-height: 2;
    color: #ffffff;
}

/*显触概览*/
.intro-show-bg {
    padding-top: 60px;
    background-color: #f6f7fa;
    position: relative;
}

.intro-show-bg:after {
    content: "";
    display: block;
    width: 100%;
    height: 150px;
    background-color: #fff;
    margin-top: -85px;
}

.intro-show-bg .allPage-title.intro-show-title {
    margin-bottom: 30px;
}

.intro-show-bg .intro-show-box {
    position: relative;
    width: 100%;
}

.intro-show-bg .intro-show-box .intro-show-swiper .swiper-wrapper .swiper-slide .intro-show-img {
    padding-top: -moz-calc(179 / 283 * 100%);
    padding-top: -webkit-calc(179 / 283 * 100%);
    padding-top: calc(179 / 283 * 100%);
}

.intro-show-bg .intro-show-box .intro-show-pagination {
    position: absolute;
    bottom: -35px;
    width: 100%;
    z-index: 155;
    text-align: center;
}

.intro-show-bg .intro-show-box .intro-show-pagination .swiper-pagination-bullet {
    margin: 0 5px;
}

.intro-show-bg .intro-show-box .intro-show-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0091dc !important;
}

.intro-show-bg .intro-show-box .intro-show-prev {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #0091dc;
    border-radius: 50%;
    left: -80px;
    top: 50%;
    margin-top: -20px;
    z-index: 114;
    cursor: pointer;
}

.intro-show-bg .intro-show-box .intro-show-prev:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: #0091dc transparent transparent #0091dc;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg); /* IE 9 */
    -moz-transform: rotate(-45deg); /* Firefox */
    -webkit-transform: rotate(-45deg); /* Safari 和 Chrome */
    -o-transform: rotate(-45deg); /* Opera */
    position: absolute;
    left: 50%;
    margin-left: -5px;
    top: 50%;
    margin-top: -5px;
}

.intro-show-bg .intro-show-box .intro-show-next {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #0091dc;
    border-radius: 50%;
    right: -80px;
    top: 50%;
    margin-top: -20px;
    z-index: 114;
    cursor: pointer;
}

.intro-show-bg .intro-show-box .intro-show-next:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: #0091dc #0091dc transparent transparent;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg); /* IE 9 */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari 和 Chrome */
    -o-transform: rotate(45deg); /* Opera */
    position: absolute;
    left: 50%;
    margin-left: -5px;
    top: 50%;
    margin-top: -5px;
}
.layui-layer-nobg{
 margin: 3%;
}
.layui-layer-content{

  max-width: 1200px;
  max-height: 800px;
}
.layui-layer-content img{
    max-height: 100%;
}
@media only screen and (max-width: 1400px) {
    .intro-top-bg2 .intro-team-box {
        margin-top: 70px;
    }
}

@media only screen and (max-width: 1280px) {
    .intro-top-bg2 {
        padding-bottom: 85px;
    }

    .intro-top-bg2 .intro-team-box {
        margin-top: 60px;
    }

}

@media only screen and (max-width: 1024px) {
    .intro-top-bg {
        padding-top: 6%;
    }
    .intro-top-bg2 {
        padding-bottom: 6.5%;
    }

    .intro-top-bg2 .intro-team-box {
        padding-bottom: 4%;
        margin-top: 6%;
    }

    .intro-top-bg2 .intro-team-box .intro-team-swiper {
        width: 100%;
        height: 420px;
        float: none;
    }

    .intro-top-bg2 .intro-team-box .intro-team-right {
        position: static;
        padding: 6% 5.5%;
        width: 100%;
    }

    .intro-show-bg {
        padding-top: 6%;
        margin-bottom: 6.5%;
    }

    .intro-show-bg .allPage-title.intro-show-title {
        margin-bottom: 3%;
    }

    .intro-show-bg:after {
        height: 100px;
    }
}

@media only screen and (max-width: 800px) {
    .intro-top-bg2 .intro-team-box .intro-team-swiper {
        height: 380px;
    }
}

@media only screen and (max-width: 600px) {
    .intro-top-bg2 .intro-team-box .intro-team-swiper {
        height: 320px;
    }

    .intro-show-bg2 .intro-show-box .intro-show-pagination {
        bottom: -28px;
    }

}

@media only screen and (max-width: 414px) {
    .intro-top-bg2 .intro-team-box .intro-team-swiper {
        height: 250px;
    }

    .intro-show-bg:after {
        height: 100px;
    }
}

@media only screen and (max-width: 375px) {
    .intro-top-bg2 .intro-team-box .intro-team-swiper {
        height: 250px;
    }

    .intro-show-bg:after {
        bottom: -45px;
    }

    .intro-show-bg2 .intro-show-box .intro-show-pagination {
        bottom: -30px;
    }
}

@media only screen and (max-width: 320px) {
    .intro-show-bg .intro-show-box .intro-show-pagination {
        bottom: -25px;
    }
}

/*企业文化*/
.culture-bg {
    padding-top: 60px;
    padding-bottom: 110px;
}
.culture-bg .culture-main img {
    width: auto;
    margin: 0 auto;
    display: block;
}

@media only screen and (max-width: 1400px) {
    .culture-bg {
        padding-bottom: 90px;
    }
}

@media only screen and (max-width: 1280px) {
    .culture-bg {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 1024px) {
    .culture-bg {
        padding-top: 6%;
        padding-bottom: 6%;
    }
}

/*发展历程*/
.history-bg {
    padding-top: 60px;
    padding-bottom: 85px;
}

.history-bg .history-swiper-box {
    position: relative;
}

.history-bg .history-swiper-box .history-swiper {
    max-height: 630px;
    margin-bottom: 85px;
    position: relative;
    padding-top: 10px;
}

.history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide{
    height: auto;
}

.history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide .history-box {
    width: 50%;
    float: right;
    padding-bottom: 40px;
    border-left: 1px solid #ced7e4;
    padding-left: 25px;
    position: relative;
    cursor: pointer;
}

.history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide .history-box:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 3px solid #0091dc;
    border-radius: 50%;
    position: absolute;
    left: -8px;
    top: 0;
}

.history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide:nth-child(2n) .history-box {
    width: 50%;
    float: left;
    padding-bottom: 40px;
    border-left: 1px solid transparent;
    border-right: 1px solid #ced7e4;
    padding-left: 0;
    padding-right: 26px;
    text-align: right;
    margin-left: 1px;
}

.history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide:nth-child(2n) .history-box:after {
    left: auto;
    right: -9px;
    top: 0;
}

.history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide .history-box .history-time {
    font-size: 2.16rem;
    color: #555555;
    font-weight: bold;
    position: absolute;
    left: -90px;
    top: -8px;
}

.history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide:nth-child(2n) .history-box .history-time {
    right: -90px;
    left: auto;
}

.history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide .history-box .history-list .list-h {
    position: relative;
    font-size: 1.16rem;
    line-height: 2rem;
    margin-bottom: 10px;
    padding-left: 15px;
}

.history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide:nth-child(2n) .history-box .history-list .list-h {
    padding-left: 0;
    padding-right: 15px;
}

.history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide .history-box .history-list .list-h:before {
    content: "•";
    color: #0091dc;
    position: absolute;
    left: 0;
    top: 0;
}

.history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide:nth-child(2n) .history-box .history-list .list-h:before {
    display: none;
}

.history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide:nth-child(2n) .history-box .history-list .list-h:after {
    content: "•";
    color: #0091dc;
    position: absolute;
    right: 0;
    top: 0;
}

.history-bg .history-swiper-box .history-next {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    left: 50%;
    margin-left: -20px;
    bottom: -40px;
    cursor: pointer;
    animation: nextmove 2s infinite linear;
    -moz-animation: nextmove 2s infinite linear; /* Firefox */
    -webkit-animation: nextmove 2s infinite linear;  /* Safari 和 Chrome */
    -o-animation: nextmove 2s infinite linear;   /* Opera */
}

.history-bg .history-swiper-box .history-next:before {
    content: "";
    width: 10px;
    height: 10px;
    border-width: 2px;
    border-style: solid;
    border-color: transparent #ffffff #ffffff transparent;
    position: absolute;
    left: 50%;
    margin-left: -5px;
    top: 50%;
    margin-top: -5px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg); /* IE 9 */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari 和 Chrome */
    -o-transform: rotate(45deg); /* Opera */
}

@keyframes nextmove
{
    0%   {-webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);}
    50%  {-webkit-transform: translate3d(0, 25%, 0);
    -ms-transform: translate3d(0, 25%, 0);
    -o-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);}
    100% {-webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);}
}

@-moz-keyframes nextmove /* Firefox */
{
     0%   {-webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);}  
    50%  {-webkit-transform: translate3d(0, 25%, 0);
    -ms-transform: translate3d(0, 25%, 0);
    -o-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);}
    100% {-webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);}
}

@-webkit-keyframes nextmove /* Safari 和 Chrome */
{
     0%   {-webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);} 
    50%  {-webkit-transform: translate3d(0, 25%, 0);
    -ms-transform: translate3d(0, 25%, 0);
    -o-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);}
    100% {-webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);}
}

@-o-keyframes nextmove /* Opera */
{
  0%   {-webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);}
    50%  {-webkit-transform: translate3d(0, 25%, 0);
    -ms-transform: translate3d(0, 25%, 0);
    -o-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);}
    100% {-webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);}
}

@media only screen and (max-width: 1280px) {
    .history-bg {
        padding-bottom: 75px;
    }
}

@media only screen and (max-width: 1024px) {
    .history-bg {
        padding-top: 6%;
        padding-bottom: 7.5%;
    }

    .history-bg .history-swiper-box .history-swiper {
        margin-bottom: 6.5%;
    }
    .history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide .history-box {
        padding-bottom: 4%;
        padding-left: 3%;
    }
}

@media only screen and (max-width: 800px) {
    .history-bg .history-swiper-box .history-swiper {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 600px) {
    .history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide .history-box {
        width: 100%;
        float: none;
        margin-left: 3%;
    }

    .history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide:nth-child(2n) .history-box {
        width: 100%;
        float: none;
        border-left: 1px solid #ced7e4;
        padding-left: 3%;
        margin-left: 3%;
        padding-right: 25px;
        text-align: left;
    }

    .history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide:nth-child(2n) .history-box:after {
        left: -8px;
        right: auto;
    }

    .history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide:nth-child(2n) .history-box .history-list .list-h {
        padding-left: 15px;
        padding-right: 0;
    }

    .history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide:nth-child(2n) .history-box .history-list .list-h:before {
        display: block;
    }

    .history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide:nth-child(2n) .history-box .history-list .list-h:after {
        display: none;
    }

    .history-bg .history-swiper-box .history-next:after {
        display: none;
    }

    .history-bg .history-swiper-box .history-swiper .swiper-wrapper .swiper-slide .history-slide .history-box .history-time {
        position: static;
    }
}

/*资质认证*/
.qualification-bg {
    padding-top: 60px;
    padding-bottom: 80px;
}

.qualification-bg .qualification-list .list-q {
    width: -moz-calc((100% - 90px) / 3);
    width: -webkit-calc((100% - 90px) / 3);
    width: calc((100% - 90px) / 3);
    float: left;
    margin-right: 45px;
    margin-bottom: 65px;
    position: relative;
    text-align: center;
}

.qualification-bg .qualification-list .list-q:nth-child(3n) {
    margin-right: 0;
}

.qualification-bg .qualification-list .list-q:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 130px;
    background-color: #f2f2f2;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.qualification-bg .qualification-list .list-q .qualification-img {
    display: inline-block;
    width: 170px;
    height: 243px;
}

.qualification-bg .qualification-list .list-q .qualification-name {
    font-size: 1.16rem;
    line-height: 50px;
    height: 50px;
    color: #3c3c3c;
}

@media only screen and (max-width: 1024px) {
    .qualification-bg {
        padding-top: 6%;
        padding-bottom: 8%;
    }

    .qualification-bg .qualification-list .list-q {
        margin-bottom: 6.5%;
    }
}

@media only screen and (max-width: 800px) {

}

@media only screen and (max-width: 600px) {
    .qualification-bg .qualification-list .list-q {
        width: -moz-calc((100% - 45px) / 2);
        width: -webkit-calc((100% - 45px) / 2);
        width: calc((100% - 45px) / 2);
        margin-right: 45px;
    }

    .qualification-bg .qualification-list .list-q:nth-child(3n) {
        margin-right: 45px;
    }

    .qualification-bg .qualification-list .list-q:nth-child(2n) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 414px) {
    .qualification-bg .qualification-list .list-q {
        width: 100%;
        margin-right: 0;
    }

    .qualification-bg .qualification-list .list-q .qualification-name {
        line-height: 40px;
        height: 40px;
    }
}

/* =========

  触摸屏

  ========== */
.allPage-banner.product-banner{
    height: 400px;
}
@media only screen and (max-width:1600px){
.allPage-banner.product-banner{
    height: 380px;
}
}
@media only screen and (max-width:1400px){
.allPage-banner.product-banner{
    height: 330px;
}
}
@media only screen and (max-width:1280px){
.allPage-banner.product-banner{
    height: 300px;
}
}
@media only screen and (max-width:1024px){
.allPage-banner.product-banner{
    height: 270px;
}
}
@media only screen and (max-width:800px){
.allPage-banner.product-banner{
    height: 220px;
}
}
@media only screen and (max-width:600px){
.allPage-banner.product-banner{
    height: 200px;
}
}
@media only screen and (max-width:414px){
.allPage-banner.product-banner{
    height: 180px;
}
}

@media only screen and (max-width:320px){
.allPage-banner.product-banner{
    height: 150px;
}
}
/*触摸屏and一体机*/
.product-bg {
    padding-top: 60px;
    padding-bottom: 90px;
}

.product-bg .product-list .list-t {
    width: -moz-calc((100% - 60px) / 3);
    width: -webkit-calc((100% - 60px) / 3);
    width: calc((100% - 60px) / 3);
    float: left;
    margin-right: 30px;
    margin-bottom: 70px;
}

.product-bg .product-list .list-t:nth-child(3n) {
    margin-right: 0;
}

.product-bg .product-list .list-t .product-img {
    display: block;
    padding-top: -moz-calc(350 / 378 * 100%);
    padding-top: -webkit-calc(350 / 378 * 100%);
    padding-top: calc(350 / 378 * 100%);
    background-color: #edf0f6;
    position: relative;
}

.product-bg .product-list .list-t .product-name {
    font-size: 1.33rem;
    margin-top: 15px;
    color: #3c3c3c;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-bg .product-list .list-t .product-img .product-link {
    width: 100%;
    height: 100%;
    background-color: #0091dc;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.product-bg .product-list .list-t .product-img .product-link .product-link-more {
    text-align: center;
}

.product-bg .product-list .list-t .product-img .product-link .product-link-more .link-circle {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 5px;
    display: inline-block;
}

.product-bg .product-list .list-t .product-img .product-link .product-link-massage {
    font-size: 1.33rem;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
}

@media only screen and (min-width: 601px) {
    .product-bg .product-list .list-t .product-img:hover .product-link {
        opacity: 0.8;
        visibility: visible;
    }
}

@media only screen and (max-width: 1400px) {
    .product-bg {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 1280px) {
    .product-bg {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 1024px) {
    .product-bg {
        padding-top: 6%;
        padding-bottom: 7%;
    }

    .product-bg .product-list .list-t {
        margin-bottom: 7%;
    }
    .product-bg .product-list .list-t .product-name {
        margin-top: 2%;
    }
}

@media only screen and (max-width: 600px) {
    .product-bg .product-list .list-t {
        width: -moz-calc((100% - 30px) / 2);
        width: -webkit-calc((100% - 30px) / 2);
        width: calc((100% - 30px) / 2);
    }

    .product-bg .product-list .list-t:nth-child(3n) {
        margin-right: 30px;
    }

    .product-bg .product-list .list-t:nth-child(2n) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 320px) {
    .product-bg .product-list .list-t {
        width: 100%;
    }
}

/*触摸屏详细*/
.touchdetail-banner-bg {
    padding-top: 80px;
    padding-bottom: 55px;
    background-color: #eef1f7;
}

.touchdetail-banner-bg .touchdetail-banner-img {
    width: 100%;
}
.touchdetail-banner-bg .touchdetail-banner-img img{
    display: block;
    margin: 0 auto;
}
.touchdetail-banner-bg .touchdetail-banner-name {
    font-size: 2.5rem;
    line-height: 1;
    margin-top: 50px;
    text-align: center;
}

@media only screen and (max-width: 1400px) {
    .touchdetail-banner-bg {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 1280px) {
    .touchdetail-banner-bg {
        padding-top: 60px;
    }
}

@media only screen and (max-width: 1024px) {
    .touchdetail-banner-bg {
        padding-top: 6%;
        padding-bottom: 5.5%;
    }

    .touchdetail-banner-bg .touchdetail-banner-name {
        margin-top: 5%;
    }
}

/*一体机详细*/
.aiodetail-banner-bg {
    padding-top: 80px;
    padding-bottom: 55px;
    background-color: #eef1f7;
}

.aiodetail-banner-bg .aiodetail-swiper-box {
    position: relative;
}

.aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-swiper {
    width: 100%;
    margin: 0 auto;
}
.aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-swiper .swiper-wrapper .swiper-slide .aiodetail-img{
    width: 100%;
    margin: 0 auto;
}
.aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-swiper .swiper-wrapper .swiper-slide .aiodetail-img img {
    display: block;
    margin: 0 auto;
}

.aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-swiper .swiper-wrapper .swiper-slide .aiodetail-name {
    font-size: 2.5rem;
    color: #3c3c3c;
    text-align: center;
    margin-top: 40px;
}

.aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-pagination {
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 25%;
    z-index: 111;
}

.aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 4px;
    background-color: rgba(0, 145, 220, .35);
    border-radius: 0;
    margin-right: 8px;
    opacity: 1;
}

.aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0091dc;
}

.aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-prev {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #fff;
    position: absolute;
    right: 80px;
    bottom: 30%;
    cursor: pointer;
    border-right: 1px solid #eef1f7;
    z-index: 111;
}

.aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-prev:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: #dcdfe4 transparent transparent #dcdfe4;
    position: absolute;
    left: 50%;
    margin-left: -5px;
    top: 50%;
    margin-top: -10px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg); /* IE 9 */
    -moz-transform: rotate(-45deg); /* Firefox */
    -webkit-transform: rotate(-45deg); /* Safari 和 Chrome */
    -o-transform: rotate(-45deg); /* Opera */
}

.aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-next {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #fff;
    position: absolute;
    right: 0;
    bottom: 30%;
    cursor: pointer;
    z-index: 111;
}

.aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-next:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: #dcdfe4 #dcdfe4 transparent transparent;
    position: absolute;
    right: 50%;
    margin-right: -5px;
    top: 50%;
    margin-top: -10px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg); /* IE 9 */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari 和 Chrome */
    -o-transform: rotate(45deg); /* Opera */
}

@media only screen and (max-width: 1400px) {
    .aiodetail-banner-bg {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 1280px) {
    .aiodetail-banner-bg {
        padding-top: 60px;
    }
}

@media only screen and (max-width: 1024px) {
    .aiodetail-banner-bg {
        padding-top: 6%;
        padding-bottom: 5.5%;
    }

    .aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-prev {
      display: none;
    }

    .aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-next {
       display: none;
    }
    .aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-prev {
        display: none;
    }

    .aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-next {
        display: none;
    }
    .aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-pagination {
        display: block;
        position: static;
        text-align: center;
    }
}
@media only screen and (max-width: 600px){
    .aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-swiper .swiper-wrapper .swiper-slide .aiodetail-img{
    width: 70%;
}
}

/*详细类目*/
.detail-kind-box {
    background-color: #f6f8fb;
    text-align: center;
}

.detail-kind-box .detail-kind {
    padding: 25px 75px;
    font-size: 1.25rem;
    display: inline-block;
    font-weight: bold;
    color: #595959;
}

.detail-kind-title {
    font-size: 3.33rem;
    margin-bottom: 25px;
    color: #242424;
}

@media only screen and (max-width: 1024px) {
    .detail-kind-box .detail-kind {
        padding: 2.5% 7.5%;
    }

    .detail-kind-title {
        margin-bottom: 2.5%;
    }
}
@media only screen and (min-width: 601px) {
    .detail-kind-box .detail-kind:hover {
        background-color: #e0e3ea;
        color: #0091dc;
    }
}
/*规格*/
.detail-specification-bg {
    padding-top: 70px;
    position: relative;
}
.detail-specification-bg .maodian{
    position: absolute;
    top: -90px;
}

.detail-specification-bg .specification-list {
    border-top: 1px solid #e0e3ea;
    padding: 40px 0;
    line-height: 3rem;
    font-size: 1.33rem;
    color: #3d3d3d;
}

@media only screen and (max-width: 1280px) {
    .detail-specification-bg {
        padding-top: 60px;
    }
}

@media only screen and (max-width: 1024px) {
    .detail-specification-bg {
        padding-top: 6%;
    }

    .detail-specification-bg .specification-list {
        padding: 4% 0;
    }
    .aiodetail-banner-bg .aiodetail-swiper-box .aiodetail-swiper .swiper-wrapper .swiper-slide .aiodetail-name {
        margin-top: 4%;
    }
    .detail-specification-bg .specification-list .list-s .specification-kind {
        width: 100%;;
        float: none;
        margin-right: 0;
    }

    .detail-specification-bg .specification-list .list-s .specification-kind:nth-child(2) .specification-content {
        background-color: #ffffff;
    }

    .detail-specification-bg .specification-list .list-s:nth-child(2n) .specification-kind .specification-content {
        background-color: #f6f8fb;
    }

    .detail-specification-bg .specification-list .list-s:nth-child(2n) .specification-kind:nth-child(2) .specification-content {
        background-color: #ffffff;
    }
}

@media only screen and (max-width: 600px){
    .detail-specification-bg .specification-list .list-s .specification-kind {
        padding-left: 0;
        height: auto;
    }
    .detail-specification-bg .specification-list .list-s .specification-kind .specification-name {
        position: static;
        display: block;
    }
    .detail-specification-bg .specification-list .list-s .specification-kind:nth-child(2) .specification-content {
        background-color: #f6f8fb;
    }
    .detail-specification-bg .specification-list .list-s:nth-child(2n) .specification-kind:nth-child(2) .specification-content {
        background-color: #f6f8fb;
    }
}

    /*性能*/
.detail-performance-bg {
    background-color: #f6f8fb;
    position: relative;
}
.detail-performance-bg .maodian{
    position: absolute;
    top: -90px;
}

.detail-performance-bg .detail-performance-box {
    padding: 60px 0;
    background-position: right;
}

.detail-performance-bg .detail-performance-box .detail-performance-massage {
    font-size: 1.33rem;
    color: #3d3d3d;
    line-height: 2.25rem;
}

@media only screen and (max-width: 1024px) {
    .detail-performance-bg .detail-performance-box {
        padding: 6% 0;
    }
}

/*资源*/
.detail-source-bg {
    padding-top: 60px;
    padding-bottom: 90px;
    position: relative;
}
.detail-source-bg .maodian{
    position: absolute;
    top: -90px
}

.detail-source-bg .detail-kind-massage {
    font-size: 1.66rem;
    color: #858585;
    margin-bottom: 25px;
    font-weight: bold;
}

.detail-source-bg .source-list {
    border-top: 1px solid #e0e3ea;
    padding-top: 25px;
}
.detail-source-bg .source-list .list-s {
    width: -moz-calc((100% - 50px) / 2);
    width: -webkit-calc((100% - 50px) / 2);
    width: calc((100% - 50px) / 2);
    float: left;
    margin-right: 50px;
    position: relative;
    height: 50px;
    line-height: 50px;
    padding-left: 180px;
}


.detail-source-bg .source-list .list-s:nth-child(2n) {
    margin-right: 0;
}
.detail-source-bg .source-list .list-s .source-file .file-name {
   display: block;
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
}

.detail-source-bg .source-list .list-s .source-file .file-content {
    background-color: #f6f8fb;
    padding: 0 20px;
    font-size: 1.16rem;
    color: #0091dc;
    font-weight: bold;
}
.detail-source-bg .source-list .list-s.bai .source-file .file-content {
    background-color: #fff;
}
.detail-source-bg .source-list .list-s .source-file .file-content a {
    display: inline-block;
    font-size: 1.16rem;
    color: #0091dc;
    font-weight: bold;
    margin-left: 10px;
}


@media only screen and (max-width: 1400px) {
    .detail-source-bg {
        padding-bottom: 80px;
    }

    .detail-source-bg .source-list .list-s {
        padding-left: 150px;
    }
}

@media only screen and (max-width: 1280px) {
    .detail-source-bg {
        padding-bottom: 70px;
    }

    .detail-source-bg .source-list .list-s {
        padding-left: 120px;
    }
}

@media only screen and (max-width: 1024px) {
    .detail-source-bg {
        padding-top: 6%;
        padding-bottom: 6%;
    }

    .detail-source-bg .source-list .list-s {
        padding-left: 100px;
    }

    .detail-source-bg .source-list {
        padding-top: 2.5%;
    }
}

@media only screen and (max-width: 600px) {
.detail-source-bg .source-list .list-s {
    width:100%;
    margin-right: 0;
}
}

@media only screen and (max-width: 320px) {
    .detail-source-bg .source-list .list-s{
        padding-left: 60px;
    }
}

/* =========

  新闻

  ========== */
/*公司新闻*/
.news-title-bg {
    height: 150px;
    background-color: #f6f8fb;
    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;
}

.news-title-bg .news-title {
    display: inline-block;
    float: left;
    font-size: 3rem;
    color: #333333;
    line-height: 50px;
}

.news-title-bg .ts {
    display: inline-block;
    font-size: 1.08rem;
    color: #3b3b3b;
    float: right;
    margin-right: 25px;
    line-height: 50px;
}

.news-title-bg .news-year {
    display: inline-block;
    float: right;
    position: relative;
}

.news-title-bg .news-year .news-year-word {
    padding-left: 15px;
    padding-right: 100px;
    font-size: 1.33rem;
    color: #444444;
    position: relative;
    height: 50px;
    line-height: 50px;
    background-color: #fff;
    cursor: pointer;
    border: 1px solid #dedede;
}

.news-title-bg .news-year .news-year-word:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent #a5a8ad #a5a8ad transparent;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -10px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg); /* IE 9 */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari 和 Chrome */
    -o-transform: rotate(45deg); /* Opera */
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
}

.news-title-bg .news-year[data-on="click"] .news-year-word:after {
    transform: rotate(225deg);
    -ms-transform: rotate(225deg); /* IE 9 */
    -moz-transform: rotate(225deg); /* Firefox */
    -webkit-transform: rotate(225deg); /* Safari 和 Chrome */
    -o-transform: rotate(225deg); /* Opera */
    margin-top: 0;
}

.news-title-bg .news-year .news-year-sub {
    position: absolute;
    width: 100%;
    background-color: #fff;
    display: none;
    z-index: 111;
}

.news-title-bg .news-year .news-year-sub .news-year-select {
    padding-left: 15px;
    font-size: 1.33rem;
    color: #444444;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
}

.news-main {
    padding-bottom: 80px;
}

.news-main .news-list {
    padding-bottom: 40px;
}

.news-main .news-list .list-news a {
    display: block;
    padding: 50px 0;
    border-bottom: 1px solid #e0e3ea;
}

.news-main .news-list .list-news a .list-news-img {
    width: 320px;
    height: 180px;
    margin-right: 30px;
    float: left;
}

.news-main .news-list .list-news a .list-news-img img {
    width: 100%;
}

.news-main .news-list .list-news a .list-news-right {
    width: -moz-calc(100% - 350px);
    width: -webkit-calc(100% - 350px);
    width: calc(100% - 350px);
    float: left;
}

.news-main .news-list .list-news a .list-news-right .list-news-time {
    font-size: 1.16rem;
    line-height: 2rem;
    margin-bottom: 30px;
    color: #8b8b8b;
}

.news-main .news-list .list-news a .list-news-right .list-news-title {
    font-size: 2.16rem;
    color: #3a3a3a;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-main .news-list .list-news a .list-news-right .list-news-massage {
    font-size: 1.08rem;
    line-height: 2rem;
    color: #888787;
    margin-bottom: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-main .news-list .list-news a .list-news-right .list-news-more {
    font-size: 1.16rem;
    line-height: 1;
    color: #0091dc;
}

@media only screen and (max-width: 1600px) {
    .news-title-bg {
        height: 130px;
    }
}

@media only screen and (max-width: 1400px) {
    .news-title-bg {
        height: 120px;
    }
}

@media only screen and (max-width: 1280px) {
    .news-title-bg {
        height: 100px;
    }

    .news-main {
        padding-bottom: 70px;
    }

    .news-main .news-list .list-news a .list-news-right .list-news-time {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 1024px) {
    .news-title-bg {
        height: 80px;
    }

    .news-main {
        padding-bottom: 6%;
    }

    .news-main .news-list {
        padding-bottom: 4%;
    }

    .news-main .news-list .list-news a {
        padding: 5% 0;
    }

    .news-main .news-list .list-news a .list-news-img {
        width: 300px;
        height: 160px;
    }

    .news-main .news-list .list-news a .list-news-right .list-news-time {
        margin-bottom: 3%;
    }

    .news-main .news-list .list-news a .list-news-right .list-news-massage {
        margin-bottom: 3.5%;
    }
}

@media only screen and (max-width: 800px) {
    .news-main .news-list .list-news a .list-news-img {
        width: 280px;
        height: 140px;
    }
}

@media only screen and (max-width: 600px) {
    .news-title-bg .news-title {
        font-size: 2.5rem;
    }
    .news-main .news-list .list-news a .list-news-right .list-news-title {
        font-size: 1.5rem;
    }
    .news-main .news-list .list-news a .list-news-img {
        width: 100%;
        height: auto;
        float: none;
    }

    .news-main .news-list .list-news a .list-news-right {
        width: 100%;
        float: none;
    }
    .news-title-bg .ts {
       display: none;
   }
   .news-title-bg .news-year .news-year-word {
    padding-right: 50px;
}
}

@media only screen and (max-width: 414px) {
    .news-title-bg {
        height: 60px;
    }

    .news-title-bg .news-title {
        line-height: 40px;
    }

    .news-title-bg .ts {
        margin-right: 2.5%;
        line-height: 40px;
    }

    .news-title-bg .news-year .news-year-word {
        height: 40px;
        line-height: 40px;
    }
}
@media only screen and (max-width: 320px){
  .news-title-bg .news-year .news-year-word {
    padding-right: 15px;
}
.news-title-bg .news-year .news-year-word:after {
    display: none;
}
}

/*公司新闻详情*/
.newsdetail-top-bg {
    height: 285px;
    background-color: #33353a;
}

.newsdetail-top-bg .newsdetail-top-time {
    font-size: 1.16rem;
    line-height: 2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.newsdetail-top-bg .newsdetail-top-title {
    font-size: 2.16rem;
    color: #ffffff;
    text-align: center;
}
/*分享*/
.newsdetail-top-bg .newsdetail-top-share .bshare-custom {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    color: #d6d6d6;
}
.newsdetail-top-bg .newsdetail-top-share .bshare-custom a{
    height: 19px;
}
.newsdetail-top-bg .newsdetail-top-share .bshare-custom .bshare-qqim {
    background-image: url("../images/qqshare_03.png");
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    margin-left: 10px;
}

.newsdetail-top-bg .newsdetail-top-share .bshare-custom .bshare-weixin {
    background-image: url("../images/weixinshare_03.png");
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    margin-left: 10px;
}

.newsdetail-top-bg .newsdetail-top-share .bshare-custom .bshare-sinaminiblog {
    background-image: url("../images/weiboshare_03.png");
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    margin-left: 10px;
}

.newsdetail-top-bg .newsdetail-top-share .bshare-custom .bshare-more {
    background-image: url("../images/Share_03.png");
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    margin-left: 10px;
}

.newsdetail-main-bg {
    padding-top: 60px;
}

.newsdetail-main-bg .newsdetail-content {
    padding-left: 12.5%;
    padding-right: 12.5%;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e3ea;
    position: relative;
}

.newsdetail-main-bg .newsdetail-content .newsdetail-back {
    display: block;
    font-size: 1.16rem;
    color: #0091dc;
    margin-bottom: 45px;
    font-weight: bold;
}

.newsdetail-main-bg .newsdetail-content .newsdetail-massage {
    display: block;
    font-size: 1.16rem;
    line-height: 2.5rem;
    color: #5a5a5a;
}

.newsdetail-main-bg .newsdetail-page {
    padding: 30px 12.5%;
}

.newsdetail-main-bg .newsdetail-page .newsdetail-prev {
    display: inline-block;
    float: left;  
}

.newsdetail-main-bg .newsdetail-page .newsdetail-prev .prev-btn {
    font-size: 1rem;
    color: #0091dc;
}

.newsdetail-main-bg .newsdetail-page .newsdetail-prev span {
    color: #8d8d8d;
    margin: 0 20px;
}
.newsdetail-main-bg .newsdetail-page .newsdetail-prev .prev-word{
    font-size: 1rem;
    color: #8d8d8d;
}

.newsdetail-main-bg .newsdetail-page .newsdetail-next {
    display: inline-block;
    float: right;
    font-size: 1rem;
    color: #8d8d8d;
}

.newsdetail-main-bg .newsdetail-page .newsdetail-next .next-btn {
    font-size: 1rem;
    color: #0091dc;
    float: right;
}

.newsdetail-main-bg .newsdetail-page .newsdetail-next span {
    color: #8d8d8d;
    margin: 0 20px;
    float: right;
}
.newsdetail-main-bg .newsdetail-page .newsdetail-next .next-word{
    font-size: 1rem;
    color: #8d8d8d;
}

@media only screen and (max-width: 1600px) {
    .newsdetail-top-bg {
        height: 265px;
    }
}

@media only screen and (max-width: 1400px) {
    .newsdetail-top-bg {
        height: 245px;
    }
}

@media only screen and (max-width: 1280px) {
    .newsdetail-top-bg {
        height: 225px;
    }
}

@media only screen and (max-width: 1024px) {
    .newsdetail-top-bg {
        height: 205px;
    }

    .newsdetail-main-bg {
        padding-top: 6%;
    }

    .newsdetail-main-bg .newsdetail-content .newsdetail-back {
        margin-bottom: 4.5%;
    }
    .newsdetail-top-bg .newsdetail-top-time {
    margin-bottom: 3%;
}

}

@media only screen and (max-width: 800px) {
    .newsdetail-top-bg {
        height: 185px;
    }

    .newsdetail-main-bg .newsdetail-content {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 5%;
    }

    .newsdetail-main-bg .newsdetail-page {
        padding: 3% 0;
    }
}

@media only screen and (max-width: 600px) {
    .newsdetail-top-bg {
        height: 165px;
    }

    .newsdetail-main-bg .newsdetail-page .newsdetail-prev {
        display: block;
        float: none;
        margin: 5px 0;
    }

    .newsdetail-main-bg .newsdetail-page .newsdetail-next {
        display: block;
        float: none;
        margin: 5px 0;

    }

    .newsdetail-main-bg .newsdetail-page .newsdetail-next .prev-btn {
        float: none;
    }

    .newsdetail-main-bg .newsdetail-page .newsdetail-next span {
        float: none;
    }
    .newsdetail-top-bg .newsdetail-top-title {
        font-size:1.5rem;
    }
    .newsdetail-main-bg .newsdetail-page .newsdetail-next .next-btn {
        float: left;
        margin-right: 3px
    }
}

@media only screen and (max-width: 414px) {
    .newsdetail-top-bg {
        height: 145px;
    }
}
@media only screen and (max-width: 320px) {
    .newsdetail-top-bg {
        height: 135px;
    }
}

/* =========

  应用

  ========== */
/*应用*/
.use-bg {
    padding: 60px 0;
    position: relative;
}

.use-bg:after {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    background-color: #f6f7fa;
    position: absolute;
    right: 0;
    top: 0;
}

.use-bg .use-swiper-box {

}

.use-bg .use-swiper-box .use-swiper {
    position: relative;
    z-index: 111;
}

/*应用六边形*/
.use-bg .use-swiper-box .use-swiper .swiper-slide{
-webkit-transform-style: preserve-3d !important; 
}
.use-bg .use-swiper-box .use-swiper .use-list {
    overflow: hidden;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 5.866% 0 0.866%;
}

.use-bg .use-swiper-box .use-swiper .use-list:after {
    content: "";
    display: block;
    clear: both;
}

.hex {
    position: relative;
    list-style-type: none;
    float: left;
    overflow: hidden;
    visibility: hidden;
    outline: 1px solid transparent; /* fix for jagged edges in FF on hover transition */
    -webkit-transform: rotate(-60deg) skewY(30deg) translatez(1px);
    -ms-transform: rotate(-60deg) skewY(30deg) translatez(1px);
    transform: rotate(-60deg) skewY(30deg) translatez(1px);
    z-index: 2
}

.hex * {
    position: absolute;
    visibility: visible;
    outline: 1px solid transparent; /* fix for jagged edges in FF on hover transition */
}

.hexIn {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    overflow: hidden;
    -webkit-transform: skewY(-30deg) rotate(60deg);
    -ms-transform: skewY(-30deg) rotate(60deg);
    transform: skewY(-30deg) rotate(60deg);
    cursor: pointer;
}

/*** HEX CONTENT **********************************************************************/
.hex .hexIn-img {
    left: 0;
    right: 0;
    width: auto;
    height: 100%;
    margin: 0 auto;
}

/*** SPACING AND SIZING *****************************************************************/

/* <- 3-2  hexagons per row */
.hex {
    width: 30.666%; /* = (100-2) / 3 */
    padding-bottom: 35.444%; /* =  width / sin(60) */
}

.hex:nth-child(5n+1),
.hex:nth-child(5n+2) {
    margin-top: -6.564%;
    margin-bottom: -6.564%;
    -webkit-transform: translateX(55%) rotate(-60deg) skewY(30deg);
    -ms-transform: translateX(55%) rotate(-60deg) skewY(30deg);
    transform: translateX(55%) rotate(-60deg) skewY(30deg);
}

.hex:nth-child(5n+1):last-child,
.hex:nth-child(5n+2):last-child {
    margin-bottom: 0;
}

.hex:nth-child(5n+1) {
    margin-right: 5%;
}

.hex:nth-child(5n+4) {
    margin-left: 4%;
    margin-right: 4%;
    z-index: 1;
}

.hex:nth-child(5n+6), .hex:nth-child(5n+3) {
    clear: left;
}

.hex .hexIn .hexIn-img.center {
    background-color: #0091dc;
}
.hex:nth-child(5n+3).big{
-webkit-transform: rotate(-60deg) skewY(30deg) translatez(1px) scale(1.015);
    -ms-transform: rotate(-60deg) skewY(30deg) translatez(1px) scale(1.015);
    transform: rotate(-60deg) skewY(30deg) translatez(1px) scale(1.015);
}
.hex:nth-child(5n+5).big{
-webkit-transform: rotate(-60deg) skewY(30deg) translatez(1px) scale(1.015);
    -ms-transform: rotate(-60deg) skewY(30deg) translatez(1px) scale(1.015);
    transform: rotate(-60deg) skewY(30deg) translatez(1px) scale(1.015);
}
.hex .hexIn .hexIn-img.hui{
    background-color: #f6f7fa;
}
.hex .hexIn .hexIn-img.bai{
    background-color: #ffffff;
}


.hex:nth-child(5n+4) .hexIn img {
    opacity: 0;
}

.hex .hexIn .hex-word {
    position: absolute;
    bottom: 20%;
    font-size: 1.66rem;
    line-height: 1.5;
    font-weight: bold;
    color: #ffffff;
    width: 100%;
    text-align: center;
    padding: 0 5px;
}

.hex:nth-child(5n+4) .hexIn .hex-word {
    font-size: 3rem;
    line-height: 1;
    font-weight: normal;
    position: absolute;
    margin-top: -18px;
    top: 50%;
    bottom: auto;
}

.hex:nth-child(5n+4) .hexIn .hex-word:after {
    content: "";
    width: 26px;
    height: 3px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    bottom: -18px;
    left: 50%;
    margin-left: -13px;
}

.use-bg .use-swiper-box .use-swiper .use-prev {
    font-size: 1.5rem;
    color: #0091dc;
    position: absolute;
    left: 65px;
    top: 50%;
    margin-top: -9px;
    z-index: 112;
    cursor: pointer;
}

.use-bg .use-swiper-box .use-swiper .use-prev:after {
    content: "";
    display: block;
    width: 65px;
    height: 1px;
    background-color: #0091dc;
    position: absolute;
    left: 140%;
    top: 50%;
    margin-top: 0.5px;
}

.use-bg .use-swiper-box .use-swiper .use-next {
    font-size: 1.5rem;
    color: #0091dc;
    position: absolute;
    right: 65px;
    top: 50%;
    margin-top: -9px;
    z-index: 112;
    cursor: pointer;
}

.use-bg .use-swiper-box .use-swiper .use-next:after {
    content: "";
    display: block;
    width: 65px;
    height: 1px;
    background-color: #0091dc;
    position: absolute;
    right: 140%;
    top: 50%;
    margin-top: 0.5px;
}

@media only screen and (min-width: 601px) {
    .hex.hex-hover:hover .hexIn-img {
        -webkit-transform:scale(1.1);
        -ms-transform:scale(1.1);
        transform:scale(1.1);
    }
}

@media only screen and (max-width: 1280px) {
    .use-bg .use-swiper-box .use-swiper .use-prev {
        display: none;
    }

    .use-bg .use-swiper-box .use-swiper .use-next {
        display: none;
    }
}

@media only screen and (max-width: 1024px) {
    .use-bg {
        padding: 6% 0;
        position: relative;
    }
}

@media only screen and(max-width: 600px){
    .hex .hexIn .hex-word {
        font-size: 1rem;
        line-height: 1;
    }
    .hex:nth-child(5n+4) .hexIn .hex-word {
    font-size: 1.5rem;
    line-height: 1;
    }
}

@media only screen and (max-width: 414px) {
    .hex:nth-child(5n+4) .hexIn .hex-word {
        margin-top: -6px;
    }

    .hex:nth-child(5n+4) .hexIn .hex-word:after {
        width: 18px;
        margin-left: -9px;
        bottom: -12px;
    }
    .hex .hexIn .hex-word {
        font-weight: normal;
    }
}

@media only screen and (max-width: 320px) {
    .hex:nth-child(5n+4) .hexIn .hex-word:after {
        width: 16px;
        margin-left: -8px;

    }
}

/*应用详情*/
.usedetail-bg {
    padding-top: 60px;
    padding-bottom: 55px;
}

.usedetail-bg img {
    width: 100%;
}

.usedetail-bg .usedetail-massage {
    font-size: 1.33rem;
    line-height: 3rem;
    color: #4a4a4a;
}


@media only screen and (max-width: 1024px) {
    .usedetail-bg {
        padding-top: 6%;
        padding-bottom: 5.5%;
    }

    .usedetail-bg .usedetail-massage {
        padding: 4.5% 0;
    }
}
@media only screen and (max-width: 600px) {
    .usedetail-bg .usedetail-massage {
        padding: 0;
    }
}

/* =========

  联系我们

  ========== */

/*联系方式*/
.contact-way-bg {
    padding-top: 60px;
    padding-bottom: 45px;
}

.contact-way-bg .contact-way-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
}

.contact-way-bg .contact-way-box .contact-way-left {
    width: 450px;
    background-color: #0091dc;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-flex: 1;
    padding-top: 65px;
    padding-bottom: 45px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1.16rem;
    color: #fff;
    line-height: 2;
}


.contact-way-bg .contact-way-box .contact-way-right {
    width: -moz-calc(100% - 450px);
    width: -webkit-calc(100% - 450px);
    width: calc(100% - 450px);
}

/*关注公众号*/
.contact-weixin-bg {
    margin-top: 45px;
    margin-bottom: 45px;
    position: relative;
    text-align: center;
}

.contact-weixin-bg .line {
    width: 100%;
    height: 1px;
    background-color: #0091dc;
    position: absolute;
    top: 50%;
    z-index:1;
}

.contact-weixin-bg .line.line1 {
    margin-top: -3px;
}

.contact-weixin-bg .line.line3 {
    margin-top: 3px;
}

.contact-weixin-bg .contact-weixin-box {
    padding: 0 20px;
    background-color: #fff;
    display: inline-block;
     margin: 0 auto;
     position: relative;
     z-index: 2
}

.contact-weixin-bg .contact-weixin-box .contact-weixin-img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.contact-weixin-bg .contact-weixin-box .contact-weixin-img img {
    width: 100%;
}

.contact-weixin-bg .contact-weixin-box .contact-weixin-title {
    font-size: 1rem;
    text-align: center;
}

/*联系人员*/
.contact-member-list {
    min-height: 100px;
}
.contact-member-list .list-member {
    width: -moz-calc((100% - 36px) / 2);
    width: -webkit-calc((100% - 36px) / 2);
    width: calc((100% - 36px) / 2);
    float: left;
    margin-right: 36px;
    margin-bottom: 40px;
    padding: 30px 45px;
    border: 1px solid #e6e6e6;
}

.contact-member-list .list-member:nth-child(2n) {
    margin-right: 0;
}

.contact-member-list .list-member .list-member-box {
    min-height: 144px;
}

.contact-member-list .list-member .list-member-box .list-member-massage {
    position: relative;
    font-size: 1.16rem;
    line-height: 3rem;
    padding-left: 90px;
    min-height: 36px;
}

.contact-member-list .list-member .list-member-box .list-member-massage .member-massage-kind {
    position: absolute;
    left: 0;
    font-weight: bold;
}

.contact-member-list .list-member .list-member-box .list-member-massage .member-massage-kind img {
    width: 15px;
    height: 15px;
    margin-right: 20px;
}

/*地图*/
.contact-map {
    width: 100%;
    height: 370px;
    margin-bottom: 95px;
}

.contact-map img {
    max-width: none;
}

@media only screen and (max-width: 1600px) {
    .allPage-banner {
        height: 265px;
    }
}

@media only screen and (max-width: 1400px) {
    .allPage-banner {
        height: 245px;
    }

    .contact-map {
        height: 350px;
        margin-bottom: 85px;
    }
}

@media only screen and (max-width: 1280px) {
    .allPage-banner {
        height: 225px;
    }

    .contact-map {
        height: 320px;
        margin-bottom: 75px;
    }
}

@media only screen and (max-width: 1024px) {
    .allPage-banner {
        height: 205px;
    }

    .contact-way-bg {
        padding-top: 6%;
        padding-bottom: 4.5%;
    }

    .allPage-title {
        margin-bottom: 5%;
        padding-bottom: 15px;
    }

    .contact-weixin-bg {
        margin-top: 4.5%;
        margin-bottom: 4.5%;
    }
    .contact-way-bg .contact-way-box {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .contact-way-bg .contact-way-box .contact-way-left {
        padding-top: 6.5%;
        padding-bottom: 4.5%;
        padding-left: 3%;
        padding-right: 3%;
        width: 100%;
    }

    .contact-way-bg .contact-way-box .contact-way-right {
        padding-top: -moz-calc(371 / 749 * 100%);
        padding-top: -webkit-calc(371 / 749 * 100%);
        padding-top: calc(371 / 749 * 100%);
        width: 100%;
    }

    .contact-way-bg .contact-way-box .contact-way-left .contact-way-en {
        margin-bottom: 3%;
    }

    .contact-member-list .list-member {
        margin-bottom: 4%;
        padding: 3% 4.5%;
    }

    .contact-map {
        height: 300px;
        margin-bottom: 65px;
    }
}

@media only screen and (max-width: 800px) {
    .allPage-banner {
        height: 185px;
    }

    .contact-map {
        height: 280px;
        margin-bottom: 6.5%;
    }
}

@media only screen and (max-width: 600px) {
    .allPage-banner {
        height: 165px;
    }

    .contact-member-list .list-member {
        width: 100%;
        float: left;
        margin-right: 0;
    }

    .contact-way-bg .contact-way-box .contact-way-left .contact-way-massage .list-m {
        line-height: 2.5rem;
    }

    .contact-member-list .list-member .list-member-massage {
        line-height: 2.5rem;
    }
}

@media only screen and (max-width: 414px) {
    .allPage-banner {
        height: 145px;
    }

    .contact-way-bg .contact-way-box .contact-way-left .contact-way-massage .list-m {
        line-height: 2rem;
    }

    .contact-member-list .list-member .list-member-massage {
        line-height: 2rem;
    }
}

@media only screen and (max-width: 320px) {
    .allPage-banner {
        height: 125px;
    }
}

/*留言*/
.massaged-bg {
    padding-top: 60px;
    padding-bottom: 120px;
}

.massaged-bg .massaged-form {
    width: 94%;
    max-width: 550px;
    margin: 0 auto;
}

.massaged-bg .massaged-form .my-item {
    width: -moz-calc((100% - 15px) / 2);
    width: -webkit-calc((100% - 15px) / 2);
    width: calc((100% - 15px) / 2);
    float: left;
    margin-right: 15px;
    margin-bottom: 25px;
}

.massaged-bg .massaged-form .my-item:nth-child(2n) {
    margin-right: 0;
}

.massaged-bg .massaged-form .my-item.my-item-title {
    width: 100%;
}

.massaged-bg .massaged-form .my-item .my-label {
    font-size: 1.16rem;
    line-height: 2rem;
    color: #4d4d4d;
}

.massaged-bg .massaged-form .my-item .my-input input[type="text"] {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 1.16rem;
    border: 1px solid #e6e6e6;
    
}

.massaged-bg .massaged-form .my-item.my-item-textarea {
    width: 100%;
}

.massaged-bg .massaged-form .my-item.my-item-textarea .my-textarea textarea {
    width: 100%;
    height: 200px;
    resize: none;
    border: 1px solid #e6e6e6;
    padding: 10px;
}

.massaged-bg .massaged-form .btn {
    width: -moz-calc((100% - 15px) / 2);
    width: -webkit-calc((100% - 15px) / 2);
    width: calc((100% - 15px) / 2);
    float: left;
    margin-right: 15px;
    margin-top: 35px;
    height: 57px;
    background-color: #95989f;
    border: none;
    color: #ffffff;
    font-size: 1.33rem;
    line-height: 57px;
    text-align: center;
}

.massaged-bg .massaged-form .btn.btn-tj {
    background-color: #0091dc;
    margin-right: 0;
}

@media only screen and (max-width: 1024px) {
    .massaged-bg {
        padding-top: 6%;
        padding-bottom: 100px;
    }

    .massaged-bg .massaged-form .my-item {
        margin-bottom: 2.5%;
    }

    .massaged-bg .massaged-form .btn {
        margin-top: 3.5%;
    }
}

@media only screen and (max-width: 800px) {
    .massaged-bg {
        padding-top: 6%;
        padding-bottom: 8%;
    }
}

@media only screen and (max-width: 414px) {
    .massaged-bg .massaged-form .my-item {
        width: 100%;
        margin-right: 0;
    }

    .massaged-bg .massaged-form .btn {
        width: 100%;
        margin-right: 0;
    }
    .massaged-bg .massaged-form .my-item .my-input input[type="text"] {
        height: 40px;
        line-height: 40px;
    }
    .massaged-bg .massaged-form .my-item.my-item-textarea .my-textarea textarea {
        height: 180px;
    }
}

/*页脚*/
.footer {
    background-color: #1f2024;
    padding-top: 60px;
}

.footer .footer-list {
    margin-bottom: 60px;
}

.footer .footer-list .list-f {
    width: 16.6%;
    float: left;
}

.footer .footer-list .list-f:last-child {
    width: 33.2%;
}

.footer .footer-list .list-f .list-ftitle {
    font-size: 1.33rem;
    color: #83838f;
    margin-bottom: 10px;
}

.footer .footer-list .list-f .list-fa {
    display: block;
    font-size: 1.16rem;
    line-height: 2;
    color: #e6e6e6;
}

.footer .footer-bottom {
    font-size: 1rem;
    line-height: 2;
    color: rgba(255, 255, 255, .35);
    padding: 25px 0;
    border-top: 1px solid #36373a;
}
.footer .footer-bottom .footer-bottom-left{
    display: inline-block;
    float: left;
    line-height: 32px;
}

.footer .footer-bottom .footer-bottom-right {
    float: right;
    line-height: 32px;
}

.footer .footer-bottom .footer-bottom-right .bottom-word {
    font-size: 1rem;
    color: #ffffff;
    margin-right: 25px;
}

.footer .footer-bottom .footer-bottom-right .bottom-weixin {
    width: 36px;
    height: 32px;
    display: inline-block;
    background-color: #3c3c42;
    position: relative;
    cursor: pointer;
}

.footer .footer-bottom .footer-bottom-right .bottom-weixin .weixin-img{
    display: none;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    position: absolute;
    left: -50%;
    margin-left: -25px;
    bottom: 120%;
}

.footer .footer-bottom .footer-bottom-right .bottom-weixin[data-on="click"] .weixin-img{
    display: block;
}

.footer .footer-bottom .footer-bottom-right .bottom-face {
    width: 36px;
    height: 32px;
    display: inline-block;
    background-color: #3c3c42;
}

.footer .footer-bottom .footer-bottom-right .bottom-bird {
    width: 36px;
    height: 32px;
    display: inline-block;
    background-color: #3c3c42;
}

@media only screen and (min-width: 601px){
    .footer .footer-bottom .footer-bottom-right .bottom-weixin:hover .weixin-img{
        display: block;
    }
}

@media only screen and (max-width: 1024px) {
    .footer {
        padding-top: 6%;
    }
    .footer .footer-list {
        margin-bottom: 6%;
    }
    .footer .footer-bottom {
        padding: 2.5% 0;
    }
}

@media only screen and (max-width: 600px) {
    .footer .footer-list .list-f {
        width: 25%;
    }
    .footer .footer-list .list-f:last-child{
        width: 100%;
    }
    .footer .footer-bottom .footer-bottom-right {
        display: none;
    }
}

@media only screen and (max-width: 414px) {
    .footer .footer-list .list-f {
        display: none;
    }
    .footer .footer-list .list-f:last-child{
        display: block;
    }
}

/*搜索结果*/
.all{
    min-height: calc(100vh - 550px);
}
.all .searchbg .box{
    text-align: center;
}
.all .searchbg .box .title{
    display: inline-block;
    font-size: 3rem;
    line-height: 1;
    margin: 3% 0;
}

.all .search-main .list li{
   width: -moz-calc((100% - 50px) / 2);
   width: -webkit-calc((100% - 50px) / 2);
   width: calc((100% - 50px) / 2);
   float: left;
   margin-right: 50px;
}
.all .search-main .list li:nth-child(2n){
   margin-right: 0;
}

.all .search-main .list .text{
    margin: 3% 0;
    padding-left: 100px;
    position: relative;
}
.all .search-main .list .text .rq{
    display: inline-block;
    font-size: 1.16rem;
    line-height: 1;
    margin-right: 25px;
    position: absolute;
    left:0;
}

.all .search-main .list .text .title{
    display: block;
    font-size: 1.16rem;
    line-height: 1;
    color: #0091dc;
}
@media only screen and(max-width: 600px){
    .all .searchbg .box .title{
        font-size: 2.5rem;
    }
}
@media only screen and(max-width: 600px){
 .all .search-main .list li{
   width: 100%;
   float: left;
   margin-right: 0;
} 
}