﻿@charset "UTF-8";
@import "animate.min.css";
@import "bootstrap.css";
@import "TopSkin.css";
@import "MenuSkin.css";
html, body { width: 100%; min-width: 1366px; overflow-x: auto; }
  body{position:relative;}
 body .loginbg{ position:fixed;width:100%;height:100%;z-index:9999999;background:rgb(0,0,0,.2);}
 body .loginbg >img{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}
 body .loginbg>.listBox{width:25%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background:#fff;border-radius:5px;min-width:480px;}
 body .loginbg .outClose{position:absolute;right:-10%;display:inline-block;height:22px;width:22px;background:url(/Skin/img/listClose.png)no-repeat center/100%;cursor:pointer;}
  body .loginbg>.listBox .listImg{overflow:hidden;height:200px;width:100%;border-radius:5px 5px 0 0;background:url(/Skin/img/listImg.gif)no-repeat top/100%;}
  body .loginbg>.listBox .listForm{padding:26px 30px;}
  body .loginbg>.listBox .listForm p{font-size:14px;line-height:150%;}
  body .loginbg>.listBox .listForm p:first-child{font-size:30px;font-weight:600;font-family:"思源黑体 CN";line-height:120%;}
  body .loginbg>.listBox .listForm input{width:100%;height:50px;border-radius:5px;border:0;margin-top:10px;}
  body .loginbg>.listBox .listForm input.yourEmail{border:1px #333 solid;font-family:"思源黑体 CN";margin-top:20px;text-indent:1em;}
  body .loginbg>.listBox .listForm input.getList{border:1px #e6194d solid;background:#e6194d;color:#fff;}
  body .loginbg>.listBox .listForm input:last-child{background:#fff;font-family:"思源黑体 CN";height:unset;margin-top:30px;}
  p,span,a{font-family:Arial;}
.navbar-collapse a { text-transform: uppercase; }
h6, .h6 {                                        
    font-weight: inherit;
}

@media (min-width: 415px) {
    p {
        line-height: 180%;
    }
}
.Foot_menu {display:none;}
.ellipsis{
    white-space: nowrap;       
    overflow: hidden;
    text-overflow: ellipsis;
}

.Clear {
    clear: both;
}

.floatL {
    float: left;
}

.ConBig img {
    padding: 0 !important;
}   
@media(max-width:768px){.navbarTop .MenuSearch{display:none;}}
@media(min-width: 769px) {
    .footer .wmenu{display:none;}
    #hide{display:none !important;}
    .MenuC{display:none !important;}
}
@media (min-width: 768px) {
    .article {
        font-size: 16px;
    }

        /*.article img {
            padding: 10px;
        }*/

    .ConBig img {
        margin-top: 90px;
    }

}

@media(max-width: 992px) {
    html, body {
        font-size: 14px;
    }
}
@media(max-width: 767px) {
    html, body {
        font-size: 12px;
    }

    img {
        float: none !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .article img {
        /*padding-top: 5px;
        padding-bottom: 5px;*/
        display:inline-block;
    }

    .ConBig img {
        margin-top: .6rem;
    }
.nav {padding-top:0;}
    /*全屏展示*/
    h1,
    .h1 {
        font-size: 18px;
    }

    h2,
    .h2 {
        font-size: 18px;
    }

    h3,
    .h3 {
        font-size: 18px;
    }

    h4,
    .h4 {
        font-size: 16px;
    }

    h5,
    .h5 {
        font-size: 16px;
    }

    h6,
    .h6 {
        font-size: 14px;
    }

    p {
        margin: 4px 0px 0;
    }

    h1,
    .h1,
    h2,
    .h2,
    h3,
    .h3 {
        margin-top: 5px;
        margin-bottom: 10px;
    }

    h4,
    .h4,
    h5,
    .h5,
    h6,
    .h6 {
        margin-top: 5px;
        margin-bottom: 10px;
    }

    td {
        word-break: break-all;
        word-wrap: break-word;
    }
}

li {
    list-style: none;
}
/*去除点击链接时出现的虚线框*/
a:focus {
    outline: none !important;
}
/*针对火狐浏览器不出现红色框*/
input[required]:invalid, input:focus:invalid, textarea[required]:invalid, textarea:focus:invalid {
    box-shadow: none;
}
/*滚动过渡效果*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.hinge {
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

@-webkit-keyframes bounce {
    0%,100%,20%,50%,80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%,100%,20%,50%,80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

@-webkit-keyframes flash {
    0%,100%,50% {
        opacity: 1;
    }

    25%,75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%,100%,50% {
        opacity: 1;
    }

    25%,75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75);
    }

    40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25);
    }

    60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        -ms-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75);
    }

    40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        -ms-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25);
    }

    60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        -ms-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    0%,100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%,40%,60%,80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@keyframes shake {
    0%,100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%,40%,60%,80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    10%,20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }

    30%,50%,70%,90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }

    40%,60%,80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    10%,20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        -ms-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }

    30%,50%,70%,90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }

    40%,60%,80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        -ms-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        -ms-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        -ms-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        -ms-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        -ms-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;responsive
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        -ms-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        -ms-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        -ms-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%,60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%,60% {
        -webkit-transform: rotate(80deg);
        -ms-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        -ms-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    100% {
        -webkit-transform: translateY(700px);
        -ms-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        -ms-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}
/*回到顶部*/
@font-face {
    font-family: 'Arial';
    src: url('fonts/fontawesome-webfont.eot?v=4.5.0');
    src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'),url('fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'),url('fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'),url('fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'),url('fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1.4 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-angle-up:before {
    content: "\f106";
}

#float_top {
    position: fixed !important;
    position: absolute;
    right: 0;
    bottom: 0px;
    _top: expression(documentElement.clientHeight - getElementById("float_top").offsetHeight + documentElement.scrollTop + "px");
    background-color: #ffffff;
    box-shadow: .01rem .01732rem .12rem 0px rgba( 0, 0, 0, .14 ), .01rem 1.732px .03rem 0px rgba( 0, 0, 0, .12 );
    transition: all 1s ease;
    bottom: .15rem;
    right: .2rem;
    font-size: .26rem;
    display: none;
    position: fixed;
    text-decoration: none;
    width: .4rem;
    height: .4rem;
    line-height: .35rem;
    text-align: center;
    border-radius: 100%;
    z-index: 999;
}

    #float_top a {
        width: .4rem;
        height: .4rem;
    }

        #float_top a:hover {
            color: #ffffff;
        }
/*页脚*/ /*margin-top: 40px;*/
.footerMtop {
    margin-top: 40px !important;
}
.Projectdetails{margin-bottom:-40px !important;}
.footer {
    width: 100%;
    margin: 0 auto;
    color: #fff;
    clear: both;
}

    .footer a {
        color: #fff;
        font-family:Arial;
    }
    .footer dt{height:80px;}
    .footer dd{line-height:30px}

    /*.footer p {
        margin: 0;
    }*/
    .footer .fbody {
        padding: 8px 40px;
    }

@media(min-width:992px) {
    .footerMtop {
        margin-top: 40px !important;
    }
    .Projectdetails{margin-bottom:-40px !important;}
    .footer .fmenu {                                                                        
        height: auto;
        padding: 40px;
        background: #1f1f1f;
    }

        .footer .fmenu .menu-item {
            float: left;
            width: 25%;
        }
         .footer .fmenu .menu-item:last-child{width:50%;padding-left:40px;}

            .footer .fmenu .menu-item h3 {
                display: inline-block;
                color: #fff;
                margin: 0;
                padding-bottom: 30px;
                padding-right: 5px;
                font-size:24px;
                font-weight:500;
                font-family:Arial;

            }
            .footer .fmenu .menu-item span{display:block;height:1px;width:20px;background:#939393;}
            .footer .fmenu .menu-item ul {
                padding: 0;
                margin-top: 10px;
                color: #666;
                margin-bottom: 0px;
            }
                .footer .fmenu .menu-item ul li {
                    line-height: 26px;
                }

                    .footer .fmenu .menu-item ul li a {
                        color: #666;
                    }

        .footer .fmenu .service-item span {
            display: block;
            text-align: center;
            color: #666;
            line-height: 30px;
        }
}

@media(max-width: 768px) {
    .footerMtop {
        margin-top: 20px !important;
    }
    .Projectdetails{margin-bottom:-20px !important;}
    .footer {
        line-height: 180%;
    }

    .fbody {
        padding: 8px!important;
    }
/*底部导航栏*/
.Foot_menu{ position:fixed; z-index:1001; padding:0px; margin:0; bottom:0; width:100%; text-align:center; box-sizing:border-box; -webkit-box-sizing:border-box;display:block;}
.menu_foot{position:relative; float:left;}
.menu_foot:last-child{border-right:none;}

.menu_foot_0{display:block;line-height: 180%;padding:5px 0px 0;}
.menu_foot_0 img{ display:block; margin:0 auto; height:25px; }
.menu_foot_0 span{ display:block; width:100%; line-height:25px; }
}

@media(max-width:991px) {
}
@media(min-width:1220px ){
     .topMenu .navbar-collapse ul{display:flex;justify-content:space-between;}
     /*样式十四 样式十八 样式十九*/
     .topMenu .navbar-collapse ul.style14,.topMenu .navbar-collapse ul.style7,.topMenu .menuC ul.style7,.topMenu .navbar-collapse ul.style8,.topMenu .menuC ul.style8{justify-content:flex-start;}
}
@media(max-width: 767px) {
    .footerMtop {
        margin-top: 15px !important;
    }
      .Projectdetails{margin-bottom:-15px !important;}
    .footer {
        font-size: 16px;
        line-height: 180%; /*margin-top: 40px;*/
        /*margin-bottom:50px;*/
    }

    .HomeFooter {
        margin-top: 0px !important;
    }

    .footer {
        line-height: 180%;
        font-size: 12px;
        margin-top: 0px;
    }

    .fbody {
        padding: 5px!important
    }

    .footer .fmenu {
        height: auto;
        padding: 20px;
        background: #1f1f1f;
    }

        .footer .fmenu .menu-item {
            float: left;
            margin-right: 10px;
            width: 20%;
        }

            .footer .fmenu .menu-item h3 {
                color: #ccc;
                border-bottom: 1px solid #666;
                margin: 0;
                padding-bottom: 5px;
                max-width: 96px;
                font-size: 18px;
            }

            .footer .fmenu .menu-item ul {
                padding: 0;
                margin-top: 10px;
                color: #666;
                font-size: 14px;
                margin-bottom: 0px;
            }

                .footer .fmenu .menu-item ul li {
                    line-height: 30px;
                }

                    .footer .fmenu .menu-item ul li a {
                        color: #666;
                    }

        .footer .fmenu .service-item p {
            float: right;
            margin-left: 3%;
        }

        .footer .fmenu .service-item span {
            display: block;
            text-align: center;
            color: #666;
            line-height: 180%;
        }
}

@media(max-width: 414px) {
    .footerMtop {
        margin-top: 10px !important;
    }
         .Projectdetails{margin-bottom:-10px !important;}
    .article img {
        padding: 0px;
        margin: 0;
        display:inline-block;
        /*margin-bottom:5px;*/
    }

    .footer {
        font-size: 14px;
        line-height: 180%; /*margin-top: 40px;*/
    }

    .HomeFooter {
        margin-top: 0px !important;
    }

    .footer {
        line-height: 180%;
        font-size: 12px;
        margin-top: 0px;
    }

    .fbody {
        padding: 5px!important;
    }

    .footer .fmenu {
        height: auto;
        padding: 20px;
        background: #1f1f1f;
    }

        .footer .fmenu .menu-item {
            float: left;
            margin-right: 10px;
            width: 20%;
        }

            .footer .fmenu .menu-item h3 {
                color: #ccc;
                border-bottom: 1px solid #666;
                margin: 0;
                padding-bottom: 5px;
                max-width: 96px;
                font-size: 18px;
            }

            .footer .fmenu .menu-item ul {
                padding: 0;
                margin-top: 10px;
                color: #666;
                font-size: 12px;
                margin-bottom: 0px;
            }

                .footer .fmenu .menu-item ul li {
                    line-height: 30px;
                }

                    .footer .fmenu .menu-item ul li a {
                        color: #666;
                    }

        .footer .fmenu .service-item p {
            float: right;
            margin-left: 2%;
        }

        .footer .fmenu .service-item span {
            display: block;
            text-align: center;
            color: #666;
            line-height: 180%;
        }
}
/*公告*/
.Anntxt {
    float: left;
    font-weight: 600;
}

    .Anntxt img {
        display: inline-block;
    }

.Ann {
    overflow: hidden;
    float: left;
    width: 80%;
    margin-left:2%;
}

    .Ann ul {
        margin: 0;
        padding: 0;
        width:100%;
    }

    .Ann li {
        text-align: left;
        list-style-type: none;
        width:100%;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

.AnnMore {
    float: right;
}

.AnnShowType0, .AnnShowType0 .Ann li a, .AnnShowType0 .AnnMore a {
    color: #fff;
}

.AnnShowType1 {
    background: #eee;
}

    .AnnShowType1 .Ann li a, .AnnShowType1 .AnnMore a, .AnnShowType2 .Ann li a, .AnnShowType2 .AnnMore a {
        color: #666;
    }
 .topMenu .navbar-toggle span{color:#fff;}
 .topMenu .container>p.getAqupte{background:#cc9966;font-size:18px;color:#fff;display:inline-block;padding:14px 20px;border:2px solid #cc9966;line-height:100%;border-radius:5px;position:absolute;top:50%;transform:translateY(-50%);left:6%;cursor:pointer;}
  .topMenu p.getAqupte:hover{color:#fff;}
@media(min-width: 768px) {
/*分类列表*/
.navbar-toggle.neiDown{display:none;}
.ProductListCon .navbar-toggle.neiDown{display:inline-block;}
    /*.HomeAnn{ margin-bottom:40px;}*/
    .HomeAnnContainer {
        cursor:pointer;
        position:relative; 
        padding: 0 2%;
        height: 50px;
        line-height: 50px;
    }
    .MsgNotice { display:none;}

    .Anntxt, .Ann, .Ann li, .AnnMore {
        height: 50px;
        line-height: 50px;
    }

    .Anntxt {
        font-size: 18px;
    }

    .Ann li {
        font-size: 16px;
        margin-left: 20px;
    }
        .Anntxt i{
            display:inline-block;
            vertical-align:middle;
            width:30px;
            height:50px;
            background:url("data:image/svg+xml,%3Csvg class='icon' viewBox='0 0 1116 1024' xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cpath d='M603.245 4.84a46.528 46.528 0 0 0-51.646 6.98L272.428 256.837l-222.546-.977a46.947 46.947 0 0 0-34.198 14.936 52.298 52.298 0 0 0-14.377 36.152L.004 716.726a52.53 52.53 0 0 0 13.958 36.245 46.528 46.528 0 0 0 34.385 15.075h225.198l277.868 244.135a47.18 47.18 0 0 0 31.08 11.819 46.528 46.528 0 0 0 20.613-4.653 51.507 51.507 0 0 0 27.917-46.529V51.368A51.181 51.181 0 0 0 603.106 4.84M791.36 260.746a47.273 47.273 0 0 0-64.023 24.056 52.856 52.856 0 0 0 22.194 68.304 169.503 169.503 0 0 1 75.795 154.986c0 121.207-68.025 161.407-70.258 162.85a52.577 52.577 0 0 0-21.729 68.676 48.25 48.25 0 0 0 43.504 28.335 45.598 45.598 0 0 0 21.636-5.397c5.118-2.699 123.952-67.513 123.952-254.325A269.26 269.26 0 0 0 791.5 260.746M942.717 110.46a46.994 46.994 0 0 0-66.768 15.307 53.136 53.136 0 0 0 13.958 70.724c5.258 3.675 129.675 93.057 129.675 315.37S900.237 824.206 895.537 827.603a52.856 52.856 0 0 0-13.447 71.002 48.017 48.017 0 0 0 40.434 22.753 47.366 47.366 0 0 0 26.893-8.608c6.793-4.653 167.27-120.974 167.27-400.936S949.697 115.252 942.624 110.46' fill='%23fff'/%3E%3C/svg%3E") no-repeat center/70%;
            overflow: hidden;
        }
        .Anntxt .AnnTitle{
            display:inline-block;
            vertical-align:middle;
        }
    .AnnMore {
        font-size: 16px;
    }

    .topMenu .navbar-toggle span {
        font-size: 30px;
    }

    .glyphicon-volume-up {
        margin-right: 10px;
    }
}

@media(max-width: 767px) {
    .glyphicon-tower {
        margin-right: 5px;
        margin-top: 0px;
    }

    .glyphicon-volume-up {
        margin-right: 5px;
    }

    .HomeAnnContainer {
        position:relative; 
        overflow: hidden;
        margin: 0 2%;
    }
    .MsgNotice { display:none;}

    .Anntxt, .Ann, .Ann li, .AnnMore {
        height: 40px;
        line-height: 40px;
    }

    .Anntxt {
        font-size: 14px;
    }
    
    .Ann {
        width: 79%;
    }
        .Anntxt i{
            display:inline-block;
            vertical-align:middle;
            background:url("data:image/svg+xml,%3Csvg class='icon' viewBox='0 0 1116 1024' xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cpath d='M603.245 4.84a46.528 46.528 0 0 0-51.646 6.98L272.428 256.837l-222.546-.977a46.947 46.947 0 0 0-34.198 14.936 52.298 52.298 0 0 0-14.377 36.152L.004 716.726a52.53 52.53 0 0 0 13.958 36.245 46.528 46.528 0 0 0 34.385 15.075h225.198l277.868 244.135a47.18 47.18 0 0 0 31.08 11.819 46.528 46.528 0 0 0 20.613-4.653 51.507 51.507 0 0 0 27.917-46.529V51.368A51.181 51.181 0 0 0 603.106 4.84M791.36 260.746a47.273 47.273 0 0 0-64.023 24.056 52.856 52.856 0 0 0 22.194 68.304 169.503 169.503 0 0 1 75.795 154.986c0 121.207-68.025 161.407-70.258 162.85a52.577 52.577 0 0 0-21.729 68.676 48.25 48.25 0 0 0 43.504 28.335 45.598 45.598 0 0 0 21.636-5.397c5.118-2.699 123.952-67.513 123.952-254.325A269.26 269.26 0 0 0 791.5 260.746M942.717 110.46a46.994 46.994 0 0 0-66.768 15.307 53.136 53.136 0 0 0 13.958 70.724c5.258 3.675 129.675 93.057 129.675 315.37S900.237 824.206 895.537 827.603a52.856 52.856 0 0 0-13.447 71.002 48.017 48.017 0 0 0 40.434 22.753 47.366 47.366 0 0 0 26.893-8.608c6.793-4.653 167.27-120.974 167.27-400.936S949.697 115.252 942.624 110.46' fill='%23fff'/%3E%3C/svg%3E") no-repeat center/70%;
            width:25px;
            height:30px;
        }

    .AnnTitle {
        display: inline-block;
        vertical-align:middle;
        overflow: hidden;
        height: 40px;
        line-height: 40px;
        font-weight: 600;
    }

    .Ann li, .AnnMore {
        font-size: 14px;
    }

    .glyphicon {
        vertical-align:middle;
        font-size: 18px;
    }

    .Ann li {
        margin-left: 10px;
    }
}

@media(max-width: 414px) {
    .Ann {
        width: 72%;
    }
    .Ann li {
        margin-left: 5px;
    }

        .Anntxt, .Ann, .Ann li, .AnnMore {
            height: 30px;
            line-height: 30px;
            font-size: 16px;
        }

    .Anntxt {
        font-size: 14px;
    }

        .Anntxt i{
            display:inline-block;
            vertical-align:middle;
            background:url("data:image/svg+xml,%3Csvg class='icon' viewBox='0 0 1116 1024' xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cpath d='M603.245 4.84a46.528 46.528 0 0 0-51.646 6.98L272.428 256.837l-222.546-.977a46.947 46.947 0 0 0-34.198 14.936 52.298 52.298 0 0 0-14.377 36.152L.004 716.726a52.53 52.53 0 0 0 13.958 36.245 46.528 46.528 0 0 0 34.385 15.075h225.198l277.868 244.135a47.18 47.18 0 0 0 31.08 11.819 46.528 46.528 0 0 0 20.613-4.653 51.507 51.507 0 0 0 27.917-46.529V51.368A51.181 51.181 0 0 0 603.106 4.84M791.36 260.746a47.273 47.273 0 0 0-64.023 24.056 52.856 52.856 0 0 0 22.194 68.304 169.503 169.503 0 0 1 75.795 154.986c0 121.207-68.025 161.407-70.258 162.85a52.577 52.577 0 0 0-21.729 68.676 48.25 48.25 0 0 0 43.504 28.335 45.598 45.598 0 0 0 21.636-5.397c5.118-2.699 123.952-67.513 123.952-254.325A269.26 269.26 0 0 0 791.5 260.746M942.717 110.46a46.994 46.994 0 0 0-66.768 15.307 53.136 53.136 0 0 0 13.958 70.724c5.258 3.675 129.675 93.057 129.675 315.37S900.237 824.206 895.537 827.603a52.856 52.856 0 0 0-13.447 71.002 48.017 48.017 0 0 0 40.434 22.753 47.366 47.366 0 0 0 26.893-8.608c6.793-4.653 167.27-120.974 167.27-400.936S949.697 115.252 942.624 110.46' fill='%23fff'/%3E%3C/svg%3E") no-repeat center/70%;
            width:25px;
            height:30px;
        }

    .AnnTitle {
        display: inline-block;
        vertical-align:middle;
        overflow: hidden;
        height: 30px;
        line-height: 30px;
        font-weight: 600;
    }

    .Ann li, .AnnMore {
        font-size: 14px;
    }

    .glyphicon {
        top: 1px;
        margin-right: 1px;
    }

    .Ann li {
        margin-left: 5px;
    }
}
/********************************导航***********************************/
.Underline:nth-of-type(1) .UnderlineStyle:after {
    left: -80%;
    right: -80%;
}

.Underline:hover .UnderlineStyle:after {
    width: 60%;
}

.Underline:nth-of-type(1):hover .UnderlineStyle:after {
    width: 60%;
}


/*公共*/
@media(min-width: 769px) and (max-width: 1249px) {
    .navbar .container {
        width: 100%;
    }
}

@media(min-width: 1250px) {
    .topMenu .menuC .center > ul > li > a,.navSkin7 .menuC .center>ul > li > a {
        padding: 0px 20px;
    }
    /*.topMenu .navbar-collapse > ul.style14 > li > .padd {
        padding: 0px 20px;
        margin:0 5px;
    }*/                                                                                                                                                                                                          
}

/*♀ZJH♀*/
@media(max-width: 768px) {
    li.dropdown:hover > ul {
        display: block;
    }
    .topMenu .navbar-collapse > ul > li > a {
        box-sizing: border-box;
    }
    .topMenu .menuC .center > ul > li > a ,.navSkin7 .menuC .center>ul > li > a {
        padding: 0px 20px;
    }
}
    .navSkin20 .cn_en > li > a, .navSkin21 .cn_en > li > a {
        width: inherit !important;
        padding-left: 10px;
    }

    .cn_en a:hover {
        background: inherit !important;
    }

.ProductMargin {margin:0 30px}
.ProductPadding {padding:30px 15px 0px;}
@media(min-width: 991px) and (max-width: 1220px) {
    .ProductMargin {margin:0 10px!important;}                               
    .style21 > li, .style22 > li, .style8 > li {
        margin: 0 8px !important;
    }
    
    .ProductPadding {padding:10px 10px 0px;}
    .topMenu .menuC .center > ul > li > a,.navSkin7 .menuC .center>ul > li > a {
        padding: 0px 10px;
    }
   .topMenu .menuC .center > ul.style4 > li > a,.topMenu .menuC .center > ul.style3 > li > a{
        padding: 0px 8px;
    }
    .navSkin18 {
        padding: 0 20px !important;
    }
}
@media(max-width: 990px) {
    .ProductMargin {margin:0 5px!important;}
    .ProductPadding {padding:10px 5px 0px; }
}

@media(max-width: 768px) {
    .navSkin1 a.navbar-brand,.navSkin2 a.navbar-brand, .navSkin18 a.navbar-brand {
        display: flex !important;
        align-items: center !important;
    }

   body .navbar-collapse > ul > li > a {
        font-size: .3rem !important;
    }
    .navbar-collapse {
        padding-left: 0 !important;
    }
.ProductMargin {margin:0 5px!important;}
.ProductPadding {padding:10px 5px 0px; }
}

@media(max-width: 414px) {
.ProductMargin {margin:0 5px!important;}
.ProductPadding {padding:10px 5px 0px;}
}

.navbar-header h1{ margin:0px; padding:0px; }
/*♀ZJH♀*/

@media(min-width: 1250px) {
    .topMenu .navbar-collapse > ul > li > a {
        padding: 0px 10px;
        margin:0 2px;
    }
    .navSkin18 {
        padding: 0 40px !important;
    }
}

.topMenu .menuC .center > ul > li > a, .navSkin7 .menuC .center > ul > li > a { text-transform: uppercase; padding: 0px 30px; }


/*********版面一 二*********/
@media(min-width: 769px) {
        /*Logo*/
        .navSkin20 a.navbar-brand img, .style17 a.navbar-brand img, .navSkin7 a.navbar-brand img {
            vertical-align: middle;
            display: flex;
            align-items: center;
            max-width: 100%;
            max-height: 81px /*100%*/;
            display: inline-block;
            vertical-align: middle;
        }

    .navSkin20 .navbar-header, .style17 .navbar-header, .navSkin7 .navbar-header {
        width: 30%;
    }
}
/**********版面二*******/
@media(min-width: 769px) {
    .navSkin21 .container, .navSkin22 .container{
        width: 100%;
        padding: 0;
    }

    .navSkin21 .navbar-header, .navSkin22 .navbar-header{
        width: 100% !important;
        float: none;
        margin: 2.5px 0;
    }

    .navSkin21 .navbar-brand, .navSkin22 .navbar-brand{
        float: none;
        display: block;
        padding: 0;
        height: 80px;
    }

        .navSkin21 .navbar-brand img, .navSkin22 .navbar-brand img{
            margin: 0 auto;
        }

    .navSkin21 .navbar-brand img, .navSkin22 .navbar-brand img{
        padding-top: 4px;
    }
    /**第二版**样式一**/
    .style21 > li {
        display: inline-block;
        vertical-align: middle;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        box-shadow: 0 0 1px rgba(0, 0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -moz-osx-font-smoothing: grayscale;
        position: relative;
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
    }

        .style21 > li > a:before {
            content: "";
            position: absolute;
            z-index: -1;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            -webkit-transform: scaleY(0);
            transform: scaleY(0);
            -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0;
            -webkit-transition-property: transform;
            transition-property: transform;
            -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
            -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
        }

        /*.style3 > li a:hover:before {
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
        }*/
         .style21 > li:hover a:before{
             -webkit-transform: scaleY(1);
            transform: scaleY(1);
         }
}
@media(min-width: 992px) {
    .Foot_menu {display:none;}
}


@media(min-width: 1599px) {
    .topMenu .menuC .center > ul > li > a,.navSkin7 .menuC .center>ul > li > a {
        padding: 0px 30px;
    }
      .topMenu .navbar-collapse > ul.style14 > li > .padd {
        padding: 0px 40px!important;
        margin:0!important;
    }
    .navSkin18 {
        padding: 0 40px !important;
    }
}

/**********版面三***********/
@media(min-width: 769px) {
    .page3_h15 {
        background: #333;
        height: 15px;
    }
    /**版面三**样式二*/
}

@media(min-width: 769px) and (max-width: 991px) {
    .page3_h15 {
        background: #333;
        height: 10px;
    }
}
/********样式三**子菜单******/
@media(min-width: 769px) {
    .topMenu .dropdown-menu {
        padding: 0px;
    }

    .subMenu a {
        color: #fff !important;
        opacity: 0.9;
    }

        .subMenu a:hover {
            opacity: 1;
        }

    .subMenu li:last-child a {
        border-bottom: inherit;
    }

    .subMenu li:first-child a {
        border-top: inherit;
    }
    /*版面一&&二*/
    .navSkin7 .subMenu:after{
        top: -8px;
        left: 21px;
        position: absolute;
        width: 0;
        height: 0;
        border-right: 8px solid transparent;
        border-left: 8px solid transparent;
        content: '';
    }

    .navSkin7 .subMenu a{
        border-bottom: 1px solid #f2f2f2;
    }
    /**版面三***/
    .style9 .subMenu li {
        min-width: 100px;
    }

    .style9 .subMenu:after {
        top: -2px;
        left: 10px;
        position: absolute;
        width: 80px;
        content: '';
    }

    .style9 .subMenu {
        background: rgba(51, 51, 51,0.8);
        top: 74%;
    }

        .style9 .subMenu a {
            border-bottom: #666 solid 1px;
        }
}
    .nbSpace { margin-top:80px; }

                     
    .div_header_search {
        width: 100%;
        padding:0 2%;
        height: 40px;
        line-height: 40px;
    }

    .div_welcome, .div_search {
    }

    .div_welcome {
        float: left;
    }

    .div_search {
        float: right;
        display: inline-block;
        padding: 5px 0px;
        width:300px;
    }

        .div_search input, .div_search button {
            display:inline-block;
            margin:0px;
            padding:0px 5%;
            height: 30px;
            line-height: 30px;
            vertical-align:middle;
        }
        .div_search input {
            border:solid 1px #ccc;
            border-radius:30px 0px 0px 30px;
            border-right:none;
            width:76%;
        }
        .div_search button {                                                                                                                                                                               
            border:solid 1px #ccc;
            border-left:none;
            border-radius:0px 30px 30px 0px;
            width:12%;
            overflow:hidden;
            text-indent:-99px;
            background:url("data:image/svg+xml,%3Csvg class='icon' viewBox='0 0 1109 1024' xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath d='M406.277 812.546A403.794 403.794 0 0 1 .01 406.362 403.794 403.794 0 0 1 406.277.01a403.794 403.794 0 0 1 406.269 406.268 403.794 403.794 0 0 1-406.184 406.269zm0-696.485a287.4 287.4 0 0 0-290.13 290.216c0 162.559 127.657 290.216 290.13 290.216 162.559 0 290.216-127.657 290.216-290.13 0-162.56-127.657-290.302-290.13-290.302zm545.276 890.702L778.754 834.562a55.466 55.466 0 0 1 0-80.384c23.04-23.04 57.6-23.04 80.64 0l172.798 172.287a55.466 55.466 0 0 1 0 80.383 55.808 55.808 0 0 1-80.64 0z' fill='%23333'/%3E%3C/svg%3E")#ccc no-repeat center/60%;
        }
       .div_header_search .Countrybox,.Rightbox .Countrybox{display:inline-block;}
      .div_header_search .Country>span,.Rightbox .Country>span{width:20px;height:16px;background:url(/Skin/img/country.png);display:inline-block;vertical-align:middle;}
      .div_header_search .Country>font,.Rightbox .Country>font{vertical-align:middle;}
      .div_header_search .Enlink>span,.Rightbox .Enlink>span{background-position:right;margin-left:1em;}
      .div_header_search > .navbar-brand .IsWapLogo{display:none;}
      /*顶部样式一*/
      .Topstyle1 .servicenum,.Topstyle1 .wapcode,.Topstyle1 .navbar-brand,.Topstyle1 .Rightbox>span,.Topstyle1 .Countrybox{display:none;}
     /*样式二 三*/
     .Topstyle2 .div_welcome,.Topstyle2 .div_search,.Topstyle3 .div_welcome,.Topstyle3 .div_search,.Topstyle4 .div_welcome,.Topstyle4 .wapcode,.Topstyle2 .Rightbox,.Topstyle3 .Rightbox>span,.Topstyle3 .Countrybox{display:none;}
     .div_header_search.Topstyle2,.div_header_search.Topstyle3,.div_header_search.Topstyle4{height:95px;position:relative;}
     .div_header_search.Topstyle2>a{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);}

     /*样式三 四*/ 
     .Topstyle4 .Rightbox>span{display:none;}                             
     .div_header_search.Topstyle3>a,.div_header_search.Topstyle3>div,.div_header_search.Topstyle4>a,.div_header_search.Topstyle4>div{position:absolute;top:50%;transform:translateY(-50%);}
     .div_header_search.Topstyle3>div,.div_header_search.Topstyle4>div{right:2%;}
     .div_header_search.Topstyle3>div>img:first-child{margin-right:25px;}

      /*样式四*/
      .div_header_search.Topstyle4>div>img:first-child{vertical-align:middle;}
      .Topstyle4 .Countrybox{height:30px;line-height:30px;}
      .Topstyle4 .div_search{text-align:right;width:200px;vertical-align:middle;}
      .Topstyle4 .div_search input,.Topstyle5 .div_search input{border-radius:5px 0 0 5px;}
      .Topstyle4 .div_search button,.Topstyle5 .div_search button{border-radius:0 5px 5px 0;width:15%;background:url(/Skin/img/search1.png)no-repeat center/60%;}
      /*样式五*/
      .Topstyle5 .div_search{display:grid;grid-template-columns:1fr 1fr;width:unset;padding:0;}
      .Topstyle5 .div_search .Countrybox{text-align:center;}
      .Topstyle5 .div_search .searchbox{padding:5px 0;}
      .Topstyle5 .servicenum,.Topstyle5 .wapcode,.Topstyle5 .navbar-brand{display:none;}
      .Topstyle5 .Rightbox,.Topstyle6 .Rightbox{float:right;}
      /*样式六*/
      .Topstyle6 .div_search{padding:0;width:unset;margin-left:25px;}
      .Topstyle6 .servicenum,.Topstyle6 .wapcode,.Topstyle6 .navbar-brand,.Topstyle6 .div_search .searchbox{display:none;}
      /*样式七*/
      .Topstyle7{height:76px;}
      .Topstyle7 .div_welcome,.Topstyle7 .Rightbox>span,.Topstyle7 .wapcode,.Topstyle7 .div_search .searchbox{display:none;}
      .Topstyle7 .servicenum{max-height:36px;}
      .Topstyle7 .div_search{padding:0;width:unset;text-align:right;}
      .Topstyle7 .div_header_search{height:38px;line-height:38px;}
      .Topstyle7 .Rightbox{display:grid;float:right;}
      


@media(max-width: 840px) {
                 .div_header_search .div_welcome{
            display:none;
        }
}

    @media(max-width: 768px) {
        .div_header_search .Rightbox{float:unset;text-align:center;}
        .div_header_search .div_welcome,.div_header_search .Rightbox>span{
            display:none;
        }
        .div_header_search .div_search{
            width:100%;
        }
        .div_header_search .div_search input{
            width:90%;
        }
        .div_header_search .div_search button{
            width:7%;
        }
        .div_header_search > .navbar-brand .IsWapLogo{display:block;}
        .div_header_search > .navbar-brand .IsPCLogo{display:none;}
        /*样式三*/
        .Topstyle3 .Rightbox{display:none;}
        /*样式三 四*/
        .div_header_search.Topstyle2, .div_header_search.Topstyle3, .div_header_search.Topstyle4{height:60px;}
        .div_header_search >.navbar-brand{position:unset;text-align:center;}
        .div_header_search >.navbar-brand img,.div_header_search >.navbar-brand{height:100%;}
        .div_header_search.Topstyle3>a, .div_header_search.Topstyle3>div, .div_header_search.Topstyle4>a, .div_header_search.Topstyle4>div{left:50%;transform:translate(-50%,-50%);}
        /*样式四*/
        .Topstyle4 .servicenum,.Topstyle4 .div_search{display:none;}
        /*样式五*/
        .Topstyle5 .div_search{grid-template-columns:1fr 0;}
        .Topstyle5 .Countrybox{display:none;}
    }
    @media(max-width: 768px) {
        .div_header_search .div_search input{
            width:87%;
        }
        .div_header_search .div_search button{
            width:10%;
        }
    }


@media (max-width:768px) {
     .dropdown:hover > .dropdown-menu {
    display:none;
    }
     .dropdown.chosed > .dropdown-menu {
    display:block;
    }
    .navbar-collapse {
        display: block;
        visibility: hidden;
        padding-right: 15px;
        padding-left: 15px;
        overflow-x: visible;
        width: 3.3rem;
        position: absolute;
        z-index: 999;
        right: .1rem;
        border-radius: .1rem;
        -webkit-border-radius: .1rem;
        -moz-border-radius: .1rem;
        -ms-border-radius: .1rem;
        top: .65rem;
        border: 1px solid #ccc;
        border: 1px solid rgba(0, 0, 0, .15);
        );
        box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
        height: auto;
        cursor: pointer;
    }

    .demo {
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 .12rem .12rem .12rem;
        border-color: transparent transparent rgba(0,0,0,0.15) transparent;
        right: .15rem;
        top: -.12rem;
        cursor: pointer;
    }

        .demo::before {
            position: absolute;
            content: '';
            top: .01rem;
            left: -.1rem;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 .1rem .12rem .1rem;
            border-color: transparent transparent #fff transparent;
        }

    .navbar-collapse {
        background: #fff;
    }

    .navbar-nav {
        margin: 0;
        width: 100% !important;
    }

    .navbar-collapse ul {
        margin: 0;
        width: 100% !important;
        cursor: pointer;
    }

        .navbar-collapse ul li {
            position: relative;
            display: block;
            float: none;
            cursor: pointer;
            height: .8rem !important;
        }
            .navbar-collapse ul li a {
                padding: auto 20px;
                text-align: center;
                color: #333;
                font-size: 0.3rem;
                height: .8rem;
                line-height: .8rem;
                /*border-bottom: solid 1px #eee;*/
                font-weight: 400;
                cursor: pointer;
                position: relative;
                display: block;
                width:80%;
                margin:auto;
            }

                .navbar-collapse ul li a:hover {
                    color: #c00;
                    border-top: none;
                    height: 0.8rem;
                    line-height: 0.8rem;
                }

    .navbar-collapse.in {
        visibility: visible;
    }

    .Trademark_table table.Wap_table {
        display: inline-table;
    }

    .topMenu a.navbar-brand img {
        max-height: 60px;
        max-width: 100%;
    }

    .topMenu .navbar-toggle .glyphicon {
        font-size: 30px;
    }

    .topMenu .navbar-toggle {
        padding: 0;
        background-color: transparent !important;
        border-color: transparent !important;
        line-height: 60px;
        height: 60px;
    }

    /*.banner a {
        height: 375px;
    }*/

    .topMenu .navbar-collapse ul li a, .topMenu .nav > li > .active {
        color: #333 !important;
        border-bottom: solid 1px #eee;
    }
    .topMenu .navbar-collapse ul li:last-child a {
        border: none;
    }
}

@media(min-width: 700px) and (max-width: 767px) {

    .topMenu .nav > li > a {
        color: #333 !important;
    }

    .navbar-collapse {
        top: .55rem;
    }
}

@media(min-width: 600px) and (max-width: 699px) {
    .navbar-collapse {
        top: .6rem;
    }
}

@media (max-width:470px) {
    .navbar-collapse {
        top: .75rem;
    }
}
/*.navSkin10 .cn_en, .navSkin18 .cn_en{float:right;}*/
/*********版面一*********/
 .navbarTop .menuC{transform:translateY(-75px);}
@media(min-width: 769px) {
    #MenuCol { padding:0 2%;position:relative;}
    .navSkin1,.navSkin2, .navSkin18,.navSkin3,.navSkin4{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }

        .navSkin1.ftop,.navSkin2.ftop, .navSkin18.ftop,.navSkin3.ftop, .navSkin4.ftop {
            position: fixed;
            left: 0;
            top: 0;
            right: 0;
            transition: all 0s ease;
            z-index: 9999;
            padding-bottom:1%;
        }

    .navSkin1 a.navbar-brand,.navSkin2 a.navbar-brand {
        width: 100%;
        height: 75px;
        overflow: hidden;
        vertical-align: middle;
        display: table-cell;
        line-height: 75px;
        float:none !important;
    }
    
    .topMenu .menuC .center > ul > li > a ,.navSkin7 .menuC .center>ul > li > a{
        padding: 0px 12px;word-spacing:.1em;
    }
   
    .navSkin18 a.navbar-brand {
        float:none !important;
    }
        /*Logo*/
        .navSkin1 a.navbar-brand img,.navSkin2 a.navbar-brand img{
            display: inline-block;
            line-height: 75px;
            max-width: 100%;
            max-height: 75px;
            vertical-align: middle;
            margin-top: expression(100-this.height/2) !important;
        }
        .articleTop{max-height:75px;background:#000;height:75px;}
    /* max-height可限制图片的最大高度 */

    .style10 {
        float: left;
    }

    .navSkin1 .cn_en li a,.navSkin2 .cn_en li a {
        display: inline-block;
    }
}

@media(min-width: 769px) and (max-width: 991px) {
    .nbSpace { margin-top:60px; }
    
    .topMenu .menuC .center > ul > li > a {
        padding: 0px 6px;
    }
    .navSkin7 .menuC .center>ul > li > a,.navSkin8 .menuC .center>ul > li > a{padding:0;}                   
    .topMenu .menuC .center > ul.style4 > li > a,.topMenu .menuC .center > ul.style3 > li > a{padding:0;}
     .topMenu .navbar-collapse ul.style13{width:65%;}

}

@media(max-width:768px) {
    .navSkin1.topMenu .navbar-header
    {
        height:1.1rem;
    }
    .navbar-collapse {
        padding: 0;
    }

    .navbar-nav {
        margin: 0;
    }
    .nbSpace { margin-top:0px; }
}

@media(max-width:414px) {
    .banner a {
        /*height: 180px !important;*/
    }
    
    .nbSpace { margin-top:0px; }

    .topMenu a.navbar-brand img {
        max-height: 45px;
        max-width: 100%;
    }
    .topMenu .navbar-toggle .glyphicon {
        font-size: 30px;
    }

    .topMenu .navbar-toggle {
        padding: 0;
        background-color: transparent !important;
        border-color: transparent !important;
        line-height: 45px;
        height: 45px;
    }

    .topMenu .nav > li > a {
        color: #333 !important;
    }
}
/**********版面十一*******/
@media(min-width:769px) {
    /*.navSkin18{line-height:unset;}*/
    .style18 {
        float: right;
        height: 50px;
    }

    .navSkin18 .navbar-brand > img {
        display: inline-block;
        max-height: 90px;
    }

    /*.style18 li a:hover, .navSkin18 .style18 li a:hover::before, .navSkin18 .style18 li a:hover::after {
        color: #c00;
    }*/

    .style18 li {
        position: relative;
    }
        /*.style18, .style18 li, .style18 li a{line-height:unset;}*/
        /*.style18 li a:hover::before, .navSkin18 .style18 li a:hover::after {
            width: 22px;
            border-color: #e2001c;
        }*/

        /*.style18 li a.active::before, .navSkin18 .style18 li a.active::after {
            width: 22px;
            border-color: #e2001c;
        }*/

        .style18 li a::before {
            display: inline-block;
            content: "";
            border-top: 1px solid #fff;
            position: absolute;
            width: 0px;
            top: 28%;
            left: 60%;
            z-index: -2;
            -webkit-transition: all .5s cubic-bezier(.19, 1, .22, 1);
            -o-transition: all .5s cubic-bezier(.19, 1, .22, 1);
            transition: all .5s cubic-bezier(.19, 1, .22, 1);
            -webkit-transform: translateX(-50%) rotate(-50deg);
            -ms-transform: translateX(-50%) rotate(-50deg);
            -o-transform: translateX(-50%) rotate(-50deg);
            transform: translateX(-50%) rotate(-50deg);
            -webkit-transform: translate3d(-50%, 0, 0) rotate(-50deg);
            transform: translate3d(-50%, 0, 0) rotate(-50deg);
        }

        .style18 li a::after {
            display: inline-block;
            content: "";
            border-top: 1px solid #fff;
            position: absolute;
            left: 35%;
            bottom: 28%;
            width: 0px;
            z-index: -2;
            -webkit-transition: all .5s cubic-bezier(.19, 1, .22, 1);
            -o-transition: all .5s cubic-bezier(.19, 1, .22, 1);
            transition: all .5s cubic-bezier(.19, 1, .22, 1);
            -webkit-transform: translateX(-50%) rotate(-50deg);
            -ms-transform: translateX(-50%) rotate(-50deg);
            -o-transform: translateX(-50%) rotate(-50deg);
            transform: translateX(-50%) rotate(-50deg);
            -webkit-transform: translate3d(-50%, 0, 0) rotate(-50deg);
            transform: translate3d(-50%, 0, 0) rotate(-50deg);
        }

    .navSkin18 a.navbar-brand {
        display: inline-block;
        height: 90px;
        line-height: 90px;
    }
}
    /****版面二十二****/
/*****************************************************导航菜单***********************************************/
     .Waplogo{display:none;}
     .menuC>.center>ul>li.menuClos{display:inline-block;height:50px;width:50px;position:absolute;top:30px;right:5%;background:url(/Skin/img/mclose.png)no-repeat center/100%;border:0;cursor:pointer;}
.menuC>.center>ul>li{color: #fff;vertical-align: bottom;text-align: left;width:60%;margin:auto;border-bottom:1px solid #ddd;}
.menuC>.center>ul>li .imgTriangle{ display:none; position:absolute; top:42px;right:70px;z-index:99;margin:0 auto;width: 20px; height: 20px;
    background: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path fill="#00A5E0" d="M145.659,68.949c-5.101-5.208-13.372-5.208-18.473,0L99.479,97.233 L71.772,68.949c-5.1-5.208-13.371-5.208-18.473,0c-5.099,5.208-5.099,13.648,0,18.857l46.18,47.14l46.181-47.14 C150.759,82.598,150.759,74.157,145.659,68.949z"/></svg>') no-repeat center;
    background-size: 100%;}
.menuC>.center>ul>li>a{display: inline-block;height:80px;line-height:80px;font-size:24px;text-align:left;font-family:Arial;font-weight:600;}
.menuC>.center>ul>li:last-child{border-bottom:0;}
.menuC>.center>ul>li>p{width:100%;color:#000;border:1px solid #000;text-align:center;padding:20px;font-size:24px;font-weight:600;margin-top:50px;word-spacing:.1em;}
.menuC>.center>ul>li>p:hover{border:1px solid #cc9966;background:#cc9966;}
.menuC>.center>ul>li.ChildM>span{height:16px;width:16px;display:inline-block;background:url(/Skin/img/jia-.png)no-repeat center/100%;position:absolute;top:30px;right:0%;}
.menuC>.center>ul>li.ChildM.active>span{background:url(/Skin/img/jian.png)no-repeat center/100%;}
.menuC>.center>ul>li.ChildM>span:hover{cursor:pointer;}
@media(min-width:768px){
    .topMenu{z-index:99;}
.navbarTop .div_search{display:none;}
.menuC{visibility:visible;display:none;}
.menuC>.center>ul{line-height: 20px;word-spacing: -6px;width:500px;position:absolute;z-index:99;left:0;background:#fff;padding:168px 0;overflow:auto;}
 
.menuC>.center>ul::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}
 
.menuC>.center>ul::-webkit-scrollbar-track,
.menuC>.center>ul::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 5px solid transparent;
}
 
.menuC>.center>ul::-webkit-scrollbar-track {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2) inset;
}
 
.menuC>.center>ul::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  box-shadow: 0 0 0 5px #cc9966 inset;
}
 
.menuC>.center>ul::-webkit-scrollbar-corner {
  background: transparent;
}
.menuC>.center>ul>li>.active{color:#fff;height:38px;}
.menuC>.center>ul:hover>li>.active{color: #fff;}
.menuC > .center > ul > li:hover > a{background-size:100%;background-repeat:no-repeat;}
.menuC>.center>ul>li.active>ul{display:block;}
.menuC>.center>ul>li:hover .imgTriangle{ display:block;}
.menuC ul ul{display:none;z-index: 1000;top:100%;padding: 0 0 0px;width:100%;margin-top:-15px;}
.menuC .center>ul>li>ul>li{text-align: left;font-size: 14px;line-height: 80px;height: 80px;background:#fff;position:relative;}
.menuC .center>ul>li>ul>li:last-child{border:0;}
.menuC .center>ul>li>ul ul{margin-left:100%;background:#fff;top:0;}  /*二级以下菜单样式*/
.menuC .center>ul>li>ul ul li{height:45px;line-height:45px;position:relative;}
.menuC .center>ul>li>ul>li ul{top:0;margin-top:0;}
.menuC .center>ul>li>ul>li:hover>ul,.menuC .center>ul>li>ul>li>ul>li:hover>ul,.menuC .center>ul>li>ul>li>ul>li>ul>li:hover>ul{display:block;}
.liIco { height:15px!important; background:transparent!important; overflow:hidden; }
.lbico { display:block; margin:0 auto; width:15px; height:15px;margin-top:3px; background:url("data:image/svg+xml,%3Csvg class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M74.928 877.53h874.144l-437.07-730.49L74.928 877.53zm0 0' fill='%23fff'/%3E%3C/svg%3E")center center / 100% no-repeat; }
    .menuC ul ul > li > a { height: 100%; color: #000; display: inline-block; width: 100%; text-transform: uppercase; position: relative; display: inline-block; text-align: left; overflow: hidden; font-family: Arial; font-size: 24px; color: #666; word-spacing: 0em; }
.menuC ul ul>li>.active{color:#fff;}
.menuC ul ul>li>a:hover{color:#666;}
.Head button{display:none;}
#hide{display:none;position: absolute;top: 0;z-index: 999;background-color: rgb(0, 0, 0);height: 100%;width: 100%;opacity: 0.5;}
.MenuC{display:none;position: absolute;top:.6rem;width: 100%;height: 100%;z-index: 1000;}
/*样式六*/
.menuC>.center>ul.style6,.menuC>.center>ul.style10{transform:translateY(55%);}
/*****************************************************下拉菜单(通用全栏) 样式二十***********************************/
.menuC > .center > ul.style20  > li > a,.menuC > .center > ul.style17 > li > a{height:80px;line-height:80px;}
.menuC > .center > ul.style20 > li > a.active，.menuC>.center>ul.style17>li>.active{height:80px;}
.menuC>.center>ul.style20,.menuC>.center>ul.style17{transform:translateY(0);}
.menuC ul.style20 ul,.menuC ul.style17 ul{top:100%;margin-top:-15px;}
.menuC .center>ul.style20>li>ul>li>ul,.menuC .center>ul.style2>li>ul>li>ul{margin-top:0;}
                                 /*****************************样式十七***********************************/
.menuC>.center>ul.style17>li>.active,.menuC>.center>ul.style17:hover>li>.active,.menuC > .center > ul.style17 > li:hover > a{background:unset !important;}
/************************************************下拉菜单（通用换行） 样式二十一 二十二**************************************************************/
.navSkin21 #MenuCol,.navSkin22 #MenuCol{padding:0 2%;}
.navSkin21 #MenuCol .menuC,.navSkin22 #MenuCol .menuC{border-top:1px #999 solid;}
.menuC > .center > ul.style21,.menuC > .center > ul.style22{margin:auto;float:unset;}
.menuC>.center>ul.style21,.menuC>.center>ul.style22{transform:translateY(0);}
.menuC>.center>ul.style22>li>.active,.menuC>.center>ul.style22:hover>li>.active,.menuC > .center > ul.style22 > li:hover > a{background:unset !important;}
.navSkin21 .menuC>.center>ul>li,.navSkin22 .menuC>.center>ul>li{width:10%;height:50px;line-height:50px;}
.navSkin21 .menuC>.center>ul,.navSkin22 .menuC>.center>ul{width:80%;}
.topMenu .menuC .center > ul.style21 > li > a,.topMenu .menuC .center > ul.style22 > li > a{padding:0;height:50px;}
/*样式十*/
.menuC>.center>ul.style10,.menuC>.center>ul.style19{float:right;}

/************************************************下拉菜单 样式十一 十二**************************************************************/
.menuC>.center>ul.style18>li>.active,.menuC>.center>ul.style18:hover>li>.active,.menuC > .center > ul.style18 > li:hover > a{background:unset !important;} 
.navSkin11 .menuC>.center,.navSkin12 .menuC>.center{position:relative;}
.menuC>.center>ul.style11,.menuC>.center>ul.style12{transform:translateY(0);justify-content:unset;width:unset;position:absolute;right:2%;bottom:0;}
.menuC>.center>ul.style11>li{height:58px;margin-left:10px;}
.menuC>.center>ul.style12>li>a{height:50px;line-height:50px;}
.menuC>.center>ul.style11 li a,.menuC>.center>ul.style12 li a{border-radius:3px;}
.navSkin11 .menuC .center,.navSkin12 .menuC .center{height:120px;} 
.navSkin11 .Rightbox,.navSkin12 .Rightbox{display:grid;float:right;margin-right:2%;}
.navSkin11 .Rightbox .Countrybox,.navSkin12 .Rightbox .Countrybox{text-align:right;height:30px;line-height:30px;}
.navSkin11 .navbar-header,.navSkin12 .navbar-header{position:absolute;left:2%;top:30%;transform:translateY(-50%);}
.navSkin11 .CMenuBG,.navSkin12 .CMenuBG{height:60px;}
.navSkin11 .menuC .center>ul>li>ul,.navSkin12 .menuC .center>ul>li>ul{white-space:nowrap;}
.navSkin11 .menuC .center>ul>li ul>li,.navSkin12 .menuC .center>ul>li ul>li{display:inline-block;overflow:hidden;line-height:60px;margin:0 17px;}
.navSkin11 .menuC .center>ul>li ul>li:hover,.navSkin12 .menuC .center>ul>li ul>li:hover{font-weight:700;}
.navSkin11 .menuC .center>ul>li ul>li a,.navSkin12 .menuC .center>ul>li ul>li a{font-size:16px;}
.navSkin11 .menuC .center>ul>li ul>li:first-child,.navSkin12 .menuC .center>ul>li ul>li:first-child{display:block;line-height:15px;}
.navSkin11 .menuC .center>ul>li ul>li .lbico,.navSkin12 .menuC .center>ul>li ul>li .lbico{background:none;}
.navSkin11 .menuC ul ul,.navSkin12 .menuC ul ul{width:unset;left:50%;transform:translateX(-50%);}
.navSkin11 #MenuCol,.navSkin12 #MenuCol{padding:0 !important;}
.navSkin11 .menuC>.center>ul>li.ChildM >span,.navSkin12 .menuC>.center>ul>li.ChildM >span{display:block;height:15px;width:15px;position:absolute;left:50%;bottom:-2px;transform:translateX(-50%);}



/*****样式十三*******/
 .navSkin13 #MenuCol .navbar-brand > img{height:90px;}
 .navSkin13 .floatL{float:right;}
 .menuC>.center>ul.style13 >li{width:9%;}
.menuC>.center>ul.style13{transform:translateY(60%);width:80%;}
 .topMenu .menuC>.center>ul.style13>li>a{height:40px;line-height:40px;border-radius:3px;}

/************************************************菜单 样式三 样式五**************************************************************/
.style5.floatL{float:right;}
.navSkin5 #MenuCol .navbar-brand > img{height:75px;}
.navSkin3 #MenuCol .navbar-brand > img,.navSkin4 #MenuCol .navbar-brand > img{height:90px;}
.topMenu .menuC>.center>ul.style3>li>a,center>ul.style3>li>a.active{height:35px;line-height:35px;}
/*通用悬浮栏 三 四*/
.navSkin3 #MenuCol,.navSkin4 #MenuCol{padding:1.5% 2%;}
.topMenu .menuC>.center>ul.style3>li>a,center>ul.style3>li>a.active{border-radius:3px;}
.navSkin3 .menuC>.center>ul{transform:translateY(80%);padding-right:2%;width:65%;}
.menuC>.center>ul.style3>li{width:unset;}   
/*.navSkin3 .menuC ul ul{top:20px;}*/
/*.navSkin3 .container > .menuC,.navSkin4 .container > .menuC{height:90px;}*/

.topMenu .menuC>.center>ul.style4>li>a{height:90px;line-height:90px;}
.menuC>.center>ul.style4>li>.active,.menuC>.center>ul.style4:hover>li>.active,.menuC > .center > ul.style4 > li:hover > a{background:unset !important;}
.navSkin4 .floatL{float:right;}
.menuC>.center>ul.style4{transform:translateY(0);padding-right:2%;width:65%;}
.navSkin4 .menuC ul ul{top:100%;margin-top:-15px;}
.menuC .center > ul > li > ul > li > ul {margin-top:0;}

/********************菜单通用无logo样式*******  @if (HomeNavPage == "14" || HomeNavPage == "15" || HomeNavPage == "16")**/
/*.navSkin14 .PClogo,.navSkin15 .PClogo,.navSkin16 .PClogo,.navSkin9 .PClogo,.navSkin10 .PClogo{display:none;}*/
.navSkin14 .menuC>.center>ul,.navSkin15 .menuC>.center>ul,.navSkin16 .menuC>.center>ul,.navSkin9 .menuC>.center>ul,.navSkin7 .menuC>.center>ul,.navSkin10 .menuC>.center>ul{transform:translateY(0);width:100%;}
        /***************通用搜索*********************/
    .navSkin14 #MenuCol,.navSkin15 #MenuCol{padding:0 1%;}
    .navSkin16 #MenuCol{padding:0 1% 0 2%;}
    .navSkin14 .menuC,.navSkin15 .menuC,.navSkin16 .menuC,.navSkin14 .menuC{width:80%;display:inline-block !important;}     
    .div_search.MenuSearch{width:200px;transform:translateY(45%);padding:0;}
    .div_search.MenuSearch input{border-radius:3px 0 0 3px;border:none;}
    .div_search.MenuSearch button{border-radius:0 3px 3px 0;background-color:#fff;width:15%;border:none;}

.div_search.MenuSearch input::-webkit-input-placeholder,.div_header_search .div_search input::-webkit-input-placeholder{font-size:12px;color:#ccc;}
.div_search.MenuSearch input::-moz-placeholder,.div_header_search .div_search input::-moz-placeholder{/* Mozilla Firefox 19+ */font-size:12px;color:#ccc;}
.div_search.MenuSearch input:-moz-placeholder,.div_header_search .div_search input:-moz-placeholder{/* Mozilla Firefox 4 to 18 */font-size:12px;color:#ccc;}
.div_search.MenuSearch input:-ms-input-placeholder,.div_header_search .div_search input:-ms-input-placeholder{/* Internet Explorer 10-11 */font-size:12px;color:#ccc;}
.main .Contactus .divMessage textarea::-webkit-input-placeholder{line-height:34px;}
.main .Contactus .divMessage textarea::-moz-placeholder{line-height:34px;}
.main .Contactus .divMessage textarea:-moz-placeholder{line-height:34px;}
.main .Contactus .divMessage textarea:-ms-input-placeholder{line-height:34px;}
/*样式十四*/                                                                                                                                                                                                      
.navbarTop.navSkin14 .div_search,.navbarTop.navSkin15 .div_search,.navbarTop.navSkin16 .div_search{display:block;} 
.navSkin14 .container div > ul > li > a,.navSkin15 .container div > ul > li,.navSkin16 .container div > ul > li>a{height:55px !important;line-height:55px;}
.menuC>.center>ul.style14>li,.menuC>.center>ul.style15>li,.menuC>.center>ul.style16>li{width:9%;}
.navSkin15 .container div > ul > li > a{height:38px !important;line-height:38px;transform:translateY(20%);border-radius:3px;}
.navSkin15 .container div > ul > li > a span{line-height:38px;}
.menuC ul.style15 ul{margin-top:-25px;}
.menuC ul.style16 ul{margin-top:-18px;}
.menuC>.center>ul.style16>li>.active,.menuC>.center>ul.style16:hover>li>.active,.menuC > .center > ul.style16 > li:hover > a{background:unset !important;}

/*样式九 十*/
.navSkin9 #MenuCol,.navSkin10 #MenuCol{padding:0;}
.menuC>.center>ul.style9>li,.menuC>.center>ul.style10>li{width:8%;}
.navSkin9 .menuC>.center>ul>li,.navSkin10 .menuC>.center>ul>li{height:60px;line-height:60px;}
.navSkin9 .menuC>.center>ul>li>a,.navSkin10 .menuC>.center>ul>li>a{height:60px;}
/*样式七 八 logo居中 logo宽度建议小于400px*/
.menuC>.center>ul.style7,.menuC>.center>ul.style8{width:100%;}
.menuC>.center>ul.style7>li>a,.menuC>.center>ul.style8>li>a{overflow: unset;}
.menuC>.center>ul.style7>li>a{height:95px;line-height:95px;}
.menuC>.center>ul.style8>li{height:95px;}
.menuC>.center>ul.style8>li>a{height:38px;transform:translateY(70%);line-height:38px;border-radius:3px;}
.navSkin7 .navbar-brand,.navSkin8 .navbar-brand{position:absolute;left:50%;transform:translate(-50%,-50%);top:50%;z-index:99;}
.style7 > li{width:18% !important;text-align:center;}
.style8 > li{width:10% !important;text-align:center;margin:0 1.2%;}
.style7 > li:first-child:before,.style7 > li:nth-child(5):before{content:'';}
.style7 > li:before{content:'/';line-height:95px;float:left;}
.style7 > li:nth-child(5){margin-left:18%;}
.style8 > li:nth-child(5){margin-left:16%;}
.navSkin7 .menuC{padding:0 40px;}
.menuC>.center>ul.style7>li>.active,.menuC>.center>ul.style7:hover>li>.active,.menuC > .center > ul.style7 > li:hover > a{background:unset !important;}
.menuC>.center>ul.style8{transform:translateY(0);}
.menuC ul.style8 ul{margin-top:-46px;}
}
@media(max-width:1300px) and (min-width:768px){.menuC>.center>ul.style13{width:75%;}.menuC>.center>ul.style13>li{width:12%}.navSkin13 #MenuCol{padding:0;}}
@media(max-width:1050px) and (min-width:768px){.menuC>.center>ul.style13{width:72%;}.menuC>.center>ul.style13>li{width:18%}}
@media(max-width:1220px) and (min-width:768px){.navSkin7 .navbar-brand > img,.navSkin8 .navbar-brand > img{display:block !important;width:80%;margin:auto;}.navSkin7 .menuC,.navSkin7 #MenuCol,.navSkin8 .menuC,.navSkin8 #MenuCol{padding:0}.menuC>.center>ul.style9>li,.menuC>.center>ul.style10>li{width:10%;}.menuC>.center>ul.style14>li,.menuC>.center>ul.style15>li,.menuC>.center>ul.style16>li,.menuC>.center>ul.style17>li,.menuC>.center>ul.style18>li{width:13%;}.div_search.MenuSearch{width:150px;}}
@media(min-width: 768px) and (max-width:991px){.menuC>.center>ul{width:64% !important;}.navSkin7 .menuC>.center>ul,.navSkin8 .menuC>.center>ul,.navSkin9 .menuC>.center>ul,.navSkin14 .menuC>.center>ul,.navSkin15 .menuC>.center>ul,.navSkin16 .menuC>.center>ul,.navSkin21 .menuC>.center>ul,.navSkin22 .menuC>.center>ul{width:100% !important;}.menuC>.center>ul.style13{width:75% !important;}.menuC>.center>ul.style17,.menuC>.center>ul.style18,.menuC>.center>ul.style20{width:70% !important;}.navSkin7 .navbar-brand > img,.navSkin8 .navbar-brand > img{width:60%;}.div_search.MenuSearch{width:130px;}}
@media(max-width: 768px){
    /*.PClogo{display:none;}*/
    .Waplogo{display:block;}
    .MenuC .menuL{height: 100%;width: 50%;min-height: 8rem;}
    .MenuC .menuL .close{height: .8rem;background:url(/Skin/Img/close.png)no-repeat 85% .3rem;background-size: .3rem .32rem;}
    .menuC{background:#fff;display:block;visibility:hidden;overflow-x:visible;width:5rem;position:absolute;z-index:999;border-radius:.1rem;-webkit-border-radius:.1rem;-moz-border-radius:.1rem;-ms-border-radius:.1rem;top:1.1rem;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);):;box-shadow:0 6px 12px rgba(0,0,0,.175);height:auto;cursor:pointer;overflow:hidden;}
    .menuC .center>ul{overflow:auto;padding-top:1.5rem;}
    .Menu .menuL{height: 100%;width: 50%;min-height: 8rem;}
    .Menu .menuL .close{height: .8rem;background:url(/Skin/Img/close.png)no-repeat 85% .3rem;background-size: .3rem .32rem;}
    .Menu .menuR{width: 50%;height: 100%;background: #fff;float:right;} 
    .MenuC .menuR .topmenu{height: .6rem;width: auto;margin: .38rem .5rem .3rem;border-bottom: 1px #ccc solid;}
    .MenuC .menuR .topmenu .SearchText{font-size: .225rem;line-height: .3rem;text-indent: .02rem;width: 2.8rem;}
    .MenuC .menuR .topmenu .Search{width: .12rem;height: .12rem;background: url(/skin/img/jia.png)no-repeat;background-size: .12rem .12rem;margin-top: .1rem;}
    .menuC .center>ul>li{border-bottom: 1px #eee solid;}
    .menuC .center ul>li a{font-size: .225rem;line-height: .8rem;padding-left: .32rem;background:#fff;display:inline-block;font-size:.3rem;}
    .menuC .center ul>li a{color: #555;cursor: pointer;}
    .menuC .center ul>li ul li a{font-size:.24rem;color:#666;}
    .menuC .center ul>li.liIco{display:none;}
    .menuC .center>ul>li ul{display:none;}
        .menuC .center > ul > li ul > li { position: relative; }
            .menuC .center > ul > li ul > li a { text-transform: uppercase; }
    .menuC .center>ul>li.active>ul{display:block;padding-inline-start:0;padding-left:0;}
    .menuC .center>ul>li.active>ul li.active>ul{display:block;padding-left:.2rem;}
    .Menu .menuR .MenuName a:hover{color:#01a2e8 !important;}
    .menuC .center .ChildM>span{height:.12rem;width:.12rem;display:inline-block;position:absolute;right:10%;top:.34rem;}
    .menuC .center .ChildM>span{background: url(/skin/img/jia.png)#fff no-repeat center/100%;background-size: .12rem .12rem;}
    .menuC .center .ChildM.active>span{background: url(/skin/img/jian.png)#fff no-repeat center/100%;background-size: .12rem .12rem;}
    .MenuC .menuR .CMenu{background: #f4f4f4;display:none;}                                                   
    .MenuC .menuR .CMenu .CMenuName{font-size: .2rem;line-height: .48rem;padding-left: .32rem;}
    .MenuC .menuR .CMenu .CMenuName a{color:#333;}
    .MenuC .menuR .CMenu .CMenuName a:hover{color:#01a2e8 !important;}
    .navbarTop .navbar-collapse>ul.nav{transform:translateY(0)!important;}
    .PCmenu .nav > li{text-align:center;}
    .PCmenu .nav > li a{padding: 0 !important;}
    /*十一、十二*/
    .navbarTop .Rightbox{display:none;}
    /*十四*/
    .navSkin9 .Waplogo h1,.navSkin10 .Waplogo h1,.navSkin14 .Waplogo h1,.navSkin15 .Waplogo h1,.navSkin16 .Waplogo h1{display:none;}
}
/*********************Master 母版 Column 栏目**************************/
@media(max-width: 1249px) {
    .Master .title {
        overflow: hidden;
    }
    .navSkin11 .menuC .center>ul>li ul>li,.navSkin12 .menuC .center>ul>li ul>li{margin:0 10px;}
    .navSkin11 .menuC .center>ul>li ul>li a, .navSkin12 .menuC .center>ul>li ul>li a{font-size:14px;}
}
/*---title_style1---*/
.title_style1 {
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

    .title_style1:before, .title_style1:after {
        content: "";
        background: #ccc;
        display: inline-block;
        height: 1px;
        position: relative;
        width: 44%;
        vertical-align: middle;
    }

    .title_style1:before {
        /*right: 0.3em;*/
        margin-left: -44%;
    }

    .title_style1:after {
        /*left: 0.3em;*/
        margin-right: -44%;
    }

@media(min-width: 1250px) {
    .title_style1 {
        width: 1210px;
    }
}

@media(min-width: 992px) and (max-width: 1249px) {
    .title_style1 {
        width: 930px;
    }
}

@media(min-width: 768px) and (max-width: 991px) {
    .title_style1 {
        width: 710px;
    }
}

@media(max-width: 767px) {
    .title_style1 {
        margin-left: .2rem;
        margin-right: .2rem;
    }
}
/*---title_style2---*/
.title_style2 #tSkin2 {
    display: block !important;
    font-size: 60%;
}

    .title_style2 #tSkin2 span {
        display: inline-block;
    }

        .title_style2 #tSkin2 span:before, .title_style2 div span:after {
            content: "";
            background: #999;
            display: inline-block;
            height: 1px;
            position: relative;
            width: 44%;
            vertical-align: middle;
        }

        .title_style2 #tSkin2 span:before {
            right: 0.3em;
            margin-left: -44%;
        }

        .title_style2 #tSkin2 span:after {
            left: 0.3em;
            margin-right: -44%;
        }
/*---title_style3---*/
.title_style3 a {
    color: #333 !important;
}

.title_style3 #tSkin3 {
    display: block !important;
    height: 2px;
}
/*More*/
.Master .more a {
    border: 1px solid #ddd;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    color: #999;
    display: block;
    background: #fff;
}

.Banner2 {
    margin-top: 40px;
}
/*.Master .more:hover{border:1px solid #999;}
.Master .more a:hover{color:#999 !important;}*/
@media(min-width: 768px) {
    .Banner2 {
        margin-top: 40px;
    }

    /*.Master .title {
        font-size: 30px;
        letter-spacing: 2px;
    }*/
        .Master .title {
        padding-top: 20px;
        font-size: 32px;
        letter-spacing: 1px;
        padding-bottom: 0 !important;
    }
    .title_style2 #tSkin2 span {
        width: 260px;
    }

    .title_style3 #tSkin3 {
        width: 100px;
        margin: 8px auto 0;
    }

    .Master .more {
        display: none;
        padding: 20px 0 0;
    }

        .Master .more a {
            line-height: 48px;
            height: 50px;
            width: 170px;
        }
}

@media(max-width: 767px) {
    .Banner2 {
        margin-top: 40px;
    }

    .Master .title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .title_style2 #tSkin2 span {
        width: 2.6rem;
    }

    .title_style3 #tSkin3 {
        width: 1rem;
        margin: .08rem auto 0;
    }

    .Master .more {
        padding-top: 10px;
        display: none;
    }

        .Master .more a {
            display: block;
            background: #fff;
            font-size: 16px;
            line-height: 40px;
            height: 40px;
            width: 200px;
        }
}
/*---title_style4---*/
.title_style4 {
    font-weight: bold;
}

    .title_style4:before, .title_style4:after {
        content: "";
        background: #ccc;
        display: inline-block;
        height: 1px;
        position: relative;
        width: 44%;
        vertical-align: middle;
    }

    .title_style4:before {
        right: -0.4em;
        margin-left: -44%;
    }

    .title_style4:after {
        left: -0.4em;
        margin-right: -44%;
    }

    .title_style4 .title4-left {
        padding-right: 25px;
        display: inline-block !important;
    }

    .title_style4 .title4-right {
        padding-left: 25px;
        display: inline-block !important;
    }
@media(min-width: 992px) {
    .Master .title {
        padding-top: 80px; padding-bottom:20px;
    }
}

@media(min-width: 768px) and (max-width: 991px) {
    .Master .title {
        padding-top: 20px 0px 10px; /*padding-bottom:35px;*/
    }
}

@media(min-width: 768px) {
    .title {
        padding-bottom: 30px;
    }
}

@media(max-width: 767px) {
    .Master .title {
        padding: 20px 0px 10px;
    }

    .title {
        padding-bottom: 10px;
    }

    .title_style1 {
        padding-top: .15rem;
    }

    .title_style2 {
        padding-top: .05rem;
    }

    .title_style4 {
        padding-top: .15rem;
    }

        .title_style4 .title4-left, .title_style4 .title4-right {
            height: .55rem;
            width: .17rem;
        }
}

/*---title_style5---*/
.title_style5 a {
    color: #333 !important;
}

.title_style5 #tSkin5 {
    display: block !important;
    height: 2px;
    background: #333;
}
/*.Message .title_style5, .home_block_detail .title_style5{text-align:left;}*/
@media(min-width: 768px) {


    .title_style5 #tSkin5 {
        width: 30px;
        margin: 10px auto 0;
    }
}

@media(max-width: 767px) {
    .Master .title {
        font-size: 18px;
        letter-spacing: 1px;
        padding:20px 0 10px;
    }

    .title_style5 #tSkin5 {
        width: 30px;
        margin: 10px auto 0;
    }
    /*.home_block_detail .title_style5 #tSkin5, .Message .title_style5 #tSkin5{margin:.2rem 0 0;}*/
    .home_block_detail p {
        font-size: 12px;
    }
}

@media(max-width: 414px) {
    .Master .title {
        padding-top: 10px;
        font-size: 18px;
        letter-spacing: 1px;
        padding-bottom: 5px;
    }
}

@media(min-width:992px) and (max-width:1219px) {
    .Master .title {
        padding: 20px 0;
    }
}

@media(min-width:1660px) {
    .blockContent {
        overflow: hidden;
    }
}

/****************************第二部分******************/ /*HomeBlock*/
.home_block_left img {
    width: 100%;
}

/*.home_block_detail .more a{margin:0;}*/
@media(min-width:1220px) and (max-width:1439px) {
    .Master .title {
        padding: 20px 0;
    }

    .Master .more {
        padding: 20px 0;
    }

        .Master .more a {
            width: 160px;
            height: 45px;
            line-height: 43px;
        }
}

@media(min-width:992px) and (max-width:1219px) {
    .Master .title {
        padding: 40px 0 20px;
        font-size: 28px;
    }

    .title_style5 #tSkin5 {
        margin: 10px auto 0;
    }

    .home_block_detail {
    }
    
    .Master .more {
        padding: 20px 0;
        display: none;
    }

        .Master .more a {
            width: 140px;
            height: 40px;
            line-height: 38px;
        }
}

@media(min-width: 768px) and (max-width:991px) {
}

@media(max-width:767px) {
    .home_block_detail {
        padding: 0px !important;
    }
}

@media(max-width:414px) {
    .home_block_detail {
        padding: 0px !important;
    }
}


/****************************第三部分******************/ /*HomeProduct*/

.aui-nav-list-box {margin: 0 2% 0;}
.HomeProductNc {margin: 0 10px 10px!important;}
.HomeProductIc {margin: 0 15px 20px!important;}

.ProductList0,.ProductList1,.ProductList2,.ProductList3, .IntroduceList{
    position: relative;
    display: block;
    overflow: hidden;
}
.ProductList3 {
    border:solid 10px #eee;
    border-bottom:none;
}
.IntroduceShowStyleN {
 padding: 0 30px;
}
.IntroduceShowStyleS {
    overflow: hidden;
}
.IntroduceShowStyleM .dummy {
    margin-top: 65% !important;
}
.In_parent {padding: 0 10px 0px;}
@media(min-width:992px) and (max-width:1220px) {
}

@media(min-width:768px) and (max-width:991px) {
    .IntroduceShowStyleM, .IntroduceShowStyleS, .IntroduceShowStyleXL {
        overflow: hidden;
    } .IntroduceShowStyleS {
         padding: 0 10px;
    }
      .In_parent {padding: 0;}
      .In_parent:last-child {padding-bottom: 0px;}
}

@media(max-width:768px) {
     .IntroduceShowStyleS {
         padding: 0 10px;
    }
       .In_parent {padding: 0;}
      .In_parent:last-child {padding-bottom: 0px;}
}

@media(max-width:414px) {
    
    .IntroduceShowStyleS {
         padding: 0 10px;
         margin: 0 auto;
    }
      .In_parent {padding: 0 0 10px;}
      .In_parent:last-child {padding-bottom: 0px;}
}

.ProductShowStyleS .dummy, .IntroduceShowStyleS .dummy {
    margin-top: 50%;
}
.ProductShowStyleS .dummy{
    margin-top: 75%;
}
.ProductShowStyleM .dummy, .IntroduceShowStyleM .dummy {
    margin-top: 100%;
}

.ProductShowStyleXL .dummy, .IntroduceShowStyleXL .dummy {
    margin-top: 150%;
}

.ProductListImg, .IntroduceImg /*=居中=*/ {
    position: absolute;
    left: 0;
    right: 0;
    top: 0%;
    bottom: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /* 水平居中 */
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    /* 垂直居中 */
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.advantageImg{top: 65%;}

.ProductShowStyleM img, .ProductListConRow .ProductListImgCon img,.PhotoListCon .ProductListImgCon img,.IntroduceShowStyleM .IntroduceListImgCon img, .IntroduceShowStyleS .IntroduceListImgCon img {
    width: 100%; /*用于图片强制100%。。。*/
}

.ProductShowStyleS .ProductListImgCon, .ProductShowStyleXL .ProductListImgCon,
.IntroduceShowStyleS .IntroduceListImgCon, .IntroduceShowStyleXL .IntroduceListImgCon {
    /*max-height: 100%;*/ /*用于图片居中,最好的显示方式*/
    width: 100%; /*用于图片强制100%。。。*/
}
.ProductShowStyleS img {
    display: inline-block;
}
/*=效果=*/
.ProductListImgCon {
    position: relative;
    overflow: hidden;
    vertical-align: top;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.ProductListImg img, .ProductListTitle0,.ProductListTitle1,.ProductListTitle2,.ProductListTitle3 {
    -webkit-transition: all .5s ease; /* Safari and Chrome */
    -moz-transition: all .5s ease; /* Firefox */
    -ms-transition: all .5s ease; /* IE 9 */
    -o-transition: all .5s ease; /* Opera */
    transition: all .5s ease;
}


/*=标题=*/
.ProductListTitle0 {
    /*opacity: 0;*/
    position: absolute;
    left: 0;
    right: 0;
    bottom:14%;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 24px;
    font-weight:600;
    color:#fff;
    font-family:Arial;
    /*background-color:rgba(0,0,0,0.50);*/
    /*background-image:linear-gradient(to bottom,transparent,rgb(0,0,0,.6))*/
}
.ProductListTitle0 { text-transform: uppercase; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-pack: center; -moz-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -moz-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; padding: 0 10px; height: 100%; margin: 0; }
    .ProductListTitle0>div{position:absolute;bottom:0;}
    .ProductListTitle0>div p:last-child{display:inline-block;font-size:16px;font-weight:500;margin-bottom:0;padding:14px 20px;border:1px solid #a6a5a3;line-height:100%;}
    .pItem:hover .ProductListTitle0>div p:last-child{color:#fff;background:#cc9966;border:1px solid #cc9966;}
.ProductListTitle1 {
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height:50px;
    line-height:50px;
    font-size: 24px;
    font-weight: 600;
    overflow:hidden;
    text-align: center;
    background:red;
    color:#fff;
}

.ProductListTitle2 {
    height:50px;
    line-height:50px;
    font-size:18px;
    overflow:hidden;
    text-align: center;
    background:#eee;
}
.ProductListTitle3 {
    border:solid 10px #eee;
    border-top:none;
    border-bottom:none;
    height:50px;
    line-height:50px;
    font-size:18px;
    overflow:hidden;
    text-align: center;
    background:#eee;
}

.pItem:hover .ProductListTitle0,.pItem:hover .ProductListTitle1 {
    opacity: 1;
    color: #fff;
    overflow-x: hidden;
}
 .pItem:hover .ProductListImg>img{transform:scale(1.05,1.05)}

.pItem:hover .ProductList3 {
    border-color:red;
}
.pItem:hover .ProductListTitle3{
    background:red;
    border-color:red;
    color:#fff;
}
.aPLink:hover {
    display:block;
    border-color: #eee;
    position: relative;
    z-index: 99;
    text-decoration: none;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0);
}


.aui-nav-list-box {
    margin: 0 2%;
    overflow: hidden;
}

.HomeProductCon .row {
    margin: 0;
}


.HomeProductCon_ul {
    width: 100%;
    margin: 0;
    padding: 0;
}

    .HomeProductCon_ul li {
        display: inline-block;
        vertical-align: middle;
    }

    .HomeProductCon_ul > .aui-current {
        background: #e2001c;
        border-color: #e2001c;
        color: #fff;
    }

    .HomeProductCon_ul li a {
        display: block;
        padding: 0 30px;
        height: 40px;
        border: 1px solid #ddd;
        font-size: 16px;
        text-align: center;
        line-height: 38px;
        margin: 0 10px 10px;
        background: #fff;
    }

@media(min-width: 1250px) {
    .IntroduceList {
    }
}

@media(max-width: 992px) {
    .ProductListTitle0,.ProductListTitle1,.ProductListTitle2,.ProductListTitle3{font-weight: 600;}
    .ProductListTitle0 { font-size:24px; }
    .ProductListTitle1, .ProductListTitle2, .ProductListTitle3 {
        font-size:16px;
        height:30px;
        line-height:30px;
    }
    .aui-nav-list-box {padding-top:10px;}
    .HomeProductCon_ul {
        text-align:center;
    }
    .HomeProductCon_ul li a {
        display: block;
        padding: 0 10px;
        height: 30px;
        border: 1px solid #ddd;
        font-size: 12px;
        text-align: center;
        line-height: 28px;
        background: #fff;
    }


}

@media(max-width: 768px) {
    .HomeProductCon .row {
        margin: 0;
    }
    
    .HomeProductCon_ul {
        text-align:left;
    }
    
    .ProductListTitle0,.ProductListTitle1,.ProductListTitle2,.ProductListTitle3{font-weight: 600;}
    .ProductListTitle0 { font-size:24px; }
    .ProductListTitle1, .ProductListTitle2, .ProductListTitle3 {
        font-size:14px;
        height:30px;
        line-height:30px;
    }
}

@media(max-width: 414px) {
    .HomeProductCon .row {
        margin: 0;
    }
    
    .ProductListTitle0,.ProductListTitle1,.ProductListTitle2,.ProductListTitle3{font-weight: 600;}
    .ProductListTitle0 { font-size:24px; }
    .ProductListTitle1,.ProductListTitle2, .ProductListTitle3 {
        font-size: 12px;
        height:30px;
        line-height:30px;
    }
}



/*******************************第四部分*******************************/ /*HomeArticle*/
.ArticleCom .row > a {
    text-align: justify;
}
/*.media{ border-bottom: solid 1px #eee;}*/
.media-body {
    display: inherit;
    overflow: hidden;
}

    .media-body span:first-child {
        font-weight: bold;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .media-body p {
        color: #999;
        overflow: hidden;
    }

.ArticleImgCon {
    overflow: hidden;
}

    .ArticleImgCon a img {
        display: inline-block;
        vertical-align: middle;
        width: 100%;
        height:100%;
    }

.ArticleImgCon {
    float: left;
    text-align: center;
}

@media(min-width: 1250px) {
    .HomeArticle .media {
        margin-left: 15px;
        margin-right: 15px;
    }
    /*.HomeArticle .col-lg-6:last-child .media,.HomeArticle .col-lg-6:nth-last-child(2) .media{border-bottom:none;}*/
    .HomeArticle .col-lg-6:nth-child(1) .media, .HomeArticle .col-lg-6:nth-child(2) .media {
        padding-top: 0;
    }
}

@media(max-width: 1249px) {
    .HomeArticle .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .media-body span:first-child {
        font-weight: inherit;
    }
    /*.HomeArticle .col-lg-6:nth-child(5) .media{border-bottom:none;}*/
    .HomeArticle .col-lg-6:nth-child(6) .media {
        display: none;
    }

    .HomeArticle .col-lg-6:nth-child(1) .media {
        padding-top: 0;
    }

    .media-body span:first-child {
        font-size: 18px;
        line-height: 50px;
        padding-top: 10px;
    }
}

@media(min-width: 769px) {
    /*.ArticleImg{width: 160px; height:120px;}*/
    .ArticleImgCon {
        width: 50%;
        height: 400px;
        position: relative;
    }

        .ArticleImgCon img {
            max-height: 100%;
        }

    .media {
        margin-top: 30px;
        overflow: hidden;
        background:#f7f8f8;
    }

    .media-body {
        padding:30px 30px 0 30px;
    }
    .media-body >a>div{margin-top:30%;}

        .media-body p {
            font-size: 16px;
            line-height: 24px;
        }

    .pmore {
        padding-top: 55px;
        clear: both;
    }

    .media-body .article-more {
        height: 45px;
        line-height: 43px;
        border: 1px solid #ccc;
        display: block;
        width: 125px;
        text-align: center;
        color: #ccc;
    }
}

@media(max-width: 768px) {
    .ArticleImgCon {
        width: 100%;
        height: 3.5rem;
        margin-right: 10px;
        padding: 0px;
    }

        .ArticleImgCon img {
            width: 100%;
            height: 150px;
        }

    .media {
        padding-bottom: 0px;
    }

    .media-body {
        display:block;
        position: relative;
        overflow:unset;
        padding:.15rem .3rem;
        background:#f7f8f8;
        z-index:-1;
    }
           .media-body a>span{font-size:.3rem;vertical-align:middle;line-height:.36rem;margin-bottom:.2rem;}
           .media-body a div>span{font-size:.2rem;margin-left:.05rem;}
        .media-body span:first-child {
            font-size: .24rem;
            line-height: 200%;
            float: none;
            display: block;
            padding-top: 0px;
        }

        .media-body p {
            font-size: .24rem;
            height:2.2rem;
            line-height: .3rem;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 6;
            -webkit-box-orient: vertical;
            display: -moz-box;
            -moz-line-clamp: 6 !important;
            -moz-box-orient: vertical;
        }
    .pmore {
        border: 1px solid #ddd;
        width: 120px;
        height: 40px;
        line-height: 40px;
        position: absolute;
        text-align: center;
        bottom: 0;
    }

        .pmore .article-more {
            font-size: 14px;
            color: #ddd;
        }

    .ArticleList .media-body .views, .ArticleList .media-body .viewstxt{
        display: inline-block;
        height: .7rem;
        overflow: hidden;
        line-height: .7rem;
        margin-right: 5px;
        font-size: .24rem;
        color: #999;
        letter-spacing: 0px;
    }
    .ArticleList .media-body .viewstxt {color:#000;font-size:.24rem;}
    .ArticleList .media-body i.timer, .ArticleList .media-body i.vcount{display:inline-block;height:.3rem;width:.3rem;vertical-align:middle;}
    .ArticleList .media-body i.timer{background:url(/Skin/img/bheart.png)no-repeat center/100%;}
    .ArticleList .media-body i.vcount{background:url(/Skin/img/sbook.png)no-repeat center/100%;float:right;}
}

@media(max-width: 414px) {

    .HomeProductCon_ul {
    }
    .HomeProductCon_ul li{
        width:33.3333%;
    }
    .HomeProductCon_ul li a {
        display: block;
        padding: 0 1px;
        height: 30px;
        border: 1px solid #ddd;
        font-size: 12px;
        text-align: center;
        line-height: 28px;
        background: #fff;
    }
    /*.HomeProductIc,.HomeProductNc {margin: 0 5px 10px 5px!important;}*/

        .ArticleImgCon img {
            width: 100%;
            height: 100%;
        }

    .media {
        padding-bottom: 0px;
        margin-top: 10px;
    }

    .pmore {
        border: 1px solid #ddd;
        width: 120px;
        height: 40px;
        line-height: 40px;
        position: absolute;
        text-align: center;
        bottom: 0;
        display: none;
    }

        .pmore .article-more {
            font-size: 14px;
            color: #ddd;
            display: none;
        }

    .ArticleList .media-body .views{
        display: none;
    }
}
/****************************第六部分******************************/ /*HomeMessage*/
.HomeMessage input, .HomeMessage textarea {
    color: #333;
    border: 1px solid #ddd;
    letter-spacing: 1px;
    outline: none;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -ms-transition: 0.5s all ease;
    -webkit-appearance: none;
}

.Address, .Contant {
    width: 100%;
    margin: 5px 0px;
}

.Map p {
    margin: 0;
}

.Submit {
    color: #fff !important;
    width: 100%;
    font-size: 18px;
    letter-spacing: 2px;
    height: 60px;
    border: none;
}

.Message-body {
    overflow: hidden;
    margin-top: 40px;
    max-width:1760px;
    min-width:1760px;
    margin:auto;
}
.divMessage {
    padding:0 40px;
}
.divMessage .message{
    padding:10px 0;
}
.message:nth-child(-n+2) {
    padding-top:0;
}



@media(min-width:992px) and (max-width:1024px) {
.divMessage {
    padding:0 20px;
}
}
@media(min-width:769px) and (max-width:991px) {
.divMessage {
    padding:0 20px;
}
.divMessage .message{padding: 10px 0;}
#btnsubmit{margin-bottom:0!important;}
}
@media(max-width:768px) {
#btnsubmit{margin-bottom:0!important;}
.divMessage {
    padding:0 10px;
}
.divMessage .message{padding: 5px 0;}
}
@media(max-width: 414px) {
.divMessage { padding:0 10px;}
.divMessage .message{padding: 5px 0;}
}
.message input.input,.message textarea.input,.message select {
    font-size: 14px;
    width: 100%;
    background: transparent;
    border: 1px solid #ccc;
    color: #999;
}
.message input.input,.message textarea.input,.message select {color: #666; padding: 8px;}
.message input[type="checkbox"]{-webkit-appearance: checkbox;}
.message input[type="radio"]{-webkit-appearance: radio;}




@media(max-width: 991px) {
    .HomeMessage .container {
        width: 100%;
        padding-left: inherit;
        padding-right: inherit;
    }

    .Map {
        padding-left: inherit;
        padding-right: inherit;
        margin-top: 30px;
    }
}

@media(min-width: 768px) and (max-width: 991px) {
    .HomeMessage .title_style1 {
        margin: 0 20px;
    }
}

@media(min-width: 769px) {
    .HomeMessage input, .HomeMessage textarea {
        padding: 11.5px;
        font-size: 16px;
    }

    .Map {
    }

    .Address {
        margin-bottom: 20px;
    }

    .Contant {
        margin-bottom: 20px;
        height: 180px;
    }

    .Submit {
        margin: 0 0 20px;
    }

    .HomeMessage #ValidateImage {
        height: 40px;
    }
}

@media(max-width: 768px) {
    .Map {
        padding-left: inherit;
        padding-right: inherit;
        margin-top: 10px;
    }

    .Message-body {
        margin-top: 20px;
    }

    .HomeMessage .title_style1 {
        margin: 0px 2%;
    }

    .HomeMessage input, .HomeMessage textarea {
        padding: 5px;
        font-size: 18px;
    }


    .Code {
        width: 2rem;
    }

    .Contant {
        margin: 5px 0px;
    }

    .Submit {
        margin: 5px 0px;
        padding: 15px;
    }

    .HomeMessage #ValidateImage {
        height: .4rem;
    }
}

@media(max-width:414px) {
    
    .Message-body {
        margin-top: 20px;
    }
    .Map {
        padding-left: inherit;
        padding-right: inherit;
        margin-top: 10px;
    }

    .Submit {
        margin: 5px 0px;
        padding: 5px;
        font-size: 14px;
        letter-spacing: 2px;
        height: 30px;
        border: none;
    }

    .divMessage {
        padding-bottom: 0px;
    }
}
/*===Introduce===*/
.divIntroduce {
    border: solid 1px #ddd;
    background: #fff;
}

.kkCon {
    background: #fff;
    padding: 0px 5% 18%;
}
.KkNew { background: #fff;}
.kkSubIntroduce,.kkTitle{font-family:Arial;text-align:center;}
@media (min-width: 1601px) {

    .parent {
        padding: 20px 10px 0px;
    }

    .IntroduceShowStyleS .parent:nth-child(-n+3) {
        padding-top: 0px !important;
    }

    .kkTitle {
        display: block;
        font-size: 24px;
        font-weight: 600;
        line-height: 180%;
    }

    .kkSubIntroduce {
        line-height: 180%;
        min-height: 60px;
        overflow: hidden;
        color: #999;
    }
    /*.IntroduceImg
        {
            border-top: 1px #999 solid;
            border-left: 1px #999 solid;
            border-right: 1px #999 solid;    
            min-height: 300px;
        }*/
}

@media(min-width: 1251px) and (max-width: 1600px) {
    .parent {
        padding: 20px 10px 0px;
    }

    .IntroduceShowStyleS .parent:nth-child(-n+3) {
        padding-top: 0px !important;
    }


    .IntroduceList {
        width: 100%;
    }

    .kkTitle {
        padding: 0px;
        font-size: 18px;
        font-weight: 600;
        line-height: 200%;
    }

    .kkSubIntroduce {
        padding: 0;
        font-size: 14px;
        line-height: 150%;
        height: 40px;
        color: #999;
        overflow: hidden;
    }
}

@media(min-width: 991px) and (max-width: 1250px) {
    .parent {
        padding: 20px 10px 0px;
    }

    .IntroduceShowStyleS .parent:nth-child(-n+3) {
        padding-top: 0px !important;
    }

    .IntroduceList {
        width: 100%;
    }

    .kkTitle {
        padding: 0px;
        font-size: 18px;
        font-weight: 600;
        line-height: 200%;
    }

    .kkSubIntroduce {
        padding: 0;
        font-size: 14px;
        line-height: 150%;
        height: 40px;
        color: #999;
        overflow: hidden;
        text-align: justify;
    }
}

@media(min-width:768px) and (max-width:991px) {
    .parent {
        padding: 0 0px 10px;
    }
    .IntroduceShowStyleS .parent:last-child {
        padding-bottom: 0px;
    }


    .IntroduceList {
    }

    .HomeIntroduce .container {
        padding-bottom: 20px;
    }

    .kkTitle {
        font-size: 18px;
        line-height: 200%;
        font-weight: bold;
        margin-top:0;
    }


    .kkSubIntroduce {
        font-size: 14px;
        line-height: 180%;
        color: #999;
        height: 30px;
        overflow: hidden;
    }
}



@media (max-width: 767px) {
    .parent {
        padding: 0 0px 10px;
    }

    .IntroduceShowStyleS .parent:last-child {
        padding-bottom: 0px;
    }

    .kkTitle {
        font-weight: 600;
        font-size: 16px;
        line-height: 150%;
        margin-top:0;
    }

    .kkSubIntroduce {
        font-size: 14px;
        line-height: 150%;
        /*height: 40px;*/
         height: 20px;
        color: #999;
        overflow: hidden;
    }

    .IntroduceList {
        width: 100%;
    }

    .Banner2 {
        margin-top: 20px;
        padding-bottom: 0px;
    }
}

@media (max-width: 414px) {
    .parent {
        padding: 0 0px 10px;
    }

    .IntroduceShowStyleS .parent:last-child {
        padding-bottom: 0px;
    }

    .divIntroduce {
        background: #fff;
    }

    .kkTitle {
        display: block;
        margin-top: 5px;
        font-size: 14px;
        line-height: 150%;
        font-weight: 600;
        margin-top:0;
    }

    .kkSubIntroduce {
        font-size: 12px;
        line-height: 150%;
        height: 33px;
        color: #999;
        overflow: hidden;
    }

    .IntroduceList {
        width: 100%;
    }
}

/***********************************内页****************************************/
/*广告图*/
.NeiBanner {
    max-height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .NeiBanner > a {
        /*height: 375px !important;*/
    }
}

@media (max-width: 414px) {
    .NeiBanner > a {
        /*height: 180px !importavnt;*/
    }
}
/*.NeiBanner img{width:100%;}*/
/*ProductList*/
/*.ProductListCon .col-xs-6
{
    box-sizing: border-box;
    overflow: hidden;
}
@media (min-width: 1250px)
{
.ProductListCon .P_Exhibition{ margin-right: 0px; margin-left: 0px;}
}
@media (min-width: 768px)and (max-width: 1249px)
{
.ProductListCon .P_Exhibition{ margin-right: -10px; margin-left: -10px;}
}
@media (min-width: 768px)
{
.ProductListCon{ margin-top:30px;}
}
@media (max-width: 767px)
{
    .ProductListCon .P_Exhibition{ margin-left: -.1rem; margin-right: -.1rem;}
}*/

@media (min-width: 769px) {
    .ProductListCon > .container {
        margin-top: 30px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .ProductListCon > .container {
        margin-bottom: .1rem;
    }

        .ProductListCon .row .col-xs-6 {
        }    
  .ProductListCon #ProductListCon1{min-height:6rem;} 
}


/**Product**/
.BigImage {
    position: relative;
}

    .BigImage h3 {
        font-weight: bold;
    }

.Introduct {
    box-sizing: border-box;
    border: 1px solid #ccc;
    padding: 0;
    background: #fff;
}

    .Introduct div {
        color: #fff;
        height: 100%;
    }

.Product .Sub {
    color: #fff !important;
    width: 100%;
    border: inherit !important;
}

.Product .tab-pane div a:hover {
    text-decoration: underline;
}

.ProductMessageList > div {
    border-bottom: 1px solid #eee;
}

    .ProductMessageList > div:first-child {
        border-top: 1px solid #eee;
    }

    .ProductMessageList > div > p:last-child {
        color: #999;
    }

.ProductMessageList img {
    display: inline-block !important;
}

.hybtn_prev, .hybtn_next {
    z-index: 11111;
    position: absolute;
    top: 50%;
    margin-top: -13px;
    opacity: 0; /*可以改变数值*/
    transition: opacity .8s ease-in-out; /*可以改变时间*/
    -moz-transition: opacity .8s ease-in-out;
    -webkit-transition: opacity .8s ease-in-out;
}

.BigImage:hover .hybtn_prev, .BigImage:hover .hybtn_next {
    opacity: 1.0; /*可以改变数值*/
    transition: opacity .55s ease-in-out; /*可以改变时间*/
    -moz-transition: opacity .55s ease-in-out;
    -webkit-transition: opacity .55s ease-in-out;
}

.hybtn_prev {
    background: url(/Skin/images/hyleft.png) no-repeat left top;
}

.hybtn_next {
    background: url(/Skin/images/hyright.png) no-repeat right top;
}

@media (min-width: 769px) {
    .BigImage_head {
        padding:10px 40px 10px;
    }

        .BigImage_head a {
            display: block;
            max-width: 1900px;
            margin: 0 auto;
            text-align: center;
            width: auto;
        }

        .BigImage_head h3 {
            line-height: 180%;
            margin: 10px 0;
        }

        .BigImage_head a img {
            max-width: 100%;
        }

    .ProductSecond {
        padding:10px 0 80px;
    }

    .BigImage_preNext {
        margin-top: 20px;
        padding:0px 40px;
    }

    .Introduct {
        height: 50px;
        line-height: 48px;
        font-size: 18px;
        margin-bottom: 20px;
        margin-top: 40px;
    }

        .Introduct div {
            width: 135px;
        }
    /*.Product .Sub{width:150px;}*/
    .Product .Sub {
        padding: 11.5px;
        font-size: 16px;
        margin-top: 20px;
    }
    /*.Product table > tbody > tr td:first-child{ width:90px;}*/
    .Product .tab-pane div input {
        height: 40px;
    }

        .Product .tab-pane div input:nth-child(2) {
            width: 200px;
        }

    .Product .tab-pane div > img {
        height: 38px;
        margin-left: 8px;
        margin-right: 8px;
    }

    .Product .tab-pane div:nth-child(2) span {
        width: 85px;
        display: inline-block;
    }

    .Product .Contant, .Product .tab-pane div input:nth-child(2) {
        padding: 11.5px;
        font-size: 16px;
        color: #999;
    }

    .ProductMessageList > div > p:first-child {
        margin-top: 10px;
    }

    .ProductMessageList > div:first-child {
        margin-top: 60px;
    }

    .ProductMessageList p {
        font-size: 14px;
    }

    .hybtn_prev, .hybtn_next {
        width: 67px !important;
        height: 122px !important;
        margin-top: -13px;
    }

    .hybtn_prev {
        left: 20px;
    }

    .hybtn_next {
        right: 20px;
    }

    .BigImage_content2 img {
        max-width: 100%;
    }
}

@media(min-width:992px) and (max-width:1219px) {
    .BigImage_head > a {
        max-width: 1000px;
        margin: 0 auto;
    }

        .BigImage_head > a > img {
            max-width: 100%;
        }
}
@media (max-width: 768px) {
    .BigImage_head {
        padding:10px 20px 10px;
    }
    .BigImage_head > a {
        display: block;
    }

        .BigImage_head > a > img {
            max-width: 100%;
        }

    .BigImage_head h3 {
        margin: 10px 0;
        padding: 0px;
    }

        .BigImage .BigImage_content {
            width: 100%;
            padding: .3rem;
            padding-right: .25rem;
            margin-bottom: .2rem;
        }

    .BigImage_content span {
        font-size: .16rem;
        color: #999;
    }

    .BigImage_content p {
        word-wrap: break-word;
        font-size: .16rem;
        line-height: .3rem;
        margin: 0;
        color: #333;
    }

    .BigImage_content span:first-child {
        font-size: .36rem;
        color: #333;
        font-weight: bold;
    }

    .BigImage_content span:last-child {
        display: block;
        margin-top: .15rem;
    }

    .BigImage_content p > span:first-child {
        color: #999;
        font-size: .16rem;
        font-weight: normal;
    }

    .BigImage_content2 img {
        max-width: 100%;
    }

    .BigImage_preNext {
        padding:10px 10px 0px;
    }

    .BigImage h3 {
        font-size: .3rem;
        line-height: inherit;
    }

    .Introduct {
        height: .6rem;
        line-height: .59rem;
        font-size: .2rem;
        margin-bottom: .2rem;
        margin-top: .3rem;
    }

        .Introduct div {
            width: 1.35rem;
        }

    .Subtd {
        display: none;
    }

    .Product .Sub {
        width: 100%;
        margin-top: .2rem;
        height: .5rem;
        margin-bottom: .2rem;
    }
    /*.Product table > tbody > tr td:first-child{ width:1.3rem;}*/
    .Product .tab-pane {
        font-size: .24rem;
    }
        /*.Product .tab-pane div input{ height:.5rem;}*/
        .Product .tab-pane div input:nth-child(2) {
            width: 1.2rem;
        }

        .Product .tab-pane div > img {
            height: .4rem;
            margin-left: .08rem;
            margin-right: .08rem;
        }

        .Product .tab-pane div:nth-child(2) span {
            width: 1.2rem;
            display: inline-block;
        }

        .Product .Contant, .Product .tab-pane div input:nth-child(2) {
            padding: .12rem;
            font-size: .2rem;
            color: #999;
        }

    .ProductMessageList > div > p:first-child {
        margin-top: .1rem;
    }

    .ProductMessageList > div:first-child {
        margin-top: .4rem;
    }

    .hybtn_prev, .hybtn_next {
        width: .67rem !important;
        height: 1.22rem !important;
        margin-top: -.13rem;
        background-size: cover;
    }

    .hybtn_prev {
        left: .2rem;
    }

    .hybtn_next {
        right: .2rem;
    }
}

@media (max-width: 414px) {

    .BigImage_preNext {
        padding:10px 10px 0px
    }
    .BigImage_head {
        padding:5px 10px 5px;
    }
}

/**ArticleList**/
.ArticleList .media-body .date {
    font-weight: inherit;
    color: #999;
}



@media (min-width: 769px) {
    .ArticleList .media-body .date {
        font-size: 16px;
        line-height: 50px;
        width: 100px;
    }

    .ArticleList .media-body .glyphicon {
        top: 0;
    }

    .ArticleList .media-body .views, .ArticleList .media-body .viewstxt {display: inline-block;vertical-align:middle;height: 30px;line-height: 30px;overflow: hidden;font-size: 14px;color: #000;}
    .ArticleList .media-body .viewstxt {margin-bottom:30px;}
    .ArticleList .media-body .articleCon{font-size:14px;}
    .ArticleList .media-body .articleTitle{font-size:24px;line-height:30px;margin-bottom:30px;}
        .ArticleList .media-body i.timer,.ArticleList .media-body i.vcount {
            display: inline-block;
            vertical-align: middle;
            width:25px; height:25px; margin-right:10px;
        }
        .ArticleList .media-body i.vcount{float:right;}
    .ArticleList .media-body i.timer {background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='22' viewBox='0 0 25 22'%3E%3Cimage width='25' height='22' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAWCAMAAAACYceEAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABQVBMVEX////MmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWb///8ER1NSAAAAaXRSTlMABTua3vPvx3UWD3LK9N2WOoz41LjD5cJYt+bG0wyj0V0VMZ4zBxRcAngmbLRrIu7qDmGcYqDyUFKhxOQp4yrFSEqR/pJCF0Oyjzf5avBWaQR/+/Ze93MBfvplA4CHVdu5NCvaV5DVBsGWnbXyAAAAAWJLR0QAiAUdSAAAAAd0SU1FB+UCAxMEKkOfzeQAAAEmSURBVCjPbZBrWwEBEIVnK0tKuVUqy5balmSVkpailLCo0AXJLen8/z8Qiwp7vsyZeZ955kJExMzNL+hYvWGRjEvLrGll1cyQKqMFVpt9bR0bjk1sbdudVliMA8C54OZ3iNn1APDs7ZNw4IaLIxK90PvUXvHQfySqzqeHV6SAFDTTSMdjYw5KATpBiGYVwimdhc81SCR8QXI0pkFiUZlsl1eaxElxKaFBrlmZbpIGDeJN3tId5NQMSMm4Jy6NjDgFxAzS/SdkWYWfIrzCZgcxh3xhAhTyyQfVPD4VS+V/oPxcfHkdWuatVKnWRvVataK8/w3OhVEfbpiqQzfuUPXRQLPVj60mGpNDqe1Hx8F9duBvTx8ndGH6MqErzD6kF4lL35Heb/4DjVIx9EtfRmEAAAAldEVYdGRhdGU6Y3JlYXRlADIwMjEtMDItMDNUMTE6MDQ6NDIrMDg6MDDZ2x+EAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIxLTAyLTAzVDExOjA0OjQyKzA4OjAwqIanOAAAACB0RVh0c29mdHdhcmUAaHR0cHM6Ly9pbWFnZW1hZ2ljay5vcme8zx2dAAAAGHRFWHRUaHVtYjo6RG9jdW1lbnQ6OlBhZ2VzADGn/7svAAAAF3RFWHRUaHVtYjo6SW1hZ2U6OkhlaWdodAAyMjHvybUAAAAWdEVYdFRodW1iOjpJbWFnZTo6V2lkdGgAMjVXJJybAAAAGXRFWHRUaHVtYjo6TWltZXR5cGUAaW1hZ2UvcG5nP7JWTgAAABd0RVh0VGh1bWI6Ok1UaW1lADE2MTIzMjE0ODI8DGuHAAAAEnRFWHRUaHVtYjo6U2l6ZQAxNTc4QkKKDi88AAAARnRFWHRUaHVtYjo6VVJJAGZpbGU6Ly8vYXBwL3RtcC9pbWFnZWxjL2ltZ3ZpZXcyXzlfMTYwOTkwMzUxMzY4MzQ5MzdfNzdfWzBdybWyvgAAAABJRU5ErkJggg=='/%3E%3C/svg%3E") no-repeat center/100%;}
    .ArticleList .media-body i.vcount {background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Cimage width='25' height='25' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAMAAADzN3VRAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABZVBMVEX////MmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWbMmWb////pzMEwAAAAdXRSTlMAHrr7/fzILKKsr620vgUNwuoPAdDeOtV3suYRBMzcwVfnEwbN370YIB8WHB0CZOPghDvt9POLpbk5lMYaiZOSQ51yxKRzEBUUjOWw6/KNInaCfC+ZmJZQB/FuwHAICeLkin3S3cu70fCxtSrY1uju7/X3+PpXzGmvAAAAAWJLR0QAiAUdSAAAAAd0SU1FB+UCAxMFOkcz7MEAAAErSURBVCjPhZL7MwJRGIbfYklqWWtDVBK5ZrGLWhKiUMlKyKVQLrnf9v932mnsaSfj+fE88553vvk+ALBYW1pNMG3tRMCmWTvsDXQ6NCfAdnVzPTDB9wpw9fUPuAfNZsjjhY8ZdvhHzCYw6sWYB8GaGZ+YtPDkbcoyPRPSjdfD18ysIIpz88CCJC/KS2ANsxyOuJQVHqtRZS22TmdsG8BmnKd76maLmG2SQSK5k2Rpsys5g3spIJKWM/I+3ZM9UNXDHJBVjvLHJ3SmyTx1w5/WCRAa5lEyBoU83XN2buC7oM3fPbg0KDaYqFj65eqa/u2mTKH+01O5RbD5Tivl4h2XMJvQvYCwVn7QnPaqTkqH3M4juZ2nauX5peT2v3Jp6e29kJE/Pr++GSae+wFbMVO6lh85zgAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAyMS0wMi0wM1QxMTowNTo1OCswODowMF7DK2oAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjEtMDItMDNUMTE6MDU6NTgrMDg6MDAvnpPWAAAAIHRFWHRzb2Z0d2FyZQBodHRwczovL2ltYWdlbWFnaWNrLm9yZ7zPHZ0AAAAYdEVYdFRodW1iOjpEb2N1bWVudDo6UGFnZXMAMaf/uy8AAAAXdEVYdFRodW1iOjpJbWFnZTo6SGVpZ2h0ADI1r4tcFgAAABZ0RVh0VGh1bWI6OkltYWdlOjpXaWR0aAAyNVcknJsAAAAZdEVYdFRodW1iOjpNaW1ldHlwZQBpbWFnZS9wbmc/slZOAAAAF3RFWHRUaHVtYjo6TVRpbWUAMTYxMjMyMTU1OGi1luMAAAASdEVYdFRodW1iOjpTaXplADE1MDNCQhuM+GQAAABHdEVYdFRodW1iOjpVUkkAZmlsZTovLy9hcHAvdG1wL2ltYWdlbGMvaW1ndmlldzJfMTBfMTYwOTkwMzUxNDA4MjY1MjJfNjhfWzBdP+tbtAAAAABJRU5ErkJggg=='/%3E%3C/svg%3E") no-repeat center/100%;}
    /*.ArticleList .ArticleCom {
        max-width:1520px;
        min-width:1500px;
        margin:auto;
    }*/
    /*.ArticleCom{ margin-top:10px; margin-bottom:40px;}*/
}
.articleCon .ArticleTxt {
    padding:0; margin:0;
}
@media (max-width: 768px) {
    .ArticleList .media-body .glyphicon {
        top: 0;
    }

    .ArticleList .media-body .date {
        font-size: 14px;
        line-height: 180%;
        display: block !important;
    }

    .ArticleList .ArticleCom {
        min-height:6rem;
    }
    /*.ArticleCom{ margin-bottom:.1rem;}*/
}
                                                                                            
    .articleCon .ArticleTxt {
        font-weight: bold;
    }

    .articleCon .dateCount {
        color: #666;
    }
        .articleCon .dateCount span {
            display:inline-block; vertical-align:middle;
        }
    .articleCon i.timer,.articleCon i.vcount {
        display: inline-block;
        vertical-align: middle;
        width: 25px;
        height:25px;
        margin-right: 8px;
    }
    .articleCon i.timer{cursor:pointer;}
    .articleCon i.vcount{margin-left:25px;}
     .articleCon .aCount{text-align:center;padding:40px 0;border-bottom:1px #dcdcdc solid;}
    .articleCon .aCount .likes{margin-left:5px;}
    .articleCon i.timer {background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='22' viewBox='0 0 25 22'%3E%3Cimage width='25' height='22' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAWCAQAAACftv89AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAHdElNRQflAgQCFzvI8116AAABmklEQVQ4y43SsUvUcRjH8Zc/Oxs8OgfLLcjCRQoiQbgGof4DIXNIocAhayoCp2pzEXRqCHHxP5CjdKwsISKQikiprQYHT+/EPIWehu7yurvqvs/0fT6f9/f7fZ7vI4Qg5aLHvijKW3HPiSDjjtfydnz2SFaq7A1BxpSw571FL3wVnhv2VPjmlUXv7AlTMmVE2rywasTxIOW8Ob8OnHPB0aDTNavCvHQgMSGs6AmVkLgt55akKtdjRZiQ0G3ThuyhWLYcq8tkbdjUzXVhtlZuHGaFG4kBRTnNrSeKBhJnFHxqEvmo4HSiQ2hpEoFMYlu7k03aT2m3nXijw9kmkXMy3nJJWNbVRL+6LAuXSVsQpqu/rSGQmBYWpAX98kpG/oOMKMnrr4zluLBl6B/AkC0/3Dyc5CMeOLBr9C/AqO8O3NXyGwlS7tu1b0xrjb3VmH0lDyvVVovjCsJkdfd0mRSKlRtqkOCKdWFJX3nfZ0lY/7PK2lf3yglrhqVdtSbk9NZ46krtNCPs+GBHmNFZ52jQnzaDXtr0zKC2ev0nmcxfwjAtidIAAAAldEVYdGRhdGU6Y3JlYXRlADIwMjEtMDItMDNUMTg6MjM6NTkrMDg6MDAqU+OwAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIxLTAyLTAzVDE4OjIzOjU5KzA4OjAwWw5bDAAAACB0RVh0c29mdHdhcmUAaHR0cHM6Ly9pbWFnZW1hZ2ljay5vcme8zx2dAAAAGHRFWHRUaHVtYjo6RG9jdW1lbnQ6OlBhZ2VzADGn/7svAAAAF3RFWHRUaHVtYjo6SW1hZ2U6OkhlaWdodAAyMjHvybUAAAAWdEVYdFRodW1iOjpJbWFnZTo6V2lkdGgAMjVXJJybAAAAGXRFWHRUaHVtYjo6TWltZXR5cGUAaW1hZ2UvcG5nP7JWTgAAABd0RVh0VGh1bWI6Ok1UaW1lADE2MTIzNDc4MznrGzjcAAAAEnRFWHRUaHVtYjo6U2l6ZQAxNDc0QkK+dP/oAAAARnRFWHRUaHVtYjo6VVJJAGZpbGU6Ly8vYXBwL3RtcC9pbWFnZWxjL2ltZ3ZpZXcyXzlfMTYwOTkwMzU5MjkwMTg5MjdfMzdfWzBdZQHLjwAAAABJRU5ErkJggg=='/%3E%3C/svg%3E") no-repeat center/100%;}
    .articleCon i.vcount {background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' viewBox='0 0 25 24'%3E%3Cimage width='25' height='24' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAYCAQAAAClvJ5NAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAHdElNRQflAgQCGANnafkrAAABv0lEQVQ4y43TPUjWURQG8J9vqSSIBmXYB6GVFERDEIVREJrREK5uTS0ORURBLUGfEhE1NNRQUJTTC0HTK4ho8BZJQYMigYQkJZRlppKGnAZf/1jhX+9dnnMuz7nnPPe5RSFtFZU5qMaQfIwlyUjZtusqwLd2JNkUQoVe4bomZ017p2JpSqNwt4DPCcfncCZlkJ14VsBvUDcH0yidaCrgA+j7Z3wZK/9qa5PHQmjT4rJf8lYtmEWtS7Keu2ZLIX3IgDCoo1Ch0+YFimk2nBQf1iCj1U+h00YljmixR+mC+zUaF7pccVFe+KxdCPeULaKkJ0J2rk8VbgthzCmZRcX33rStSbjekBlH0zyRUemLT4mwE36Y9CHNdxn91qpO4nJVJo2lU3JKtCXxCevkYiTV3iplhU5nnJQTwoDTav4bunxeaEGpm6YKJ09lhTDqvkYrYv6p7+jV7arqxMk2qHdYXZCx20OjQnilVZV9hoQRX4Vu1YtpX+u8PiEM6jPrgjKr3RBupf2XNY7p8VvIFzIl+r1M/cghaPBdexLlvV6SEnSYslexYs1mPVoOpd64GT1eCN9sWwYl2C9nwkcP7Ap/ALcphB4ePLPyAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIxLTAyLTAzVDE4OjI0OjAzKzA4OjAwJB+p4wAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMS0wMi0wM1QxODoyNDowMyswODowMFVCEV8AAAAgdEVYdHNvZnR3YXJlAGh0dHBzOi8vaW1hZ2VtYWdpY2sub3JnvM8dnQAAABh0RVh0VGh1bWI6OkRvY3VtZW50OjpQYWdlcwAxp/+7LwAAABd0RVh0VGh1bWI6OkltYWdlOjpIZWlnaHQAMjTYjGyAAAAAFnRFWHRUaHVtYjo6SW1hZ2U6OldpZHRoADI1VyScmwAAABl0RVh0VGh1bWI6Ok1pbWV0eXBlAGltYWdlL3BuZz+yVk4AAAAXdEVYdFRodW1iOjpNVGltZQAxNjEyMzQ3ODQzRI9HBQAAABJ0RVh0VGh1bWI6OlNpemUAMTUyMEJCs8OOtgAAAEV0RVh0VGh1bWI6OlVSSQBmaWxlOi8vL2FwcC90bXAvaW1hZ2VsYy9pbWd2aWV3Ml85XzE2MDk5MDM1NDE5MzY3NjE1XzNfWzBdG4HzqAAAAABJRU5ErkJggg=='/%3E%3C/svg%3E") no-repeat center/100%;}





.preNext a {
    color: #000;
}

.preNext .col-sm-2 span {
    display: block;
}

.preNext > div > a {
    opacity: 0.9;
}

    .preNext > div > a:hover {
        opacity: 1;
    }

@media (min-width: 768px) {
    .Article > .container {
        padding-bottom: 20px;
    }

    .articleCon .Articlehead {
        margin-top: 60px;
    }

    .articleCon .ArticleTxt {
        font-size: 36px;
    }

    .articleCon .dateCount {
        font-size: 16px;
        line-height: 50px;
    }
    
.preNext {
    margin-top:20px; margin-bottom:10px;
}
    .preNext a {
        font-size: 16px;
    }

    .preNext .col-sm-2 span {
        margin: 0 20px;
    }

    .preNext, .preNext .col-sm-5, .preNext .col-sm-2 span {
        height: 50px;
        line-height: 50px;
    }
          }
          .preNext div a>span {vertical-align:middle;}
          .preNext div a>i {display:inline-block;height:20px;width:10px;vertical-align:middle;}
          .preNext div a i.pre{margin-right:10px;}
          .preNext div a i.next{margin-left:10px;}
          .preNext div a i.pre{background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='16' viewBox='0 0 9 16'%3E%3Cimage width='9' height='16' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAQCAQAAABuQZ3IAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAHdElNRQflAgQCOAqLMWUtAAAAb0lEQVQY022QMQqAMAxFX930REoVBfEk3sFNEBwEd++piCA4xKXUFJss4ZH8/MQIOsxGhqhk5cBqsHBRCB+YOSkFj5jYqV0tCIyctL5fYOCmU5r0PDR6b0JoDKKDUfmoCW/VBsgdlAfInV2Z33PSFzZYZ/XW+ltSAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIxLTAyLTAzVDE4OjU2OjEwKzA4OjAw9JN2XgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMS0wMi0wM1QxODo1NjoxMCswODowMIXOzuIAAAAgdEVYdHNvZnR3YXJlAGh0dHBzOi8vaW1hZ2VtYWdpY2sub3JnvM8dnQAAABh0RVh0VGh1bWI6OkRvY3VtZW50OjpQYWdlcwAxp/+7LwAAABd0RVh0VGh1bWI6OkltYWdlOjpIZWlnaHQAMTYdr15vAAAAFXRFWHRUaHVtYjo6SW1hZ2U6OldpZHRoADnUkRfvAAAAGXRFWHRUaHVtYjo6TWltZXR5cGUAaW1hZ2UvcG5nP7JWTgAAABd0RVh0VGh1bWI6Ok1UaW1lADE2MTIzNDk3NzAdKHVyAAAAEnRFWHRUaHVtYjo6U2l6ZQAxMDk0QkKrKy4bAAAARnRFWHRUaHVtYjo6VVJJAGZpbGU6Ly8vYXBwL3RtcC9pbWFnZWxjL2ltZ3ZpZXcyXzlfMTYwOTkwMzU0MTcyNTc5MTZfODdfWzBd2e8ARQAAAABJRU5ErkJggg=='/%3E%3C/svg%3E")no-repeat center/100%;}
          .preNext div a i.next{background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='16' viewBox='0 0 9 16'%3E%3Cimage width='9' height='16' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAQCAQAAABuQZ3IAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAHdElNRQflAgQCOA6MXKE0AAAAZ0lEQVQY033QMQrCUAwG4I+eylKlBfEk3qGbIHQouLvqFZVSEDrE1bwHJtsHCfnD0z38Np23W6KgtZoTBXuLKVHQe7kmCo4Wl0TByceYKBhszo2y4t9gtb46QlecalcEcqhie5TP+QLFJnUP6IwM5AAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAyMS0wMi0wM1QxODo1NjoxNCswODowMADcUk0AAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjEtMDItMDNUMTg6NTY6MTQrMDg6MDBxgerxAAAAIHRFWHRzb2Z0d2FyZQBodHRwczovL2ltYWdlbWFnaWNrLm9yZ7zPHZ0AAAAYdEVYdFRodW1iOjpEb2N1bWVudDo6UGFnZXMAMaf/uy8AAAAXdEVYdFRodW1iOjpJbWFnZTo6SGVpZ2h0ADE2Ha9ebwAAABV0RVh0VGh1bWI6OkltYWdlOjpXaWR0aAA51JEX7wAAABl0RVh0VGh1bWI6Ok1pbWV0eXBlAGltYWdlL3BuZz+yVk4AAAAXdEVYdFRodW1iOjpNVGltZQAxNjEyMzQ5Nzc0GkWxawAAABJ0RVh0VGh1bWI6OlNpemUAMTA4NkJCEBOdEAAAAEZ0RVh0VGh1bWI6OlVSSQBmaWxlOi8vL2FwcC90bXAvaW1hZ2VsYy9pbWd2aWV3Ml85XzE2MDk5MDM1MzE3Njg5NzIxXzYzX1swXcp9epEAAAAASUVORK5CYII='/%3E%3C/svg%3E")no-repeat center/100%;}
@media (max-width: 767px) {

        .articleCon .ArticleTxt{
            font-size: .36rem;
            line-height: 180%;
        }
          .preNext div a>i{width:.12rem;}
        .articleCon .dateCount {
            font-size: .24rem;
            line-height: 180%;
        }

    .preNext a {
        font-size: .24rem;
    }

    .preNext, .preNext .col-sm-5, .preNext .col-sm-2 span {
        height: 40px;
        line-height: 40px;
    }

        .preNext div a {
            display: block;
            width: auto;
        }

        .preNext .col-xs-4 {
            text-align: left;
            padding:0px 5px;
        }

    .dateCount span {
        padding: 5px;
    }
}

@media (max-width: 414px) {
    .preNext .col-sm-2 span {
        padding: 0 5px;
    }
}
/**MessageList**/
.messageListCon > span {
    font-weight: bold;
    letter-spacing: 2px;
}

.messageListCon #changeValidateImage:hover {
    text-decoration: underline;
}

#allmap {
    width: 100%;
    overflow: hidden;
    margin: 0;
    font-family: "Arial";
}

.BMap_pop div > div {
    border-radius: 8px;
}

@media (min-width: 768px) {
    .MessageList > .container {
        padding-top: 25px;
        padding-bottom: 40px;
    }

    .messageListCon > span {
        font-size: 30px;
        padding-top: 40px;
        padding-bottom: 15px;
    }

    #allmap {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .MessageList > .container {
        padding-top: .1rem;
        padding-bottom: .3rem;
    }

    .messageListCon > span {
        font-size: .3rem;
        padding-top: .4rem;
        padding-bottom: .15rem;
    }

    .messageListCon .MessageTxt {
        margin-bottom: .2rem;
    }
    /*.SinglePage #allmap{ margin-bottom: -.2rem;}*/
    #allmap {
        height: 5rem;
    }
}
/**SinglePage**/
.singlePageCon {
    float: inherit;
}
.singlePageCon1 {
    float: inherit;
}
.singlePageCon1 img{
    margin-bottom:10px;
}


@media (min-width: 769px) {
    .singlePageCon {
        margin: 20px 40px 0px;
        min-width:1760px;
        max-width:1760px;
        margin:auto;
    }
     .singlePageCon1 {
        margin: 0 40px 0px;
    }
}

@media(max-width: 768px) {
    .singlePageCon1 {
        margin: 0 10px 0px;
    }
}

/*内页菜单*/
@media(min-width: 769px) {
    .NeiMenu_top {
        width: auto;
    }

        .NeiMenu_top .containerNew {
            height: 90px;
            border-bottom: 1px solid #ccc;
            margin: 0 40px;
        }

            .NeiMenu_top .containerNew > h3 {
                border-left: 5px solid #000;
                padding-left: 20px;
                font-size: 30px;
                line-height: 100%;
                display: block;
                margin-top: 40px;
                font-weight: 600;
                width: 25%;
                float: left;
            }


        .NeiMenu .navbar-collapse {
            display: inline-block !important;
        }

            .NeiMenu .navbar-collapse .nav > li:first-of-type {
                margin-left: 0px;
            }

            .NeiMenu .navbar-collapse .nav > li {
                margin-left: 10px;
            }

                .NeiMenu .navbar-collapse .nav > li > a {
                    height: 43px;
                    line-height: 43px;
                    padding: 0 30px;
                    font-size: 16px;
                    font-family:Arial;
                    border: 1px solid #000;
                    cursor:pointer;
                }
                 .NeiMenu .navbar-collapse .nav > li > a.BgColorFFF,.NeiMenu .navbar-collapse .nav > li > a:hover{border: 1px solid #cc9966;}
        .NeiMenu .navbar-header > span {
            display: none;
        }
        .ProductListCon .NeiMenu .navbar-header > span{display:inline-block;}

        .NeiMenu .dropdown-menu {
            z-index: 1000;
        }

            .NeiMenu .dropdown-menu > li > a {
                font-size: 14px;
                height: 50px;
                line-height: 50px;
                padding: 0 15px;
            }
}

@media(max-width: 768px) {
    .NeiMenu_top .containerNew {
        height: 40px;
        background-position: 5px;
        border-bottom: 1px solid #ccc;
        display: none;
        margin: 0 20px;
    }

        .NeiMenu_top .containerNew > h3 {
            padding-left: 10px;
            font-size: 16px;
            line-height: 180%;
            display: block;
            margin-top: 20px;
            font-weight: bold;
            width: 25%;
            float: left;
        }

    .NeiMenu .containerNew { margin: 0 0 .3rem 0; }

        .NeiMenu .navbar-default .navbar-nav > li > a {
            /*padding: 10px;*/
            padding: 0;
            line-height:50px;
        }

        .NeiMenu .navbar-default .navbar-nav .open .dropdown-menu > li > a,
        .NeiMenu .navbar-default .navbar-nav .open .dropdown-menu .dropdown-header {
            padding: 0 .15rem 0 .4rem;
            border-color: #fafafa;
            height: 40px;
            line-height: 40px;
        }

        .NeiMenu .caret-right,.NeiMenu .caret {
            display:none;
            right: 10px;
            top: 20px;
        }
        .NeiMenu .dropdown{position:relative;}         
        .NeiMenu .wapdrow{display:inline-block;height:8px;width:8px;top:50%;transform:translateY(-50%);right:10px;position:absolute;background:url(/skin/img/jia.png) no-repeat center/100%;}
        .NeiMenu .chosed>.wapdrow{background:url(/skin/img/jian.png) no-repeat center/100%;}
        .NeiMenu .BgColorFFF>.wapdrow{display:inline-block;height:8px;width:8px;top:50%;transform:translateY(-50%);right:10px;position:absolute;background:url(/skin/img/jia-1.png) no-repeat center/100%;}
        .NeiMenu .BgColorFFF.chosed>.wapdrow{background:url(/skin/img/jian-1.png) no-repeat center/100%;}
        .nav .dropdown a{border-bottom:0;}
    .main-navigation {
        /*border: 1px solid #000;*/
        background:#f3f3f3;border-radius:.5rem;
    }

    .NeiMenu .navbar-header {
        height: 1rem;
        line-height: 1rem;
        text-align: left;
        padding:0 .3rem;
    }

        .NeiMenu .navbar-header > span {
            font-size: 18px;
        }

        .NeiMenu .navbar-header .navbar-toggle {
            line-height: 1rem;
            height: 1rem;
            background:url(/Skin/img/Sarrow.png)no-repeat center/100%;
            width: .15rem;
            padding: 0 .14rem;
            /*position: absolute;
            right: 10px;*/
        }

    .NeiMenu .navbar-collapse {
        border-top: 1px solid #ddd;
        width: 100%;
        right: 0;
        top: auto;
    }

    .NeiMenu .dropdown-menu > li > a {
        font-size: 14px;
    }
}


@media(max-width:414px) {
    .NeiMenu .navbar-header > span {
        font-size: 16px;
    }

    .NeiMenu_top .containerNew {
        height: 30px;
        background: url('/Skin/img/left.png') no-repeat left;
        background-position: 5px;
        border-bottom: 1px solid #d8d8d8;
        display: none;
    }

        .NeiMenu_top .containerNew > h3 {
            padding-left: 10px;
            font-size: 16px;
            line-height: 180%;
            display: block;
            margin-top: 10px;
            font-weight: bold;
            width: 25%;
            float: left;
        }
}

.NeiMenu .navbar-default .navbar-nav {
    margin: 0px -1px!important;
    width: auto !important;
}

    .NeiMenu .navbar-default .navbar-nav > li > a {
        z-index: 102;
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        -ms-transition: none;
        transition: none;
        background: #fff;
    }

        .NeiMenu .navbar-default .navbar-nav > li > a:hover {
            -webkit-transition: all 0.2s ease-out;
            -moz-transition: all 0.2s ease-out;
            -o-transition: all 0.2s ease-out;
            -ms-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
        }

    .NeiMenu .navbar-default .navbar-nav > .active > a,
    .NeiMenu .navbar-default .navbar-nav > .active > a:focus {
        color: #e2001c;
        border-color: #e2001c;
        background-color: transparent;
    }

        .NeiMenu .navbar-default .navbar-nav > .active > a:hover {
            background-color: transparent;
        }

.NeiMenu .main-navigation .navbar-nav > .open > a,
.NeiMenu .main-navigation .navbar-nav > .open > a:hover,
.NeiMenu .main-navigation .navbar-nav > .open > a:focus {
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: -1px -1px 0px rgba(0, 0, 0, 0.03);
    box-shadow: -1px -1px 0px rgba(0, 0, 0, 0.03);
}

    .NeiMenu .main-navigation .navbar-nav > .open > a:active,
    .NeiMenu .main-navigation .navbar-nav > .open.active > a:active {
        background-color: #ffffff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: transparent;
        -webkit-transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        -ms-transition: all 0.1s ease-in-out;
        transition: all 0.1s ease-in-out;
    }

        .NeiMenu .main-navigation .navbar-nav > .open > a:active + ul,
        .NeiMenu .main-navigation .navbar-nav > .open.active > a:active + ul {
            display: none;
        }

.NeiMenu .dropdown-menu {
    min-width: 200px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    padding: 0;
    margin: 0;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;
    z-index: 101;
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    z-index: 1111;
}

    .NeiMenu .dropdown-menu > li > a {
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        -ms-transition: none;
        transition: none;
    }

    .NeiMenu .dropdown-menu .dropdown-menu {
        top: -1px;
        left: 100% !important;
        padding-top: 0;
        margin-left: 1px;
        border-left: none;
        -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
        box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
        border-top: 1px solid #f1f1f1;
    }
    @media(max-width:768px){
        .NeiMenu .dropdown-menu .dropdown-menu{
            top:unset !important;
            left:unset !important;
        }
    }

.NeiMenu .mega-menu.dropdown {
    position: static;
}

.NeiMenu .mega-menu .dropdown-menu {
    left: 0;
    top: 96%;
    width: 100%;
    padding: 20px 30px;
}

.NeiMenu .mega-menu .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.NeiMenu .mega-menu h4.title {
    margin: 10px 0 5px;
    font-size: 14px;
    text-transform: uppercase;
}

.NeiMenu .mega-menu .menu > li > a {
    padding: 5px 0;
    font-size: 15px;
    color: #666666;
    border-bottom: 1px solid #f1f1f1;
    display: block;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    -ms-transition: none;
    transition: none;
}

    .NeiMenu .mega-menu .menu > li > a i,
    .NeiMenu .dropdown-menu > li > a i {
        padding-right: 5px;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

.NeiMenu .mega-menu .menu > li:last-child > a {
    border-bottom: none;
}

.NeiMenu .mega-menu .menu > li > a:hover i,
.NeiMenu .dropdown-menu > li > a:hover i {
    padding-left: 5px;
}

.NeiMenu .mega-menu .menu > li > a:hover,
.NeiMenu .mega-menu .menu > li > a:focus {
    background-color: #ffffff;
    color: #e84c3d;
    border-color: #f1f1f1;
    text-decoration: none;
}

.NeiMenu .main-navigation.main-navigation .open .dropdown-menu,
.NeiMenu .open .dropdown-animation {
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDownSmall;
    animation-name: fadeInDownSmall;
}

.NeiMenu .open .dropdown-animation {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

.NeiMenu .main-navigation.main-navigation .dropdown-menu .open .dropdown-menu {
    -webkit-animation-name: fadeInLeftSmall;
    animation-name: fadeInLeftSmall;
}

.NeiMenu .navbar-default .navbar-toggle .icon-bar {
    margin-bottom: .06rem;
    width: .4rem;
    height: 3px;
    background: #999;
    border-radius: .1rem;
}

@media (min-width:769px) {
    .NeiMenu {
        margin:0;
    }   
    .NeiMenu .main-navigation{text-align:center;margin-bottom:50px;}    
    .NeiMenu .main-navigation .navbar-nav.navbar-right:last-child {
        margin-right: 0;
    }

    .NeiMenu .navbar.navbar-default {
        background-color: transparent;
        border-color: transparent;
    }

    .NeiMenu .navbar-collapse {
        padding-right: 0px;
        padding-left: 0px;
        margin:auto;
    }

    .NeiMenu .main-navigation .navbar-right .dropdown-menu {
        right: auto;
        left: 0;
    }

    .NeiMenu .main-navigation .navbar-right > li:last-child > .dropdown-menu {
        right: 0;
        left: auto;
    }
}

@media (min-width:769px) and (max-width:1199px) {
    .NeiMenu .main-navigation .container-fluid {
        padding-right: 0px;
        padding-left: 0px;
    }
}

@media (min-width:768px) and (max-width:1199px) {
        .NeiMenu .navbar-default .navbar-nav > li {
            margin-bottom: 10px;
            margin-left: 16px;
        }
    /*.NeiMenu .navbar-default .navbar-nav > li > a {
		padding-right: 19px;
	}*/
}

@media (min-width:1200px) {
}

@media (max-width:768px) {
.divFloatBar {display:none;}
.Foot_menu {display:block;}
    .NeiMenu .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
    .NeiMenu .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
    .NeiMenu .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #e84c3d;
        background-color: transparent;
    }

    .NeiMenu .navbar-default .navbar-nav > li > a {
        border-bottom: 1px solid #ddd;
        font-size: 16px;
        height: auto;
    }

    .NeiMenu .navbar-default .navbar-nav > li:last-child > a {
        border-bottom: 1px solid transparent;
    }

    .NeiMenu .main-navigation .navbar-nav > .open > a,
    .NeiMenu .main-navigation .navbar-nav > .open > a:hover,
    .NeiMenu .main-navigation .navbar-nav > .open > a:focus {
        border-color: transparent;
        -moz-box-shadow: none;
        -o-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .NeiMenu .navbar-default .navbar-nav .open .dropdown-menu {
        background-color: #ffffff;
    }

    .NeiMenu .navbar-nav .open .dropdown-menu .dropdown-menu > li > a {
        padding-left: 60px;
    }

    .NeiMenu .navbar-nav .open .dropdown-menu .dropdown-menu .dropdown-menu > li > a {
        padding-left: 80px;
    }

    .NeiMenu .dropdown > a:before {
        right: 32px;
    }

    .NeiMenu .dropdown .dropdown > a:before {
        right: 36px;
    }
}
/*搜索*/
    .search-bar {
        width: 250px;
        margin: 2% auto 0;
        position: relative;
    }

        .search-bar input[type="text"] {
            width: 100%;
            padding: 4px 45px 4px 15px;
            height: 40px;
            border: 1px solid #ddd;
            background: none;
            display: inline-block;
            outline: none;
            -webkit-appearance: none;
            vertical-align: -webkit-baseline-middle;
            color: #666;
            font-size: 1em;
            border-radius: 30px;
        }

        .search-bar input[type="submit"] {
            background: url(/Skin/images/search.png)no-repeat center;

            display: inline-block;
            vertical-align: -webkit-baseline-middle;
            width: 35px;
            height: 40px;
            margin-right: 5px;
            position: absolute;
            right: 0px;
            top: 0px;
        }
   @media(max-width:768px){
         nav.navbar .search-bar{width:100%;margin:auto;float:unset !important;margin-bottom:10px;padding:0 10px;}
        .search-bar input[type="text"]{border-radius:5px;}
        .search-bar input[type="submit"]{margin-right:0;width:40px;background-color:#bebebe;border-radius:5px;margin-right:10px;}
   }

/*====右侧浮动条====*/
.divFloatBar {
    _position: absolute;
    position: fixed;
    bottom: 50%;
    right: 0;
    z-index: 9999;
    font-size: 14px;
}

    .divFloatBar a {
        font-size: 14px;
    }

.ulBar {
    float: right;
    padding: 0px;
    margin: 0px;
}

    .ulBar li {
        display: block;
        position: relative;
        /*opacity: 0.8 !important;*/
        /*filter: alpha(opacity=80);*/
    }

        .ulBar li.liShow {
            opacity: 0.8 !important;
            filter: alpha(opacity=60);
            cursor: pointer;
        }

        .ulBar li .imgTriangle {
            display: none;
            position: absolute;
            z-index: 99;
        }

        .ulBar li:hover {
            opacity: 1 !important;
            filter: alpha(opacity=100);
        }

        .ulBar li .float_menu_img2 {
            display: none;
        }

        .ulBar li .divShowD {
            display: none;
            position: absolute;
            z-index: 22;
            min-width: 130px;
            min-height: 20px;
            background: #fff;
            border: 1px solid #ccc;
            padding: 10px;
            top: 0px;
            white-space: nowrap;
        }

            .ulBar li .divShowD p {
                margin: 5px 0px;
            }

        .ulBar li:hover .divShowD {
            display: block;
        }

        .ulBar li:hover .imgTriangle {
            display: block;
        }

        .ulBar li .divShowD > div {
            height: auto !important;
            margin-left: 0 !important;
            margin-top: 0 !important;
            min-width: 228px !important;
        }

@media (min-width: 768px) {
    .ulBar {
        width: 60px;
        height: 30px;
    }

        .ulBar li {
            width: 60px;
            height: 60px;
        }

            .ulBar li.liShow {
                height: 30px;
            }

            .ulBar li .imgTriangle {
                top: 25px;
                right: 52px;
            }

            .ulBar li .divShowD {
                right: 60px;
            }
}

@media (max-width: 767px) {
    .ulBar {
        width: 50px;
        height: 20px;
    }

        .ulBar li {
            width: 50px;
            height: 50px;
        }

            .ulBar li.liShow {
                height: 25px;
            }

        .ulBar .ItImg, #liShow_Img {
            width: 100%;
        }

        .ulBar li .imgTriangle {
            top: 18px;
            right: 42px;
        }

        .ulBar li .divShowD {
            right: 50px;
        }
}
/*=幻灯片样式二=*/
.main_image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

    .main_image ul {
        width: 9999px;
        height: 600px;
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
    }

    .main_image li {
        float: left;
        width: 100%;
        height: 600px;
    }

        .main_image li span {
            display: block;
            width: 100%;
            height: 600px;
        }

        .main_image li a {
            display: block;
            width: 100%;
            height: 600px;
        }

div.flicking_con {
    position: relative;
    z-index: 99;
    width: 100%;
    margin: 0 auto;
}

    div.flicking_con .flicking_inner {
        position: absolute;
        bottom:20px;
        width: 100%;
        height: 21px;
        text-align: center;
    }
    /* 121126 */
    div.flicking_con span {
        cursor: pointer;
        display: inline-block;
        width: 21px;
        height: 21px;
        line-height: 70px;
        overflow: hidden;
        margin: 0;
        padding: 0;
        background: url('/Skin/images/btn_main_img.png') 0 0 no-repeat;
    }

        div.flicking_con span.on {
            background-position: 0 -21px;
        }

#btn_prev, #btn_next {
    z-index: 11111;
    position: absolute;
    display: block;
    width: 46px !important;
    height: 59px !important;
    top: 50%;
    margin-top: -29px;
    display: none;
}

#btn_prev {
    background: url(/Skin/images/hover_left.png) no-repeat left top;
    left: 100px;
}

#btn_next {
    background: url(/Skin/images/hover_right.png) no-repeat right top;
    right: 100px;
}

@media(max-width: 991px) {
    #btn_next, #btn_prev {
        display: none !important;
    }
}


@media(max-width: 767px) {
    div.flicking_con .flicking_inner {
        bottom: 0rem;
    }

    div.flicking_con span {
        cursor: pointer;
        display: inline-block;
        width: 10px;
        height: 10px;
        line-height: 70px;
        overflow: hidden;
        margin: 0;
        padding: 0;
        background: url('/Skin/images/btn_main_img.png') 0 0 no-repeat;
        background-size: cover;
    }
        div.flicking_con span.on {
            background-position: 0 -10px;
        }
}


/* SlideBanner.css */
#et-slider-wrapper {
    position: relative;
    width: 100%;
}

.et-slide {
    background-repeat: no-repeat;
    background-position: top center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

    .et-slide .container {
        padding: 220px 0 0;
    }

    .et-slide .description {
        text-shadow: 0 2px 2px rgba(0,0,0,0.3);
        color: #fff;
        font-size: 18px;
        float: left;
        width: 412px;
        padding-top: 95px;
        -webkit-animation-duration: .6s;
        -webkit-animation-delay: .4s;
        -webkit-animation-timing-function: ease;
        -webkit-animation-fill-mode: both;
        -moz-animation-duration: .6s;
        -moz-animation-delay: .4s;
        -moz-animation-timing-function: ease;
        -moz-animation-fill-mode: both;
        -ms-animation-duration: .6s;
        -ms-animation-delay: .4s;
        -ms-animation-timing-function: ease;
        -ms-animation-fill-mode: both;
        animation-duration: .6s;
        animation-delay: .4s;
        animation-timing-function: ease;
        animation-fill-mode: both;
        -webkit-animation-name: fadeInUp;
        -moz-animation-name: fadeInUp;
        -o-animation-name: fadeInUp;
        animation-name: fadeInUp;
    }

.description h2 {
    font-size: 60px;
    color: inherit;
}

    .description h2 a {
        color: #fff;
    }

        .description h2 a:hover {
            text-decoration: none;
            color: rgba(255,255,255,0.95);
        }

.subtitle {
    font-size: 32px;
    text-transform: uppercase;
    color: #c3e54b;
}
.description .more {
    float: right;
    display: inline-block;
    text-transform: uppercase;
    font-size: 24px;
    color: #fff;
    text-shadow: 0 -1px 1px rgba(0,0,0,0.8);
    padding: 17px 28px;
    border: 1px solid #17242a;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 3px 3px rgba(0,0,0,0.3);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 3px 3px rgba(0,0,0,0.3);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 3px 3px rgba(0,0,0,0.3);
    background: #2a3f4a;
    background: -moz-linear-gradient(top, #2a3f4a 0%, #1e2f37 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2a3f4a), color-stop(100%,#1e2f37)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #2a3f4a 0%,#1e2f37 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #2a3f4a 0%,#1e2f37 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #2a3f4a 0%,#1e2f37 100%); /* IE10+ */
    background: linear-gradient(to bottom, #2a3f4a 0%,#1e2f37 100%); /* W3C */
}

    .description .more:hover {
        color: rgba(255,255,255,0.9);
        text-decoration: none;
    }

.featured-image {
    float: right;
    width: 535px;
    -webkit-animation-duration: .6s;
    -webkit-animation-delay: .8s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-duration: .6s;
    -moz-animation-delay: .8s;
    -moz-animation-timing-function: ease;
    -moz-animation-fill-mode: both;
    -ms-animation-duration: .6s;
    -ms-animation-delay: .8s;
    -ms-animation-timing-function: ease;
    -ms-animation-fill-mode: both;
    animation-duration: .6s;
    animation-delay: .8s;
    animation-timing-function: ease;
    animation-fill-mode: both;
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn;
}

.js .et-slide {
    display: none;
}

    .js .et-slide:first-child {
        display: block;
    }

.et-slider-arrows a {
    overflow: hidden;
    display: block;
    background-repeat: no-repeat;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    margin-top: -40px;
    text-indent: -9999px;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

#et-slider-wrapper .et-arrow-prev {
    left: 60px;
    background: url(/Skin/images/arrow.png);
}

#et-slider-wrapper .et-arrow-next {
    right: 60px;
    background: url(/Skin/images/arrow.png) 80px 0;
}

#et-slider-wrapper:hover .et-slider-arrows a {
    opacity: 1;
}

#et-slider-wrapper:hover .et-arrow-prev {
    left: 80px;
}

#et-slider-wrapper:hover .et-arrow-next {
    right: 80px;
}

#et-slider-controls {
    position: absolute;
    bottom: 75px;
    left: 0;
    bottom: 20px;
    width: 100%;
}

    #et-slider-controls .et-controllers {
        width: 100%;
        text-align: center;
        height: 17px;
    }

        #et-slider-controls .et-controllers a {
            overflow: hidden;
            display: inline-block;
            width: 52px;
            height: 3px;
            text-indent: -9999px;
            margin: 0 3px;
            background: #ccc;
        }

            #et-slider-controls .et-controllers a.et-active-control {
                background: #ff072a;
            }

.et-controllers a.et-active-control:hover {
    cursor: default;
}

@media (max-width: 767px) {
    #et-slider-controls .et-controllers a {
        width: 20px;
        height: 5px;
    }
}
/*------------------------------------------------*/
/*-------------------[COMMENTS]-------------------*/
/*------------------------------------------------*/

.commentlist, #respond {
    padding: 40px;
}

#comments, #reply-title {
    font-size: 30px;
    text-transform: uppercase;
}

.comment-body {
    position: relative;
    padding: 0 0 0 75px;
    margin: 20px 0;
}

.comment_avatar {
    position: absolute;
    top: 0;
    left: 0;
}

    .comment_avatar img {
        display: block;
    }

    .comment_avatar:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -moz-box-shadow: inset 0 0 7px rgba(0,0,0,0.5);
        -webkit-box-shadow: inset 0 0 7px rgba(0,0,0,0.5);
        box-shadow: inset 0 0 7px rgba(0,0,0,0.5);
    }

.comment_postinfo {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.fn, .fn a {
    color: #454545;
    text-decoration: none;
}

.comment_date {
    color: #c3e54b;
    margin-left: 4px;
}

.comment-reply-link, .form-submit #submit {
    float: right;
    position: relative;
    padding-right: 12px;
    color: #454545;
    font-size: 18px;
    text-transform: uppercase;
}

    .comment-reply-link:hover {
        color: #111;
        text-decoration: none;
    }

    .comment-reply-link:before {
        content: '\00BB';
        position: absolute;
        top: 0;
        right: 0;
        color: #C3E54B;
    }

.commentlist .children {
    padding-left: 75px;
}

#respond {
    margin-top: 60px;
}

#commentform input[type="text"] {
    width: 40%;
}

#commentform textarea {
    width: 89%;
}

#commentform textarea, #commentform input[type="text"] {
    border: 1px solid #e0dddd;
    padding: 20px;
    color: #555e58;
    font-size: 14px;
    background: #fff;
    -moz-box-shadow: inset 0 0 7px rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0 0 7px rgba(0,0,0,0.1);
    box-shadow: inset 0 0 7px rgba(0,0,0,0.1);
}

#reply-title small {
    display: block;
    font-size: 12px;
    padding-top: 5px;
    font-weight: bold;
    letter-spacing: 0;
    font-family: 'Open Sans', Arial, sans-serif;
}

.form-submit {
    text-align: right;
}

    .form-submit input {
        font-size: 14px;
        float: none;
    }

.comment #respond, #trackbacks {
    margin-bottom: 30px;
}

.comment #respond {
    background: none;
    -moz-box-shadow: none;
    -webkit-filter: none;
    filter: none;
    padding: 0;
    margin-top: 32px;
}

.form-submit #submit {
    background: none;
    border: none;
}

/*------------------------------------------------*/
/*---------------------[FOOTER]-------------------*/
/*------------------------------------------------*/

#footer-widgets {
    border-top: 1px solid #d8d8d8;
    padding: 99px 0 59px;
    text-shadow: 1px 1px 0 #fff;
    background-color: #ececec;
}

#footer-copyright {
    margin-top: -9px;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 16px;
    color: #c5c5c5;
    margin-bottom: -5px;
}

.footer-widget {
    float: left;
    width: 280px;
    margin-right: 60px;
    color: #787878;
}

    .footer-widget h4.widgettitle {
        font-size: 30px;
        padding-bottom: 9px;
        text-transform: uppercase;
        color: #454545;
    }

#footer-bottom {
    padding: 55px 0 25px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.bottom-nav li {
    float: left;
    padding-right: 22px;
}

    .bottom-nav li.current_page_item a {
        color: #c3e54b;
        font-weight: 800;
    }

    .bottom-nav li a {
        color: #fff;
        text-decoration: none;
    }

        .bottom-nav li a:hover {
            color: #eee;
        }

p#copyright {
    text-align: right;
    font-size: 12px;
    color: #fff;
}

    p#copyright a {
        color: #fff;
        font-weight: 800;
    }

.f_widget {
    margin-bottom: 25px;
}


/*------------------------------------------------*/
/*--------------------[SIDEBAR]-------------------*/
/*------------------------------------------------*/

#sidebar {
    float: left;
    width: 290px;
}

    #sidebar a, #footer-widgets a {
        color: #454545;
    }

        #sidebar a:hover, #footer-widgets a:hover {
            color: #111;
            text-decoration: none;
        }

.widget {
    margin-bottom: 42px;
    text-shadow: 1px 1px 0 #fff;
}

    .widget h4.widgettitle {
        font-size: 30px;
        text-transform: uppercase;
        padding-bottom: 14px;
        color: #454545;
    }

    .widget li, .f_widget li {
        padding: 0 0 15px 15px;
        background: url(/App_Style/images/widget-bullet.png) no-repeat 0 6px;
    }

        .widget li:hover, .f_widget li:hover {
            background-image: url(/App_Style/images/hover-widget-bullet.png);
        }

        .f_widget li ul, .widget li ul {
            margin: 15px 0 -15px;
        }

/*------------------------------------------------*/
/*------------[CAPTIONS AND ALIGNMENTS]-----------*/
/*------------------------------------------------*/

div.post .new-post .aligncenter, .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    border: 1px solid #ddd;
    text-align: center;
    background-color: #f3f3f3;
    padding-top: 4px;
    margin-bottom: 10px;
    max-width: 96%;
    padding: 8px;
}

    .wp-caption.alignleft {
        margin: 0px 10px 10px 0px;
    }

    .wp-caption.alignright {
        margin: 0px 0px 10px 10px;
    }

    .wp-caption img {
        margin: 0;
        padding: 0;
        border: 0 none;
    }

    .wp-caption p.wp-caption-text {
        font-size: 11px;
        line-height: 17px;
        padding: 0 4px 5px;
        margin: 0;
    }

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

img.alignleft {
    display: inline;
    float: left;
    margin-right: 15px;
}

img.alignright {
    display: inline;
    float: right;
    margin-left: 15px;
}

#mobile_menu {
    position: absolute;
    top: 30px;
    left: -52px;
    text-align: left;
}

    #mobile_menu a {
        font-weight: 300;
        color: #fff;
        text-decoration: none;
    }

    #mobile_menu ul {
        display: block !important;
        visibility: visible !important;
    }

        #mobile_menu ul a {
            padding-left: 40px;
        }

        #mobile_menu ul ul a {
            padding-left: 60px;
        }

        #mobile_menu ul ul ul a {
            padding-left: 80px;
        }

