* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "微软雅黑";
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

.clear {
    clear: both;
    overflow: hidden;
}

.mobile-inner-header {
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 60px;
    display: none;
    line-height: 60px;
    text-align: center;
    color: #333;
    font-weight: bold;
    font-size: 22px;
    position: relative;
}

.mobile-inner-header-icon {
    color: #333;
    height: 60px;
    font-size: 25px;
    text-align: center;
    width: 60px;
    position: absolute;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    outline: none;
    top: 0;
    right: 0;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(51, 51, 51, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgba(51, 51, 51, 1);
}

.mobile-inner-header img {
    height: 70%;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    z-index: 999;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    width: 80%;
    margin-left: 10%;
    color: #333;
    border-bottom: solid 1px rgba(51, 51, 51, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.banner img {
    width: 100%;
}

.banner .swiper-pagination-bullet {
    width: 25px;
    height: 10px;
    background: #fff;
    border-radius: 5px;
}

.banner.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 15px;
}

.banner.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.head {
    width: 100%;
    overflow: hidden;
    height: 125px;
}

.heads {
    max-width: 1400px;
    margin: auto;
}

.logo {
    height: 125px;
    line-height: 125px;
    float: left;
}

.hpic {
    float: right;
    height: 125px;
    line-height: 125px;
}

.logotitle {
    float: left;
    margin-top: 50px;
}

.logomaintitle {
    font-weight: bold;
    font-size: 17px;
    color: #000;
}

.logotitles {
    font-size: 22px;
    color: #717171;
    display: none;
}

.toptitle {
    float: left;
    font-size: 14px;
    font-weight: 300;
    color: #ff0000;
    margin-left: 7px;
    padding-left: 15px;
    border-left: 1px solid #095da2;
    height: 68px;
    line-height: 34px;
    margin-top: 28px;
    width: 36%;
}

.top {
    width: 100%;
}

.tops {
    max-width: 1400px;
    margin: auto;
    border-radius: 8px;
    background: #095da2;
    height: 70px;
    line-height: 70px;
    position: relative;
    box-shadow: 0 0 10px #ddd;
}

.nav {
    float: left;
    width: 80%;
}

.nav ul {
    margin-bottom: 0;
}

.nav ul li {
    width: calc(100% / 7);
    float: left;
    height: 70px;
    line-height: 70px;
    text-align: center;
}

.nav ul li a {
    display: block;
    font-size: 20px;
    color: #fff;
}

.nav ul li:hover a {
    font-weight: bold;
}

.language {
    float: left;
    height: 70px;
    line-height: 70px;
    font-size: 20px;
    color: #fff;
    width: 10%;
    text-align: center;
}

.language a {
    font-size: 20px;
    color: #fff;
}

.search {
    width: 10%;
    text-align: center;
    float: left;
    height: 70px;
    line-height: 70px;
    cursor: pointer;
}

.search-box {
    width: 40%;
    position: absolute;
    right: 0;
    top: 70px;
    display: none;
    z-index: 9999;
    background: #095da2;
    padding: 18px 2%;
}

.search-box .close {
    float: right;
    width: 35px;
    height: 35px;
    background: url(../images/wel26.png) no-repeat center;
    background-size: 100%;
    margin-top: 2px;
    opacity: 1;
}

.search-box form {
    width: 76%;
    height: 40px;
    line-height: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 1);
}

.search-box form .text {
    font-size: 12px;
    border: none;
    background: none;
    padding: 0 28px 0 18px;
    width: 100%;
    height: 40px;
    color: #fff;
    line-height: 40px;
    outline: none;
}

.search-box form .submit {
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    right: 14px;
    margin-top: -15px;
    background: url(../images/search.png) no-repeat center;
    border: none;
}

.search-box form .text::-webkit-input-placeholder {
    color: #fff;
}

.search-box form .text:-moz-placeholder {
    color: #fff;
}

.search-box form .text::-moz-placeholder {
    color: #fff;
}

.search-box form .text:-ms-input-placeholder {
    color: #fff;
}

.key {
    width: 100%;
    overflow: hidden;
    height: 70px;
    line-height: 70px;
}

.keys {
    max-width: 1400px;
    margin: auto;
}

.keys span {
    font-size: 20px;
    color: #095da2;
    font-weight: bold;
}

.keys a {
    font-size: 18px;
    color: #000;
    padding: 0 20px;
    border-right: 1px solid #000;
}

.keys a:nth-child(5) {
    padding-right: 0;
    border-right: none;
}

.keys a:nth-child(2) {
    padding-left: 0;
}

.keys form {
    width: 20%;
    float: right;
    position: relative;
    margin-top: 15px;
}

.keys form input[type=text] {
    float: left;
    width: 100%;
    height: 40px;
    background: none;
    border: 1px solid #333;
    padding-left: 10px;
    outline: none;
}

.keys form input[type=submit] {
    float: left;
    width: 26px;
    height: 40px;
    background: url(../images/search.png) center no-repeat;
    border: none;
    outline: none;
    position: absolute;
    top: 0;
    right: 10px;
}

.about {
    width: 100%;
    overflow: hidden;
    background: url(../images/abbg.png) center no-repeat;
    background-size: cover;
    padding: 60px 0;
}

.abouts {
    max-width: 1500px;
    margin: auto;
    overflow: hidden;
}

.left_ab {
    float: left;
    width: 50.6%;
    font-size: 0;
    margin-top: 30px;
}

.left_ab video {
    width: 100%;
}

.right_ab {
    float: right;
    width: 46%;
}

.abtitle {
    font-weight: bold;
    font-size: 32px;
    color: #363636;
}

.abtitles {
    font-size: 18px;
    color: #0090f0;
}

.abcon {
    font-size: 16px;
    color: #363636;
    text-indent: 2em;
    line-height: 2.2;
    margin-top: 25px;
}

.shuju {
    width: 100%;
    overflow: hidden;
    margin-top: 35px;
}

.sj {
    float: left;
    padding: 0 50px;
    background: url(../images/sjbg.png) left center no-repeat;
}

.sj:last-child {
    padding-right: 0;
}

.sj_top {
    font-size: 16px;
    color: #0352a5;
}

.sj_top span {
    font-size: 40px;
    color: #333333;
    font-weight: bold;
}

.sj_bot {
    font-size: 14px;
    color: #959595;
}

.abmore {
    text-align: center;
    margin-top: 30px;
}

.abmore a {
    display: inline-block;
    width: 185px;
    height: 50px;
    line-height: 50px;
    background: #095da2;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}

.support {
    width: 100%;
    overflow: hidden;
    background: url(../images/image_12.jpg) center no-repeat;
    background-size: cover;
    padding: 20px 0;
}

.supports {
    max-width: 1400px;
    margin: 25px auto 0;
    overflow: hidden;
    background: #f1f1f1;
}

.title {
    text-align: center;
}

.maintitle {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 60px;
    color: #d9e4f1;
}

.titles {
    font-weight: bold;
    font-size: 36px;
    color: #333;
    margin-top: -70px;
}

.titlecon {
    font-size: 18px;
    color: #393939;
    font-weight: 300;
    margin-top: 15px;
}

.right_support {
    float: right;
    width: 50%;
    padding: 30px;
}

.right_support video {
    width: 100%;
}

.right_support p {
    width: 100%;
    text-align: center;
    background: #1061b9;
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    height: 60px;
    line-height: 60px;
}

.right_supports {
    display: none;
}

.left_support {
    width: 50%;
    float: left;
    padding: 30px;
}

.left_support_title {
    font-size: 24px;
    color: #000;
    background: url(../images/js.png) right center no-repeat;
}

.left_support_date {
    font-size: 16px;
    color: #1061b9;
    margin-top: 10px;
    display: none;
}

.left_supports {
    cursor: pointer;
    padding-bottom: 30px;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 20px;
}

.left_supports:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.left_supports.active .left_support_title {
    color: #1061b9;
    background: url(../images/js_active.png) right center no-repeat;
    font-weight: bold;
}

.left_supports.active .left_support_date {
    display: block;
}

.product {
    width: 100%;
    overflow: hidden;
    background: url(../images/probg.jpg) center no-repeat;
    background-size: cover;
    padding: 35px 0;
}

.products {
    max-width: 1400px;
    margin: 25px auto 0;
}

.product .maintitle {
    color: rgba(255, 255, 255, 0.1);
}

.product .titles,
.product .titlecon {
    color: #fff;
}

.left_pro {
    float: left;
    width: 19%;
    border: 1px solid #fff;
}

.left_pro a {
    display: block;
    text-align: center;
    background: #0090f0;
    font-size: 12px;
    color: #fff;
    line-height: 57px;
    border-bottom: 1px solid #aadafa;
}

.left_pro a:last-child {
    border-bottom: none;
}

.left_pro a.pnav {
    text-align: left;
    padding-left: 35px;
    font-size: 18px;
    background: #0090f0 url(../images/plist.png) left 10px center no-repeat;
}

.right_pro {
    float: right;
    width: 80.5%;
}

.proswiper a {
    display: block;
    background: #fff;
    padding: 8px;
}

.propic img {
    width: 100%;
}

.proname {
    margin-top: 10px;
    font-size: 17px;
    color: #000;
    height: 39px;
    line-height: 39px;
    background: url(../images/image_19.jpg) right center no-repeat;
}

.new {
    width: 100%;
    overflow: hidden;
    background: url(../images/newbg.jpg) center no-repeat;
    background-size: cover;
    padding: 40px 0;
}

.news {
    max-width: 1400px;
    margin: 30px auto 0;
}

.newitem {
    width: calc(100% / 3);
    background: #fff;
    border: 1px solid #e6edf6;
    height: 260px;
    padding: 40px 20px 0;
    float: left;
}

.newtype {
    text-align: center;
    width: 42px;
    height: 25px;
    line-height: 25px;
    border-radius: 5px;
    background: #e6edf6;
    font-size: 12px;
    color: #004691;
}

.newtitle {
    font-size: 14px;
    color: #1d1c1c;
    margin-top: 15px;
}

.newcon {
    font-size: 12px;
    color: #3d3d3d;
    line-height: 2;
    margin-top: 15px;
}

.newbot {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.newdate {
    float: left;
    font-size: 12px;
    color: #9a9a9a;
}

.newmore {
    float: right;
    font-size: 12px;
    color: #9a9a9a;
}

.newitem:hover {
    background: url(../images/new.png) center no-repeat;
    background-size: cover;
}

.newitem:hover .newtitle,
.newitem:hover .newcon,
.newitem:hover .newdate,
.newitem:hover .newmore {
    color: #fff;
}

.case {
    width: 100%;
    overflow: hidden;
    background: #f3f3f3;
    padding-top: 30px;
    padding-bottom: 180px;
}

.cases {
    max-width: 1400px;
    margin: 25px auto 0;
}

.cases a {
    float: left;
    margin-bottom: 15px;
    width: 19.3%;
    margin-right: 0.875%;
}

.cases a:nth-child(5n) {
    margin-right: 0;
}

.cases a img {
    width: 100%;
    border-radius: 10px;
}

.join {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 70px;
    margin-top: -145px;
    position: relative;
}

.joins {
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px #ddd;
    padding: 25px 20px 80px;
}

.joincontainer {
    width: 100%;
    overflow: hidden;
    margin-top: 55px;
}

.left_join {
    float: left;
    width: 48.2%;
}

.left_join img {
    width: 100%;
}

.right_join {
    float: right;
    width: 49.5%;
}

.joinnav {
    font-size: 0;
    text-align: center;
    background: #1061b9;
    height: 65px;
    line-height: 65px;
    border-radius: 40px;
    display: inline-block;
}

.joinnav span {
    padding: 0 15px;
    border-right: 2px solid #fff;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.joinnav span.active {
    font-weight: bold;
}

.joinnav span:last-child {
    border-right: none;
}

.joincontent {
    margin-top: 25px;
    font-size: 18px;
    color: #000;
    line-height: 2.5;
}

.joincontents {
    display: none;
    height: 405px;
    overflow: hidden;
}

.foot {
    width: 100%;
    overflow: hidden;
    background: url(../images/fbg.jpg) center no-repeat;
    background-size: cover;
}

.foots {
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
    padding: 70px 0 40px;
}

.copy {
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    line-height: 70px;
    font-size: 14px;
    color: #fff;
}

.copy a {
    font-size: 14px;
    color: #fff;
    margin-left: 8px;
}

.fnav {
    float: left;
    width: 50%;
}

.fnav a {
    display: block;
    width: 50%;
    float: left;
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.fcontact {
    float: left;
    width: 34.2%;
}

.fcontact p {
    font-size: 18px;
    color: #fff;
    line-height: 3;
}

.saoma {
    float: right;
    text-align: center;
    width: 13%;
    margin-top: 12%
}

.sm {
    margin-bottom: 30px;
}

.sm img {
    width: 100%;
    border-radius: 10px;
}

.sm p {
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
}

.inbanner img {
    width: 100%;
}

.bread {
    font-size: 0;
    text-align: center;
    border-bottom: 1px solid #b5b5b5;
    line-height: 88px;
}

.bread a {
    font-size: 24px;
    color: #000;
    padding: 0 30px;
}

.bread a:hover {
    font-weight: bold;
    color: #095da2;
}

.inabout {
    width: 100%;
    overflow: hidden;
    margin-top: 70px;
}

.inabouts {
    max-width: 1400px;
    margin: auto;
}

.inab_top {
    width: 100%;
    overflow: hidden;
}

.inab_bot {
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
    color: #363636;
    line-height: 2;
    text-indent: 2em;
}

.inab_top_left {
    float: left;
    width: 50.6%;
    font-size: 0;
}

.inab_top_left video {
    width: 100%;
}

.inab_top_right {
    float: right;
    width: 46%;
}

.inab_top_right .shuju {
    margin-top: 0;
}

.inab_top_right_con {
    font-size: 14px;
    color: #363636;
    line-height: 2;
    margin-top: 20px;
}

.workshop {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.workshops {
    max-width: 1400px;
    margin: 25px auto 0;
}

.workshops a {
    display: block;
    position: relative;
    margin-bottom: 10px;
    float: left;
    width: 32.8%;
    margin-right: 0.8%;
}

.workshops a:nth-child(3n) {
    margin-right: 0;
}

.workshops a img {
    width: 100%;
}

.workshops a p {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    font-size: 18px;
    color: #fff;
    height: 40px;
    line-height: 40px;
    background: rgba(18, 95, 179, 0.7);
    width: 100%;
}

.honor {
    width: 100%;
    overflow: hidden;
    margin-top: 25px;
    background: url(../images/honorbg.jpg) center no-repeat;
    padding: 90px 0;
    position: relative;
    background-size: cover;
}

.honors {
    max-width: 1400px;
    margin: 80px auto 0;
}

.honor .maintitle {
    color: rgba(255, 255, 255, 0.1);
}

.honor .titles,
.honor .titlecon {
    color: #fff;
}

#certify {
    position: relative;
    width: 100%;
    margin: 0 auto
}

#certify .swiper-slide {
    width: 433px;
}

#certify .swiper-slide img {
    width: 100%;
}

.honor .swiper-button-next {
    top: auto;
    bottom: 50px;
    right: 7%;
    width: 63px;
    height: 58px;
    background: url(../images/about_13.jpg) center no-repeat;
}

.honor .swiper-button-prev {
    top: auto;
    bottom: 50px;
    left: auto;
    right: calc(7% + 80px);
    width: 63px;
    height: 58px;
    background: url(../images/about_11.jpg) center no-repeat;
}

.equip {
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
}

.equips {
    max-width: 1400px;
    margin: 25px auto 0;
}

.equips a {
    display: block;
    margin-bottom: 10px;
    float: left;
    width: 32.8%;
    margin-right: 0.8%;
}

.equips a:nth-child(3n) {
    margin-right: 0;
}

.equips a img {
    width: 100%;
}

.equips a p {
    text-align: center;
    font-size: 14px;
    color: #000000;
    height: 55px;
    line-height: 55px;
    background: #eeeeee;
    width: 100%;
}

.intitle {
    text-align: center;
}

.inmaintitle {
    font-size: 40px;
    color: #282828;
    font-weight: bold;
}

.intitles {
    margin: 10px auto 0;
    width: 79px;
    height: 4px;
    background: #1365af;
}

.inbanner img {
    width: 100%;
}

.incontact {
    max-width: 1400px;
    margin: 40px auto;
}

.incontact_top {
    width: 100%;
    background: #e8e8e8;
    height: 235px;
    margin-top: 40px;
}

.incontact_top_fl {
    float: left;
    background: #1365af;
    width: 30%;
    height: 235px;
    padding: 60px 40px 0;
}

.incontact_top_fr {
    float: left;
    width: 70%;
    height: 235px;
    padding: 40px;
}

.incontact_top_fl_title {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
}

.incontact_top_fl_con {
    font-size: 28px;
    color: #fff;
    margin-top: 8px;
}

.incontact_top_fr {
    font-size: 18px;
    color: #000;
    line-height: 2.3;
}

.incontact_bot {
    width: 100%;
    overflow: hidden;
    padding: 25px 0;
}

.incontact_bots {
    float: left;
    width: 33%;
    margin-right: 0.5%;
    height: 170px;
    border: 1px solid #f1f1f1;
    line-height: 168px;
    text-align: center;
    font-size: 18px;
    color: #000;
    cursor: pointer;
}

.incontact_bots:last-child {
    margin-right: 0;
}

.incontact_bots img {
    margin-right: 15px;
    margin-top: -5px;
}

.incontact_bots:hover {
    box-shadow: 0 0 10px #ddd;
}

.feedback {
    width: 100%;
    overflow: hidden;
    margin-top: 25px;
}

.feedback_title {
    font-size: 36px;
    color: #000;
}

.feedback form div {
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
}

.feedback form div input {
    float: left;
    width: 33%;
    margin-right: 0.5%;
    border: 1px solid #f1f1f1;
    background: none;
    outline: none;
    padding-left: 15px;
    font-size: 23px;
    height: 85px;
}

.feedback form div input:last-child {
    margin-right: 0;
}

.feedback form textarea {
    width: 100%;
    border: 1px solid #f1f1f1;
    background: none;
    outline: none;
    padding-left: 15px;
    font-size: 23px;
    padding-top: 20px;
    margin-top: 30px;
    height: 585px;
}

.feedback form input[type=submit] {
    width: 550px;
    border: none;
    background: #1365af;
    outline: none;
    font-size: 23px;
    margin-top: 30px;
    height: 85px;
    color: #fff;
}

.innew {
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
}

.innews {
    max-width: 1400px;
    margin: auto;
}

.innewlists {
    width: 32%;
    background: #fff;
    border: 1px solid #e9e9e9;
    padding: 20px;
    -webkit-box-shadow: #e9e9e9 0px 0px 10px;
    -moz-box-shadow: #e9e9e9 0px 0px 10px;
    box-shadow: #e9e9e9 0px 0px 10px;
    margin-top: 30px;
    overflow: hidden;
    float: left;
    margin-right: 2%;
}

.innewlists:nth-child(3n) {
    margin-right: 0;
}

.innewpic {
    float: left;
    width: 24.5%;
    display: none;
}

.innewpic img {
    width: 100%;
}

.innewintro {
    float: right;
    width: 100%;
}

.innewtitle {
    font-size: 20.5px;
    color: #000000;
    font-weight: bold;
    margin-top: 15px;
}

.innewdate {
    font-size: 14.4px;
    color: #b1b1b1;
    margin-top: 8px;
}

.innewcon {
    font-size: 16.8px;
    color: #333333;
    margin-top: 15px;
    line-height: 28px;
    height: 112px;
    overflow: hidden;
}

.innewmore {
    margin-top: 50px;
    width: 115px;
    height: 36px;
    line-height: 34px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    text-align: center;
    font-size: 14.4px;
    color: #3f3f3f;
}

.news_title {
    margin: 5px 0;
    padding: 0;
    text-align: center;
    font-size: 16px;
}

.news_info {
    text-align: center;
    color: #999;
    border: 1px solid #e1e1e1;
    border-left: 0;
    border-right: 0;
    margin: 10px 0;
    padding: 5px 0;
}

#art_content {
    word-break: break-all;
    font-size: 13px;
    padding: 0 0 10px 0;
}

#art_content img {
    max-width: 920px;
}

