﻿@charset "utf-8";


* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    margin: 0px auto;
    font-size: 16px;
    color: #333;
    width: 100%;
    zoom: 1;
    padding-top: 100px;
}

ul,
li,
form,
dl,
dt,
dd,
div,
ul,
li,
p,
em,
i,
address {
    font-style: normal;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0px;
    margin: 0px;
}

select,
input,
textarea,
button {
    font-size: 14px;
    border-radius: 0;
    -webkit-border-radius: 0;
    color: #333;
    font-family: Microsoft YaHei, arial, sans-serif;
}

input:focus {
    outline: none;
}

input,
button,
select,
textarea {
    border: 0px;
    outline: none;
    /*-webkit-appearance:none;*/
    /*强制去除表单自带的样式*/
}

button {
    cursor: pointer;
}

textarea {
    resize: none;
    /*-webkit-appearance:none;*/
    /*强制去除textarea自带的样式*/
}

textarea,
input,
select {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

article,
aside,
footer,
header,
hgroup,
nav,
section,
figure,
fxigcaption,
address {
    display: block;
}


/*html5设置*/

figure,
figcaption {
    margin: 0px;
    padding: 0px;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

img {
    max-width: 100%;
    border: none;
    border: 0;
    vertical-align: middle;
}

a {
    color: #333333;
    text-decoration: none;
    transition: all ease 0.3s;
}

a:focus {
    outline: none;
    -moz-outline: none;
}

a:hover {
    text-decoration: none;
    color: #0ab455;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}


/*单行文本省略号*/

.dot {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dot2,
.dot3,
.dot4 {
    display: -webkit-box;
    display: box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
}

.dot2 {
    -webkit-line-clamp: 2;
}


/*多行文本省略号*/

.dot3 {
    -webkit-line-clamp: 3;
}

.dot4 {
    -webkit-line-clamp: 4;
}


/*input字体*/

:-moz-placeholder {
    color: #999999;
}

::-moz-placeholder {
    color: #999999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999999;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999999;
}

select {
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    border: solid 1px #d9d9d9;
    text-indent: 1em;
    /*很关键：将默认的select选择框样式清除*/
    appearance: none;
    color: #999999;
    -moz-appearance: none;
    -webkit-appearance: none;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url(../images/selectarr.png) no-repeat scroll 95% center transparent;
    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-right: 14px;
}


/*清除ie的默认选择框样式清除，隐藏下拉箭头*/

select::-ms-expand {
    display: none;
}


/*网页滚动条*/

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    -webkit-overflow-scrolling: touch;
    background-color: #e8e8e8;
}

::-webkit-scrollbar-track {
    background-color: #e8e8e8;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #0ab455;
}

::-webkit-scrollbar-button {
    height: 0px;
    background-color: #e8e8e8;
}


/*effict*/

.Scale-img {
    overflow: hidden;
    cursor: pointer;
    zoom: 1;
    overflow: hidden;
}

.Scale-img img,
.Scale-img span {
    opacity: 1;
    -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
    transition: opacity 0.6s, transform 0.6s;
}

.Scale-img:hover img,
.Scale-img:hover span {
    opacity: 1;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
    top: 0px;
    left: 0px;
}

.effict {
    transition: all ease 0.3s;
}

.imgbox {
    overflow: hidden;
    position: relative;
    /*background:url(../uploadfiles/nopic.jpg) center center no-repeat; background-size:contain;*/
}

.imgbox span {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgbox img {
    width: auto !important;
    max-height: 100%;
}


/*pages*/

.Pages {
    margin: 50px 0;
    text-align: center;
}

.Pages a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    margin: 0 3px;
    border: 1px solid #fff;
}

.Pages a.a_prev,
.Pages a.a_next {
    border: 1px solid #dcdcdc;
    font-family: "宋体";
}

.Pages a.a_cur {
    background: #0ab455;
    color: #fff;
    border: 1px solid #0ab455;
}

.Pages a:hover {
    background: #0ab455;
    color: #fff;
    border: 1px solid #0ab455;
}

.Pages .p_jump {
    margin-left: 10px;
}

.Pages .p_jump b {
    font-weight: normal;
}

.Pages .p_jump input.i_text {
    width: 38px;
    height: 38px;
    border: 1px solid #dcdcdc;
    margin: 0 5px;
    text-align: center;
}

.Pages .p_jump .tz {
    margin-left: 30px;
    font-size: 16px;
    cursor: pointer;
}

.Pages .p_jump .tz input {
    font-size: 16px;
    cursor: pointer;
}

.Pages .p_jump .tz img {
    position: relative;
    margin-left: 5px;
    top: -2px;
}

@media ( max-width:1024px) {
    .Pages a {
        width: 25px;
        height: 25px;
        line-height: 25px;
        margin: 0;
    }
    .Pages .p_jump input.i_text {
        width: 25px;
        height: 25px;
    }
    .Pages .p_jump .tz {
        margin-left: 10px;
    }
    .Pages .p_jump .tz input {
        font-size: 14px;
    }
}


/*pages end*/

.Contain {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
}

@media(max-width:1024px) {
    body {
        font-size: 14px;
    }
}


/*Top*/

.Header {
    height: 100px;
    line-height: 100px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 100;
    transition: all 0.3s;
    z-index: 9999;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.Header .auto {
    padding: 0 40px 0 6.2%;
}
.Header .auto .Logo img{max-height:80px;}
.Header.fix {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

.Header .m-btn {
    display: none;
    cursor: pointer;
    padding: 15px 5px;
    border-radius: 5px;
    z-index: 999;
    margin-top: 15px;
    margin-left: 10px;
}

.Header .m-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #0ab455;
    position: relative;
    -webkit-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    -o-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    transition: all 200ms cubic-bezier(.4, 0, 0, 1);
}

.Header .m-btn span::before,
.m-btn span::after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    background: #0ab455;
    position: absolute;
    left: 0;
    -webkit-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    -o-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    transition: all 200ms cubic-bezier(.4, 0, 0, 1);
}

.Header .m-btn span:before {
    top: -8px;
}

.Header .m-btn span:after {
    bottom: -8px;
}

.Header .m-btn.active span {
    background: transparent;
}

.Header .m-btn.active span:before {
    transform: rotate(-48deg) translate(-6px, 5px);
    -webkit-transform: rotate(-48deg) translate(-6px, 5px);
    -o-transform: rotate(-48deg) translate(-6px, 5px);
    width: 24px;
}

.Header .m-btn.active span:after {
    transform: rotate(48deg) translate(-6px, -5px);
    -webkit-transform: rotate(48deg) translate(-6px, -5px);
    -o-transform: rotate(48deg) translate(-6px, -5px);
    width: 24px;
}

.Search .Searchico {
    cursor: pointer;
    color: #9a9a9a;
}

.Search .Searchico:hover {
    opacity: 0.8;
}

.Search .Searchico .close {
    display: none;
}

.Search .Searchico.on .search {
    display: none;
}

.Search .Searchico.on .close {
    display: inline-block;
}

.Search .searchbox {
    background: #fff;
    width: 350px;
    line-height: 34px;
    position: absolute;
    right: 40px;
    top: 150px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    box-sizing: border-box;
    padding-right: 60px;
}

.Search .searchbox .input {
    width: 100%;
    height: 40px;
    line-height: 38px;
    text-indent: 1em;
}

.Search .searchbox .input::-webkit-input-placeholder {
    color: #959595;
}

.Search .searchbox .btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 40px;
    color: #fff;
    border-radius: 0 4px 4px 0;
}

.Search .searchbox.on {
    opacity: 1;
    visibility: visible;
    top: 101px;
}

.Header .shop {
    padding: 0 20px;
    margin-right: 20px;
    position: relative;
}

.Header .shop img {
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

.Header .shop::after {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background: #ededed;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
}

.Header .shop::before {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background: #ededed;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}

.Header .shop a {
    color: #666666;
    font-size: 14px;
}

.Header .shop:hover a {
    color: #0ab455;
}

.Header .lan {
    padding: 0 20px;
    position: relative;
    cursor: pointer;
}

.Header .lan::before {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background: #ededed;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}

.Header .lan span {
    font-size: 14px;
    color: #666;
    padding-right: 20px;
    position: relative;
    font-family: Arial;
}

.Header .lan span::after {
    content: '';
    display: block;
    width: 15px;
    height: 20px;
    background: url(../images/down.png) no-repeat center right;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
}

.Header .lan span img {
    position: relative;
    margin-right: 5px;
    top: -2px;
}

.Header .lan ul {
    position: absolute;
    top: 100px;
    left: 50%;
    width: 120px;
    background: #fff;
    margin-left: -60px;
    border-top: 2px solid #0ab455;
    display: none;
}

.Header .lan ul li {
    line-height: 40px;
    text-align: center;
}

.Header .lan ul li a {
    font-size: 14px;
    color: #666;
}

.Header .lan ul li:hover a {
    color: #0ab455;
}

.MainNav {}

.MainNav ul::after {
    content: '';
    display: block;
    clear: both;
}

.MainNav ul li {
    float: left;
    margin-right: 30px;
    position: relative;
    padding: 0 10px;
}

.MainNav ul li::after {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    background: #0ab455;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    transform: rotateY(90deg);
    -webkit-transform: rotateY(90deg);
}

.MainNav ul li .NavPull {
    position: absolute;
    top: 100px;
    border-top: 2px solid #0ab455;
    width: 180px;
    margin-left: -90px;
    left: 50%;
    background: #fff;
    box-sizing: border-box;
    display: none;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.MainNav ul li .NavPull dl dd {
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    padding: 0 10px;
}

.MainNav ul li .NavPull dl dd a {
    display: block;
    border-top: 1px dashed #e5e5e5;
}

.MainNav ul li .NavPull dl dd:hover {
    background: #0ab455;
}

.MainNav ul li .NavPull dl dd:hover a {
    color: #fff;
    border-top: 1px solid #0ab455;
}

.MainNav ul li .NavPull dl dd:first-child a {
    border-top: none;
}

.MainNav ul li:hover::after {
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
}

.MainNav ul li:hover>a {
    color: #0ab455;
}

.MainNav ul li.onnav::after {
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
}

.MainNav ul li.onnav>a {
    color: #0ab455;
}


/* 20210526新增菜单样式 s*/

.MainNav ul #nav4 .NavPull dl dd {
    position: relative;
}

.MainNav ul #nav4 .NavPull dl dd .subTit {
    position: absolute;
    right: -180px;
    width: 180px;
    text-align: center;
    top: 0px;
    background: #ffff;
    display: none;
}

.MainNav ul #nav4 .NavPull dl dd:hover .subTit {
    display: block;
}

.MainNav ul #nav4 .NavPull dl dd .subTit a {
    border-top: 1px dashed #e5e5e5;
}

.MainNav ul #nav4 .NavPull dl dd:hover .subTit a {
    color: #333333;
}

.MainNav ul #nav4 .NavPull dl dd .subTit a:hover {
    color: #fff;
    background-color: #0ab455;
    border-top: 1px dashed #0ab455;
}

.MainNav ul #nav4 .NavPull dl dd:hover .tit {
    color: #fff;
}


/* 20210526新增菜单样式 end*/


@media ( max-width:1680px) {
    .Header .auto {
        padding: 0 2% 0 3.2%;
    }
    .MainNav ul li {margin-right:10px;padding: 0 5px;}
}

@media ( max-width:1366px) {
    .Header .auto {
        max-width: 1600px;
        margin: 0 auto;
        width: 95%;
        padding: 0;
    }
    .MainNav ul li {
        margin-right: 10px;
        padding: 0 5px;
    }
}
@media ( max-width:1280px) 
{
   .MainNav ul li {
        margin-right: 10px;
        padding: 0px;
    } 
     .MainNav ul li a{font-size:12px;}
    }
@media(max-width:1200px) {
    .MainNav ul li {
        margin-right: 10px;
    }
    .Header .shop {
        padding: 0 10px;
        margin-right: 10px;
    }
    .Header .lan {
        padding: 0 10px;
    }
}

@media ( max-width:1024px) {
    .Header .auto {
        padding: 0 15px 0 15px;
    }
     .MainNav ul li a{font-size:16px;}
}

@media(max-width:1024px) {
    body {
        padding-top: 60px;
    }
    .Header {
        height: 60px;
        line-height: 60px;
    }
    .Header .Logo img {
        height: 35px;
    }
    .Header .m-btn {
        display: block;
    }
    .Search .searchbox {
        top: 80px;
    }
    .Search .searchbox.on {
        top: 60px;
        right: 2%;
        width: 96%;
    }
    .MainNav {
        width: 0;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        transition: all .5s;
        -webkit-transition: all .5s;
        overflow: hidden;
        height: calc(100vh - 60px);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .MainNav ul {
        padding: 10px 20px;
    }
    .MainNav ul li {
        width: 100%;
        box-sizing: border-box;
        position: relative;
        line-height: 40px;
        font-size: 15px;
        min-width: 120px;
    }
    .MainNav ul li::after {
        height: 2px;
    }
    .MainNav ul li b {
        display: block;
        width: 40px;
        height: 40px;
        background: url(../images/more1.png) no-repeat center right;
        position: absolute;
        right: 0;
        top: 0;
    }
    .MainNav ul li .NavPull {
        position: static;
        width: 100%;
        box-sizing: border-box;
        background: #eee;
        margin-left: 0;
    }
    .MainNav ul li .NavPull dl dd {
        line-height: 30px;
        font-size: 13px;
        text-align: left;
        padding-left: 10px;
    }
    .MainNav.show {
        width: 60%;
    }
    .Header .lan ul {
        top: 60px;
    }
    /* 20210526新增菜单样式 s*/
    .MainNav ul #nav4 .NavPull {
        position: static;
        padding-bottom: 0;
    }
    .MainNav ul #nav4 .NavPull dl {
        width: 100%;
        display: block;
    }
    .MainNav ul #nav4 .NavPull dl dd .tit {
        padding: 10px 0;
        margin: 0;
        font-size: 13px;
        width: 92%;
    }
    .MainNav ul #nav4 .NavPull dl dd .subTit {
        width: 96%;
        position: static;
        text-align: left;
        padding-left: 4%;
        display: none;
    }
    .MainNav ul #nav4 .NavPull dl dd.in .subTit {
        display: block;
    }
    .MainNav ul li .NavPull dl dd:hover {
        background: #eeeeee;
    }
    .MainNav ul #nav4 .NavPull dl dd:hover .subTit {
        display: none;
    }
    /* 20210526新增菜单样式 end*/
}


/*Top*/


/* Bottom */

.Bottom .BottomTop {
    position: relative;
}

.Bottom .BottomTop .BottomNav {
    position: relative;
    text-align: center;
    line-height: 30px;
}

.Bottom .BottomTop .BottomNav .flogo {
    position: absolute;
    left: 0;
    top: -10px;;
}
.Bottom .BottomTop .BottomNav .flogo img{max-height:60px;}

.Bottom .BottomTop .BottomNav ul li {
    display: inline-block;
    margin-left: -4px;
    padding: 0 20px;
    position: relative;
}

.Bottom .BottomTop .BottomNav ul li::before {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    background: #d8d8d8;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -5px;
}

.Bottom .BottomTop .BottomNav ul li:first-child::before {
    display: none;
}

.Bottom .BottomTop .BottomCon {
    margin-top: 60px;
    position: relative;
}

.Bottom .BottomTop .BottomCon .item {
    width: 33.33%;
    float: left;
    box-sizing: border-box;
    padding-left: 50px;
}