/*------------------------------------------------*/
/*-----------------[WP CALENDAR]-----------------*/
/*------------------------------------------------*/
#wp-calendar {
    empty-cells: show;
    margin: 10px auto 0;
    width: 240px;
}

    #wp-calendar a {
        display: block;
        text-decoration: none;
        font-weight: bold;
    }

        #wp-calendar a:hover {
            text-decoration: underline;
        }

    #wp-calendar caption {
        text-decoration: none;
        font: bold 13px Arial, Sans-Serif;
    }

    #wp-calendar td {
        padding: 3px 5px;
    }

        #wp-calendar td#today {
            color: #111;
            font-weight: bold;
        }

    #wp-calendar th {
        font-style: normal;
        text-transform: capitalize;
        padding: 3px 5px;
    }

    #wp-calendar #prev a, #wp-calendar #next a {
        font-size: 9pt;
    }

    #wp-calendar #next a {
        padding-right: 10px;
        text-align: right;
    }

    #wp-calendar #prev a {
        padding-left: 10px;
        text-align: left;
    }

/*------------------------------------------------*/
/*-------------------[PAGE NAVI]------------------*/
/*------------------------------------------------*/
.pagination {
    overflow: hidden;
    padding: 20px 0;
}

#content .wp-pagenavi {
    text-align: right;
}

    #content .wp-pagenavi a, #content .wp-pagenavi span {
        background: #fff;
        -moz-box-shadow: 0 0 5px rgba(0,0,0,0.1);
        -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.1);
        box-shadow: 0 0 5px rgba(0,0,0,0.1);
        border: none;
        padding: 14px 18px;
        font-size: 18px;
        color: #d8d8d8;
        font-weight: normal !important;
        margin: 0 4px;
    }

        #content .wp-pagenavi span.current, #content .wp-pagenavi a:hover {
            color: #454545;
        }

    #content .wp-pagenavi .nextpostslink, #content .wp-pagenavi .previouspostslink {
        color: #c3e54b;
    }

    #content .wp-pagenavi .pages {
        background: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.mobile_nav, #mobile_menu {
    display: none;
}