.newshow {
    width: 100%;
    overflow: hidden;
}

.newshows {
    max-width: 1400px;
    margin: 30px auto 40px;
}

.inproduct {
    width: 100%;
    overflow: hidden;
    margin: 25px 0;
}

.inproducts {
    max-width: 1400px;
    margin: auto;
}

.inpro_fl {
    float: left;
    width: 17%;
}

.inpro_fr {
    float: right;
    width: 81%;
}

.inpro_fl_top {
    text-align: center;
    position: relative;
    line-height: 70px;
    background: #0077d2;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
}

.inpro_fl_top span {
    font-family: "Arial";
    font-weight: normal;
    font-size: 12px;
    color: #fff;
}

.inpro_fl_top::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 24px;
    background: #fff;
    top: 24px;
    left: 10px;
}

.inpro_fl_list {
    margin-top: 9px;
}

.inpro_fl_list a {
    display: block;
    margin-bottom: 3px;
    line-height: 43px;
    border: 1px solid #efefef;
    font-size: 14px;
    color: #000;
    padding-left: 40px;
    background: url(../images/product_06.jpg) left 22px center no-repeat;
}

.inpro_fl_contact {
    width: 100%;
    overflow: hidden;
    border: 1px solid #efefef;
    padding: 4px;
}

.inpro_fl_contact_pic {
    position: relative;
}

