/*  */
/* 动画样式 */
/* banner文字上浮动画 */

/* 核心：添加 animation-fill-mode:both 彻底解决初始闪现 */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 3s ease-out forwards;
    animation-fill-mode: both;
}

.anim-fade-up1 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 1s ease-out forwards;
    animation-delay: 1s;
    animation-fill-mode: both;
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 滚动触发动画初始状态：先隐藏偏移 */
.slideInLeft,
.slideInRight,
.slideInUp,
.fadeIn {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    visibility: hidden;
}

.slideInLeft {
    transform: translateX(-80px);
}

.slideInRight {
    transform: translateX(80px);
}

.slideInUp {
    transform: translateY(60px);
}

.fadeIn {
    opacity: 0;
}

/* 元素进入视口后添加 .animate-show 执行动画 */
.slideInLeft.animate-show {
    visibility: visible;
    animation-name: slideInLeft;
}

.slideInRight.animate-show {
    visibility: visible;
    animation-name: slideInRight;
}

.slideInUp.animate-show {
    visibility: visible;
    animation-name: slideInUp;
}

.fadeIn.animate-show {
    visibility: visible;
    animation-name: fadeIn;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-80px);
        transform: translateX(-80px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-80px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(80px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(60px);
        transform: translateY(60px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(60px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*  */


/* 基础重置 - 取消所有默认样式 */
button {
    /* 清除默认外观 */
    appearance: none;
    -webkit-appearance: none;
    /* 兼容 Safari/Chrome */
    -moz-appearance: none;
    /* 兼容 Firefox */

    /* 清除默认边框和背景 */
    border: none;
    outline: none;
    background: none;

    /* 清除默认内边距和外边距 */
    padding: 0;
    margin: 0;

    /* 清除默认字体样式 */
    font-family: inherit;
    /* 继承父元素字体 */
    font-size: inherit;
    font-weight: inherit;
    color: inherit;

    /* 清除默认光标样式（可选，如需保留手型可设为 cursor: pointer） */
    cursor: pointer;

    /* 清除默认行高/对齐 */
    line-height: normal;
    text-align: left;

    /* 清除默认框模型 */
    box-sizing: border-box;

    /* 清除点击高亮（移动端） */
    -webkit-tap-highlight-color: transparent;

    /* 清除焦点样式（如需自定义焦点，可单独设置） */
    box-shadow: none;
}

/* 清除禁用状态默认样式 */
button:disabled {
    opacity: 1;
    /* 取消默认半透明 */
    cursor: not-allowed;
}

/* 清除active/hover默认样式（可选，根据需求调整） */
button:hover,
button:active,
button:focus {
    outline: none;
    box-shadow: none;
}

/* 可选：清除button内部内容的默认对齐（比如图片/文字） */
button>* {
    vertical-align: middle;
}


/*  */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 0.8s ease-out forwards;
}

.anim-delay-1 {
    animation-delay: 0.2s;
}

.anim-delay-2 {
    animation-delay: 0.4s;
}

.anim-delay-3 {
    animation-delay: 0.6s;
}

.anim-delay-4 {
    animation-delay: 0.8s;
}

.anim-delay-5 {
    animation-delay: 1s;
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*  */
/* 右侧 */
.cndns-right *:hover {
    text-decoration: none;
}

.cndns-right * {
    text-decoration: none;
}

.cndns-right li {
    list-style: none;
}

.cndns-right #zixunUl {
    margin: 0;
    padding: 0;
}

.cndns-right {
    position: fixed;
    right: 10px;
    bottom: 10%;
    margin-top: -100px;
    z-index: 100;
    font-family: Arial, "Microsoft YaHei" !important;
    background: #fff;
    filter: alpha(opacity=9);
    -moz-opacity: 0.9;
    -khtml-opacity: 0.9;
    opacity: 0.9;
    z-index: 99999;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .15);
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
    border-radius: 5px;
}

.cndns-right i {
    font-style: normal !important;
}

.cndns-right-meau {
    position: relative;
    cursor: pointer;
}

.cndns-right-btn {
    width: 30px;
    height: 80px;
    text-align: center;
    display: block;
    position: relative;
    text-decoration: none;
    border-top: 1px solid #d8e0ec;
    margin: 0 20px;
}

.cndns-right-btn:hover .top-arrow {
    transform: rotate(0deg);
    /* 取消旋转+隐藏 */
}

/* 原有样式保留，新增/修改以下样式 */

/* 核心：纯CSS上箭头样式 */
.top-arrow {
    display: block;
    width: 16px;
    /* 箭头宽度 */
    height: 16px;
    /* 箭头高度 */
    border-top: 2px solid #0075cf;
    /* 箭头边框颜色（匹配原有主题色） */
    border-right: 2px solid #0075cf;
    transform: rotate(-45deg);
    /* 旋转成上箭头 */
    margin-top: 8px;
    /* 与原有margin-top对齐 */
    line-height: 36px;
    /* 保留原有行高 */
}

.cndns-right-btn span {
    color: #0075cf;
    font-size: 22px !important;
    line-height: 36px;
    margin-top: 12px;
}

.cndns-right-btn sup {
    display: block;
    min-width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    color: #fff;
    border-radius: 50%;
    background-color: #0075cf;
    position: absolute;
    left: -12px;
    top: -12px;
}

.cndns-right-btn p {
    color: #565d6d;
    font-size: 14px;
    line-height: 18px;
    padding-top: 0px;
    margin: 0;
    text-decoration: none;
    padding-bottom: 10px;
}

.cndns-right-meau:hover .cndns-right-btn p {
    display: block;
    text-decoration: none;
}

.meau-car .cndns-right-btn {
    border-color: #0075cf;
    margin-bottom: 20px;
    text-decoration: none;
}

.meau-car .cndns-right-meau:hover .cndns-right-btn {
    background-color: #0075cf;
    text-decoration: none;
}

.meau-car .cndns-right-meau:hover .cndns-right-btn span {
    color: #fff;
    display: block;
    text-decoration: none;
}

.meau-code .sev-t img {
    width: 134px;
    height: 134px;
    margin: 0;
    padding: 0;
}

.meau-car .cndns-right-btn span {
    color: #0075cf;
}

/*.meau-top .cndns-right-btn span{font-size:24px !important;line-height:38px;padding-top:10px;}*/
.meau-top .cndns-right-btn i.icon-Arrow-Up {
    font-size: 22px;
}

.meau-top .cndns-right-btn i {
    display: block;
    color: #565d6d;
    font-size: 14px;
}

.meau-top.cndns-right-meau:hover .cndns-right-btn {}

.cndns-right-box {
    position: absolute;
    top: -15px;
    right: 55px;
    padding-right: 25px;
    display: none;
}

.cndns-right-box .box-border {
    padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    position: relative;
    overflow: hidden;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    border-radius: 5px;
}

.cndns-right-box .box-border .arrow-right {
    display: block;
    width: 13px;
    height: 16px;
    /* background: url(../image/arrow.png) no-repeat; */
    position: absolute;
    right: -13px;
    top: 26px;
}

.cndns-right-box .box-border .sev-t span {
    font-size: 40px;
    float: left;
    display: block;
    line-height: 56px;
    margin-right: 20px;
    color: #0075cf
}

.cndns-right-box .box-border .sev-t p {
    float: left;
    color: #0075cf;
    font-size: 22px;
    line-height: 28px;
    padding: 0;
    margin: 0;
}

.cndns-right-box .box-border .sev-t p i {
    display: block;
    font-size: 14px;
    color: #8d97ad;
    font-style: normal !important;
}

.cndns-right-box .box-border .sev-b {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #d8e0ec
}

.cndns-right-box .box-border .sev-b h4 {
    color: #414b61;
    font-size: 14px;
    font-weight: normal;
    padding-bottom: 15px;
}

.cndns-right-box .box-border .sev-b li {
    float: left;
    width: 50%
}

.cndns-right-box .box-border .sev-b li a {
    display: inline-block;
    color: #8d97ad;
    font-size: 14px;
    padding-left: 43px;
    /* background: url(../image/zxqq.png) no-repeat left 3px; */
    line-height: 36px;
}

.cndns-right-box .box-border .sev-b li a:hover {
    color: #0075cf
}

.meau-sev .cndns-right-box .box-border {
    width: 300px;
}

.meau-contact .cndns-right-box .box-border {
    width: 230px;
}

.cndns-right-meau:hover .cndns-right-box {
    display: block
}

.meau-code .cndns-right-box {
    top: inherit;
    bottom: -35px;
}

.meau-code .cndns-right-box .box-border {
    width: 156px;
    text-align: center;
}

.meau-code .cndns-right-box .box-border i {
    display: block;
    color: #414b61;
    font-size: 14px;
    line-height: 22px;
}

.meau-code .cndns-right-box .box-border .arrow-right {
    top: inherit;
    bottom: 50px;
}

.meau-zs .cndns-right-btn {
    background-color: #0075cf;
    color: #fff;
    margin-top: 80px;
    border-color: #0075cf
}

.meau-zs .cndns-right-btn span {
    color: #fff
}

.meau-zs .cndns-right-btn p {
    color: #fff
}

.sev-t {
    overflow: hidden;
}

.cndns-right-btn span.icon-qq {
    color: #ff4d7e;
    animation: shadow .5s linear infinite;
    animation: rotate .5s linear infinite;
}

@keyframes shadow {
    0%, 100% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(1.2);
    }
}

@keyframes rotate {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(10px) scale(1.1, 0.9);
    }

    75% {
        ransform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

/*  */
/*banner*/
.ind-banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.ind-banner .swiper-container {
    z-index: 10 !important;
}

.ind-banner .swiper-slide {
    height: 100vh;
    color: #fff;
}

.ind-banner .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.ind-banner .swiper-pagination {
    text-align: center;
    left: 0;
    width: 100%;
    bottom: 0.86rem !important;
}

.ind-banner .swiper-pagination-bullet {
    opacity: 1 !important;
    width: 12px;
    height: 12px;
    text-align: center;
    background: url(../images/ico1.png) center no-repeat;
    margin: 0 8px !important;
}

.ind-banner .swiper-pagination-bullet-active {
    background: url(../images/ico1on.png) center no-repeat;
}

.ind-banner .swiper-button-prev {
    display: none;
    left: 20px;
    width: 53px;
    height: 53px;
    background: url(../images/nimg53_left.png) no-repeat;
}

.ind-banner .swiper-button-next {
    display: none;
    right: 20px;
    width: 53px;
    height: 53px;
    background: url(../images/nimg53_right.png) no-repeat;
}

.swiper-pagination-progress {
    background: rgba(211, 211, 211, .2) !important;
    position: absolute;
}

.swiper-pagination-progress .swiper-pagination-progressbar {
    background: #fff !important;
}

.ind-banner .ban1 .bg {
    background: url(../images/bg1.png) repeat;
    position: absolute;
    z-index: 1;
    width: 12.0rem;
    height: 2.58rem;
    left: 50%;
    margin-left: -6.0rem;
    top: 50%;
    margin-top: -1.29rem;
}

.ind-banner .ban1 .txtDiv {
    position: absolute;
    left: 0;
    top: 50%;
    height: 1.76rem;
    margin-top: -0.88rem;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.ind-banner .ban1 .txt1 {
    font-size: 0.72rem;
    line-height: 0.72rem;
    padding-bottom: 0.24rem;
    color: #fff;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
}

.ind-banner .ban1 .txt2 {
    font-size: 0.48rem;
    line-height: 0.64rem;
    color: #fff;
    font-weight: bold;
}

.ind-banner .ban1 .txt3 {
    padding-top: 0.18rem;
    color: #fff;
    text-transform: uppercase;
}

.ind-banner .ban2 .txtDiv {
    position: absolute;
    left: 50%;
    margin-left: -600px;
    top: 50%;
    height: 300px;
    margin-top: -150px;
}

.ind-banner .ban2 .txt1 {
    font-size: 36px;
    padding-bottom: 25px;
    color: #fff;
    position: relative;
}

.ind-banner .ban2 .txt1 em {
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 56px;
    height: 5px;
    background: #fff;
}

.ind-banner .ban2 .txt2 {
    font-size: 60px;
    font-weight: bold;
    margin-top: 2.5%;
    color: #fff;
    background-image: -webkit-linear-gradient(top, #0b6fb8, #42c0fa);
    background-image: linear-gradient(to bottom, #0b6fb8, #42c0fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ind-banner .ban2 .txt3 {
    font-size: 30px;
    color: #fff;
    margin-top: 2%;
    text-transform: uppercase;
}

.ind-banner .ban2 .btnDiv {
    margin-top: 4.5%;
    width: 135px;
    height: 47px;
    background: url(../images/btn1.png) no-repeat;
    text-indent: 26px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 47px;
}

.ind-banner .ban2 .robotImg {
    position: absolute;
    right: 50%;
    bottom: 0;
    margin-right: -600px;
    margin-top: 18%;
}

.ind-banner .ban2 .robotImg img {
    width: 92%;
}

.ind-banner .ban3 .txtDiv {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    height: 300px;
    margin-top: -150px;
}

.ind-banner .ban3 .txt1 {
    font-size: 60px;
    color: #fff;
    text-align: center;
}

.ind-banner .ban3 .txt2 {
    font-size: 26px;
    padding: 15px 0 40px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.ind-banner .ban3 .btnDiv {
    margin: 0 auto;
    color: #298ffd;
    width: 143px;
    height: 57px;
    line-height: 47px;
    background: url(../images/btn3.png) no-repeat;
    text-indent: 26px;
    font-size: 16px;
    font-weight: bold;
    line-height: 47px;
}

.ind-banner .ban4 .txtDiv {
    position: absolute;
    left: 50%;
    margin-left: -600px;
    top: 50%;
    height: 300px;
    margin-top: -170px;
}

.ind-banner .ban4 .txt1 {
    font-size: 36px;
    padding-bottom: 25px;
    color: #0a74c1;
    position: relative;
}

.ind-banner .ban4 .txt1 em {
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 56px;
    height: 5px;
    background: #0a74c1;
}

.ind-banner .ban4 .txt2 {
    font-size: 60px;
    margin-top: 2.5%;
    color: #0a74c1;
}

.ind-banner .ban4 .txt3 {
    font-size: 30px;
    color: #3c3c3c;
    margin-top: 2%;
}

.ind-banner .ban4 .btnDiv {
    margin-top: 6.5%;
    width: 135px;
    height: 47px;
    background: url(../images/btn1.png) no-repeat;
    text-indent: 26px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 47px;
}

.ind-banner .ban4 .robotImg {
    position: absolute;
    right: 50%;
    bottom: 12%;
    margin-right: -525px;
    margin-top: 18%;
}

.ind-banner .ban4 .robotImg img {
    width: 100%;
}

.ind-banner .scrollBtn {
    z-index: 15;
    left: 50%;
    bottom: 0.38rem;
    text-align: center;
    margin-left: -0.6rem;
    position: absolute;
    width: 1.2rem;
    padding-top: 0.15rem;
    height: 9px;
    border-top: #fff solid 1px;
}

/*bannerç»“æŸ*/

.bannerTel {
    display: none;
}

.indexFlashTel {
    position: relative;
    overflow: hidden;
    max-width: 1004px;
}

.indexFlashTel .slick img {
    width: 100%;
}

.indexFlashTel .slick-dots {
    position: absolute;
    left: 0;
    text-align: center;
    width: 100%;
    bottom: 20px;
}

.indexFlashTel .slick-dots li {
    display: inline-block;
    margin: 0 8px;
    width: 10px;
    height: 10px;
    background: url(../images/ico3.png) no-repeat;
}

.indexFlashTel .slick-dots .slick-active {
    background: url(../images/ico3on.png) no-repeat;
}


.indexTitle2 {
    text-align: center;
}

.indexTitle .title1 {
    font-weight: bold;
    font-size: .8rem;
    line-height: 1rem;
    text-transform: uppercase;
    color: #ccc;
    font-family: Arial Black, Arial
}

.indexTitle .title1 span {
    color: #0075cf;
}

.indexTitle .title2 {
    font-size: 0.3rem;
    line-height: 0.3rem;
    color: #1e1e1e;
    padding-top: 0.12rem;
}

.indexPart1 {
    /* background: #fafafa url(../images/nimg970Bg.png) left bottom no-repeat; */
    background-size: 9.7rem;
    padding-top: 0.86rem;
}

.indexPart1 .leftDiv {
    width: 7.25rem;
    padding-top: .5rem;
}

.indexPart1 .content {
    font-size: 0.16rem;
    color: #6e6e6e;
    padding-top: 0.6rem;
    line-height: 0.3rem;
    /* 限制最多9行文本 */
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.indexPart1 .btnDiv {
    padding-top: 0.5rem;
}

.indexPart1 .btnDiv a {
    font-weight: bold;
    position: relative;
    font-size: 12px;
    color: #fff;
    text-indent: 0.24rem;
    display: block;
    width: 2.4rem;
    height: 0.44rem;
    line-height: 0.44rem;
    background: #0075cf;
}

.indexPart1 .btnDiv a:after {
    content: '';
    position: absolute;
    right: 0.25rem;
    top: 0.14rem;
    width: 0.4rem;
    height: 0.09rem;
    background: url(../images/nimg40_1.png) no-repeat;
    background-size: 0.4rem;
}

.indexPart1 .midDiv {
    width: 2.45rem;
}

.indexPart1 .numList {
    padding-top: 1rem;
}

.indexPart1 .numList li {
    padding-bottom: 0.56rem;
}

.indexPart1 .numList li .ico img {
    width: 0.5rem;
    display: block;
    margin: 0 auto;
}

.indexPart1 .numList li .num {
    color: #3a3a3a;
    padding-top: 10px;
}

.indexPart1 .numList li .num b {
    display: inline-block;
    color: #1c1c1c;
    font-size: 0.26rem;
    padding-right: 0.05rem;
}

.indexPart1 .numList li .num em {
    font-size: 12px;
    padding-top: 8px;
    display: inline-block;
    background: url(../images/nimg7_1.png) left top no-repeat;
}

.indexPart1 .numList li .msg {
    font-size: 16px;
    color: #000;
    margin-top: 20px;
    text-align: center;
    /* color: #949494; */
}

.indexPart1 .rightDiv {
    width: 6.2rem;
    height: 7.0rem;
    background: #0086d6;
}

.indexPart1 .imgDiv {
    width: 4.88rem;
    height: 100%;
}

.indexPart1 .imgDiv img {
    width: 4.88rem;
    height: 100%;
}

.indexPart1 .mxfDiv {
    width: 1.32rem;
    height: 7.0rem;
    position: relative;
}

.indexPart1 .mxfDiv .lg {
    text-align: right;
    padding: 0.45rem 0.32rem 0 0;
}

.indexPart1 .mxfDiv .more {
    z-index: 1;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1.3rem;
    background: #0075cf;
    text-align: center;
    line-height: 1.3rem;
}

.indexPart1 .mxfDiv .more img {
    width: 0.39rem;
}

.indexPart2 {
    padding: 0.95rem 0;
    position: relative;
    z-index: 10;
}

.indexPart2 .indexTitle {
    padding-bottom: 0.85rem;
}

.indexPart2 .bigBox {
    position: relative;
    padding-bottom: 0.95rem;
}

.indexPart2 .mxfDiv {
    position: relative;
}

.indexPart2 .bigImg img {
    width: 100%;
}

.indexPart2 .layerDiv {
    position: absolute;
    width: 12.0rem;
    left: 50%;
    margin-left: -6.0rem;
    top: 1.5rem;
}

.indexPart2 .layerDiv .name {
    font-size: 0.3rem;
    color: #fff;
    text-align: center;
    height: 0.6rem;
    position: relative;
    font-weight: bold;
}

.indexPart2 .layerDiv .name:after {
    content: '';
    width: 0.4rem;
    height: 0.04rem;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: 0px;
    margin-left: -0.2rem;
}

.indexPart2 .layerDiv .content {
    font-size: 0.14rem;
    color: #fff;
    line-height: 0.3rem;
    padding: 0.5rem 1.85rem 0;
    text-align: center;
    height: 1.2rem;
    overflow: hidden;
}

.indexPart2 .layerDiv .more {
    padding-top: 0.35rem;
    width: 1.62rem;
    margin: 0 auto;
}

.indexPart2 .layerDiv .more a {
    font-weight: bold;
    color: #fff;
    position: relative;
    font-size: 12px;
    display: block;
    width: 1.58rem;
    height: 0.4rem;
    line-height: 0.4rem;
    border: #fff solid 0.02rem;
    text-indent: 0.22rem;
}

.indexPart2 .layerDiv .more a:after {
    content: '';
    position: absolute;
    right: 0.25rem;
    top: 0.14rem;
    width: 0.4rem;
    height: 0.09rem;
    background: url(../images/nimg40_1.png) no-repeat;
    background-size: 0.4rem;
}

.indexPart2 .tab2 {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 17.0rem;
    margin-left: -8.5rem;
    height: 2.1rem;
}

.indexPart2 .tab2 li {
    float: left;
    width: 20%;
    height: 2.1rem;
    background: #fbfbfb;
    text-align: center;
}

.indexPart2 .tab2 .other {
    background: #fff;
}

.indexPart2 .tab2 li .ico {
    padding: 0.56rem 0 0.18rem;
}

.indexPart2 .tab2 li .ico img {
    width: 0.4rem;
}

.indexPart2 .tab2 li .name {
    font-weight: bold;
    font-size: 0.18rem;
    color: #3f3f3f;
}

.indexPart2 .tab2 li .txt {
    font-weight: bold;
    padding-top: 0.06rem;
    color: #cacaca;
    text-transform: uppercase;
}

.indexPart2 .tab2 .liNow {
    background: #0075cf;
}

.indexPart2 .tab2 .liNow .name {
    color: #fff;
}

.indexPart2 .tab2 .liNow .txt {
    color: #a3c2e8;
}

.indexPart3 {
    padding: 0.95rem 0;
    position: relative;
}

.indexPart3 .leftDiv {
    width: 8.86rem;
}

.indexProduct .slick {
    padding: 0 1.42rem 1.22rem 0;
    position: relative;
}

.indexProduct .slick .contentBox {
    height: 5.4rem;
    background: #f6f6f6;
}

.indexProduct .slick .imgDiv {
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 2;
}

.indexProduct .slick .imgDiv img {
    width: 5.6rem;
}

.indexProduct .slick .name {
    padding: 0.8rem 0 0 0.96rem;
    font-size: 0.36rem;
    color: #000;
    height: 0.6rem;
    line-height: 0.6rem;
    overflow: hidden;
}

.indexProduct .slick .msg {
    padding: 0.2rem 0 0 0.96rem;
    line-height: 0.3rem;
    color: #888;
    height: 1.2rem;
    overflow: hidden;
    font-size: 0.16rem;
}

.indexProduct .slick .btnDiv {
    padding: 0.3rem 0 0 0.96rem;
}

.indexProduct .slick .btnDiv a {
    font-weight: bold;
    position: relative;
    font-size: 12px;
    color: #000;
    text-indent: 0.24rem;
    display: block;
    width: 1.62rem;
    height: 0.44rem;
    line-height: 0.44rem;
    border: #000 solid 1px;
}

.indexProduct .slick .btnDiv a:after {
    content: '';
    position: absolute;
    right: 0.25rem;
    top: 0.14rem;
    width: 0.4rem;
    height: 0.09rem;
    background: url(../images/nimg40_7.png) no-repeat;
    background-size: 0.4rem;
}

.indexProduct .slick-prev {
    position: absolute;
    right: 2.83rem;
    top: 0.84rem;
    width: 0.42rem;
    height: 0.42rem;
    display: block;
    background: url(../images/nimg42_left.png) no-repeat;
    background-size: 0.42rem;
    z-index: 2;
}

.indexProduct .slick-next {
    position: absolute;
    right: 2.17rem;
    top: 0.84rem;
    width: 0.42rem;
    height: 0.42rem;
    display: block;
    background: url(../images/nimg42_right.png) no-repeat;
    background-size: 0.42rem;
    z-index: 2;
}

.indexProduct .slick-prev:hover {
    background: url(../images/nimg42_lefton.png) no-repeat;
    background-size: 0.42rem;
}

.indexProduct .slick-next:hover {
    background: url(../images/nimg42_righton.png) no-repeat;
    background-size: 0.42rem;
}

.indexPart3 .rightDiv {
    width: 5.02rem;
}

.indexPart3 .title {
    position: relative;
    height: 0.75rem;
    line-height: 0.75rem;
    color: #fff;
    background: #0075cf;
    text-indent: 0.45rem;
    font-size: 0.3rem;
    font-weight: bold;
}

.indexPart3 .title a {
    position: absolute;
    right: 0.35rem;
    top: 0;
    display: block;
}

.indexPart3 .title img {
    width: 0.42rem;
}

.indexNews {
    height: 6.67rem;
    background: #f0f0f0;
    position: relative;
}

.indexNews .slick .imgDiv img {
    width: 100%;
}

.indexNews .slick .botDiv {
    padding: 0.32rem 0.45rem 0;
}

.indexNews .slick .txt {
    font-size: 0.18rem;
    color: #000;
    padding-bottom: 0.2rem;
}

.indexNews .slick .name {
    height: 0.96rem;
    line-height: 0.48rem;
    font-size: 0.32rem;
    color: #000;
    overflow: hidden;
}

.indexNews .slick .time {
    padding-top: 0.2rem;
    color: #0075cf;
    font-size: 0.14rem;
}

.indexNews .slick .more {
    padding-top: 0.4rem;
    background: url(../images/nimg107Bg.png) left bottom no-repeat;
    width: 1.07rem;
    height: 0.32rem;
    background-size: 1.07rem;
}

.indexNews .slick .more a {
    display: block;
    line-height: 0.32rem;
    font-size: 0.14rem;
    color: #000;
}

.indexNews .slick-dots {
    position: absolute;
    z-index: 10;
    right: 0.75rem;
    bottom: 0.52rem;
}

.indexNews .slick-dots li {
    float: left;
    margin-left: 8px;
    cursor: pointer;
    width: 10px;
    height: 10px;
    background: url(../images/ico2.png) no-repeat;
}

.indexNews .slick-dots .slick-active {
    background: url(../images/ico2on.png) no-repeat;
}

.indexPart4 {
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.indexPart4 .indexTitle {
    padding-bottom: 0.85rem;
}

.fourBox {
    height: 6.2rem;
    position: relative;
}

.indexPart4 .leftDiv {
    width: 5.51rem;
    height: 6.2rem;
    position: relative;
    z-index: 0;
}

.indexPart4 .leftDiv .layer {
    position: absolute;
    left: 30px;
    bottom: 1.24rem;
}

.indexPart4 .leftDiv .txt {
    font-size: 0.3rem;
    color: #fff;
    padding-bottom: 0.3rem;
}

.indexPart4 .leftDiv .msg {
    color: #fff;
    line-height: 0.32rem;
    font-size: 0.16rem;
    width: 3.66rem;
}

.indexPart4 .leftDiv .btnDiv {
    padding-top: 0.4rem;
}

.indexPart4 .leftDiv .btnDiv a {
    font-weight: bold;
    position: relative;
    font-size: 12px;
    color: #fff;
    text-indent: 0.24rem;
    display: block;
    width: 1.62rem;
    height: 0.44rem;
    line-height: 0.44rem;
    border: #fff solid 1px;
}

.indexPart4 .leftDiv .btnDiv a:after {
    content: '';
    position: absolute;
    right: 0.25rem;
    top: 0.14rem;
    width: 0.4rem;
    height: 0.09rem;
    background: url(../images/nimg40_10.png) no-repeat;
    background-size: 0.4rem;
}

.indexPart4 .midDiv {
    width: 3.98rem;
    height: 6.2rem;
    z-index: 2;
    position: relative;
}

.indexPart4 .midDiv .bg img {
    width: 100%;
}

.indexPart4 .midDiv .txt {
    position: absolute;
    left: 1.25rem;
    top: 0.54rem;
}

.indexPart4 .midDiv .txt p {
    width: 0.4rem;
    text-align: center;
    color: #fff;
    line-height: 0.32rem;
    font-weight: bold;
    font-size: 0.3rem;
}

.indexPart4 .rightDiv {
    width: 6.51rem;
    height: 6.18rem;
    z-index: 2;
    border-top: #f7f7f7 solid 0.02rem;
}

.indexPart4 .rightDiv li {
    float: left;
    width: 50%;
}

.indexPart4 .rightDiv li .box {
    height: 3.07rem;
    border-right: #f7f7f7 solid 0.02rem;
    border-bottom: #f7f7f7 solid 0.02rem;
    -webkit-transition: background 400ms;
    transition: background 400ms;
}

.indexPart4 .rightDiv li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.indexPart4 .rightDiv li .ico {
    padding: 1.04rem 0 0.18rem;
}

.indexPart4 .rightDiv li .ico img {
    width: 0.54rem;
}

.indexPart4 .rightDiv li .ico .img1 {
    display: none;
}

.indexPart4 .rightDiv li .name {
    font-weight: bold;
    color: #333;
    font-size: 0.18rem;
}

.indexPart4 .rightDiv li:hover .box {
    background: #0075cf;
}

.indexPart4 .rightDiv li:hover .ico img {
    display: none;
}

.indexPart4 .rightDiv li:hover .ico .img1 {
    display: inline-block;
}

.indexPart4 .rightDiv li:hover .name {
    color: #fff;
}

.indexPart4 .leftDiv2 {
    width: 64%;
    position: relative;
}

.indexPart4 .leftDiv2 .bg img {
    width: 100%;
}

.indexPart4 .leftDiv2 .layer {
    position: absolute;
    left: 0.65rem;
    top: 50%;
    margin-top: -1.5rem;
}

.indexPart4 .leftDiv2 .txt {
    font-size: 0.3rem;
    color: #fff;
    padding-bottom: 0.3rem;
}

.indexPart4 .leftDiv2 .msg {
    color: #fff;
    line-height: 0.32rem;
    font-size: 0.2rem;
    width: 2.66rem;
}

.indexPart4 .leftDiv2 .btnDiv {
    padding-top: 0.36rem;
}

.indexPart4 .leftDiv2 .btnDiv a {
    font-weight: bold;
    position: relative;
    font-size: 0.2rem;
    color: #fff;
    text-indent: 0.24rem;
    display: block;
    width: 1.62rem;
    height: 0.48rem;
    line-height: 0.48rem;
    border: #fff solid 1px;
}

.indexPart4 .rightDiv2 {
    width: 36%;
    position: relative;
}

.indexPart4 .rightDiv2 .bg img {
    width: 100%;
}

.indexPart4 .rightDiv2 .txt {
    position: absolute;
    left: 50%;
    top: 0.5rem;
    margin-left: -0.4rem;
}

.indexPart4 .rightDiv2 .txt p {
    width: 0.4rem;
    text-align: center;
    color: #fff;
    line-height: 0.32rem;
    font-weight: bold;
    font-size: 0.3rem;
}

.indexPart4 .list2 {
    padding-top: 0.7rem;
}

.indexPart4 .list2 li {
    float: left;
    width: 25%;
    font-size: 0.18rem;
    text-align: center;
}

.indexPart4 .list2 li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #333;
}

.indexPart4 .list2 li .ico {
    padding-bottom: 0.18rem;
}

.indexPart4 .list2 li .ico img {
    width: 0.54rem;
}

.about {
    position: relative;
    overflow: hidden;
}

.aboutLeft {
    background: url(../images/nimg621Bg.jpg) 1.0rem top no-repeat;
    background-size: 6.21rem;
    padding-top: 0.65rem;
    width: 8.7rem;
    /* padding-left: 1.0rem; */
    height: 10.0rem;
    position: relative;
}

.aboutLeft .name {
    font-size: 0.22rem;
    line-height: 0.22rem;
    color: #3f3f3f;
    font-weight: bold;
    padding-bottom: 0.1rem;
}

.aboutLeft .year {
    font-size: 0.6rem;
    line-height: 0.6rem;
    color: #0075cf;
    text-transform: uppercase;
    font-family: medium;
}

.aboutLeft .content {
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #828282;
    padding-top: 0.45rem;
}

.aboutLeft .mxfDiv {
    position: absolute;
    right: 0px;
    bottom: 0px;
    height: 3.15rem;
    width: 8.7rem;
    background: url(../images/nimg435Bg.jpg) right bottom no-repeat;
    background-size: 4.35rem;
}

.aboutLeft .mxfDiv .imgDiv {
    width: 5.65rem;
}

.aboutLeft .mxfDiv .imgDiv img {
    width: 100%;
}

.aboutLeft .mxfDiv .layer {
    position: absolute;
    right: 0px;
    width: 2.58rem;
    top: 0.42rem;
}

.aboutLeft .mxfDiv .txt {
    font-size: 0.42rem;
    color: #fff;
    opacity: 0.3;
    font-family: bold;
}

.aboutLeft .mxfDiv .wen {
    line-height: 18px;
    font-size: 12px;
    color: #fff;
    opacity: 0.2;
}

.aboutLeft .mxfDiv .msg {
    padding-top: 0.2rem;
    font-size: 0.22rem;
    color: #fff;
    line-height: 0.32rem;
}

.aboutRight {
    /* position: absolute; right: 0px; top: 0px;*/
    width: 3.78rem;
}

.aboutRight .toptop {
    position: relative;
}

.aboutRight .toptop .imgDiv img {
    width: 100%;
}

.aboutRight .toptop .layer {
    position: absolute;
    left: 0.72rem;
    top: 0.62rem;
}

.aboutRight .toptop .txt {
    font-size: 0.26rem;
    padding-top: 0.2rem;
    position: relative;
    color: #fff;
}

.aboutRight .toptop .txt:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 0.3rem;
    height: 0.03rem;
    background: #fff;
    opacity: 0.5;
}

.aboutRight .toptop .wen {
    padding-top: 0.15rem;
    color: #fff;
    opacity: 0.3;
    font-size: 0.13rem;
}

.aboutRight .botbot {
    height: 7.3rem;
    position: relative;
    background: #eef4fd url(../images/nimg378Bg.jpg) center bottom no-repeat;
    background-size: 3.78rem;
}

.aboutRight .list {
    padding-top: 0.3rem;
}

.aboutRight .list li .box {
    border-top-right-radius: 0.3rem;
    -moz-border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
    -moz-border-bottom-right-radius: 0.3rem;
    display: inline-block;
    padding: 0 0.52rem 0 0.54rem;
    margin-bottom: 0.15rem;
    height: 0.55rem;
    background: #dce5f4;
    line-height: 0.4rem;
    font-size: 0.14rem;
    color: #95a8b6;
    overflow: hidden;
    -webkit-transition: background 400ms;
    transition: background 400ms;
}

.aboutRight .list li em {
    font-size: 0.36rem;
    color: #0075cf;
    font-family: medium;
    position: relative;
    top: 0.08rem;
}

.aboutRight .list li span {
    color: #0075cf;
    font-size: 0.18rem;
    font-weight: bold;
    padding-right: 0.13rem;
    position: relative;
    top: 0.05rem;
}

.aboutRight .list li:hover .box {
    background: #0075cf;
    color: #a5bbb4;
    color: #fff;
}

.aboutRight .list li:hover em, .aboutRight .list li:hover span {
    color: #fff;
}

.speechLeft {
    width: 8.7rem;
    padding-left: 1.0rem;
    position: relative;
    padding-bottom: 0.4rem;
}

.speechLeft .name {
    font-weight: bold;
    font-size: 0.24rem;
    color: #0075cf;
    padding-bottom: 0.3rem;
}

.speechLeft .content {
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #828282;
}

.speechRight {
    width: 3.78rem;
    padding-bottom: 1.1rem;
    position: relative;
}

.speechRight .mxfDiv {
    background: #f5f9fd;
}

.speechRight .mxfDiv .imgDiv img {
    width: 3.78rem;
}

.speechRight .mxfDiv .name {
    padding: 0.3rem 0 0.05rem 0.38rem;
    font-size: 0.3rem;
    color: #0075cf;
}

.speechRight .mxfDiv .wen {
    font-size: 0.15rem;
    color: #828282;
    padding: 0 0.38rem 0.38rem;
}

.speechRight:after {
    content: '';
    width: 100%;
    height: 0.9rem;
    background: url(../images/nimg10Bg.jpg) repeat;
    background-size: 0.1rem;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.speechBot {
    padding-left: 1.0rem;
}

.speechBot .mxfDiv {
    position: relative;
}

.speechBot .mxfDiv .imgDiv img {
    width: 100%;
}

.speechBot .mxfDiv .layer {
    position: absolute;
    left: 1.3rem;
    top: 1.2rem;
}

.speechBot .mxfDiv .txt {
    font-size: 0.48rem;
    color: #0055bf;
}

.speechBot .mxfDiv .txt img {
    padding-left: 0.24rem;
    width: 0.4rem;
}

.speechBot .mxfDiv .wen {
    font-size: 0.36rem;
    color: #f6c164;
}

.speechBot .content {
    padding-top: 0.3rem;
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #828282;
}

.culturePart1 {
    position: relative;
}

.culturePart1 .leftDiv {
    width: 100%;
}

.culturePart1 .mxfDiv {
    position: relative;
}

.culturePart1 .mxfDiv .imgDiv img {
    width: 100%;
}

.culturePart1 .mxfDiv .layer {
    position: absolute;
    left: 0px;
    top: 0.75rem;
    width: 100%;
}

.culturePart1 .mxfDiv .txt {
    font-size: 0.3rem;
    color: #fff;
    padding-bottom: 0.3rem;
    text-align: center;
}

.culturePart1 .mxfDiv .msg {
    text-align: center;
    line-height: 0.3rem;
    color: #fff;
    font-size: 0.15rem;
    width: 70%;
    margin: 0 auto;
}

.culturePart1 .mxfDiv .btnDiv {
    margin: 0 auto;
    padding-top: 0.7rem;
    width: 1.62rem;
}

.culturePart1 .mxfDiv .btnDiv a {
    font-weight: bold;
    display: block;
    width: 1.62rem;
    height: 0.44rem;
    background: rgba(255, 255, 255, 0.9);
    line-height: 0.44rem;
    font-size: 12px;
    color: #0075cf;
    text-indent: 0.24rem;
}

.culturePart1 .mxfDiv .btnDiv a:after {
    content: '';
    position: absolute;
    right: 0.25rem;
    top: 0.14rem;
    width: 0.4rem;
    height: 0.09rem;
    background: url(../images/nimg40_9.png) no-repeat;
    background-size: 0.4rem;
}

.culturePart1 .rightDiv {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 2.8rem;
}

.pnjDiv {
    width: 2.8rem;
    position: relative;
}

.pnjDiv .imgDiv img {
    width: 100%;
}

.pnjDiv .layer {
    position: absolute;
    left: 0.38rem;
    top: 0.74rem;
}

.pnjDiv .txt {
    font-size: 0.24rem;
    color: #7d7d7d;
    padding-bottom: 0.2rem;
}

.pnjDiv .year {
    font-size: 0.48rem;
    color: #ff9b00;
    font-family: pingfang;
}

.pnjDiv .wen1 {
    color: #3daad7;
    font-size: 0.14rem;
    line-height: 0.24rem;
}

.pnjDiv .wen2 {
    color: #3daad7;
    font-size: 12px;
    line-height: 0.2rem;
    font-weight: bold;
}

.pnjDiv .btnDiv {
    padding-top: 0.38rem;
}

.pnjDiv .btnDiv a {
    display: block;
    width: 1.1rem;
    height: 0.38rem;
    background: #ff9b00;
    color: #fff;
    font-size: 0.14rem;
    text-align: center;
    line-height: 0.38rem;
}

.culturePart2 {
    background: #fcfcfc;
    padding: 0.8rem 0 1.15rem;
}

.culturePart2 .bigBox {
    padding: 0 8.23rem 0 0.68rem;
    position: relative;
    height: 4.58rem;
    background: #0075cf url(../images/nimg450Bg.jpg) left bottom no-repeat;
    background-size: 4.5rem;
}

.culturePart2 .imgDiv {
    position: absolute;
    right: 0px;
    top: 0;
}

.culturePart2 .imgDiv img {
    width: 7.5rem;
}

.culturePart2 .txtDiv {
    padding: 0.85rem 0 0.2rem;
    border-bottom: #ff9b00 solid 2px;
}

.culturePart2 .txt1 {
    font-size: 0.36rem;
    color: #fff;
    font-family: medium;
}

.culturePart2 .txt2 {
    font-size: 0.22rem;
    color: #fff;
    font-weight: bold;
}

.culturePart2 .content {
    padding-top: 0.2rem;
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #fff;
}

.culturePart2 .btnDiv {
    padding-top: 0.4rem;
}

.culturePart2 .btnDiv a {
    position: relative;
    font-weight: bold;
    display: block;
    width: 1.62rem;
    height: 0.44rem;
    background: #fff;
    line-height: 0.44rem;
    font-size: 12px;
    color: #0075cf;
    text-indent: 0.24rem;
}

.culturePart2 .btnDiv a:after {
    content: '';
    position: absolute;
    right: 0.25rem;
    top: 0.14rem;
    width: 0.4rem;
    height: 0.09rem;
    background: url(../images/nimg40_9.png) no-repeat;
    background-size: 0.4rem;
}

.actTab {
    padding-bottom: 0.5rem;
}

.actTab ul {
    margin-right: -0.02rem;
}

.actTab li {
    float: left;
    width: 33.33%;
}

.actTab li .box {
    margin-right: 0.02rem;
}

.actTab li a {
    position: relative;
    display: block;
    height: 0.65rem;
    background: #f0f0f0;
    font-size: 0.16rem;
    color: #828282;
    text-align: center;
    line-height: 0.65rem;
}

.actTab li a:hover, .actTab li .aNow {
    background: #0075cf url(../images/nimg288Bg.jpg) center no-repeat;
    background-size: 2.88rem;
    color: #fff;
}

.actTab li a em {
    display: none;
    content: '';
    width: 0.14rem;
    height: 0.09rem;
    background: url(../images/nimg14_1.png) center no-repeat;
    background-size: 0.14rem;
    position: absolute;
    bottom: -0.09rem;
    left: 50%;
    margin-left: -0.07rem;
}

.actTab li a:hover em, .actTab li .aNow em {
    display: block;
}

.activity {
    padding-bottom: 0.47rem;
}

.activity .list ul {
    margin-right: -0.23rem;
}

.activity .list li {
    float: left;
    width: 50%;
    margin-bottom: 0.33rem;
}

.activity .list li .box {
    margin-right: 0.23rem;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.activity .list li .imgDiv img {
    width: 100%;
}

.activity .list li .name {
    border: #f2f0ea solid 0.02rem;
    border-top: none;
    font-weight: bold;
    height: 0.9rem;
    line-height: 0.9rem;
    padding: 0 0.36rem;
    font-size: 0.18rem;
    color: #333;
    overflow: hidden;
}

.activity .list li:hover .box {
    -webkit-box-shadow: 0 10px 30px 0 hsla(230, 9%, 48%, .2);
    box-shadow: 0 10px 30px 0 hsla(230, 9%, 48%, .2);
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
}

.activity .list li:hover .name {
    color: #0075cf;
}

.concept .part1 {
    position: relative;
}

.concept .part1 .mxfDiv {
    position: relative;
}

.concept .part1 .mxfDiv .bg img {
    width: 100%;
}

.concept .part1 .mxfDiv .layer {
    position: absolute;
    left: 0.75rem;
    top: 1.1rem;
}

.concept .part1 .mxfDiv .txt {
    font-size: 0.24rem;
    line-height: 0.36rem;
    color: #fff;
}

.concept .part1 .mxfDiv .wen {
    font-size: 0.14rem;
    color: #fff;
    opacity: 0.3;
    padding-top: 0.1rem;
}

.sideOne {
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 2.8rem;
}

.sideOne .bg img {
    width: 100%;
}

.sideOne .layer {
    position: absolute;
    left: 0.28rem;
    top: 0.7rem;
}

.sideOne .layer .txt {
    font-size: 0.4rem;
    color: #fdcfa0;
    line-height: 0.36rem;
}

.sideOne .layer .wen {
    font-size: 0.16rem;
    color: #787878;
    padding-top: 0.2rem;
    line-height: 0.3rem;
}

.concept .part2 {
    height: 3.07rem;
    position: relative;
}

.concept .part2 .wen1 {
    font-size: 0.3rem;
    color: #333;
    padding-top: 0.65rem;
}

.concept .part2 .wen2 {
    font-size: 0.36rem;
    color: #ecebeb;
    font-family: medium;
    text-transform: uppercase;
}

.concept .part2 .content {
    padding-top: 0.25rem;
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #828282;
}

.sideTwo {
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 2.8rem;
}

.sideTwo .bg img {
    width: 100%;
}

.sideTwo .layer {
    position: absolute;
    left: 0.28rem;
    top: 0.5rem;
}

.sideTwo .layer .txt {
    font-family: bold;
    font-size: 0.48rem;
    color: #fff;
    opacity: 0.3;
    text-transform: uppercase;
}

.sideTwo .layer .wen {
    font-size: 12px;
    color: #fff;
    opacity: 0.2;
    line-height: 0.2rem;
}

.sideTwo .layer .hao {
    line-height: 0.42rem;
    font-size: 0.16rem;
    color: #fff;
    padding-top: 0.1rem;
}

.sideTwo .layer .hao em {
    display: block;
    font-size: 0.24rem;
}

.concept .part3 {
    height: 3.45rem;
    position: relative;
}

.concept .part3 .mxfDiv {
    position: relative;
}

.concept .part3 .mxfDiv .bg img {
    width: 100%;
}

.concept .part3 .mxfDiv .layer {
    position: absolute;
    left: 0.75rem;
    top: 1.0rem;
}

.concept .part3 .mxfDiv .txt {
    font-size: 0.3rem;
    line-height: 0.36rem;
    color: #fff;
}

.concept .part3 .mxfDiv .wen {
    font-size: 0.14rem;
    color: #fff;
    padding-top: 0.1rem;
}

.sideThree {
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 2.8rem;
}

.sideThree .bg img {
    width: 100%;
}

.sideThree .layer {
    position: absolute;
    left: 0.28rem;
    top: 0.75rem;
}

.sideThree .layer .txt {
    font-family: bold;
    font-size: 0.24rem;
    color: #fff;
}

.sideThree .layer .wen {
    padding-top: 0.25rem;
    font-size: 0.16rem;
    color: #fff;
    line-height: 0.3rem;
}

.conceptTel .part1 .mxfDiv {
    position: relative;
}

.conceptTel .part1 .mxfDiv .bg img {
    width: 100%;
}

.conceptTel .part1 .mxfDiv .layer {
    position: absolute;
    left: 0.75rem;
    top: 1rem;
}

.conceptTel .part1 .mxfDiv .txt {
    font-size: 0.3rem;
    line-height: 0.42rem;
    color: #fff;
}

.conceptTel .part1 .mxfDiv .wen {
    font-size: 0.18rem;
    color: #fff;
    opacity: 0.3;
    padding-top: 0.1rem;
}

.conceptTel .part2 {
    position: relative;
}

.conceptTel .part2 .wen1 {
    font-size: 0.36rem;
    color: #333;
    padding-top: 0.65rem;
}

.conceptTel .part2 .wen2 {
    font-size: 0.42rem;
    color: #ecebeb;
    font-family: medium;
    text-transform: uppercase;
}

.conceptTel .part2 .content {
    padding-top: 0.25rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
    color: #828282;
}

.conceptTel .part3 {
    padding-top: 0.5rem;
}

.conceptTel .part3 .mxfDiv {
    position: relative;
}

.conceptTel .part3 .mxfDiv .bg img {
    width: 100%;
}

.conceptTel .part3 .mxfDiv .layer {
    position: absolute;
    left: 0.75rem;
    top: 1.0rem;
}

.conceptTel .part3 .mxfDiv .txt {
    font-size: 0.4rem;
    line-height: 0.46rem;
    color: #fff;
}

.conceptTel .part3 .mxfDiv .wen {
    font-size: 0.18rem;
    color: #fff;
    padding-top: 0.1rem;
}

.conceptTel .part4 {
    position: relative;
}

.conceptTel .part4 .bg img {
    width: 100%;
}

.conceptTel .part4 .layer {
    position: absolute;
    left: 0.28rem;
    top: 0.35rem;
}

.conceptTel .part4 .layer .txt {
    font-size: 0.48rem;
    color: #fdcfa0;
    line-height: 0.48rem;
}

.conceptTel .part4 .layer .wen {
    font-size: 0.22rem;
    color: #787878;
    padding-top: 0.1rem;
    line-height: 0.36rem;
}

.conceptTel .part5 li {
    float: left;
    width: 50%;
    position: relative;
}

.conceptTel .part5 li .bg img {
    width: 100%;
}

.conceptTel .part5 li .layer {
    position: absolute;
    left: 0.28rem;
    top: 0.5rem;
}

.conceptTel .part5 li .layer .txt {
    font-family: bold;
    font-size: 0.48rem;
    color: #fff;
    opacity: 0.3;
    text-transform: uppercase;
}

.conceptTel .part5 li .layer .wen {
    font-size: 0.16rem;
    color: #fff;
    opacity: 0.2;
    line-height: 0.2rem;
}

.conceptTel .part5 li .layer .hao {
    line-height: 0.42rem;
    font-size: 0.18rem;
    color: #fff;
    padding-top: 0.1rem;
}

.conceptTel .part5 li .layer .hao em {
    display: block;
    font-size: 0.26rem;
}

.conceptTel .part5 li .txt2 {
    font-family: bold;
    font-size: 0.32rem;
    color: #fff;
}

.conceptTel .part5 li .wen2 {
    padding-top: 0.25rem;
    font-size: 0.22rem;
    color: #fff;
    line-height: 0.3rem;
}

.honor .tab2 {
    position: relative;
    padding-bottom: 0.5rem;
}

.honor .tab2:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 0.03rem;
    background: #ddd;
}

.honor .tab2 li {
    padding-top: 0.15rem;
    float: left;
    margin-right: 0.35rem;
    color: #999;
    font-size: 0.18rem;
    font-weight: bold;
    position: relative;
}

.honor .tab2 li:before {
    display: none;
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 0.03rem;
    background: #0075cf;
}

.honor .tab2 .liNow {
    color: #0075cf;
}

.honor .tab2 .liNow:before {
    display: block;
}

.honor .year {
    font-weight: bold;
    font-size: 0.18rem;
    color: #0075cf;
    padding-left: 0.34rem;
    background: url(../images/nimg23_1.png) left center no-repeat;
    background-size: 0.23rem;
}

.honor .year em {
    font-size: 0.36rem;
    padding-right: 0.12rem;
    font-family: bold;
}

.honor .list {
    padding-top: 0.45rem;
}

.honor .list li {
    padding-left: 0.2rem;
    padding-bottom: 0.3rem;
    background: url(../images/ico4.jpg) left 0.12rem no-repeat;
    color: #828282;
    line-height: 0.3rem;
    font-size: 0.14rem;
}

.sideCulture {
    position: relative;
}

.sideCulture .imgDiv img {
    width: 100%;
}

.sideCulture .layer {
    position: absolute;
    left: 0.3rem;
    top: 0.7rem;
}

.sideCulture .txt {
    font-size: 0.4rem;
    color: #d2a740;
    line-height: 0.38rem;
    padding-bottom: 0.15rem;
}

.sideCulture .wen {
    color: #787878;
    font-size: 0.18rem;
    line-height: 0.3rem;
}

.park {
    height: 4.2rem;
    overflow: hidden;
}

.parkLeft {
    width: 8.7rem;
    padding-left: 1.0rem;
    padding-top: 0.84rem;
    height: 3.36rem;
    background: url(../images/nimg870Bg.jpg) right bottom no-repeat;
    background-size: 8.7rem;
}

.parkLeft .content {
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #828282;
    padding-top: 0.25rem;
}

.parkRight {
    width: 3.78rem;
    position: relative;
}

.parkRight .bg img {
    width: 100%;
}

.parkRight .layer {
    position: absolute;
    left: 0.4rem;
    top: 0.82rem;
}

.parkRight .txt {
    color: #0075cf;
    font-size: 0.32rem;
    font-family: medium;
}

.parkRight .wen {
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #828282;
    padding-top: 0.15rem;
}

.parkBox {
    background: url(../images/bg2.jpg) left top repeat-x;
    padding-bottom: 0.8rem;
}

.park2 {
    overflow: hidden;
}

.parkLeft2 {
    width: 8.7rem;
    padding-left: 1.0rem;
    padding-top: 0.7rem;
}

.parkLeft2 .imgList li {
    margin-bottom: 0.32rem;
}

.parkLeft2 .imgList li img {
    width: 100%;
}

.parkRight2 {
    width: 3.78rem;
    position: relative;
}

.parkRight2 .bg img {
    width: 100%;
}

.parkRight2 .layer {
    position: absolute;
    left: 0.4rem;
    top: 0.7rem;
}

.parkRight2 .txt {
    color: #0075cf;
    font-size: 0.4rem;
}

.parkRight2 .wen {
    font-size: 0.18rem;
    color: #787878;
    padding-top: 0.15rem;
}

.parkRight2 .msg {
    font-size: 0.14rem;
    color: #a0a4ae;
    opacity: 0.5;
    padding-top: 0.2rem;
}

.partner {
    background: url(../images/nimg326Bg.jpg) right top no-repeat;
    background-size: 3.26rem;
}

.partner .content {
    padding: 0.25rem 0 0.55rem;
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #828282;
}

.partner .list ul {
    margin-right: -0.29rem;
}

.partner .list li {
    float: left;
    width: 33.33%;
    margin-bottom: 0.3rem;
}

.partner .list li .box {
    margin-right: 0.29rem;
}

.partner .list li .imgDiv {
    border: #eee solid 1px;
}

.partner .list li img {
    width: 100%;
}

.sideCoo {
    position: relative;
}

.sideCoo .imgDiv img {
    width: 100%;
}

.sideCoo .layer {
    position: absolute;
    left: 0.3rem;
    top: 0.7rem;
}

.sideCoo .txt {
    font-size: 0.4rem;
    color: #fcc67b;
    line-height: 0.38rem;
    padding-bottom: 0.15rem;
}

.sideCoo .wen {
    color: #787878;
    font-size: 0.18rem;
    line-height: 0.3rem;
}

.researchPart1 {
    padding-bottom: 0.65rem;
}

.researchPart1 .content {
    padding: 0.25rem 0 0.55rem;
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #828282;
}

.researchPart1 .mxfDiv {
    margin-bottom: 0.75rem;
    height: 3.15rem;
    position: relative;
    padding-left: 6.1rem;
    background: url(../images/nimg435Bg.jpg) right top no-repeat;
    background-size: 4.35rem;
}

.researchPart1 .mxfDiv .imgDiv {
    position: absolute;
    left: 0px;
    top: 0;
}

.researchPart1 .mxfDiv .imgDiv img {
    width: 5.66rem;
}

.researchPart1 .mxfDiv .txt {
    font-family: medium;
    font-size: 0.4rem;
    color: #fff;
    opacity: 0.3;
    padding: 0.6rem 0 0.25rem;
    text-transform: uppercase;
}

.researchPart1 .mxfDiv .msg {
    color: #fff;
    font-size: 0.22rem;
    line-height: 0.36rem;
}

.researchPart1 .title {
    height: 0.4rem;
    line-height: 0.4rem;
    padding-left: 0.48rem;
    color: #333;
    font-size: 0.24rem;
    font-weight: bold;
    position: relative;
}

.researchPart1 .title .num {
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -0.15rem;
    width: 0.33rem;
    height: 0.29rem;
    background: url(../images/nimg33_1.png) center no-repeat;
    background-size: 0.33rem;
}

.researchPart1 .title .num em {
    width: 0.29rem;
    display: block;
    text-align: center;
    line-height: 0.29rem;
    font-size: 0.14rem;
    color: #fff;
}

.researchPart1 .bigImg {
    padding-top: 0.25rem;
}

.researchPart1 .bigImg img {
    width: 12.0rem;
}

.sideCompany {
    position: relative;
}

.sideCompany .bg img {
    width: 100%;
}

.sideCompany .layer {
    position: absolute;
    left: 0.4rem;
    top: 0.7rem;
}

.sideCompany .txt {
    color: #0075cf;
    font-size: 0.4rem;
}

.sideCompany .wen {
    font-size: 0.18rem;
    color: #787878;
    padding-top: 0.15rem;
}

.sideCompany .msg {
    font-size: 0.14rem;
    color: #a0a4ae;
    opacity: 0.5;
    padding-top: 0.2rem;
}

.researchPart2 {
    padding: 0.8rem 0 0.7rem;
    background: #f3f2f2;
}

.researchPart2 .list li {
    margin-bottom: 0.45rem;
    position: relative;
    padding-top: 0.55rem;
}

.researchPart2 .list li .imgDiv {
    position: absolute;
    left: 0.45rem;
    top: 0px;
}

.researchPart2 .list .li01 .imgDiv {
    left: auto;
    right: 0.45rem;
}

.researchPart2 .list li .imgDiv img {
    width: 2.86rem;
}

.researchPart2 .list li .box {
    box-shadow: 0 0 15px #ddd;
    padding: 0 0.45rem 0 3.75rem;
    background: #fff;
    height: 3.32rem;
}

.researchPart2 .list .li01 .box {
    padding: 0 3.75rem 0 0.45rem;
}

.researchPart2 .list li .mxfDiv {
    padding-top: 0.6rem;
}

.researchPart2 .list li .title {
    height: 0.4rem;
    line-height: 0.4rem;
    padding-left: 0.48rem;
    color: #333;
    font-size: 0.24rem;
    font-weight: bold;
    position: relative;
}

.researchPart2 .list li .title .num {
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -0.15rem;
    width: 0.33rem;
    height: 0.29rem;
    background: url(../images/nimg33_1.png) center no-repeat;
    background-size: 0.33rem;
}

.researchPart2 .list li .title .num em {
    width: 0.29rem;
    display: block;
    text-align: center;
    line-height: 0.29rem;
    font-size: 0.14rem;
    color: #fff;
}

.researchPart2 .list li .content {
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #828282;
    padding-top: 0.25rem;
}

.researchPart3 {
    padding: 0.45rem 0 0.9rem;
}

.researchPart3 .title {
    height: 0.4rem;
    line-height: 0.4rem;
    padding-left: 0.48rem;
    color: #333;
    font-size: 0.24rem;
    font-weight: bold;
    position: relative;
}

.researchPart3 .title .num {
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -0.15rem;
    width: 0.33rem;
    height: 0.29rem;
    background: url(../images/nimg33_1.png) center no-repeat;
    background-size: 0.33rem;
}

.researchPart3 .title .num em {
    width: 0.29rem;
    display: block;
    text-align: center;
    line-height: 0.29rem;
    font-size: 0.14rem;
    color: #fff;
}

.researchPart3 .list {
    padding-top: 0.35rem;
}

.researchPart3 .list li {
    padding-left: 0.28rem;
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #828282;
    padding-bottom: 0.45rem;
    background: url(../images/ico2on.png) left 0.1rem no-repeat;
    background-size: 0.1rem;
}

.making .content {
    padding: 0.15rem 0 0.35rem;
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #828282;
}

.making .bigImg img {
    width: 100%;
}

.making .imgList {
    padding-top: 0.1rem;
}

.making .imgList ul {
    margin-right: -0.08rem;
}

.making .imgList li {
    float: left;
    width: 50%;
}

.making .imgList li .box {
    margin-right: 0.08rem;
}

.making .imgList li img {
    width: 100%;
}


.making .part1 .name {
    color: #333;
    font-size: 0.3rem;
    line-height: 0.5rem;
    padding: 0.5rem 0 0.3rem;
    font-weight: bold;
}

.making .part1 .content {
    font-size: 0.14rem;
    color: #828282;
}

.making .part2 {
    background: #f7f7f7;
}

.making .part2 .leftDiv {
    width: 50%;
    padding-top: 0.9rem;
}

.making .part2 .txt {
    padding-left: 0.42rem;
    font-size: 0.24rem;
    color: #3f3f3f;
    position: relative;
    height: 0.46rem;
    line-height: 0.46rem;
}

.making .part2 .txt img {
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 0.25rem;
}

.making .part2 .txt em {
    font-size: 0.14rem;
    color: #cdcdcd;
    padding-left: 0.2rem;
}

.making .part2 .content {
    font-size: 0.14rem;
    color: #828282;
    line-height: 0.32rem;
    padding: 0.35rem 0.4rem 0 0;
}

.making .part2 .rightImg {
    width: 50%;
}

.making .part2 .rightImg img {
    width: 100%;
}

.making .part3 {
    padding-bottom: 2.3rem;
}

.making .part3 .rightDiv {
    width: 50%;
    padding-top: 1.2rem;
}

.making .part3 .txt {
    padding-left: 0.42rem;
    font-size: 0.24rem;
    color: #3f3f3f;
    position: relative;
    height: 0.46rem;
    line-height: 0.46rem;
}

.making .part3 .txt img {
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 0.25rem;
}

.making .part3 .txt em {
    font-size: 0.14rem;
    color: #cdcdcd;
    padding-left: 0.2rem;
}

.making .part3 .content {
    font-size: 0.14rem;
    color: #828282;
    line-height: 0.32rem;
    padding-top: 0.1rem;
}

.making .part3 .mxfDiv {
    padding-left: 0.7rem;
}

.making .part3 .leftImg {
    width: 50%;
}

.making .part3 .leftImg img {
    width: 100%;
}

.news .imgList li {
    height: 2.8rem;
    position: relative;
    padding-left: 3.62rem;
    background: url(../images/line1.jpg) left bottom repeat-x;
}

.news .imgList li:last-child {
    background: none;
}

.news .imgList li .imgDiv {
    position: absolute;
    left: 0px;
    top: 0.36rem;
}

.news .imgList li .imgDiv img {
    width: 3.24rem;
}

.news .imgList li .name {
    padding-top: 0.75rem;
    height: 0.3rem;
    line-height: 0.3rem;
    overflow: hidden;
    font-size: 0.18rem;
    font-weight: bold;
}

.news .imgList li .name a {
    color: #333;
    display: block;
}

.news .imgList li .name a:hover {
    color: #0075cf;
}

.news .imgList li .content {
    font-size: 0.14rem;
    color: #828282;
    height: 0.48rem;
    line-height: 0.24rem;
    overflow: hidden;
    padding-top: 0.15rem;
}

.news .imgList li .botbot {
    padding-top: 0.25rem;
    overflow: hidden;
    position: relative;
}

.news .imgList li .share dd {
    float: left;
    margin-right: 0.17rem;
}

.news .imgList li .share dd a {
    color: #ccc;
    display: block;
    font-size: 0.14rem;
    font-weight: bold;
}

.news .imgList li .share dd img {
    padding-right: 0.07rem;
    width: 0.19rem;
}

.news .imgList li .time {
    position: absolute;
    right: 0px;
    top: 0.25rem;
    color: #c9c9c9;
    font-weight: bold;
    font-size: 0.14rem;
}

.news .list {
    padding-bottom: 1.05rem;
}

.news .list li {
    height: 1.6rem;
    border-bottom: #e9e9e9 dashed 1px;
    position: relative;
    padding-top: 0.34rem;
}

.news .list li .name {
    height: 0.3rem;
    line-height: 0.3rem;
    overflow: hidden;
    font-size: 0.18rem;
    font-weight: bold;
}

.news .list li .name a {
    color: #333;
    display: block;
    margin-left: 5px;
}

.news .list li .name a:hover {
    color: #0075cf;
}

.news .list li .content {
    font-size: 0.14rem;
    color: #828282;
    height: 0.48rem;
    line-height: 0.24rem;
    overflow: hidden;
    padding-top: 0.15rem;
}

.news .list li .botbot {
    padding-top: 0.25rem;
    overflow: hidden;
    position: relative;
}

.news .list li .share dd {
    float: left;
    margin-right: 0.17rem;
}

.news .list li .share dd a {
    color: #ccc;
    display: block;
    font-size: 0.14rem;
    font-weight: bold;
    margin-left: 5px;
}

.news .list li .share dd img {
    padding-right: 0.07rem;
    width: 0.19rem;
}

.news .list li .time {
    position: absolute;
    right: 0px;
    top: 0.25rem;
    color: #c9c9c9;
    font-weight: bold;
    font-size: 0.14rem;
}

.news .list li:hover {
    background: #fafafa;
}

.sideSearch .botDiv {
    padding: 0.6rem 0.34rem 0.8rem;
    background: #f7f7f7;
}

.sideSearch .form .box {
    padding-bottom: 0.15rem;
}

.sideSearch .form .box .txt {
    font-weight: bold;
    font-size: 0.18rem;
    color: #b6b8ba;
    padding-bottom: 0.16rem;
}

.sideSearch .select {
    background: #fff url(../images/nimg18_1.jpg) 0.1rem center no-repeat;
    background-size: 0.18rem;
    border: #f0f0f0 solid 0.02rem;
    position: relative;
    height: 0.4rem;
}

.sideSearch .select dt {
    height: 0.4rem;
    line-height: 0.4rem;
    display: inline-block;
    width: 100%;
    background: url(../images/selectIco.jpg) no-repeat right center;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.sideSearch .select dt a {
    font-size: 0.14rem;
    color: #b4b4b4;
    position: relative;
    padding-left: 0.4rem;
    display: block;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sideSearch .select dd {
    margin: 0;
    position: absolute;
    left: 0px;
    top: 0.4rem;
    z-index: 10;
    width: 100%;
}

.sideSearch .select dd ul {
    list-style: none;
    overflow: auto;
    padding: 0 0.2rem;
    background: #fff;
}

.sideSearch .select dd ul li {
    line-height: 0.4rem;
    height: 0.4rem;
    cursor: pointer;
    border-bottom: 1px solid #ebebeb;
    color: #b4b4b4;
    font-size: 0.14rem;
}

.sideSearch .select dd ul li:hover {
    color: #000;
}

.sideSearch .llbox {
    height: 0.4rem;
    background: #fff;
    position: relative;
    border: #f0f0f0 solid 0.02rem;
}

.sideSearch .input1 {
    width: 100%;
    height: 0.4rem;
    line-height: 0.4rem;
    font-size: 0.14rem;
    color: #b4b4b4;
    text-indent: 0.2rem;
}

.sideSearch .btn1 {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 0.28rem;
    height: 0.4rem;
    background: url(../images/nimg14_2.png) left no-repeat;
    z-index: 2;
}

.jgdtcDiv {
    padding: 0.36rem 0.46rem 1.1rem;
    background: #f8f8f8 url(../images/nimg280Bg2.jpg) center bottom no-repeat;
    background-size: 2.8rem;
}

.sideSearch .month {
    font-size: 0.48rem;
    color: #0075cf;
    line-height: 0.48rem;
    font-family: bold;
    padding-bottom: 0.1rem;
}

.sideSearch .time em {
    display: block;
    width: 21px;
    height: 2px;
    background: #0075cf;
    margin-bottom: 10px;
}

.sideSearch .year {
    padding: 0.13rem 0;
    font-size: 0.18rem;
    font-weight: bold;
    color: #808080;
}

.sideSearch .p {
    font-size: 0.14rem;
    line-height: 0.24rem;
    margin-right: -0.22rem;
    color: #7f7e7e;
}

.sideSearch .p a {
    color: #000;
}

.sideSearch .share {
    padding-top: 22px;
    padding-bottom: 52px;
}

.sideSearch .share {
    overflow: hidden;
}

.sideSearch .share li {
    float: left;
    margin: 0 0.14rem 0 0;
}

.sideSearch .share li img {
    width: 0.41rem;
}

.sideSearch .share li .img1 {
    display: none;
}

.sideSearch .share li:hover img {
    display: none;
}

.sideSearch .share li:hover .img1 {
    display: inline-block;
}

.sideSearch .h6 {
    font-weight: bold;
    font-size: 0.2rem;
    color: #333;
    padding-bottom: 0.24rem;
    border-bottom: 1px solid #d3d3d3;
}

.sideSearch .list {
    padding-top: 0.35rem;
}

.sideSearch .list li {
    padding-bottom: 0.2rem;
    font-size: 0.14rem;
    line-height: 0.24rem;
}

.sideSearch .list li a {
    display: block;
    color: #868282;
}

.sideSearch .list li a:hover {
    color: #0075cf;
}

.newShow {
    padding-bottom: 50px;
}

.newShow .name {
    font-size: 0.28rem;
    color: #333;
    padding-bottom: 0.2rem;
    font-weight: bold;
}

.newShow .shu {
    padding-bottom: 0.45rem;
    border-bottom: #f3f3f3 solid 1px;
}

.newShow .shu li {
    color: #ccc;
    float: left;
    margin-right: 0.2rem;
    font-size: 0.14rem;
    font-weight: bold;
}

.newShow .shu li img {
    padding-right: 0.07rem;
    width: 0.19rem;
}

.newShow .content {
    padding-top: 0.45rem;
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #828282;
}

.newShow .imgDiv {
    padding: 0.4rem 0;
    text-align: center;
}

.newShow .wen {
    font-size: 0.18rem;
    color: #393939;
    padding: 0.3rem 0;
}

.newShow .imgDiv img {
    max-width: 7.8rem;
}

.newShow .content img {
    max-width: 7.8rem;
}

.pageDown {
    border-top: #eee solid 1px;
    padding: 0.4rem 0 0.7rem;
    overflow: hidden;
}

.pageDown li {
    font-size: 0.14rem;
    height: 0.3rem;
    line-height: 0.3rem;
    overflow: hidden;
}

.pageDown li b {
    color: #444;
}

.pageDown li a {
    color: #8b9195;
}

.pageDown li a:hover {
    color: #0075cf;
}

.pageBtn ul {
    margin-right: -0.75rem;
}

.pageBtn li {
    float: left;
    width: 33.33%;
    font-size: 0.14rem;
}

.pageBtn li .box {
    margin-right: 0.75rem;
}

.pageBtn li a {
    color: #777;
    display: block;
    height: 0.5rem;
    line-height: 0.5rem;
    background: #fff;
    box-shadow: 0 0 10px #ddd;
    border-radius: 0.24rem;
    -moz-border-radius: 0.24rem;
}

.pageBtn li .prev {
    text-indent: 1.1rem;
    background: url(../images/nimg8_left.png) 0.6rem center no-repeat;
}

.pageBtn li .return {
    text-indent: 0.86rem;
    background: url(../images/nimg9_1.png) 0.64rem center no-repeat;
}

.pageBtn li .next {
    text-indent: 0.63rem;
    background: url(../images/nimg8_right.png) 1.48rem center no-repeat;
}

.pageBtn li a:hover {
    color: #0075cf;
}

.pageBtn li .prev:hover {
    background: #fff url(../images/nimg8_lefton.png) 0.6rem center no-repeat;
}

.pageBtn li .return:hover {
    background: #fff url(../images/nimg9_1on.png) 0.64rem center no-repeat;
}

.pageBtn li .next:hover {
    background: #fff url(../images/nimg8_righton.png) 1.48rem center no-repeat;
}

.purpose .content {
    padding: 0.1rem 0 0.2rem;
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #828282;
}

.purpose .mxfDiv {
    position: relative;
}

.purpose .mxfDiv .bg img {
    width: 100%;
}

.purpose .mxfDiv .layer {
    position: absolute;
    left: 0.6rem;
    top: 0.85rem;
}

.purpose .mxfDiv .txt {
    font-size: 0.48rem;
    color: #0075cf;
    font-family: medium;
    text-transform: uppercase;
}

.purpose .mxfDiv .wen {
    font-size: 0.3rem;
    color: #0075cf;
    line-height: 0.48rem;
}

.sideCulture .bg img {
    width: 100%;
}

.sideCulture .layer {
    position: absolute;
    left: 0.28rem;
    top: 0.7rem;
}

.sideCulture .layer .txt {
    font-size: 0.4rem;
    color: #fdcfa0;
    line-height: 0.36rem;
}

.sideCulture .layer .wen {
    font-size: 0.16rem;
    color: #787878;
    padding-top: 0.2rem;
    line-height: 0.3rem;
}

.service .part1 {
    overflow: hidden;
}

.service .leftDiv {
    width: 4.8rem;
}

.service .msgList {
    padding-top: 0.5rem;
}

.service .msgList li {
    font-size: 0.15rem;
    line-height: 0.32rem;
    color: #828282;
}

.service .mapDiv {
    width: 6.3rem;
}

.service .mapDiv img {
    width: 100%;
}

.service .part2 {
    padding-top: 0.2rem;
}

.service .titleDiv {
    padding-top: 0.45rem;
}

.service .title {
    height: 0.62rem;
    background: #0075cf;
    font-size: 0.18rem;
    padding-left: 0.4rem;
    color: #fff;
    font-weight: bold;
    line-height: 0.62rem;
}

.service .list {
    border-bottom: #efefef solid 1px;
}

.service .list li {
    padding: 0.4rem 0;
    width: 50%;
    float: left;
}

.service .list li .box {
    padding-left: 0.4rem;
}

.service .list li .name1 {
    font-size: 0.18rem;
    color: #181818;
    line-height: 0.36rem;
}

.service .list li .name2 {
    color: #0075cf;
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 0.2rem;
}

.service .list dd {
    font-size: 0.14rem;
    color: #828282;
    line-height: 0.24rem;
}

.service .list li .btn {
    display: block;
    padding-top: 0.2rem;
    color: #0075cf;
    font-size: 0.14rem;
}

.service .list li .btn img {
    width: 0.15rem;
    padding-right: 0.12rem;
}

.service .list li .btn:hover {
    text-decoration: underline;
}

/*  */
.message-box {
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-between;
    padding: 80px 30px;


}

.message-box .message-left {
    width: 50%;
}

.message-box .message-left .input {
    width: 100%;
    margin-bottom: 20px;
}

.message-box .message-left .input .am-form-field {
    padding: 10px 10px;
    width: 90%;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 4px;
}

.message-box .message-left button {
    background: #0075cf;
    padding: 10px;
    width: calc(50% - 25px);
    color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
    display: block;
    margin: 0 auto;
    font-size: 16px;
    text-align: center;
}

.message-box .message-right {
    width: 50%;
}

.message-box .message-right .title {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 500;
}

.message-box .message-right .cont p {
    font-size: 18px;
    border-bottom: 1px dashed #666;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

/*  */

.lyb .part1 {
    height: 2.5rem;
    background: url(../images/nimg442Bg.jpg) right top no-repeat;
    background-size: 4.42rem;
}

.lyb .part1 .msg {
    font-size: 0.14rem;
    padding-top: 0.5rem;
}

.lyb .part2 {
    background: #f5f5f5;
    padding: 0.68rem 0.45rem 0.9rem;
}

.lyb .form_l {
    width: 4.6rem;
}

.lyb .form_l .iput {
    width: 100%;
    /* padding: 0 10px; */
    margin-bottom: 20px;
    background: #fff;

}

.lyb .form_l .iput .am-form-field {
    padding: 10px 15px;
    width: 100%;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 4px;

}

.lyb .form_l .input {
    height: 0.6rem;
    position: relative;
    padding-left: 1.32rem;
}

.lyb .form_l .input .txt {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 1.2rem;
    text-align: right;
    font-size: 0.16rem;
    line-height: 0.4rem;
    color: #5b5b5b;
}

.lyb .form_l .input .txt em {
    color: #ff0000;
}

.lyb .form_l .input .txt img {
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -0.08rem;
    width: 0.17rem;
}

.lyb .form_l .input .input1 {
    width: 100%;
    height: 0.4rem;
    background: #fff;
    line-height: 0.4rem;
    border-radius: 0.04rem;
    font-size: 0.14rem;
    text-indent: 0.1rem;
}

.lyb .form_r {
    width: 5.4rem;
}

.lyb .form_r .txt {
    position: relative;
    width: 1.2rem;
    text-align: right;
    font-size: 0.16rem;
    line-height: 0.4rem;
    color: #5b5b5b;
    height: 0.55rem;
}

.lyb .form_r .txt img {
    position: absolute;
    left: 0px;
    top: 0.12rem;
    width: 0.17rem;
}

.lyb .form_r textarea {
    width: 100%;
    height: 1.65rem;
    background: #fff;
}

.lyb .form_r .btnGroup {
    padding-top: 0.24rem;
}

.lyb .form_r .btnGroup li {
    float: left;
    margin-right: 0.35rem;
}

.lyb .form_r .btnGroup a {
    display: block;
    width: 0.96rem;
    height: 0.3rem;
    text-align: center;
    line-height: 0.3rem;
    border: #00b8fa solid 1px;
    color: #0075cf;
    font-size: 0.14rem;
    border-radius: 0.24rem;
}

.lyb .form_r .btnGroup a:hover {
    border: #0075cf solid 1px;
    background: #0075cf;
    color: #fff;
}



.led1 {
    padding-bottom: 55px;
}

.led1 .text {
    font-size: 16px;
    color: #7b7b7b;
    line-height: 1.5;
    padding-top: 20px;
}

.led1 .more a {
    margin: 0 auto;
    margin-top: 30px;
    display: block;
    width: 300px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 18px;
    color: #fff;
    background-color: #1fb6eb;
    border-radius: 4px;
}

.led1 .more a img {
    padding-left: 30px;
}

.led1 .more a:hover {
    text-decoration: underline;
}

.led2 {
    background-color: #f6f6f6;
    padding-top: 80px;
    padding-bottom: 60px;
}

.led2 .content {
    background-color: #fff;
}

.led2 .imgDiv {
    float: left;
    overflow: hidden;
}

.led2 .imgDiv:hover img {
    opacity: 0.5;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.led2 .text {
    float: left;
    width: 350px;
    padding: 51px;
    font-size: 16px;
    color: #595959;
    line-height: 1.5;
}

.led2 .text .look {
    font-size: 12px;
    color: #8e8e8e;
    border: 1px #a5a5a5 solid;
    width: 110px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: block;
    margin-top: 40px;
}

.led2 .text .look:hover {
    background-color: #0075cf;
    color: #fff;
    border: 1px #0075cf solid;
}

.led2 h1 {
    font-weight: inherit;
    font-size: 30px;
    color: #000;
    padding-bottom: 50px;
}

.led3 {
    padding: 75px 0;
}

.led3 .wal1160 {
    background-color: #f6f6f6;
}

.led3 .text {
    float: left;
    width: 350px;
    padding: 30px;
    font-size: 16px;
    color: #595959;
    line-height: 1.5;
}

.led3 .text .look {
    font-size: 12px;
    color: #8e8e8e;
    border: 1px #a5a5a5 solid;
    width: 110px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: block;
    margin-top: 40px;
}

.led3 .text .look:hover {
    background-color: #0075cf;
    color: #fff;
    border: 1px #0075cf solid;
}

.led3 .imgDiv {
    float: right;
    width: 727px;
}

.led3 .imgDiv:hover img {
    opacity: 0.5;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.led4 {
    padding: 75px 0;
    background-color: #f6f6f6;
}

.led4 .wal1160 {
    background-color: #fff;
}

.led4 .text {
    float: left;
    width: 350px;
    padding: 30px;
    font-size: 16px;
    color: #595959;
    line-height: 1.5;
}

.led4 .text .look {
    font-size: 12px;
    color: #8e8e8e;
    border: 1px #a5a5a5 solid;
    width: 110px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: block;
    margin-top: 40px;
}

.led4 .text .look:hover {
    background-color: #0075cf;
    color: #fff;
    border: 1px #0075cf solid;
}

.led4 .imgDiv {
    float: left;
    width: 727px;
}

.led4 .imgDiv:hover img {
    opacity: 0.5;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.led5 {
    padding-top: 80px;
}

.led5 .wal1160 {
    background-color: #f6f6f6;
}

.led5 .imgDiv {
    float: left;
    overflow: hidden;
}

.led5 .imgDiv:hover img {
    opacity: 0.5;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.led5 .text {
    float: left;
    width: 350px;
    padding: 42px;
    font-size: 16px;
    color: #595959;
    line-height: 1.5;
}

.led5 .text .look {
    font-size: 12px;
    color: #8e8e8e;
    border: 1px #a5a5a5 solid;
    width: 110px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: block;
    margin-top: 40px;
}

.led5 .text .look:hover {
    background-color: #0075cf;
    color: #fff;
    border: 1px #0075cf solid;
}

.led .phimg {
    display: none;
}

.ledlogoph {
    display: none;
}


.sideJob {
    position: relative;
}

.sideJob .bg img {
    width: 100%;
}

.sideJob .layer {
    position: absolute;
    left: 0.28rem;
    top: 0.7rem;
}

.sideJob .layer .txt {
    font-size: 0.4rem;
    color: #f6c18a;
    line-height: 0.36rem;
}

.sideJob .layer .wen {
    font-size: 0.16rem;
    color: #f6830c;
    padding-top: 0.2rem;
    line-height: 0.3rem;
}

.join {
    background: url(../images/nimg971Bg.jpg) right 0.9rem no-repeat;
    background-size: 8.7rem;
}

.join .pageTitle {
    padding-bottom: 0.5rem;
}

.join .txt {
    font-size: 0.18rem;
    color: #0075cf;
    font-weight: bold;
    padding-bottom: 0.2rem;
}

.join .txt img {
    padding-left: 0.18rem;
    width: 0.4rem;
}

.join .list {
    padding-bottom: 0.8rem;
}

.join .list li {
    padding-left: 0.25rem;
    color: #828282;
    line-height: 0.3rem;
    font-size: 0.14rem;
    background: url(../images/nimg10_2.png) left 0.12rem no-repeat;
    background-size: 0.1rem;
}

.join .imgList ul {
    margin-right: -0.18rem;
}

.join .imgList li {
    float: left;
    width: 50%;
}

.join .imgList li .box {
    margin-right: 0.18rem;
    position: relative;
}

.join .imgList li .imgDiv img {
    width: 100%;
}

.join .imgList li .layer {
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -0.4rem;
    height: 0.8rem;
    width: 100%;
    text-align: center;
}

.join .imgList li .layer a {
    color: #fff;
}

.join .imgList li .name {
    color: #fff;
    font-size: 0.24rem;
}

.join .imgList li .name img {
    padding-right: 0.08rem;
    width: 0.32rem;
    position: relative;
    top: -0.05rem;
}

.join .imgList li .wen {
    text-transform: uppercase;
    font-size: 0.18rem;
    color: #fff;
    padding-top: 0.15rem;
}

.download .list {
    padding: 0.35rem 0 0.8rem;
}

.download .list li {
    margin-bottom: 0.22rem;
    padding-left: 0.4rem;
    height: 0.75rem;
    background: #f8f8f8;
    position: relative;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.download .list li .name {
    padding-left: 0.18rem;
    font-size: 0.16rem;
    position: relative;
    line-height: 0.75rem;
}

.download .list li .name:before {
    content: '';
    position: absolute;
    width: 0.08rem;
    height: 0.08rem;
    background: #0075cf;
    top: 50%;
    margin-top: -0.04rem;
    left: 0;
}

.download .list li .time {
    position: absolute;
    left: 4.65rem;
    color: #afafaf;
    font-size: 0.14rem;
    top: 0px;
    line-height: 0.75rem;
}

.download .list li .more {
    position: absolute;
    right: 0.46rem;
    top: 50%;
    margin-top: -0.19rem;
}

.download .list li .more img {
    width: 0.38rem;
}

.download .list li .more .img1 {
    display: none;
}

.download .list li:hover {
    -webkit-box-shadow: 0 10px 30px 0 hsla(230, 9%, 48%, .2);
    box-shadow: 0 10px 30px 0 hsla(230, 9%, 48%, .2);
}

.download .list li:hover .name {
    color: #0075cf;
    font-weight: bold;
}

.download .list li:hover .more img {
    display: none;
}

.download .list li:hover .more .img1 {
    display: inline-block;
}

.car .part1 {
    padding-top: 0.3rem;
}

.car .toptop {
    min-height: 4.14rem;
    position: relative;
    padding-left: 6.74rem;
}

.car .toptop .imgDiv {
    position: absolute;
    left: 0px;
    top: 0px;
}

.car .toptop .imgDiv img {
    width: 6.0rem;
}

.car .toptop .txt {
    padding-top: 0.55rem;
    position: relative;
    height: 0.5rem;
    color: #0075cf;
    font-size: 0.24rem;
    font-weight: bold;
}

.car .toptop .txt:after {
    content: '';
    width: 0.26rem;
    height: 0.03rem;
    position: absolute;
    left: 0px;
    bottom: 0;
    background: #0075cf;
}

.car .toptop .content {
    font-size: 0.14rem;
    color: #828282;
    padding-top: 0.55rem;
    line-height: 0.3rem;
}

.car .botbot {
    overflow: hidden;
}

.car .botbot .leftDiv {
    width: 6.0rem;
    position: relative;
}

.car .botbot .leftDiv .bg img {
    width: 100%;
}

.car .botbot .leftDiv .layer {
    position: absolute;
    left: 0.72rem;
    top: 0.5rem;
}

.car .botbot .leftDiv .txt {
    color: #fff;
    font-size: 0.3rem;
    line-height: 0.36rem;
    text-transform: uppercase;
    font-family: medium;
}

.car .botbot .leftDiv .wen {
    padding-top: 0.1rem;
    color: #fff;
    font-size: 0.3rem;
    font-weight: bold;
}

.car .botbot .leftDiv .msg {
    font-size: 0.14rem;
    opacity: 0.3;
    color: #7fc4f9;
    padding-top: 0.2rem;
}

.car .botbot .imgDiv {
    width: 6.0rem;
}

.car .botbot .imgDiv img {
    width: 100%;
}

.car .list {
    padding-top: 0.48rem;
}

.car .list ul {
    margin-right: -0.18rem;
}

.car .list li {
    float: left;
    width: 25%;
}

.car .list li .box {
    margin-right: 0.18rem;
    height: 3.58rem;
    background: url(../images/nimg290Bg.jpg) center no-repeat;
    background-size: 2.9rem;
}

.car .list li .ico {
    padding: 0.68rem 0 0.32rem;
    text-align: center;
}

.car .list li .ico img {
    width: 0.66rem;
}

.car .list li .name {
    text-align: center;
    font-size: 0.16rem;
    color: #363636;
    font-weight: bold;
    padding-bottom: 0.25rem;
}

.car .list li .msg {
    padding: 0 0.42rem;
}

.car .list li .msg p {
    line-height: 0.24rem;
    color: #a0a1a1;
}

.automotive .content {
    font-size: 0.14rem;
    padding: 0.3rem 0 0.35rem;
    line-height: 0.3rem;
    color: #828282;
}

.automotive .mxfDiv {
    position: relative;
}

.automotive .mxfDiv .bigImg img {
    width: 100%;
}

.automotive .mxfDiv .btnDiv {
    position: absolute;
    left: 50%;
    bottom: 0.46rem;
    width: 1.9rem;
    margin-left: -0.85rem;
}

.automotive .mxfDiv .btnDiv a {
    position: relative;
    font-size: 12px;
    color: #fff;
    text-indent: 0.21rem;
    display: block;
    width: 1.86rem;
    height: 0.4rem;
    line-height: 0.4rem;
    border: #fff solid 0.02rem;
}

.automotive .mxfDiv .btnDiv a:after {
    content: '';
    position: absolute;
    right: 0.25rem;
    top: 0.14rem;
    width: 0.4rem;
    height: 0.09rem;
    background: url(../images/nimg40_10.png) no-repeat;
    background-size: 0.4rem;
}

.automotive .list {
    padding-top: 0.9rem;
}

.automotive .list li {
    position: relative;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.automotive .list li .imgDiv {
    width: 6.0rem;
}

.automotive .list li .imgDiv img {
    width: 100%;
}

.automotive .list li .contentBox {
    width: 6.0rem;
    position: relative;
    height: 4.1rem;
}

.automotive .list li .name {
    padding-top: 0.45rem;
    text-align: center;
    font-size: 0.3rem;
    color: #3f3f3f;
    position: relative;
    height: 0.52rem;
}

.automotive .list li .name:after {
    content: '';
    position: absolute;
    background: #0075cf;
    width: 0.26rem;
    height: 0.03rem;
    left: 50%;
    margin-left: -0.13rem;
    bottom: 0px;
}

.automotive .list li .txt {
    text-align: center;
    padding-top: 0.5rem;
    font-size: 0.18rem;
    color: #0075cf;
    font-weight: bold;
    line-height: 0.32rem;
}

.automotive .list li .msg {
    text-align: center;
    color: #868686;
    line-height: 0.32rem;
    font-size: 0.18rem;
}

.automotive .list li .btnDiv {
    position: absolute;
    left: 50%;
    bottom: 0.78rem;
    width: 1.67rem;
    margin-left: -0.83rem;
}

.automotive .list li .btnDiv a {
    position: relative;
    font-size: 0.14rem;
    color: #0075cf;
    text-indent: 0.23rem;
    display: block;
    width: 1.65rem;
    height: 0.44rem;
    line-height: 0.44rem;
    border: #0075cf solid 0.01rem;
}

.automotive .list li .btnDiv a:after {
    content: '';
    position: absolute;
    right: 0.25rem;
    top: 0.14rem;
    width: 0.4rem;
    height: 0.09rem;
    background: url(../images/nimg40_9.png) no-repeat;
    background-size: 0.4rem;
}

.automotive .list li .btnDiv a:hover {
    background: #0075cf;
    color: #fff;
}

.automotive .list li .btnDiv a:hover:after {
    background: url(../images/nimg40_10.png) no-repeat;
    background-size: 0.4rem;
}

.battery .content {
    font-size: 0.14rem;
    padding: 0.3rem 0 0.35rem;
    line-height: 0.3rem;
    color: #828282;
}

.battery .mxfDiv {
    position: relative;
}

.battery .mxfDiv .bigImg img {
    width: 100%;
}

.battery .mxfDiv .btnDiv {
    position: absolute;
    left: 50%;
    bottom: 0.46rem;
    width: 1.9rem;
    margin-left: -0.85rem;
}

.battery .mxfDiv .btnDiv a {
    position: relative;
    font-size: 12px;
    color: #fff;
    text-indent: 0.21rem;
    display: block;
    width: 1.86rem;
    height: 0.4rem;
    line-height: 0.4rem;
    border: #fff solid 0.02rem;
}

.battery .mxfDiv .btnDiv a:after {
    content: '';
    position: absolute;
    right: 0.13rem;
    top: 0.14rem;
    width: 0.4rem;
    height: 0.09rem;
    background: url(../images/nimg40_10.png) no-repeat;
    background-size: 0.4rem;
}

.battery .title {
    margin-bottom: 0.35rem;
    padding-top: 0.8rem;
    text-align: center;
    font-size: 0.3rem;
    color: #3f3f3f;
    position: relative;
    height: 0.52rem;
}

.battery .title:after {
    content: '';
    position: absolute;
    background: #0075cf;
    width: 0.26rem;
    height: 0.03rem;
    left: 50%;
    margin-left: -0.13rem;
    bottom: 0px;
}

.batteryPic {
    position: relative;
}

.batteryPic .slick {
    margin: 0 0.16rem;
}

.batteryPic .slick .imgDiv img {
    width: 100%;
}

.batteryPic .slick .botbot {
    padding-top: 0.42rem;
    height: 1.0rem;
    border-bottom: #ececec solid 0.02rem;
}

.batteryPic .slick .name {
    font-size: 0.18rem;
    color: #333;
    text-align: center;
    height: 0.3rem;
    line-height: 0.3rem;
    overflow: hidden;
    font-weight: bold;
}

.batteryPic .slick .msg {
    font-size: 0.14rem;
    color: #666;
    text-align: center;
    padding-top: 0.15rem;
}

.batteryPic .slick-prev {
    position: absolute;
    left: -0.8rem;
    top: 50%;
    margin-top: -0.62rem;
    width: 0.42rem;
    height: 0.42rem;
    display: block;
    background: url(../images/nimg42_left.png) no-repeat;
    background-size: 0.42rem;
    z-index: 2;
}

.batteryPic .slick-next {
    position: absolute;
    right: -0.8rem;
    top: 50%;
    margin-top: -0.62rem;
    width: 0.42rem;
    height: 0.42rem;
    display: block;
    background: url(../images/nimg42_right.png) no-repeat;
    background-size: 0.42rem;
    z-index: 2;
}

.batteryPic .slick-prev:hover {
    background: url(../images/nimg42_lefton.png) no-repeat;
    background-size: 0.42rem;
}

.batteryPic .slick-next:hover {
    background: url(../images/nimg42_righton.png) no-repeat;
    background-size: 0.42rem;
}

.batteryPic .slick:hover .name {
    color: #0075cf;
}

.batteryPic .slick:hover .botbot {
    border-bottom: #0075cf solid 0.02rem;
}

.battery .list li {
    position: relative;
    padding-left: 6.1rem;
    min-height: 4.0rem;
    margin-bottom: 0.55rem;
}

.battery .list .li01 {
    padding: 0 6.5rem 0 0;
}

.battery .list li .imgDiv {
    position: absolute;
    left: 0px;
    top: 0px;
}

.battery .list .li01 .imgDiv {
    left: auto;
    right: 0px;
}

.battery .list li .imgDiv img {
    width: 5.65rem;
}

.battery .list li .concon {
    height: 4.0rem;
    display: table-cell;
    vertical-align: middle;
}

.battery .list li .name {
    font-size: 0.24rem;
    color: #0a74d6;
    font-weight: bold;
    padding: 0 0 0.45rem 0.16rem;
}

.battery .list li .txt {
    font-weight: bold;
    font-size: 0.16rem;
    color: #333;
    padding-left: 0.16rem;
    line-height: 0.36rem;
}

.battery .list li dd {
    padding-left: 0.16rem;
    background: url(../images/ico5.png) left 0.13rem no-repeat;
    background-size: 0.06rem;
    line-height: 0.36rem;
    font-size: 0.14rem;
    color: #828282;
}

.equipment .content {
    font-size: 0.14rem;
    padding: 0.3rem 0 0.35rem;
    line-height: 0.3rem;
    color: #828282;
}

.equipment .mxfDiv {
    position: relative;
}

.equipment .mxfDiv .bigImg img {
    width: 100%;
}

.equipment .mxfDiv .btnDiv {
    position: absolute;
    left: 50%;
    bottom: 0.46rem;
    width: 1.9rem;
    margin-left: -0.85rem;
}

.equipment .mxfDiv .btnDiv a {
    position: relative;
    font-size: 12px;
    color: #fff;
    text-indent: 0.21rem;
    display: block;
    width: 1.86rem;
    height: 0.4rem;
    line-height: 0.4rem;
    border: #fff solid 0.02rem;
}

.equipment .mxfDiv .btnDiv a:after {
    content: '';
    position: absolute;
    right: 0.25rem;
    top: 0.14rem;
    width: 0.4rem;
    height: 0.09rem;
    background: url(../images/nimg40_10.png) no-repeat;
    background-size: 0.4rem;
}

.equipBox li {
    padding: 0.56rem 0 0.68rem;
    background: #fafafa;
}

.equipBox .li01 {
    background: #fff;
}

.equipBox li .title {
    margin-bottom: 0.35rem;
    text-align: center;
    font-size: 0.3rem;
    color: #3f3f3f;
    position: relative;
    height: 0.52rem;
}

.equipBox li .title:after {
    content: '';
    position: absolute;
    background: #0075cf;
    width: 0.26rem;
    height: 0.03rem;
    left: 50%;
    margin-left: -0.13rem;
    bottom: 0px;
}

.equipBox li .imgBox {
    overflow: hidden;
}

.equipBox li .limg img {
    width: 8.0rem;
}

.equipBox li .rimg img {
    width: 4.0rem;
}

.hardware .content {
    font-size: 0.14rem;
    padding: 0.3rem 0 0.35rem;
    line-height: 0.3rem;
    color: #828282;
}

.hardware .mxfDiv {
    position: relative;
}

.hardware .mxfDiv .bigImg img {
    width: 100%;
}

.hardware .mxfDiv .btnDiv {
    position: absolute;
    left: 50%;
    bottom: 0.46rem;
    width: 1.9rem;
    margin-left: -0.85rem;
}

.hardware .mxfDiv .btnDiv a {
    position: relative;
    font-size: 12px;
    color: #fff;
    text-indent: 0.21rem;
    display: block;
    width: 1.86rem;
    height: 0.4rem;
    line-height: 0.4rem;
    border: #fff solid 0.02rem;
}

.hardware .mxfDiv .btnDiv a:after {
    content: '';
    position: absolute;
    right: 0.13rem;
    top: 0.14rem;
    width: 0.4rem;
    height: 0.09rem;
    background: url(../images/nimg40_10.png) no-repeat;
    background-size: 0.4rem;
}

.hardware .list {
    padding-top: 0.6rem;
}

.hardware .list li {
    position: relative;
    padding-left: 6.3rem;
    min-height: 4.0rem;
    margin-bottom: 0.5rem;
}

.hardware .list .li01 {
    padding: 0 6.5rem 0 0.55rem;
}

.hardware .list li .imgDiv {
    position: absolute;
    left: 0px;
    top: 0px;
}

.hardware .list .li01 .imgDiv {
    left: auto;
    right: 0px;
}

.hardware .list li .imgDiv img {
    width: 5.7rem;
}

.hardware .list li .contentBox {
    height: 3.6rem;
}

.hardware .list li .name {
    font-size: 0.24rem;
    color: #0a74d6;
    font-weight: bold;
    padding: 0.3rem 0 0.55rem;
}

.hardware .list li .name2 {
    padding: 0.3rem 0 0.25rem;
}

.hardware .list li .icoList dd {
    float: left;
    width: 0.9rem;
    margin-right: 0.2rem;
    text-align: center;
}

.hardware .list li .icoList dd .ico img {
    width: 0.8rem;
}

.hardware .list li .icoList dd .wen {
    padding-top: 0.2rem;
    color: #333;
    font-size: 0.14rem;
}

.hardware .list li .msgList dd {
    padding-left: 0.16rem;
    background: url(../images/ico5.png) left 0.13rem no-repeat;
    background-size: 0.06rem;
    line-height: 0.3rem;
    font-size: 0.14rem;
    color: #333;
}

.hardware .list li .btnDiv {
    padding-top: 0.5rem;
}

.hardware .list li .btnDiv a {
    font-weight: bold;
    position: relative;
    font-size: 0.12rem;
    color: #0075cf;
    text-indent: 0.23rem;
    display: block;
    width: 1.65rem;
    height: 0.44rem;
    line-height: 0.44rem;
    border: #0075cf solid 0.01rem;
}

.hardware .list li .btnDiv a:after {
    content: '';
    position: absolute;
    right: 0.25rem;
    top: 0.14rem;
    width: 0.4rem;
    height: 0.09rem;
    background: url(../images/nimg40_9.png) no-repeat;
    background-size: 0.4rem;
}

.hardware .list li .btnDiv a:hover {
    background: #0075cf;
    color: #fff;
}

.hardware .list li .btnDiv a:hover:after {
    background: url(../images/nimg40_10.png) no-repeat;
    background-size: 0.4rem;
}

.historyBox {
    padding-top: 0.3rem;
}

.historyBg {
    height: 0.85rem;
}

.historyList {
    height: 0.85rem;
    background: url(../images/bg3.jpg) left 0.47rem repeat-x;
    padding: 0 1.05rem;
}

.historyList .slick-slide {
    text-align: center;
    padding-top: 0.5rem;
    height: 0.35rem;
    font-size: 0.3rem;
    cursor: pointer;
    color: #666;
    background: url(../images/nimg18_2.png) center top no-repeat;
    background-size: 0.18rem;
    font-family: bold;
}

.historyList .slickon {
    color: #0075cf;
    background: url(../images/nimg18_2on.png) center top no-repeat;
    background-size: 0.18rem;
}

.historyBox .slick-prev {
    position: absolute;
    z-index: 10;
    left: 0.6rem;
    top: 50%;
    margin-top: -0.15rem;
    display: block;
    background: #fff url(../images/nimg42_left.png) left top no-repeat;
    width: 0.42rem;
    height: 0.42rem;
    background-size: 0.42rem;
}

.historyBox .slick-next {
    position: absolute;
    z-index: 10;
    right: 0.6rem;
    top: 50%;
    margin-top: -0.15rem;
    display: block;
    background: #fff url(../images/nimg42_right.png) right top no-repeat;
    width: 0.42rem;
    height: 0.42rem;
    background-size: 0.42rem;
}

.historyBox .slick-prev:hover {
    background: #fff url(../images/nimg42_lefton.png) left top no-repeat;
    background-size: 0.42rem;
}

.historyBox .slick-next:hover {
    background: #fff url(../images/nimg42_righton.png) left top no-repeat;
    background-size: 0.42rem;
}

.historyContentDiv {
    padding-top: 1.0rem;
}

.historyContent {
    display: none;
}

.history .contentBox {
    padding-top: 0.6rem;
    background: url(../images/line4.jpg) 0.04rem repeat-y;
}

.history .contentBox li {
    padding-left: 1.3rem;
    min-height: 1.0rem;
    padding-bottom: 20px;
    position: relative;
}

.history .contentBox li .month {
    color: #fff;
    width: 1.11rem;
    height: 0.3rem;
    background: url(../images/nimg111_1.png) no-repeat;
    background-size: 1.11rem;
    font-size: 0.16rem;
    text-indent: 0.54rem;
    line-height: 0.3rem;
    position: absolute;
    left: 0px;
    top: 0px;
}

.history .contentBox li .content {
    font-size: 0.14rem;
    color: #828282;
    line-height: 0.3rem;
    padding-bottom: 0.15rem;
}




/*äººåŠ›èµ„æº-ç¤¾ä¼šæ‹›è˜*/
.jobPage1 {
    margin: -24px 0 0;
    padding: 0 0 120px;
}

.jobPage1 .title4 {
    margin: 0 0 108px;
}

.jobList {}

.job {
    margin-top: 100px;
}

.job .job-select-box {
    margin-bottom: 50px;
    float: right;
}

.job .job-select-box .AllSearchIco {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    background: #0092D7;
    border-radius: 1px;
    width: 60px;
    height: 43px;
    line-height: 43px;
    text-align: center;
    margin-left: 12px;
    vertical-align: middle;
    margin-top: -2px;
}

.job .job-select-box .AllSearchIco {
    margin-left: 40px;
}

.job .job-select-box .search {
    background-size: 24px;
    display: inline-block;
}

.job .job-select-box .search i {
    font-size: 14px;
    color: #666;
    font-style: normal;
    line-height: 45px;
    display: inline-block;
    margin-right: 10px;
}

.job .job-select-box .search input {
    width: 244px;
    height: 45px;
    line-height: 45px;
    border: 1px solid #ebebeb;
    padding: 0 15px;
    font-size: 14px;
    color: #333;
}

.job .job-select-box .search a {
    display: inline-block;
    width: 50px;
    height: 45px;
    margin-top: -45px;
    margin-left: 236px;
    position: absolute;
}

.jobList li {
    position: relative;
    background: #f3f3f3;
    padding: 38px 0 46px;
    margin-bottom: 42px;
    transition: .5s;
    overflow: hidden;
}

.jobList li:last-child {
    margin-bottom: 0;
}

.jobList li .bottom {
    position: absolute;
    width: 58px;
    height: 56px;
    bottom: 5px;
    right: 0;
    background: url(../images/plus.png) no-repeat center;
}

.jobList li .tit {
    position: absolute;
    left: 40px;
    top: 38px;
    height: 64px;
    width: 180px;
    border-right: 1px solid #dadada;
    font-size: 24px;
    font-weight: bold;
    color: #000000;
}

.jobList li .tit em {
    width: 19px;
    height: 3px;
    background: #000000;
    display: block;
    margin-top: 14px;
}

.jobList li .text {
    padding: 0 60px 0 306px;
    line-height: 28px;
}

.jobList li .text .h6 {
    font-size: 18px;
    color: #000000;
    font-weight: bold;
}

.jobList li .con2 {
    display: none;
}

.jobList li.on .bottom {
    background: url(../images/reduce.png) no-repeat center;
}

.jobList li.on .tit {
    color: #0092D7;
}

.jobList li.on .tit em {
    background: #0092D7;
}

.jobList li.on .minor {
    padding: 0 34px 0 22px;
    background: #0092D7;
    color: #FFFFFF;
    display: inline-block;
    margin-top: 44px;
}

.jobPage1 .numberBox {
    margin-top: 94px;
}



.culturetitle {
    font-size: 24px;
    color: #333;
    padding-bottom: 40px;
}

.culturetow1 li .imgDiv {
    position: relative;
    overflow: hidden;
}

.culturetow1 li .txt {
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
}

.culturetow1 li:first-child .text {
    width: 288px;
    float: left;
    background-color: #f5f5f5;
    height: 307px;
    text-align: center;
    line-height: 307px;
    font-size: 24px;
    color: #0075cf;
}

.culturetow1 li:first-child .text:hover {
    background-color: #0075cf;
    color: #fff;
}

.culturetow1 li:first-child .imgDiv {
    width: 872px;
    float: right;
}

.culturetow1 li:first-child .imgDiv .txt {
    text-align: center;
    line-height: 307px;
    font-size: 24px;
    color: #fff;
}

.culturetow1 li:first-child .imgDiv .txt h2 {
    display: none;
}

.culturetow1 li:last-child .text {
    width: 288px;
    float: right;
    background-color: #f5f5f5;
    height: 307px;
    text-align: center;
    line-height: 307px;
    font-size: 24px;
    color: #0075cf;
}

.culturetow1 li:last-child .text:hover {
    background-color: #004a90;
    color: #fff;
}

.culturetow1 li:last-child .imgDiv {
    width: 872px;
    float: left;
}

.culturetow1 li:last-child .imgDiv .txt h2 {
    display: none;
}

.culturetow1 li:last-child .imgDiv .txt p {
    line-height: 1.5;
    font-size: 14px;
    color: #fff;
    padding: 90px;
}

.culturetow1 li .name {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 24px;
    color: #fff;
    top: 50%;
    margin-top: -10px;
}

.culturetow1 li:nth-child(2) .imgDiv .txt h2 {
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-weight: inherit;
    padding-top: 100px;
    padding-bottom: 40px;
}

.culturetow1 li:nth-child(2) .imgDiv .txt p {
    font-size: 14px;
    color: #fff;
    line-height: 2;
    padding: 0 115px;
}

.culturetow1 li:nth-child(3) .imgDiv {
    width: 50%;
    float: left;
}

.culturetow1 li:nth-child(3) .imgDiv .txt {
    text-align: center;
}

.culturetow1 li:nth-child(3) .imgDiv .txt h2 {
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-weight: inherit;
    padding-top: 100px;
    padding-bottom: 40px;
}

.culturetow1 li:nth-child(3) .imgDiv .txt p {
    font-size: 14px;
    color: #fff;
    line-height: 2;
}

.culturetow1 li .imgDiv:hover .name {
    display: none;
}

.culturetow1 li .imgDiv:hover .txt {
    top: 0;
}

.culturetow1 li .phimg {
    display: none;
}

.cultureshow1 .text {
    width: 370px;
    float: left;
    padding-top: 50px;
}

.cultureshow1 .text h2 {
    font-size: 18px;
    color: #0075cf;
    padding-bottom: 30px;
}

.cultureshow1 .text p {
    font-size: 16px;
    color: #444;
    line-height: 30px;
}

.cultureshow1 .imgDiv {
    padding-left: 410px;
}

.cultureshow1 .back {
    margin: 0 auto;
    margin-top: 40px;
    display: block;
    width: 160px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    background-color: #0a74d6;
}

.cultureshow1 .back img {
    padding-left: 5px;
}

.cultureshow1 .back:hover {
    text-decoration: underline;
}











.carshow1 .listtop {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px #c6c6c6 solid;
}

.carshow1 .listtop li {
    width: 50%;
    float: left;
}

.carshow1 .listtop li .imgDiv>img {
    width: 100%;
}

.carshow1 .listtop li .text01 {
    padding-right: 50px;
}

.carshow1 .listtop li .text01 h2 {
    font-size: 36px;
    font-weight: inherit;
    padding-bottom: 50px;
    color: #0075cf;
}

.carshow1 .listtop li .text01 p {
    font-size: 16px;
    color: #707070;
    line-height: 2;
}

.carshow1 .listtop li .text02 {
    padding: 50px;
    background-color: #0075cf;
    color: #fff;
    height: 160px;
}

.carshow1 .listtop li .text02 h2 {
    font-size: 30px;
}

.carshow1 .listtop li .text02 p {
    font-size: 24px;
}

.carshow1 .list ul {
    width: 1180px;
}

.carshow1 .list li {
    width: 50%;
    float: left;
    margin-bottom: 20px;
}

.carshow1 .list li .imgDiv img {
    width: 100%;
    transition: ease 3s;
    -webkit-transition: ease 3s;
}

.carshow1 .list li .box {
    position: relative;
    margin-right: 20px;
    overflow: hidden;
}

.carshow1 .list li .name {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    height: 55px;
    line-height: 55px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
}

.carshow1 .list li .name a {
    color: #fff;
}

.carshow1 .list li .text {
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 117, 207, 0.8);
    transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
}

.carshow1 .list li .text a {
    display: block;
    color: #fff;
    padding: 35px;
}

.carshow1 .list li .text h2 {
    font-weight: inherit;
    font-size: 24px;
    padding-bottom: 30px;
    text-align: center;
    padding-top: 40px;
}

.carshow1 .list li .text p {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
}

.carshow1 .list li .box:hover .name {
    bottom: -100%;
}

.carshow1 .list li .box:hover .text {
    top: 0;
}

.carshow1 .list li .box:hover .imgDiv img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}



.youshii {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.anli_xiejiao {
    width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 99;
    padding-bottom: 100px;
}

.lanbei {
    width: 90%;
    height: 500px;
    background: #0075cf;
    transform: skew(-20deg);
    position: absolute;
    right: -15%;
    top: -100px;
}

.anli_xiejiao .content {
    position: relative;
    width: 33%;
    float: left;
}

.anli_xiejiao li {
    position: relative;
    width: 33%;
    float: left;
}

.anli_xiejiao li .tu {
    transform: skew(-20deg);
    overflow: hidden;
    height: 560px;
    width: 360px;
}

.anli_xiejiao li .tu a img {
    transform: skew(20deg);
    transition: all 1s;
    width: 585px !important;
    height: 561px;
    position: absolute;
    left: 50%;
    margin-left: -290px;
    transition: all 0.7s ease-in-out;
}

.anli_xiejiao .wenzi {
    position: absolute;
    top: 45%;
    text-align: center;
    width: 100%;
    color: #fff;
    font-size: 26px;
}

.anli_xiejiao .wenzi a {
    color: #fff;
}

.anli_xiejiao .wenzi a span {
    display: block;
    font-size: 14px;
    font-weight: normal;
}

.anli_xiejiao .heidi {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: 999;
    transition: all 0.7s ease-in-out;
}

.anli_xiejiao li:hover .tu a img {
    transform: skew(20deg);
    transition: all 1s;
    width: 585px !important;
    height: 561px;
    position: absolute;
    left: 50%;
    margin-left: -300px;
    transition: all 0.7s ease-in-out;
}

.anli_xiejiao li:hover .heidi {
    background: rgba(0, 102, 153, 0.5);
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: 999;
    transition: all 0.7s ease-in-out;
}

.oushili {
    min-height: 220px;
    position: relative;
}

.oushili h3 {
    color: #0075cf;
    font-size: 0.3rem;
    line-height: 0.48rem;
    font-weight: 600;
    letter-spacing: 10px;
    position: relative;
}

.oushili h3:after {
    position: absolute;
    width: 72px;
    height: 3px;
    background: #0075cf;
    content: "";
    left: 200px;
    top: 25px;
}

.oushili b {
    color: #ccc;
    font-family: Arial Black, Arial;
    font-size: .8rem;
    line-height: 1rem;
    position: absolute;
    right: 0px;
    top: -30px;
}

.oushili b span {
    color: #0075cf;
}

.oushili p {
    color: #666;
    width: 500px;
    padding-top: 20px;
    font-size: 0.16rem;
    line-height: 0.3rem;
}

.indexPart2 .wal {
    position: relative;
}

.huihui {
    background: #f6f6f6;
    width: 100%;
    height: 400px;
    bottom: 0px;
    position: absolute;
    z-index: 0;
}

.index-nav {
    min-width: 600px;
}

.index-nav li {
    float: left;
    margin-bottom: 20px;
    padding: 0 .15rem;
    margin-top: .5rem;
}

.index-nav li a {
    color: #707070;
    display: block;
    font-size: .15rem;
    background: #eee;
    padding: .15rem .3rem;
}

.index-nav li a:hover {
    color: #fff;
    background: #0075cf;
}

.bg {
    background: url(../images/prodia.jpg);
    background-repeat: no-repeat;
    background-position: top center;
}

/* ---- sick arrow style start ----*/
.blog-item {
    margin-right: 15px;
}

.blog-item img {
    width: 100%;
}

.blog-item figure {
    background: none;

    display: block;
    line-height: normal;
    overflow: hidden;
    position: relative;
    border: 1px #cecece solid;
    margin: 0;
}

.blog-item figure mark {
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: rgba(0, 117, 207, 0.2);
    background: #0075cf\9;
    filter: alpha(opacity=20);
    z-index: 20;
    opacity: 0;
    transform: skewX(45deg);
    visibility: hidden;
    transition: 360ms;
}

.blog-item figure mark:before {
    content: "";
    width: 100%;
    height: 0%;
    border-left: 3px solid #0075cf;
    border-right: 3px solid #0075cf;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    transition: 320ms;
}

.blog-item figure mark:after {
    content: "";
    width: 0%;
    height: 100%;
    border-top: 3px solid #0075cf;
    border-bottom: 3px solid #0075cf;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    transition: 320ms;
}

.blog-item figure mark b {
    display: block;
    width: 46px;
    height: 46px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -23px;
    margin-top: -23px;
    z-index: 30;
}

.blog-item figure mark b:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #0075cf;
    position: absolute;
    left: 0;
    top: 23px;
    transform: translateX(-200px);
    -webkit-transform: translateX(-200px);
    -moz-transform: translateX(-200px);
}

.blog-item figure mark b:after {
    content: "";
    width: 1px;
    height: 100%;
    background: #0075cf;
    position: absolute;
    left: 23px;
    top: 0;
    transform: translateY(-200px);
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
}

.blog-item:hover figure mark {
    opacity: 1;
    transform: skewX(0);
    visibility: visible;
}

.blog-item:hover figure mark:before {
    height: 100%;
    transition: 330ms 200ms;
}

.blog-item:hover figure mark:after {
    width: 100%;
    transition: 330ms 200ms;
}

.blog-item:hover figure img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
}

.blog-item:hover figure mark b:before {
    transition: 355ms 180ms;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
}

.blog-item:hover figure mark b:after {
    transition: 355ms 240ms;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
}

.blog-item:hover figcaption {
    color: #0075cf;
}

.blog-item figcaption {
    display: block;
    color: #5d5d5d;
    font-size: .16rem;
    line-height: normal;
    margin-top: 20px;
    transition: 350ms;
    text-align: center;
}

.slick-arrow-style.slick-slider .slick-arrow {
    top: -68px;
    right: 15px;
    width: 46px;
    height: 46px;
    color: #333c4a;
    font-size: 24px;
    text-align: center;
    z-index: 1;
    cursor: pointer;
    display: block;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-color: #ddd;
    line-height: 46px;
    border: 0;
}

.slick-arrow-style.slick-slider .slick-arrow.slick-prev {
    right: 68px;
}

.slick-arrow-style.slick-slider .slick-arrow.slick-prev i {
    padding-right: 2px;
    display: block;
}

.slick-arrow-style.slick-slider .slick-arrow.slick-next i {
    padding-left: 2px;
    display: block;
}

.slick-arrow-style.slick-slider .slick-arrow:hover {
    color: #ffffff;
    background-color: #0075cf;
}

.slick-arrow-style.slick-slider.arrow-top .slick-arrow {
    top: -55px;
}

.slick-padding .slick-list {
    margin: 0 -15px;
}

.slick-padding .slick-list .slick-slide {
    margin: 0 15px;
}

.slick-padding2 .slick-list {
    margin: 0 -5px;
}

.slick-padding2 .slick-list .slick-slide {
    margin: 0 5px;
}

/*  */

.index_news_swiper ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.index_news_swiper ul li {
    /* height: 490px; */
    width: 23%;


}

.index_news_swiper ul i {
    width: 23%;
}

.index_news_swiper li a {
    display: block;
    width: 100%;
    height: 100%;
}

/* .index_news_swiper li:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #e3e3e3;
    position: absolute;
    right: -40px;
    top: 0;
} */

.index_news_swiper li .imgbox {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    height: 215px;
    padding-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: ease .6s;
}

.index_news_swiper li .imgbox:before {
    content: "";
    z-index: 1;
    display: block;
    width: 0;
    height: 2px;
    background: #f70401;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: ease 1s
}

.index_news_swiper li:hover .imgbox:before {
    width: 100%;
}

.index_news_swiper li .imgbg {
    position: absolute;
    left: 0;
    top: 0;
    height: 235px;
    width: 100%;
    transition: ease 1s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.index_news_swiper li:hover .imgbox {
    padding-bottom: 0;
}

.index_news_swiper li:hover .imgbg {
    transform: scale(1.05, 1.05);
}

.index_news_swiper li h3 {
    font-size: 16px;
    line-height: 24px;
    /* height: 48px; */
}

.index_news_swiper li h4 {
    color: #999999;
    line-height: 24px;
    height: 72px;
    margin: 20px 0;
    font-weight: normal;
}

.index_news_swiper li .time {
    display: flex;
    align-items: center;
    /* padding-left: 25px; */
    color: #999;
    /* background: url(../images/time.png) no-repeat left center; */
    font-size: 16px;
}

.index_news_swiper li .time img {
    width: 18px;
    height: 18px;
    margin: 0 10px 0 0;
}

.index_news_swiper li:hover h3 {
    color: #f70401;
}

/*  */

.news_swiper li {
    position: relative;
    height: 490px;
    width: 24%;
}

.news_swiper li:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #e3e3e3;
    position: absolute;
    right: -40px;
    top: 0;
}

.news_swiper li a {
    display: block;
    width: 100%;
    height: 100%;
}

.news_swiper li .imgbox {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    height: 250px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
    transition: ease .6s;
}

.news_swiper li .imgbox:before {
    content: "";
    z-index: 1;
    display: block;
    width: 0;
    height: 2px;
    background: #f70401;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: ease 1s
}

.news_swiper li:hover .imgbox:before {
    width: 100%;
}

.news_swiper li .imgbg {
    position: absolute;
    left: 0;
    top: 0;
    height: 290px;
    width: 100%;
    transition: ease 1s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.news_swiper li:hover .imgbox {
    padding-bottom: 0;
}

.news_swiper li:hover .imgbg {
    transform: scale(1.05, 1.05);
}

.news_swiper li h3 {
    font-size: 16px;
    line-height: 24px;
    height: 48px;
}

.news_swiper li h4 {
    color: #999999;
    line-height: 24px;
    height: 72px;
    margin: 20px 0;
    font-weight: normal;
}

.news_swiper li .time {
    padding-left: 25px;
    color: #999;
    background: url(../images/time.png) no-repeat left center;
    font-size: .16rem;
}

.news_swiper li:hover h3 {
    color: #f70401;
}

.indexPart3 .swiper-pagination {
    margin-top: 50px;
    text-align: center;
    width: 100%;
    position: relative;
}

.indexPart3 .swiper-pagination span {
    margin: 0 5px;
}

.ellipsis3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.part3-left {
    width: 50%;
    float: left;
}

.part3-left h3 {
    color: #0075cf;
    font-size: 0.3rem;
    line-height: 0.48rem;
    font-weight: 600;
    letter-spacing: 10px;
    position: relative;
}

.part3-left h3:after {
    position: absolute;
    width: 72px;
    height: 3px;
    background: #0075cf;
    content: "";
    left: 280px;
    top: 25px;
}

.part3-left h4 {
    color: #ccc;
    font-family: Arial Black, Arial;
    font-size: .8rem;
}

.part3-left h4 span {
    color: #0075cf;
}

.part3-left p {
    color: #666;
    width: 500px;
    padding-top: 20px;
    font-size: 0.13rem;
    line-height: 0.36rem;
}

.part3-right {
    width: 50%;
    float: right;
}

.part3-right img {
    width: 100%;
}

.bg1 {
    background: url(../images/part1.jpg);
}

.part3-left .btnDiv {
    margin-top: .5rem;
}

.part3-left .btnDiv a {
    font-weight: bold;
    position: relative;
    font-size: 12px;
    color: #fff;
    text-indent: 0.24rem;
    display: block;
    width: 1.62rem;
    height: 0.44rem;
    line-height: 0.44rem;
    background: #0075cf;
}

.part3-left .btnDiv a:after {
    content: '';
    position: absolute;
    right: 0.25rem;
    top: 0.14rem;
    width: 0.4rem;
    height: 0.09rem;
    background: url(../images/nimg40_1.png) no-repeat;
    background-size: 0.4rem;
}

.indexTitle .title1:hover {
    color: #f70502;
}

.oushili b:hover {
    color: #f70502;
}

.part3-left h4:hover {
    color: #f70502;
}

@keyframes mymaps {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

@-moz-keyframes mymaps

/* Firefox */
    {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes mymaps

/* Safari and Chrome */
    {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

@-o-keyframes mymaps

/* Opera */
    {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}



/* footer */
footer .foot-main {
    padding-bottom: 70px;
    display: flex;
    color: #fff;
    justify-content: space-between;
    /* align-items: center; */
    /* border: 1px solid #656364; */

}


footer .foot-main .foot-letxt {
    width: 25%;
}

footer .foot-main .foot-message {
    width: 40%;
}

footer .foot-main .foot-letxt .stt {
    /* font-family: Bahnschrift, Arial, Helvetica, sans-serif; */
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -1px;
}

footer .foot-main .foot-letxt .stel i {
    width: 32px;
    height: 32px;
    display: inline-block;
    margin-right: 8px;
    font-size: 20px;
    text-align: center;
    background: #4d4d4d;
    border-radius: 30px;
    color: #fff;
}

footer .foot-main .foot-letxt .stel a {
    /* font-family: Bahnschrift, Arial, Helvetica, sans-serif; */
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 800;
    color: #4d4d4d
}

footer .foot-main .foot-letxt .foot-le-txt {
    font-size: 14px;
    color: #fff;
    line-height: 2;
    margin-top: 10px;
    width: 100%;
}

footer .foot-main .foot-letxt .foot-le-txt .foot-le-txt-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
    border: 1px solid #656364;
    padding: 16px 20px;
    margin-bottom: 20px;

}

footer .foot-main .foot-letxt .foot-le-txt .foot-le-txt-item img {
    width: 26px;
    height: auto;
}

footer .foot-main .foot-nav {
    width: 25%;
}


footer .foot-main .foot-nav .foot-nav-title3 {
    /* font-family: Bahnschrift, Arial, Helvetica, sans-serif; */
    font-size: 20px;
    font-weight: 800;
    padding: 0px 0 20px 0;

}

footer .foot-main .foot-nav .foot-nav-title2 {
    /* font-family: Bahnschrift, Arial, Helvetica, sans-serif; */
    font-size: 20px;
    font-weight: 800;
    border-bottom: 1px solid #656364;
    padding: 20px 0;

}

footer .foot-main .foot-nav ul {
    /* display: flex; */
    /* flex-wrap: wrap; */
    margin-top: 20px;
    /* justify-content: space-between; */
    /* flex-direction: row; */
    /* justify-content: space-between; */
}

footer .foot-main .foot-nav ul li {
    /* display: block;
    width: 50%; */
    flex: 0 0 calc(50% - 0px);
    /* 每个li占50%宽度，无间距则直接50% */
    box-sizing: border-box;
    /* 防止内边距/边框撑大宽度 */
}


footer .foot-main .foot-nav ul li:nth-child(even) {
    text-align: right;
    /* display: flex; */
    justify-content: end;
}

footer .foot-main .foot-nav ul li .foot-tit {
    font-size: 18px;
    /* color: #333; */
    margin-bottom: 15px;
}

footer .foot-main .foot-nav ul li .foot-tit a {
    display: flex;
    align-items: center;
    color: #fff;
}

footer .foot-main .foot-nav ul li .foot-tit a span {
    display: block;
    width: 4px;
    height: 4px;
    margin: 0 10px 0 0;
    border-radius: 50%;
    background-color: #fff;
}

footer .foot-main .foot-nav ul li p {
    font-size: 14px;
    /* color: #888a92; */
    line-height: 2.4;
}

footer .foot-main .foot-nav ul li p a {
    /* color: #333; */
}

footer .foot-main .foot-nav ul li p a:hover {
    /* color: #000; */
}

footer .foot-main .foot-nav ul li:nth-child(2) p {}

footer .foot-main .foot-ewm {
    width: 120px;
    float: right;
    text-align: center;
    font-size: 14px;
    color: #333;
}

footer .foot-main .foot-ewm p {
    margin-top: 5px;
}

footer .yq-link {
    margin-top: 35px;
    color: #666;
    font-size: 18px;
}

footer .yq-link a {
    color: #666;
    font-size: 14px;
    display: inline-block;
    margin-right: 10px;
}

footer .foot-copyr {
    padding: 20px 0;
    font-size: 14px;
    color: #666;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

footer .foot-copyr a {
    color: #666;
}

.footer-bottom .footer-bottom-box {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    color: #fff;
}


/* 底部导航留言 */

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer {
    display: flex;
    justify-content: space-between;
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-footer {
    width: 48%;
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-footer>div {
    display: flex;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    /* border-bottom: 4px solid #2aa344; */
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-footer>div>img {
    width: 20px;
    height: 20px;
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-footer>div>input {
    padding: 0px;
    background: #fff;
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #495057;
    cursor: text;
    /* 强制鼠标悬浮时显示文本光标 */
    user-select: auto;
    /* 允许选中文本，部分浏览器默认禁用会导致光标消失 */
    pointer-events: auto;
    /* 确保输入框能响应点击聚焦 */
    caret-color: #333;
    /* 强制设置光标颜色（解决部分场景光标透明问题） */

}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-content-footer {
    width: 100%;
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-content-footer>div {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    /* border-bottom: 4px solid #2aa344; */
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-content-footer>div>img {
    width: 20px;
    height: 20px;
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-content-footer>div>textarea {
    padding: 0px;
    background: #fff;
    border: none;
    outline: none;
    /* 关键：清除 textarea 默认样式 */
    resize: none;
    /* 禁止用户拉伸文本域（可选，如需允许可设为 vertical） */
    overflow: auto;
    /* 按需显示滚动条 */
    width: 100%;
    /* 占满剩余宽度 */
    font-size: 14px;
    color: #495057;
    cursor: text;
    /* 强制鼠标悬浮时显示文本光标 */
    user-select: auto;
    /* 允许选中文本，部分浏览器默认禁用会导致光标消失 */
    pointer-events: auto;
    /* 确保输入框能响应点击聚焦 */
    caret-color: #333;
    /* 强制设置光标颜色（解决部分场景光标透明问题） */
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-btn-footer {
    cursor: pointer;
    width: 40%;
    color: #fff;
    /* height: 46px; */
    /*  */
    text-align: center;
    /* font-weight: 600; */
    border: 1px solid #656364;
    margin: 10px auto 0;

}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-btn-footer button {
    font-size: 14px;
    line-height: 14px;
    /* 清除默认外观 */
    appearance: none;
    /* 关键：清除浏览器原生样式（兼容webkit/火狐） */
    -webkit-appearance: none;
    /* 兼容 Safari/Chrome */
    -moz-appearance: none;
    /* 兼容 Firefox */

    /* 清除边框/背景 */
    border: none;
    outline: none;
    /* 清除聚焦外边框（若需聚焦样式可自定义） */
    background: transparent;
    /* 透明背景 */

    /* 清除内边距/外边距（按需调整） */
    margin: 0;
    padding: 0;

    /* 清除字体默认样式（继承父元素） */
    font-family: inherit;
    font-weight: inherit;
    color: inherit;

    /* 清除鼠标样式（恢复普通光标） */
    cursor: pointer;
    /* 保留点击光标，若需普通光标改为 default */

    /* 清除点击高亮（移动端） */
    -webkit-tap-highlight-color: transparent;
    /* 兼容 iOS/Android */

    /* 清除行高/对齐（按需） */
    line-height: normal;
    text-align: left;
    /* 按需改为 center/right */

    /* 清除边框圆角（若有） */
    border-radius: 0;

    /* 清除盒模型默认值 */
    box-sizing: border-box;
    padding: 10px 0px;
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-btn-footer:hover {
    background-color: #0075cf;
}

/*  */
@media screen and (min-width:1004px) {}


/*  */

/* 媒体查询 */
@media screen and (max-width:1004px) {
    .message-box {
        background-color: #f5f5f5;
        display: block;
        padding: 80px 30px;


    }

    .message-box .message-left {
        width: 100%;
    }

    .message-box .message-left .input {
        width: 90%;
        margin-bottom: 20px;
    }

    .message-box .message-left .input .am-form-field {
        padding: 10px 10px;
        width: 100%;
        background: #fff;
        border: none;
        outline: none;
        border-radius: 4px;
    }

    .message-box .message-right {
        width: 100%;
    }

    .message-box .message-right .title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .message-box .message-right .cont p {
        font-size: 14px;
        border-bottom: 1px dashed #666;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .message-box .message-left button {
        margin-bottom: 10px;
    }

    /*  */
    footer .foot-main .foot-nav {
        width: 90%;
        margin: 0 auto;
        /* display: none; */
    }

    footer .foot-main .foot-letxt {
        width: 90%;
        margin: 0 auto;
    }

    footer .foot-main .foot-message {
        width: 90%;
        margin: 0 auto;
    }

    footer .foot-main .foot-letxt .foot-le-txt {
        font-size: 12px;
        width: 100%;
    }

    footer .foot-main .foot-letxt .stt {
        font-size: 18px;
    }

    footer .foot-main .foot-letxt .stel a {
        font-size: 18px;
    }

    footer .foot-main .foot-letxt .stel i {
        width: 24px;
        height: 24px;
        font-size: 15px;
    }

    footer .yq-link {
        display: none;
    }

    footer .foot-main {
        display: block;
        /* border-top: none; */
        /* padding: 40px 0 20px 0; */
    }

    footer .foot-main .foot-ewm {
        margin-top: 10px;
    }

    footer .foot-main .foot-ewm p {
        font-size: 12px;
    }

    footer .foot-copyr {
        font-size: 10px;
    }

    footer .foot-copyr p {
        float: none;
        text-align: center;
    }

    footer .foot-copyr p img {
        width: 90px;
        margin-top: -7px !important;
    }

    .index_news_swiper ul li {
        height: auto;
        width: 48%;
    }

    .index_news_swiper ul i {
        height: auto;
        width: 48%;
    }

    .product-list li {
        width: 48%;
    }

    .product-list i {
        width: 48%;
    }

    .index-nav {
        min-width: 100%;
    }

    .index-nav li {
        margin-top: 0;
    }

    .indexPart1 .wal, .wal2, .wal3, .wal4, .w870 {
        width: 94%;
    }

    .indexPart1 .wal {
        width: 100%;
    }

    .indexPart2 .wal {
        width: 100%;
    }

    .PC-Box, .w378, .w280, .nav, .pageBanner, .grayBg {
        display: none;
    }

    .Phone-Box, .bannerTel, .pageBannerTel, .pageTitleTel, .pageMore {
        display: block;
    }

    .wal1160 {
        width: 100%;
        margin: auto;

    }

    .part3-left {
        width: 100%;
    }

    .part3-right {
        width: 100%;
    }

    .treflip {
        width: auto;
        padding: 0.84rem 0.2rem 1.1rem;
    }

    .treflip3 {
        padding: 0 0.2rem;
    }

    .indexTitle .title1 {
        font-size: 0.48rem;
        line-height: 0.48rem;
        text-transform: uppercase;
        color: #0075cf;
    }

    .indexTitle .title2 {
        font-size: 0.3rem;
        line-height: 0.3rem;
        color: #1e1e1e;
        padding-top: 0.12rem;
    }

    .pageTitle {
        padding-bottom: 0.5rem;
    }

    .pageTitle .title1 {
        font-size: 0.48rem;
    }

    .pageTitle .title2 {
        font-size: 0.34rem;
    }

    .indexPart1 .wal {
        width: 100%;
    }

    .indexPart1 {
        background: #fff;
        padding: 0.75rem 0.2rem 0.3rem;
    }

    .indexPart1 .leftDiv {
        width: 100%;
        padding-top: 0;
        float: none;
    }

    .indexPart1 .content {
        font-size: 0.18rem;
        padding-top: 0.4rem;
        line-height: 0.3rem;
    }

    .indexPart1 .btnDiv {
        padding-top: 0.35rem;
    }

    .indexPart1 .btnDiv a {
        text-indent: 0.24rem;
        width: 2.62rem;
        height: 0.78rem;
        line-height: 0.78rem;
    }

    .indexPart1 .btnDiv a:after {
        top: 0.34rem;
    }

    .indexPart1 .midDiv {
        width: auto;
        padding-left: 0;
        float: none;
        padding-bottom: 0.4rem;
    }

    .indexPart1 .numList {
        padding-top: 0.5rem;
    }

    .indexPart1 .numList li {
        padding-bottom: 0px;
        float: left;
        width: 33.33%;
        text-align: center;
    }

    .indexPart1 .numList li .ico img {
        width: 0.56rem;
    }

    .indexPart1 .numList li .num b {
        font-size: 0.48rem;
    }

    .indexPart1 .numList li .num em {
        font-size: 0.24rem;
    }

    .indexPart1 .numList li .msg {
        font-size: 0.24rem;
    }

    .indexPart1 .rightDiv {
        float: none;
        width: auto;
        height: auto;
        position: relative;
    }

    .indexPart1 .imgDiv {
        width: auto;
        float: none;
    }

    .indexPart1 .imgDiv img {
        width: 100%;
        height: 500px;
    }

    .indexPart1 .mxfDiv {
        height: 100%;
        right: 0px;
        top: 0px;
        position: absolute;
        background: rgba(0, 117, 207, 0.5);
    }

    .indexPart2 {
        padding: 0.35rem;
        margin-top: .5rem;
    }

    .oushili {
        min-height: 145px;
    }

    .oushili p {
        width: 100%;
    }

    .oushili h3:after {
        display: none;
    }

    .oushili b {
        font-size: 0.48rem;
        left: 0;
        top: -40px;
        color: #0075cf;
    }

    .anli_xiejiao {
        width: 100%;
    }

    .anli_xiejiao li {
        width: 100%;
    }

    .lanbei {
        display: none;
    }

    .anli_xiejiao li .tu {
        width: 100% !important;
        height: 300px;
        transform: skew(0deg);
        overflow: hidden;
        margin-bottom: 15px;
    }

    .anli_xiejiao li .tu a img {
        width: 100% !important;
        height: 100%;
        transform: skew(20deg);
        left: 0 !important;
        margin-left: 0 !important;
    }


    .anli_xiejiao .wenzi {
        top: 30%;
    }

    .huihui {
        display: none;
    }

    .youshii {
        min-height: 900px !important;
    }



    .indexPart2 .indexTitle {
        padding-bottom: 0.5rem;
    }

    .indexPart2 .bigBox {
        padding-bottom: 0;
    }

    .indexPart2 .layerDiv {
        width: 100%;
        left: 0;
        margin-left: 0;
        top: 1.25rem;
    }

    .indexPart2 .layerDiv .name {
        font-size: 0.36rem;
        height: 0.7rem;
    }

    .indexPart2 .layerDiv .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
        padding: 0.5rem 0.2rem 0;
        height: 1.44rem;
    }

    .indexPart2 .layerDiv .more {
        padding-top: 0.35rem;
        width: 2.62rem;
    }

    .indexPart2 .layerDiv .more a {
        text-indent: 0.24rem;
        width: 2.62rem;
        height: 0.78rem;
        line-height: 0.78rem;
    }

    .indexPart2 .layerDiv .more a:after {
        top: 0.34rem;
    }

    .indexPart2 .tab2 {
        padding: 0 0.2rem;
        position: relative;
        left: 0;
        width: auto;
        margin-left: 0;
        height: auto;
    }

    .indexPart2 .tab2 li {
        width: 33.33%;
        background: #f0f0f0;
    }

    .indexPart2 .tab2 .li01 {
        width: 50%;
    }

    .indexPart2 .tab2 .other {
        background: #fff;
    }

    .indexPart2 .tab2 .liNow {
        background: #0075cf;
    }

    .indexPart2 .tab2 li .name {
        font-size: 0.24rem;
    }

    .indexPart2 .tab2 li .txt {
        font-size: 0.14rem;
    }

    .indexPart3 {
        padding: 0.4rem 0.2rem 0.7rem;
        margin-top: .5rem;
    }

    .news_swiper li:before {
        display: none;
    }

    .indexPart3 .leftDiv {
        width: 100%;
        float: none;
    }

    .indexProduct .slick {
        padding: 0 0 1.22rem 0;
        width: auto;
    }

    .indexProduct .slick .imgDiv img {
        width: 4.5rem;
    }

    .indexProduct .slick .name {
        padding: 0.75rem 0 0 0.42rem;
    }

    .indexProduct .slick .msg {
        padding: 0.2rem 0 0 0.42rem;
        line-height: 0.48rem;
        height: 1.44rem;
        font-size: 0.24rem;
    }

    .indexProduct .slick .btnDiv {
        padding: 0.2rem 0 0 0.42rem;
    }

    .indexProduct .slick .btnDiv a {
        text-indent: 0.24rem;
        width: 2.62rem;
        height: 0.78rem;
        line-height: 0.78rem;
    }

    .indexProduct .slick .btnDiv a:after {
        top: 0.34rem;
    }

    .indexProduct .slick-prev {
        right: 0.96rem;
    }

    .indexProduct .slick-next {
        right: 0.34rem;
    }

    .indexPart3 .rightDiv {
        width: 100%;
        float: none;
    }

    .indexNews {
        height: auto;
    }

    .indexNews .slick .botDiv {
        padding: 0.32rem 0.45rem 0.64rem;
    }

    .indexNews .slick .txt {
        font-size: 0.24rem;
    }

    .indexNews .slick .name {
        height: 0.96rem;
        line-height: 0.48rem;
        font-size: 0.32rem;
        color: #000;
        overflow: hidden;
    }

    .indexNews .slick .time {
        font-size: 0.24rem;
    }

    .indexNews .slick .more {
        background: url(../images/nimg107Bg.png) left bottom no-repeat;
        width: 1.47rem;
        height: 0.42rem;
    }

    .indexNews .slick .more a {
        line-height: 0.42rem;
        font-size: 0.24rem;
    }

    .indexPart4 {
        padding-bottom: 0.8rem;
    }

    .indexPart4 .indexTitle {
        padding-bottom: 0.45rem;
        width: 100%;
    }

    .indexPart4 .wal {
        width: 100%;
    }

    .indexTitle2 {
        text-align: center;
    }

    .aboutLeft {
        background: none;
        padding-top: 0;
        width: auto;
        padding-left: 0;
        height: auto;
        float: none;
    }

    .aboutLeft .name {
        font-size: 0.36rem;
        line-height: 0.36rem;
    }

    .aboutLeft .year {
        font-size: 0.6rem;
        line-height: 0.6rem;
    }

    .aboutLeft .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
        padding-bottom: 0.35rem;
    }

    .aboutLeft .mxfDiv {
        position: relative;
        height: auto;
        width: auto;
        padding-bottom: 0.35rem;
        background-size: 100%;
    }

    .aboutLeft .mxfDiv .imgDiv {
        width: 100%;
        float: none;
    }

    .aboutLeft .mxfDiv .layer {
        position: relative;
        right: 0px;
        width: auto;
        top: 0;
        padding: 0.35rem 0 0 0.3rem;
    }

    .aboutLeft .mxfDiv .txt {
        font-size: 0.6rem;
    }

    .aboutLeft .mxfDiv .msg {
        font-size: 0.32rem;
        line-height: 0.48rem;
    }

    .aboutRight {
        float: none;
        width: auto;
        padding-top: 0.5rem;
    }

    .aboutRight .toptop .txt {
        font-size: 0.44rem;
        padding-top: 0.2rem;
    }

    .aboutRight .toptop .wen {
        font-size: 0.24rem;
    }

    .aboutRight .botbot {
        height: auto;
        padding-bottom: 5.0rem;
        background: #eef4fd url(../images/nimg378Bg.jpg) center bottom no-repeat;
        background-size: 100%;
    }

    .aboutRight .list {
        padding-top: 0.6rem;
    }

    .aboutRight .list li .box {
        font-size: 0.24rem;
        height: 0.75rem;
        line-height: 0.56rem;
    }

    .aboutRight .list li em {
        font-size: 0.48rem;
    }

    .aboutRight .list li span {
        font-size: 0.32rem;
    }

    .speechLeft {
        width: 100%;
        padding-left: 0;
        padding-bottom: 0.4rem;
    }

    .speechLeft .name {
        font-size: 0.36rem;
    }

    .speechLeft .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
    }

    .speechRight {
        width: 100%;
        padding-bottom: 0.3rem;
    }

    .speechRight .mxfDiv .imgDiv img {
        width: 100%;
    }

    .speechRight .mxfDiv .name {
        font-size: 0.4rem;
    }

    .speechRight .mxfDiv .wen {
        font-size: 0.26rem;
    }

    .speechRight:after {
        display: none;
    }

    .speechBot {
        padding-left: 0;
    }

    .speechBot .mxfDiv .layer {
        left: 0.8rem;
        top: 50%;
        margin-top: -0.48rem;
    }

    .speechBot .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
    }

    .culturePart1 .leftDiv {
        width: 100%;
        float: none;
    }

    .culturePart1 .mxfDiv .layer {
        top: 0.25rem;
    }

    .culturePart1 .mxfDiv .txt {
        font-size: 0.4rem;
        padding-bottom: 0.1rem;
    }

    .culturePart1 .mxfDiv .msg {
        line-height: 0.48rem;
        font-size: 0.24rem;
    }

    .culturePart1 .mxfDiv .btnDiv {
        padding-top: 0.1rem;
        width: 2.62rem;
    }

    .culturePart1 .mxfDiv .btnDiv a {
        text-indent: 0.24rem;
        width: 2.62rem;
        height: 0.78rem;
        line-height: 0.78rem;
    }

    .culturePart1 .mxfDiv .btnDiv a:after {
        top: 0.34rem;
    }

    .culturePart1 .rightDiv {
        display: none;
    }

    .culturePart2 {
        padding: 0.8rem 0.2rem 1.15rem;
    }

    .culturePart2 .bigBox {
        padding: 0 0 0.7rem 0;
        height: auto;
        background-size: 100%;
    }

    .culturePart2 .imgDiv {
        position: relative;
    }

    .culturePart2 .imgDiv img {
        width: 100%;
    }

    .culturePart2 .txtDiv {
        padding: 0.65rem 0 0.2rem;
        margin: 0 0.4rem;
        border-bottom: #ff9b00 solid 2px;
    }

    .culturePart2 .txt1 {
        font-size: 0.48rem;
    }

    .culturePart2 .txt2 {
        font-size: 0.34rem;
    }

    .culturePart2 .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    .culturePart2 .btnDiv {
        padding-left: 0.4rem;
    }

    .culturePart2 .btnDiv a {
        text-indent: 0.24rem;
        width: 2.62rem;
        height: 0.78rem;
        line-height: 0.78rem;
    }

    .culturePart2 .btnDiv a:after {
        top: 0.34rem;
    }

    .actTab li a {
        height: 1rem;
        font-size: 0.3rem;
        line-height: 0.42rem;
        display: table-cell;
        vertical-align: middle;
        width: 3.0rem;
    }

    .activity .list ul {
        margin-right: -0.1rem;
    }

    .activity .list li {
        margin-bottom: 0.2rem;
    }

    .activity .list li .box {
        margin-right: 0.1rem;
    }

    .activity .list li .name {
        padding: 0 0.24rem;
        font-size: 0.32rem;
    }

    .honor .tab2:before {
        display: none;
    }

    .honor .tab2 li {
        padding-top: 0.25rem;
        margin-right: 0;
        font-size: 0.32rem;
        width: 25%;
        text-align: center;
    }

    .honor .tab2 .liNow:before {
        display: none;
    }

    .honor .year {
        font-size: 0.32rem;
        padding-left: 0.34rem;
        background: url(../images/nimg23_1.png) left center no-repeat;
        background-size: 0.23rem;
    }

    .honor .year em {
        font-size: 0.42rem;
    }

    .honor .list li {
        padding-bottom: 0.2rem;
        background: url(../images/ico4.jpg) left 0.2rem no-repeat;
        background-size: 0.08rem;
        line-height: 0.48rem;
        font-size: 0.24rem;
    }

    .park {
        height: auto;
    }

    .parkLeft {
        float: none;
        width: auto;
        padding-left: 0;
        height: auto;
        background: none;
    }

    .parkLeft .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
        padding-top: 0.1rem;
    }

    .parkRight {
        display: none;
    }

    .parkLeft2 {
        float: none;
        width: auto;
        padding-left: 0;
        padding-top: 0.6rem;
    }

    .parkRight2 {
        display: none;
    }

    .partner .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
    }

    .partner .list ul {
        margin-right: -0.15rem;
    }

    .partner .list li {
        width: 50%;
        margin-bottom: 0.23rem;
    }

    .partner .list li .box {
        margin-right: 0.15rem;
    }

    .researchPart1 .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
    }

    .researchPart1 .mxfDiv {
        height: auto;
        padding-left: 0;
        padding-bottom: 0.5rem;
        background: url(../images/nimg435Bg.jpg) right bottom no-repeat;
        background-size: 100%;
    }

    .researchPart1 .mxfDiv .imgDiv {
        position: relative;
    }

    .researchPart1 .mxfDiv .imgDiv img {
        width: 100%;
    }

    .researchPart1 .mxfDiv .txt {
        font-size: 0.48rem;
        padding: 0.6rem 0.3rem 0.25rem;
    }

    .researchPart1 .mxfDiv .msg {
        font-size: 0.34rem;
        line-height: 0.5rem;
        padding: 0 0.3rem;
    }

    .researchPart1 .title {
        height: 0.48rem;
        line-height: 0.48rem;
        padding-left: 0.56rem;
        font-size: 0.36rem;
    }

    .researchPart1 .title .num {
        margin-top: -0.19rem;
        width: 0.43rem;
        height: 0.38rem;
        background: url(../images/nimg33_1.png) center no-repeat;
        background-size: 0.43rem;
    }

    .researchPart1 .title .num em {
        width: 0.38rem;
        line-height: 0.38rem;
        font-size: 0.24rem;
    }

    .researchPart1 .bigImg {
        padding-top: 0.5rem;
    }

    .researchPart1 .bigImg img {
        width: 100%;
    }

    .researchPart2 {
        padding: 0.8rem 0.2rem 0.7rem;
    }

    .researchPart2 .list li {
        margin-bottom: 0.15rem;
        position: relative;
        padding-top: 0.55rem;
    }

    .researchPart2 .list li .imgDiv {
        display: none;
    }

    .researchPart2 .list li .box {
        padding: 0 0.25rem 0.4rem;
        height: auto;
    }

    .researchPart2 .list .li01 .box {
        padding: 0 0.25rem 0.4rem;
    }

    .researchPart2 .list li .mxfDiv {
        padding-top: 0.4rem;
    }

    .researchPart2 .list li .title {
        height: 0.48rem;
        line-height: 0.48rem;
        padding-left: 0.56rem;
        font-size: 0.36rem;
    }

    .researchPart2 .list li .title .num {
        margin-top: -0.19rem;
        width: 0.43rem;
        height: 0.38rem;
        background: url(../images/nimg33_1.png) center no-repeat;
        background-size: 0.43rem;
    }

    .researchPart2 .list li .title .num em {
        width: 0.38rem;
        line-height: 0.38rem;
        font-size: 0.24rem;
    }

    .researchPart2 .list li .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
    }

    .researchPart3 {
        padding: 0.45rem 0.2rem 0.7rem;
    }

    .researchPart3 .title {
        height: 0.48rem;
        line-height: 0.48rem;
        padding-left: 0.56rem;
        font-size: 0.36rem;
    }

    .researchPart3 .title .num {
        margin-top: -0.19rem;
        width: 0.43rem;
        height: 0.38rem;
        background: url(../images/nimg33_1.png) center no-repeat;
        background-size: 0.43rem;
    }

    .researchPart3 .title .num em {
        width: 0.38rem;
        line-height: 0.38rem;
        font-size: 0.24rem;
    }

    .researchPart3 .list li {
        padding-left: 0.28rem;
        font-size: 0.24rem;
        line-height: 0.48rem;
        padding-bottom: 0.25rem;
        background: url(../images/ico2on.png) left 0.18rem no-repeat;
        background-size: 0.1rem;
    }

    .making .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
    }

    .making .part1 .name {
        font-size: 0.36rem;
        line-height: 0.6rem;
    }

    .making .part1 .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
    }

    .making .part2 {
        padding: 0 .3rem;
    }

    .making .part2 .leftDiv {
        float: none;
        width: 100%;
        padding-top: 0.9rem;
    }

    .making .part2 .txt {
        padding-left: 0.42rem;
        font-size: 0.28rem;
    }

    .making .part2 .txt em {
        font-size: 0.18rem;
    }

    .making .part2 .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
        padding: 0.35rem 0 0 0;
    }

    .making .part2 .rightImg {
        width: 100%;
        float: none;
        padding-top: 0.3rem;
    }

    .making .part3 {
        padding: 0 0.3rem 1.3rem;
    }

    .making .part3 .rightDiv {
        width: 100%;
        float: none;
        padding-top: 1.2rem;
    }

    .making .part3 .txt {
        padding-left: 0.42rem;
        font-size: 0.28rem;
    }

    .making .part3 .txt em {
        font-size: 0.18rem;
    }

    .making .part3 .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
    }

    .making .part3 .mxfDiv {
        padding-left: 0;
    }

    .making .part3 .leftImg {
        width: 100%;
        float: none;
        padding-top: 0.3rem;
    }

    .news .imgList li {
        height: 2.3rem;
        padding-left: 2.92rem;
    }

    .news .imgList li .imgDiv {
        left: 0px;
        top: 0.26rem;
    }

    .news .imgList li .imgDiv img {
        width: 2.54rem;
    }

    .news .imgList li .name {
        padding-top: 0.25rem;
        height: 0.8rem;
        line-height: 0.4rem;
        font-size: 0.32rem;
    }

    .news .imgList li .content {
        display: none;
    }

    .news .imgList li .share dd a {
        font-size: 0.24rem;
    }

    .news .imgList li .share dd img {
        width: 0.32rem;
    }

    .news .imgList li .time {
        font-size: 0.24rem;
    }

    .news .list {
        padding-bottom: 0.85rem;
    }

    .news .list li .name {
        height: 0.8rem;
        line-height: 0.4rem;
        font-size: 0.32rem;
    }

    .news .list li .content {
        display: none;
    }

    .news .list li .share dd a {
        font-size: 0.24rem;
    }

    .news .list li .share dd img {
        width: 0.32rem;
    }

    .news .list li .time {
        font-size: 0.24rem;
    }

    .newShow {
        padding-bottom: 0.5rem;
    }

    .newShow .name {
        font-size: 0.36rem;
        padding-bottom: 0.25rem;
    }

    .newShow .shu {
        padding-bottom: 0.45rem;
    }

    .newShow .shu li {
        margin-right: 0.2rem;
        font-size: 0.24rem;
    }

    .newShow .shu li img {
        padding-right: 0.07rem;
        width: 0.38rem;
    }

    .newShow .content {
        padding-top: 0.45rem;
        font-size: 0.24rem;
        line-height: 0.48rem;
    }

    .newShow .imgDiv {
        padding: 0.4rem 0 0.2rem;
    }

    .newShow .wen {
        padding-bottom: 0.3rem;
        font-size: 0.32rem;
    }

    .newShow .imgDiv img {
        width: 100%;
    }

    .newShow .content img {
        width: 100%;
    }

    .pageDown {
        padding: 0.4rem 0 0.7rem;
    }

    .pageDown li {
        font-size: 0.24rem;
        height: 0.48rem;
        line-height: 0.48rem;
    }

    .pageBtn ul {
        margin-right: -0.2rem;
    }

    .pageBtn li {
        font-size: 0.24rem;
    }

    .pageBtn li .box {
        margin-right: 0.2rem;
    }

    .pageBtn li a {
        text-align: center;
        height: 0.6rem;
        line-height: 0.6rem;
        background: #fff;
        border-radius: 0.24rem;
        -moz-border-radius: 0.24rem;
    }

    .pageBtn li .prev {
        text-indent: 0;
        background: #fff;
    }

    .pageBtn li .return {
        text-indent: 0;
        background: #fff;
    }

    .pageBtn li .next {
        text-indent: 0;
        background: #fff;
    }

    .pageBtn li .prev:hover {
        background: #fff;
    }

    .pageBtn li .return:hover {
        background: #fff;
    }

    .pageBtn li .next:hover {
        background: #fff;
    }

    .wisdomPart1 {
        padding: 0.85rem 0.2rem 0.08rem;
    }

    .wisdomPart1 .pageTitle {
        padding-bottom: 0.25rem;
    }

    .purpose .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
    }

    .service .leftDiv {
        width: 100%;
        float: none;
    }

    .service .msgList li {
        font-size: 0.26rem;
        line-height: 0.5rem;
    }

    .service .mapDiv {
        width: 100%;
        float: none;
        padding-top: 0.5rem;
    }

    .service .title {
        font-size: 0.32rem;
        height: 0.82rem;
        line-height: 0.82rem;
    }

    .service .list li {
        padding: 0.4rem 0;
        width: 100%;
        float: none;
    }

    .service .list li .box {
        padding-left: 0;
    }

    .service .list li .name1 {
        font-size: 0.32rem;
        line-height: 0.52rem;
    }

    .service .list li .name2 {
        font-size: 0.24rem;
    }

    .service .list dd {
        font-size: 0.24rem;
        line-height: 0.48rem;
    }

    .service .list li .btn {
        font-size: 0.26rem;
    }

    .lyb .part1 {
        height: auto;
        background: none;
    }

    .lyb .part1 .msg {
        font-size: 0.24rem;
        padding: 0.2rem 0 0.4rem;
        line-height: 0.48rem;
    }

    .lyb .part2 {
        padding: 0.48rem 0.25rem 0.9rem;
    }

    .lyb .form_l {
        width: auto;
        float: none;
    }

    .lyb .form_l li {
        height: auto;
        padding-left: 0;
        padding-bottom: 0.25rem;
    }

    .lyb .form_l li .txt {
        position: relative;
        width: 1.8rem;
        font-size: 0.24rem;
        line-height: 0.7rem;
    }

    .lyb .form_l li .txt img {
        margin-top: -0.12rem;
        width: 0.3rem;
    }

    .lyb .form_l li .input1 {
        width: 100%;
        height: 0.8rem;
        line-height: 0.8rem;
        font-size: 0.24rem;
    }

    .lyb .form_r {
        width: auto;
        float: none;
    }

    .lyb .form_r .txt {
        width: 1.8rem;
        font-size: 0.24rem;
        line-height: 0.7rem;
        height: 0.75rem;
    }

    .lyb .form_r .txt img {
        top: 0.18rem;
        width: 0.3rem;
    }

    .lyb .form_r .btnGroup a {
        width: 1.66rem;
        height: 0.5rem;
        line-height: 0.5rem;
        font-size: 0.24rem;
    }

    .join {
        background: none;
    }

    .join .pageTitle {
        padding-bottom: 0.4rem;
    }

    .join .txt {
        font-size: 0.32rem;
    }

    .join .txt img {
        width: 0.5rem;
    }

    .join .list li {
        line-height: 0.48rem;
        font-size: 0.24rem;
        background: url(../images/nimg10_2.png) left 0.19rem no-repeat;
        background-size: 0.1rem;
    }

    .join .imgList ul {
        margin-right: 0;
    }

    .join .imgList li {
        float: none;
        width: 100%;
        margin-bottom: 0.25rem;
    }

    .join .imgList li .box {
        margin-right: 0;
    }

    .join .imgList li .layer {
        position: absolute;
        left: 0px;
        top: 50%;
        margin-top: -0.4rem;
        height: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .join .imgList li .name {
        color: #fff;
        font-size: 0.36rem;
    }

    .join .imgList li .name img {
        padding-right: 0.1rem;
        width: 0.42rem;
        top: -0.03rem;
    }

    .join .imgList li .wen {
        font-size: 0.32rem;
    }


    .led {
        padding: 0 10px;
    }

    .led .phimg {
        display: inline-block;
        width: 100%;
    }

    .led .pcimg {
        display: none;
    }

    .led .text {
        font-size: 14px;
        color: #595959;
    }

    .led .text .look {
        margin-top: 20px;
    }

    .led1 {
        padding-bottom: 20px;
    }

    .led1 .more a {
        margin-top: 20px;
        width: 180px;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }

    .led1 .more a img {
        padding-left: 10px;
    }

    .led2 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .led2 .imgDiv {
        float: none;
    }

    .led2 .text {
        float: none;
        width: auto;
        padding: 10px;
    }

    .led2 h1 {
        text-align: center;
        font-size: 18px;
        padding-bottom: 20px;
    }

    .led3 {
        padding: 20px 10px;
    }

    .led3 .text {
        float: none;
        width: auto;
        padding: 10px;
    }

    .led3 .imgDiv {
        float: none;
        width: auto;
    }

    .led4 {
        padding: 20px 10px;
    }

    .led4 .text {
        float: none;
        width: auto;
        padding: 10px;
    }

    .led4 .imgDiv {
        float: none;
        width: auto;
    }

    .led5 {
        padding-top: 20px;
    }

    .led5 .imgDiv {
        float: none;
    }

    .led5 .text {
        float: none;
        width: auto;
        padding: 10px;
    }

    .ledlogoph {
        display: block;
        padding: 20px 0;
        text-align: center;
    }

    .ledlogoph img {
        width: 50%;
    }

    .carshow1 .listtop {
        padding-bottom: 0;
        margin-bottom: 20px;
    }

    .carshow1 .listtop li {
        width: auto;
        float: none;
        margin-bottom: 20px;
    }

    .carshow1 .listtop li .imgDiv>img {
        width: 100%;
    }

    .carshow1 .listtop li .text01 {
        padding-right: 0;
    }

    .carshow1 .listtop li .text01 h2 {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .carshow1 .listtop li .text01 p {
        font-size: 14px;
    }

    .carshow1 .listtop li .text02 {
        padding: 20px;
        height: auto;
    }

    .carshow1 .listtop li .text02 h2 {
        font-size: 18px;
    }

    .carshow1 .listtop li .text02 p {
        font-size: 16px;
    }

    .carshow1 .list ul {
        width: auto;
    }

    .carshow1 .list li {
        width: auto;
        float: none;
        margin-bottom: 20px;
    }

    .carshow1 .list li .box {
        margin-right: 0;
    }

    .carshow1 .list li .name {
        display: none;
    }

    .carshow1 .list li .text {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        background-color: inherit;
    }

    .carshow1 .list li .text a {
        padding: 0;
    }

    .carshow1 .list li .text h2 {
        font-size: 18px;
        padding-bottom: 20px;
        padding-top: 20px;
        color: #0a74d6;
    }

    .carshow1 .list li .text p {
        font-size: 14px;
        color: #606061;
    }

    .download .list li {
        padding: 0.15rem 0.85rem 0.15rem 0.25rem;
        height: auto;
    }

    .download .list li .name {
        padding-left: 0.18rem;
        font-size: 0.3rem;
        line-height: 0.56rem;
    }

    .download .list li .name:before {
        top: 0.24rem;
        margin-top: 0;
    }

    .download .list li .time {
        position: relative;
        left: 0;
        font-size: 0.24rem;
        line-height: 0.48rem;
    }

    .download .list li .more {
        right: 0.25rem;
        margin-top: -0.24rem;
    }

    .download .list li .more img {
        width: 0.48rem;
    }

    .car .toptop {
        min-height: 1rem;
        padding-left: 0;
    }

    .car .toptop .imgDiv {
        position: relative;
    }

    .car .toptop .imgDiv img {
        width: 100%;
    }

    .car .toptop .txt {
        padding-top: 0.45rem;
        height: 0.7rem;
        font-size: 0.36rem;
    }

    .car .toptop .content {
        font-size: 0.24rem;
        padding-top: 0.35rem;
        line-height: 0.48rem;
    }

    .car .botbot {
        padding-top: 0.5rem;
    }

    .car .botbot .leftDiv {
        width: auto;
        float: none;
    }

    .car .botbot .leftDiv .layer {
        left: 0.72rem;
        top: 0.5rem;
    }

    .car .botbot .leftDiv .txt {
        font-size: 0.4rem;
        line-height: 0.54rem;
    }

    .car .botbot .leftDiv .wen {
        font-size: 0.4rem;
    }

    .car .botbot .leftDiv .msg {
        font-size: 0.24rem;
    }

    .car .botbot .imgDiv {
        width: auto;
        float: none;
    }

    .car .list {
        padding-top: 0.48rem;
    }

    .car .list ul {
        margin-right: 0;
    }

    .car .list li {
        width: 100%;
        margin-bottom: 0.3rem;
    }

    .car .list li .box {
        margin-right: 0;
        height: auto;
        padding-bottom: 0.5rem;
        background-size: 100% 100%;
    }

    .car .list li .ico img {
        width: 0.96rem;
    }

    .car .list li .name {
        font-size: 0.3rem;
    }

    .car .list li .msg {
        padding: 0 0.4rem;
    }

    .car .list li .msg p {
        line-height: 0.48rem;
        font-size: 0.24rem;
    }

    .automotive .content {
        font-size: 0.24rem;
        padding: 0.1rem 0 0.35rem;
        line-height: 0.48rem;
    }

    .automotive .mxfDiv .btnDiv {
        width: 2.9rem;
        margin-left: -1.45rem;
    }

    .automotive .mxfDiv .btnDiv a {
        font-size: 0.24rem;
        width: 2.86rem;
        height: 0.68rem;
        line-height: 0.68rem;
    }

    .automotive .mxfDiv .btnDiv a:after {
        top: 0.24rem;
    }

    .automotive .list {
        padding-top: 0.9rem;
    }

    .automotive .list li {
        position: relative;
        overflow: hidden;
        padding-bottom: 0.4rem;
        margin-bottom: 0.5rem;
    }

    .automotive .list li .imgDiv {
        width: auto;
        float: none;
    }

    .automotive .list li .contentBox {
        width: auto;
        float: none;
        height: auto;
    }

    .automotive .list li .name {
        font-size: 0.4rem;
        height: 0.72rem;
    }

    .automotive .list li .name:after {
        width: 0.52rem;
        margin-left: -0.26rem;
    }

    .automotive .list li .txt {
        font-size: 0.32rem;
        line-height: 0.56rem;
    }

    .automotive .list li .msg {
        line-height: 0.56rem;
        font-size: 0.32rem;
        padding-bottom: 0.4rem;
    }

    .automotive .list li .btnDiv {
        position: relative;
        left: 0;
        bottom: 0;
        width: 2.67rem;
        margin: 0 auto;
    }

    .automotive .list li .btnDiv a {
        font-size: 0.24rem;
        width: 2.65rem;
        height: 0.64rem;
        line-height: 0.64rem;
    }

    .automotive .list li .btnDiv a:after {
        top: 0.23rem;
    }

    .automotive .list li .btnDiv a:hover:after {
        background: url(../images/nimg40_10.png) no-repeat;
        background-size: 0.4rem;
    }

    .battery .content {
        font-size: 0.24rem;
        padding: 0.1rem 0 0.35rem;
        line-height: 0.48rem;
    }

    .battery .mxfDiv .btnDiv {
        width: 2.9rem;
        margin-left: -1.45rem;
    }

    .battery .mxfDiv .btnDiv a {
        font-size: 0.24rem;
        width: 2.86rem;
        height: 0.68rem;
        line-height: 0.68rem;
        text-indent: 0;
        text-align: center;
    }

    .battery .mxfDiv .btnDiv a:after {
        display: none;
    }

    .battery .title {
        font-size: 0.4rem;
        height: 0.72rem;
    }

    .battery .title:after {
        width: 0.52rem;
        margin-left: -0.26rem;
    }

    .batteryPic .slick {
        margin: 0;
    }

    .batteryPic .slick .botbot {
        padding: 0.42rem 0;
        height: auto;
    }

    .batteryPic .slick .name {
        font-size: 0.32rem;
        height: 0.48rem;
        line-height: 0.48rem;
    }

    .batteryPic .slick .msg {
        font-size: 0.24rem;
    }

    .batteryPic .slick-prev {
        left: 0;
        margin-top: -1.42rem;
        width: 0.84rem;
        height: 0.84rem;
        background-size: 0.84rem;
    }

    .batteryPic .slick-next {
        right: 0;
        margin-top: -1.42rem;
        width: 0.84rem;
        height: 0.84rem;
        background-size: 0.84rem;
    }

    .batteryPic .slick-prev:hover {
        background-size: 0.84rem;
    }

    .batteryPic .slick-next:hover {
        background-size: 0.84rem;
    }

    .batteryPic .slick:hover .name {
        color: #0075cf;
    }

    .batteryPic .slick:hover .botbot {
        border-bottom: #0075cf solid 0.02rem;
    }

    .battery .list li {
        padding-left: 0;
        min-height: 1.0rem;
    }

    .battery .list .li01 {
        padding: 0;
    }

    .battery .list li .imgDiv {
        position: relative;
    }

    .battery .list li .imgDiv img {
        width: 100%;
    }

    .battery .list li .concon {
        height: auto;
        display: block;
    }

    .battery .list li .name {
        font-size: 0.36rem;
        padding: 0.3rem 0 0.3rem 0.24rem;
    }

    .battery .list li .txt {
        font-size: 0.28rem;
        padding-left: 0.24rem;
        line-height: 0.48rem;
    }

    .battery .list li dd {
        padding-left: 0.24rem;
        background: url(../images/ico5.png) left 0.15rem no-repeat;
        background-size: 0.12rem;
        line-height: 0.48rem;
        font-size: 0.24rem;
    }

    .equipment .content {
        font-size: 0.24rem;
        padding: 0.1rem 0 0.35rem;
        line-height: 0.48rem;
    }

    .equipment .mxfDiv .btnDiv {
        width: 2.9rem;
        margin-left: -1.45rem;
    }

    .equipment .mxfDiv .btnDiv a {
        font-size: 0.24rem;
        width: 2.86rem;
        height: 0.68rem;
        line-height: 0.68rem;
        text-indent: 0;
        text-align: center;
    }

    .equipment .mxfDiv .btnDiv a:after {
        display: none;
    }

    .equipBox li {
        padding: 0.56rem 0.2rem 0.88rem;
    }

    .equipBox li .title {
        font-size: 0.4rem;
        height: 0.72rem;
    }

    .equipBox li .title:after {
        width: 0.52rem;
        margin-left: -0.26rem;
    }

    .equipBox li .limg img {
        width: 100%;
    }

    .equipBox li .rimg img {
        width: 100%;
    }

    .hardware .content {
        font-size: 0.24rem;
        padding: 0.1rem 0 0.35rem;
        line-height: 0.48rem;
    }

    .hardware .mxfDiv .btnDiv {
        width: 2.9rem;
        margin-left: -1.45rem;
    }

    .hardware .mxfDiv .btnDiv a {
        font-size: 0.24rem;
        width: 2.86rem;
        height: 0.68rem;
        line-height: 0.68rem;
        text-indent: 0;
        text-align: center;
    }

    .hardware .mxfDiv .btnDiv a:after {
        display: none;
    }

    .hardware .list li {
        padding-left: 0;
        min-height: 2.0rem;
        margin-bottom: 0.8rem;
    }

    .hardware .list .li01 {
        padding: 0;
    }

    .hardware .list li .imgDiv {
        position: relative;
        left: 0px;
        top: 0px;
    }

    .hardware .list li .imgDiv img {
        width: 100%;
    }

    .hardware .list li .contentBox {
        height: auto;
    }

    .hardware .list li .name {
        font-size: 0.36rem;
        padding: 0.3rem 0 0.35rem;
    }

    .hardware .list li .name2 {
        padding: 0.3rem 0 0.35rem;
    }

    .hardware .list li .icoList dd {
        float: left;
        width: 25%;
        margin-right: 0;
    }

    .hardware .list li .icoList dd .ico img {
        width: 1.3rem;
    }

    .hardware .list li .icoList dd .wen {
        font-size: 0.24rem;
    }

    .hardware .list li .msgList dd {
        padding-left: 0.24rem;
        background: url(../images/ico5.png) left 0.15rem no-repeat;
        background-size: 0.12rem;
        line-height: 0.48rem;
        font-size: 0.24rem;
    }

    .hardware .list li .btnDiv {
        padding-top: 0.4rem;
    }

    .hardware .list li .btnDiv a {
        font-size: 0.24rem;
        width: 2.65rem;
        height: 0.64rem;
        line-height: 0.64rem;
    }

    .hardware .list li .btnDiv a:after {
        top: 0.23rem;
    }

    .hardware .list li .btnDiv a:hover:after {
        background: url(../images/nimg40_10.png) no-repeat;
        background-size: 0.4rem;
    }

    .historyBg {
        height: 1rem;
    }

    .historyList {
        height: 1rem;
        background: url(../images/bg3.jpg) left 0.54rem repeat-x;
        padding: 0 1.05rem;
    }

    .historyList .slick-slide {
        padding-top: 0.55rem;
        height: 0.45rem;
        font-size: 0.4rem;
        background-size: 0.28rem;
    }

    .historyList .slickon {
        background-size: 0.28rem;
    }

    .history .contentBox {
        padding-top: 0.6rem;
        background: url(../images/line4.jpg) 0.04rem repeat-y;
    }

    .history .contentBox li {
        padding-left: 1.8rem;
        min-height: 1.0rem;
    }

    .history .contentBox li .month {
        width: 1.51rem;
        height: 0.4rem;
        background-size: 1.51rem;
        font-size: 0.3rem;
        text-indent: 0.62rem;
        line-height: 0.4rem;
    }

    .history .contentBox li .content {
        font-size: 0.24rem;
        line-height: 0.48rem;
    }

    /*ÈËÁ¦×ÊÔ´-Éç»áÕÐÆ¸*/
    .jobPage1 {
        margin: 0 0 0;
        padding: 34px 0 60px;
    }

    .jobPage1 .title4 {
        display: none;
    }

    .job .job-select-box .search {
        background-size: 19px;
    }

    .job .job-select-box .search input {
        width: 68%;
        height: 35px;
        line-height: 35px;
        padding: 4px 3%;
    }

    .job .job-select-box .AllSearchIco {
        margin-left: 24%;
        width: 73.5%;
    }

    .job .job-select-box .AllSearchIco {
        width: 79%;
        margin-top: 23px;
        padding: 0 1px;
        margin-left: 18%;
    }

    .job .job-select-box .AllSearchIco {
        display: inline-block;
        font-size: 16px;
        color: #fff;
        background: #00a0e9;
        border-radius: 1px;
        width: 60px;
        height: 43px;
        line-height: 43px;
        text-align: center;
        margin-left: 12px;
        vertical-align: middle;
        margin-top: -2px;
    }

    .job {
        margin-top: 0px;
    }

    .job .pageTitle {
        display: none
    }

    .jobList {
        margin: 0px 10px;
    }

    .jobList li {
        padding: 18px 0 50px;
        margin-bottom: 12px;
    }

    .jobList li .tit {
        position: static;
        padding: 0 14% 0 6%;
        width: auto;
        border-right: none;
        font-size: 18px;
    }

    .jobList li .tit em {
        width: 13px;
        height: 2px;
    }

    .jobList li .text {
        padding: 0 6% 0;
    }

    .jobList li .text .con1 {
        display: block;
    }

    .jobList li .bottom {
        width: 14%;
        height: 46px;
    }

    .jobList li.on .minor {
        margin-top: 22px;
    }

    .jobPage1 .numberBox {
        margin-top: 45px;
    }

    .culturetitle {
        font-size: 18px;
        color: #0a74d6;
        padding-bottom: 20px;
        text-align: center;
    }

    .culturetow1 li {
        margin-bottom: 10px;
    }

    .culturetow1 li .txt {
        top: 0;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .culturetow1 li .text {
        display: none;
    }

    .culturetow1 li .imgDiv .name {
        display: none;
    }

    .culturetow1 li .imgDiv .imgbox img {
        width: 100%;
    }

    .culturetow1 li:first-child .imgDiv {
        width: auto;
        float: none;
    }

    .culturetow1 li:first-child .imgDiv .txt {
        line-height: 1.5;
        font-size: 18px;
    }

    .culturetow1 li:first-child .imgDiv .txt h2 {
        display: block;
        font-weight: inherit;
        font-size: 16px;
        color: #fff;
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .culturetow1 li:first-child .imgDiv .txt p {
        position: absolute;
        left: 0;
        width: 100%;
        text-align: center;
        top: 50%;
        margin-top: -10px;
        font-size: 14px;
    }

    .culturetow1 li:last-child .imgDiv {
        width: auto;
        float: none;
    }

    .culturetow1 li:last-child .imgDiv .txt h2 {
        display: block;
        font-weight: inherit;
        font-size: 16px;
        color: #fff;
        padding-top: 20px;
        padding-bottom: 10px;
        text-align: center;
    }

    .culturetow1 li:last-child .imgDiv .txt p {
        line-height: 1.5;
        font-size: 14px;
        color: #fff;
        padding: 0 10px;
    }

    .culturetow1 li:nth-child(2) .imgDiv .txt h2 {
        font-size: 16px;
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .culturetow1 li:nth-child(2) .imgDiv .txt p {
        font-size: 14px;
        color: #fff;
        line-height: 1.5;
        padding: 0 10px;
    }

    .culturetow1 li:nth-child(3) .imgDiv {
        width: auto;
        float: none;
        margin-bottom: 10px;
    }

    .culturetow1 li:nth-child(3) .imgDiv .txt {
        text-align: center;
    }

    .culturetow1 li:nth-child(3) .imgDiv .txt h2 {
        font-size: 16px;
        padding-top: 20%;
        padding-bottom: 10px;
    }

    .culturetow1 li:nth-child(3) .imgDiv .txt p {
        font-size: 14px;
        color: #fff;
        line-height: 1.5;
        padding: 0 10px;
    }

    .culturetow1 li .imgDiv:hover .txt {
        top: 0;
    }

    .culturetow1 li .phimg {
        display: inline-block;
    }

    .culturetow1 li .pcimg {
        display: none;
    }

    .cultureshow1 .text {
        width: auto;
        float: none;
        padding-top: 0;
    }

    .cultureshow1 .text h2 {
        padding-bottom: 20px;
        font-size: 16px;
    }

    .cultureshow1 .text p {
        font-size: 14px;
        line-height: 1.5;
    }

    .cultureshow1 .imgDiv {
        padding-left: 0;
    }

    .cultureshow1 .imgDiv img {
        width: 100%;
    }

    .cultureshow1 .back {
        margin: 0 auto;
        margin-top: 40px;
        display: block;
        width: 160px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        font-size: 14px;
        color: #fff;
        font-weight: bold;
        background-color: #0a74d6;
    }

    .cultureshow1 .back img {
        padding-left: 5px;
    }

    .cultureshow1 .back:hover {
        text-decoration: underline;
    }

}

/*  */
@media screen and (min-width:768px) {
    .youshii-box {
        display: none;
    }

}

/*  */

@media screen and (max-width:768px) {

    /*  */
    .youshii {
        display: none;
    }

    .youshii-box {
        display: block;
    }

    .youshii-box .youshii-box-img img {
        width: 100%;
        height: auto;
        margin: 0 0 20px 0px;

    }

    /*  */

    /*  */
    .footer-bottom .footer-bottom-box {
        display: block;
        text-align: center;
        font-size: 12px;
    }

    .cndns-right {
        display: none;
    }

    .hm-contact .hm-ny-ct .hm-ny-ct-box .hm-ny-ct-content {
        display: block !important;
        /* justify-content: space-between; */
    }

    .hm-contact .hm-ny-ct .hm-ny-ct-box .hm-ny-ct-content .hm-ny-ct-item {
        width: 100% !important;
    }

    .hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer {
        display: block !important;
        /* justify-content: space-between; */
    }

    .hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-footer {
        width: 100% !important;
    }

    /*  */
    .index_news_swiper ul li {
        height: auto;
        width: 100%;
    }

    .index_news_swiper ul i {
        height: auto;
        width: 100%;
    }

    .indexPart1 .imgDiv img {
        width: 100%;
        height: 400px;
    }

}

/*  */