.fullwidth #left-area {
    float: none;
    width: auto;
}

.entry .wp-pagenavi {
    padding-top: 30px;
}

.et_embedded_videos {
    display: none;
}

.et_pt_gallery_entry {
    margin-left: 67px !important;
}

#et_pt_portfolio_gallery {
    margin-left: -33px !important;
}

.et_pt_portfolio_item {
    margin-left: 16px !important;
}

.et_portfolio_large .et_pt_portfolio_item {
    width: 420px !important;
}

@media only screen and ( max-width: 1002px ) {
    #et-search, p#et-search-title, p#et-search-title span {
        background: none !important;
    }

    #et-search {
        width: auto !important;
        height: auto !important;
    }

    #et-search-inner {
        padding: 0 !important;
    }

    #et-search-right {
        float: none !important;
        clear: both;
        text-align: left !important;
    }

    #et_search_submit {
        background: #BBB8B8 !important;
        color: #111 !important;
    }

    p#et-search-title {
        margin-bottom: 2px !important;
    }

        p#et-search-title span {
            padding: 0 !important;
            text-shadow: none !important;
        }

    #et-searchinput {
        width: auto !important;
    }

    p#et_choose_posts, p#et_choose_pages, p#et_choose_date, p#et_choose_cat {
        float: none !important;
    }

    #et-search-left {
        float: none !important;
        width: 100% !important;
    }
}

