@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "微软雅黑";
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

.clear {
    overflow: hidden;
    clear: both;
}


/* 手机导航 */

.mobile-inner-header {
    background-color: rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 60px;
    display: none;
    line-height: 60px;
    text-align: center;
    color: #333;
    font-weight: bold;
    font-size: 22px;
}

.mobile-inner-header-icon {
    color: #333;
    height: 60px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 60px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    outline: none;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgba(0, 0, 0, 1);
}

.mobile-inner-header img {
    height: 95%;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    z-index: 999;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    width: 80%;
    margin-left: 10%;
    color: #000;
    border-bottom: solid 1px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav a:hover {
    color: rgba(0, 0, 0, 0.4);
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}


/* 网页头部 */

.header {
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 999;
    box-shadow: 0 0 10px #ccc;
    position: fixed;
    top: 0;
    left: 0
}

.header_main {
    max-width: 1540px;
    /* overflow: hidden; */
    margin: auto;
    position: relative;
}

.logo {
    float: left;
    height: 60px;
    line-height: 60px;
}

.logo img {
    height:60px;
}


/* 导航 */

.nav {
    width: 45%;
    /* overflow: hidden; */
    height: 60px;
    line-height: 60px;
    float: left;
    margin-left: 20%;
}

.nav ul {
    width: 100%;
    /* overflow: hidden; */
    margin-bottom: 0;
}

.nav ul li {
    float: left;
	/*margin-right:40px;
*/    text-align: center;
	padding:0 20px;
    font-size: 14px;
    position: relative;
}
.nav ul li:last-child{
	margin-right:0;
}

.nav ul li a {
    color: #333333;
    display: inline-block;
}

.nav ul li:hover {
    background: #015FFF;
}

.nav ul li:hover a {
    color: #fff;
}

.xiala {
    width: 160%;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 999;
    display: none;
    font-size: 14px;
    padding-bottom: 20px;
    background: #fff;
	margin-left:-30%;
}

.nav ul li:hover .xiala {
    display: block;
}

.nav .xiala a {
    display: block;
    color: #666666 !important;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    border-bottom: 1px dashed #666666;
    width: 100%;
    position: relative;
}

.nav .xiala a:last-child {
    border-bottom: none;
}

.nav .xiala a::before {
    content: "";
    width: 13px;
    height: 13px;
    background: url(../images/nav_01.png) center no-repeat;
    position: absolute;
    top: 10px;
    left: 5px;
}

.nav .xiala a:hover {
    color: #fff !important;
    background: #183AC7;
}

.nav .xiala a:hover::before {
    content: "";
    width: 13px;
    height: 13px;
    background: url(../images/nav_02.png) center no-repeat;
    position: absolute;
    top: 10px;
    left:5px;
}

.header_right {
    float: right;
    width: 13%;
    height: 60px;
    line-height: 60px;
}

.header_language {
    float: left;
    font-size: 14px;
    color: #333333;
    position: relative;
    padding-left: 30px;
    width: 70%;
}

.header_language::before {
    content: "";
    width: 23px;
    height: 23px;
    background: url(../images/header_01.png) center no-repeat;
    position: absolute;
    left: 0;
    top: 18px;
}

.header_language:hover::before {
    content: "";
    width: 23px;
    height: 23px;
    background: url(../images/header_02.png) center no-repeat;
    position: absolute;
    left: 0;
    top: 18px;
}

.header_language::after {
    content: "";
    width: 10px;
    height: 6px;
    background: url(../images/header_03.png) center no-repeat;
    position: absolute;
    right: 0;
    top: 26px;
}

.header_language:hover::after {
    content: "";
    width: 10px;
    height: 6px;
    background: url(../images/header_04.png) center no-repeat;
    position: absolute;
    right: 0;
    top: 26px;
}

.header_lTop {
    padding-left: 10px;
    text-transform: uppercase;
}

.header_right_xiala {
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 999;
    display: none;
    font-size: 14px;
    background: #fff;
}

.header_language:hover .header_right_xiala {
    display: block;
}

.header_language .header_right_xiala a {
    display: block;
    color: #666666 !important;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px dashed #666666;
    width: 100%;
    position: relative;
}

.header_language .header_right_xiala a:last-child {
    border-bottom: none;
}

.header_language .header_right_xiala a::before {
    content: "";
    width: 13px;
    height: 13px;
    background: url(../images/nav_01.png) center no-repeat;
    position: absolute;
    top: 10px;
    left: 5px;
}

.header_language .header_right_xiala a:hover {
    color: #fff !important;
    background: #183AC7;
}

.header_language .header_right_xiala a:hover::before {
    content: "";
    width: 13px;
    height: 13px;
    background: url(../images/nav_02.png) center no-repeat;
    position: absolute;
    top: 10px;
    left: 5px;
}

.header_search {
    float: right;
}

.header_search_pic {
    width: 22px;
}

.header_search_pic img {
    width: 100%;
}

.header_search_box {
    display: none;
    width: 20%;
    position: absolute;
    top: 60px;
    right: 0;
    z-index: 999;
}

.header_search_box input[type=text] {
    width: 80%;
    height: 50px;
    line-height: 50px;
    padding-left: 10px;
    float: left;
    outline: none;
    border: none;
    font-size: 16px;
}

.header_search_box input[type=submit] {
    width: 20%;
    height: 50px;
    line-height: 50px;
    float: left;
    outline: none;
    border: none;
    background: #183AC7;
    color: #fff;
    font-size: 16px;
}


/* banner */

.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 60px;
}

.banner img {
    width: 100%;
}

.banner_01 img {
    display: block;
    width: 100%;
    animation: scale_b 4s linear infinite alternate;
    transition: 1s 2.5s;
    transform: perspective(1000px) translate3d(0, 0, 100px);
}

.banner .swiper-slide img {
    width: 100%;
    height: auto;
    min-height: 100%;
    transition: 1s linear 2s;
    transform: scale(1.1, 1.1);
}

.banner .swiper-slide-active img,
.banner .swiper-slide-duplicate-active img {
    transition: 6s linear;
    transform: scale(1, 1);
}

.banner_fenye {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
}

.banner_fenye_main {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    text-align: left;
}

.banner_01 .swiper-pagination-bullet {
    background: none;
    width: 14px;
    height: 14px;
    opacity: 1;
    margin-right: 5px;
    background: rgba(255, 255, 255, 0.6);
}

.banner_01 .swiper-pagination-bullet-active {
    width: 15px;
    height: 15px;
    background-color: #fff;
}

.banner_num {
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 80px;
    left: 0;
    z-index: 9;
}

.banner_num_main {
    max-width: 1540px;
    margin: auto;
    overflow: hidden;
    font-size: 32px;
    color: #fff;
}

.banner_left {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 3%;
    top: 48%;
    background: url(../images/banner_left.png) center no-repeat;
	background-size: contain;
}