.inpro_fl_contact_pic img {
    width: 100%;
}

.inpro_fl_contact_pic p {
    position: absolute;
    font-family: "Arial";
    font-size: 18px;
    color: #0077d2;
    font-weight: bold;
    right: 15px;
    top: 70px;
}

.inpro_fr_top img {
    width: 100%;
}

.inpro_fr_list {
    width: 100%;
    overflow: hidden;
    margin-top: 25px;
}

.inpro_fr_list a {
    display: block;
    float: left;
    width: 24.4%;
    margin-bottom: 15px;
    margin-right: 0.8%;
}

.inpro_fr_list a:nth-child(4n) {
    margin-right: 0;
}

.inpro_fr_list a img {
    width: 100%;
}

.inpro_fr_list a p {
    margin-top: 3px;
    line-height: 46px;
    text-align: center;
    border: 1px solid #e5e5e5;
    font-size: 15px;
    color: #000;
}

.inproshow_top {
    width: 100%;
    overflow: hidden;
    margin-top: 25px;
}

.inproshow_top_fl {
    float: left;
    width: 44.2%;
}

.inproshow_top_fl img {
    width: 100%;
}

.inproshow_top_fr {
    float: right;
    width: 51%;
}

.inproshow_top_fr_con {
    line-height: 2;
}