@media only screen and ( min-width: 768px ) and ( max-width: 1002px ) {
    #logo {
        float: none;
    }

    #menu-wrap {
        float: none;
        clear: both;
        padding-top: 38px;
    }

    .et-slide .container {
        padding-top: 250px;
    }

    .et-slide .description {
        width: 277px;
        padding-top: 32px;
    }

    .description h2 {
        font-size: 48px;
    }

    .featured-image, #et-slider-controls .et-controllers {
        width: 402px;
        margin: 0 auto;
    }

    .et-slider-arrows a {
        top: 413px;
    }

    #et-slider-wrapper .et-arrow-prev {
        left: 0;
    }

    #et-slider-wrapper .et-arrow-next {
        right: 0;
    }

    #et-slider-wrapper:hover .et-arrow-prev {
        left: 25px;
    }

    #et-slider-wrapper:hover .et-arrow-next {
        right: 25px;
    }

    .subtitle, .service h3, .testimonial .title, .footer-widget h4.widgettitle {
        font-size: 24px;
    }

    .description .more {
        font-size: 18px;
    }

    .service {
        margin-right: 35px;
        width: 155px;
    }

    #testimonials {
        width: 313px;
    }

    .testimonial {
        padding: 30px 26px 27px 39px;
    }

        .testimonial .title {
            padding-bottom: 3px;
        }

        .testimonial span.title {
            display: block;
        }

    #recent-updates {
        width: 331px;
    }

    #logos img {
        max-width: 136px;
    }

    .footer-widget {
        margin-right: 52px;
        width: 208px;
    }

    #left-area {
        width: 472px;
    }

    #sidebar {
        width: 209px;
    }

    .page-title-area {
        padding-top: 95px;
    }

        .page-title-area h1 {
            font-size: 48px;
        }

    .entry .meta-info {
        font-size: 24px;
    }

    #et_pt_portfolio_gallery {
        margin-left: -35px !important;
    }

    .et_pt_portfolio_item {
        margin-left: 13px !important;
        width: 201px !important;
    }

    .et_portfolio_more_icon, .et_portfolio_zoom_icon {
        top: 50px !important;
    }

    .et_portfolio_more_icon {
        left: 65px !important;
    }

    .et_portfolio_zoom_icon {
        left: 106px !important;
    }

    #et_pt_portfolio_gallery.et_portfolio_small {
        margin-left: -18px !important;
    }

        #et_pt_portfolio_gallery.et_portfolio_small .et_pt_portfolio_item {
            margin-left: 8px !important;
            width: 117px !important;
        }

        #et_pt_portfolio_gallery.et_portfolio_small .et_portfolio_more_icon, #et_pt_portfolio_gallery.et_portfolio_small .et_portfolio_zoom_icon {
            top: 20px !important;
        }

        #et_pt_portfolio_gallery.et_portfolio_small .et_portfolio_more_icon {
            left: 26px !important;
        }

        #et_pt_portfolio_gallery.et_portfolio_small .et_portfolio_zoom_icon {
            left: 62px !important;
        }

    #et_pt_portfolio_gallery.et_portfolio_large {
        margin-left: -28px !important;
    }

        #et_pt_portfolio_gallery.et_portfolio_large .et_pt_portfolio_item {
            margin-left: -3px !important;
            width: 321px !important;
        }

        #et_pt_portfolio_gallery.et_portfolio_large .et_portfolio_more_icon, #et_pt_portfolio_gallery.et_portfolio_large .et_portfolio_zoom_icon {
            top: 99px !important;
        }

        #et_pt_portfolio_gallery.et_portfolio_large .et_portfolio_more_icon {
            left: 140px !important;
        }

        #et_pt_portfolio_gallery.et_portfolio_large .et_portfolio_zoom_icon {
            left: 178px !important;
        }
}