.banner_left:hover {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 3%;
    top: 48%;
    background: url(../images/banner_right.png) center no-repeat;
	background-size: contain;
    transform: rotate(180deg);
}

.banner_right {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 3%;
    top: 48%;
    background: url(../images/banner_left.png) center no-repeat;
	background-size: contain;
    transform: rotate(180deg);
}

.banner_right:hover {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 3%;
    top: 48%;
    background: url(../images/banner_right.png) center no-repeat;
	background-size: contain;
    transform: rotate(0deg);
}

.keydown {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 80px;
    z-index: 999;
}

@-webkit-keyframes Tmouse {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-8px);
        -moz-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        -o-transform: translateY(-8px);
        transform: translateY(-5px);
    }
}

@keyframes Tmouse {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-8px);
        -moz-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        -o-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

.keydown img {
    width: 25px;
    -webkit-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
    animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
}

.banner_line {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 20px;
    z-index: 999;
}

.banner_line img {
    width: auto;
	height:40px;
}


/* 关于我们 */

.about {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.about_left {
    float: left;
    width: 51.35%;
    padding-left: 10%;
    padding-right: 5%;
    padding-bottom: 55px;
    background: url(../images/about_bg.png) center bottom no-repeat;
}

.about_left_top {
	opacity: 0.4 !important;
}

.about_left_eng {
    font-size: 16px;
    color: #000000;
    margin-top: -20px;
}

.about_title {
    font-size: 20px;
    color: #333333;
    font-weight: 700;
    margin-top: 10px;
}

.about_title img {
    margin-left: 10px;
}

.about_left_main {
    font-size: 14px;
    color: #333333;
    line-height: 1.8;
    text-indent: 2em;
    margin-top: 8px;
}



.inabout_left_main {
    font-size: 14px;
    color: #333333;
    line-height: 1.8;
    text-indent: 2em;
    margin-top: 10px;
}



.about_data {
    width: 100%;
    height: 65px;
	margin-top:20px;
}

.about_data_01 {
    float: left;
    float: left;
    margin-right: 5%;
}

.about_data_01:last-child {
    border-right: none;
}

.about_data_01 .counter {
    font-size: 24px;
    text-align: center;
    color: #015FFF;
    position: relative;
    font-weight: 700;
}

.about_data_01:nth-child(1) .counter::after {
    content: "年";
    position: absolute;
    top: 0;
    right: -15px;
    font-size: 12px;
    color: #015FFF;
}

.about_data_01:nth-child(2) .counter::after {
    content: "%";
    position: absolute;
    top: 0;
    right: 0px;
    font-size: 12px;
    color: #015FFF;
}

.about_data_01:nth-child(3) .counter::after {
    content: "㎡";
    position: absolute;
    top: 0;
    right: -13px;
    font-size: 12px;
    color: #015FFF;
}

.about_data_01:nth-child(4) .counter::after {
    content: "+";
    position: absolute;
    top: 0;
    right: 22%;
    font-size: 12px;
    color: #015FFF;
}

.about_data_01 p:last-child {
    font-size: 12px;
    text-align: center;
    color: #333333;
}

.about_more {
    font-size: 16px;
    margin-top: 40px;
}

.about_more a {
    color: #666666;
}

.about_more img {
    margin-left: 15px;
}

.about_right {
    float: right;
    width: 40%;
    /* height: 500px; */
    position: relative;
    margin-right: 8%;
}

.about_right_bg {
    /* width: 95%;
    position: absolute;
    top: 0;
    right: 0; */
}

.about_right_bg img {
    width: 100%;
}

.about_right_video {
    width: 95%;
    width: 95%;
    position: absolute;
    left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
}

.about_right_video video {
    width: 100%;
}

.case {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.case_01 {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.case_01 .swiper-slide {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.case_pic {
    width: 100%;
}

.case_pic img {
    width: 100%;
}

.case_li {
    width: 100%;
    height: 100%;
    padding-top: 25%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    transition: all 0.6s;
    background: rgba(0, 0, 0, 0.5)
}

.case_name {
    font-size: 20px;
    color: #FFFFFF;
}

.case_more {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.case_more a {
    display: inline-block;
    width: 120px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #015FFF;
    color: #fff;
}

.case_01 .swiper-slide:hover .case_li {
    opacity: 1;
}

.case_left {
    position: absolute;
    width: 71px;
    height: 71px;
    top: 48%;
    left: 150px;
    background: url(../images/case_left.png) center no-repeat;
	display:none;
}

.case_right {
    position: absolute;
    width: 71px;
    height: 71px;
    top: 48%;
    right: 150px;
    background: url(../images/case_right.png) center no-repeat;
	display:none;
}


/* 切换 */

.switch {
    max-width: 1540px;
    margin: auto;
    margin-top: 40px;
}

.switch_top {
    width: 100%;
    /* overflow: hidden; */
	padding:0 100px;
    padding-bottom: 80px;
	
    background: url(../images/switch_line.png) top 40px center no-repeat;
}

.switch_top_01 {
    width: calc(100%/4);
    float: left;
    text-align: center;
    font-size: 16px;
    color: #333333;
    position: relative;
}

.switch_main_01:nth-child(3) .switch_main_left{
	margin-top:75px;
}
.switch_main_01:nth-child(4) .switch_main_left{
	margin-top:75px;
}

.switch_top_01::after {
    content: "";
    width: 19px;
    height: 11px;
    background: url(../images/switch_02.png) center no-repeat;
    position: absolute;
    top: 50px;
    left: 158px;
}

.switch_top_01.activer a {
    color: #015FFF;
}

.switch_top_01.activer::after {
    content: "";
    width: 19px;
    height: 11px;
    background: url(../images/switch_03.png) center no-repeat;
    position: absolute;
    top: 50px;
    left: 158px;
}

.switch_main {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
	padding:0 100px;
}

.switch_main_01 {
    width: 100%;
    overflow: hidden;
    display: none;
}

.switch_main_left {
    float: left;
    width: 48%;
   /* overflow: hidden;*/
	margin-top:40px;
	padding-left:120px;
}

.switch_main_left a {
    width: 100%;
    display: block;
    line-height: 1.8;
    font-size: 12px;
    color: #666666;
    position: relative;
}

.switch_main_left a::after {
    content: "";
    width: 21px;
    height: 10px;
    background: url(../images/switch_left_01.png) center no-repeat;
    position: absolute;
    right: 0;
    top: 10px;
}

.switch_main_left a.active {
    color: #015FFF;
}

.switch_main_left a.active::after {
    content: "";
    width: 21px;
    height: 10px;
    background: url(../images/switch_left_02.png) center no-repeat;
    position: absolute;
    right: 0;
    top: 10px;
}

.switch_main_right {
    width: 47.5%;
    overflow: hidden;
    float: right;
}

.switch_mr_pic {
    width: 100%;
    overflow: hidden;
    display: none;
}

.switch_mr_pic img {
    width: 100%;
}


/* 合作伙伴 */

.cooperate {
    width: 100%;
    height: 300px;
    background: url(../images/cooperate_bg.jpg) center  no-repeat;
    margin-top: 40px;
    padding-top: 20px;
}

.cooperate_nav{
	width:100%;
	overflow:hidden;
	margin:30px 0;
	text-align:center;
}
.cooperate_nav a{
	display:inline-block;
	width:120px;
	height:40px;
	border:1px solid #CCCCCC;
	background:none;
	color:#666;
	font-size:16px;
	line-height:40px;
	text-align:center;
	border-radius:4px;
	margin-right:15px;
}

.cooperate_nav a.act{
	background:#015FFF;
	border:1px solid #015FFF;
	color:#fff;
}
.title {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.title_ch {
    font-size: 28px;
    color: #333333;
    font-weight: 700;
}

.title_ch span {
    color: #015FFF;
}

.title_eng {
    margin-top: 5px;
    font-size: 14px;
    color: #666666;
    text-transform: uppercase;
    background: url(../images/cooperate_line.png) center no-repeat;
}

.cooperate_main {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}

.cooperate_main img {
    width: 100%;
}

.cooperate_01 {
    width: 100%;
    overflow: hidden;
	display:none;
}

.cooperate_01 .swiper-wrapper {
}

.cooperate_01 .swiper-wrapper img {
    border-radius: 100px;
}

.cooperate_02 {
    width: 100%;
    overflow: hidden;
    margin-top:20px;
}

.cooperate_02 .swiper-wrapper {
}

.cooperate_02 .swiper-wrapper img {
    border-radius: 100px;
}


/* 新闻资讯 */

.news {
    max-width: 1540px;
    margin: auto;
    margin-top: 40px;
    padding-bottom: 30px;
}

.news_nav {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top: 20px;
}

.news_nav a {
    display: inline-block;
    width: 160px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border: 1px solid #CCCCCC;
    color: #666;
    font-size: 14px;
    margin-right: 20px;
    border-radius: 4px;
}

.news_nav .news_link.acti {
    background: #015FFF;
    color: #fff;
}

.news_nav a:hover {
    background: #015FFF;
    color: #fff;
}

.news_main {
    max-width: 100%;
}

.news_main_01 {
    width: 100%;
    /* overflow: hidden; */
    float: left;
    position: relative;
    display: none;
}

.news_01 {
    width: 100%;
    padding: 10px !important;
    padding-top: 40px !important;
}

.news_01 .swiper-slide {
    width: 100%;
    box-shadow: 0 0 10px #e9e9e9;
    transition: all 0.6s;
}

.news_pic {
    width: 100%;
    overflow: hidden;
}

.news_pic img {
    width: 100%;
}

.news_content {
    width: 100%;
    padding: 20px;
    padding-bottom: 40px;
}

.news_ctitle {
    font-size: 14px;
    color: #333333;
}

.news_word {
    font-size: 12px;
    color: #666666;
    line-height: 1.8;
    margin-top: 10px;
}

.news_bottom {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.news_jiantou {
    float: left;
}

.news_date {
    float: right;
    font-size: 14px;
    color: #666666;
}

.news_button_left {
    display: inline-block;
    position: absolute;
    width: 41px;
    height: 41px;
    background: url(../images/case_left.png) center no-repeat;
	background-size: contain;
    top: 40%;
    left: -30px;
}

.news_button_right {
    display: inline-block;
    position: absolute;
    width: 41px;
    height: 41px;
    top: 40%;
    right: -30px;
    background: url(../images/case_right.png) center no-repeat;
	background-size: contain;
}

.news_01 .swiper-slide:hover {
    margin-top: -10px;
}

.news_01 .swiper-slide:hover .news_ctitle {
    color: #21B8CE;
}


/* 联系我们 */

.contact {
    width: 100%;
    overflow: hidden;
    background: url(../images/contact_bg.jpg) center top no-repeat;
    margin-bottom: 20px;
    margin-top: 40px;
}

.contacts {
    max-width: 1540px;
	overflow:hidden;
    margin: 45px auto 0;
	padding:0 200px;
}

.left_contact {
    float: left;
    width: 43%;
	padding-top:40px;
}

.lftitle {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.lfline {
    width: 50px;
    height: 3px;
    background: #015FFF;
    margin-top: 10px;
	margin-bottom:10px;
}

.lfcons {
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
}

.lfcon_pic {
    float: left;
    width: 20px;
    text-align: center;
    line-height: 1.8;
    margin-right: 10px;
}
.lfcon_pic img{
	width:100%;
}

.lfcon_title {
    float: left;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    line-height: 1.8;
    margin-left: 5px;
}

.lfcon_detail {
    float: left;
    font-size: 14px;
    color: #333;
    line-height: 1.8;
}
.lfcon_detail img{
	width:15px;
	margin-right:5px;
}

.right_contact {
    float: right;
    width: 56.5%;
}

.right_contact div {
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}

.right_contact select {
    float: left;
    width: 95%;
    height: 40px;
    appearance: none;
    background: url(../images/arrow.png) right 30px center no-repeat;
	background-size: 15px;
    outline: none;
    border: 1px solid #D9D9D9;
    padding-left: 30px;
    font-size: 12px;
    color: #999;
}

.right_contact input[type=text]::-webkit-input-placeholder,
.right_contact textarea::-webkit-input-placeholder {
    color: #999;
}

.right_contact input[type=text]:-moz-placeholder,
.right_contact textarea:-moz-placeholder {
    color: #999;
}

.right_contact input[type=text]::-moz-placeholder,
.right_contact textarea::-moz-placeholder {
    color: #999;
}

.right_contact input[type=text]:-ms-input-placeholder,
.right_contact textarea:-ms-input-placeholder {
    color: #999;
}

.right_contact input[type=text] {
    float: left;
    width: 95%;
    height: 40px;
    outline: none;
    border: 1px solid #D9D9D9;
    padding-left: 30px;
    font-size: 12px;
    color: #999;
    background: none;
}

.right_contact label {
    float: left;
    font-weight: normal;
    height: 40px;
    line-height: 40px;
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: #FF3F3F;
    margin-bottom: 0;
}

.right_contact textarea {
    float: left;
    width: 95%;
    height: 110px;
    outline: none;
    border: 1px solid #D9D9D9;
    padding-left: 30px;
    font-size: 12px;
    color: #999;
    background: none;
    padding-top: 15px;
}

.right_contact input[type=submit] {
    float: left;
    width: 45%;
    height: 40px;
    outline: none;
    border: none;
    font-size: 12px;
    color: #fff;
    background: #015FFF;
}

.right_contact input[type=reset] {
    float: left;
    width: 45%;
    height: 40px;
    outline: none;
    border: none;
    font-size: 12px;
    color: #333;
    background: #DDDDDD;
    margin-left: 44px;
}


/* 页脚 */

.foot {
    width: 100%;
    overflow: hidden;
    background:#f4f4f4;
    padding-top: 20px;
    margin-top: 40px;
    position: relative;
}


.foot_main {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
}

.foot_left {
    float: left;
    width: 24%;
}

.foot_left_top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.foot_lt_logo {
    float: left;
    width: 60px;
}

.foot_lt_logo img {
    width: 100%;
}

.foot_lt_word {
    float: left;
    font-size: 12px;
    color: #333;
}

.foot_left_ma {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.foot_lm_01 {
    width: 70px;
    float: left;
    text-align: center;
    margin-right: 30px;
}

.foot_lm_01 img {
    width: 100%;
}

.foot_lm_01 p {
    color: #333;
	font-size:12px;
    line-height: 1.8;
}

.foot_line {
    float: left;
    width: 1px;
    height: 190px;
    background: #333;
    opacity: 0.8;
    margin: 0 20px;
	margin-bottom:20px;
}

.foot_right {
    width: 70%;
    overflow: hidden;
    float: right;
}

.foot_right_01 {
    float: left;
    margin-right: 8%;
}

.foot_right_01:last-child {
    margin-right: 0;
}

.foot_title {
    font-size: 14px;
    color: #333;
}

.foot_content {
    margin-top: 10px;
	color:#333;
}

.foot_content a {
    display: block;
    line-height: 2.2;
    font-size: 12px;
    color: #333;
}

.copy {
    width: 100%;
    overflow: hidden;
}

.copy_main {
    max-width: 1540px;
    height: 40px;
    line-height: 40px;
    margin: auto;
    color: #333;
    text-align: center;
    border-top: 1px solid rgba(51, 51, 51, 0.8);
    font-size: 12px;
}

.copy a {
    color: #333;
    margin-left: 10px;
}


/* 产品中心内页 */

.inbanner {
    width: 100%;
    position: relative;
    margin-top: 60px
}

.inbanner img {
    width: 100%;
}

.innav {
    width: 100%;
    height: 70px;
    line-height: 70px;
    background: rgba(0, 0, 0, 0.15);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.innav_main {
    max-width: 1540px;
    margin: auto;
    color: #fff;
}

.innav_main a {
    color: #fff;
    font-size: 14px;
}

.innav_main img {
    width: auto;
    margin-right: 10px;
    margin-top: -4px;
}

.product {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 60px;
}

.product_title {
    width: 100%;
    text-align: center;
    font-size: 28px;
    color: #333333;
}
.product_title img{
	width:35px;
	margin-right:10px;
}

.product_nav {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    text-align: center;
}

.product_nav a {
    display: inline-block;
    width: 160px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #ECECEC;
    color: #000000;
    font-size: 14px;
    margin-right: 40px;
}

.product_nav a:last-child{
	margin-right:0;
}

.product_nav a:hover {
    background: #015FFF;
    color: #fff;
}

.product_nav a.actt {
    background: #015FFF;
    color: #fff;
}

.product_main {
    width: 100%;
    margin-top: 40px;
}

.product_main_01 {
    width: 23.5%;
    margin-right: 2%;
    float: left;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.product_main_01:nth-child(4n) {
    margin-right: 0;
}

.product_pic {
    width: 100%;
}

.product_pic img {
    width: 100%;
}

.product_b {
    width: 100%;
    padding: 20px;
    background: #eee;
}

.product_word {
    font-size: 14px;
    color: #333333;
}

.product_more {
    margin-top: 10px;
    color: #666666;
    font-size: 14px;
}

.product_more img {
    margin-left: 10px;
}


/* 产品详情 */

.proshow {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.proshow_left {
    display: none;
    width: 11.4%;
    height: 400px;
    position: relative;
    padding-top: 40px;
    float: left;
}

.proshow_01 {
    width: 100%;
    height: 325px;
}
.proshow_01 .swiper-slide{
	width:100% !important;
	overflow:hidden;
}
.proshow_01 .swiper-slide img {
    height: 100%;
}

.proshow_button_left {
    position: absolute;
    top: 12px;
    left: 80px;
    transform: rotate(90deg);
}

.proshow_button_right {
    position: absolute;
    top: auto;
    bottom: -10px;
    left: 80px;
    transform: rotate(90deg);
}

.proshow_right {
    width: 88%;
    overflow: hidden;
    float: right;
}

.proshow_pic {
    display: none;
    width: 39%;
    float: left;
}

.proshow_pic img {
    width: 100%;
}

.proshow_main {
    float: left;
    width: 100%;
	padding-top:40px;
	margin-left:10px;
}

.proshow_main_title {
    font-size: 18px;
    color: #333333;
    line-height: 1.8;
    border-bottom: 1px solid #DDDDDD;
}

.proshow_content {
    color: #333333;
    margin-top: 10px;
}

.product_ct {
    font-size: 14px;
}

.proshow_word {
    margin-top: 10px;
    line-height:1.8;
    font-size: 14px;
}

.proshow_word img{
    width: 100%;
    height: auto;
}

.proshow_intr {
    max-width: 1540px;
    margin: auto;
    margin-top: 60px;
	display:none;
}

.proshow_intr_title {
    width: 100%;
}

.proshow_it_ch {
    font-size: 36px;
    color: #000000;
}

.proshow_line {
    width: 75px;
    height: 4px;
    background: #015FFF;
    margin-top: 10px;
}

.proshow_intr_content {
    margin-top: 40px;
    line-height: 2.2;
    color: #333333;
    font-size: 16px;
}

.proshow_intr_pic {
    width: 100%;
    margin-top: 30px;
}

.proshow_intr_pic img {
    width: 100%;
}

.proshow_down {
    max-width: 1540px;
    margin: auto;
    margin-top: 40px;
}

.proshow_down_01 {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding-left: 100px;
    padding-right: 50px;
    border: 1px solid #DDDDDD;
    margin-bottom: 10px;
}

.proshow_down_pic {
    float: left;
	width:35px;
}
.proshow_down_pic img{
	width:100%;}

.proshow_down_line {
    width: 1px;
    height: 34px;
    background: #DDDDDD;
    float: left;
    margin: 7px;
}

.proshow_down_name {
    float: left;
    font-size: 12px;
    color: #333333;
}

.proshow_down_day {
    float: right;
    margin-right: 500px;
    color: #999999;
    font-size:12px;
}

.proshwo_down_icon {
    float: right;
	width:30px;
    margin-right: 0;
}

.proshwo_down_icon img{
	width:100%
}

.proshow_down_01:hover {
    background: #015FFF;
}

.proshow_down_01:hover .proshow_down_day {
    color: #fff;
}

.proshow_down_01:hover .proshow_down_name {
    color: #fff;
}

.proshow_down_01:hover .proshow_down_line {
    background: #fff;
}


/* 应用案例 */

.incase {
    max-width: 1540px;
    margin: auto;
    margin-top: 40px;

}

.incase_01 {
    width: 100%;
    overflow: hidden;
    padding: 20px;
    margin-bottom: 40px;
	box-shadow: 0 0 10px #f4f4f4;
	
}

.incase_pic {
    width: 36%;
    float: left;
	overflow:hidden;
}



.incase_01:nth-child(2n) .incase_pic {
    float: right;
    margin-left: -3.5%;
	overflow:hidden;
}



.incase_pic img {
    width: 100%;
	transition: all 0.6s;
	
}
.incase_01:hover img{
transform: scale(1.1);
}


.incase_main {
    width: 64%;
    background: #fff;
    padding: 55px;
    float: right;
    margin-top: 40px;
}

.incase_main_top {
    width: 100%;
    overflow: hidden;
}

.incase_title {
    width: 70%;
    float: left;
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.incase_title img{
	width:20px;
}

.incase_num {
    float: right;
    font-size: 30px;
    color: #ddd;
    font-weight: 700;
}

.incase_content {
    margin-top: 10px;
    color: #666666;
    font-size: 12px !important;
    line-height: 1.8;
}

.incase_more {
    margin-top: 24px;
}

.incase_more a {
    color: #999999;
    font-size: 14px;
}

.incase_more a img {
    margin-left: 10px;
}
.incase_01:hover{
background: #3163B8;
}
.incase_01:hover .incase_main {
    background: #3163B8;
}

.incase_01:hover .incase_title {
    color: #fff;
}

.incase_01:hover .incase_num {
    color: #fff;
}

.incase_01:hover .incase_content {
    color: #fff;
}

.incase_01:hover .incase_more a {
    color: #fff;
}

.incase_01:hover svg path {
    fill: #fff !important;
}

.incase_01:nth-child(2n) .incase_pic {
    float: right;
    margin-left: -3.5%;
}

.incase_01:nth-child(2n) .incase_main {
    float: left;
    z-index: 999;
    margin-left: 0;
}


/* 应用案例详情 */

.caseshow {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 60px;
}

.caseshow_title {
    font-size: 28px;
    color: #333333;
    text-align: center;
}

.caseshow_t {
    width: 100%;
    text-align: center;
    border-top: 1px solid #DDDDDD;
    margin-top: 20px;
    line-height: 4;
    color: #666666;
    font-size: 12px;
}

.caseshow_t img {
    margin-right: 10px;
}

.caseshow_t span {
    margin-right: 20px;
}

.caseshow_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.caseshow_main_title {
    font-size: 32px;
    color: #333333;
}

.caseshow_main_intr {
    margin-top: 30px;
    line-height: 1.8;
    color: #666666;
    font-size: 12px;
}

.caseshow_main_intr img{
	max-width:100%;
}

.caseshow_pic {
    width: 100%;
    margin-top: 30px;
}

.caseshow_pic img {
    width: 100%;
}


/* 新闻中心 */

.info {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.info_title {
    text-align: center;
    font-size: 28px;
    color: #333333;
}

.info_title img{
	width:35px;
	margin-right:10px;
}

.info_main {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.info_main_01 {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.info_main_left {
    float: left;
    width: 41.16%;
}

.info_main_left img {
    width: 100%;
}

.info_main_right {
    float: right;
    width: 57%;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 80px;
	padding-top:40px;
}

.info_mr_title {
    margin-top: 20px;
    font-size: 18px;
    color: #333333;
}

.info_mr_content {
    margin-top: 15px;
    font-size: 12px;
    color: #666666;
    line-height: 1.8;
}

.info_mr_bottom {
    margin-top: 20px;
    width: 100%;
    font-size: 12px;
}

.info_mrb_day {
    float: left;
    color: #999999;
}

.info_mrb_more {
    float: right;
    color: #666666;
}

.info_mrb_more img {
    margin-left: 10px;
}


/* 联系我们 */

.cnav {
    max-width: 1540px;
    height: 54px;
    line-height: 54px;
    margin: auto;
    margin-top: 40px;
    background: rgba(1, 95, 255, 0.1);
    font-size: 0;
}

.cnav a {
    display: inline-block;
    width: calc(100%/6);
    text-align: center;
    color: #333333;
    font-size: 14px;
}
.cnav a:hover {
    background: #015FFF;
    color: #fff;
}
.cnav a.actt {
    background: #015FFF;
    color: #fff;
}


/* 联系我们内页 */

.incontact {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 20px;
}

.address {
    width: 100%;
}

.address_01 {
    width: calc(100%/3);
    float: left;
}

.adderss_title {
    display: inline-block;
    padding: 10px 20px;
    background: #015FFF;
    color: #fff;
    font-size: 20px;
}

.address_content {
    margin-top: 30px;
    font-size: 12px;
    color: #666666;
    line-height: 1.8;
}

.contactf {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
    background: url(../images/contactf_bg.jpg) center top no-repeat;
}

.contactf_title {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}

.contactf_main {
    margin-top: 30px;
}

.contactf_form {
    width: 100%;
}

.ly {
    width: 100%;
    overflow: hidden;
    background: url(../images/ly_bg.jpg) center no-repeat;
}

.ly_main {
    max-width: 866px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.ly_form {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.ly_form div {
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}

.ly_form select {
    float: left;
    width: 95%;
    height: 60px;
    appearance: none;
    background: url(../images/arrow.png) right 30px center no-repeat;
    outline: none;
    border: 1px solid #D9D9D9;
    padding-left: 30px;
    font-size: 14px;
    color: #999;
}

.ly_form input[type=text]::-webkit-input-placeholder,
.ly_form textarea::-webkit-input-placeholder {
    color: #999;
}

.ly_form input[type=text]:-moz-placeholder,
.ly_form textarea:-moz-placeholder {
    color: #999;
}

.ly_form input[type=text]::-moz-placeholder,
.ly_form textarea::-moz-placeholder {
    color: #999;
}

.ly_form input[type=text]:-ms-input-placeholder,
.ly_form textarea:-ms-input-placeholder {
    color: #999;
}

.ly_form input[type=text] {
    float: left;
    width: 95%;
    height: 60px;
    outline: none;
    border: 1px solid #D9D9D9;
    padding-left: 30px;
    font-size: 14px;
    color: #999;
    background: none;
}

.ly_form label {
    float: left;
    font-weight: normal;
    height: 60px;
    line-height: 70px;
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: #FF3F3F;
    margin-bottom: 0;
}

.ly_form textarea {
    float: left;
    width: 95%;
    height: 135px;
    outline: none;
    border: 1px solid #D9D9D9;
    padding-left: 30px;
    font-size: 14px;
    color: #999;
    background: none;
    padding-top: 15px;
}

.ly_form input[type=submit] {
    float: left;
    width: 45%;
    height: 52px;
    outline: none;
    border: none;
    font-size: 14px;
    color: #fff;
    background: #015FFF;
}

.ly_form input[type=reset] {
    float: left;
    width: 45%;
    height: 52px;
    outline: none;
    border: none;
    font-size: 14px;
    color: #333;
    background: #DDDDDD;
    margin-left: 44px;
}


/* 上传文件 */

.ly .top {
    height: 45px;
    width: auto;
    justify-content: space-between;
}

.ly .left {
    width: auto;
    /*height: 300px; */
}

.ly .left_pic {
    width: 152px;
    height: 152px;
    background: url(../images/ly_01.jpg) center no-repeat;
}

.ly .shangchan {
    margin: 10px 20px;
}

.wenjian {
    text-align: center;
}

.right {
    width: 0;
}

#imgDiv {
    width: 100px;
    height: 100px;
}

#imgDiv img {
    width: 100px;
    height: 100px;
}

.top_r {
    float: left;
    margin-left: 30px;
}


/* 招聘 */

.recruit {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.recruit_top {
    width: 75%;
    height: 66px;
    margin: auto;
}

.recruit_top form {
    width: 100%;
}

.recruit_top div {
    float: left;
    width: 30%;

    margin-right: 5%;
}

.recruit_top div:last-child {
    float: right;
    width: 20%;
}

.recruit_top select {
    width: 100%;
    height: 50px;
    background: #ECECEC;
    padding: 0 20px;
    font-size: 12px;
    color: #333333;
    border: none;
    outline: none;
}

.recruit_top input[type=submit] {
    width: 100%;
    height: 50px;
    background: #FFA113;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border: none;
    outline: none;
}

.n_container {
    padding: 28px 0 0;
}

.n_case {
    padding: 0 0 65px
}

.n_case ul {
    font-size: 0;
    margin: 0 -7.5px;
    margin-bottom: 35px;
}

.n_case ul li {
    padding: 0 7.5px;
    text-align: left;
    width: 100%;
    display: inline-block;
    margin-bottom: 0px;
    overflow: hidden;
}

.n_case ul li a {
    display: block;
    text-align: center;
}

.n_case ul li .img {
    overflow: hidden;
    position: relative
}

.n_case ul li .img>img {
    width: 390px;
}

.n_case ul li .img .top {
    top: -100%;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(60, 160, 211, 0.8);
    text-align: center;
    -moz-transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -webkit-transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -o-transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -ms-transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    padding: 0 44px;
}

.n_case ul li .img .top h5 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 18px;
    line-height: 26px;
}

.n_case ul li .img .top h3 {
    text-align: center
}

.n_case ul li .img .top h3 span {
    font-size: 16px;
    color: #242525;
    display: inline-block;
    width: 120px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border-radius: 20px
}

.n_case ul li .img .top img {
    display: inline-block;
}

.n_case ul li a>h5 {
    height: 62px;
    line-height: 62px;
    font-size: 18px;
    color: #1b2433;
    text-align: center;
    -moz-transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.n_case ul li:hover .img .top {
    top: 0;
}

.n_case ul li:hover a>h5 {
    transform: scale(0);
}

.n_case ul li:hover .img>img {
    transform: scale(1.06);
}

.w1200 {
    max-width: 1540px;
    margin: 0 auto;
}

.table {
    display: table;
    table-layout: fixed;
    text-align: center;
    width: 100%;
    height: 100%
}

.table_cell {
    display: table-cell;
    vertical-align: middle
}

.leftnav-z1-tit {
    width: 100%;
    height: 54px;
	line-height:54px;
    background: rgba(230, 243, 248, 0.4);
}

.n_container .leftnav-z1-tit ul {
    width: 100%;
    margin-bottom: 0;
}

.n_container .leftnav-z1-tit ul li {
    text-align: center;
    display: inline-block;
    width: calc(100%/7);
    font-size: 14px;
    color: #333333;
}


.human-box .iten_intr {
    overflow: hidden;
}

.human-box .iten_intr .item_info {
    width: 100%;
}

.item_info {
    margin-bottom: 0;
}

.item_info .tit{
	width:100%;
	height:28px;
	overflow:hidden;
	text-overflow: ellipsis;
}
.item_info .expr{
	width:100%;
	height:28px;
	overflow:hidden;
	text-overflow: ellipsis;
}

.n_container .item_info li {
    display: inline-block;
    width: calc(100% / 7);
    font-size: 12px;
    line-height: 28px;
    color: #333333;
    text-align: center;
}

.human-box .iten_intr ul {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #dfdfdf;
    margin-bottom: 0;
}

.item_content {
    display: none;
}

.human-box ul li .cont {
    font-size: 15px;
    color: #333333;
    line-height: 28px;
    margin-bottom: 10px;
    text-align: left;
}

.human-box ul li .cont .tit {
    color: #666666;
    margin-bottom: 5px;
}

.item_content li {
    padding-left: 75px !important;
}

.iten_intr:hover .item_info li {
    color: #015FFF;
}


/* 人才战略 */

.people {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
}

.people_top {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #DDDDDD;
    margin-top: 40px;
}

.people_top span {
    padding-left: 20px;
    font-size: 24px;
    line-height: 1;
}
.people_top img{
	width:40px;
}

.people_main {
    margin-top: 15px;
	overflow:hidden;
}

.people_pic {
    float: left;
    width: 50%;
}

.people_pic img {
    width: 100%;
}

.people_content {
    float: right;
    width: 48%;
    padding-top: 0px;
    padding-right: 50px;
}

.people_ct {
    font-size: 36px;
    color: #333333;
}

.people_line {
    width: 62px;
    height: 3px;
    background: #DDDDDD;
    margin-top: 20px;
}

.people_word {
    margin-top: 30px;
    font-size: 12px;
    color: #333333;
    line-height:1.8;
	text-indent: 2em;
}

.people_button {
    width: 100%;
    text-align: right;
    margin-top: 20px;
}

.people_button a {
    display: inline-block;
    width: 140px;
    height: 40px;
    background: #015FFF;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 14px;
}

.people_list {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.people_list_01 {
    width: 23.5%;
    margin-right: 2%;
    float: left;
}

.people_list_01:last-child {
    margin-right: 0;
}

.people_ltop {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.people_list_pic {
    width: 100%;
}

.people_list_pic img {
    width: 100%;
}

.people_li {
    width: 100%;
    height: 100%;
    background: rgba(24, 58, 199, 0.8);
    text-align: center;
    color: #fff;
    line-height: 3.4;
    padding-top: 30%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.6s;
}

.people_list_01:hover .people_li {
    opacity: 1;
}

.people_lbutton {
    width: 100%;
    height: 100px;
    background: #F4F4F4;
    line-height: 100px;
    text-align: center;
    font-size: 24px;
    color: #333333;
}


/* 关于我们 */

.inabout {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    position: relative;
    padding-bottom: 15px;
}

.inabout_eng {
    font-size: 128px;
    color: #F6F6F6;
    font-weight: 700;
    position: absolute;
    left: 0;
    bottom: 0;
    line-height: 1;
    z-index: -1;
}

.inabout_main {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    z-index: 999;
}

.inabout_left {
    float: left;
    width: 45.5%;
    overflow: hidden;
}

.inabout_right {
    float: right;
    width: 48.6%;
    height: 542px;
    position: relative;
    z-index: 9;
}

.inabout_rb {
    position: absolute;
    top: 0;
    right: 0;
}

.inabout_rb img {
    width: 100%;
}

.inabout_rl {
	width:85%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.inabout_rl video {
    width: 100%;
}

.inabout_data {
    position: absolute;
    bottom: 20px;
    left: 9%;
    width: 48%;
    height: 140px;
    padding-top: 20px;
    background: #fff;
    box-shadow: 0 0 10px #eee;
    z-index: 998;
}

.inabout_data .about_data_01 {
    float: left;
    margin-top: 30px;
    width: calc(100%/4);
    text-align: center;
    margin-right: 0;
}

.about_data_01:last-child {
    margin-right: 0;
}

.inabout_data .about_data_01:nth-child(1) .counter::after {
    content: "年";
    position: absolute;
    top: 0;
    right: 45px;
    font-size: 12px;
    color: #015FFF;
}

.inabout_data .about_data_01:nth-child(2) .counter::after {
    content: "%";
    position: absolute;
    top: 0;
    right: 50px;
    font-size: 12px;
    color: #015FFF;
}

.inabout_data .about_data_01:nth-child(3) .counter::after {
    content: "㎡";
    position: absolute;
    top: 0;
    right: 30px;
    font-size: 12px;
    color: #015FFF;
}

.inabout_data .about_data_01:nth-child(4) .counter::after {
    content: "+";
    position: absolute;
    top: 0;
    right: 60px;
    font-size: 12px;
    color: #015FFF;
}

.about_data_01 p:last-child {
    font-size: 12px;
    text-align: center;
    color: #333333;
}


/* 组织架构 */

.org {
    max-width: 1540px;
    margin: auto;
    margin-top: 40px;
}

.org_title {
    font-size: 24px;
    color: #333333;
    font-weight: 700;
}

.org_pic {
    margin-top: 30px;
    width: 80%;
	margin:auto;
}

.org_pic img {
    width: 100%;
}


/* 企业文化 */

.culture {
    width: 100%;
    height: 300px;
    background: url(../images/culture_bg.jpg) center no-repeat;
    margin-top: 40px;
    padding-top: 20px;
}

.culture_title {
    width: 100%;
    color: #fff;
    font-size: 28px;
    text-align: center;
}

.culture_main {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 20px;
}

.culture_main_01 {
    width: 30%;
    overflow: hidden;
    padding-top: 10px;
    margin-right: 5%;
    float: left;
}

.culture_main_01:last-child {
    margin-right: 0;
}

.culture_top {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: #fff;
    text-align: center;
    line-height: 100px;
    margin: auto;
    background: #fff;
    box-shadow: 0 0 10px #333;
    z-index: 9;
    position: relative;
}

.culture_content {
    width: 100%;
    background: #fff;
    height: 120px;
    border-radius: 15px;
    text-align: center;
    padding-top: 50px;
    margin-top: -40px;
    z-index: 9;
    opacity: 0.6;
    transition: all 0.6s;
}

.culture_ct {
    font-size: 14px;
    color: #333333;
}

.culture_cw {
    font-size: 12px;
    color: #666666;
    line-height: 1.8;
    padding: 0 20px;
}

.culture_main_01:hover .culture_content {
    opacity: 1;
    border-bottom: 3px solid #183AC7;
}


/* 荣誉资质 */

.honor {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.honor_main {
    width: 100%;
    overflow: hidden;
}

.honor_intr {
    width: 100%;
    overflow: hidden;
    padding-left: 30px;
    font-size: 20px;
    color: #333333;
    position: relative;
}

.honor_intr::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../images/honor_04.png) center no-repeat;
    position: absolute;
    left: 0;
    top: 5px;
}

.honor_pic {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.honor_pic_main{
	width:100%;
	overflow:hidden;
}


.honor_pic_01{
	width:100%;
	overflow:hidden;
}

.honor_pm_01{
	width:100%;
	overflow:hidden;
}
.honor_pm_01 .swiper-slid{
	width:100%;
	overflow:hidden;
}
.honor_pic_img{
	width:100%;
	overflow: hidden;
}
.honor_left{
	width:66% !important;
	overflow:hidden;
	float:left !important;
}

.honor_right{
	width:32% !important;
	overflow:hidden;
	float:right !important;
}
.honor_pic_img img{
	width:100%;
}
.honor_pic_01 {
    width: 32%;
    overflow: hidden;
    margin-right: 2%;
    float: left;
}

.honor_pic_01 p {
    font-size: 14px;
    color: #333333;
    position: relative;
    padding-left: 30px;
}

.honor_pic_01 p::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../images/honor_04.png) center no-repeat;
    position: absolute;
    left: 0;
    top: 5px;
}

.honor_pic_01 img {
    margin-top: 20px;
    width: 100%;
}



.honor_pic_01:last-child {
    margin-right: 0;
}

.honor_pic {
    width: 100%;
    overflow: hidden;
}

.honor_pic_name {
    font-size: 16px;
    color: #333333;
    position: relative;
    padding-left: 30px;
}

.honor_pic_name::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../images/honor_04.png) center no-repeat;
    position: absolute;
    left: 0;
    top: 5px;
}

.honor_pic_img {
    margin-top: 30px;
}

.honor_pi_01 {
    float: left;
    width: 23.5%;
    overflow: hidden;
    margin-right: 2%;
}

.honor_pi_01:nth-child(4n) {
    margin-right: 0;
}

.honor_pi_01 img {
    width: 100%;
}


/* 发展历程 */

.history_next,
.history_prev {
    top: 85%;
    height: 27px;
    z-index: 999;
}

.history {
    background: url("../images/history_bg.png") no-repeat center / cover;
}
.history_main{
	max-width:1540px;
	overflow:hidden;
	margin:auto;
}

.history .h1 {
	margin:0;
    margin-bottom: 20px;
	font-size:24px;
}

.thismain {
    max-width: 1540px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.historyimgs {
    width: 25%;
}

.historyswiper {
    width: 70%;
}

.historyswiper .on h3 {
    color: var(--themeColor);
}

.historyswiper .on .des {
    color: #333;
}

.historyimgs img {
    width: 100%;
    border-radius: 5px;
}

.historyswiper .swiper-container {
    overflow: hidden;
}

.historyswiper .img {
    display: none;
}

.historyswiper h3 {
    font-size: 14px;
    color: #999;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #dfdfdf;
}

.historyswiper .des {
    font-size: 12px;
    color: #999;
}

.history_year {
    width: 100%;
    margin: 0 auto 50px;
    position: relative;
}

.history_year::after {
    position: absolute;
    top: 75%;
    left: 0;
    transform: translateY(-75%);
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #dfdfdf;
}

.history_year .swiper-slide {
    cursor: pointer;
    position: relative;
    text-align: center;
}

.history_year .swiper-slide:hover p {
    color: var(--themeColor);
}

.history_year .swiper-slide:hover .img img:nth-child(1) {
    display: none;
}

.history_year .swiper-slide:hover .img img:nth-child(2) {
    display: inline-block !important;
}

.history_year .swiper-slide p {
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
}

.history_year .swiper-slide .img {
    width: 100%;
}

.history_year .swiper-slide .img img {
    display: none;
}

.history_year .swiper-slide .img img:nth-child(1) {
    display: inline-block;
}

.history_year .swiper-slide:nth-child(5n) .img {
    position: relative;
}

.history_year .swiper-slide:nth-child(5n) .img::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-2px);
    z-index: -1;
    content: "";
    display: block;
    width: 50%;
    height: 10px;
}

.history_year .swiper-slide.swiper-slide-active p {
    color: var(--themeColor);
}

.history_year .swiper-slide.swiper-slide-active .img {
    position: relative;
}

.history_year .swiper-slide.swiper-slide-active .img img:nth-child(1) {
    display: none;
}

.history_year .swiper-slide.swiper-slide-active .img img:nth-child(2) {
    display: inline-block;
}

.history_year .swiper-slide:nth-child(5n-4) .img {
    position: relative;
}

.history_year .swiper-slide:nth-child(5n-4) .img::after {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-2px);
    z-index: -1;
    content: "";
    display: block;
    width: 50%;
    height: 5px;
}


/* 上传*/


/*.form_book .top{
	margin:auto;}
.form_book .top .left input[type=button]{
	width:198px;
	height:36px;
	line-height:36px;
	background:#fe0100;
	color:#fff;
	outline:none;
	border:none;
	box-shadow: 0 0 10px #eee;
	border-radius: 10px;
}

.form_book .top .left input[type=submit]{
	margin-left:120px;}*/

.cbute_list {
    margin: 0;
}

.cbute_title {
    display: block;
    line-height: 40px;
    color: #0c588c;
    font-size: 16px;
    border-bottom: #e2e2e2 1px solid;
}

.cbute_upld {
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.redbtn {
    border: #d90000 1px solid;
    background: #d90000;
    border-radius: 3px;
    padding: 0;
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
    width: 125px;
    height: 40px;
    box-shadow: 1px 1px 4px #a2a2a2;
    -webkit-box-shadow: 1px 1px 4px #a2a2a2;
    -moz-box-shadow: 1px 1px 4px #a2a2a2;
}

.odbox {
    border: #c7c7c7 1px solid;
    outline: none;
    margin: 0;
    padding: 0 8px;
    height: 36px;
    line-height: normal;
    line-height: 36px\9;
    border-radius: 3px;
    font-size: 16px;
    box-shadow: 1px 1px 4px #d9d9d9;
    -webkit-box-shadow: 1px 1px 4px #d9d9d9;
    -moz-box-shadow: 1px 1px 4px #d9d9d9;
}

.cbute_upld span {
    display: none;
    width: 24px;
    height: 24px;
    background: url(../image/loading.gif) no-repeat center center;
    position: absolute;
    top: 30px;
    right: 30%;
}

.cbute_fm {
    position: relative;
}

.ly .cbute_row {
    display: block;
    line-height: 40px;
    height: 40px;
    position: relative;
    float: none;
    color: #000;
    width: auto;
}

.ly .cbute_row.s {
    background: #f0f0f0 !important;
    float: none;
    color: #000;
    width: auto;
}

.cbute_slft {
    display: block;
    width: 48%;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
}

.cbute_srft {
    display: block;
    width: 49%;
    text-align: center;
    margin-left: 49%;
}

.cbute_list {
    margin: 0;
}

.cbute_title {
    display: block;
    line-height: 40px;
    color: #0c588c;
    font-size: 16px;
    border-bottom: #e2e2e2 1px solid;
}

.shenqing_a {
    float: right;
    color: #000;
    font-weight: bolder;
}

.cbute_upld {
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.cbute_upld span {
    display: none;
    width: 24px;
    height: 24px;
    background: url(../image/loading.gif) no-repeat center center;
    position: absolute;
    top: 30px;
    right: 30%;
}

.cbute_fm {
    position: relative;
}

.cbute_info {
    display: block;
    height: auto;
    padding: 15px 0 0;
    position: relative;
}

.cbute_left {
    display: block;
    width: 48%;
    position: absolute;
    left: 0;
    top: 15px;
}

.cbute_linfo {
    display: block;
    width: 120px;
    line-height: 36px;
    text-align: right;
    position: absolute;
    left: 0;
    top: 0;
}

.cbute_ltxt {
    display: block;
    margin-left: 130px;
}

.cbute_right {
    display: block;
    width: 49%;
    margin-left: 49%;
    min-height: 140px;
    border-left: #e2e2e2 1px solid;
    padding-left: 15px;
}

.cbute_lrow {
    display: block;
    margin-top: 15px;
    position: relative;
}

.cbute_end {
    padding: 40px 0 0;
    text-align: center;
}

.bd_common {
    height: auto;
    padding: 30px 0;
    min-height: 500px;
    border-top: #cdcdcd 1px solid;
}

.odbtn {
    border: #0094ff 1px solid;
    background: #0094ff;
    border-radius: 3px;
    padding: 0;
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
    width: 200px;
    height: 40px;
    box-shadow: 1px 1px 4px #a2a2a2;
    -webkit-box-shadow: 1px 1px 4px #a2a2a2;
    -moz-box-shadow: 1px 1px 4px #a2a2a2;
}

#imgDiv {
    display: none !important;
}

.inbanner {
    margin-top: 60px;
}
/*.people_01{
	width:100%;
	height:450px;
	background:url("../images/people_01.jpg") center left no-repeat;
	background-size: 40%;
}

.people_01 .people_content{
	width:70%;
	padding-top:100px;
}
.people_01 .people_button{
	margin-top:40px;
}*/