* {
    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(0, 0, 0, 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(0, 0, 0, 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(255, 255, 255, 1);
}

.mobile-inner-header img {
    height: 75%;
}

.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(0, 0, 0, 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: #fff;
    border-bottom: solid 1px rgba(255, 255, 255, 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(255, 255, 255, 0.4);
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}


/* 网页头部 */

.header {
    width: 100%;
    height: 100px;
	background:#fff;
	box-shadow:0 0 10px #eee;
	position:fixed;
	left:0;
	top:0;
	z-index:999
}

.header_main {
    max-width: 1540px;
    /* overflow: hidden; */
    margin: auto;
}

.logo {
    float: left;
    width: 8.4%;
    height: 100%;
    line-height: 100px;
}

.logo img {
    width: 100%;
}


/* 导航 */

.nav {
    width: 54.22%;
    /* overflow: hidden; */
    height: 100px;
    line-height: 100px;
    float: left;
    margin-left: 12%;
}

.nav ul {
    width: 100%;
    /* overflow: hidden; */
    margin-bottom: 0;
}

.nav ul li {
    float: left;
    width: calc(100%/6);
    text-align: center;
    font-size: 16px;
    position: relative;
}

.nav ul li a {
    color: #333333;
    display: inline-block;
}

.nav ul li:hover a {
    color: #FEA665;
}

.xiala {
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 999;
    display: none;
    font-size: 14px;
	background:#fff;
	box-shadow:0 0 10px #eee;
}

.nav ul li:hover .xiala {
    display: block;
}

.nav .xiala a {
    display: block;
    color: #000 !important;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    border-top: 0.5px solid #f4f4f4;
    width: 100%;
}

.nav .xiala a:hover {
    color: #fff !important;
	background:#FEA665;
}

.header_right {
    float: right;
    width: 13%;
    height: 100px;
    line-height: 100px;
}

.header_language {
    float: left;
    font-size: 16px;
    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: 40px;
}


.header_language::after {
    content: "";
    width: 10px;
    height: 6px;
    background: url(../images/header_03.png) center no-repeat;
    position: absolute;
    right: 0;
    top: 45px;
}


.header_lTop {
    padding-left: 10px;
    text-transform: uppercase;
}

.header_right_xiala {
    width: 100%;
    position: absolute;
    top: 100px;
    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: 48px;
    line-height: 48px;
    font-size: 16px;
    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: 18px;
    left: 20px;
}

.header_language .header_right_xiala a:hover {
    color: #fff !important;
    background: #183AC7;
}


.header_search {
    float: right;
	position:relative;
}

.header_search_pic {
    width: 22px;
}

.header_search_pic img {
    width: 100%;
}

.header_search_box {
    display: none;
    width: 300px;
    position: absolute;
    top: 100px;
    right: 5%;
    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;
    padding-left: 10px;
    float: left;
    outline: none;
    border: none;
    background: #0065b6;
    color: #fff;
    font-size: 16px;
}


/* banner */
.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 100px;
}
.banner_01 video{
	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 img {
    width: 100%;
}

.banner_01 .swiper-pagination-bullet {
    width: 38px;
    height: 7px;
    background: #FFFFFF;
    border-radius: 0;
    opacity: 0.4;
}

.banner_01 .swiper-pagination-bullet-active {
    background: #FFFFFF;
    border-radius: 0;
    width: 38px;
    height: 7px;
    opacity: 1;
}


/* 关于我们 */

.about {
    max-width: 1540px;
    /* overflow: hidden; */
    margin: auto;
    margin-top: 40px;
    position: relative;
}

.title {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.title_ch {
    font-size: 36px;
    color: #000000;
    font-weight: 700;
}

.title_line {
    margin: 10px 0;
    text-align: center;
}

.title_line img{
	width:100%;}



.title_eng {
    font-size: 16px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.about_main {
    width: 100%;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}

.about_left {
    width: 48.11%;
    overflow: hidden;
    float: left;
}

.about_left img {
    float: left;
}

.about_right {
    float: right;
    margin-top: 30px;
    width: 49.4%;
    overflow: hidden;
}

.about_line {
    width: 36px;
    height: 3px;
    background: #FEA665;
}

.about_content {
    font-size: 16px;
    color: #000000;
    margin-top: 10px;
    line-height: 2.2;
}

.about_button {
    width: 100%;
    overflow: hidden;
    text-align: right;
    margin-top: 50px;
}

.about_button a {
    display: inline-block;
    width: 107px;
    height: 33px;
    background: #FEA665;
    line-height: 33px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
	transition: all 0.6s;
}

.about_button a:hover{
	color: #FEA665;
	border:1px solid #FEA665;
	background:none;
}

.about_data {
    width: 57.7%;
    height: 131px;
    background: rgba(255, 255, 255, 0.9);
    margin: auto;
    margin-top: 30px;
    position: absolute;
    left: 30%;
    bottom: -20px;
    box-shadow: 0 0 10px #e9e9e9;
}

.about_data_01 {
    width: 25%;
    float: left;
    float: left;
    margin-top: 30px;
    border-right: 1px solid #999999;
}

.about_data_01:last-child {
    border-right: none;
}

.about_data_01 .counter {
    font-size: 32px;
    text-align: center;
    color: #F9692F;
    position: relative;
    font-weight: 700;
}

.about_data_01:nth-child(1) .counter::after {
    content: "年";
    position: absolute;
    top: 0;
    right: 22%;
    font-size: 14px;
    color: #666666;
}

.about_data_01:nth-child(2) .counter::after {
    content: "㎡";
    position: absolute;
    top: 0;
    right: 22%;
    font-size: 14px;
    color: #666666;
}

.about_data_01:nth-child(3) .counter::after {
    content: "㎡";
    position: absolute;
    top: 0;
    right: 22%;
    font-size: 14px;
    color: #666666;
}

.about_data_01:nth-child(4) .counter::after {
    content: "+";
    position: absolute;
    top: 0;
    right: 22%;
    font-size: 14px;
    color: #666666;
}

.about_data_01 p:last-child {
    font-size: 16px;
    text-align: center;
    color: #333333;
}

.case {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.case_01 {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.case_01 .swiper-slide {
    width: 100%;
    overflow: hidden;
}

.case_01 .swiper-slide img {
    width: 100%;
}

.case_left {
    position: absolute;
    width: 71px;
    height: 71px;
    top: 48%;
    left: 150px;
    background: url(../images/case_left.png) center no-repeat;
}

.case_right {
    position: absolute;
    width: 71px;
    height: 71px;
    top: 48%;
    right: 150px;
    background: url(../images/case_right.png) center no-repeat;
}


/* 产品中心 */

.product {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.product_main {
    width: 100%;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.product_nav {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.product_nav a {
    display: inline-block;
    width: 271px;
    height: 62px;
    line-height: 62px;
    text-align: center;
    border: 1px solid #CCCCCC;
    font-size: 32px;
    color: #333;
    margin-right: 30px;
}

.product_nav a.activer {
    background: #F9692F;
    border: 1px solid #F9692F;
    color: #fff;
}

.product_content {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.product_content_01 {
    width: 100%;
    overflow: hidden;
    display: none;
}

.product_switch_01 {
    width: 100%;
    overflow: hidden;
	
}

.product_switch_01 img {
    width: 100%;
}

.product_switch_01 .swiper-slide{
	width:100%;
	position:relative;
}
.product_switch_01 .swiper-slide p{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(91,91,91,0.6);
	text-align:center;
	padding-top:60%;
	color:#fff;
	font-size:20px;
	opacity: 0;
	transition: all 0.6s;}

.product_switch_01 .swiper-slide:hover p{
	opacity: 1;
	}


/* 成衣展示 */

.show {
    max-width: 1260px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.show_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    position: relative;
}

.show_01 {
    width: 100%;
    overflow: hidden;
}

.show_01 .swiper-slide {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.show_pic_left {
    width: 27.3%;
    height: 312px;
    padding: 6px;
    background: #fff;
    position: absolute;
    top: 40px;
    left: 4%;
}

.show_pl_main {
    width: 99%;
    height: 300px;
    margin: auto;
}

.show_pic {
    width: 49.92%;
    overflow: hidden;
    margin-left: 25%;
}

.show_pic img {
    width: 100%;
}

.show_pic_right {
    width: 27.3%;
    height: 312px;
    padding: 6px;
    background: #fff;
    position: absolute;
    bottom: 40px;
    right: 0;
}

.show_pr_main {
    width: 99%;
    height: 300px;
    margin: auto;
}

.show_name {
    width: 12%;
    overflow: hidden;
    border-bottom: 10px solid #FEA665;
    font-size:25px;
    color: #333333;
    text-transform: uppercase;
    line-height: 1.2;
    position: absolute;
    right: 0;
    top: 00px;
}

.show_name span {
    color: #FEA665;
}

.show_new {
    width: 119px;
    height: 39px;
    background: url(../images/show_02.png) center no-repeat;
    line-height: 39px;
    text-align: center;
    font-size: 17.2px;
    color: #333333;
    position: absolute;
    right: 40px;
    top: 140px;
}

.show_button {
    width: 100%;
    height: 69px;
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 999;
}

.show_button .show_button_left {
    position: static;
    width: 93px;
    height: 69px;
    background: url(../images/show_left.png) center no-repeat;
    display: inline-block;
    margin: 0 !important;
    float: left;
}

.show_button .show_button_right {
    position: static;
    width: 93px;
    height: 69px;
    background: url(../images/show_right.png) center no-repeat;
    display: inline-block;
    float: left;
    margin: 0 !important;
}


/* 荣誉资质 */

.honor {
    max-width: 1265px;
    margin: auto;
    margin-top: 40px;
}

.honor_main {
    max-width: 1265px;
    margin: auto;
    margin-top: 40px;
    position: relative;
}

#certify {
    position: relative;
    width: 100%;
    margin: 0 auto
}

.swiperlistFore {
    padding-bottom: 20px;
}

#certify .swiper-container {
    margin: auto;
}

#certify .swiper-slide {
    width: 35%;
    text-align: center;
}

#certify .swiper-slide img {
    display: block;
    margin: auto;
    width: 100%;
}

#certify .swiper-slide p {
    height: 80px;
    line-height: 80px;
    font-size: 18px;
    color: #000000;
    box-shadow: 0 0 10px #e9e9e9;
    background: #fff;
}

#certify .swiper-slide-active p {
    font-weight: 700;
    color: #FEA665;
}

.honor_left {
    position: absolute;
    width: 71px;
    height: 71px;
    top: 48%;
    left: -150px;
    background: url(../images/case_left.png) center no-repeat;
}

.honor_right {
    position: absolute;
    width: 71px;
    height: 71px;
    top: 48%;
    right: -150px;
    background: url(../images/case_right.png) center no-repeat;
}


/* 企业实拍 */

.photo {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.photo_nav {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top: 20px;
}

.photo_nav a {
    display: inline-block;
    width: 271px;
    height: 62px;
    line-height: 62px;
    text-align: center;
    border: 1px solid #CCCCCC;
    color: #333;
    font-size: 32px;
    margin-right: 20px;
}

.photo_nav a.activ {
    background: #F9692F;
    color: #fff;
}

.photo_main {
    width: 100%;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.photo_main_01 {
    width: 100%;
    overflow: hidden;
    display: none;
    padding: 0 500px;
}

.photo_01 {
    width: 100%;
    overflow: unset;
    position: relative;
}

.photo_01 .swiper-slide {
    width: 100% !important;
    position: relative;
}

.photo_bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
}

.photo_pic {
    width: 100%;
    height: 100%;
}

.photo_pic img {
    width: 100%;
    height: 100%;
}

.photo_word {
    width: 100%;
    height: 67px;
    line-height: 67px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 20px;
    text-align: center;
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.photo_01 .swiper-slide.swiper-slide-active .photo_bg {
    opacity: 0;
}

.photo_01 .swiper-slide.swiper-slide-active .photo_word {
    opacity: 1;
}

.photo_button_left {
    display: inline-block;
    position: absolute;
    width: 71px;
    height: 71px;
    background: url(../images/case_left.png) center no-repeat;
    top: 40%;
    left: -100px;
}

.photo_button_right {
    display: inline-block;
    position: absolute;
    width: 71px;
    height: 71px;
    top: 40%;
    right: -100px;
    background: url(../images/case_right.png) center no-repeat;
}


/* 新闻资讯 */

.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: 271px;
    height: 62px;
    line-height: 62px;
    text-align: center;
    border: 1px solid #CCCCCC;
    color: #333;
    font-size: 32px;
    margin-right: 20px;
}

.news_nav a.acti {
    background: #F9692F;
    color: #fff;
}

.news_main {
    max-width: 100%;
    margin-top: 30px;
}

.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;
}

.news_ctitle {
    font-size: 22px;
    color: #333333;
}

.news_word {
    font-size: 17px;
    color: #666666;
    line-height: 1.8;
    margin-top: 20px;
}

.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: 71px;
    height: 71px;
    background: url(../images/case_left.png) center no-repeat;
    top: 40%;
    left: -30px;
}

.news_button_right {
    display: inline-block;
    position: absolute;
    width: 71px;
    height: 71px;
    top: 40%;
    right: -30px;
    background: url(../images/case_right.png) center no-repeat;
}

.news_01 .swiper-slide:hover {
    margin-top: -30px;
}

.news_01 .swiper-slide:hover .news_ctitle {
    font-weight: 700;
    color: #FEA665;
}

.news_01 .swiper-slide:hover .news_jiantou svg path {
    fill: #F9692F;
}


/* 页脚 */

.foot {
    width: 100%;
    height: 517px;
    background: url(../images/foot_bg.jpg) center no-repeat;
    padding-top: 60px;
    margin-top: 40px;
    position: relative;
}

.foot_main {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
}

.foot_left {
    float: left;
}

.foot_contatc {
    margin-top: 20px;
    font-size: 16px;
    line-height: 3;
    color: rgba(255, 255, 255, 0.6);
}

.foot_contatc img {
    margin-right: 10px;
}

.foot_line {
    width: 1px;
    height: 290px;
    background: rgba(255, 255, 255, 0.8);
    float: left;
    margin-left: 8%;
    margin-top: 20px;
}

.foot_title {
    font-size: 20px;
    color: #FFFFFF;
}

.foot_content {
    margin-top: 10px;
}

.foot_content a {
    display: block;
    font-size: 14px;
    color: #fff;
    line-height: 3;
}

.foot_about {
    float: left;
    margin-left: 8%;
}

.foot_pro {
    float: left;
    margin-left: 8%;
}

.foot_equ {
    float: left;
    margin-left: 8%;
}

.foot_news {
    float: left;
    margin-left: 8%;
}

.foot_ma {
    float: right;
}

.foot_ma_pic {
    margin-top: 20px;
}

.foot_ma_pic img {
    margin-right: 20px;
}

.copy {
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
}

.copy_main {
    max-width: 1540px;
    height: 78px;
    line-height: 77px;
    margin: auto;
    color: #fff;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.copy a {
    color: #fff;
    margin-left: 10px;
}


/* 关于我们内页 */

.inabout {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.inabout_main {
    width: 100%;
    overflow: hidden;
}

.inabout_left {
    float: left;
    width: 50%;
    height: 480px;
    overflow-y: scroll;
}

.inabout_left::-webkit-scrollbar {
    width: 4px;
}

.inabout_left::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    opacity: 0.2;
    background: rgba(248, 105, 47, 60%);
}

.inabout_left::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: rgba(248, 105, 47, 30%);
}

.inabout_name {
    font-size: 72px;
    font-weight: 700;
}

.inabout_content {
    margin-top: 20px;
    line-height: 2;
    font-size: 20px;
    color: #333333;
}

.inabout_right {
    width: 48%;
    overflow: hidden;
    float: right;
}

.inabout_right video {
    width: 100%;
}

.inabout_data {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.inabout_data_01 {
    width: calc(100% / 4);
    float: left;
    text-align: center;
}

.inabout_data_01 p:first-child {
    font-size: 29px;
    color: #2f2f2f;
}

.counter {
    font-size: 48px;
    color: #2f2f2f;
    font-weight: 700;
}

.inabout_data_01 p:last-child {
    font-size: 29px;
    color: #2f2f2f;
}


/* 发展历程 */
.history {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
    background: url(../images/hisbg.jpg) center no-repeat;
    height: 716px;
    padding-top: 40px;
}

.histitle {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    text-align: center;
}

.historys {
    max-width: 1540px;
    margin: 90px auto 0;
}

.title.intitle .titles {
    color: #bbb;
    font-size: 22px;
}

.history_left {
    float: left;
    width: 20%;
}

.historyLeft {
    width: 100%;
    overflow: hidden;
    height: 500px;
}

.history_left_item {
    margin-bottom: 35px;
    cursor: pointer;
}

.historyLeft .swiper-slide {
    color: #7a7a7a;
}

.historyLeft .swiper-slide.active {
    color: #000 !important;
}

.history_left_item_time {
    font-size: 24px;
    font-weight: bold;
}

.history_left_item_intro {
    font-size: 20px;
    margin-top: 10px;
}

.history_right {
    float: right;
    width: 78.8%;
    padding: 0 35px;
    position: relative;
}

.history_item {
    float: left;
    width: 100%;
    /* margin-right: 2%; */
}

.history_item:last-child {
    margin-right: 0;
}

.history_item_img img {
    width: 100%;
}

.history_item_date {
    font-size: 22px;
    color: #000;
    font-weight: bold;
}

.history_item_title {
    font-size: 14px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 20px;
}

.history_right .swiper-button-prev {
    left: 0;
    width: 30px;
    height: 51px;
    background: url(../images/history_left.png) center no-repeat;
    top: 60%;
}

.history_right .swiper-button-next {
    right: 0;
    width: 30px;
    height: 51px;
    background: url(../images/history_right.png) center no-repeat;
    top: 60%;
}

.culture {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.culture_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.culture_main_01 {
    width: 49%;
    height: 495px;
    float: left;
    margin-right: 2%;
    padding: 40px;
	background-size:cover;
}

.culture_main_01:last-child {
    margin-right: 0;
}

.culture_mtitle {
    font-size: 26px;
    color: #000000;
    font-weight: 700;
}

.culture_word {
    width: 70%;
    font-size: 19.6px;
    color: #000000;
    margin-top: 10px;
    line-height: 1.8;
}


/* 公司资质 */

.inhononr {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.intitle {
    font-size: 36px;
    color: #000000;
    text-align: center;
}

.inhonor_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.inhonor_main_01 {
    width: 23.5%;
    overflow: hidden;
    float: left;
    margin-right: 2%;
    margin-bottom: 30px;
}

.inhonor_main_01:nth-child(4n) {
    margin-right: 0;
}

.inhonor_main_01 a {
    width: 100%;
    overflow: hidden;
}

.inhonor_main_01 a img {
    width: 100%;
    overflow: hidden;
}


/* 公司设备 */

.inequ {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.inequ_nav {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top: 30px;
}

.inequ_nav a {
    display: inline-block;
    width: 104px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    font-size: 13px;
    background: #f8692f;
    border-radius: 30px;
    margin-right: 30px;
}

.intitle {
    font-size: 36px;
    color: #000000;
    text-align: center;
}

.inequ_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.inequ_main_01 {
    width: 23.5%;
    overflow: hidden;
    float: left;
    margin-right: 2%;
    margin-bottom: 30px;
}

.inequ_main_01:nth-child(4n) {
    margin-right: 0;
}

.inequ_main_01 a {
    width: 100%;
    overflow: hidden;
}

.inequ_main_01 a img {
    width: 100%;
    overflow: hidden;
    transition: all 0.6s;
}

.inequ_main_01:hover a img {
    transform: scale(1.2);
}


/* 公司产品 */

.inproduct {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.inproduct_title {
    width: 100%;
    overflow: hidden;
    padding-bottom: 10px;
    text-align: center;
    font-size: 36px;
    color: #000000;
    border-bottom: 1px solid #dcdcdc;
}

.inproduct_nav {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    text-align: center;
}

.inproduct_nav a {
    display: inline-block;
    font-size: 26px;
    color: #000000;
    border-right: 1px solid #000;
    padding-right: 10px;
    margin-right: 10px;
}

.inproduct_nav a:last-child {
    border-right: none;
}

.inproduct_nav a:hover {
    color: #f8692f;
    font-weight: 700;
}

.inproduct_nav_list {
    width: 100%;
    overflow: hidden;
    background: url(../images/inproduct_line.png) center top 15px no-repeat;
    text-align: center;
    margin-top: 40px;
}

.inproduct_nav_list a {
    display: inline-block;
    font-size: 17px;
    color: #333333;
    padding-top: 30px;
    margin-right: 150px;
    position: relative;
}

.inproduct_nav_list a:last-child {
    margin-right: 0;
}

.inproduct_nav_list a::before {
    content: "";
    width: 26px;
    height: 26px;
    background: url(../images/inproduct_01.jpg) center no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.inproduct_nav_list a:hover::before {
    content: "";
    width: 26px;
    height: 26px;
    background: url(../images/inproduct_02.jpg) center no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.inproduct_nav_list a:hover {
    color: #f8692f;
}

.inproduct_main {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.inproduct_main_01 {
    float: left;
    width: 23.5%;
    overflow: hidden;
    margin-right: 2%;
    position: relative;
    margin-bottom: 30px;
}

.inproduct_main_01:nth-child(4n) {
    margin-right: 0;
}

.inproduct_pic {
    width: 100%;
    overflow: hidden;
}

.inproduct_pic img {
    width: 100%;
}

.inproduct_word {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-top: 50%;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.6s;
}

.inproduct_main_01:hover .inproduct_word {
    opacity: 1;
}


/* 产品详情 */

.proshow {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
    position: relative;
}

.proshow_intr {
    width: 100%;
    overflow: hidden;
}

.proshow_intr_01 {
    width: 100%;
    overflow: hidden;
    
}

.proshow_intr_pic {
    float: left;
    width: 52.6%;
    overflow: hidden;
	
}

.proshow_intr_pic_01{
	width:100%;
	overflow:hidden;
	display: none;
}

.proshow_intr_pic img {
    width: 100%;
}

.proshow_intr_content {
    width: 46%;
    overflow: hidden;
    float: right;
}

.proshow_ic_name {
    font-size: 26px;
    color: #000000;
    font-weight: 700;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

.proshow_ic_title {
    font-size: 18px;
    color: #000000;
    font-weight: 700;
    margin-top: 20px;
}

.proshow_ic_word {
    margin-top: 2px;
    font-size: 18px;
    color: #000;
    margin-top: 20px;
    line-height: 2.2;
}

.proshow_swiper {
    width: 46%;
    overflow: hidden;
    position: absolute;
    right: 0;
    bottom: 0;
}

.proshow_01 {
    width: 100%;
    overflow: hidden;
}

.proshow_01 .swiper-slide {
    width: 100%;
    overflow: hidden;
}

.proshow_01 .swiper-slide img {
    width: 100%;
}

.details {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.details_title {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    background: #f7f7f7;
    font-size: 22px;
    color: #000000;
    font-weight: 700;
}

.details_pic {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.details_pic img {
    width: 100%;
}

.pro_rec {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.pro_rec_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.pro_rm_01 {
    width: 100%;
    overflow: hidden;
}

.pro_rm_01 .swiper-slide {
    width: 100%;
    overflow: hidden;
}

.pro_rm_01 .swiper-slide img {
    width: 100%;
}


/* 新闻资讯内页 */

.info {
    width: 100%;
    overflow: hidden;
    padding-top: 30px;
}

.info_title {
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
}

.info_main {
    max-width: 1540px;
    margin: auto;
    overflow: hidden;
}

.info_main_01 {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px #eee solid;
}

.info_left {
    float: left;
    width: 25.8%;
}

.info_left img {
    width: 100%;
}

.info_right {
    float: right;
    width: 74%;
    padding-left: 20px;
}

.info_right_top {
    font-size: 18px;
    line-height: 50px;
    width: 99%;
    border-bottom: 1px #eee solid;
}

.info_right_date {
    font-size: 15px;
    line-height: 40px;
    color: #7f7f7f;
}

.info_right_main {
    line-height: 30px;
    font-size: 16px;
    color: #7f7f7f;
}

.info_right_button {
    margin-top: 20px;
    background-color: #f8692f;
    width: 93px;
    height: 33px;
    line-height: 33px;
    text-align: center;
}

.info_right_button a {
    color: #fff;
}


/* 新闻详情 */

.news_d_title {
    margin: 5px 0;
    padding: 0;
    text-align: center;
    font-size: 16px;
}

.news_d_info {
    text-align: center;
    color: #999;
    border: 1px solid #e1e1e1;
    border-left: 0;
    border-right: 0;
    margin: 10px 0;
    padding: 5px 0;
}

#art_content {
    word-break: break-all;
    font-size: 16px;
    line-height: 2.2;
    padding: 0 0 10px 0;
}

#art_content img {
    max-width: 100%;
}

.newshow {
    width: 100%;
    overflow: hidden;
}

.newshows {
    max-width: 1540px;
    margin: 20px auto 40px;
}


/* 联系我们 */

.p12-aboutinfo-1 {
    max-width: 1540px;
    margin: auto;
    overflow: hidden;
    z-index: 9999;
}

.p12-aboutinfo-1 .tit {
    height: 80px;
    background: url(../image/d63899212b4c4e7d99ac9ed293b3ac9f_2.jpg)no-repeat center 91px;
    clear: both;
    text-align: center;
}

.p12-aboutinfo-1 .tit span {
    display: block;
    font-size: 28px;
    color: #000;
    padding-top: 10px;
}

.p12-aboutinfo-1 .tit em {
    font-style: normal;
    color: #999;
    text-transform: uppercase;
    font-family: "Times New Roman";
    padding-top: 5px;
    display: block;
}

.g-gywm {
    height: 530px;
    max-width: 1540px;
    margin: auto;
    overflow: hidden;
}

.wm-l {
    width: 50%;
    float: left;
    color: #fff;
    height: 420px;
    overflow: hidden;
    background: #0f6dc2;
    padding: 60px 0 0 40px;
}

.wm-l h4 {
    font: 20px "Microsoft YaHei";
    line-height: 60px;
    padding-bottom: 30px;
    margin: 0;
}

.wm-l li {
    font: 16px "Microsoft YaHei";
    color: #fff;
    line-height: 40px;
}

.wm-l li b {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
}

.wm-r {
    float: left;
    width: 50%;
}

#map {
    width: 100%;
    height: 460px;
    border: 1px solid rgb(204, 204, 204);
    font-size: 12px;
}

.map-title {
    font-size: 16px;
    line-height: 24px;
}

.map-list {
    font-size: 14px;
    line-height: 22px;
    color: #333;
    margin-top: 6px;
}


/* 在线留言 */

.listcontacts {
    width: 100%;
    background: #f1f1f1;
    overflow: hidden;
}

.listcontacts>div {
    max-width: 1540px;
    margin: 5rem auto;
    overflow: hidden;
}

.listcontacts>div>span {
    font-size: 28px;
    color: #6a6a6a;
}

.listcontacts>div>span>i {
    font-style: normal;
    font-size: 19px;
    color: #8d8c8c;
    font-family: Arial Regular;
    text-transform: uppercase;
    margin-left: 5px;
}

.listcontactsTitle {
    overflow: hidden;
    margin-top: 3rem;
}

.listcontactsTitle input {
    height: 58px;
    display: block;
    float: left;
    padding-left: 47px;
    box-sizing: border-box;
    width: 48%;
    font-size: 16px;
    margin-bottom: 2rem;
    border: 1px solid #ccc;
    outline: none;
}

.listcontactsTitle input:nth-child(1) {
    background: url(../image/122.png)left 0 no-repeat #fff;
    background-position: 11px;
}

.listcontactsTitle input:nth-child(2) {
    float: right;
    background: url(../image/123.png)left 0 no-repeat #fff;
    background-position: 17px;
}

.listcontactsTitle input:nth-child(3) {
    background: url(../image/124.png)left 0 no-repeat #fff;
    background-position: 8px;
}

.listcontactsTitle input:nth-child(4) {
    float: right;
    background: url(../image/125.png)left 0 no-repeat #fff;
    background-position: 12px;
}

.listcontactsTextarea {
    width: 100%;
    border: 1px solid #ccc;
    background: url(../image/126.png)left 0 no-repeat #fff;
    background-position: 12px 16px;
    padding-left: 47px;
    font-size: 16px;
    padding-top: 18px;
    height: 174px;
    outline: none;
}

.listcontactsubmit {
    text-align: center;
    margin-top: 3rem;
}

.listcontactsubmit input {
    background: #0f6ec2;
    color: #fff;
    border: 0;
    width: 260px;
    height: 50px;
    font-size: 16px;
    margin: 0 5px;
}

.listcontactsubmit input:nth-child(2) {
    background: #484848;
}