@media only screen and ( max-width: 767px ) {
    .top-content.container {
        text-align: center;
    }

    #logo, #top-menu {
        float: none;
    }

    #social-icons, .description p {
        display: none;
    }

    .description .subtitle {
        display: block;
    }

    .description .more {
        font-size: 18px;
        float: left;
        padding: 17px;
    }

    .et-slide .container {
        padding-top: 233px;
    }

    .et-slide .description {
        width: 203px;
        padding-top: 22px;
    }

    .featured-image {
        width: 211px;
    }

    #et-slider-controls .et-controllers {
        width: 100%;
        text-align: center;
    }

    #et-slider-controls {
        bottom: .2rem;
    }

    #et-slider-wrapper .et-arrow-prev {
        left: 0;
    }

    #et-slider-wrapper .et-arrow-next {
        right: 0;
    }

    #et-slider-wrapper:hover .et-arrow-prev {
        left: 10px;
    }

    #et-slider-wrapper:hover .et-arrow-next {
        right: 10px;
    }

    .description h2 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }

    .service {
        float: none;
        margin-bottom: 35px;
    }

        .service h3, .footer-widget h4.widgettitle {
            font-size: 24px;
        }

    .service {
        margin-right: 0;
        width: 414px;
    }

    #testimonials, #recent-updates {
        float: none;
        width: auto;
    }

    #testimonials {
        margin: 0 0 50px 24px;
    }

    .testimonial {
        padding: 32px 36px 27px 39px;
    }

    #recent-updates {
        margin-left: 60px;
    }

    #logos {
        padding-bottom: 0;
    }

        #logos img {
            max-width: 189px;
            margin-bottom: 50px;
        }

        #logos a:nth-child(2) {
            margin-right: 0;
        }

    .footer-widget {
        margin-right: 0;
        width: auto;
        margin-bottom: 50px;
        float: none;
    }

        .footer-widget.last {
            margin-bottom: 0;
        }

    #footer-bottom .container, p#copyright {
        text-align: center;
    }

    .bottom-nav {
        display: inline-block;
    }

    p#copyright {
        padding-top: 25px;
    }

    #menu-wrap, #sidebar {
        display: none;
    }

    .mobile_nav {
        display: inline-block;
    }

    #et_mobile_nav_menu {
        margin-top: 45px;
    }

    .mobile_nav {
        padding-bottom: 8px;
    }

        .mobile_nav:hover {
            text-decoration: none;
        }

    .page-title-area {
        padding-top: 51px;
    }

        .page-title-area h1 {
            font-size: 48px;
        }

        .page-title-area .subtitle, .entry .meta-info {
            font-size: 24px;
        }

    #left-area {
        float: none;
        margin-right: 0;
        width: auto;
    }

    #et_pt_gallery {
        margin-left: -44px !important;
        margin-right: -40px !important;
    }

    .et_pt_gallery_entry {
        margin-left: 7px !important;
    }

    #et_contact_right {
        width: 50% !important;
        margin-left: 0 !important;
        float: none !important;
    }

    .sitemap-col {
        float: none !important;
        width: auto !important;
    }

    .et_pt_portfolio_item {
        margin-left: 30px !important;
    }

    .et_portfolio_small .et_pt_portfolio_item {
        width: 380px !important;
        margin-bottom: 10px;
    }

    .et_portfolio_small .et_pt_portfolio_entry {
        float: left;
        margin-right: 15px;
    }

    .et_portfolio_small .et_portfolio_more_icon, .et_portfolio_small .et_portfolio_zoom_icon {
        top: 30px !important;
    }

    .et_portfolio_small .et_portfolio_more_icon {
        left: 38px !important;
    }

    .et_portfolio_small .et_portfolio_zoom_icon {
        left: 77px !important;
    }

    #et_pt_portfolio_gallery.et_portfolio_large {
        margin-left: 0 !important;
    }

        #et_pt_portfolio_gallery.et_portfolio_large .et_pt_portfolio_item {
            margin-left: -27px !important;
            width: 404px !important;
        }

        #et_pt_portfolio_gallery.et_portfolio_large .et_portfolio_more_icon, #et_pt_portfolio_gallery.et_portfolio_large .et_portfolio_zoom_icon {
            top: 109px !important;
        }

        #et_pt_portfolio_gallery.et_portfolio_large .et_portfolio_more_icon {
            left: 155px !important;
        }

        #et_pt_portfolio_gallery.et_portfolio_large .et_portfolio_zoom_icon {
            left: 195px !important;
        }
}