.inproshow_top_fr_con p {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
}

.inproshow_top_fr_tel {
    font-size: 18.6px;
    color: #000;
    margin-top: 20px;
}

.inproshow_top_fr_tel span {
    font-family: "Arial";
    font-size: 34px;
    color: #0077d2;
    font-weight: bold;
}

.inproshow_bot {
    margin-top: 20px;
}

.inproshow_bot_title {
    padding-left: 15px;
    line-height: 50px;
    background: #eeeeee;
    font-size: 24px;
    color: #000;
    font-weight: bold;
}

.inproshow_bot_con {
    margin-top: 25px;
}

.inproshow_bot_con img {
    max-width: 100%;
}

.incase {
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
}

.incases {
    max-width: 1400px;
    margin: 30px auto 0;
}

.incases a {
    float: left;
    margin-bottom: 15px;
    width: 19.3%;
    margin-right: 0.875%;
}

.incases a:nth-child(5n) {
    margin-right: 0;
}

.incases a img {
    width: 100%;
    border-radius: 10px;
}

.innewnav {
    text-align: center;
    margin-top: 30px;
}

.innewnav a {
    font-size: 20px;
    color: #333;
    padding: 0 30px;
    border-right: 2px solid #333;
}

.innewnav a:last-child {
    border-right: none;
}