.Bottom .BottomTop .BottomCon .item .tit {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.Bottom .BottomTop .BottomCon .item .tit img {
    position: absolute;
    left: -50px;
}

.Bottom .BottomTop .BottomCon .item p {
    line-height: 30px;
    font-size: 14px;
}

.Bottom .BottomTop .BottomCon .item p strong {
    font-weight: normal;
}

.Bottom .BottomTop .BottomCon .footTop {
    width: 90px;
    height: 90px;
    text-align: center;
    line-height: 90px;
    background: #0ab455;
    position: absolute;
    right: 0;
    bottom: 0;
}

.Bottom .BottomTop .BottomCon .footTop a {
    display: block;
}

.Bottom .BottomTop {
    padding: 45px 0;
}

.Bottom .Copy {
    font-size: 14px;
    color: #666666;
    text-align: center;
    padding: 25px 10px;
    background: #f7f7f7;
}

.Bottom .Copy a {
    color: #666;
}

@media(max-width:1440px) {
    .Bottom .BottomTop .BottomCon .footTop {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

@media(max-width:1024px) {
    .Bottom .BottomTop .BottomNav .flogo {
        position: static;
        margin-bottom: 20px;
    }
    .Bottom .BottomTop .BottomCon .item {
        width: 100% !important;
        margin-bottom: 20px;
    }
}

@media(max-width:768px) {
    .Bottom .BottomTop {
        padding: 20px 0;
    }
    .Bottom .BottomTop .BottomNav ul li {
        font-size: 14px;
        padding: 0 10px;
    }
    .Bottom .BottomTop .BottomCon {
        margin-top: 30px;
    }
    .Bottom .BottomTop .BottomCon .footTop {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .Bottom .Copy {
        padding: 15px 10px;
    }
}


/* bottom */


/* HomeBan */

.HomeBan {}

.HomeBan .item {
    position: relative;
}
.HomeBan .item .img{
	text-align:center;
}
.HomeBan .item .txt {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.HomeBan .item .txt .txtbox {
    max-width: 1070px;
    width: 90%;
    font-family: syrh;
    color: #fff;
}

.HomeBan .item .txt .txtbox h1 {
    font-size: 70px;
    opacity: 0;
    transform: translateY(130px);
    -webkit-transform: translateY(130px);
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.HomeBan .item .txt .txtbox p {
    font-size: 24px;
    line-height: 40px;
    margin: 10px 0 30px 0;
    opacity: 0;
    transform: translateY(130px);
    -webkit-transform: translateY(130px);
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.HomeBan .item .txt .txtbox .more {
    font-size: 14px;
    color: #fff;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px solid #fff;
    opacity: 0;
    transform: translateY(130px);
    -webkit-transform: translateY(130px);
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.HomeBan .item.active .txt .txtbox h1,
.HomeBan .item.active .txt .txtbox p,
.HomeBan .item.active .txt .txtbox .more {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.HomeBan .item .txt .txtbox1 {
    max-width: 90%;
    margin: 0 auto;
    text-align: left;
}

.HomeBan .item .txt .txtbox1 p {
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
}

.HomeBan .item .txt .txtbox1 .more {
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #fff;
}

.HomeBan .slick-dots {
    bottom: 20px;
}

.HomeBan .slick-dots li {
    width: 22px;
    height: 22px;
    margin: 0;
    position: relative;
    border-radius: 50%;
    border: 1px solid rgba(23, 196, 99, 0);
}

.HomeBan .slick-dots li button {
    width: 8px;
    height: 8px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.HomeBan .slick-dots li.slick-active button {
    background: #fff;
}

.HomeBan .slick-dots li.slick-active {
    border: 1px solid #fff;
}

.slider {
    overflow: hidden;
}

.slick-arrow {
    font-size: 0;
    z-index: 10;
    position: absolute;
    top: 50%;
    margin-top: -22px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: all ease 0.3s;
    color: #000;
}

.slick-arrow:hover {
    color: #fff;
    background-color: #0ab455;
    border: 1px solid #0ab455;
}

.slick-prev:before,
.slick-next:before {
    display: block;
    font-size: 20px;
    font-family: "宋体";
    font-weight: bold;
}

.slick-prev:before {
    content: '<';
}

.slick-next:before {
    content: '>';
}

.slick-prev {
    left: -80px;
}

.slick-next {
    right: -80px;
}

.slider:hover .slick-prev {
    left: 20px;
}

.slider:hover .slick-next {
    right: 20px;
}
@media(min-width:1921px) {
	.HomeBan .item .img img{
	/*transform:scale(1.5);*/
}
}
@media(max-width:1440px) {
    .HomeBan .item .txt .txtbox h1 {
        font-size: 50px;
    }
    .HomeBan .item .txt .txtbox p {
        font-size: 18px;
        line-height: 30px;
    }
}

@media(max-width:1024px) {
    .HomeBan .item .txt .txtbox h1 {
        font-size: 30px;
    }
    .HomeBan .item .txt .txtbox1 .more {
        width: 100px;
        height: 20px;
        line-height: 20px;
    }
}

@media(max-width:768px) {
    .HomeBan .item .txt .txtbox h1 {
        font-size: 20px;
    }
    .HomeBan .item .txt .txtbox p {
        font-size: 12px;
        line-height: 16px;
        margin: 5px 0;
    }
    .HomeBan .slick-dots {
        bottom: 0px;
    }
    .HomeBan .slick-dots li {
        width: 15px;
        height: 15px;
    }
    .HomeBan .slick-dots li.slick-active button {
        height: 4px;
        width: 4px;
    }
}


/* HomeBan */

.HomeCom {
    padding: 100px 0;
}

.HomeTit {
    margin-bottom: 40px;
}

.HomeTit h1 {
    font-size: 34px;
}

.HomeTit p {
    font-size: 16px;
    color: #999999;
    margin-top: 5px;
    font-family: Arial;
}

.HomeMore a {
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px solid #0ab455;
    color: #0ab455;
    font-size: 14px;
}

.HomeMore a span {
    font-family: "宋体";
}

.HomeAbout {
    position: relative;
}

.HomeAbout .auto {
    padding-left: 8.2%;
}

.HomeAbout .HomeAboutBox {
    position: relative;
}

.HomeAbout::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../uploadfiles/image/iaboutbg.png) no-repeat top left;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.HomeAbout .txt {
    position: relative;
    z-index: 999;
    width: 45%;
    max-width: 620px;
    height: 700px;
}

.HomeAbout .txt .dec1 {
    font-size: 26px;
    line-height: 40px;
}

.HomeAbout .txt .dec1 strong {
    color: #0ab455;
}

.HomeAbout .txt .dec2 {
    line-height: 28px;
    margin: 30px 0;
}

.HomeAbout .img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    max-width: 980px;
    z-index: 99;
}

.HomeAbout .img .imgbox {
    padding-top: 700px;
}

.AboutNum ul::after {
    content: '';
    display: block;
    clear: both;
}
.AboutNum ul{
display:flex;
justify-content: center;
}
.AboutNum ul li {
    width: 20%;
    float: left;
    height: 180px;
    /*display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;*/
    text-align: center;
    position: relative;
}

.AboutNum ul li p {
    color: #0ab455;
    font-size: 24px;
    font-weight: bold;
padding-top:13%;
}

.AboutNum ul li p strong {
    font-size: 56px;
}

.AboutNum ul li span {}

.AboutNum ul li::before {
    content: '';
    display: block;
    width: 1px;
    height: 70px;
    background: #f5f5f5;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -35px;
}

.AboutNum ul li:first-child:before {
    display: none;
}

.HomeAbout .AboutNum {
    width: 80%;
    max-width: 1100px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 100;
}
@media ( min-width:1921px) {
	.Header .auto{
		    max-width: 1600px;
    width: 95%;
    margin: 0 auto;
	    padding: 0;
	}
	.HomeBan {
    max-width: 1600px;
    margin: 0 auto;
}
	.HomeAbout .auto {
    max-width: 1600px;
    margin: 0 auto;
	    padding-left:0;
}
}
@media ( max-width:1660px) {
    .HomeAbout .auto {
        padding-left: 6%;
    }
}

@media(max-width:1500px) {
    .HomeAbout .img {
        width: 50%;
    }
    .HomeAbout .img .imgbox {
        padding-top: 600px;
    }
    .HomeAbout .txt {
       /* height: 600px;*/
    }
  .AboutNum ul li {
        height: 120px;
    }
  .AboutNum ul li p{
padding-top:10%;
}
.AboutNum ul li p strong {
    font-size: 38px;
}
}

@media(max-width:1366px) {
    .HomeCom {
        padding: 36px 0;
    }
    .HomeAbout .txt .dec1 {
        font-size: 22px;
    }
    .HomeAbout .txt .dec2 {
        margin: 16px 0;
    }
    .AboutNum ul li {
        height: 120px;
    }
    .AboutNum ul li p strong {
        font-size: 36px;
    }
.AboutNum ul li p {
    padding-top: 7%;
}
}

@media(max-width:1280px) {
    .HomeCom {
        padding: 36px 0;
    }
    .HomeAbout .txt .dec1 {
        font-size: 22px;
    }
    .AboutNum ul li {
        height: 120px;
    }
    .AboutNum ul li p strong {
        font-size: 36px;
    }
}

@media ( max-width:1024px) {
    .HomeCom {
        padding: 50px 0;
    }
    .HomeAbout .auto {
        padding: 0 15px;
    }
    .HomeAbout .txt {
        width: 100%;
        height: auto;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .HomeAbout .txt .dec2 {
        line-height: 22px;
    }
    .HomeAbout .img {
        position: static;
        width: 100%;
        max-width: 100%;
    }
    .HomeAbout .img .imgbox {
        width: 100%;
        padding-top: 71%;
    }
}

@media(max-width:768px) {
    .HomeAbout::before {
        background-size: 200px;
    }
    .HomeCom {
        padding: 30px 0;
    }
    .HomeTit {
        margin-bottom: 20px;
    }
    .HomeTit h1 {
        font-size: 25px;
    }
    .HomeAbout .txt .dec1 {
        font-size: 18px;
        line-height: 30px;
    }
    .HomeAbout .AboutNum {
        width: 100%;
        position: static;
    }
.AboutNum ul{
display:block;
}
    .HomeAbout .AboutNum ul li {
        height: 80px;
    }
    .HomeAbout .AboutNum ul li p {
        font-size: 16px;
    }
    .HomeAbout .AboutNum ul li p strong {
        font-size: 22px;
    }
    .HomeAbout .AboutNum ul li span {
        font-size: 12px;
        display: block;
        height: 34px;
        zoom: 0.9;
    }
}

.item:focus {
    outline: none !important;
}

.HomeSolu {
    background: #f7f7f7;
}

.HomeSolu .HomeSoluBox {
    position: relative;
}

.HomeSolu .HomeSoluBox .slider-for .item {
    background: #fff;
}

.HomeSolu .HomeSoluBox .slider-for .item .img {
    width: 58%;
    padding-top: 580px;
}

.HomeSolu .HomeSoluBox .slider-for .item .txt {
    width: 42%;
    box-sizing: border-box;
    padding: 60px 70px 30px 70px;
}

.HomeSolu .HomeSoluBox .slider-for .item .txt .HomeSoluTit {}

.HomeSolu .HomeSoluBox .slider-for .item .txt .HomeSoluTit p {
    font-size: 14px;
    opacity: 0.7;
    font-family: Arial;
}

.HomeSolu .HomeSoluBox .slider-for .item .txt .HomeSoluTit h1 {
    font-size: 36px;
}

.HomeSolu .HomeSoluBox .slider-for .item .txt .dec {
    color: #999;
    line-height: 30px;
    margin: 50px 0;
}

.HomeSolu .HomeSoluBox .slider-for .item .txt .dec dl {
    margin-left: -2%;
}

.HomeSolu .HomeSoluBox .slider-for .item .txt .dec dl::after {
    content: '';
    display: block;
    clear: both;
}

.HomeSolu .HomeSoluBox .slider-for .item .txt .dec dl dd {
    margin-right: 5%;
    margin-left: 2%;
    margin-bottom: 10px;
    box-sizing: border-box;
    line-height: 38px;
    height: 40px;
    float: left;
    color: #666;
    font-size: 16px;
    font-weight: bold;
    padding-left: 15px;
    position: relative;
}

.HomeSolu .HomeSoluBox .slider-for .item .txt .dec dl dd::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    margin-top: -2.5px;
    border-radius: 50%;
    background: #0ab455;
    position: absolute;
    left: 0;
    top: 50%;
}

.HomeSolu .HomeSoluBox .slider-for .item .txt ul li {
    display: inline-block;
    margin-left: -4px;
    margin-right: 30px;
}

.HomeSolu .HomeSoluBox .slider-nav {
    width: 70%;
    max-width: 1040px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 99;
}

.HomeSolu .HomeSoluBox .slider-nav .slick-track {
    padding-top: 5px;
}

.HomeSolu .HomeSoluBox .slider-nav .item {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    box-sizing: border-box;
    padding-top: 15px;
    position: relative;
    background: rgba(43, 205, 114, 0.9);
}

.HomeSolu .HomeSoluBox .slider-nav .item .ico .img2 {
    display: none;
}

.HomeSolu .HomeSoluBox .slider-nav .item .ico img {
    transition: all .5s;
    -webkit-transition: all .5s;
}

.HomeSolu .HomeSoluBox .slider-nav .item p {
    margin-top: 10px;
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    height: 40px;
    padding: 0 20px;
}

.HomeSolu .HomeSoluBox .slider-nav .item::before {
    content: '';
    display: block;
    width: 0;
    height: 5px;
    background: #2bcd72;
    position: absolute;
    top: -5px;
    left: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.HomeSolu .HomeSoluBox .slider-nav .item.slick-current {
    background: #fff;
}

.HomeSolu .HomeSoluBox .slider-nav .item.slick-current .ico .img1 {
    display: none;
}

.HomeSolu .HomeSoluBox .slider-nav .item.slick-current .ico .img2 {
    display: inline-block;
}

.HomeSolu .HomeSoluBox .slider-nav .item.slick-current p {
    color: #333;
}

.HomeSolu .HomeSoluBox .slider-nav .item.slick-current::before {
    width: 100%;
}


/* .HomeSolu .HomeSoluBox .slider-nav .item:hover .ico img{-webkit-animation: icon-bounce 0.5s alternate;-moz-animation: icon-bounce 0.5s alternate;-o-animation: icon-bounce 0.5s alternate;animation: icon-bounce 0.5s alternate;} */

.HomeSolu .HomeSoluBox .slider-nav .item:hover .ico img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

@media(max-width:1280px) {
    .HomeSolu .HomeSoluBox .slider-for .item .txt .HomeSoluTit h1 {
        font-size: 25px;
    }
    .HomeSolu .HomeSoluBox .slider-for .item .txt .dec {
        margin: 30px 0;
    }
    .HomeSolu .HomeSoluBox .slider-nav {
        width: 90%;
    }
}

@media(max-width:1024px) {
    .HomeSolu .HomeSoluBox .slider-for .item .img {
        width: 100%;
        padding-top: 63%;
    }
    .HomeSolu .HomeSoluBox .slider-for .item .txt {
        width: 100%;
        padding: 20px;
    }
    .HomeSolu .HomeSoluBox .slider-nav {
        position: static;
        margin-bottom: 10px;
    }
    .HomeSolu .HomeSoluBox .slider-nav {
        width: 100%;
    }
    .HomeSolu .HomeSoluBox .slider-nav .item {
        height: 120px;
    }
    .HomeSolu .HomeSoluBox .slider-nav .item p {
        padding: 0 10px;
    }
    .HomeSolu .HomeSoluBox .slider-for .item .txt .dec {
        margin: 10px 0 20px 0;
    }
    .HomeSolu .HomeSoluBox .slider-for .item .txt .HomeSoluTit h1 {
        font-size: 20px;
    }
    .HomeSolu .HomeSoluBox .slider-for .item .txt .dec dl dd {
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
}

.HomePro {
    background: url(../uploadfiles/image/homeprobg.png) no-repeat bottom center;
    background-size: cover;
}

.HomePro .HomeProBox {}

.HomePro .HomeProBox .item {
    width: 33.33%;
    float: left;
    text-align: center;
    box-sizing: border-box;
    padding: 40px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.HomePro .HomeProBox .item .ico {
    height: 80px;
    line-height: 80px;
}

.HomePro .HomeProBox .item .ico img {
    transition: all .5s;
    -webkit-transition: all .5s;
}

.HomePro .HomeProBox .item .ico .img2 {
    display: none;
}

.HomePro .HomeProBox .item .tit {
    font-size: 24px;
    font-weight: bold;
    margin: 25px 0;
}

.HomePro .HomeProBox .item .dec {
    height: 315px;
    overflow: hidden;
    margin-bottom: 30px;
}

.HomePro .HomeProBox .item .dec ul li {
    line-height: 35px;
    font-size: 17px;
    font-weight: bold;
}

.HomePro .HomeProBox .item .HomeMore {
    height: 36px;
}

.HomePro .HomeProBox .item .HomeMore a {
    border-bottom: none;
}

.HomePro .HomeProBox .item .HomeMore span {
    display: none;
}

.HomePro .HomeProBox .item:hover {
    background: #0ab455;
}

.HomePro .HomeProBox .item:hover .ico .img1 {
    display: none;
}

.HomePro .HomeProBox .item:hover .ico .img2 {
    display: inline-block;
}

.HomePro .HomeProBox .item:hover .dec {
    color: #fff;
}

.HomePro .HomeProBox .item:hover .HomeMore img {
    display: none;
}

.HomePro .HomeProBox .item:hover .HomeMore a {
    border-bottom: 1px solid #fff;
}

.HomePro .HomeProBox .item:hover .HomeMore a span {
    display: inline-block;
    color: #fff;
}

.HomePro .HomeProBox .item:hover .tit {
    color: #fff;
}


/* .HomePro .HomeProBox .item:hover .ico img{-webkit-animation: icon-bounce 0.5s alternate;-moz-animation: icon-bounce 0.5s alternate;-o-animation: icon-bounce 0.5s alternate;animation: icon-bounce 0.5s alternate;} */

.HomePro .HomeProBox .item:hover .ico img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.HomePro .HomeProBox .item.on {
    background: #0ab455;
}

.HomePro .HomeProBox .item.on .ico .img1 {
    display: none;
}

.HomePro .HomeProBox .item.on .ico .img2 {
    display: inline-block;
}

.HomePro .HomeProBox .item.on .dec {
    color: #fff;
}

.HomePro .HomeProBox .item.on .HomeMore img {
    display: none;
}

.HomePro .HomeProBox .item.on .HomeMore a {
    border-bottom: 1px solid #fff;
}

.HomePro .HomeProBox .item.on .HomeMore a span {
    display: inline-block;
    color: #fff;
}

.HomePro .HomeProBox .item.on .tit {
    color: #fff;
}


/* .HomePro .HomeProBox .item.on .ico img{-webkit-animation: icon-bounce 0.5s alternate;-moz-animation: icon-bounce 0.5s alternate;-o-animation: icon-bounce 0.5s alternate;animation: icon-bounce 0.5s alternate;} */

.HomePro .HomeProBox .item.on .ico img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

@media(max-width:1024px) {
    .HomePro .HomeProBox .item .ico img {
        max-width: 59px;
        max-height: 58px;
    }
    .HomePro .HomeProBox .item .tit {
        font-size: 20px;
    }
}

@media(max-width:768px) {
    .HomePro .HomeProBox .item {
        width: 100%;
        margin-bottom: 10px;
        padding: 20px;
    }
    .HomePro .HomeProBox .item .dec ul li {
        line-height: 25px;
    }
    .HomePro .HomeProBox .item .dec {
        height: auto;
    }
}

.HomeNews .HomeNewsNav ul::after {
    content: '';
    display: block;
    clear: both;
}

.HomeNews .HomeNewsNav ul li {
    width: 118px;
    height: 45px;
    line-height: 45px;
    float: left;
    text-align: center;
}

.HomeNews .HomeNewsNav ul li a {
    display: block;
}

.HomeNews .HomeNewsNav ul li.on a {
    color: #fff;
    background: #0ab455;
}

.HomeNews .HomeNewsBox .HomeNewsSlider {
    width: 45%;
}

.HomeNews .HomeNewsBox .HomeNewsSlider .item {
    background: #fff;
    padding-bottom: 30px;
    padding-left: 5px;
    padding-right: 5px;
}

.HomeNews .HomeNewsBox .HomeNewsSlider .item a {
    display: block;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f6f6f6;
}

.HomeNews .HomeNewsBox .HomeNewsSlider .item .img {
    padding-top: 360px;
}

.HomeNews .HomeNewsBox .HomeNewsSlider .item .txt {
    padding: 30px;
    padding-left: 120px;
    position: relative;
}

.HomeNews .HomeNewsBox .HomeNewsSlider .item .txt .date {
    width: 70px;
    color: #0ab455;
    position: absolute;
    left: 30px;
    top: 30px;
    text-align: center;
}

.HomeNews .HomeNewsBox .HomeNewsSlider .item .txt .date p {
    font-size: 22px;
    font-weight: bold;
}

.HomeNews .HomeNewsBox .HomeNewsSlider .item .txt .date span {
    font-weight: 14px;
}

.HomeNews .HomeNewsBox .HomeNewsSlider .item .txt .txtbox {}

.HomeNews .HomeNewsBox .HomeNewsSlider .item .txt .txtbox h1 {
    font-size: 20px;
}

.HomeNews .HomeNewsBox .HomeNewsSlider .item .txt .txtbox p {
    color: #999999;
    font-size: 14px;
    line-height: 20px;
    margin: 10px 0 20px 0;
}

.HomeNews .HomeNewsBox .HomeNewsSlider .item .txt .txtbox .HomeMore span {
    font-size: 14px;
    color: #0ab455;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px solid #0ab455;
}

.HomeNews .HomeNewsBox .HomeNewsSlider .owl-prev,
.HomeNews .HomeNewsBox .HomeNewsSlider .owl-next {
    font-family: "宋体";
    position: absolute;
    bottom: 55px;
}

.HomeNews .HomeNewsBox .HomeNewsSlider .owl-prev {
    right: 80px;
}

.HomeNews .HomeNewsBox .HomeNewsSlider .owl-next {
    right: 30px;
}

.HomeNews .HomeNewsBox .HomeNewsSlider .owl-prev:hover,
.HomeNews .HomeNewsBox .HomeNewsSlider .owl-next:hover {
    color: #0ab455;
}

.HomeNews .HomeNewsBox .HomeNewsList {
    width: 52.8%;
}

.HomeNews .HomeNewsBox .HomeNewsList .item {
    padding-left: 110px;
    padding-right: 125px;
    position: relative;
    border: 1px solid #f6f6f6;
    margin-top: 34px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.HomeNews .HomeNewsBox .HomeNewsList .item .date {
    width: 110px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    color: #0ab455;
}

.HomeNews .HomeNewsBox .HomeNewsList .item .date p {
    font-size: 22px;
    font-weight: bold;
}

.HomeNews .HomeNewsBox .HomeNewsList .item .date span {
    font-size: 14px;
}

.HomeNews .HomeNewsBox .HomeNewsList .item .txt {
    padding: 40px 30px;
    border-left: 1px solid #f6f6f6;
    border-right: 1px solid #f6f6f6;
}

.HomeNews .HomeNewsBox .HomeNewsList .item .txt h1 {
    font-size: 20px;
}

.HomeNews .HomeNewsBox .HomeNewsList .item .txt p {
    font-size: 14px;
    line-height: 20px;
    color: #999;
    margin-top: 10px;
}

.HomeNews .HomeNewsBox .HomeNewsList .item .HomeMore {
    width: 125px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
}

.HomeNews .HomeNewsBox .HomeNewsList .item .HomeMore span {
    display: inline-block;
    font-size: 14px;
    color: #0ab455;
    padding-bottom: 3px;
    border-bottom: 1px solid #0ab455;
}

.HomeNews .HomeNewsBox .HomeNewsList .item:first-child {
    margin-top: 0;
}

.HomeNews .HomeNewsBox .HomeNewsList .item:hover .HomeMore {
    background: #0ab455;
    color: #fff;
}

.HomeNews .HomeNewsBox .HomeNewsList .item:hover .HomeMore span {
    color: #fff;
    border-bottom: 1px solid #fff;
}

@media(max-width:1024px) {
    .HomeNews .HomeNewsBox .HomeNewsSlider {
        width: 100%;
    }
    .HomeNews .HomeNewsBox .HomeNewsSlider .item .img {
        padding-top: 50%;
    }
    .HomeNews .HomeNewsBox .HomeNewsList {
        width: 100%;
    }
}

@media(max-width:768px) {
    .HomeNews .HomeNewsBox .HomeNewsSlider .item {
        padding-left: 0;
    }
    .HomeNews .HomeNewsNav ul {
        width: 100%;
    }
    .HomeNews .HomeNewsNav ul li {
        width: 100px;
        height: 30px;
        line-height: 30px;
    }
    .HomeNews .HomeNewsBox .HomeNewsSlider .item .txt {
        padding: 20px 10px;
        padding-left: 70px;
    }
    .HomeNews .HomeNewsBox .HomeNewsSlider .item .txt .date {
        width: 60px;
        left: 0;
    }
    .HomeNews .HomeNewsBox .HomeNewsSlider .item .txt .date p {
        font-size: 16px;
    }
    .HomeNews .HomeNewsBox .HomeNewsSlider .item .txt .date span {
        font-size: 12px;
    }
    .HomeNews .HomeNewsBox .HomeNewsSlider .item .txt .txtbox h1 {
        font-size: 16px;
    }
    .HomeNews .HomeNewsBox .HomeNewsSlider .item .txt .txtbox p {
        margin: 10px 0;
    }
    .HomeNews .HomeNewsBox .HomeNewsSlider .owl-prev,
    .HomeNews .HomeNewsBox .HomeNewsSlider .owl-next {
        bottom: 50px;
    }
    .HomeNews .HomeNewsBox .HomeNewsList .item {
        padding-left: 60px;
        padding-right: 40px;
        margin-top: 10px;
    }
    .HomeNews .HomeNewsBox .HomeNewsList .item .date {
        width: 60px;
    }
    .HomeNews .HomeNewsBox .HomeNewsList .item .date p {
        font-size: 16px;
    }
    .HomeNews .HomeNewsBox .HomeNewsList .item .date span {
        font-size: 12px;
    }
    .HomeNews .HomeNewsBox .HomeNewsList .item .txt {
        padding: 20px 10px;
    }
    .HomeNews .HomeNewsBox .HomeNewsList .item .txt h1 {
        font-size: 16px;
    }
    .HomeNews .HomeNewsBox .HomeNewsList .item .HomeMore {
        width: 40px;
        font-size: 12px;
    }
    .HomeNews .HomeNewsBox .HomeNewsList .item .HomeMore span {
        font-size: 12px;
        padding: 0 5px;
        border-bottom: none;
    }
}


/* 联系CET */

.nBan {
    position: relative;
}

.nBan .img {
    padding-top: 340px;
}

.nBan .txt {
    position: absolute;
    width: 100%;
    bottom: 15%;
    color: #fff;
}

.nBan .txt strong {
    font-size: 48px;
    text-transform: uppercase;
    opacity: 0.2;
    font-family: Arial;
}

.nBan .txt h1 {
    font-size: 30px;
}

.nNav {
    text-align: center !important;
    margin-top: 28px;
}

.nNav ul li {
    display: inline-block;
    margin-left: -4px;
    margin: 0 5px;
    width: 200px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    margin-bottom: 10px;
}

.nNav ul li a {
    display: block;
    font-size: 18px;
    color: #666;
    background: #f8f8f8;
}

.nNav ul li.on a {
    background: #0ab455;
    color: #fff;
    font-weight: bold;
}

.nNav ul li.onli a {
    background: #0ab455;
    color: #fff;
    font-weight: bold;
}

.nNav ul li:hover a {
    background: #0ab455;
    color: #fff;
    font-weight: bold;
}

.nTit {
    margin-bottom: 50px;
}

.nTit span {
   /* text-transform: uppercase;*/
    opacity: 0.4;
}

.nTit h1 {
    font-size: 40px;
    margin-top: 5px;
}

.nTit b {
    display: block;
    width: 60px;
    height: 1px;
    background: #0ab455;
    margin-top: 35px;
}

.Contact {
    margin-top: 70px;
}

.Contact .Part1 {
    padding: 60px 80px;
    background: #f8f8f8;
}

.Contact .Part1 .ContactBox {
    width: 30%;
    max-width: 430px;
}

.Contact .Part1 .ContactBox .con {}

.Contact .Part1 .ContactBox .con .box {
    margin-bottom: 30px;
}

.Contact .Part1 .ContactBox .con .box h1 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 10px;
}

.Contact .Part1 .ContactBox .con .box p {
    line-height: 30px;
    font-size: 14px;
    color: #666;
}

.Contact .Part1 .ContactBox .erBox {
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.Contact .Part1 .ContactBox .erBox ul li {
    display: inline-block;
    margin-left: -4px;
    margin-right: 30px;
    position: relative;
}

.Contact .Part1 .ContactBox .erBox ul li .ico {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background: #aaaaaa;
}

.Contact .Part1 .ContactBox .erBox ul li .tcBox {
    position: absolute;
    top: 70px;
    left: 50%;
    margin-left: -60px;
    width: 100px;
    padding: 10px;
    background: #fff;
    display: none;
    z-index: 999;
}

.Contact .Part1 .ContactBox .erBox ul li .tcBox::before {
    content: "";
    display: block;
    border-bottom: 5px solid #fff;
    border-top: 5px solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -5px;
}

.Contact .Part1 .ContactBox .erBox ul li:hover .ico {
    background: #0ab455;
}

.Contact .Part1 .ContactBox .erBox ul li:hover .tcBox {
    display: block;
}

.Contact .Part1 .Message {
    width: 68%;
}

.Contact .Part1 .Message form {
    width: 100%;
}

.Contact .Part1 .Message form .formList {
    margin-left: -2%;
    margin-bottom: 20px;
}

.Contact .Part1 .Message form .formList::after {
    content: '';
    display: block;
    clear: both;
}

.Contact .Part1 .Message form .formList .Input {
    width: 48%;
    margin-left: 2%;
    float: left;
    box-sizing: border-box;
    height: 73px;
    line-height: 73px;
    border: 1px solid #e5e5e5;
    background: #fff;
    padding: 0 20px 0 30px;
    position: relative;
}

.Contact .Part1 .Message form .formList .Input span {
    font-size: 14px;
    color: #0ab455;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.Contact .Part1 .Message form .formList .Input input {
    font-size: 16px;
    width: 100%;
}
.Contact .Part1 .Message form .formList .Input2{margin-top:2%}
.Contact .Part1 .Message form .formList .Input2 input{width:50%}
.Contact .Part1 .Message form .formList .Input2 img{height:60px;margin-top: -6px;}
.Contact .Part1 .Message form .Textarea {
    padding: 20px 20px 20px 30px;
    position: relative;
    background: #fff;
    border: 1px solid #e5e5e5;
}

.Contact .Part1 .Message form .Textarea span {
    font-size: 14px;
    color: #0ab455;
    position: absolute;
    top: 22px;
    left: 20px;
}

.Contact .Part1 .Message form .Textarea textarea {
    height: 198px;
    font-size: 16px;
    width: 100%;
}

.Contact .Part1 .Message form .FormBtn {
    margin-top: 30px;
}

.Contact .Part1 .Message form .FormBtn button {
    height: 75px;
    width: 100%;
    background: #0ab455;
    color: #fff;
    font-size: 16px;
}

.Contact .Part2 {
    margin: 70px 0 0 0;
    margin-left: -2.5%;
}

.Contact .Part2 .item {
    width: 30.83%;
    margin-left: 2.5%;
    float: left;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
}

.Contact .Part2 .item .img {
    padding-top: 59%;
}

.Contact .Part2 .item .img span {
    transition: all .5s;
    -webkit-transition: all .5s;
}

.Contact .Part2 .item .txt {
    padding: 45px 37px;
}

.Contact .Part2 .item .txt h1 {
    font-size: 24px;
    font-weight: normal;
}

.Contact .Part2 .item .txt b {
    display: block;
    width: 40px;
    height: 1px;
    background: #0ab455;
    margin: 20px 0;
}

.Contact .Part2 .item .txt .dec {
    color: #666;
    line-height: 30px;
    height: 90px;
}

.Contact .Part2 .item .txt .mapbtn {
    margin-top: 25px;
}

.Contact .Part2 .item .txt .mapbtn a {
    display: block;
    width: 100px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #e5e5e5;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.Contact .Part2 .item .txt .mapbtn a img {
    position: relative;
    margin-right: 5px;
}

.Contact .Part2 .item:hover .img span {
    transform: scale(10.5);
    -webkit-transform: scale(1.05);
}

.Download {
    padding: 70px 0;
}

.Download .DownloadBox {
    margin-left: -5%;
}

.Download .DownloadBox .item {
    width: 45%;
    margin-left: 5%;
    float: left;
    box-sizing: border-box;
    padding-right: 120px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.Download .DownloadBox .item .ico {
    width: 120px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.Download .DownloadBox .item .txt {
    padding: 35px 45px;
}

.Download .DownloadBox .item .txt span {
    color: #999;
}

.Download .DownloadBox .item .txt h1 {
    font-size: 20px;
    margin-top: 10px;
}

.Download .DownloadBox .item::before {
    content: '';
    display: block;
    width: 5px;
    height: 100%;
    background: #0ab455;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
}

.Download .DownloadBox .item:hover::before {
    transform: rotateX(0);
    -webkit-transform: rotateX(0);
}

.Download .DownloadBox .item .ico::before {
    content: '';
    display: block;
    width: 1px;
    height: 66px;
    background: #eeeeee;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -33px;
}

@media(max-width:1600px) {
    .nNav ul li {
        width: 180px;
    }
    .nNav ul li a {
        font-size: 16px;
    }
}

@media(max-width:1440px) {
    .nNav ul li {
        width: 160px;
        line-height: 40px;
        height: 40px;
        margin: 0 3px;
        maRGIN-BOTTOM: 5px;
    }
    .nNav ul li a {
        font-size: 15px;
    }
    .Contact .Part2 .item .txt {
        padding: 30px;
    }
}

@media(max-width:1280px) {
    .nTit {
        margin-bottom: 30px;
    }
    .nTit h1 {
        font-size: 30px;
    }
    .nTit b {
        width: 40px;
        margin-top: 20px;
    }
    .Contact .Part1 {
        padding: 50px;
    }
    .Contact .Part1 .Message form .formList .Input {
        height: 60px;
        line-height: 60px;
    }
    .Contact .Part1 .Message form .FormBtn button {
        height: 60px;
    }
    .Contact .Part1 .Message form .Textarea textarea {
        height: 180px;
    }
    .Contact .Part1 .ContactBox .erBox ul li .ico {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    .Contact .Part2 .item .txt {
        padding: 25px 20px;
    }
    .Contact .Part2 .item .txt {
        font-size: 18px;
    }
    .Contact .Part2 .item .txt .dec {
        font-size: 14px;
        line-height: 28px;
        height: 84px;
    }
}

@media(max-width:1024px) {
    .nTit h1 {
        font-size: 22px;
    }
    .Contact .Part1 .ContactBox {
        width: 100%;
    }
    .Contact .Part1 .Message {
        width: 100%;
        margin-top: 30px;
    }
    .nBan .img {
        padding-top: 200px;
    }
    .nBan .txt strong {
        font-size: 25px;
    }
    .nBan .txt h1 {
        font-size: 20px;
    }
    .Contact {
        margin-top: 30px;
    }
}

@media(max-width:768px) {
    .nNav ul::after {
        content: '';
        display: block;
        clear: both;
    }
    .nNav ul {
        margin-left: -1%;
    }
    .nNav ul li {
        width: 32.33%;
        margin-left: 1%;
        float: left;
        height: 35px;
        line-height: 35px;
        margin-right: 0;
        margin-bottom: 5px;
    }
    .Contact .Part1 .Message form .formList .Input2 img{height:30px;margin-top:-4px;}
    .nNav ul li a {
        font-size: 14px;
    }
    .nNav {
        margin-bottom: 30px;
    }
    .Contact .Part1 {
        padding: 20px;
    }
    .Contact .Part1 .ContactBox .con .box h1 {
        font-size: 18px;
    }
    .Contact .Part1 .ContactBox .erBox ul li {
        margin-right: 20px;
    }
    .Contact .Part1 .ContactBox .erBox ul li .ico {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .Contact .Part1 .ContactBox .erBox ul li .ico img {
        height: 15px;
    }
    .Contact .Part1 .Message form .formList {
        margin-bottom: 0;
    }
    .Contact .Part1 .Message form .formList .Input {
        width: 98%;
        height: 40px;
        line-height: 40px;
        margin-bottom: 10px;
    }
    .Contact .Part1 .Message form .formList .Input input {
        font-size: 14px;
    }
    .Contact .Part1 .Message form .Textarea textarea {
        height: 120px;
        font-size: 14px;
    }
    .Contact .Part1 .Message form .FormBtn button {
        height: 40px;
    }
    .Contact .Part2 .item {
        width: 97.5%;
        margin-bottom: 20px;
    }
    .Contact .Part2 .item .txt {
        padding: 20px;
    }
    .Contact .Part2 .item .txt h1 {
        font-size: 20px;
    }
    .Contact .Part2 .item .txt .dec {
        height: auto;
    }
    .Download {
        padding: 50px 0;
    }
    .Download .DownloadBox .item {
        width: 95%;
        padding-right: 50px;
    }
    .Download .DownloadBox .item .ico {
        width: 50px;
    }
    .Download .DownloadBox .item .txt {
        padding: 20px;
    }
    .Download .DownloadBox .item .txt h1 {
        font-size: 16px;
    }
}

@media(max-width:500px) {
    .nNav ul li {
        width: 49%;
    }
}


/* 右侧悬浮框 */

.Float {
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 9999;
}

.Float ul li {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: rgba(0, 0, 0, 0.4);
    margin-bottom: 1px;
    text-align: center;
    position: relative;
}
.Float ul li a.shfwbtn{color:#fff;font-size:14px;line-height:16px;display:block;padding:8px;}

.Float ul li .tcBox {
    position: absolute;
    left: -60px;
    top: 70%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: all .5s;
    -webkit-transition: all .5s;
    visibility: hidden;
    opacity: 0;
}

.Float ul li .tcBox.tctel {
    width: 150px;
    left: -160px;
    height: 100%;
    background: #0ab455;
    color: #fff;
}

.Float ul li .tcBox::before {
    content: '';
    display: block;
    border-left: 5px solid #0ab455;
    border-right: 5px solid transparent;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    right: -10px;
    margin-top: -5px;
    top: 50%;
}

.Float ul li .tcBox.tcEr {
    width: 100px;
    padding: 5px;
    background: #0ab455;
    left: -120px;
}

.Float ul li:hover {
    background: #0ab455;
}

.Float ul li:hover .tcBox {
    top: 50%;
    visibility: visible;
    opacity: 1;
}

.Float ul li.goTop {
    visibility: hidden;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    opacity: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.Float ul li.goTop.on {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

@media(max-width:768px) {
    .Float ul li {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}


/* 新闻中心 */

.News {
    margin-top: 70px;
}

.News .Part1 {
    margin-bottom: 60px;
}

.News .Part1 .slick-list {
    margin-left: -35px;
}

.News .Part1 .item {
    margin-left: 35px;
    padding: 10px;
}

.News .Part1 .item a {
    display: block;
}

.News .Part1 .item .img {
    padding-top: 59%;
}

.News .Part1 .item .img span {
    transition: all .5s;
    -webkit-transition: all .5s;
}

.News .Part1 .item .txt {
    padding: 0 30px 30px 30px;
}

.News .Part1 .item .txt .date {
    width: 170px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background: #0ab455;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    z-index: 99;
    margin-top: -28px;
}

.News .Part1 .item .txt h1 {
    font-size: 20px;
    margin-top: 30px;
}

.News .Part1 .item .txt .dec {
    font-size: 14px;
    line-height: 20px;
    color: #999;
    margin: 20px 0;
}

.News .Part1 .item .txt .HomeMore span {
    font-size: 14px;
    color: #0ab455;
}

.News .Part1 .item .txt .HomeMore span b {
    font-family: "宋体";
}

.News .Part1 .item:hover .img span {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.News .Part1 .item:hover a {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.News .Part2 {
    padding: 80px 0;
    background: #f8f8f8;
}

.News .Part2 .PartBox {
    margin-left: -5%;
}

.News .Part2 .PartBox .item {
    padding: 30px 0;
    padding-right: 110px;
    position: relative;
    width: 45%;
    margin-left: 5%;
    float: left;
    box-sizing: border-box;
    border-bottom: 1px solid #e5e5e5;
}

.News .Part2 .PartBox .item:first-child,
.News .Part2 .PartBox .item:nth-child(2) {
    border-top: 1px solid #e5e5e5;
}

.News .Part2 .PartBox .item .date {
    width: 110px;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.News .Part2 .PartBox .item .date .more {
    transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    transition: all .5s;
    -webkit-transition: all .5s;
    opacity: 0;
    overflow: hidden;
}

.News .Part2 .PartBox .item .date .datebox p {
    font-size: 25px;
    font-weight: bold;
    color: #999;
}

.News .Part2 .PartBox .item .date .datebox span {
    font-size: 14px;
    color: #999;
}

.News .Part2 .PartBox .item .txt {
    padding-right: 50px;
    border-right: 1px solid #e5e5e5;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.News .Part2 .PartBox .item .txt p {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.News .Part2 .PartBox .item .txt span {
    font-weight: 14px;
    color: #999;
	height:21px;
}

.News .Part2 .PartBox .item:hover {
    background: #0ab455;
}

.News .Part2 .PartBox .item:hover .txt {
    padding-left: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.News .Part2 .PartBox .item:hover .txt p {
    color: #fff;
}

.News .Part2 .PartBox .item:hover .txt span {
    color: #fff;
    opacity: 0.6;
}

.News .Part2 .PartBox .item:hover .date .more {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    opacity: 1;
}

.News .Part2 .PartBox .item:hover .date .datebox {
    display: none;
}

@media(max-width:1280px) {
    .News .Part2 .PartBox .item .txt {
        padding-right: 30px;
    }
    .News .Part2 .PartBox .item .txt p {
        font-size: 18px;
    }
    .News .Part2 .PartBox .item .txt span {
        font-size: 14px;
    }
    .News .Part1 .item .txt .date {
        height: 40px;
        line-height: 40px;
        margin-top: -20px;
        width: 150px;
        font-size: 16px;
    }
    .News .Part1 .item .txt h1 {
        font-size: 18px;
        margin-top: 20px;
    }
}

@media(max-width:1024px) {
    .News .Part1 .item .txt {
        padding: 0 20px 20px 20px;
    }
    .News .Part1 .item {
        margin-left: 10px;
    }
    .News .Part1 .slick-list {
        margin-left: -10px;
    }
    .News {
        margin-top: 30px;
    }
}

@media(max-width:768px) {
    .News .Part1 .item .txt .date {
        width: 120px;
        height: 35px;
        line-height: 35px;
        font-size: 15px;
        margin-top: -17px;
    }
    .News .Part1 .item .txt h1 {
        font-size: 16px;
        margin-top: 10px;
    }
    .News .Part1 .item .txt .dec {
        margin: 10px 0;
    }
    .News .Part1 {
        margin-bottom: 20px;
    }
    .News .Part2 {
        padding: 30px 0;
    }
    .News .Part2 .PartBox .item {
        width: 95%;
        padding: 20px 0;
        padding-right: 70px;
    }
    .News .Part2 .PartBox .item:nth-child(2) {
        border-top: none;
    }
    .News .Part2 .PartBox .item .date {
        width: 60px;
    }
    .News .Part2 .PartBox .item .date .datebox p {
        font-size: 17px;
    }
    .News .Part2 .PartBox .item .txt {
        padding-right: 10px;
    }
    .News .Part2 .PartBox .item .txt p {
        font-size: 16px;
    }
}


/* 新闻详情 */

.Local .LocalBox {
    border-bottom: 1px solid #eeeeee;
    line-height: 60px;
    font-size: 14px;
    color: #999;
}

.Local .LocalBox a {
    color: #999;
}

.Local .LocalBox a:hover {
    color: #0ab455;
}

.NewsInfo .NewsInfoBox {
    padding: 70px 0;
    padding-right: 300px;
    position: relative;
}

.NewsInfo .NewsInfoBox .NewsInfoTit {
    margin-bottom: 40px;
    text-align: right;
}

.NewsInfo .NewsInfoBox .NewsInfoTit h1 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.NewsInfo .NewsInfoBox .NewsInfoTit span {
    font-size: 14px;
    color: #999;
}

.NewsInfo .NewsInfoBox .NewsInfoCon {
    line-height: 30px;
    color: #666;
}

.NewsInfo .NewsInfoBox .NewsInfoCon p {
    width: 100%;
}

.NewsInfo .NewsInfoBox .NewsInfoCon p video {
    width: 100%;
}

.NewsInfo .NewsInfoBox .NewsInfoCon h1 {
    font-size: 18px;
    color: #333;
}

.NewsInfo .NewsInfoBox .otherL {
    position: absolute;
    right: 0;
    top: 70px;
}

.NewsInfo .NewsInfoBox .otherL ul li {
    margin-bottom: 30px;
}

.NewsInfo .NewsInfoBox .otherL ul li .ico {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: #f9f9f9;
    text-align: center;
    display: inline-block;
}

.NewsInfo .NewsInfoBox .otherL ul li:hover>a>.ico {
    background: #0ab455;
}

.NewsInfo .NewsInfoBox .otherL ul li:hover>a>.ico .img1 {
    display: none;
}

.NewsInfo .NewsInfoBox .otherL ul li:hover>a>.ico .img2 {
    display: inline-block;
}

.NewsInfo .NewsInfoBox .otherL ul li .ico .img2 {
    display: none;
}

.NewsInfo .NewsInfoBox .otherL ul li span {
    font-weight: bold;
    display: inline-block;
    margin-left: 10px;
}

.NewsInfo .NewsInfoBox .otherL ul li dl dd {
    margin-top: 20px;
    position: relative;
}

.NewsInfo .NewsInfoBox .otherL ul li dl dd .ico {
    background: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.NewsInfo .NewsInfoBox .otherL ul li dl dd .txEr {
    position: absolute;
    left: 40px;
    top: 0;
    width: 100px;
    display: none;
}

.NewsInfo .NewsInfoBox .otherL ul li dl dd:hover .txEr {
    display: block;
}

.NewsInfo .NewsInfoBox .otherL ul li dl dd:hover .ico .img1 {
    display: none;
}

.NewsInfo .NewsInfoBox .otherL ul li dl dd:hover .ico .img2 {
    display: inline-block;
}

@media(max-width:1440px) {
    .NewsInfo .NewsInfoBox {
        padding-right: 200px;
    }
    .NewsInfo .NewsInfoBox .NewsInfoTit h1 {
        font-size: 28px;
    }
}

@media(max-width:1024px) {
    .NewsInfo .NewsInfoBox .NewsInfoTit {
        margin-bottom: 30px;
    }
    .NewsInfo .NewsInfoBox .NewsInfoTit h1 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .NewsInfo .NewsInfoBox .NewsInfoCon h1 {
        font-size: 16px;
    }
}

@media(max-width:768px) {
    .NewsInfo .NewsInfoBox {
        padding-right: 0;
        padding: 30px 0;
    }
    .NewsInfo .NewsInfoBox .NewsInfoTit h1 {
        font-size: 18px;
    }
    .NewsInfo .NewsInfoBox .NewsInfoCon {
        line-height: 25px;
    }
    .NewsInfo .NewsInfoBox .otherL {
        position: static;
        width: 100%;
        margin-top: 30px;
    }
    .NewsInfo .NewsInfoBox .otherL ul li {
        display: inline-block;
        width: 50%;
        margin-left: -4px;
    }
    .NewsInfo .NewsInfoBox .otherL ul li dl dd {
        display: inline-block;
    }
    .NewsInfo .NewsInfoBox .otherL ul li dl dd:hover .txEr {
        left: 0;
        top: 40px;
    }
}


/* 加入CET */

.nCom {
    padding: 80px 0;
}

.nTit2 {
    margin-bottom: 40px;
}

.nTit2 h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.nTit2 span {
    opacity: 0.4;
    font-family: Arial;
}

.nTit2 p b {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: #0ab455;
    opacity: 1;
    position: relative;
    top: -5px;
}


/* .Join .Part1 .PartTit{margin-bottom:40px;} */

.Join .Part1 .PartBox {
    margin-left: -2.5%;
}

.Join .Part1 .PartBox .item {
    width: 30.83%;
    margin-left: 2.5%;
    float: left;
    position: relative;
}

.Join .Part1 .PartBox .item .img {
    padding-top: 72%;
}

.Join .Part1 .PartBox .item .img span {
    transition: all .5s;
    -webkit-transition: all .5s;
}

.Join .Part1 .PartBox .item .img::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../uploadfiles/image/txtbg.png) no-repeat bottom center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.Join .Part1 .PartBox .item .txt {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 35px;
    box-sizing: border-box;
    padding: 0 40px;
    z-index: 99;
}

.Join .Part1 .PartBox .item .txt b {
    display: block;
    width: 35px;
    height: 2px;
    background: #0ab455;
    margin-bottom: 20px;
}

.Join .Part1 .PartBox .item .txt p {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    line-height: 36px;
    height: 72px;
}

.Join .Part1 .PartBox .item:hover .img span {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.Join .Part2 {
    padding-bottom: 80px;
}

.Join .Part2 .item {
    width: 49.5%;
    float: left;
    position: relative;
}

.Join .Part2 .fr {
    float: right;
}

.Join .Part2 .item .img {
    padding-top: 64%;
}

.Join .Part2 .item .txt {
    position: absolute;
    width: 280px;
    height: 280px;
    color: #fff;
    text-align: center;
    top: 50%;
    left: 50%;
    margin: -140px 0 0 -140px;
    background: url(../images/join_bg.png);
    border-radius: 50%;
    z-index: 99;
}
.Join .Part2 .item .txt>a{
display: block;
    margin-top: 28%;
}
.Join .Part2 .item .txt p {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff
}

.Join .Part2 .item .txt span {
    color: #a8e1bc
}

.Join .Part2 .item .txt .more {
    color: #fff;
    font-size: 14px;
    border-bottom: 1px solid #fff;
    margin-top: 20px;
    display: inline-block;
}

.Join .Part2 .item .ico {
    width: 120px;
    height: 120px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    line-height: 120px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    transition: all .5s;
    -webkit-transition: all .5s;
    transform: scale(0);
    -webkit-transform: scale(0);
}

.Join .Part2 .item:hover .ico {
    transform: scale(1);
    -webkit-transform: scale(1);
}

@media(max-width:1440px) {
    .Join .Part2 .item .txt {
        width: 250px;
        height: 250px;
        margin: -118px 0 0 -131px;
    }
    .Join .Part1 .PartBox .item .txt p {
        font-size: 18px;
        line-height: 28px;
        height: 56px;
    }
    .Join .Part2 .item .txt p {
        font-size: 35px;
    }
    .nTit2 h1 {
        font-size: 35px;
    }
    .Join .Part1 .PartBox .item .txt {
        padding: 0 20px;
    }
}

@media(max-width:1280px) {
    .Join .Part2 .item .txt {
        width: 200px;
        height: 200px;
        margin: -104px 0 0 -98px;
    }
    .Join .Part1 .PartBox .item .txt p {
        font-size: 16px;
    }
    .nTit2 h1 {
        font-size: 30px;
    }
    .Join .Part2 .item .txt p {
        font-size: 30px;
    }
}

@media(max-width:1024px) {
    .nCom {
        padding: 30px 0;
    }
}

@media(max-width:768px) {
    .Join .Part1 .PartBox .item {
        width: 97.5%;
        margin-bottom: 20px;
    }
    .nTit2 h1 {
        font-size: 22px;
    }
    .Join .Part1 .PartTit {
        margin-bottom: 20px;
    }
    .Join .Part2 .item {
        width: 100%;
        margin-bottom: 20px;
    }
    .Join .Part2 .item .txt p {
        font-size: 20px;
    }
    .Join .Part2 {
        padding-bottom: 30px;
    }
}


/*社会招聘*/

.SocialRe {
    background: #f9f9f9;
    margin-top: 10px;
    padding: 50px 0;
}

.SocialRe .Scon {
    padding-bottom: 30px;
    font-family: "黑体" !important;
}

.SocialRe .Scon p {
    margin-top: 15px;
    text-indent: 2em;
}

.SocialRe .Scon p span {
    margin-top: 15px;
    color: #666;
    line-height: 30px;
    font-size: 14px;
}

.SocialRe .Scon .Scon_tit {
    font-size: 18px;
    color: #27ba94;
    text-align: center;
    font-weight: bold;
    padding: 8px 0;
}

.SocialRe .qr_code {}

.SocialRe .qr_code .img {
    width: 345px;
    height: 345px;
    background: #fff;
    padding: 7px;
    margin: 0 auto;
}

.SocialRe .qr_code .img img {
    width: 345px;
    height: 345px;
}

.SocialRe .qr_code .txt {
    text-align: center;
    color: #333;
    padding-top: 10px;
}

.SocialRe .qr_code .txt span {
    font-size: 22px;
    font-weight: bold;
}


/* 客户案例 */

.Case {
    margin-top: 70px;
}

.Case .CaseBox {
    margin-left: -2.5%;
}

.Case .CaseBox .item {
    width: 30.83%;
    margin-left: 2.5%;
    float: left;
    margin-bottom: 60px;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

.Case .CaseBox .item .img {
    padding-top: 59%;
}

.Case .CaseBox .item .img span {
    transition: all .5s;
    -webkit-transition: all .5s;
}

.Case .CaseBox .item .txt {
    padding: 0 35px;
}

.Case .CaseBox .item .txt .tit {
    font-size: 24px;
    text-align: center;
    min-height: 72px;
    padding: 20px 0;
}

.Case .CaseBox .item .txt .More {
    padding: 25px 0 35px 0;
    text-align: center;
}

.Case .CaseBox .item .txt .More span {
    font-size: 14px;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px solid #0ab455;
    color: #0ab455;
}

.Case .CaseBox .item:hover .img span {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.Case .CaseBox .item:hover .txt {
    background: #0ab455;
}

.Case .CaseBox .item:hover .txt .tit {
    color: #fff;
}

.Case .CaseBox .item:hover .txt .More span {
    color: #fff;
    border-bottom: 1px solid #fff;
}

@media(max-width:1280px) {
    .Case .CaseBox .item .txt {
        padding: 0 20px;
    }
    .Case .CaseBox .item .txt .tit {
       font-size: 18px;
  min-height: 50px;
    }
    .Case .CaseBox .item .txt .More {
        padding: 15px 0 25px 0;
    }
}

@media(max-width:1024px) {
    .Case {
        margin-top: 30px;
    }
    .Case .CaseBox .item .txt {
        padding: 0 10px;
    }
    .Case .CaseBox .item .txt .tit {
        font-size: 16px;
        
    }
    .Case .CaseBox .item .txt .More {
        padding: 15px 0;
    }
}

@media(max-width:768px) {
    .Case .CaseBox .item {
        width: 47.5%;
        margin-bottom: 20px;
    }
    .Case .CaseBox .item .txt .tit {
        font-size: 14px;
       min-height: 36px;
    }
    .Case .CaseBox .item .txt .More {
        padding: 10px 0;
    }
}
@media(max-width:768px) {
  .Case .CaseBox .item .txt .tit {
        font-size: 13px;
    }
}

/* 案例详情 */

.CaseInfo {
    margin: 60px 0;
}

.CaseInfo .Part1 .PartBox {
    position: relative;
}

.CaseInfo .Part1 .PartBox .goback {
    position: absolute;
    right: 0;
    top: 0;
}

.CaseInfo .Part1 .PartBox .goback a {
    display: block;
    width: 130px;
    height: 40px;
    line-height: 40px;
    background: #0ab455;
    color: #fff;
    text-align: center;
}

.CaseInfo .Part1 .PartBox .goback a img {
    position: relative;
    margin-right: 5px;
    top: -1px;
}

.CaseInfo .Part1 .PartBox .img {
    width: 50%;
    padding-top: 500px;
}

.CaseInfo .Part1 .PartBox .txt {
    width: 50%;
    background: #f1f7f5;
    height: 500px;
}

.CaseInfo .Part1 .PartBox .txt .tit {
    background: #fff;
    padding: 45px 50px 45px 70px;
}

.CaseInfo .Part1 .PartBox .txt .tit .t1 {
    font-size: 24px;
    color: #0ab455;
}

.CaseInfo .Part1 .PartBox .txt .tit .t2 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 10px;
}

.CaseInfo .Part1 .PartBox .txt .dec {
    padding: 45px 40px 45px 70px;
    color: #666;
    line-height: 36px;
}

.CaseInfo .Part1 .PartBox .txt .dec .decBox {
    height: 250px;
    overflow: auto;
    padding-right: 10px;
}

.CaseInfo .Part2 {
    margin: 100px 0;
    position: relative;
}

.CaseInfo .Part2::before {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: #f8f8f8;
    position: absolute;
    top: 0;
    left: 0;
}

.CaseInfo .Part2 .txt {
    position: relative;
    z-index: 99;
    width: 50%;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 80px;
    /*height:500px;*/
    /*display:flex;justify-content:center;flex-direction: column;*/
    overflow: auto;
    box-sizing: border-box;
    padding-top: 50px;
    padding-bottom: 50px;
}

.CaseInfo .Part2 .txt .item {
    margin-bottom: 25px;
}

.CaseInfo .Part2 .txt .item .date {
    font-size: 18px;
    font-weight: bold;
    position: relative;
}

.CaseInfo .Part2 .txt .item .date::before {
    content: '';
    display: block;
    width: 30px;
    height: 100%;
    background: url(../uploadfiles/image/jt2.png) no-repeat center left;
    position: absolute;
    left: -30px;
    top: 0;
}

.CaseInfo .Part2 .txt .item .dec {
    color: #666;
    line-height: 30px;
}

.CaseInfo .Part2 .txt .item .dec span {
    color: #0ab455;
}

.CaseInfo .Part2::after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}

.CaseInfo .Part2 .img {
    width: 50%;
    position: relative;
    z-index: 999;
}

.CaseInfo .Part2 .img .imgbox {
    padding-top: 378px;
}

.CaseInfo .Part2 .img .txt1 {
    position: relative;
    padding: 50px;
    height: 500px;
    box-sizing: border-box;
    overflow: auto;
}

.CaseInfo .Part2 .img .txt1 .tit {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    color: #fff;
    background: #0ab455;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-size: 30px;
    font-weight: 36px;
    font-weight: bold;
    position: absolute;
    left: 40px;
    top: 50%;
    margin-top: -70px;
}

.CaseInfo .Part2 .img .txt1 .dec p {
    padding-left: 20px;
    position: relative;
    line-height: 36px;
}

.CaseInfo .Part2 .img .txt1 .dec p::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: #0ab455;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 15px;
}

.CaseInfo .Part2.on1::before {
    background: #0ab455;
    opacity: 0.05;
}

.CaseInfo .Part2.on2::after {
    background: #0ab455;
    opacity: 0.05;
}

.CaseInfo .Part3 {
    position: relative;
}

.CaseInfo .Part3 .PartTit {
    margin-bottom: 50px;
    position: absolute;
    top: 0;
}

.CaseInfo .Part3 .PartTit h1 {
    font-size: 30px;
}

.CaseInfo .Part3 .PartBox {}

.CaseInfo .Part3 .PartBox .slider {
    padding-top: 80px;
}

.CaseInfo .Part3 .PartBox .slick-list {
    margin-left: -40px;
}

.CaseInfo .Part3 .PartBox .item {
    margin-left: 40px;
    padding: 5px;
}

.CaseInfo .Part3 .PartBox .item .img {
    padding-top: 59%;
}

.CaseInfo .Part3 .PartBox .item .img span {
    transition: all .5s;
    -webkit-transition: all .5s;
}

.CaseInfo .Part3 .PartBox .item .txt {
    padding: 0 35px;
    border: 1px solid #e5e5e5;
}

.CaseInfo .Part3 .PartBox .item .txt .tit {
    padding: 35px 0 25px 0;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.CaseInfo .Part3 .PartBox .item .txt .More {
    padding: 25px 0 35px 0;
    text-align: center;
}

.CaseInfo .Part3 .PartBox .item .txt .More span {
    font-size: 14px;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px solid #0ab455;
    color: #0ab455;
}

.CaseInfo .Part3 .PartBox .item:hover .img span {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.CaseInfo .Part3 .PartBox .item:hover .txt {
    background: #0ab455;
    border: 1px solid #0ab455;
}

.CaseInfo .Part3 .PartBox .item:hover .txt .tit {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.CaseInfo .Part3 .PartBox .item:hover .txt .More span {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.CaseInfo .Part3 .PartBox .slick-arrow {
    width: 38px;
    height: 38px;
    line-height: 38px;
    position: absolute;
    top: 0;
    margin-top: 0;
    background: #d4d4d4;
    color: #fff;
    border-radius: 0;
}

.CaseInfo .Part3 .PartBox .slick-arrow.slick-prev {
    right: 50px;
    left: auto;
}

.CaseInfo .Part3 .PartBox .slick-arrow.slick-next {
    right: 0;
}

.CaseInfo .Part3 .PartBox .slick-arrow:hover {
    background: #0ab455;
}

@media(max-width:1440px) {
    .CaseInfo .Part1 .PartBox .txt .tit {
        padding-left: 40px;
        padding-right: 40px;
    }
    .CaseInfo .Part1 .PartBox .txt .tit .t2 {
        font-size: 28px;
    }
    .CaseInfo .Part1 .PartBox .txt .dec {
        padding: 40px;
        font-size: 28px;
        font-size: 15px;
    }
}

@media(max-width:1280px) {
    .CaseInfo .Part2 .txt {
        height: 650px;
    }
    .CaseInfo .Part2 .img .txt1 {
        padding-left: 180px;
    }
    .CaseInfo .Part2 .img .txt1 .tit {
        width: 120px;
        height: 120px;
        font-size: 25px;
        margin-top: -60px;
        left: 25px;
    }
    .CaseInfo .Part3 .PartBox .item .txt {
        padding: 0 20px;
    }
    .CaseInfo .Part3 .PartBox .item .txt .tit {
        font-size: 18px;
        line-height: 30px;
        padding: 25px 0 15px 0;
    }
    .CaseInfo .Part3 .PartBox .item .txt .More {
        padding: 15px 0 25px 0;
    }
}

@media(max-width:1024px) {
    .CaseInfo .Part1 .PartBox .goback {
        position: static;
        margin-bottom: 10px;
    }
    .CaseInfo .Part1 .PartBox .img {
        width: 100%;
        padding-top: 59%;
    }
    .CaseInfo .Part1 .PartBox .txt {
        width: 100%;
    }
    .CaseInfo .Part2 {
        margin: 50px 0;
    }
    .CaseInfo .Part2 .txt {
        width: 100%;
        padding: 20px;
        background: #f8f8f8;
        height: auto;
    }
    .CaseInfo .Part2::before {
        display: none;
    }
    .CaseInfo .Part2 .txt .item {
        padding-left: 30px;
    }
    .CaseInfo .Part2 .img {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
    .CaseInfo .Part2 .img .imgbox {
        padding-top: 39%;
    }
    .CaseInfo .Part3 .PartBox .item .txt {
        padding: 0 10px;
    }
    .CaseInfo .Part3 .PartBox .item .txt .tit {
        font-size: 16px;
        padding: 15px 0;
    }
    .CaseInfo .Part3 .PartBox .item .txt .More {
        padding: 15px 0;
    }
}

@media(max-width:768px) {
    .CaseInfo {
        margin: 30px 0;
    }
    .CaseInfo .Part1 .PartBox .txt .tit {
        padding: 20px;
    }
    .CaseInfo .Part1 .PartBox .txt .tit .t1 {
        font-size: 14px;
    }
    .CaseInfo .Part1 .PartBox .txt .tit .t2 {
        font-size: 18px;
    }
    .CaseInfo .Part3 .PartBox .item .txt .tit {
        font-size: 13px;
        padding: 10px 0;
        line-height: 20px;
    }
    .CaseInfo .Part3 .PartBox .item .txt .More {
        padding: 10px 0;
    }
    .CaseInfo .Part1 .PartBox .txt .dec {
        padding: 20px;
        line-height: 25px;
        font-size: 14px;
    }
    .CaseInfo .Part1 .PartBox .txt .dec .decBox {
        height: auto;
    }
    .CaseInfo .Part1 .PartBox .txt {
        height: auto;
    }
    .CaseInfo .Part2 {
        margin: 20px 0;
    }
    .CaseInfo .Part2 .img .txt1 {
        padding-left: 0;
        margin-top: 20px;
    }
    .CaseInfo .Part2 .img .txt1 .tit {
        position: static;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .CaseInfo .Part3 .PartBox .slider {
        padding-top: 50px;
    }
    .CaseInfo .Part3 .PartTit h1 {
        font-size: 22px;
    }
    .CaseInfo .Part3 .PartBox .slick-arrow {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}


/* 解决方案 */

.Solution .tit {
    margin-bottom: 50px;
	text-align: center;
}
.Solutionsss  .tit {text-align: left;}
.Solution .tit span {
    opacity: 0.4;
    font-family: Arial;
}

.Solution .tit h1 {
    font-size: 40px;
    margin-top: 10px;
}

.Solution .tit b {
    display: block;
    width: 60px;
    height: 3px;
    background: #0ab455;
	margin: 40px auto 0;
}
.Solutionsss  .tit b{margin: 20px 0 0}
.Solution .Part2.autonav ul,.Solution .Part2.autonav .slick-list,.Solution .Part2.autonav .slick-track{display: flex;justify-content: space-between;width: 100% !important;padding-bottom:100px;}
.Solution.autonav .item{width: auto !important;flex: 1;float: none !important;display: inline-block;}
.Solution.hide{display: none;}

.Solution {
    margin-top: 70px;
}

.Solution .Part1 {
    padding-bottom: 70px;
    position: relative;
}

.Solution .Part1::before {
    content: '';
    display: block;
    width: 95%;
    height: 65%;
    background: #f1f7f4;
    position: absolute;
    bottom: 0;
    right: 0;
}
.Solutionsss .Part1::before {display:none}

.Solution .Part1 .PartBox .img {
    width: 50%;
    padding-top: 500px;
}

.Solution .Part1 .PartBox .txt {
    width: 44%;
    position: relative;
    z-index: 99;
}

.Solution .Part1 .PartBox .txt .tit {
    padding: 60px 0;
}

.Solution .Part1 .PartBox .txt .dec .decbox {
    line-height: 36px;
    color: #666;
    padding-right: 10px;
    height: 216px;
    overflow: auto;
}

.Solution .Part1 .PartBox .txt .dec b {
    width: 60px;
    height: 3px;
    background: #0ab455;
    display: block;
    margin-bottom: 30px;
}

.Solution .Part2 {
    margin: 80px 0;
}
.Solutionsss .Part2 {
    margin: 80px 0 0;
}
.SoluInfo.Solutionsss .Part3{display: block;}
.Solution .Part2 .slick-list {
    margin-left: -20px;
}

.Solution .Part2 .item {
    margin-left: 20px;
    background: #f8f8f8;
    text-align: center;
    height:86%
}

.Solution .Part2 .item:nth-child(2n) {
    background: #0ab455;
    margin-top: 100px;
    
}

.Solution .Part2 .item .ico {
    width: 170px;
    height: 170px;
    border: 1px solid #0ab455;
    border-radius: 50%;
    text-align: center;
    line-height: 170px;
    margin: 0 auto;
}

.Solution .Part2 .item .ico img {
    transition: all .5s;
    -webkit-transition: all .5s;
}

.Solution .Part2 .item .img {
    padding-top: 85%;
}

.Solution .Part2 .item .txt {
    padding: 30px 0;
}

.Solution .Part2 .item .txt h1 {
    font-size: 30px;
    font-weight: normal;
}

.Solution .Part2 .item .txt b {
    display: block;
    width: 15px;
    height: 1px;
    background: #0ab455;
    margin: 15px auto;
    display: none;
}

.Solution .Part2 .item .txt p {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
    font-family: Arial;
}

.Solution .Part2 .item:nth-child(2n) .ico {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.Solution .Part2 .item:nth-child(2n) .txt h1 {
    color: #fff;
}

.Solution .Part2 .item:nth-child(2n) .txt b {
    background: #fff;
}

.Solution .Part2 .item:nth-child(2n) .txt p {
    color: #fff;
}


/* .Solution .Part2 .item:hover .ico img{  -webkit-animation: icon-bounce 0.5s alternate;-moz-animation: icon-bounce 0.5s alternate;-o-animation: icon-bounce 0.5s alternate;animation: icon-bounce 0.5s alternate;} */

.Solution .Part2 .item:hover .ico img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.Solution .Part2 .slider {
    overflow: visible;
}

.Solution .Part2 .slick-arrow {
    color: #fff;
    background: #cccccc;
}

.Solution .Part2 .slick-arrow:hover {
    background: #0ab455;
}

.Solution .Part2 .slick-prev {
    left: -80px;
}

.Solution .Part2 .slick-next {
    right: -80px;
}

.slider:hover .slick-prev {
    left: -80px;
}

.slider:hover .slick-next {
    right: -80px;
}
@media ( min-width:1921px) {
	.Solution .Part1::before {
    content: '';
    display: block;
    width: 62.2%;
    height: 65%;
    background: #f1f7f4;
    position: absolute;
    bottom: 0;
    right: 19%;
}
}
@media(max-width:1440px) {
    .Solution .tit h1 {
        font-size: 30px;
    }
    .Solution .Part1 .PartBox .txt .dec .decbox {
        font-size: 15px;
        line-height: 30px;
    }
    .Solution .Part2 .item .ico {
        width: 140px;
        height: 140px;
        line-height: 140px;
    }
.Solution .Part2 .slick-prev {
    left: 0px;
}

.Solution .Part2 .slick-next {
    right: 0px;
}

}

@media(max-width:1280px) {
    .Solution .Part2 .item {
        height: 450px;
    }
    .Solution .Part2 .item .ico {
        width: 120px;
        height: 120px;
        line-height: 120px;
    }
    .Solution .Part2 .item .ico img {
        max-height: 50px;
        max-width: 50px;
    }
    .Solution .Part2 .item .txt h1 {
        font-size: 22px;
    }
    .Solution .Part2 .slick-arrow {
        width: 28px;
        height: 28px;
        line-height: 28px;
    }
    .Solution .Part2 .slick-prev {
        left: 10px;
    }
    .Solution .Part2 .slick-next {
        right: 10px;
    }
    .slider:hover .slick-prev {
        left: 10px;
    }
    .slider:hover .slick-next {
        right: 10px;
    }
}

@media(max-width:1024px) {
    .Solution {
        margin-top: 30px;
    }
    .Solution .Part1 {
        padding-bottom: 30px;
    }
    .Solution .Part1 .PartBox .img {
        width: 100%;
        padding-top: 60%;
    }
    .Solution .Part1 .PartBox .txt {
        width: 100%;
    }
    .Solution .Part1::before {
        width: 100%;
    }
    .Solution .Part1 .PartBox .txt .tit {
        padding: 30px 0;
        margin-bottom: 0;
    }
    .Solution .tit h1 {
        font-size: 22px;
    }
    .Solution .Part2 {
        margin: 40px 0;
    }
}

@media(max-width:768px) {
    .Solution .tit {
        margin-bottom: 20px;
    }
    .Solution .tit h1 {
        font-size: 18px;
    }
    .Solution .tit b {
        width: 40px;
        margin-top: 20px;
    }
    .Solution .Part1 .PartBox .txt .dec .decbox {
        height: auto;
        font-size: 14px;
    }
    .Solution .Part1 .PartBox .txt .dec b {
        width: 40px;
    }
    .Solution .Part2 .item .ico {
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
    .Solution .Part2 .item .ico img {
        max-width: 25px;
        max-height: 25px;
    }
    .Solution .Part2 .item {
        height: auto;
    }
    .Solution .Part2 .item:nth-child(2n) {
        margin-top: 0;
    }
    .Solution .Part2 .item .txt {
        margin-top: 0px;
        padding: 10px 0;
    }
    .Solution .Part2 .item .txt h1 {
        font-size: 18px;
    }
    .Solution .Part2 .item .txt p {
        /* height: 38px; */
    }
}

@media(max-width:486px) {
    .Solution .Part2 .item {
        height: 265px;
    }
}

@media(max-width:400px) {
    .Solution .Part2 .item {
        height: 250px;
    }
}

@media(max-width:375px) {
    .Solution .Part2 .item {
        height: 230px;
    }
}


/* 产品与服务 */

.Product .nNav li {
    position: relative;
}

.Product .nNav li::before {
    content: '';
    display: block;
    border-top: 10px solid #17c463;
    border-bottom: 10px solid transparent;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -10px;
    display: none;
}

.Product .nNav li.on::before {
    display: block;
}

.Product .nNav li.on a {
    background: #17c463;
}

.Product .nNav li:hover a {
    background: #17c463;
}

.Product .TwoNav {
    background: #17c463;
    padding: 30px 0;
    margin-top: 70px;
}

.Product .TwoNav ul li {
    display: inline-block;
}

.Product .TwoNav .hd {
    text-align: left;
}

.Product .TwoNav ul li a {
    color: #fff;
    font-weight: bold;
    line-height: 40px;
    padding: 0 15px;
    display: block;
    border-radius: 5px;
    font-size: 18px
}

.Product .TwoNav ul li.on a {
    background: #fff;
    color: #17c463;
}

.Product .TwoNav ul li:hover a {
    background: #fff;
    color: #17c463;
}

.Product .TwoNav .bd dl {
    margin-top: 10px;
}

.Product .TwoNav .bd dl dd {
    display: inline-block;
}

.Product .TwoNav .bd dl dd a {
    display: inline-block;
    padding: 0 15px;
    line-height: 28px;
    border-radius: 5px;
    border: 1px solid #17c463;
    font-size: 16px;
    color: #fff;
}

.Product .TwoNav .bd dl dd.on a,
.Product .TwoNav .bd dl dd:hover a {
    border: 1px solid #fff;
}

.Product .ProductBox {
    padding: 60px 0;
}

.Product .ProductBox .ProductCon {
    margin-left: -1.5%;
}

.Product .ProductBox .ProductCon .item {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    width: 23.5%;
    margin-left: 1.5%;
    float: left;
    box-sizing: border-box;
    padding: 20px;
    border: 4px solid #fff;
    margin-bottom: 20px;
}

.Product .ProductBox .ProductCon .item .img {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.Product .ProductBox .ProductCon .item .img img {
   width: 250px;
    height: 250px;
}

.Product .ProductBox .ProductCon .item .txt {
    line-height: 30px;
    padding: 20px 20px 10px 0;
    background: url(../images/more1.png) no-repeat center right 2px;
    height: 60px;
}

.Product .ProductBox .ProductCon .item .txt span {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    font-family: Arial;
}

.Product .ProductBox .ProductCon .item .txt p {
    font-size: 20px;
    color: #333;
    height: 60px;
}

.Product .ProductBox .ProductCon .item:hover {
    border: 4px solid #17c463;
}

@media(max-width:1400px) {
    .Product .ProductBox .ProductCon .item .img {
        height: 200px;
    }
    .Product .ProductBox .ProductCon .item .img img {
        width: 200px;
    height: 200px;
    }
    .Product .ProductBox .ProductCon .item .txt span {
        font-size: 16px;
    }
    .Product .ProductBox .ProductCon .item .txt p {
        font-size: 16px;
    }
    .Product .TwoNav .hd {
        text-align: left;
    }
}

@media(max-width:1024px) {
    .Product .ProductBox .ProductCon .item {
        width: 48.5%;
        padding: 10px;
    }
    .Product .ProductBox .ProductCon .item .img {
        height: 150px;
    }
  .Product .ProductBox .ProductCon .item .img img  {
           height: 150px;
    width: 150px;
    }
    .Product .ProductBox .ProductCon .item .txt {
        padding-right: 15px;
        line-height: 25px;
    }
    .Product .ProductBox .ProductCon .item .txt span {
        font-size: 14px;
    }
    .Product .ProductBox .ProductCon .item .txt p {
        font-size: 14px;
    }
    .Product .TwoNav {
        margin-top: 30px;
    }
}
@media(max-width:1024px) {
.Product .ProductBox .ProductCon .item .txt{
height: 90px;
}
}

/* 产品与服务详情 */

.ProInfo .Part1 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.ProInfo .Part1 .img {
    width: 50%;
    position: relative;
    height: 610px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.ProInfo .Part1 .img .bgyuan {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    z-index: 0;
	display:none;
}

.ProInfo .Part1 .img img {
    position: relative;
    z-index: 9;
width:420px;
    height: 420px;
}

.ProInfo .Part1 .txt {
    width: 46%;
    height: 610px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.ProInfo .Part1 .txt h1 {
    font-size: 36px;
}

.ProInfo .Part1 .txt .dec {
    color: #666;
    line-height: 36px;
    margin: 35px 0 50px;
}

.ProInfo .Part1 .txt .btn_wrap {
    overflow: hidden;
}

.ProInfo .Part1 .txt .btn_wrap a {
    float: left;
    width: 145px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    background: #0ab455;
}

.ProInfo .Part1 .txt .btn_wrap a.Back_list_btn {
    margin-left: 20px
}

.ProInfo .Part1 .txt .btn_wrap a:hover {
    background: #008e3f
}

.ProInfo .Part2 {
    padding: 80px 0;
}

.ProInfo .Part2 .PartBox {
    position: relative;
    padding: 60px 0px;
background: #f9f9f9;
}

.ProInfo .Part2 .PartBox::before {
    content: '';
    display: block;
    width: 100%;
    height: 80%;
    background: #f9f9f9;
    position: absolute;
    bottom: 0;
    left: 0;
}

.ProInfo .Part2 .img {
    width: 50%;
    text-align: center;
    z-index: 9;

  
}
.ProInfo .Part2 .img img{
width: 600px;
height:600px;
}
.ProInfo .Part2 .txt {
    width: 50%;
    position: relative;
    z-index: 9;
    padding-right: 10px;
    box-sizing: border-box;
}

.ProInfo .Part2 .txt h1 {
    font-size: 36px;
    color: #17c463;
    margin-bottom: 40px;
}

.ProInfo .Part2 .txt .dec {
    line-height: 30px;
    height: 390px;
    overflow-y: auto;
    overflow-x: hidden;
}

.ProInfo .Part2 .txt .dec p {
    padding: 9px 0;
    padding-left: 30px;
    position: relative;
}

.ProInfo .Part2 .txt .dec p::before {
    content: '';
    display: block;
    width: 25px;
    height: 30px;
    background: url(../images/infoico.png) no-repeat center left;
    position: absolute;
    top: 9px;
    left: 0;
}

.ProInfo .Part2 .PageBtn {
    height: 80px;
    line-height: 80px;
    background: #0ab455;
    margin-top: 80px;
}

.ProInfo .Part2 .PageBtn ul::after {
    content: '';
    display: block;
    clear: both;
}

.ProInfo .Part2 .PageBtn ul li {
    width: 33.33%;
    float: left;
    box-sizing: border-box;
    padding: 0 30px;
}

.ProInfo .Part2 .PageBtn ul li span {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.ProInfo .Part2 .PageBtn ul li.go_back {
    text-align: center;
}

.ProInfo .Part2 .PageBtn ul li.next {
    text-align: right;
}

.ProInfo .Part2 .PageBtn ul li img {
    position: relative;
    margin: 0 10px;
    top: -2px;
}

.ProInfo .Edit_part{
padding-top: 50px;
}

@media(max-width:1280px) {
    .ProInfo .Part1 .txt h1 {
        font-size: 28px;
    }
}

@media(max-width:1024px) {
    .ProInfo .Part1 .txt h1 {
        font-size: 25px;
    }
    .ProInfo .Part1 .txt .dec {
        line-height: 28px;
        margin: 30px 0;
    }
    .ProInfo .Part1 .img .bgyuan {
        width: 320px;
        height: 320px;
    }
    .ProInfo .Part1 .txt {
        height: 520px;
    }
    .ProInfo .Part1 .img {
        height: 520px;
    }
    .ProInfo .Part1 .img img {
        width: 320px;
        height: 320px;
    }
    .ProInfo .Part2 .txt h1 {
        font-size: 25px;
    }
    .ProInfo .Part2 .txt .dec {
        line-height: 28px;
		height:390px;
		
    }
 .ProInfo .Part2 .img{
margin-top: 73px;
}
    .ProInfo .Part2 .img img {
		    width: 390px;
    height: 390px;
    }
}

@media(max-width:768px) {
    .ProInfo .Part1 .img {
        width: 100%;
        height: 200px;
    }
    .ProInfo .Part1 .img .bgyuan {
        width: 200px;
        height: 200px;
    }
  .ProInfo .Part1 .img img{
width: 200px;
    height: 200px;
}
    .ProInfo .Part1 .txt {
        width: 100%;
        height: auto;
        padding: 20px 10px;
        box-sizing: border-box;
    }
    .ProInfo .Part1 .txt h1 {
        font-size: 18px;
    }
    .ProInfo .Part1 .txt .dec {
        margin: 20px 0;
    }
    .ProInfo .Part1 .txt a {
        width: 120px;
        height: 35px;
        line-height: 35px;
    }
    .ProInfo .Part2 .PartBox {
        padding: 20px 0;
    }
    .ProInfo .Part2 {
        padding: 30px 0;
    }
    .ProInfo .Part2 .img {
           width: 100%;
    position: relative;
    z-index: 9;
    margin-top: 0px;
    }
    .ProInfo .Part2 .img img {
       width: 350px;
    height: 350px;
    }
    .ProInfo .Part2 .txt {
        width: 100%;
        box-sizing: border-box;
        padding-top: 0;
        margin-top: 20px;
    }
    .ProInfo .Part2 .txt h1 {
        font-size: 20px;
        margin-bottom: 10px;
        text-align: center;
    }
    .ProInfo .Part2 .txt .dec p {
        padding: 3px 0;
        padding-left: 20px;
    }
    .ProInfo .Part2 .txt .dec {
        line-height: 25px;
    }
    .ProInfo .Part2 .txt .dec p::before {
        height: 25px;
        background-size: 12px;
        top: 3px;
    }
    .ProInfo .Part2 .PageBtn {
        height: 50px;
        line-height: 50px;
        margin-top: 30px;
    }
    .ProInfo .Part2 .PageBtn ul li {
        padding: 0 10px;
    }
    .ProInfo .Part2 .PageBtn ul li span {
        font-size: 14px;
    }
}
@media(max-width:414px) {
.ProInfo .Part2 .img img {
    width: 200px;
    height: 200px;
}

}

/* 校园招聘 */

.Header_1 {
    background: url(../uploadfiles/image/headerbg.png) no-repeat bottom center;
    background-size: cover;
}

.Header_1 .MainNav ul li a {
    color: #fff;
}

.MainNav ul li::after {
    background: #fff;
}

.Header_1 .lan span {
    color: #fff;
}

.Header_1 .lan span::after {
    background: url(../images/down1.png) no-repeat center right;
}

.Header_1.on {
    background: rgba(0, 0, 0, 0.5);
}

.Header_2 .MainNav ul li.onnav {
    background: #0ab455;
}

.Header_2 .MainNav ul li.onnav a {
    color: #fff;
}

.goHome {
    margin-left: 20px;
}

.goHome a {
    display: block;
    background: #0ab455;
    color: #fff;
    width: 100px;
    height: 100px;
    line-height: 30px;
    text-align: center;
    box-sizing: border-box;
    padding-top: 20px;
}

.goHome a img {}

@media(max-width:1024px) {
    .Header_1 .MainNav ul li a {
        color: #333;
    }
    .goHome a {
        width: 60px;
        height: 60px;
        padding-top: 10px;
        line-height: 20px;
        font-size: 12px;
    }
    .Header_1 .lan::before,
    .Header_2 .lan::before {
        display: none;
    }
}

.Schoolban {
    position: relative;
}

.Schoolban .txt {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.Schoolban .txt .txtbox {
    color: #fff;
}

.Schoolban .txt .txtbox h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.Schoolban .txt .txtbox span {
    font-size: 18px;
    font-family: Arial;
}

.Schoolban .txt .txtbox a {
    display: block;
    width: 240px;
    height: 65px;
    line-height: 65px;
    border-radius: 65px;
    text-align: center;
    background: #0ab455;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin: 100px auto 0;
}

.Schoolban .scrollDown {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 160px;
    margin-left: -80px;
    -webkit-animation: scrollDown 1s infinite;
    -webkit-animation-fill-mode: both;
}

.Schoolban .scrollDown .line {
    width: 1px;
    height: 90px;
    background: #fff;
    margin: 0 auto;
}

.Schoolban .scrollDown p {
    font-size: 12px;
    color: #fff;
    text-align: center;
    margin: 10px 0;
}

@keyframes scrollDown {
    from {
        bottom: 6%;
        opacity: 0;
    }
    to {
        bottom: 2%;
        opacity: 1;
    }
}

@-webkit-keyframes scrollDown {
    from {
        bottom: 6%;
        opacity: 0;
    }
    to {
        bottom: 2%;
        opacity: 1;
    }
}

.SchoolPart {
    padding-top: 100px;
}

.SchoolPart1 .PartBox {
    position: relative;
}

.SchoolPart1 .PartBox .Video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}

.SchoolPart1 .PartBox .Video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.SchoolPart1 .PartBox .Btns {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../uploadfiles/image/play.png) no-repeat center center;
    top: 0;
    left: 0;
}

.SchoolPart2 .PartBox {}

.SchoolPart2 .PartBox .item {
    position: relative;
    padding-bottom: 45px;
    margin-top: 60px;
}

.SchoolPart2 .PartBox .item:first-child {
    margin-top: 0;
}

.SchoolPart2 .PartBox .item::before {
    content: '';
    display: block;
    width: 100%;
    height: 70%;
    background: #f7f7f7;
    position: absolute;
    bottom: 0;
    left: 0;
}

.SchoolPart2 .PartBox .item .img {
    width: 48%;
    padding-top: 326px;
    float: left;
    z-index: 99;
}

.SchoolPart2 .PartBox .item .txt {
    width: 48%;
    float: right;
    position: relative;
}

.SchoolPart2 .PartBox .item .txt .tit {
    font-size: 30px;
    font-weight: bold;
    margin: 10px 0 50px 0;
}

.SchoolPart2 .PartBox .item .txt .tit span {
    font-size: 66px;
    color: #0ab455;
    font-style: italic;
    display: inline-block;
    margin-right: 10px;
}

.SchoolPart2 .PartBox .item .txt .dec {
    line-height: 30px;
    color: #666;
}

.SchoolPart2 .PartBox .item .txt .dec p {
    margin-bottom: 20px;
}

.SchoolPart2 .PartBox .item:nth-child(2n) .img {
    float: right;
}

.SchoolPart2 .PartBox .item:nth-child(2n) .txt {
    float: left;
}

.SchoolPart3 .PartBox {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.SchoolPart3 .PartBox .item {
    width: 50%;
    float: left;
    height: 400px;
    position: relative;
    /*  display: flex;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 40px;
    transition: all .5s; */
}

.SchoolPart3 .PartBox .item.on {
    width: 100%;
}

.SchoolPart3 .PartBox .item .tit {
    color: #fff;
    position: relative;
}

.SchoolPart3 .PartBox .item .tit::before {
    content: '';
    display: block;
    width: 5px;
    height: 100%;
    background: #fff;
    position: absolute;
    left: -43px;
    top: 0;
}

.SchoolPart3 .PartBox .item .tit span {
    font-size: 20px;
    opacity: 0.5;
    line-height: 14px;
    font-family: Arial;
}

.SchoolPart3 .PartBox .item .tit h1 {
    font-size: 40px;
    margin-top: 0px;
}

.SchoolPart3 .PartBox .item .ico {
    text-align: center;
    margin-top: 70px;
}

.SchoolPart3 .PartBox .item .txt {
    height: 0;
    overflow: hidden;
    max-width: 1500px;
    margin-top: 50px;
    min-width: 500px;

}

.SchoolPart3 .PartBox .item .txt ul::after {
    content: '';
    display: block;
    clear: both;
}

.SchoolPart3 .PartBox .item .txt ul li {
    width: 20%;
    float: left;
    position: relative;
}

.SchoolPart3 .PartBox .item .txt ul li .icobox {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    line-height: 120px;
    text-align: center;
    margin: 0 auto;
}

.SchoolPart3 .PartBox .item .txt ul li p {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-top: 30px;
}

.SchoolPart3 .PartBox .item .txt ul li::before {
    content: '';
    display: block;
    width: 11px;
    height: 12px;
    background: url(../uploadfiles/image/lcico.png) no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    left: -6px;
    bottom: 5px;
}

.SchoolPart3 .PartBox .item .txt ul li:first-child:before {
    display: none;
}

.SchoolPart3 .PartBox .item .txt ul {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.SchoolPart3 .PartBox .item .txt .txtbox {

    line-height: 28px;
	display: inline-block;
	min-width: 700px
}

.SchoolPart3 .PartBox .item .txt .txtbox .erBox {
    width: 200px;
    margin: 0 auto;
}
.SchoolPart3 .PartBox .item .txt .txtbox .erBox img{width:100%;}
.SchoolPart3 .PartBox .item .txt .txtbox p {
    line-height: 60px;
    text-align: center;
	 font-size: 20px;
}

.SchoolPart3 .PartBox .item .txt .txtbox p b {
    font-weight:normal;
}

.SchoolPart3 .PartBox .item.on {
    /* background: rgba(10, 180, 85, 0.9); */
    /* border-left: 1px solid rgba(10, 180, 85, 0.9); */
}

.SchoolPart3 .PartBox .item.on .txt {
    height: auto;
}

.SchoolPart3 .PartBox .item.on .ico {
    display: none;
}

.SchoolPart3 .PartBox .item .item_b {
    height: 400px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 40px;
    /* transition: all .5s; */
    transition: height 0.5s;
    -webkit-transition: height 0.5s;
}

.SchoolPart3 .PartBox .item .item_h {
    height: 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    border-left: 1px solid rgba(10, 180, 85, 0.9);
    padding: 0;
    /* transition: all .5s; */
    transition: height 1s;
    -webkit-transition: height 1s;
    /*background: rgba(10, 180, 85, 0.9);*/
    /* Safari */
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
}

.SchoolPart3 .PartBox .item.on .item_b {
    height: 0px;
    padding: 0;
    overflow: hidden;
}

.SchoolPart3 .PartBox .item.on .item_h {
    height: 400px;
    padding: 10px 40px;
}

@media(max-width:1360px) {
    .SchoolPart {
        padding-top: 60px;
    }
    .SchoolPart3 .PartBox .item .txt {
        min-width: 300px;
    }
    .SchoolPart2 .PartBox .item .txt .tit {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .SchoolPart2 .PartBox .item .txt .tit span {
        font-size: 40px;
        position: relative;
        top: 2px;
    }
    .SchoolPart2 .PartBox .item::before {
        height: 80%;
    }
    .SchoolPart2 .PartBox .item .txt .dec {
        font-size: 15px;
    }
    .SchoolPart2 .PartBox .item .txt .dec p {
        margin-bottom: 10px;
    }
    .SchoolPart3 .PartBox .item {
        height: 550px;
    }
    .SchoolPart3 .PartBox .item .tit::before {
        left: -23px;
    }
    .SchoolPart3 .PartBox .item .txt ul li .icobox {
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
    .SchoolPart3 .PartBox .item .ico {
        margin-top: 50px;
    }
    .SchoolPart3 .PartBox .item .ico img {
        max-width: 60px;
        max-height: 60px;
    }
    .Schoolban .txt .txtbox h1 {
        font-size: 40px;
    }
    .Schoolban .txt .txtbox a {
        width: 180px;
        height: 50px;
        line-height: 50px;
        border-radius: 50px;
        font-size: 16px;
    }
    .Schoolban .scrollDown .line {
        height: 50px;
    }
    .SchoolPart3 .PartBox .item .item_b {
        padding: 10px 23px;
        height: 550px;
    }
    .SchoolPart3 .PartBox .item.on .item_h {
        padding: 10px 23px;
        height: 550px;
    }
}

@media(max-width:1024px) {
    .SchoolPart {
        padding-top: 30px;
    }
    .nTit2 {
        margin-bottom: 20px;
    }
    .SchoolPart3 .PartBox .item .tit h1 {
        font-size: 20px;
    }
    .SchoolPart3 .PartBox .item .txt {
        min-width: 200px;
    }
    .SchoolPart3 .PartBox .item .txt ul li .icobox {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    .SchoolPart3 .PartBox .item .txt ul li .icobox img {
        max-width: 30px;
        max-height: 30px;
    }
    .SchoolPart3 .PartBox .item .txt ul li p {
        font-size: 16px;
    }
    .Schoolban .txt .txtbox h1 {
        font-size: 20px;
        margin-bottom: 0;
    }
    .Schoolban .txt .txtbox span {
        font-size: 14px;
    }
    .Schoolban .txt .txtbox a {
        width: 150px;
        height: 40px;
        line-height: 40px;
        border-radius: 40px;
    }
}

@media(max-width:768px) {
    .Schoolban .txt .txtbox h1 {
        font-size: 18px;
        padding-top: 10px;
    }
    .Schoolban .txt .txtbox a {
        margin-top: 10px;
        width: 120px;
        height: 25px;
        line-height: 25px;
        border-radius: 25px;
        font-size: 14px;
    }
    .Schoolban .scrollDown .line {
        height: 30px;
    }
    .SchoolPart2 .PartBox .item {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    .SchoolPart2 .PartBox .item .img {
        width: 100%;
        padding-top: 43%;
    }
    .SchoolPart2 .PartBox .item .txt {
        width: 100%;
    }
    .SchoolPart2 .PartBox .item .txt .dec {
        line-height: 28px;
        font-size: 14px;
    }
    .SchoolPart3 .PartBox .item {
        width: 100%;
        height: 400px;
        background: url(../uploadfiles/image/schoolbg.png) no-repeat center center;
        background-size: cover;
        margin-bottom: 10px;
        /* padding: 20px; */
        border: none;
    }
    .SchoolPart3 .PartBox .item.on {
        width: 100%;
        height: 400px;
        background: url(../uploadfiles/image/schoolbg.png) no-repeat center center;
        background-size: cover;
        margin-bottom: 10px;
        border: none;
    }
    .SchoolPart3 .PartBox .item .txt {
        height: auto;
    }
    .SchoolPart3 .PartBox .item .ico {
        display: none;
    }
    .SchoolPart3 .PartBox {
        background: none !important;
    }
    .SchoolPart3 .PartBox .item .item_b {
        padding: 10px 23px;
        height: 400px;
    }
    .SchoolPart3 .PartBox .item.on .item_h {
        padding: 10px 23px;
        height: 400px;
    }
    .SchoolPart3 .PartBox .item.on .item_h .txt {
        margin-top: 10px;
    }
    .SchoolPart3 .PartBox .item.on .item_h .txt {
        margin-top: 60px;
    }
    .SchoolPart3 .PartBox .item.on .item_h .txt ul {
        margin-bottom: 0
    }
    .SchoolPart3 .PartBox .item_h .txt .txtbox p {
        line-height: 30px;
    }
}


/* 校招QA */

.Main {
    padding: 100px 0;
}

.SchoolTit {
    margin-bottom: 55px;
}

.SchoolTit h1 {
    font-size: 40px;
    text-align: center;
}

.XiaozhaoQ .XiaozhaoQbox {
    margin-left: -5%;
}

.XiaozhaoQ .XiaozhaoQbox .item {
    width: 45%;
    margin-left: 5%;
    float: left;
    margin-bottom: 20px;
    cursor: pointer;
    position: relative;
}

.XiaozhaoQ .XiaozhaoQbox .item .q {
    height: 75px;
    line-height: 75px;
    padding-left: 70px;
    padding-right: 10px;
    background: #c2c2c2;
    position: relative;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

.XiaozhaoQ .XiaozhaoQbox .item .q span {
    width: 70px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
}

.XiaozhaoQ .XiaozhaoQbox .item .a {
       padding: 35px 10px 35px 70px;
    position: relative;
    border: 1px solid #0ab455;
    display: none;
    /* position: absolute; */
    width: 100%;
    box-sizing: border-box;
    /* top: 75px; */
    z-index: 99;
    background: #fff;
    color: #666;
    line-height: 36px;
}

.XiaozhaoQ .XiaozhaoQbox .item .a span {
    font-size: 18px;
    font-weight: bold;
    color: #0ab455;
    position: absolute;
    top: 35px;
    left: 0;
    text-align: center;
    width: 70px;
}

.XiaozhaoQ .XiaozhaoQbox .item .a .acon {
    min-height: 120px;
}

.XiaozhaoQ .XiaozhaoQbox .item.on .q {
    background: #0ab455;
}

@media(max-width:1280px) {
    .Main {
        padding: 60px 0;
    }
    .SchoolTit h1 {
        font-size: 30px;
    }
    .XiaozhaoQ .XiaozhaoQbox .item .q {
        font-size: 16px;
        height: 60px;
        line-height: 60px;
    }
    .XiaozhaoQ .XiaozhaoQbox .item .a {
        top: 60px;
    }
}

@media(max-width:1024px) {
    .Main {
        padding: 30px 0;
    }
    .SchoolTit {
        margin-bottom: 20px;
    }
    .SchoolTit h1 {
        font-size: 20px;
    }
    .XiaozhaoQ .XiaozhaoQbox .item {
        width: 95%;
        margin-bottom: 10px;
    }
    .XiaozhaoQ .XiaozhaoQbox .item .q {
        padding-left: 50px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
    .XiaozhaoQ .XiaozhaoQbox .item .q span {
        width: 50px;
    }
    .XiaozhaoQ .XiaozhaoQbox .item .a {
        padding: 20px 10px 20px 50px;
        position: relative;
        top: auto;
    }
    .XiaozhaoQ .XiaozhaoQbox .item .a span {
        width: 50px;
        font-size: 14px;
        top: 20px;
    }
}


/* 招聘岗位 */

.SchoolPost .PostSearch {
    padding: 5px;
    height: 70px;
    line-height: 60px;
    background: #fff;
    border-radius: 60px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 780px;
    width: 90%;
    margin-top: -35px;
    position: relative;
    z-index: 99;
    padding-right: 65px;
    box-sizing: border-box;
}

.SchoolPost .PostSearch input {
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    padding: 0 20px;
}

.SchoolPost .PostSearch button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0ab455;
    position: absolute;
    right: 5px;
    top: 5px;
}

.SchoolPost .PostSelect {
    margin-top: 70px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 40px;
}

.SchoolPost .PostSelect .selectBox {
    display: inline-block;
    margin-right: 50px;
}

.SchoolPost .PostSelect .selectBox span {
    font-size: 20px;
    font-weight: bold;
}

.SchoolPost .PostSelect .selectBox .selectBtn {
    display: inline-block;
}

.SchoolPost .PostSelect .selectBox .selectBtn .check {
    display: inline-block;
    margin-right: 20px;
}

.SchoolPost .PostBox .PostNav {
    width: 31.25%;
}

.SchoolPost .PostBox .PostNav ul li {
    line-height: 50px;
    font-size: 18px;
    position: relative;
}

.SchoolPost .PostBox .PostNav ul li a {
    color: #666;
}

.SchoolPost .PostBox .PostNav ul li.on a {
    font-weight: bold;
}

.SchoolPost .PostBox .PostNav ul li::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: #0ab455;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: -35px;
    display: none;
}

.SchoolPost .PostBox .PostNav ul li.on::before {
    display: block;
}

.SchoolPost .PostBox .bd {
    width: 68.75%;
}

.SchoolPost .PostBox .bd .PostCon {}

.SchoolPost .PostBox .bd .PostCon .box {
    margin-bottom: 40px;
}

.SchoolPost .PostBox .bd .PostCon .box h1 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 10px;
}

.SchoolPost .PostBox .bd .PostCon .box h1 strong {}

.SchoolPost .PostBox .bd .PostCon .box h1 span {
    color: #cccccc;
    font-family: Arial;
}

.SchoolPost .PostBox .bd .PostCon .box .dec {
    line-height: 36px;
    color: #666;
}

.SchoolPost .PostBox .bd .PostCon .ConUl {
    padding-top: 25px;
    border-top: 1px solid #e5e5e5;
}

.SchoolPost .PostBox .bd .PostCon .ConUl ul li {}

.SchoolPost .PostBox .bd .PostCon .ConUl ul li a {
    font-size: 30px;
    font-style: italic;
    font-weight: bold;
    font-family: Arial;
    display: block;
    background: #0ab455;
    padding: 10px 20px;
    color: #fff;
    width: 150px;
	    text-align: center;
}

.SchoolPost .PostBox .bd .PostCon .ConUl ul li a:hover {
    background: #089647
}

.SchoolPost .PostBox {
    padding-bottom: 60px;
}

@media(max-width:1280px) {
    .SchoolPost .PostBox .PostNav ul li {
        font-size: 16px;
    }
}

@media(max-width:1024px) {
    .SchoolPost .PostBox .PostNav ul li {
        font-size: 14px;
        line-height: 40px;
    }
    .SchoolPost .PostBox .bd .PostCon .ConUl ul li a {
        font-size: 20px;
    }
    .SchoolPost .PostBox .bd .PostCon .ConUl ul li {
        width: 250px;
        height: 90px;
    }
    .SchoolPost .PostSelect .selectBox span {
        font-size: 16px;
    }
    .SchoolPost .PostSearch {
        height: 40px;
        line-height: 30px;
    }
    .SchoolPost .PostSearch input {
        font-size: 14px;
    }
    .SchoolPost .PostSearch button {
        height: 30px;
        width: 30px;
    }
}

@media(max-width:768px) {
    .SchoolPost .PostSelect {
        margin-top: 30px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    .SchoolPost .PostSelect .selectBox .selectBtn .check {
        margin-right: 5px;
    }
    .SchoolPost .PostSelect .selectBox {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .SchoolPost .PostBox .PostNav {
        width: 100%;
    }
    .SchoolPost .PostBox .PostNav ul li {
        display: inline-block;
        line-height: 30px;
        padding: 0 5px;
        box-sizing: border-box;
        margin-left: -4px;
        height: 30px;
        margin-right: 10px;
        background: #f7f7f7;
        margin-bottom: 10px;
    }
    .SchoolPost .PostBox .PostNav ul li.on {
        background: #0ab455;
    }
    .SchoolPost .PostBox .PostNav ul li.on a {
        color: #fff;
    }
    .SchoolPost .PostBox .bd {
        width: 100%;
        margin-top: 20px;
    }
    .SchoolPost .PostBox .PostNav ul li.on::before {
        display: none;
    }
    .SchoolPost .PostBox {
        padding-bottom: 30px;
    }
    .SchoolPost .PostBox .bd .PostCon .ConUl ul li {
        padding-top: 10px;
        height: 65px;
    }
}


/* 校招行程 */

.SchoolRoute .Part1 {
    position: relative;
}

.SchoolRoute .Part1 .PartBox {
    margin-left: -2%;
}

.SchoolRoute .Part1 .item {
    width: 14.666%;
    margin-left: 2%;
    float: left;
    height: 136px;
    background: #f8f8f8;
    margin-bottom: 30px;
    line-height: 136px;
    cursor: pointer;
}

.SchoolRoute .Part1 .item .tit h1 {
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    position: relative;
}

.SchoolRoute .Part1 .item .itemCom {
    position: absolute;
    width: 100%;
    left: 0;
    top: 150px;
    background: #fff;
    display: none;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 25px 90px;
}

.SchoolRoute .Part1 .item .itemCom ul {
    text-align: left;
    line-height: 30px;
}

.SchoolRoute .Part1 .item .itemCom ul li {
    display: inline-block;
    text-align: left;
    margin-left: -4px;
    line-height: 30px;
    margin-right: 30px;
}

.SchoolRoute .Part1 .item .itemCom ul li:first-child {
    min-width: 40%;
}

.SchoolRoute .Part1 .item .itemCom ul li:nth-child(2) {
    min-width: 10%;
}

.SchoolRoute .Part1 .item .itemCom ul li:nth-child(3) {
    min-width: 20%;
}

.SchoolRoute .Part1 .item .itemCom ul li h1 {
    font-size: 16px;
    position: relative;
}

.SchoolRoute .Part1 .item .itemCom ul li h1::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0ab455;
    position: absolute;
    left: -20px;
    top: 50%;
    margin-top: -2.5px;
}

.SchoolRoute .Part1 .item .itemCom ul li .dec {
    font-size: 14px;
    color: #666;
}

.SchoolRoute .Part1 .item.on .tit h1 {
    color: #0ab455;
}

.SchoolRoute .Part1 .item.on .tit h1::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/more2.png) no-repeat top center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -10px;
}

.SchoolRoute .Part1 .item.onn .itemCom {
    top: 300px;
}

.SchoolRoute .Part2 .PartBox {
    overflow-y: auto;
    box-sizing: border-box;
    padding-right: 10px;
    height: 447px;
}

.SchoolRoute .Part2 .PartBox table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.SchoolRoute .Part2 .PartBox table td {
    padding: 20px 10px;
    color: #666;
    text-align: center;
    border: 1px solid #eee;
    box-sizing: border-box;
}

.SchoolRoute .Part2 .PartBox table tr:first-child {
    background: #0ab455;
}

.SchoolRoute .Part2 .PartBox table tr:first-child td {
    color: #fff;
    border: none;
    font-size: 18px;
    padding: 25px 10px;
}

@media(max-width:1024px) {
    .SchoolRoute .Part1 .item {
        height: 90px;
        line-height: 90px;
    }
    .SchoolRoute .Part1 .item .tit h1 {
        font-size: 20px;
    }
    .SchoolRoute .Part1 .item .itemCom {
        top: 90px;
    }
    .SchoolRoute .Part1 .item.onn .itemCom {
        top: 210px;
    }
    .SchoolRoute .Part1 .item.on .tit h1::after {
        bottom: 10px;
    }
    .SchoolRoute .Part2 .PartBox table td {
        padding: 10px;
    }
    .SchoolRoute .Part2 .PartBox table tr:first-child td {
        font-size: 16px;
    }
}

@media(max-width:768px) {
    .SchoolRoute .Part1 .item {
        height: 60px;
        line-height: 60px;
        margin-bottom: 10px;
    }
    .SchoolRoute .Part1 .item .tit h1 {
        font-size: 16px;
    }
    .SchoolRoute .Part1 .item.on .tit h1::after {
        display: none;
    }
    .SchoolRoute .Part1 .item .itemCom {
        padding: 20px 40px;
        top: 60px;
    }
    .SchoolRoute .Part1 .item .itemCom ul li {
        width: 100%;
        margin-right: 0;
    }
    .SchoolRoute .Part1 .item.onn .itemCom {
        top: 120px;
    }
    .SchoolRoute .Part2 .PartBox table tr:first-child td {
        font-size: 14px;
        padding: 15px 5px;
    }
    .SchoolRoute .Part2 .PartBox table tr td {
        padding: 10px;
    }
}


/* 解决方案详情 */

.SoluInfo .Contain {
    overflow: hidden;
}

.SoluInfo .Solution_btn {
    width: 50%;
    float: right;
    overflow: hidden;
    padding: 30px 0px 0px;
}

.SoluInfo .Solution_btn ul {
    float: left;
    overflow: hidden;
}

.SoluInfo .Solution_btn ul li {
    float: left;
    margin-right: 10px;
}

.SoluInfo .Solution_btn ul li a {
    display: block;
    width: 100px;
    height: 36px;
    background: #fff;
    text-align: center;
    line-height: 36px;
	font-size:18px;
	font-weight: bold;
}

.SoluInfo .Solution_btn ul li.on a {
    color: #0ab455;
}

.SoluInfo .Solution_btn .Back_btn {
    display: block;
    float: right;
    width: 100px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    background: #fff;
    border: 1px solid #009f3d;
    border-radius: 3px;
}

.SoluInfo .Solution_btn .Back_btn:hover {
    background: #009f3d;
    border: 1px solid #009f3d;
    color: #fff;
}

.SoluInfo .Part {
    padding: 60px 0;
}

.SoluInfo .Part1 .item {}

.SoluInfo .Part1 .item .img {
    width: 45%;
    padding-top: 410px;
}

.SoluInfo .Part1 .item .txt {
    width: 50%;
    padding-top: 50px;
}

.SoluInfo .Part1 .item .txt h1 {
    font-size: 36px;
}

.SoluInfo .Part1 .item .txt b {
    display: block;
    width: 100px;
    height: 3px;
    background: #0ab455;
    margin: 40px 0;
}

.SoluInfo .Part1 .item .txt .dec {
    color: #666;
    line-height: 36px;
}

.SoluInfo .Part1 .slick-arrow {
    width: 50px;
    height: 50px;
    margin-top: 0;
    bottom: 20px;
    top: auto;
}

.SoluInfo .Part1 .slick-arrow::before {
    display: none;
}

.SoluInfo .Part1 .slick-arrow.slick-prev {
    background: url(../uploadfiles/image/soprev1.png) no-repeat center center;
    background-size: 100% 100%;
    left: 50%;
}

.SoluInfo .Part1 .slick-arrow.slick-next {
    background: url(../uploadfiles/image/sonext1.png) no-repeat center center;
    background-size: 100% 100%;
    left: 55%;
}

.SoluInfo .Part1 .slick-arrow:hover {
    border: none;
}

.SoluInfo .Part2 {
    position: relative;
}

.SoluInfo .Part2::before {
    content: '';
    display: block;
    width: 100%;
    height: 50%;
    max-height: 480px;
    background: #f9f9f9;
    position: absolute;
    top: 0;
    left: 0;
}

.SoluInfo .Part .title {
    position: relative;
    z-index: 99;
    margin-bottom: 50px;
}
.SoluInfo .Part2 .title{
	display:none;
}
.SoluInfo .Part .title h1 {
    font-size: 30px;
    position: relative;
}

.SoluInfo .Part .title h1::before {
    content: '';
    display: block;
    width: 5px;
    height: 25px;
    background: #0ab455;
    position: absolute;
    left: -20px;
    top: 50%;
    margin-top: -12.5px;
}

.SoluInfo .Part2 .PartBox {
    position: relative;
    z-index: 99;
    padding: 0 70px;
}

.SoluInfo .Part2 .PartBox .img {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 75px;
    text-align: center;
}
.SoluInfo .Part3 {
	display:none;
}
.SoluInfo .Part3 .PartBox {
    margin-left: -3%;
}
.SoluInfo.Solutionsss .Part3 .PartBox {
    margin-left: 0%;
}
.SoluInfo .Part3 .PartBox .item {
    width: 47%;
    float: left;
    box-sizing: border-box;
    position: relative;
    margin-left: 3%;
    padding-left: 70px;
    background: #0ab455;
    margin-bottom: 20px;
}

.SoluInfo .Part3 .PartBox .item .txt {
    width: 70px;
    box-sizing: border-box;
    position: absolute;
    width: 70px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
    top: 0;
    left: 0;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
    color: #fff;
-ms-writing-mode:tb-rl;
}

.SoluInfo .Part3 .PartBox .item .img {
    padding-top: 55%;
}

.SoluInfo .Edit_part{}

@media(max-width:1280px) {
    .SoluInfo .Part1 .item .txt h1 {
        font-size: 25px;
    }
    .SoluInfo .Part1 .item .txt {
        padding-top: 30px;
    }
    .SoluInfo .Part1 .item .txt b {
        margin: 30px 0;
    }
    .SoluInfo .Part2 .PartBox {
        padding: 0;
    }
    .SoluInfo .Part3 .PartBox .item .txt {
        font-size: 16px;
        line-height: 18px;
    }
    .SoluInfo .Part .title h1 {
        font-size: 25px;
    }
}

@media(max-width:1024px) {
    .SoluInfo .Part {
        padding: 20px 0;
    }
    .SoluInfo .Part1 .item .img {
        width: 100%;
        padding-top: 60%;
    }
    .SoluInfo .Part1 .item .txt {
        width: 100%;
        padding-bottom: 60px;
    }
    .SoluInfo .Part1 .item .txt h1 {
        font-size: 18px;
    }
    .SoluInfo .Part1 .item .txt b {
        width: 40px;
        margin: 20px 0;
    }
    .SoluInfo .Part1 .slick-arrow {
        width: 30px;
        height: 30px;
    }
    .SoluInfo .Part1 .slick-arrow.slick-prev {
        left: 0;
    }
    .SoluInfo .Part1 .slick-arrow.slick-next {
        left: 50px;
    }
    .SoluInfo .Part1 .item .txt .dec {
        line-height: 28px;
    }
    .SoluInfo .Part2 .PartBox .img {
        padding: 10px;
    }
    .SoluInfo .Part .title {
        margin-bottom: 20px;
    }
    .SoluInfo .Part .title h1 {
        font-size: 20px;
    }
    .SoluInfo .Part3 .PartBox .item {
        width: 97%;
        padding-left: 0;
    }
    .SoluInfo .Part3 .PartBox .item .txt {
        position: static;
        width: 100%;
        box-sizing: border-box;
        padding: 15px 10px;
    }
}


/* 走进CET */

.About .nCon {
    margin: 100px 0;
}

.About .Part1 {}

.About .Part1 .PartBox {}

.About .Part1 .PartBox .txt {
    width: 45%;
}

.About .Part1 .PartBox .txt .AboutCon {
    color: #666;
    line-height: 30px;
    height: 450px;
    overflow: auto;
}

.About .Part1 .PartBox .img {
    width: 50%;
    padding-top: 558px;
}

.About .Part1 .PartBox .AboutNum {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}


/* 
.About .Part2 {
    background: url(../uploadfiles/image/about2.png) no-repeat center center;
    background-size: cover;
}

.About .Part2 .PartBox .item {
    width: 33.33%;
    box-sizing: border-box;
    float: left;
    height: 758px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px 6%;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.About .Part2 .PartBox .item:first-child {
    border-left: none;
}

.About .Part2 .PartBox .item .ico {
    height: 96px;
}

.About .Part2 .PartBox .item .tit {
    margin-top: 40px;
}

.About .Part2 .PartBox .item .tit span {
    font-size: 14px;
    color: #fff;
    opacity: 0.7;
    text-transform: uppercase;
    font-family: Arial;
}

.About .Part2 .PartBox .item .tit h1 {
    font-size: 30px;
    color: #fff;
    margin-top: 10px;
}

.About .Part2 .PartBox .item .txt {
    transition: all .5s;
    -webkit-transition: all .5s;
    opacity: 0;
    transform: translateY(60px);
    -webkit-transform: translateY(60px);
    height: 280px;
}

.About .Part2 .PartBox .item .txt b {
    display: block;
    width: 60px;
    height: 2px;
    background: #0ab455;
    margin: 30px auto;
}

.About .Part2 .PartBox .item .txt p {
    color: #fff;
    line-height: 36px;
}

.About .Part2 .PartBox .item:hover .txt {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.About .Part2 .PartBox .item:hover {
    background: rgba(0, 0, 0, 0.2);
} */

.About .newPart2 {
    background: #f8f8f8;
    padding: 100px 0;
}

.About .newPart2 ul {
    overflow: hidden;
}

.About .newPart2 ul li {
    overflow: hidden;
    /* max-height: 380px; */
}

.About .newPart2 ul li .img {
    width: 50%;
    padding-top: 23.8%;
}

.About .newPart2 ul li .txtbox {
   width: 42%;
    padding: 4.5% 0 0 8%;
}

.About .newPart2 ul li .txtbox .about_ico {
    /* padding-top: 25%; */
    width: 25%;
	display: none;
}

.About .newPart2 ul li .txtbox .tit {
    color: #333;
    font-weight: bold;
    font-size: 24px;
    position: relative;
    padding: 30px 0;
    margin: 10px 0 20px;
}

.About .newPart2 ul li .txtbox span {
    color: #cccccc;
    font-family: Arial;
    margin-left: 10px;
}

.About .newPart2 ul li .txtbox .tit::before {
    content: '';
    display: block;
    width: 18px;
    height: 3px;
    background: #17c463;
    position: absolute;
    left: 0;
    bottom: 0px;
}

.About .newPart2 ul li .txtbox .txt p {
    color: #666666;
    font-size: 18px;
    line-height: 30px;
}

@media(max-width:1440px) {
    .About .newPart2 ul li .txtbox .about_ico {
        /* padding-top: 23%; */
        width: 23%;
    }
    .About .newPart2 ul li .txtbox .tit {
        padding: 17px 0;
    }
    .About .newPart2 ul li .txtbox {
        width: 43%;
    padding: 5% 0 0% 5%;
    }
}

@media(max-width:1366px) {
    .About .newPart2 ul li .txtbox .about_ico {
        /* padding-top: 20%; */
        width: 20%;
    }
    .About .newPart2 ul li .txtbox .tit {
        margin: 10px 0 15px;
    }
	.About .newPart2 ul li .txtbox {
        width: 43%;
    padding: 5% 0 0% 4%;
    }
    
}
@media(max-width:1240px) {
	.About .newPart2 ul li .txtbox {
    width: 45%;
    padding: 4% 0 0% 4%;
}
.About .newPart2 ul li .txtbox .txt p {
    font-size: 16px;
}
}
@media(max-width:980px) {
    .About .newPart2 ul li .txtbox .about_ico {
        width: 15%;
    }
    .About .newPart2 ul li .txtbox .tit {
        margin: 0;
    }
    .About .newPart2 ul li .txtbox .txt p {
        font-size: 16px;
    }
}

@media(max-width:768px) {
    .About .newPart2 {
        padding: 30px;
    }
    .About .newPart2 ul li .txtbox .about_ico {
        display: none;
    }
    .About .newPart2 ul li .txtbox .tit {
        margin: 0;
    }
    .About .newPart2 ul li .txtbox {
        float: none;
        width: 90%;
        padding: 5% 0;
    }
    .About .newPart2 ul li .img {
        float: none;
        width: 100%;
    }
}

.About .Part3 .PartBox {}

.About .Part3 .PartBox .slider-nav {
    position: relative;
    margin-bottom: 50px;
}

.About .Part3 .PartBox .slider-nav::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    position: absolute;
    bottom: 8.5px;
    left: 0;
}

.About .Part3 .PartBox .slider-nav .item {
    text-align: center;
    height: 70px;
    padding-bottom: 10px;
    line-height: 70px;
    font-size: 24px;
    color: #999;
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.About .Part3 .PartBox .slider-nav .item::after {
    content: '';
    display: block;
    width: 17px;
    height: 17px;
    background: url(../uploadfiles/image/dot.png) no-repeat center center;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -8.5px;
}

.About .Part3 .PartBox .slider-nav .item.slick-current::after {
    background: url(../uploadfiles/image/dotc.png) no-repeat center center;
}

.About .Part3 .PartBox .slider-nav .item.slick-current {
    font-weight: bold;
    color: #333;
    font-size: 30px;
}

.About .Part3 .PartBox .slider-for {}

.About .Part3 .PartBox .slider-for .item {
    padding: 70px;
    background: #f8f8f8;
}

.About .Part3 .PartBox .slider-for .item .img {
    width: 36%;
    padding-top: 360px;
}

.About .Part3 .PartBox .slider-for .item .txt {
    width: 62%;
}

.About .Part3 .PartBox .slider-for .item .txt .date {
    font-size: 48px;
    color: #17c463;
    font-weight: bold;
    margin-bottom: 10px;
}

.About .Part3 .PartBox .slider-for .item .txt .dec {
    line-height: 36px;
}

.About .Part3 .PartBox .slider-for .item .txt .dec p::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #0ab455;
    border-radius: 50%;
    position: relative;
    margin-right: 5px;
    top: -2px;
}

.About .Part3 .PartBox .slider-for .slick-track {
    padding-bottom: 19px;
}

.About .Part3 .PartBox .slider-for .slick-arrow {
    width: 38px;
    height: 38px;
    line-height: 38px;
    position: absolute;
    bottom: 0;
    margin-top: 0;
    background: #d4d4d4;
    color: #fff;
    border-radius: 0;
    top: auto;
}

.About .Part3 .PartBox .slider-for .slick-arrow.slick-prev {
    left: 47%;
}

.About .Part3 .PartBox .slider-for .slick-arrow.slick-next {
    right: 47%;
}

.About .Part3 .PartBox .slider-for .slick-arrow:hover {
    background: #0ab455;
}

.About .Part4 .slider {
    overflow: visible;
}

.About .Part4 .PartBox1 .PartCon {
    overflow: hidden;
}

.About .Part4 .PartBox1 {
    background: url(../uploadfiles/image/honorbg.png) no-repeat top center;
    padding: 100px 0;
}

.About .Part4 .PartBox1 .slick-list {}

.About .Part4 .PartBox1 .slick-track {
    padding-bottom: 10px;
}

.About .Part4 .PartBox1 .item {}

.About .Part4 .PartBox1 .item .img {
    padding-top: 70%;
}

.About .Part4 .PartBox1 .item a {
    display: block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
}

.About .Part4 .PartBox1 .slick-dots {
    bottom: -30px;
}

.About .Part4 .PartBox2 .slider {
    padding: 0 80px;
}

.About .Part4 .PartBox2 .slick-track {}

.About .Part4 .PartBox2 .item {
    transition: all .5s;
    -webkit-transition: all .5s;
    padding: 30px 0;
}

.About .Part4 .PartBox2 .item a {
    display: block;
    margin: 0 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.About .Part4 .PartBox2 .item .img {
    padding-top: 144%;
}

.About .Part4 .PartBox2 .slick-track {
    padding: 10px 0;
}

.About .Part4 .PartBox2 .item.slick-center {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.About .Part4 .PartBox2 .slick-arrow {
    width: 56px;
    height: 56px;
    margin-top: -28px;
}

.About .Part4 .PartBox2 .slick-arrow.slick-prev {
    background: url(../uploadfiles/image/soprev.png) no-repeat center center;
    background-size: 100% 100%;
    left: 0;
}

.About .Part4 .PartBox2 .slick-arrow.slick-next {
    background: url(../uploadfiles/image/sonext.png) no-repeat center center;
    background-size: 100% 100%;
    right: 0;
}

.About .Part4 .PartBox2 .slick-arrow::before {
    display: none;
}

.About .Part5 .PartBox {
    margin-left: -10px;
}

.About .Part5 .PartBox .item {
    width: 33.33%;
    float: left;
    margin-bottom: 10px;
    position: relative;
}

.About .Part5 .PartBox .item a {
    display: block;
    margin-left: 10px;
    position: relative;
}

.About .Part5 .PartBox .item .img {
    padding-top: 368px;
}

.About .Part5 .PartBox .item:first-child,
.About .Part5 .PartBox .item:nth-child(2) {
    width: 50%;
}

.About .Part5 .PartBox .item .bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

.About .Part5 .PartBox .item .txt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 40px;
}

.About .Part5 .PartBox .item .txt .txtbox b {
    display: block;
    width: 30px;
    height: 3px;
    background: #0ab455;
}

.About .Part5 .PartBox .item .txt .txtbox p {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    margin-top: 15px;
}

.About .Part5 .PartBox .item .more {
    transition: all .5s;
    -webkit-transition: all .5s;
    opacity: 0;
    width: 0;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.About .Part5 .PartBox .item .more span {
    color: #fff;
    font-size: 14px;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px solid #fff;
    width: 70px;
    margin: 0 auto;
}

.About .Part5 .PartBox .item .more span b {
    font-family: "宋体";
}

.About .Part5 .PartBox .item:hover .more {
    opacity: 1;
    width: 120px;
}

.About .Part5 .PartBox .item:hover .bg {
    background: rgba(10, 180, 85, 0.9);
}

@media(max-width:1366px) {
    .About .Part1 .PartBox .txt {
        width: 47%;
    }
    .AboutNum ul li p strong {
        font-size: 40px;
    }
    .About .Part2 .PartBox .item .tit h1 {
        font-size: 25px;
    }
    .About .Part3 .PartBox .slider-nav .item {
        font-size: 20px;
    }
    .About .Part3 .PartBox .slider-nav .item.slick-current {
        font-size: 25px;
    }
    .About .Part3 .PartBox .slider-for .item .txt .date {
        font-size: 35px;
    }
    .About .Part5 .PartBox .item .txt .txtbox p {
        font-size: 20px;
    }
    .About .Part3 .PartBox .slider-for .slick-arrow.slick-next {
        right: 45%;
    }
    .About .Part3 .PartBox .slider-for .slick-arrow.slick-prev {
        left: 45%;
    }
}

@media(max-width:1024px) {
    .About .Part {
        margin: 30px 0;
    }
    .About .Part1 .PartBox .img {
        width: 100%;
        padding-top: 70%;
        margin-top: 20px;
    }
    .About .Part1 .PartBox .txt {
        width: 100%;
    }
    .About .Part1 .PartBox .txt .AboutCon {
        height: auto;
        line-height: 25px;
    }
    .About .Part2 .PartBox .item {
        height: 560px;
    }
    .About .Part2 .PartBox .item .ico {
        height: 40px;
    }
    .About .Part2 .PartBox .item .txt {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        height: 280px;
    }
    .About .Part2 .PartBox .item .txt p {
        line-height: 30px;
    }
    .About .Part2 .PartBox .item .ico img {
        max-width: 60px;
        max-height: 60px;
    }
    .About .Part3 .PartBox .slider-nav .item {
        font-size: 16px;
    }
    .About .Part3 .PartBox .slider-nav .item.slick-current {
        font-size: 16px;
    }
    .About .Part3 .PartBox .slider-for .item {
        padding: 20px;
    }
    .About .Part3 .PartBox .slider-for .item .img {
        width: 100%;
        padding-top: 68%;
    }
    .About .Part3 .PartBox .slider-for .item .txt {
        width: 100%;
        margin-top: 20px;
    }
    .About .Part3 .PartBox .slider-for .item .txt .date {
        font-size: 25px;
    }
    .About .Part3 .PartBox .slider-for .item .txt .dec {
        line-height: 30px;
    }
}

@media(max-width:768px) {
    .AboutNum ul li p strong {
        font-size: 20px;
    }
    .AboutNum ul li p {
        font-size: 12px;
    }
    .AboutNum ul li span {
        font-size: 14px;
    }
    .AboutNum ul li {
        width: 33.33%;
        height: 120px;
    }
    .About .Part2 .PartBox .item {
        width: 100%;
        height: auto;
        padding: 30px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    .About .Part2 .PartBox .item .txt {
        height: auto;
    }
    .About .Part2 .PartBox .item:hover .txt {
        height: auto;
    }
    .About .Part2 .PartBox .item .tit {
        margin-top: 10px;
    }
    .About .Part2 .PartBox .item .tit h1 {
        font-size: 20px;
    }
    .About .Part2 .PartBox .item .txt b {
        width: 40px;
        margin: 10px auto;
    }
    .About .Part2 .PartBox .item .ico img {
        max-width: 40px;
        max-height: 40px;
    }
    .About .Part3 .PartBox .slider-for .slick-arrow.slick-next {
        right: 35%;
    }
    .About .Part3 .PartBox .slider-for .slick-arrow.slick-prev {
        left: 35%;
    }
    .About .Part4 .PartBox1 {
        padding: 30px 0;
        background-size: 120%;
    }
    .About .Part4 .PartBox2 {
        margin-top: 30px;
    }
    .About .Part4 .PartBox2 .slider {
        padding: 0 30px;
    }
    .About .Part4 .PartBox2 .slick-arrow {
        width: 30px;
        height: 30px;
    }
    .About .Part5 .PartBox .item {
        width: 100%;
    }
    .About .Part5 .PartBox .item:first-child,
    .About .Part5 .PartBox .item:nth-child(2) {
        width: 100%;
    }
    .About .Part5 .PartBox .item .img {
        padding-top: 60%;
    }
    .About .Part5 .PartBox .item .txt {
        padding: 10px 20px;
    }
    .About .Part5 .PartBox .item .txt .txtbox p {
        font-size: 16px;
    }
}

.About .Part {
    position: relative;
}

.maodian {
    position: absolute;
    top: -100px;
}

.ConnBox {
    position: relative;
}

.About .Part6 {
    padding: 90px 0;
    background: #f8f8f8;
}


/* 地图 */

.map {
    position: relative;
    font-size: 14px;
    width: 1600px;
}

.map ul li {
    position: absolute;
    cursor: pointer;
}

.map ul li .dotbox {
    width: 19px;
    height: 25px;
    background-image: url(../uploadfiles/image/mapico1.png);
    background-repeat: no-repeat;
    background-position: bottom center;
}

.map ul li .name {
    position: relative;
    z-index: 99;
}

.map ul li .txt {
    padding-left: 120px;
    position: absolute;
    display: none;
}

.map ul li .txt .txtbox {
    width: 110px;
    height: 20px;
    border-left: 1px dashed #adadad;
    border-bottom: 1px dashed #adadad;
    position: absolute;
    left: 9.5px;
    top: 0;
}

.map ul li .txt .img {
    background: #fff;
    width: 180px;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 999;
}

.map ul li .txt .img p {
    line-height: 35px;
    text-align: center;
}

.map ul li.on .txt {
    display: block;
}

.map ul li.mg {
    top: 260px;
    left: 199px;
}

.map ul li.mg .name {
    top: -13px;
    left: 20px;
}

.map ul li.bx {
    top: 525px;
    left: 520px;
}

.map ul li.dg {
    top: 230px;
    left: 785px;
}

.map ul li.dg .name {
    left: 18px;
    top: -15px;
}

.map ul li.zby {
    top: 545px;
    left: 857px;
}

.map ul li.zby .name {
    left: -40px;
    top: -10px;
}

.map ul li.teq {
    top: 295px;
    left: 901px;
}

.map ul li.teq .name {
    left: -40px;
    top: -10px;
}

.map ul li.ysl {
    top: 336px;
    left: 903px;
}

.map ul li.ysl .name {
    left: -40px;
    top: -10px;
}

.map ul li.sd {
    top: 412px;
    left: 870px;
}

.map ul li.sd .name {
    right: -20px;
    top: -12px;
}

.map ul li.ylk {
    top: 329px;
    left: 938px;
}

.map ul li.ylk .name {
    left: -15px;
    top: -35px;
}

.map ul li.aseby {
    top: 445px;
    left: 917px;
}

.map ul li.aseby .name {
    right: -20px;
    top: -12px;
}

.map ul li.msbk {
    top: 565px;
    left: 897px;
}

.map ul li.msbk .name {
    right: -20px;
    top: -12px;
}

.map ul li.yl {
    top: 328px;
    left: 974px;
}

.map ul li.yl .name {
    right: -20px;
    top: -12px;
}

.map ul li.bjst {
    top: 342px;
    left: 1055px;
}

.map ul li.bjst .name {
    left: -49px;
    top: -6px;
}

.map ul li.hskst {
    top: 252px;
    left: 1085px;
}

.map ul li.hskst .name {
    left: -68px;
    top: -10px;
}

.map ul li.yd {
    top: 350px;
    left: 1085px;
}

.map ul li.md {
    top: 378px;
    left: 1167px;
}

.map ul li.md .name {
    left: 17px;
    top: -17px;
}

.map ul li.tg {
    top: 403px;
    left: 1186px;
}

.map ul li.tg .name {
    left: -30px;
    top: -15px;
}

.map ul li.jpz {
    top: 424px;
    left: 1208px;
}

.map ul li.jpz .name {
    left: -40px;
    top: -10px;
}

.map ul li.mlxy {
    top: 455px;
    left: 1193px;
}

.map ul li.mlxy .name {
    left: -55px;
    top: -15px;
}

.map ul li.xjp {
    top: 472px;
    left: 1204px;
}

.map ul li.xjp .name {
    left: -40px;
    top: -15px;
}

.map ul li.mgg {
    top: 260px;
    left: 1191px;
}

.map ul li.mgg .name {
    right: -20px;
    top: -12px;
}

.map ul li.zgsz {
    top: 375px;
    left: 1258px;
}

.map ul li.zgsz .dotbox {
    background-image: url(../uploadfiles/image/mapico2.png);
}

.map ul li.zgsz .name {
    left: -60px;
    top: -32px;
    color: #fff;
    font-weight: bold;
}

.map ul li.zgxg {
    top: 380px;
    left: 1235px;
}

.map ul li.zgxg .name {
    left: -20px;
    top: 0;
}

.map ul li.zgtw {
    top: 373px;
    left: 1281px;
}

.map ul li.zgtw .name {
    right: -20px;
    top: -12px;
}

.map ul li.sd {
    top: 412px;
    left: 870px;
}

.map ul li.sd .name {
    right: -20px;
    top: -12px;
}

.map ul li.yn {
    top: 418px;
    left: 1226px;
}

.map ul li.yn .name {
    right: -20px;
    top: -12px;
}

.map ul li.ydnxy {
    top: 511px;
    left: 1222px;
}

.map ul li.ydnxy .name {
    right: -20px;
    top: -12px;
}

.map ul li.hg {
    top: 313px;
    left: 1313px;
}

.map ul li.hg .name {
    right: -20px;
    top: -12px;
}

.map ul li.flb {
    top: 407px;
    left: 1283px;
}

.map ul li.flb .name {
    right: -20px;
    top: -12px;
}

.map ul li.adly {
    top: 595px;
    left: 1340px;
}

.map ul li.adly .name {
    right: -20px;
    top: -12px;
}

.map ul li.jnd {
    top: 260px;
    left: 395px;
}

.map ul li.jnd .name {
    top: -18px;
    left: 21px;
}

.map ul li.qzyz {
    top: 330px;
    left: 360px;
}

.map ul li.qzyz .name {
    top: -18px;
    left: -56px;
}

.map ul li.mxg {
    top: 398px;
    left: 305px;
}

.map ul li.mxg .name {
    top: -18px;
    left: -44px;
}

.map ul li.hdls {
    top: 415px;
    left: 356px;
}

.map ul li.hdls .name {
    top: -18px;
    left: 20px;
}

.map ul li.njlg {
    top: 424px;
    left: 365px;
}

.map ul li.njlg .name {
    top: -6px;
    left: -52px;
}

.map ul li.glby {
    top: 465px;
    left: 415px;
}

.map ul li.glby .name {
    top: -18px;
    left: 20px;
}

.map ul li.egde {
    top: 511px;
    left: 400px;
}

.map ul li.egde .name {
    top: -6px;
    left: -52px;
}

.map ul li.zl {
    top: 634px;
    left: 428px;
}

.map ul li.zl .name {
    top: -18px;
    left: -30px;
}

.map ul li.agt {
    top: 644px;
    left: 482px;
}

.map ul li.agt .name {
    top: -8px;
    left: -40px;
}

.map ul li.nw {
    top: 176px;
    left: 791px;
}

.map ul li.nw .name {
    top: -16px;
    left: -28px;
}

.map ul li.dm {
    top: 200px;
    left: 785px;
}

.map ul li.dm .name {
    top: -8px;
    left: -28px;
}

.map ul li.rd {
    top: 199px;
    left: 803px;
}

.map ul li.rd .name {
    top: -15px;
    left: 20px;
}

.map ul li.els {
    top: 184px;
    left: 904px;
}

.map ul li.els .name {
    top: -15px;
    left: 20px;
}

.map ul li.bels {
    top: 219px;
    left: 867px;
}

.map ul li.bels .name {
    top: -18px;
    left: 20px;
}

.map ul li.wkl {
    top: 238px;
    left: 879px;
}

.map ul li.wkl .name {
    top: -15px;
    left: 20px;
}

.map ul li.medw {
    top: 254px;
    left: 871px;
}

.map ul li.medw .name {
    top: -12px;
    left: -52px;
}

.map ul li.ymny {
    top: 291px;
    left: 942px;
}

.map ul li.ymny .name {
    top: -35px;
    left: -41px;
}

.map ul li.asbj {
    top: 290px;
    left: 959px;
}

.map ul li.asbj .name {
    top: -15px;
    left: 20px;
}

.map ul li.wzbkst {
    top: 288px;
    left: 1054px;
}

.map ul li.wzbkst .name {
    top: 0;
    left: -20px;
}

.map ul li.stalb {
    top: 371px;
    left: 940px;
}

.map ul li.stalb .name {
    top: 0;
    left: -20px;
}

.map ul li.mjlg {
    top: 371px;
    left: 1144px;
}

.map ul li.mjlg .name {
    top: -35px;
    left: -20px;
}
@media ( min-width:1921px) {
	.About .Part4 .PartBox1 {
    background: url(../uploadfiles/image/honorbg.png) no-repeat top center;
    padding: 100px 0;
    max-width: 1600px;
    margin: 0 auto;
}
}
@media(max-width:1680px) {
    .map {
        zoom: 0.95;
    }
}

@media(max-width:1600px) {
    .map {
        zoom: 0.85;
    }
}

@media(max-width:1400px) {
    .map {
        zoom: 0.75;
        font-size: 16px;
    }
}

@media(max-width:1280px) {
    .About .Part6 .PartBox {
        overflow: auto;
    }
}

@media(max-width:1024px) {
    .About .Part6 {
        padding: 30px 0;
    }
    .map {
        zoom: 0.6;
    }
}


/* 地图 */


/*
.map ul li {
    position: absolute;
    cursor: pointer;
}

.map ul li .dotbox {
    width: 19px;
    height: 25px;
    background-image: url(../uploadfiles/image/mapico1.png);
    background-repeat: no-repeat;
    background-position: bottom center;
}

.map ul li .name {
    position: relative;
    z-index: 99;
}

.map ul li .txt {
    padding-left: 120px;
    position: absolute;
    display: none;
}

.map ul li .txt .txtbox {
    width: 110px;
    height: 20px;
    border-left: 1px dashed #adadad;
    border-bottom: 1px dashed #adadad;
    position: absolute;
    left: 9.5px;
    top: 0;
}

.map ul li .txt .img {
    background: #fff;
    width: 180px;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 999;
}

.map ul li .txt .img p {
    line-height: 35px;
    text-align: center;
}

.map ul li.on .txt {
    display: block;
}

.map ul li.mg {
    top: 285px;
    left: 300px;
}

.map ul li.bx {
    top: 525px;
    left: 520px;
}

.map ul li.dg {
    top: 230px;
    left: 785px;
}

.map ul li.dg .name {
    left: 18px;
    top: -15px;
}

.map ul li.zby {
    top: 545px;
    left: 857px;
}

.map ul li.zby .name {
    left: -40px;
    top: -10px;
}

.map ul li.teq {
    top: 295px;
    left: 901px;
}

.map ul li.teq .name {
    left: -40px;
    top: -10px;
}

.map ul li.ysl {
    top: 336px;
    left: 903px;
}

.map ul li.ysl .name {
    left: -40px;
    top: -10px;
}

.map ul li.sd {
    top: 412px;
    left: 870px;
}

.map ul li.sd .name {
    right: -20px;
    top: -12px;
}

.map ul li.ylk {
    top: 291px;
    left: 942px;
}

.map ul li.ylk .name {
    left: -25px;
    top: -35px;
}

.map ul li.aseby {
    top: 445px;
    left: 917px;
}

.map ul li.aseby .name {
    right: -20px;
    top: -12px;
}

.map ul li.msbk {
    top: 565px;
    left: 897px;
}

.map ul li.msbk .name {
    right: -20px;
    top: -12px;
}

.map ul li.yl {
    top: 292px;
    left: 958px;
}

.map ul li.yl .name {
    right: -20px;
    top: -12px;
}

.map ul li.bjst {
    top: 342px;
    left: 1055px;
}

.map ul li.bjst .name {
    left: -55px;
    top: -10px;
}

.map ul li.hlkst {
    top: 252px;
    left: 1085px;
}

.map ul li.hlkst .name {
    left: -68px;
    top: -10px;
}

.map ul li.yd {
    top: 350px;
    left: 1085px;
}

.map ul li.md {
    top: 378px;
    left: 1167px;
}

.map ul li.md .name {
    left: -30px;
    top: -15px;
}

.map ul li.tg {
    top: 403px;
    left: 1186px;
}

.map ul li.tg .name {
    left: -30px;
    top: -15px;
}

.map ul li.jps {
    top: 424px;
    left: 1208px;
}

.map ul li.jps .name {
    left: -40px;
    top: -10px;
}

.map ul li.mlxy {
    top: 455px;
    left: 1193px;
}

.map ul li.mlxy .name {
    left: -55px;
    top: -15px;
}

.map ul li.xjp {
    top: 472px;
    left: 1204px;
}

.map ul li.xjp .name {
    left: -40px;
    top: -15px;
}

.map ul li.mgg {
    top: 260px;
    left: 1191px;
}

.map ul li.mgg .name {
    right: -20px;
    top: -12px;
}

.map ul li.zhsz {
    top: 375px;
    left: 1258px;
}

.map ul li.zhsz .dotbox {
    background-image: url(../uploadfiles/image/mapico2.png);
}

.map ul li.zhsz .name {
    left: -60px;
    top: -20px;
    color: #fff;
    font-weight: bold;
}

.map ul li.zhxg {
    top: 380px;
    left: 1235px;
}

.map ul li.zhxg .name {
    left: -20px;
    top: 0;
}

.map ul li.zhtw {
    top: 373px;
    left: 1281px;
}

.map ul li.zhtw .name {
    right: -20px;
    top: -12px;
}

.map ul li.sd {
    top: 412px;
    left: 870px;
}

.map ul li.sd .name {
    right: -20px;
    top: -12px;
}

.map ul li.yn {
    top: 418px;
    left: 1226px;
}

.map ul li.yn .name {
    right: -20px;
    top: -12px;
}

.map ul li.ydnxy {
    top: 483px;
    left: 1250px;
}

.map ul li.ydnxy .name {
    right: -20px;
    top: -12px;
}

.map ul li.hg {
    top: 313px;
    left: 1313px;
}

.map ul li.hg .name {
    right: -20px;
    top: -12px;
}

.map ul li.flb {
    top: 407px;
    left: 1283px;
}

.map ul li.flb .name {
    right: -20px;
    top: -12px;
}

.map ul li.adly {
    top: 595px;
    left: 1340px;
}

.map ul li.adly .name {
    right: -20px;
    top: -12px;
}

@media(max-width:1680px) {
    .map {
        zoom: 0.95;
    }
}

@media(max-width:1600px) {
    .map {
        zoom: 0.85;
    }
}

@media(max-width:1400px) {
    .map {
        zoom: 0.75;
        font-size: 16px;
    }
}

@media(max-width:1280px) {
    .About .Part6 .PartBox {
        overflow: auto;
    }
}

@media(max-width:1024px) {
    .About .Part6 {
        padding: 30px 0;
    }
    .map {
        zoom: 0.6;
    }
}
*/


/* 地图弹出样式 */

.popboxx {
    width: 100%;
    z-index: 999;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
}

.popboxx .closebox {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.popboxx iframe {
    width: 1050px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -420px 0px 0px -525px;
    height: 719px;
    z-index: 2;
}

.popbox {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.Displaybox {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.Displaybox.Mapbox {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 764px;
    margin: -265px 0 0 -382px;
}

.Displaybox.Mapbox iframe {
    margin: 0px;
    width: 100%;
    position: static;
    height: 410px;
    border-radius: 10px;
}

.Displaybox.Mapbox .map {
    position: relative;
    font-size: 14px;
    width: 718px;
}

.Displaybox.Mapbox .map img {
    height: 410px;
}

.Displaybox .con {
    font-size: 16px;
    padding-top: 8px;
}

.Displaybox .box {
    background: #fff;
    padding: 2% 3% 3%;
    border-radius: 15px;
}

.Displaybox .close {
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    right: 20px;
    z-index: 999;
    top: 20px;
    width: 26px;
    height: 26px;
    border: 2px solid #6b6b6b;
    padding: 4px 0 0 4px;
}

.Displaybox .close span {
    display: block;
    height: 4px;
    background: #676767;
    margin: 4px 0px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    width: 21px;
}

.Displaybox .close .sp1 {
    -webkit-transform: translate(0, 4px) rotate(45deg) !important;
    -moz-transform: translate(0, 4px) rotate(45deg) !important;
    -ms-transform: translate(0, 4px) rotate(45deg) !important;
    -o-transform: translate(0, 4px) rotate(45deg) !important;
    transform: translate(0, 4px) rotate(45deg) !important;
}

.Displaybox .close .sp2 {
    -webkit-transform: translate(0, -4px) rotate(-45deg) !important;
    -moz-transform: translate(0, -4px) rotate(-45deg) !important;
    -ms-transform: translate(0, -4px) rotate(-45deg) !important;
    -o-transform: translate(0, -4px) rotate(-45deg) !important;
    transform: translate(0, -4px) rotate(-45deg) !important;
}

.Displaybox .tithead {
    color: #000000;
    font-size: 30px;
    line-height: 31px;
    margin-bottom: 28px;
}

.Displaybox .imgbox {
    border-radius: 10px;
    height: 440px;
}

.Displaybox .page {}

.Displaybox .page a {
    position: absolute;
    width: 60px;
    height: 60px;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 0 15px #ddd;
    border-radius: 50%;
    z-index: 100;
    top: 50%;
    margin-top: -30px;
    background-color: #fff;
}

.Displaybox .page a:hover {
    background-color: #da251d;
}

.Displaybox .page a.prev {
    background-image: url(../images/pageleft.png);
    left: 18px;
}

.Displaybox .page a:hover.prev {
    background-image: url(../images/pageleft0.png);
}

.Displaybox .page a.next {
    background-image: url(../images/pageright.png);
    right: 18px;
}

.Displaybox .page a.next:hover.next {
    background-image: url(../images/pageright0.png);
}

@media ( max-width:1100px) {
    .popboxx iframe {
        width: 90%;
        position: absolute;
        left: 5%;
        top: 2%;
        margin: 0px;
    }
}

@media ( max-width:998px) {
    .popboxx iframe {
        height: 90%;
    }
    .Displaybox .imgbox {
        height: 410px;
    }
    .Displaybox .close {
        top: 10px;
    }
}

@media ( max-width:768px) {
    .Displaybox .box {
        padding: 15px;
    }
    .Displaybox .tithead {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .Displaybox .page a {
        width: 30px;
        height: 30px;
        margin-top: -15px;
    }
    .Displaybox.Mapbox {
        left: 5%;
        top: 10%;
        width: 90%;
        margin: 0px;
    }
    .Displaybox .imgbox {
        height: 160px;
    }
}


/*Timeline003071 */
.Timeline003071{overflow: hidden;width: 72%;
    margin: 0 auto;}
.Timeline003071 .auto{}
.Timeline003071 .left .video{position: relative; z-index: 1; margin-bottom: 2.66vw;}
.Timeline003071 .left .play{position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: url("../images/Timeline003071_play.png")  no-repeat center center; cursor: pointer;}
.Timeline003071 .left .video video{position: absolute;background: #000; z-index: 20; left: 0; top: 0;}
.Timeline003071 .tab dd{background: rgb(234,234,234,0.72);margin-bottom: 1px;text-align: center;line-height: 2em;font-family: 'ArialMT';font-size: 28px; cursor: pointer;}
.Timeline003071 .tab dd.on{color: #fff;background: #0ab455;  font-weight: bold;}
.Timeline003071 .tab dd.on:before,
.Timeline003071 .tab dd.on:after{display: inline-block; content: '';width: 34px; vertical-align: middle;height: 1px;background: #ffffff; margin: 0 20px;}

.Timeline003071 .tab-list{ border-left:2px solid #e4e4e4; padding-left: 5vw;}
.Timeline003071 .tab-inner{position: relative;background: #0ab455;background-size: 100% auto; padding:1vw;color: #fff;}
.Timeline003071 .tab-inner:not(:last-child){margin-bottom: 20px;}
.Timeline003071 .tab-inner:before,
.Timeline003071 .tab-inner:after{position: absolute; content: '';top: 3vw;}
.Timeline003071 .tab-inner:before{ right: 100%;width: 10px; height: 0px; border: 10px solid transparent;border-right-color: #0ab455; }
.Timeline003071 .tab-inner:after{margin-left:-5.2vw; width: 18px;height: 18px;background-color: #fff;border: solid 4px #0ab455; border-radius: 50%; left: -10px;}
.Timeline003071 .tab-inner label{position: absolute;right: 0.94vw; bottom: 0.99vw;font-family: 'yuweij'; font-size: 6.25vw;color: #f18e65;}
.Timeline003071 .tab-inner time{font-family:Arial; font-weight: bold;display: block;font-size: 30px; margin-bottom: 10px;line-height: 1em;}
.Timeline003071 .tab-inner time:after{
	    width: 66px;
    height: 2px;
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    background: #fff;
}
.Timeline003071 .tab-inner ul{position: relative; z-index: 4;    overflow-y: auto;height:88px;
    overflow-x: hidden;}
	.Timeline003071 .tab-inner .MsoNormal{
		font-size:15px;
		line-height:30px;
	}
.Timeline003071 .tab-inner li{line-height: 1.667em;position: relative;padding-left: 1em;font-size: 18px;}
.Timeline003071 .tab-inner li:before{position: absolute; content: ''; left: 0; width: 5px; height: 5px; border-radius: 50%;top: 12px; background: #fff;}
.Timeline003071 .tab-inner li.b{font-weight: bold;}
@media(max-width:1366px){
	.Timeline003071 .tab dd.on:before,
.Timeline003071 .tab dd.on:after{display: inline-block; content: '';width: 14px; vertical-align: middle;height: 1px;background: #ffffff; margin: 0 20px;}

}
@media(min-width:1025px){
.Timeline003071 .left{width: 38%;}
.Timeline003071 .right{width: 50%;}
}
@media(max-width:1024px){
.Timeline003071 .left .video {text-align: center;}
.Timeline003071 .left{width: 100%;}
.Timeline003071 .right{width: 98%;}
.Timeline003071 .tab{overflow: hidden; margin-bottom: 4vw;}
.Timeline003071 .tab dd{float: left; width: 24.2%; border-right: 1px solid #fff; font-size: 2vw;}
.Timeline003071 .tab dd.on:before,
.Timeline003071 .tab dd.on:after{width: 0; margin: 0 0.5em;}
.Timeline003071 .tab-inner label{font-size: 12vw;}
}
@media(max-width:640px){
.Timeline003071 .tab-inner{padding: 5vw;}
.Timeline003071 .tab-inner:not(:last-child){margin-bottom: 3vw;}
.Timeline003071 .tab-inner time{font-size: 20px;}
.Timeline003071 .tab-inner time:after{
	    width: 35px;
    height: 2px;
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    background: #fff;
}
.Timeline003071 .tab-inner li{font-size: 3vw;}
}
@media(max-width:640px){
.Timeline003071 .tab dd{float: left; width: 100%;font-size: 3vw;}
}


.ProInfo .Edit_part p {
    padding: 9px 0;
    padding-left: 30px;
    position: relative;
}
.ProInfo .Edit_part p::before {
    content: '';
    display: block;
    width: 25px;
    height: 30px;
    background: url(../images/infoico.png) no-repeat center left;
    position: absolute;
    top: 9px;
    left: 0;
}
/*招聘首页悬浮立即投递按钮*/
.toudi_btn{
	position: fixed;
    right: 0;
    top: 30%;
    z-index: 9999;
	    margin-top: -51px;
}
.toudi_btn .btn_box{
	width: 50px;
    height: 50px;
    line-height: 50px;
    background: rgba(0, 0, 0, 0.4);
    margin-bottom: 1px;
    text-align: center;
    position: relative;
}
.toudi_btn .btn_box .ico{}
.toudi_btn .btn_box .ico img{}
.toudi_btn .btn_box .tdbox{
	    position: absolute;
    left: -60px;
    top: 70%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: all .5s;
    -webkit-transition: all .5s;
    visibility: hidden;
    opacity: 0;
	
	    width: 150px;
    left: -160px;
    height: 100%;
    background: #0ab455;
    color: #fff;
}
.toudi_btn .btn_box .tdbox:before{
	    content: '';
    display: block;
    border-left: 5px solid #0ab455;
    border-right: 5px solid transparent;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    right: -10px;
    margin-top: -5px;
    top: 50%;
}

.toudi_btn .btn_box:hover{
	    background: #0ab455;
}

.toudi_btn .btn_box:hover .tdbox {
    top: 50%;
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px){
	.toudi_btn{
		 margin-top: -36px;
	}
.toudi_btn .btn_box {
    width: 35px;
    height: 35px;
    line-height: 35px;
	 
}
}
/*网站维护页*/
.maintainBox{
	height:100vh;
	/* background-size: cover !important; */
}

.Social .pic{text-align: center;margin: 0 auto; width: 100%;}
.Social {margin-bottom:40px;}


/*21-12-22*/

.ConnBox .Part3{
	padding: 5%;
    background: #f8f8f8;
    margin-top: 5%;
}
.ConnBox .Part3 .slider{overflow:unset;}
.ConnBox .Part3 .imgbox{padding-top:56.25%;}

.ConnBox .Part3 .slick-arrow {
    color: #fff;
    background: #cccccc;
}
.ConnBox .Part3 .slick-arrow:hover {
    background: #0ab455;
}

.ConnBox .Part3 .slick-prev {
    left: -62px;
}

.ConnBox .Part3 .slick-next {
    right: -62px;
}

.ConnBox .Part3 .slider:hover .slick-prev {
    left: -62px;
}

.ConnBox .Part3 .slider:hover .slick-next {
    right: -62px;
}
@media (max-width: 768px){
	.ConnBox .Part3 .slick-prev {
    left: 0px;
}

.ConnBox .Part3 .slick-next {
    right: 0px;
}

.ConnBox .Part3 .slider:hover .slick-prev {
    left: 0px;
}

.ConnBox .Part3 .slider:hover .slick-next {
    right: 0px;
}
}

/*20220825*/
.Contact .Part1 .ContactBox .ewmbox{margin: 3% auto;clear:both;display: inline-block;width: 100%}
.Contact .Part1 .ContactBox .ewmbox div{width: 45%;text-align: center;line-height: 40px;font-size: 18px;}



.iframepop{position: fixed;left: 50%;top: 50%;width: 600px;z-index: 10000;background:#f2f2f2;box-shadow: 0 10px 10px rgba(0,0,0,0.1);padding:25px;display: none;margin:-300px 0 0 -300px;}
.iframepop .close{position: absolute;right: -20px;top: -20px;border-radius: 50%;background:#fff url(../images/close.png) center center no-repeat;width: 30px;height: 30px;}
.iframepop iframe{width: 100%;height: 600px;}

@media (max-width: 640px){
    .iframepop{width: 90%;margin-left: 0;left: 5%;padding:0;} 
}

.contact{margin-top:50px;}
.contact .btns a{display:inline-block;width:140px;height:40px;line-height:40px;text-align:center;border:1px solid #009900;border-radius: 5px;color:#009900}
.contact .btns a:hover{background:#009900;color:#fff}
.contact .code p{font-size:18px;height:40px;line-height:40px;}
.contact .code{float:left;margin-left:140px;text-align: center}


/*20230223*/
.BannerLinkPage.wapshow{display:none;}
.BannerLinkPage .BannerLinkPageContent{text-align:center;width:100%;margin:0 auto;}
.BannerLinkPage .BannerLinkPageContent .logo{text-align: center;margin:20px 0 0 0;}
.BannerLinkPage .BannerLinkPageContent .con{line-height:2;padding:30px 0 20px 0;}
.BannerLinkPage .BannerLinkPageContent .con img{display:block;margin:0 auto;}
.BannerLinkPage iframe{height:99vh;}
.BannerLinkbtn{text-align:center;margin-top:50px;}
.BannerLinkbtn a{display:inline-block;line-height:35px;padding:0 25px;background:url(../images/img.jpg) no-repeat center center;color:#fff;background-size:100% 100%;border-radius:5px;}
@media(max-width:1024px)
{
    .BannerLinkPage .BannerLinkPageContent .logo img{max-width:60%;}
    .BannerLinkPage.wapshow{display:block;}
    .BannerLinkPage.pcshow{display:none;}
    }