@media only screen and ( max-width: 479px ) {
    .featured-image, #et-search-form, #content .wp-pagenavi .pages {
        display: none;
    }

    .et-slide .description {
        float: none;
        width: 100%;
    }

        .et-slide .description .more {
            float: none;
        }

    .top-content.container, .et-slide .container, #logos .container, p#copyright {
        text-align: center;
    }

    #logo, #top-menu {
        float: none;
    }

    #social-icons, #footer-widgets, .bottom-nav {
        display: none;
    }

    .description h2 {
        font-size: 36px;
    }

    .subtitle, .entry .meta-info {
        font-size: 18px;
    }

    .service h3 {
        font-size: 24px;
    }

    .service {
        margin-right: 0;
        width: 255px;
    }

    .testimonial {
        padding: 32px 36px 27px 39px;
    }

    #recent-updates {
        margin-left: 0;
    }

    #logos img {
        max-width: 189px;
        margin-bottom: 50px;
    }

    #footer-bottom {
        padding-top: 0;
    }

    .page-title-area h1 {
        font-size: 36px;
    }

    #breadcrumbs {
        padding: 10px 0;
    }

    .et_pt_gallery_entry {
        margin-left: 56px !important;
    }

    p.et-registration {
        margin-top: 35px !important;
    }

    .et-protected-form {
        padding: 0 !important;
        background: none !important;
    }

    .et-protected {
        width: auto !important;
    }

    #et_pt_portfolio_gallery, #et_pt_portfolio_gallery.et_portfolio_large {
        margin-left: 0 !important;
    }

        .et_pt_portfolio_item, #et_pt_portfolio_gallery.et_portfolio_large .et_pt_portfolio_item {
            margin-left: 0 !important;
            width: 228px !important;
        }

        .et_portfolio_more_icon, .et_portfolio_zoom_icon, #et_pt_portfolio_gallery.et_portfolio_large .et_portfolio_more_icon, #et_pt_portfolio_gallery.et_portfolio_large .et_portfolio_zoom_icon {
            top: 53px !important;
        }

        .et_portfolio_more_icon, #et_pt_portfolio_gallery.et_portfolio_large .et_portfolio_more_icon {
            left: 70px !important;
        }

        .et_portfolio_zoom_icon, #et_pt_portfolio_gallery.et_portfolio_large .et_portfolio_zoom_icon {
            left: 110px !important;
        }

    .entry .et_portfolio_small .et_pt_portfolio_item {
        width: 262px !important;
        margin-left: 0 !important;
    }

    .et_portfolio_small .et_pt_portfolio_item {
        margin-left: -15px !important;
        width: 254px !important;
    }
}

/*------------------------------------------------*/
/*-----------------[COLOR SCHEMES-----------------*/
/*------------------------------------------------*/