.zhaoshang1 {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.zhaoshang1s {
    max-width: 1400px;
    margin: 30px auto 0;
}

.zhaoshang1_right {
    float: right;
    width: 48.1%;
}

.zhaoshang1_right img {
    width: 100%;
}

.zhaoshang1_left {
    float: left;
    font-size: 18px;
    color: #3b3b3b;
    line-height: 2.5;
    width: 50.3%;
}

.zhaoshang2 {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    padding-top: 30px;
    background: #f5f5f5;
    padding-bottom: 60px;
}

.zhaoshang2s {
    max-width: 1400px;
    margin: 30px auto 0;
}

.zhaoshang2_item {
    float: left;
    background: #fff;
    width: 32%;
    margin-right: 2%;
    height: 430px;
    border-radius: 10px;
    padding: 50px 4% 0;
}

.zhaoshang2_item:nth-child(3n) {
    margin-right: 0;
}

.zhaoshang2_item_pic {
    text-align: center;
    height: 57px;
    line-height: 57px;
}

.zhaoshang2_item_title {
    font-weight: bold;
    font-size: 20px;
    color: #000;
    margin-top: 20px;
    text-align: center;
}

.zhaoshang2_item_con {
    font-size: 14px;
    color: #535353;
    line-height: 2.2;
    margin-top: 15px;
}

.zhaoshang3 {
    width: 100%;
    margin: 30px 0;
    overflow: hidden;
}

.zhaoshang3s {
    max-width: 1400px;
    margin: auto;
}

.zhaoshang3_item {
    width: 100%;
    margin-top: 30px;
    overflow: hidden;
    background: #007cd0;
}

.zhaoshang3_item_pic {
    float: left;
    width: 50.9%;
}

.zhaoshang3_item:nth-child(2) .zhaoshang3_item_pic {
    float: right;
}

.zhaoshang3_item_container {
    float: right;
    width: 49.1%;
    display: table;
    padding: 0 30px;
}

.zhaoshang3_item_containers {
    display: table-cell;
    vertical-align: middle;
}

.zhaoshang3_item:nth-child(2) .zhaoshang3_item_container {
    float: left;
}

.zhaoshang3_item_pic img {
    width: 100%;
}

.zhaoshang3_item_title {
    font-weight: bold;
    color: #fff;
    font-size: 22px;
}

.zhaoshang3_item_con {
    color: #fff;
    font-size: 14px;
    line-height: 2.5;
    margin-top: 15px;
}

.swiper-container.proshowswiper {
    margin-top: 15px;
}