/*--------------------[PURPLE]--------------------*/
.et_color_scheme_purple #breadcrumbs-wrapper, .et_color_scheme_purple #services {
    border-top: 1px solid #692c6d;
    background: #4d2050;
    background: -moz-linear-gradient(top, .et_color_scheme_purple#4d2050 0%, .et_color_scheme_purple#3c1a3e 100%);
    background: -webkit-gradient(linear, .et_color_scheme_purpleleft top, .et_color_scheme_purpleleft bottom, .et_color_scheme_purplecolor-stop(0%,rgba(29, .et_color_scheme_purple47, .et_color_scheme_purple56, .et_color_scheme_purple1)), .et_color_scheme_purplecolor-stop(100%,#3c1a3e));
    background: -webkit-linear-gradient(top, .et_color_scheme_purple#4d2050 0%,#3c1a3e 100%);
    background: -o-linear-gradient(top, .et_color_scheme_purple#4d2050 0%,#3c1a3e 100%);
    background: -ms-linear-gradient(top, .et_color_scheme_purple#4d2050 0%,#3c1a3e 100%);
    background: linear-gradient(to bottom, .et_color_scheme_purple#4d2050 0%,#3c1a3e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d2050', .et_color_scheme_purpleendColorstr='#3c1a3e',GradientType=0 );
}

.et_color_scheme_purple .description .more {
    background: #4d2050;
    background: -moz-linear-gradient(top, .et_color_scheme_purple#4d2050 0%, .et_color_scheme_purple#3c1a3e 100%);
    background: -webkit-gradient(linear, .et_color_scheme_purpleleft top, .et_color_scheme_purpleleft bottom, .et_color_scheme_purplecolor-stop(0%,rgba(29, .et_color_scheme_purple47, .et_color_scheme_purple56, .et_color_scheme_purple1)), .et_color_scheme_purplecolor-stop(100%,#3c1a3e));
    background: -webkit-linear-gradient(top, .et_color_scheme_purple#4d2050 0%,#3c1a3e 100%);
    background: -o-linear-gradient(top, .et_color_scheme_purple#4d2050 0%,#3c1a3e 100%);
    background: -ms-linear-gradient(top, .et_color_scheme_purple#4d2050 0%,#3c1a3e 100%);
    background: linear-gradient(to bottom, .et_color_scheme_purple#4d2050 0%,#3c1a3e 100%);
}

.et_color_scheme_purple #breadcrumbs, .et_color_scheme_purple.read-more span, .et_color_scheme_purple.testimonial span.title, .et_color_scheme_purple.entry .meta-info, .et_color_scheme_purple.entry .meta-info a, .et_color_scheme_purple.entry .meta-info a:hover, .et_color_scheme_purple.subtitle, .et_color_scheme_purple.comment_date, .et_color_scheme_purple.comment-reply-link:before, .et_color_scheme_purple.bottom-nav li.current_page_item a, .et_color_scheme_purple#content .wp-pagenavi .nextpostslink, .et_color_scheme_purple#content .wp-pagenavi .previouspostslink {
    color: #d166d8;
}

.mobile_nav {
    border-color: #d166d8;
}

#top-menu a .menu-highlight, .et_color_scheme_purple#mobile_menu .menu-highlight {
    background-color: #d166d8;
}

.subtitle {
    color: #fff;
}

/*--------------------[BLUE]--------------------*/
.et_color_scheme_blue #breadcrumbs-wrapper, .et_color_scheme_blue #services {
    border-top: 1px solid #2e479b;
    background: #21326b;
    background: -moz-linear-gradient(top, .et_color_scheme_blue#21326b 0%, .et_color_scheme_blue#172658 100%);
    background: -webkit-gradient(linear, .et_color_scheme_blueleft top, .et_color_scheme_blueleft bottom, .et_color_scheme_bluecolor-stop(0%,#21326b), .et_color_scheme_bluecolor-stop(100%,#172658));
    background: -webkit-linear-gradient(top, .et_color_scheme_blue#21326b 0%,#172658 100%);
    background: -o-linear-gradient(top, .et_color_scheme_blue#21326b 0%,#172658 100%);
    background: -ms-linear-gradient(top, .et_color_scheme_blue#21326b 0%,#172658 100%);
    background: linear-gradient(to bottom, .et_color_scheme_blue#21326b 0%,#172658 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#21326b', .et_color_scheme_blueendColorstr='#172658',GradientType=0 );
}

.et_color_scheme_blue .description .more {
    background: #21326b;
    background: -moz-linear-gradient(top, .et_color_scheme_blue#21326b 0%, .et_color_scheme_blue#172658 100%);
    background: -webkit-gradient(linear, .et_color_scheme_blueleft top, .et_color_scheme_blueleft bottom, .et_color_scheme_bluecolor-stop(0%,#21326b), .et_color_scheme_bluecolor-stop(100%,#172658));
    background: -webkit-linear-gradient(top, .et_color_scheme_blue#21326b 0%,#172658 100%);
    background: -o-linear-gradient(top, .et_color_scheme_blue#21326b 0%,#172658 100%);
    background: -ms-linear-gradient(top, .et_color_scheme_blue#21326b 0%,#172658 100%);
    background: linear-gradient(to bottom, .et_color_scheme_blue#21326b 0%,#172658 100%);
}

.et_color_scheme_blue #breadcrumbs, .et_color_scheme_blue.read-more span, .et_color_scheme_blue.testimonial span.title, .et_color_scheme_blue.entry .meta-info, .et_color_scheme_blue.entry .meta-info a, .et_color_scheme_blue.entry .meta-info a:hover, .et_color_scheme_blue.subtitle, .et_color_scheme_blue.comment_date, .et_color_scheme_blue.comment-reply-link:before, .et_color_scheme_blue.bottom-nav li.current_page_item a, .et_color_scheme_blue#content .wp-pagenavi .nextpostslink, .et_color_scheme_blue#content .wp-pagenavi .previouspostslink {
    color: #3e6afa;
}

.et_color_scheme_blue .mobile_nav {
    border-color: #3e6afa;
}

.et_color_scheme_blue #top-menu a .menu-highlight, .et_color_scheme_blue#mobile_menu .menu-highlight {
    background-color: #3e6afa;
}

.et_color_scheme_blue .subtitle {
    color: #fff;
}

/*--------------------[GREEN]--------------------*/
.et_color_scheme_green #breadcrumbs-wrapper, .et_color_scheme_green #services {
    border-top: 1px solid #288a3b;
    background: #134f1e;
    background: -moz-linear-gradient(top, .et_color_scheme_green#216b2f 0%, .et_color_scheme_green#134f1e 100%);
    background: -webkit-gradient(linear, .et_color_scheme_greenleft top, .et_color_scheme_greenleft bottom, .et_color_scheme_greencolor-stop(0%,#216b2f), .et_color_scheme_greencolor-stop(100%,#134f1e));
    background: -webkit-linear-gradient(top, .et_color_scheme_green#216b2f 0%,#134f1e 100%);
    background: -o-linear-gradient(top, .et_color_scheme_green#216b2f 0%,#134f1e 100%);
    background: -ms-linear-gradient(top, .et_color_scheme_green#216b2f 0%,#134f1e 100%);
    background: linear-gradient(to bottom, .et_color_scheme_green#216b2f 0%,#134f1e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#216b2f', .et_color_scheme_greenendColorstr='#134f1e',GradientType=0 );
}

.et_color_scheme_green .description .more {
    background: #134f1e;
    background: -moz-linear-gradient(top, .et_color_scheme_green#216b2f 0%, .et_color_scheme_green#134f1e 100%);
    background: -webkit-gradient(linear, .et_color_scheme_greenleft top, .et_color_scheme_greenleft bottom, .et_color_scheme_greencolor-stop(0%,#216b2f), .et_color_scheme_greencolor-stop(100%,#134f1e));
    background: -webkit-linear-gradient(top, .et_color_scheme_green#216b2f 0%,#134f1e 100%);
    background: -o-linear-gradient(top, .et_color_scheme_green#216b2f 0%,#134f1e 100%);
    background: -ms-linear-gradient(top, .et_color_scheme_green#216b2f 0%,#134f1e 100%);
    background: linear-gradient(to bottom, .et_color_scheme_green#216b2f 0%,#134f1e 100%);
}

.et_color_scheme_green #breadcrumbs, .et_color_scheme_green.read-more span, .et_color_scheme_green.testimonial span.title, .et_color_scheme_green.entry .meta-info, .et_color_scheme_green.entry .meta-info a, .et_color_scheme_green.entry .meta-info a:hover, .et_color_scheme_green.subtitle, .et_color_scheme_green.comment_date, .et_color_scheme_green.comment-reply-link:before, .et_color_scheme_green.bottom-nav li.current_page_item a, .et_color_scheme_green#content .wp-pagenavi .nextpostslink, .et_color_scheme_green#content .wp-pagenavi .previouspostslink {
    color: #21ab3b;
}

.et_color_scheme_green .mobile_nav {
    border-color: #21ab3b;
}

.et_color_scheme_green #top-menu a .menu-highlight, .et_color_scheme_green#mobile_menu .menu-highlight {
    background-color: #21ab3b;
}

.et_color_scheme_green a {
    color: #21ab3b;
}

.et_color_scheme_green .subtitle {
    color: #fff;
}

/*--------------------[RED]--------------------*/
.et_color_scheme_red #breadcrumbs-wrapper, .et_color_scheme_red #services {
    border-top: 1px solid #a31818;
    background: #560101;
    background: -moz-linear-gradient(top, .et_color_scheme_red#770e0e 0%, .et_color_scheme_red#560101 100%);
    background: -webkit-gradient(linear, .et_color_scheme_redleft top, .et_color_scheme_redleft bottom, .et_color_scheme_redcolor-stop(0%,#770e0e), .et_color_scheme_redcolor-stop(100%,#560101));
    background: -webkit-linear-gradient(top, .et_color_scheme_red#770e0e 0%,#560101 100%);
    background: -o-linear-gradient(top, .et_color_scheme_red#770e0e 0%,#560101 100%);
    background: -ms-linear-gradient(top, .et_color_scheme_red#770e0e 0%,#560101 100%);
    background: linear-gradient(to bottom, .et_color_scheme_red#770e0e 0%,#560101 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#770e0e', .et_color_scheme_redendColorstr='#560101',GradientType=0 );
}

.et_color_scheme_red .description .more {
    background: #560101;
    background: -moz-linear-gradient(top, .et_color_scheme_red#770e0e 0%, .et_color_scheme_red#560101 100%);
    background: -webkit-gradient(linear, .et_color_scheme_redleft top, .et_color_scheme_redleft bottom, .et_color_scheme_redcolor-stop(0%,#770e0e), .et_color_scheme_redcolor-stop(100%,#560101));
    background: -webkit-linear-gradient(top, .et_color_scheme_red#770e0e 0%,#560101 100%);
    background: -o-linear-gradient(top, .et_color_scheme_red#770e0e 0%,#560101 100%);
    background: -ms-linear-gradient(top, .et_color_scheme_red#770e0e 0%,#560101 100%);
    background: linear-gradient(to bottom, .et_color_scheme_red#770e0e 0%,#560101 100%);
}

.et_color_scheme_red #breadcrumbs, .et_color_scheme_red.read-more span, .et_color_scheme_red.testimonial span.title, .et_color_scheme_red.entry .meta-info, .et_color_scheme_red.entry .meta-info a, .et_color_scheme_red.entry .meta-info a:hover, .et_color_scheme_red.subtitle, .et_color_scheme_red.comment_date, .et_color_scheme_red.comment-reply-link:before, .et_color_scheme_red.bottom-nav li.current_page_item a, .et_color_scheme_red#content .wp-pagenavi .nextpostslink, .et_color_scheme_red#content .wp-pagenavi .previouspostslink {
    color: #f04848;
}

.et_color_scheme_red .mobile_nav {
    border-color: #f04848;
}

.et_color_scheme_red #top-menu a .menu-highlight, .et_color_scheme_red#mobile_menu .menu-highlight {
    background-color: #f04848;
}

.et_color_scheme_red a {
    color: #f04848;
}

.et_color_scheme_red .subtitle {
    color: #fff;
}

/* SlideBanner.css end */





@media(max-width:767px) {
    .myvideo {
        float: none !important;
        padding: 0px !important;
    }

    .video-js {
        margin: 0 auto;
        width: 100%;
    }

    iframe {
        width: 100%;
        height: 5.0rem;
    }
}

/*联系我们*/
.Contact {
    width: 100%;
    padding: 0;
    margin-left: -4px;
}

    .Contact li {
        height: 118px;
        padding: 18px 0 0 40px;
    }

        .Contact li:hover {
            background: #e2001c;
            border-color: #e2001c;
            cursor: pointer;
        }

        .Contact li > .Contact_img {
            width: 30%;
            float: left;
            background: url('/Skin/img/Contact.png') no-repeat;
            height: 80px;
        }

        .Contact li:hover .Contact_img {
            background: url('/Skin/img/hover.png') no-repeat;
        }

        .Contact li:nth-child(1) > .Contact_img {
            background-position: 0 0;
        }

        .Contact li:nth-child(2) > .Contact_img {
            background-position: 0 -88px;
        }

        .Contact li:nth-child(3) > .Contact_img {
            background-position: 0 -176px;
        }

        .Contact li:nth-child(4) > .Contact_img {
            background-position: 0 -264px;
        }

        .Contact li:nth-child(5) > .Contact_img {
            background-position: 0 -353px;
        }

        .Contact li:nth-child(6) > .Contact_img {
            background-position: 0 -441px;
        }

        .Contact li:nth-child(7) > .Contact_img {
            background-position: 0 -529px;
        }

        .Contact li:nth-child(8) > .Contact_img {
            background-position: 0 -618px;
        }

        .Contact li > .Contact_font {
            width: 70%;
            float: left;
            padding-top: 15px;
        }

            .Contact li > .Contact_font > p {
                font-size: 16px;
                color: #999;
            }

                .Contact li > .Contact_font > p > .span {
                    font-size: 20px;
                    color: #333;
                    display: block;
                }

        .Contact li:hover > .Contact_font > p, .Contact li:hover > .Contact_font > p > .span {
            color: #fff;
        }
       .item_detail .item_img, .item_detail .item_img_er{display:inline-block;vertical-align:top}
        .item_detail .Item_info {
            margin-left:20px;
            display:inline-block;
            vertical-align:top;
            text-align: left;
            font-size: 16px;
            font-weight:400;
        }
        .item_detail h4{font-weight:600;}
        .item_box{border-bottom:1px #dedede solid;padding:20px 0;margin:0 20px 0 0;}
@media(min-width:768px) and (max-width:991px) {
    /*.Contact li{}
.Contact li:nth-child(2n){margin:0;}*/

    /**联系方式—开始**/
    .divContact {
        margin: 20px;
    }

    .item_detail {
        overflow: hidden;
        background: #eee;
    }

        .item_detail .item_img_er {
            padding-top: 20px;
        }

        .item_detail .item_img img {
            height: 25px;
            width: 25px;
            display: block;
            margin: 0 auto;
        }

        .item_detail .item_img_er img {
            height: 150px;
            width: 150px;
            display: block;
            margin: 0 auto;
        }
    .wxTxt {
        padding-top: 10px !important;
    }

    .item_detail h4 {
        line-height: 30px;
        margin: 0 !important;
        padding-bottom: 20px;
        font-size: 24px;
    }
    /**联系方式—结束**/


}


@media (min-width:1600px) {
    /**联系方式—开始**/
    .divContact {
        margin: 30px;
    }

    .item_detail {
        overflow: hidden;
        background: #eee;
    }

        .item_detail .item_img_er {
            padding-top: 50px;
        }

        .item_detail .item_img img {
            height: 25px;
            width: 25px;
            display: block;
            margin: 0 auto;
        }

        .item_detail .item_img_er img {
            height: 200px;
            width: 200px;
            display: block;
            margin: 0 auto;
        }

        .item_detail h4 {
            line-height: 30px;
            margin: 0 !important;
            padding-bottom: 20px;
            font-size: 24px;
        }
    /**联系方式—结束**/

}

@media (min-width:1220px) and (max-width:1599px) {
    /**联系方式—开始**/
    .divContact {
        margin: 30px;
    }

    .item_box {
        padding: 20px;
        overflow: hidden;
    }

    .item_detail {
        overflow: hidden;
        background: #eee;
    }

        .item_detail .item_img_er {
            padding-top: 20px;
        }


        .item_detail .item_img img {
            height: 25px;
            width: 25px;
            display: block;
            margin: 0 auto;
        }

        .item_detail .item_img_er img {
            height: 150px;
            width: 150px;
            display: block;
            margin: 0 auto;
        }

    .wxTxt {
        padding-top: 10px !important;
    }

    .item_detail h4 {
        line-height: 30px;
        margin: 0 !important;
        padding-bottom: 10px;
        font-size: 24px;
    }
    /**联系方式—结束**/

}

@media(min-width:992px) and (max-width:1219px) {

    /**联系方式—开始**/
    .divContact {
        margin: 30px;
    }

    .item_box {
        padding: 10px;
        overflow: hidden;
    }

    .item_detail {
        overflow: hidden;
        background: #eee;
    }

        .item_detail .item_img_er {
            padding-top: 20px;
        }

        .item_detail .item_img img {
            height: 25px;
            width: 25px;
            display: block;
            margin: 0 auto;
        }

        .item_detail .item_img_er img {
            height: 150px;
            width: 150px;
            display: block;
            margin: 0 auto;
        }

        .item_detail h4 {
            line-height: 30px;
            margin: 0 !important;
            padding-bottom: 20px;
            font-size: 24px;
        }
    /**联系方式—结束**/


}
 @media(max-width:991px) {
    .footer .fmenu {
        display: none;
    }
    .Foot_menu {display:none;}
}
@media(max-width:767px) {
    .Contact {
        margin-left: 0;
    }

        .Contact li {
            height: 1.18rem;
            padding: .18rem 0 0 .4rem;
        }

            .Contact li:nth-child(2n) {
                margin: 0;
            }

            .Contact li > .Contact_img {
                width: 35%;
                height: .8rem;
                background-size: .81rem 6.98rem;
            }

            .Contact li:hover .Contact_img {
                background-size: .81rem 6.98rem;
            }

            .Contact li:nth-child(2) > .Contact_img {
                background-position: 0 -0.88rem;
            }

            .Contact li:nth-child(3) > .Contact_img {
                background-position: 0 -1.76rem;
            }

            .Contact li:nth-child(4) > .Contact_img {
                background-position: 0 -2.64rem;
            }

            .Contact li:nth-child(5) > .Contact_img {
                background-position: 0 -3.53rem;
            }

            .Contact li:nth-child(6) > .Contact_img {
                background-position: 0 -4.41rem;
            }

            .Contact li:nth-child(7) > .Contact_img {
                background-position: 0 -5.29rem;
            }

            .Contact li:nth-child(8) > .Contact_img {
                background-position: 0 -6.18rem;
            }

            .Contact li > .Contact_font {
                width: 65%;
                float: left;
                padding-top: .15rem;
            }

                .Contact li > .Contact_font > p {
                    font-size: .16rem;
                }

                    .Contact li > .Contact_font > p > .span {
                        font-size: .2rem;
                    }

    .HomeProduct {
        clear: both;
        margin: 0px;
    }


    /**联系方式—开始**/
    .divContact {
        margin: 5px;
    }

    .item_box {
        padding: 5px;
        overflow: hidden;
    }

    .item_detail {
        padding: 10px;
        overflow: hidden;
        background: #eee;
    }

        .item_detail .item_img_er {
            padding-top: 5px;
        }

        .item_detail .item_img img {
            height: 50px;
            width: 50px;
            display: block;
            margin: 0 auto;
        }

        .item_detail .item_img_er img {
            height: 100px;
            width: 100px;
            display: block;
            margin: 0 auto;
        }

        .item_detail h4 {
            line-height: 180%;
            margin: 0 !important;
            padding-bottom: 0px;
            font-size: 14px;
        }
    /**联系方式—结束**/


        .Master .title {
        padding: 20px 0 10px;
    }
}
.main .MarrginBottom {padding-bottom: 10px!important;}
.Margin_Top {width:100%;height:40px;}
@media(min-width: 769px) and (max-width: 991px) {.main .MarrginBottom {padding-bottom: 0!important;}.Margin_Top {width:100%;height:20px;}}
@media(max-width: 767px) {.main .MarrginBottom {padding-bottom: 0!important;}.Margin_Top {width:100%;height:20px;}/*body .topMenu .nav > li > a {font-size:.3rem!important;}*/}

.IntroduceShowStyleSN { padding: 0 40px;}
.center-block {display: block; margin-right: auto; margin-left: unset; margin-right: unset; display: inline-block;}

.divNotice {position: fixed;left: 0;top: 0;bottom: 0;right: 0;width: 100%;height: 100%;background: rgba(0,0,0,.5);display: block;overflow: hidden;transition: transform .3s,-webkit-transform .3s;z-index: 9999999;}
.DSBox {display: block;position: fixed;width:60%; min-width:40%;max-width: 80%;left: 50%;max-height: 80%; height:auto; top: 50%;transform: translate(-50%,-50%);}
    .DSBox .divTitle { font-size:18px; color:#fff; font-weight:600; text-align:center; height:50px; line-height:50px; border-radius:10px 10px 0px 0px; }
    .DSBox .divInfo { font-size:16px; line-height:200%; padding:20px 30px;background: #fff; }
@media(min-width: 1400px) and (max-width: 1221px) {
.IntroduceShowStyleSN  {padding: 0 40px;}}
@media(min-width: 769px) and (max-width: 1220px) {
    .IntroduceShowStyleSN  {
        padding: 0 20px;
    }
}
@media(min-width: 415px) and (max-width: 768px) {
    .IntroduceShowStyleSN  {
        padding: 0 10px!important;
    }
    .DSBox {display: block;position: fixed;min-width:80%;max-width: 90%;left: 50%;max-height: 80%; height:auto; top: 50%;transform: translate(-50%,-50%);}
    .DSBox .divTitle { font-size:14px; color:#fff; font-weight:600; text-align:center; height:30px; line-height:30px; border-radius:10px 10px 0px 0px; }
    .DSBox .divInfo { font-size:12px; line-height:200%; padding:10px;background: #fff; }
}
@media (max-width: 414px) {
    .IntroduceShowStyleSN  {
        padding: 0 10px;
    }
    .DSBox {display: block;position: fixed;min-width:80%;max-width: 90%;left: 50%;max-height: 80%; height:auto; top: 50%;transform: translate(-50%,-50%);}
    .DSBox .divTitle { font-size:14px; color:#fff; font-weight:600; text-align:center; height:30px; line-height:30px; border-radius:10px 10px 0px 0px; }
    .DSBox .divInfo { font-size:12px; line-height:200%; padding:10px;background: #fff;}
}

/******************************************首页********************************************/
/*小标题*/
.Master .title>span>a {font-family:Arial;font-size:36px;color:#000;font-weight:600;}
/*产品*/
.HomeProductCon .productbtn{ height:170px;position:relative;}
.HomeProductCon .productbtn>button{height:60px;width:300px;background:#cc9966;border:0;color:#fff;font-size:24px;font-family:Arial;font-weight:600;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);}
 /*合作伙伴*/
 .homeparnert{max-width:1500px;min-width:1500px;margin:auto;}
 .homeparnert .pranertdiv{display:flex;justify-content:space-between;padding:50px 0 80px;}
 .homeparnert .parnertbox{display:inline-block;}
 .homeparnert .parnertbox img{border:1px solid #eee;}
       /*关于我们*/
.blockContent .abountus{padding:0 25%;margin:0 30px;height:235px;background:#f3f3f3;}
.blockContent .abountus >div{position:relative;top:50%;left:50%;transform:translate(-50%,-50%);}
.blockContent .abountus >div>div{display:inline-block;width:30%;height:100%;text-align:right;}
.blockContent .abountus >div>div>div{display:inline-block;text-align:center;}
.blockContent .abountus >div>div>div p{font-size:16px;font-family:Arial;color:#000;line-height:120%;margin-bottom:0;}
.blockContent .abountus >div>div>div p:first-child{font-size:60px;}
/*.singlePageCon .VrCon p{font-size:24px;line-height:40px;}*/
.singlePageCon .vedio{padding:40px 0 0;margin:auto;max-width:1760px;min-width:1760px;max-height:710px;min-height:710px;}
/*优势*/                                                                          
.advantageshadow{overflow:hidden;margin:auto;min-width:1500px;max-width:1500px;box-shadow:0 0 50px #eee;margin-top:80px;}
.advantageshadow>div{padding:0;}
.aTitle{line-height:300%;}
.advantagebox{border-right: 1px solid #ebebeb;}
.advantagebox .kkCon .kkTitle{font-size:18px;}
.advantagebox .kkCon .kkSubIntroduce{font-size:14px;}
.advantagebox:last-child{border-right:0;}
.advantagetitle{position:absolute;left:50%;transform:translateX(-50%);z-index:99;}
/*留言*/                   
.divMessage>p{font-size:14px;color:#666;margin-bottom:0;line-height:14px;margin-top:10px;}
.divMessage .tdFormField{display:flex;justify-content:space-between;}
.divMessage .tdFormField .sandmail{width:48%;font-size:16px;font-weight:600;background:#cc9966;color:#fff;border:1px solid #cc9966;} 
.main .divMessage .tdFormField .sandmail{background:#000;border:1px solid #000;}

.divMessage .tdFormField .sandmail:first-child { background: #fff; color: #000; border: 1px solid #000; text-align:center; line-height:50px; }



.Contactus { background: #cc9966; }
.Contactus>img{max-width:100%;}
.Contactus .Message-body{padding:50px 0;}
.Contactus .Message-body .ourmotto{font-family:Arial;font-size:32px;font-weight:600;color:#000;}
.Contactus .Message-body .ourmotto a{height:70px;display:inline-block;}
.Contactus .Message-body .ourmotto p{font-size:14px;font-weight:500;color:#666;line-height:24px;margin-bottom:0;}
.Contactus .Message-body .ourmotto img{margin-top:30px;}
.Contactus .message input.input,.Contactus .message textarea.input{border:0;background:#f8f8f8;}
    .Contactus .message button,
    .Contactus .message label,
    .Contactus .message input.input { display: inline-block; height: 50px; }
.Contactus .message textarea.input{height:120px;line-height:34px;}
.main .Contactus .Message-body .ourmotto p,.main .Contactus .Message-body .ourmotto a{color:#fff;}
.main .Contactus .divMessage textarea{height:50px!important;}
.main .Contactus .divMessage {width:75%;}
.main .Contactus .divMessage .message{width:38%;display:inline-block;vertical-align:middle;padding:10px 5px;}
.main .Contactus .divMessage .message:nth-child(5){width:24%;display:inline-block;float:right;position:absolute;top:0;}
.main .Contactus .divMessage .message:nth-child(5) .tdFormField{display:block;}
.main .divMessage>p{color:#fff;}
.main .divMessage .tdFormField .sandmail{width:100%;vertical-align:middle;}
.main .divMessage .message .tdFormField button{height:50px;margin-bottom:10px;margin-top:15px;}
/*页脚*/
.footcontent .footLink{float:right;width:50%;}
.footcontent .service-item{display:inline-block;width:40%;}
.footcontent .service-item p{margin-bottom:40px;font-size:14px;}
.footcontent .service-item p,.footer a,.footer dd{font-size:14px;}
.footcontent .service-item p:first-child{margin-bottom:30px;}
.footer .footbox{max-width:1500px;margin:auto;}
.footer dd>a>img{border-radius:5px;}
.dtFllow { height: 60px !important; }
    .dtFllow h3 { padding: 0 !important; line-height: 60px; }
.footer dd.lastlink{width:60%;display:flex;justify-content:space-between;}

/*广告图*/
.hero__link {
    font-size: 1.1em;
    bottom: 5rem;
    padding: 1.5rem 3.5rem;
}
.hero__link {
    background: hsla(0,0%,100%,.85);
    padding: .8rem 1.8rem;
    position: absolute;
    bottom: 14%;
    font-size: 1em;
    left: 50%;
    transform: translateX(-50%);
}
.button, .hero__link, .totop__link {
    padding: 30px 60px;
    display: inline-block;
    text-decoration: none;
    color: #000;
    border: 0;
    font-size:18px;
    font-family: Arial;
    white-space: nowrap;
    text-align: center;
    border-radius: 50px;
}
    .hero__link .arrow {
        display:inline-block;
        margin-right: 1em;
        width: 36px;
        height: 36px;
        vertical-align:middle;
        background:url(/Skin/img/arrow.png)no-repeat center/100%;
        animation:myarrow 1s infinite;
        -moz-animation:myarrow 1s infinite; /* Firefox */
        -webkit-animation:myarrow 1s infinite; /* Safari and Chrome */
        -o-animation:myarrow 1s infinite; /* Opera */
    }
    @keyframes myarrow
{
from {transform:translateY(-20%);}
to {transform:translateY(20%);}
}

@-moz-keyframes myarrow /* Firefox */
{
from {transform:translateY(-20%);}
to {transform:translateY(20%);}
}

@-webkit-keyframes myarrow /* Safari 和 Chrome */
{                        
    from {transform:translateY(-20%);}
    to {transform:translateY(20%);}
}

@-o-keyframes myarrow /* Opera */
{
from {transform:translateY(-20%);}
to {transform:translateY(20%);}
}
svg:not(:root) {
    overflow: hidden;
}
/***************************单页**/
.DModelListCon .DmodelCon .row > .pItem { position: relative; }
    .DModelListCon .DmodelCon .row > .pItem .Mproductname { position: absolute; background: rgb(204,153,102,.8); transition: .5s; display: none; width: 98%; padding:0 1%; text-align: center; left: 0px; bottom: 0px; }
    .DModelListCon .DmodelCon .row > .pItem .Mproductname p{ display:block; line-height:200%; padding:1% 0; margin:0; text-align:center; }

  .DModelListCon .DmodelCon .row>.pItem .drownload{display:none;height:40px;width:40px;background:url(/Skin/img/drownload.png)no-repeat center/100%;position:absolute;bottom:10px;right:10px;}
.DModelListCon .DmodelCon .row > .pItem:hover .drownload { display: none; height: 40px; width: 40px; background: url(/Skin/img/drownload1.png)no-repeat center/100%; position: absolute; bottom: 10px; right: 10px; }
    .DModelListCon .DmodelCon .row > .pItem:hover { cursor: pointer; }
        .DModelListCon .DmodelCon .row > .pItem:hover .Mproductname { display:block; }

  /*支付页面*/
  .singlePageCon .payment>img{width:100%}
  .singlePageCon .payment>div>div{display:inline-block;width:50%;padding:80px 75px 0;vertical-align:text-top;}
  .singlePageCon .payment>div{margin:0 -70px;}
  .singlePageCon .payment>div>div>img{max-height:60px;margin:unset;margin-bottom:30px;}
  .singlePageCon #description,.singlePageCon #amount{height:54px;width:100%;border:1px #ccc solid;}
  .singlePageCon #smart-button-container>div>p{display:inline-block;color:#666;height:60px;line-height:60px;float:right;word-spacing:0;}
  .singlePageCon #amount{width:92%;}
  .singlePageCon .SecondPay .Ptitle{font-size:24px;font-weight:600;}
    .singlePageCon .payment input[type="text"]::-webkit-input-placeholder,.singlePageCon .payment input[type="number"]::-webkit-input-placeholder{text-indent:1em;}
    .singlePageCon .payment input[type="text"]::-moz-placeholder,.singlePageCon .payment input[type="number"]::-moz-placeholder {/* Mozilla Firefox 19+ */text-indent:1em;}
    .singlePageCon .payment input[type="text"]:-moz-placeholder,.singlePageCon .payment input[type="number"]:-moz-placeholder{/* Mozilla Firefox 4 to 18 */text-indent:1em;}
    .singlePageCon .payment input[type="text"]:-ms-input-placeholder,.singlePageCon .payment input[type="number"]:-ms-input-placeholder{/* Internet Explorer 10-11 */text-indent:1em;}
@media(min-width:768px)
{          
.ProjectListCon .navbar {display:none;}
.NeiMenu .containerNew .neiCmenu>li{display:inline-block;}
    /*产品分类 ProductListCon*/
.ProductListCon .navbar-collapse,.ArticleList .navbar-collapse{
        display: block;
        visibility: hidden;
        overflow-x: visible;
        width: 80%;
        z-index: 999;
        border-radius: .1rem;
        -webkit-border-radius: .1rem;
        -moz-border-radius: .1rem;
        -ms-border-radius: .1rem;
        margin-top:12px;
        height: auto;
        cursor: pointer;
        background:#f3f3f3;
    }
  .ProductListCon,.ArticleList{padding:120px 0 0;}
  .DModelListCon{padding:120px 80px 0;}
  .collapse{visibility:hidden;}
  .ProductListCon .NeiMenu,.ArticleList .NeiMenu{position:fixed;width:20%;}
  .ProductListCon .NeiMenu .containerNew .neiCmenu>li,.ArticleList .NeiMenu .containerNew .neiCmenu>li{display:block;}
  .ProductListCon .navbar,.ArticleList .navbar{width:20%;display:inline-block;vertical-align:top;}
  .ProductListCon #ProductListCon1,.ArticleList .ArticleCom{width:80%;display:inline-block;}
  .ArticleList .ArticleCom{width:100%;}
  .ProductListCon .container,.ArticleList .container{padding:0;}
  .ProductListCon .navbar-header,.ArticleList .navbar-header{width:80%;background:#f3f3f3;border-radius:50px;float:unset;}
  .ProductListCon .navbar-header>button>img,.ArticleList .navbar-header>button>img{display:none;}
  .ProductListCon .navbar-header>span,.ArticleList .navbar-header>span{display:inline-block;height:50px;line-height:50px;}
  .ProductListCon .NeiMenu .main-navigation,.ArticleList .NeiMenu .main-navigation{text-align:left;}
  .ProductListCon .navbar-header>button,.ArticleList .navbar-header>button{display:inline-block;float:right;width:15px;height:50px;background:url(/Skin/img/Sarrow.png)no-repeat center/100%;}
  .ProductListCon .navbar-header,.ArticleList .navbar-header{padding:0 20px;}
  .ProductListCon .NeiMenu .navbar-collapse .nav > li > a,.ArticleList .NeiMenu .navbar-collapse .nav > li > a{border:0;padding:0;}
  .ProductListCon .NeiMenu .navbar-collapse .nav > li,.ProductListCon.NeiMenu .navbar-collapse .nav > li:first-of-type,.ArticleList .NeiMenu .navbar-collapse .nav > li,.ArticleList.NeiMenu .navbar-collapse .nav > li:first-of-type{margin-left:20px;height:45px;line-height:45px;}
  .ProductListCon .navbar-nav,.ArticleList .navbar-nav{padding:10px 0;}
  /*3D Model*/
  .DModelListCon .ConServer .Stitle{font-size:36px;font-weight:600;height:130px;line-height:130px;text-align:center;margin-bottom:0;background:#b5b5b5;}
  .DModelListCon .ConServer .Con{ display:inline-block; width:100%; background:#b5b5b5;position:relative;}
  .DModelListCon .ConServer .Con>div{ display:inline-block; float:left; }
  .DModelListCon .ConServer .Con .fontBox{width:62%;padding:5% 5%;}
    .DModelListCon .ConServer .Con .modelBox { width: 38%; height: 100%; }
    .DModelListCon .ConServer .Con .modelBox img{ max-height:100%; max-width:100%; }
  .DModelListCon .ConServer .Con .modelBox>iframe{width:100%;height:100%;border:0;}
  .DModelListCon .DmodelCon{margin:50px 0;}
  .DModelListCon .DmodelCon .row>.pItem{padding:15px;}
  .DModelListCon .DmodelCon .row>.pItem:nth-child(-n+8){padding-top:0;}

    /*项目*/
    .holdproject { overflow-y: hidden; -ms-overflow-style: none; overflow: -moz-scrollbars-none; background: #fff; }
        /*.holdproject::-webkit-scrollbar { width: 0 !important;height:0;}*/
        .holdproject .Pjbox { width: max-content; height: 800px; }
            .holdproject .Pjbox > div { display: inline-block; height: 100%; vertical-align: text-top; margin: 0 10px; }
            .holdproject .Pjbox .pjdetail > div, .holdproject .Pjbox .finanbox > div { position: relative; height: 100%; }
            .holdproject .Pjbox > .projectCon img, .Pjbox > .projectCon p { display: inline-block; height: 100%; }
            .holdproject .Pjbox > .projectCon img { margin: 0 10px; }
            .holdproject .Pjbox > .projectCon p:first-child img { margin-left: 0; }
            .holdproject .Pjbox > .projectCon p:last-child img { margin-right: 0; }
            .holdproject .Pjbox .pjdetail, .Pjbox .finanbox { width: 700px; height: 100%; background: #b5b5b5; padding: 170px 80px 120px; }
            .holdproject .Pjbox .pjdetail { margin-left: 0; }
            .holdproject .Pjbox .finanbox { margin-right: 0; }
            .holdproject .Pjbox .pjdetail p { font-size: 20px; color: #fff; padding-bottom: 30px; line-height: 180%; }
            .holdproject .Pjbox div a i { display: inline-block; height: 45px; width: 45px; vertical-align: middle; }
            .holdproject .Pjbox div a, .holdproject .Pjbox .pjdetail span { font-size: 24px; color: #fff; position: absolute; }
            .holdproject .Pjbox .pjdetail span { bottom: 0; }
            .holdproject .Pjbox .pjdetail a { position: fixed; bottom: 120px; z-index: 999; }
                .holdproject .Pjbox .pjdetail a:hover { cursor: pointer; }
            .holdproject .Pjbox .finanbox a { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 60%; }
            .holdproject .Pjbox .pjdetail a i { margin-right: 30px; background: url("data:image/svg+xml,%3Csvg class='icon' viewBox='0 0 1280 1024' xmlns='http://www.w3.org/2000/svg' width='128' height='128'%3E%3Cpath d='M554.642 141.211c12.792 0 23.718 4.506 32.771 13.645 9.06 9.01 13.596 19.955 13.596 32.692 0 13.132-4.573 24.076-13.769 32.957l-245.128 245.09h722.358c12.798 0 23.693 4.506 32.815 13.646 9.022 9.01 13.565 19.948 13.565 32.691 0 12.879-4.543 23.817-13.571 32.827-9.116 9.01-20.01 13.515-32.803 13.515H342.118L587.24 803.366c9.196 9.01 13.77 19.954 13.77 32.95 0 12.873-4.537 23.817-13.597 32.828-9.053 9.14-19.985 13.645-32.771 13.645-13.052 0-24.04-4.506-32.957-13.386L197.257 545.02c-8.91-9.394-13.379-20.474-13.379-32.957 0-12.607 4.468-23.551 13.38-32.95l324.427-324.38c9.177-8.886 20.159-13.397 32.957-13.397v-.124z' fill='%23fff'/%3E%3C/svg%3E")no-repeat center/100%; }
            .holdproject .Pjbox .finanbox a i { margin-left: 30px; background: url("data:image/svg+xml,%3Csvg class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M627.479 283.894H451.324V137.536l-385.13 196.73 385.13 196.68V384.639H641.56c150.323 0 225.485 64.75 225.485 194.3 0 134.36-77.542 199.111-234.856 199.111H190.636v103.174h448.592c211.356 0 319.389-98.365 319.389-292.666 0-203.919-110.362-304.664-331.138-304.664z' fill='%23fff'/%3E%3C/svg%3E")no-repeat center/100%; }
            .holdproject .Pjbox .finanbox .backTop:hover { cursor: pointer; }
            .holdproject .Pjbox .pjdetail .title { font-size: 36px; }
    .ProjectListCon, .ProductListCon, .ArticleList { min-height: 700px; }
        .ProductListCon #cboxClose { top: 0; right: 0; }



/*about*/
.singlePageCon .victitle,.Contactdiv .victitle,.BLOG .victitle,.DModelListCon .victitle,.ProjectListCon .victitle,.ProductListCon .victitle,.ArticleList .victitle{font-size:14px!important;font-style:italic!important;font-style:italic;}
.singlePageCon .minetitle,.Contactdiv .minetitle,.BLOG .minetitle,.DModelListCon .minetitle,.ProjectListCon .minetitle,.ProductListCon .minetitle,.ArticleList .minetitle{font-size:36px!important;font-weight:600;margin-bottom:0;border-bottom:1px solid #eee;line-height:200%;margin-bottom:60px;}
.Contactdiv .minetitle{margin-bottom:60px;}
.singlePageCon .VrCon p{font-size:24px;}
/*.singlePageCon .VrCon img{margin-top:60px;}*/
.singlePageCon .VrCon .FirstS{margin-top:80px;}
.singlePageCon .VrCon .secondS div{display:inline-block;width: 60%;vertical-align: middle;}
.singlePageCon .VrCon .secondS p{display:inline-block;vertical-align: middle;}
.singlePageCon .VrCon .secondS .secondVR{padding-top:50px;margin-bottom:0;}
}
.HAbout .MCtitle{margin-bottom:20px;}
.HAbout .MCtitle p{font-size:36px;font-family:Arial;font-weight:600;line-height:60px;}
.HAbout .Process{margin-top:70px;}
.HAbout>.aCon{margin-bottom:30px;line-height:180%;}
/*company*/
.TheCompany p{margin-bottom:0;font-size:14px;letter-spacing:.5px;}
.singlePageCon .TheCompany .MCtitle{margin-bottom:20px;}
.TheCompany .blockContent .abountus{margin:0;padding:0;}
.TheCompany .blockContent .abountus >div>div{width:33.3%;}
.TheCompany .blockContent .abountus >div>div{text-align:center;}
.TheCompany .MCtitle p{font-size:36px;font-family:Arial;font-weight:600;line-height:140%;}
.TheCompany .blockContent{margin-top:50px;}
.TheCompany .TeamTitle{font-size:36px;font-family:Arial;font-weight:600;text-align:center;height:125px;line-height:125px;margin-top:40px;}
.TheCompany .pranertdiv{display:flex;justify-content:space-between;margin-top:80px;} 
.TheCompany .parnertbox{display:inline-block;border:1px solid #eee;}
.TheCompany .Ourteam{margin:0 -30px;}
.TheCompany .Ourteam>div{display:inline-block;width:50%;vertical-align:top;margin-bottom:30px;padding-left:30px;}
.TheCompany .Ourteam>div>p{float:left;}         
.TheCompany .Ourteam>div>.Ird{overflow:hidden;padding:0 30px;transform: translateY(15%);}
.TheCompany .Ourteam>div>.Ird p{font-size:16px;line-height:24px;letter-spacing:-.45px;}
.TheCompany .Ourteam>div>.Ird>.name{font-size:18px;font-weight:600;font-family:Arial;height:60px;line-height:60px;}
/*process*/
.singlePageCon{padding:120px 0 40px;}
.singlePageCon .Process{font-size:36px;font-family:Arial;font-weight:600;margin-bottom:0;line-height:100%;}
.singlePageCon .ProcessBox{margin:0 -30px;}
.singlePageCon .ProcessBox >div{display:inline-block;width:50%;margin-top:50px;vertical-align:top;padding:0 30px;}
.singlePageCon .ProcessBox >div>p{font-family:Arial;font-size:16px;line-height:24px;}
.singlePageCon .ProcessBox >div>.ftitle,.singlePageCon .ProcessBox >div>.ctitle{font-weight:700;}
.singlePageCon .ProcessBox >div>.ctitle{margin-top:40px;}
/*work产品*/
#cboxLoadingGraphic>div> iframe{width:640px!important;height:480px!important;}
#cboxLoadingGraphic>p{position:absolute;height:100%!important;width:100%!important;}
#cboxLoadingGraphic>p>iframe{height:100%!important;width:100%!important;background:#fff;}
#cboxWrapper{position:relative;}
#cboxWrapper .sketchfab-embed-wrapper{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}
/*分类*/
.ProjectListCon{padding:120px 0 0;}
.ProjectListCon,.ProductListCon, .ArticleList {max-width:1760px;min-width:1200px;margin:auto;}           /*,.ArticleList .articleCon*/
.ProjectListCon .projectBox{position:relative;margin-bottom:30px;}
.ProjectListCon .projectBox:last-child{margin-bottom:0;}
.ProjectListCon .projectBox .ProjectDetail{position:absolute;bottom:6%;color:#fff;font-family:Arial;font-weight:600;padding:0 150px;}
.ProjectListCon .projectBox .ProjectDetail p{font-family:Arial;font-size:16px;margin-bottom:0;text-align:left;}
.ProjectListCon .projectBox .ProjectDetail p.ProjectName{font-weight:600;font-size:48px;line-height:48px;margin-bottom:30px;}
.ProductListCon .Pcontent{display:none;}
/*项目内页*/
.ProjectMsg{background:#f2f2f2;border-bottom:1px #fff solid;}     
.ProjectCom,.ProjectMsg>div{max-width:1500px;min-width:1500px;margin:auto;}
.ProjectBanner{position:relative;}
.ProjectBanner>p{position:absolute;bottom:5%;left:50%;transform:translateX(-50%);font-size:48px;font-weight:600;color:#fff;min-width:1500px;max-width:1500px;}
.ProjectMsg>div{padding:15px 0;}
.ProjectMsg>div>div{width:50%;display:inline-block;vertical-align:text-top;}
.ProjectMsg>div>div>p{margin-bottom:0;}
.ProjectMsg>div>div>p:first-child{font-weight:600;}
.holdproject .Pjbox .pjdetail span{display:none;}

/*新闻内页*/
/*.ArticleList .neiArticle{width:24%;display:inline-block;vertical-align:top;float:right;border:1px #e7e7e7 solid;padding:30px;}
.ArticleList .neiArticle .Subtitle{font-size:24px;font-weight:600;margin-top:40px;}
.ArticleList .neiArticle .Subtitle:first-child{margin-top:0;}
.ArticleList .artCom{width:75%;display:inline-block;padding-right:50px;}
.ArticleList .neiArticle .neiCmenu li a{color:#666;font-size:16px;line-height:180%;}
.ArticleList .neiArticle .smallArticleBox img{margin:20px 0;}
.ArticleList .neiArticle .smallArticleBox p{line-height:24px;margin-bottom:0;font-size:16px}
.ArticleList .neiArticle .smallArticleBox p:last-child{color:#666;}*/
.ArticleList .rightBtn{float:right;text-align:right;}
/*联系我们*/
.Contactdiv{max-width:1760px;min-width:1760px;margin:auto;padding:120px 0 20px 0;}
.Contactdiv .Contactus{background:#fff;}
.Contactdiv .Contactus,.Contactdiv .Contactus .Message-body{padding:0;}
.Contactdiv .Contactus .Message-body{background:#fff;}
.Contactdiv .Contactus .Message-body .ourmotto a{height:unset;}
.Contactdiv .Contactus .Message-body .ourmotto a{display:block;}
.Contactdiv .Contactus .Message-body .ourmotto img{margin-top:0;width:100%;}
.Contactdiv .Contactus .Message-body .ourmotto{font-size:30px;}
.Contactdiv .Contactus .Message-body .divMessage{padding:0 0 0 40px;margin-top:30px;}
.Contactdiv .Contactus .Message-body .divMessage .Ctitle{font-size:48px;font-weight:600;color:#000;}
.Contactdiv .Contactus .Message-body .divMessage .Bcontent{font-weight:600;color:#000;}       
.Contactdiv .Contactus .Message-body .divMessage .usmsg{width:33.3%;display:inline-block;margin:30px 0;}       
.Contactdiv .Contactus .Message-body .divMessage .usmsg>p{margin-bottom:0;line-height:180%;}       
.Contactdiv>img{width:100%;}
/* 通用图片列表_普通式 */ 
		 .main .pranertdiv .picList li{ width:182px;  } 
		 .main .pranertdiv .picList .pic{ text-align:center; line-height:0px;} 
		 .main .pranertdiv .picList .pic a:hover img{ border-color:#f00;  } 
		 .main .pranertdiv .picList .title{ line-height:24px;} 
		/* 多个左滚动 - 公用类 */ 
		 .main .pranertdiv .leftLoop .hd{ overflow:hidden;  height:30px; background:#f4f4f4;  } 
		 .main .pranertdiv .leftLoop .hd .prev,.leftLoop .hd .next{ display:block;  width:5px; height:9px; line-height:10px; float:right; margin-right:10px; margin-top:10px;  overflow:hidden;   
		     cursor:pointer; background:url("demoEffect/images/icoLeft.gif") no-repeat;} 
		 .main .pranertdiv .leftLoop .hd .next{ background:url("demoEffect/images/icoRight.gif") no-repeat;} 
		 .main .pranertdiv .leftLoop .hd ul{ float:right; overflow:hidden; zoom:1; margin-top:10px;  } 
		.main .pranertdiv .leftLoop .hd ul li{ position:relative; _display:inline; float:left;  width:10px; height:10px; overflow:hidden; background:#ccc; margin-right:10px; text-indent:-999px; cursor:pointer; 
		    -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; behavior: url(PIE.htc);} 
		.main .pranertdiv .leftLoop .hd ul li.on{ background:#f00;  } 
		.main .pranertdiv .leftLoop .bd{ padding:10px;} 
       .main .pranertdiv .leftLoop .bd .tempWrap {max-width:1500px;}
		.main .pranertdiv .leftLoop .bd ul{ overflow:hidden; zoom:1; } 
		.main .pranertdiv .leftLoop .bd ul li{ padding:0 10px; text-align:center; float:left;display:_inline;} 
@media(max-width:1500px)
{
.advantageshadow,.homeparnert,.Message-body{margin-left:30px;margin-right:30px;max-width:unset;min-width:unset;}
.main .HomeProductIc,blockContent>div,.leftLoop .bd .tempWrap{min-width:1366px;margin:0!important;}
 .main .pranertdiv{overflow:hidden;}
 .ftop.topMenu .container>p.getAqupte{color:#fff;background:#cc9966;left:8%;} 
}
@media(max-width:1366px)
{
    .main .Master,.main .pranertdiv,.footer .fmenu,.DModelListCon{min-width:1366px;margin:0;}
    .main .pranertdiv .leftLoop .bd{max-width:1366px;padding:0 30px;}
    .main .pranertdiv .leftLoop .bd .maxW{overflow:hidden;width:100%;}
    .main .pranertdiv{overflow:hidden;}
    .swiper-wrapper{min-width:1366px;overflow:hidden;}
}
@media(max-width:1500px)
{
    /*单页*/
    .singlePageCon,.ProjectListCon,.Contactdiv,.singlePageCon .vedio,.ArticleList .articleCon,.ProductListCon, .ArticleList{width:1400px; overflow-x:hidden; }
    .singlePageCon .vedio{height:663px;}
    /*联系我们*/
    .Contactdiv .Contactus .Message-body .divMessage{margin-top:0;}
    .Contactdiv .Contactus .Message-body .divMessage .usmsg{margin:10px 0;width:30%;}
    .Contactdiv .Contactus .Message-body .divMessage div:nth-child(6){width:40%;}
    .divMessage .message{padding:5px 0;}
    .Contactdiv .HomeMessage .Message-body{margin:0;}
}
@media(max-width:1440px)
{
    /*单页*/
    .singlePageCon, .ProjectListCon, .Contactdiv, .singlePageCon .vedio, .ArticleList .articleCon, .ProductListCon, .ArticleList { width: 1200px; overflow-x: hidden; }
    .singlePageCon .vedio{height:568px;}
    .Contactdiv .Contactus .Message-body .divMessage{padding:0 0 0 20px;}
    .Contactdiv .Contactus .Message-body .divMessage .Ctitle{font-size:32px;}
    .divMessage>p{margin-top:5px;}
    .Contactdiv .Contactus .Message-body .divMessage .usmsg{margin:10px 0;width:29%;}
    .Contactdiv .Contactus .Message-body .divMessage div:nth-child(6){width:41%;}
    .Contactus .message input.input,
    .Contactus .message button{ height: 46px; }
    .message textarea{height:90px !important;}
}
@media(max-width:768px)
{
html, body {
    min-width:unset;  
    overflow-x:hidden;  
    font-size:.24rem;                                                                             
}
    .singlePageCon, .ProjectListCon, .Contactdiv, .singlePageCon .vedio, .ArticleList .articleCon, .ProductListCon, .ArticleList { max-width: 768px; width: auto !important; margin:.3rem 0.3rem; margin-top:0.15rem; overflow-x: hidden; }
.advantageshadow,.Message-body,.singlePageCon, .ProjectListCon, .Contactdiv, .singlePageCon .vedio, .ArticleList .articleCon, .ProductListCon, .ArticleList,.ProductListCon{min-width:unset;}
.ArticleList .articleCon{border-bottom:1px #fff solid;margin-bottom:.15rem;}
.menubtn{width:unset;}
.navbarTop .container{position:absolute;top:0;width:100%;z-index:99;} 
/*页头*/
.topMenu .container>p.getAqupte,.ftop.topMenu .container>p.getAqupte{left:.8rem;}
.topMenu .container>p.getAqupte{height:.6rem;width:1.6rem;line-height:.6rem;padding:0;font-size:.18rem;text-align:center;margin:0;}
.topMenu a.navbar-brand img{border-width:0px;position:absolute;top:50%;right:.3rem;transform:translateY(-50%);}
.menuC>.center>ul>li.menuClos{height:.5rem;width:.5rem;}
.menuC>.center>ul>li>a{height:.8rem;}
.menuC>.center>ul>li.ChildM>span{top:.3rem;}
.menuC>.center>ul>li.ChildM>span{height:.16rem;width:.16rem;}
.topMenu .menuC .center ul > li > a{padding:0;}
.menuC>.center>ul>li>p{font-size:.3rem;padding:.2rem 0;}
.menuC>.center>ul>li{width:3.9rem;}
.glyphicon-collapse-down:before{height:.5rem;width:.4rem;}
.topMenu a.navbar-brand img{max-height:.5rem;}
.main .Master,.main .HomeProductIc,.footer .fmenu,.ArticleList .articleCon,.swiper-wrapper{min-width:unset!important;}
.main .HomeProductIc{margin:auto;}
/*广告图*/
.button, .hero__link,.totop__link{font-size:.18rem;padding:.3rem .6rem;}
.hero__link .arrow{height:.3rem;width:.3rem;}
/*弹框*/
body .loginbg>.listBox .listImg{height:2.2rem;}
body .loginbg>.listBox{min-width:5.2rem;}
body .loginbg>.listBox .listForm{padding:.2rem .3rem 0;}
body .loginbg>.listBox .listForm p:first-child{font-size:.36rem;letter-spacing:-.02rem;}
body .loginbg>.listBox .listForm p{font-size:.2rem;}
body .loginbg>.listBox .listForm input{margin-top:.2rem;}
body .loginbg>.listBox .listForm input.yourEmail{margin-top:.25rem;}
body .loginbg>.listBox .listForm input:last-child{height:.8rem;line-height:.8rem;margin-top:0;}
body .loginbg>.listBox .listForm input.yourEmail,body .loginbg>.listBox .listForm input.getL,body .loginbg>.listBox .listForm input{font-size:.24rem;}
body .loginbg .outClose{right:-8%;}
/*首页*/
.Master .title>span>a{font-size:.34rem;}
.ProductListTitle0{font-size:.24rem;}
.ProductListTitle0>div p:last-child{font-size:.2rem;}
.ProductListTitle0>div p:last-child{padding:.1rem;}
.ArticleList{padding:1.2rem 0 0;}
.Article.Articledetail{padding:1.2rem 0 0;}
.ProductListCon,.ProjectListCon{padding:1rem 0 0;}
.DModelListCon{padding:1.2rem .3rem 0;}
.HomeProductCon .productbtn>button{font-size:.26rem;height:.6rem;width:3rem;line-height:.6rem;}
.HomeProductCon .productbtn{height:1.6rem;}
.blockContent .abountus >div>div>div p:first-child{font-size:.5rem;}
.blockContent .abountus{padding:0;height:2.35rem!important;margin:0 .3rem;}
.blockContent .abountus >div>div>div p{font-size:.2rem;}
.advantageshadow{margin:.8rem .3rem 0;}
.advantagebox{width:50%;display:inline-block;border:0;}
.advantagebox:nth-child(-n+2){margin-top:1.5rem;}
.advantageImg .IntroduceListImgCon{margin-bottom:.6rem;}
.advantageImg .IntroduceListImgCon .img-responsive{width:.5rem;height:.5rem;}
.advantagebox .kkCon .kkTitle{font-size:.24rem;white-space:normal;line-height:100%;height:.5rem;display: -webkit-box;-webkit-line-clamp:2;text-overflow: ellipsis;-webkit-box-orient: vertical;overflow: hidden;}
.advantagebox .kkCon .kkSubIntroduce{font-size:.2rem;height:unset;margin-top:.05rem;height:1.6rem;}    
.advantageImg{top: 55%;}
.IntroduceShowStyleM .dummy{margin-top:40%!important;}
.kkCon{padding:0 5%;}
.Master .title{padding:0;}
.Master .title>span>a{height:1.5rem;line-height:1.5rem;}
.homeparnert .pranertdiv{padding:0;padding-bottom:.8rem;} 
.main .pranertdiv{width:100%;}
/*留言*/
.divMessage .message{padding:.1rem 0;}
.main .Contactus .divMessage,.main .Contactus .divMessage .message{width:100%;}
.main .Contactus .divMessage .message:nth-child(5){width:100%;position:unset;}
.main .Contactus .divMessage .message{padding:10px 0;}
.divMessage>p:last-child{margin-top:2.6rem;}
.main .pranertdiv .leftLoop .bd{padding:0 .3rem;max-width:6.4rem;}
.divMessage>p{font-size:.2rem;}
.Contactus .Message-body .ourmotto a{height:unset;}
.Contactus .Message-body{padding:.5rem 0;margin:0 .3rem;}
.Contactdiv .Contactus .Message-body .divMessage{padding:0;}
.Contactdiv .Contactus .Message-body .divMessage .Ctitle{font-size:.36rem;line-height:1.05rem;height:1.05rem;}
.Contactdiv .divMessage>p{font-size:.24rem;line-height:.3rem;}
.Contactdiv .Contactus .Message-body .divMessage .usmsg,.Contactdiv .Contactus .Message-body .divMessage div:nth-child(6){width:100%;}
.Contactdiv .divMessage>p:last-child{margin-top:26%;font-size:.18rem;}
.Contactdiv .Contactus .Message-body .divMessage .usmsg>p:first-child{font-weight:700;}
.divMessage .tdFormField{display:unset;}
.divMessage .tdFormField .sandmail{font-size:.24rem;}
.Contactdiv .divMessage .tdFormField .sandmail{font-size:.2rem;width:100%;height:.6rem;margin:.1rem 0;}
.Contactdiv .divMessage .tdFormField .sandmail:first-child{margin-top:0;}
.Contactdiv .Contactus .Message-body .ourmotto img{width:100%;margin:0;}
.Contactdiv .Contactus{background:#fff;}
.Contactdiv .Contactus .Message-body{padding:0;}
/*页脚*/
.wmenu{padding:.3rem;background:#f3f3f3;}
.wmenu .footdesign .service-item,.wmenu>ul>li>ul{display:none;overflow:hidden;}
.wmenu .footdesign.factive .service-item,.wmenu>ul>li.factive>ul{display:block;transition:1s}
.wmenu>ul{color:#000;margin-bottom:0;padding:0;}
.wmenu>ul>li{height:1.2rem;line-height:1.2rem;font-size:.28rem;border-bottom:1px solid #808080;position:relative;}
.wmenu>ul>li.factive{height:unset;transition:1s}
.wmenu>div{background:#f3f3f3;}
.wmenu>div>p{color:#000 ;margin:0;font-size:.2rem;text-align:center;margin:.4rem 0;}
.wmenu>div a{color:#fff;}
.wmenu ul li img{max-height:.6rem;}
.wmenu ul li p{line-height:180%;}
.wmenu .footdesign .service-item,.wmenu>ul>li>ul{padding-bottom:.4rem;}
.wmenu ul>li>ul>li{line-height:180%;height:unset;}
.wmenu ul>li>ul{padding-left:0;}
.wmenu>ul>li>i{display:inline-block;height:.2rem;width:.2rem;position:absolute;right:0;background:url(/Skin/Images/add.png)no-repeat center/100%;top:.5rem;}
.wmenu>ul>li.factive>i{background:url(/Skin/Images/remove.png)no-repeat center/100%;}
    .wmenu .line_f li a { display: inline-block; margin: 0px 0.2rem; }

/*合作品牌*/
/*关于我们*/
.singlePageCon, .ProjectListCon, .Contactdiv,.DModelListCon{max-width:unset;min-width:unset;}
.singlePageCon,.Contactdiv{padding:1.2rem 0 .4rem;}
.singlePageCon .victitle, .Contactdiv .victitle,.BLOG .victitle,.DModelListCon .victitle,.ProjectListCon .victitle,.ProductListCon .victitle,.ArticleList .victitle{font-size:.18rem!important;height:.8rem!important;line-height:.8rem!important;font-style:italic;margin-bottom:0;}
.singlePageCon .minetitle, .Contactdiv .minetitle,.BLOG .minetitle,.DModelListCon .minetitle,.ProjectListCon .minetitle,.ProductListCon .minetitle,.ArticleList .minetitle{font-size:.36rem!important;height:.6rem!important;margin-bottom:0;border-bottom:1px #eee solid;margin-bottom:.6rem;}
/*.ProductListCon .victitle,.ArticleList .victitle,.ProductListCon .minetitle,.ArticleList .minetitle,.ProjectListCon .victitle{padding:0 .3rem;}*/
.ProjectListCon .minetitle{/*margin:0 .3rem;*/margin-bottom:.6rem;}
.Article.Articledetail .victitle,.Article.Articledetail .minetitle{padding-left:0;}
.articleCon .Articlehead{margin-top:0;}
.HAbout .MCtitle p,.singlePageCon .Process{font-size:.34rem;}
.HAbout .MCtitle{margin-bottom:0;}
.HAbout .MCtitle p{display:inline;word-spacing:-.05em;line-height:180%;}
.singlePageCon .VrCon .MCtitle p{font-size:.34rem;line-height:180%;word-spacing:-.01rem;}
.singlePageCon .VrCon img{margin:.2rem 0 !important;}
.singlePageCon .VrCon>div p{font-size:.24rem;line-height:180%;}
.HAbout p.aCon:nth-child(7){margin-bottom:0;}
.HAbout .Process{font-size:.36rem;text-align:center;height:1.8rem;line-height:1.8rem;margin-top:0;}
.singlePageCon .ProcessBox >div{display:block;margin-top:0;width:100%;}
.singlePageCon .ProcessBox >div>.ctitle{margin-top:.5rem;}
.singlePageCon .ProcessBox >div>.ctitle:nth-child(2){margin-top:0;}
.singlePageCon .ProcessBox >div>.ftitle{height:.7rem;}
.singlePageCon .ProcessBox >div.rsection>.ftitle{height:1.2rem;line-height:1.2rem;}
.singlePageCon .vedio{max-width:5.8rem;min-width:5.8rem;min-height:2.75rem;max-height:2.75rem;}
/*work*/
.navbar-header>button>img,.ProjectListCon .navbar{display:none;}
.row{margin-left:-.3rem;margin-right:-.3rem;}
/*#cboxWrapper,#colorbox{width:5.4rem!important;}*/
#cboxLoadingGraphic>div>iframe{width:5.4rem!important;height:4.05rem!important;}
/*project*/
.ProjectListCon .projectBox{position:relative;margin-top:.3rem;}
.ProjectListCon .projectBox:first-child{margin-top:0;}
.ProjectListCon .projectBox .ProjectDetail{padding:0;position:absolute;bottom:6%;color:#fff;}           
.ProjectListCon .projectBox .ProjectDetail p{font-size:.2rem;margin:0 .3rem;text-align:left;}
.ProjectListCon .projectBox .ProjectDetail p.ProjectName{font-size:.36rem;line-height:.48rem;margin-bottom:0;}
.ProjectListCon #ProductListCon1{padding:0 .3rem;}
#ProductListCon1 .row{overflow:hidden;}
.ProjectListCon .img-responsive{max-width:200%;width:200%;transform:translateX(-25%);}
/*项目内页*/
.holdproject { overflow-y: hidden; -ms-overflow-style: none; overflow: -moz-scrollbars-none; background: #fff; }
    .holdproject .Pjbox { background: #b5b5b5; }
        .holdproject .Pjbox div { display: inline-block; vertical-align: text-top; padding: 0.3rem; line-height: 180%; color: #fff; }
        .holdproject .Pjbox div a{ color:#fff; }
            .holdproject .Pjbox div .title { font-size:0.36rem; font-weight:700; }
    .projectCon { background: #fff; color: #333; }
    .holdproject .Pjbox div img { display: block; max-width: 100%; }
    .holdproject .Pjbox .finanbox { padding: 0.1rem 0.3rem; }
    .holdproject .Pjbox div a i { display: inline-block; height: 0.3rem;; width: 0.3rem; vertical-align: middle; }
    .holdproject .Pjbox .pjdetail a i { margin-right: 0.1rem; background: url("data:image/svg+xml,%3Csvg class='icon' viewBox='0 0 1280 1024' xmlns='http://www.w3.org/2000/svg' width='128' height='128'%3E%3Cpath d='M554.642 141.211c12.792 0 23.718 4.506 32.771 13.645 9.06 9.01 13.596 19.955 13.596 32.692 0 13.132-4.573 24.076-13.769 32.957l-245.128 245.09h722.358c12.798 0 23.693 4.506 32.815 13.646 9.022 9.01 13.565 19.948 13.565 32.691 0 12.879-4.543 23.817-13.571 32.827-9.116 9.01-20.01 13.515-32.803 13.515H342.118L587.24 803.366c9.196 9.01 13.77 19.954 13.77 32.95 0 12.873-4.537 23.817-13.597 32.828-9.053 9.14-19.985 13.645-32.771 13.645-13.052 0-24.04-4.506-32.957-13.386L197.257 545.02c-8.91-9.394-13.379-20.474-13.379-32.957 0-12.607 4.468-23.551 13.38-32.95l324.427-324.38c9.177-8.886 20.159-13.397 32.957-13.397v-.124z' fill='%23fff'/%3E%3C/svg%3E")no-repeat center/100%; }
    .holdproject .Pjbox .finanbox a i { margin-left: 0.1rem; background: url("data:image/svg+xml,%3Csvg class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M627.479 283.894H451.324V137.536l-385.13 196.73 385.13 196.68V384.639H641.56c150.323 0 225.485 64.75 225.485 194.3 0 134.36-77.542 199.111-234.856 199.111H190.636v103.174h448.592c211.356 0 319.389-98.365 319.389-292.666 0-203.919-110.362-304.664-331.138-304.664z' fill='%23fff'/%3E%3C/svg%3E")no-repeat center/100%; }


    /*3DModel*/
    .DModelListCon .ConServer .Stitle { text-align: center; font-size: .36rem; height: .6rem; }
.DModelListCon .ConServer .Con{background:#b5b5b5;margin:0 -.3rem;padding:.8rem .3rem;}
.DModelListCon .ConServer .Con p{line-height:180%;}
    .DModelListCon .ConServer .Con .modelBox { margin-top: .3rem; }
    .DModelListCon .ConServer .Con .modelBox img { max-width: 100%; }
    .DModelListCon .DmodelCon { margin: .5rem 0; }
.DModelListCon .DmodelCon .row>.pItem{padding:.15rem;}
.DmodelCon .row{margin-left:-.15rem;margin-right:-.15rem;}
.DModelListCon .DmodelCon .row>.pItem .drownload{width:.4rem;height:.4rem;}
/*新闻详情*/
.ArticleList .artCom{width:100%;padding-right:0;}
}
video::-webkit-media-controls{  /*不显示时间条*/
  object-fit:fill;  /*设置预览图铺满*/
  display:none !important;
}
 