* {
    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(13, 13, 22, 0.9);
    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: #fff;
    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(255, 255, 255, 1);
}

.mobile-inner-header img {
    height: 100%;
}

.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(13, 13, 22, 0.9);
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    z-index: 99999999;
}

.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: 80px;
    background: #545454;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}


.header_main {
    max-width: 1800px;
    height: 80px;
    margin: auto;
}

.logo {
    float: left;
    width: 25.875%;
    line-height: 80px;
}

.logo img {
    width: 100%;
}

.header_right {
    float: right;
    width: 65.5%;
    line-height: 80px;
}


/* 导航 */

.nav {
    width: 75%;
    float: left;
}

.nav ul {
    width: 100%;
    margin-bottom: 0;
}

.nav ul li {
    float: left;
    width: calc(100%/6);
    text-align: center;
    font-size: 18px;
	position:relative;
}

.nav ul li a {
    color: #fff;
    display: inline-block;
    position: relative;
}

.nav ul li a:hover {
    color: #ff7800;
}

.nav ul li a:hover::before {
    content: "";
    width: 100%;
    height: 3px;
    background: #ff7800;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.xiala {
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 999;
    display: none;
}

.xiala ul {
    margin-bottom: 0;
}

.nav ul li .xiala ul li::after {
    content: "";
    width: 0;
    height: 0;
    background: none;
}

/*.nav ul li:hover .xiala {
    display: block;
}*/

.nav .xiala li {
    height: 48px;
    line-height: 48px;
    font-size: 15px;
    background-color: #fff;
    width: 100%;
	font-weight:400;
}

.nav .xiala li a{
	color:#666;
}
.header .nav .xiala li::before{
	content:"";
}
	

.header_search {
    float: left;
    position: relative;
    margin-left: 40px;
}

.header_search img {
    border-left: 1px solid #fff;
    padding-left: 40px;
}

.header_search_form {
    display: none;
    position: absolute;
    width: 500px;
    height: 100px;
    background: #fff;
    z-index: 9999;
    top: 80px;
    right: 0px;
    padding-top: 25px;
    padding-left: 30px;
}

.header_search_form input[type=text] {
    width: 350px;
    height: 40px;
    line-height: 40px;
    float: left;
    outline: none;
    border: 1px solid #0d0d16;
    padding-left: 10px;
}

.header_search_form input[type=submit] {
    width: 80px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    float: left;
    outline: none;
    border: none;
    background: #0d0d16;
}

.header_lang {
    float: right;
}

.header_lang {
    width: 8%;
    height: 35px;
}

.header_lang select {
    width: 100%;
    height: 35px;
    background: none;
    border: 1px solid #fff;
    outline: none;
    padding: 0 10px;
    border-radius: 30px;
    color: #fff;
}

.header_lang option {
    color: #0d0d16;
}


/* banner */

.banner {
    position: relative;
	overflow:hidden;
	font-size:0;
    z-index: 0 !important;
}

.bannner_word {
    width: 100%;
    overflow: hidden;
    text-align: center;
    position: absolute;
    top: 40%;
    z-index: 998;
}

.bannner_word_01{
	width:100%;
	overflow:hidden;
}

.bannner_word_01 .swiper-slide{
	width:100%;
	overflow:hidden;
}


.banner_ch {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
}

.bannner_line {
    width: 58px;
    height: 5px;
    background: #f49308;
    margin: 20px auto;
}

.banner_eng {
    font-size: 16px;
    color: #fff;
}

.banner_01 img {
    width: 100%;
}

.banner_01 video {
    width: 100%;
	    position: relative;
    z-index: 1;
	
	    
}

.banner_01.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: left;
    padding-left: 10%;
}

.banner_01 .swiper-pagination-bullet {
    background: #c1c9d6;
    width: 15px;
    height: 15px;
    opacity: 1;
    /* position: absolute; */
    /* top: auto;
    bottom: 30px;
    left: 10%; */
}

.banner_01 .swiper-pagination-bullet-active {
    width: 15px;
    height: 15px;
    background-color: #fff;
    /* position: absolute; */
    /* top: auto;
    bottom: 30px;
    left: 10%; */
}


/* 关于我们 */

.about {
    max-width: 1520px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.about_left {
    width: 41.24%;
    overflow: hidden;
    float: left;
}

.about_left_title {
    width: 100%;
    overflow: hidden;
}

.about_lt_eng {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.about_lt_ch {
    font-size: 30px;
    color: #000;
}

.about_lt_line {
    width: 70px;
    height: 2px;
    background: #ff7800;
    margin: 20px 0;
}

.about_name {
    font-size: 30px;
    color: #222222;
    margin-bottom: 20px;
}

.about_left_content {
    font-size: 16px;
    color: #222222;
    line-height: 2.2;
}

.about_left_content {
    font-size: 16px;
    color: #222222;
    line-height: 2.2;
}

.about_button {
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
    font-size: 18px;
}

.about_button a {
    display: block;
    width: 152px;
    height: 48px;
    background: #ff7800;
    text-align: center;
    line-height: 48px;
    color: #fff;
    border-radius: 10px;
}

.about_right {
    width: 50.85%;
    overflow: hidden;
    float: right;
}

.about_right img {
    width: 100%;
}


/* 新闻中心 */

.news {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.news_main {
    max-width: 1520px;
    overflow: hidden;
    margin: auto;
}

.title_top {
    max-width: 1520px;
    overflow: hidden;
    margin: auto;
}

.news_top_left {
    float: left;
}

.news_more {
    width: 100px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    float: right;
    margin-top: 85px;
}

.news_more a {
    display: block;
    width: 100%;
    overflow: hidden;
    display: block;
    background: #ff7800;
    color: #fff;
}

.news_contents {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
}

.news_content_01 {
    width: 100%;
    overflow: hidden;
    background: #fff;
	border:1px solid #ccc;
	transition: all 0.6s;
}

.news_pic {
	display:none;
    width: 100%;
    overflow: hidden;
}

.news_pic img {
    width: 100%;
	transition: all 0.6s;
}

.news_content {
    width: 100%;
    overflow: hidden;
    padding: 20px;
	transition: all 0.6s;
}

.news_c_titlr {
    font-size: 18px;
    color: #2b2b2b;
    font-weight: 700;
    margin: 10px 0;
	transition: all 0.6s;
}

.news_c_word {
    font-size: 16px;
    color: #a6a6a6;
    line-height: 1.8;
	transition: all 0.6s;
}

.news_date {
    font-size: 18px;
    color: #585858;
    margin-top: 30px;
    margin-bottom: 30px;
	transition: all 0.6s;
}

.news_content_01:hover {
    background: #ff7800;
}
.news_content_01:hover .news_pic img{
	transform: scale(1.2);
}

.news_content_01:hover .news_c_titlr {
    color: #fff;
}

.news_content_01:hover .news_c_word {
    color: #fff;
}

.news_content_01:hover .news_date {
    color: #fff;
}


/* 产品中心 */

.product {
    width: 100%;
    overflow: hidden;
    margin: auto;
	margin-top:40px;
}

.product_01 {
    width: 100%;
    overflow: unset !important;
    margin-top: 20px;
    /*padding: 0 70px;*/
}

.product_01 .swiper-slide {
    width: 100%;
    overflow: hidden;
}

.product_01 .swiper-slide a {
    display: block;
    height: 100%;
    width: 100%;
    border-bottom: 9px solid #ff7800;
    position: relative;
}

.product_pic {
    width: 100%;
    overflow: hidden;
}

.product_pic img {
    width: 100%;
}

.product_word {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-top: 30%;
    font-size: 14px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.6s;
	opacity: 0;
}

.product_hover {
    width: 100%;
    height: 50px;
    background: rgba(229, 146, 26, 0.9);
    text-align: center;
    color: #fff;
    line-height: 50px;
    font-size: 14px;
    position: absolute;
    left: 0;
    bottom: 40%;
    opacity: 0;
    transition: all 0.6s;
}

.product_01 .swiper-slide a:hover .product_word {
    opacity: 0;
}

.product_01 .swiper-slide a:hover .product_hover {
    opacity: 1;
}

.product_left {
    position: absolute;
    width: 74px;
    height: 74px;
    top: 50%;
    left: 50px;
    background: url(../images/product_left.png);
    background-size: cover;
}

.product_right {
    position: absolute;
    width: 74px;
    height: 74px;
    top: auto;
    top: 50%;
    right: 50px;
    background: url(../images/product_right.png);
    background-size: cover;
}


/* 业务领域 */

.business {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.business_main {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.business_left {
    width: 33.125%;
    overflow: hidden;
    float: left;
    position: relative;
}

.bussiness_pic {
    width: 100%;
    overflow: hidden;
}

.bussiness_pic img {
    width: 100%;
}

.business_word {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding-left: 40px;
    padding-top: 15px;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.6s;
	opacity: 1;
}

.business_ch {
    font-size: 20px;
}

.business_eng {
    font-size: 14px;
}

.business_left:hover .business_word {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid #ff7800;
	opacity: 1;
}

.business_right {
    width: 66.875%;
    overflow: hidden;
    float: right;
}

.bussiness_right_01 {
    width: 50%;
    overflow: hidden;
    float: left;
    position: relative;
    transition: all 0.6s;
}
.bussiness_right_01 .bussiness_pic{
	height:420.6px;
}

.bussiness_right_01:hover .business_word {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid #ff7800;
	opacity: 1;
}


/* 合作伙伴 */

.cooperation {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}

.cooperation_01 {
    width: 100%;
    overflow: hidden;
	margin-top:20px;
}

.cooperation_01 .swiper-slide a {
    width: 100%;
    display: block;
    text-align: center;
	vertical-align:middle;
}

.cooperation_01 .swiper-slide a img{
	max-width:100%;
	transition: all 0.6s;
}
.cooperation_01 .swiper-slide:hover img{
	transform: scale(1.1);
}

/* 页脚 */

.foot {
    width: 100%;
    overflow: hidden;
    background: #2a2a2a;
    padding-top: 80px;
    padding-bottom: 40px;
}

.foot_main {
    max-width: 1800px;
    overflow: hidden;
    margin: auto;
}

.foot_logo {
    float: left;
    overflow: hidden;
    margin-top: 40px;
    margin-right: 4%;
}

.foot_nav {
    float: left;
    width: 50%;
    overflow: hidden;
    border-left: 1px solid #3f3f3f;
    padding-left: 4%;
    padding-bottom: 20px;
}

.foot_nav_01 {
    float: left;
    margin-right: 30%;
}

.foot_nav_01:last-child {
    margin-right: 0;
}

.foot_nav_01 a {
    display: block;
    line-height: 2;
    font-size: 14px;
    color: #888888;
}

.foot_title {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.foot_contact {
    float: left;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    width: 18%;
    padding-left: 3%;
}

.foot_contact span {
    display: block;
    font-size: 26px;
    color: #ff7800;
}

.foot_contact p {
    margin-bottom: 20px;
    position: relative;
}

.foot_contact p:nth-child(1)::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../images/foot_02.png) center no-repeat;
    position: absolute;
    top: 10px;
    left: -40px;
}

.foot_contact p:nth-child(2)::before {
    content: "";
    width: 29px;
    height: 21px;
    background: url(../images/foot_03.png) center no-repeat;
    position: absolute;
    top: 5px;
    left: -40px;
}

.foot_contact p:nth-child(3)::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../images/foot_04.png) center no-repeat;
    position: absolute;
    top: 0px;
    left: -40px;
}

.foot_ma {
    float: right;
    line-height: 2.2;
}

.foot_ma img {
    border-radius: 20px;
	height:177px;
	width:177px;
}

.foot_ma p {
    border-radius: 30px;
    width: 115px;
    height: 32px;
    color: #fff;
    text-align: center;
    margin: auto;
    margin-top: 10px;
    font-size: 16px;
}

.copy {
    width: 100%;
    padding: 20px 0;
    color: #fff;
    text-align: center;
    background: #2a2a2a;
    border-top: 1px solid #3f3f3f;
}

.copy a {
    color: #fff;
    margin-left: 10px;
}


/* 业务领域内页 */

.innav {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-bottom: 1px solid #dcdcdc;
}

.innav a {
    color: #4d4d4d;
    font-size: 18px;
    display: inline-block;
    margin-right: 20px;
    position: relative;
}

.innav a.actt {
    color: #ed910a;
}

.innav a.actt::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #ed910a;
    position: absolute;
    bottom: 0px;
       left: 50%;
        transform: translateX(-50%);
}

.inbusiness {
    max-width: 1800px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.inbusiness_title {
    font-size: 26px;
    color: #181818;
    font-weight: 700;
    text-align: center;
}

.inbusiness_content {
    max-width:1400px;
    overflow: hidden;
    margin: auto;
    line-height: 2;
    font-size: 20px;
    color: #181818;
}
.inbusiness_pic{
	width:50%;
	overflow:hidden;
	float:left;
}
.inbusiness_pic img{
	width:100%;
}
.inbusiness_ccontent{
	width:50%;
	overflow:hidden;
	float:right;
	padding:40px;
}
.inbusiness_ctitle{
	font-size:20px;
	color:#000;
}

.inbusiness_case{
	width:100%;
	overflow:hidden;
	margin:15px 0;
}
.inbusiness_case a{
	display:block;
	width:160px;
	height:30px;
	line-height:30px;
	background:#ff7800;
	color:#fff;
	font-size:14px;
	text-align:center;
}
.inbusiness_word{
	width:100%;
	overflow:hidden;
	line-height:2;
	font-size:14px;
}
/*.inbusiness_content p{
	width:100%;
}
.inbusiness_content p img{
	width:100%;}
.inbusiness_content p:first-child{
	width: 100%;
	overflow:hidden;
	text-align:left;
	}

.inbusiness_pic {
    margin-top: 30px;
    overflow: hidden;
}

.inbusiness_pic_01 {
    width: 32.3%;
    margin-right: 1.55%;
    float: left;
    margin-bottom: 40px;
}

.inbusiness_pic_01 img {
    width: 100%;
}

.inbusiness_pic_01:nth-child(3n) {
    margin-right: 0;
}
*/

/* 合作伙伴内页 */

.partner {
    max-width: 1520px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
    text-align: center;
}

.partner_01 {
    width: 16%;
    overflow: hidden;
    float: left;
    margin-bottom: 30px;
}

.partner_01 a {
    display: block;
	width:100%;
	vertical-align: middle;
}
.partner_01 a img{
	max-width:100%;
	height:auto;
	    
}


/* 关于我们内页 */

.inabout {
    max-width: 1400px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
	 
}
.companyProfile{

   display: flex;
    justify-content: space-between;
    align-items: center;
}
.inabout_left {
    width: 700px;
       height: 400px;
}
.inabout_left  img{
    width: 100%;
    height: 100%;
    object-fit: contain;

}
.inabout_left video {
    width: 100%;
}

.inabout_right {
    width: 46.8%;
    overflow: hidden;
    float: right;
}

.inabout_title {
    font-size:30px;
    color: #ff7800;
    margin: 20px 0 10px;
	font-weight:bold;
}

.inabout_content {
    line-height: 2.3;
    color: #202020;
    font-size: 14px !important;
}
.inabout_content img{
	max-width:100%;
}

/* 荣誉资质 */

.honor {
    max-width: 1780px;
    overflow: hidden;
    margin: auto;
    margin-top: 60px;
}

.honor_01 {
    width: 18%;
    overflow: hidden;
    float: left;
    margin-right: 2.5%;
    margin-bottom: 40px;
	background: #f5f5f5;
    padding: 20px;
}

.honor_01 img {
    width: 100%;
}

.honor_01:nth-child(5n) {
    margin-right: 0;
}


/* 联系我们 */

.p12-aboutinfo-1 {
    max-width: 1700px;
    margin: auto;
    overflow: hidden;
    z-index: 9999;
	margin-top:40px;
}

.p12-aboutinfo-1 .tit {
    height: 80px;
    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: 1520px;
    margin: auto;
	margin-top:40px;
}

.wm-l {
    width: 50%;
    float: right;
    color: #000;
    height: 420px;
    background: #fff;
    padding: 60px 50px 0 40px;
	box-shadow:0 0 10px #ddd;
}

.wm-l h4 {
    font: 20px "Microsoft YaHei";
    line-height: 60px;
    padding-bottom: 30px;
    margin: 0;
}

.wm-l li {
    font: 16px "Microsoft YaHei";
    color: #000;
    line-height: 40px;
}

.wm-l li b {
    font-weight: bold;
    font-size: 20px;
    color: #000;
}

.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: 1520px;
    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: #0d0d16;
    color: #fff;
    border: 0;
    width: 260px;
    height: 50px;
    font-size: 16px;
    margin: 0 5px;
}

.listcontactsubmit input:nth-child(2) {
    background: #484848;
}


/* 新闻中心内页 */

.ny_ban {
    max-width: 1520px;
    height: 120px;
    margin: auto;
    position: relative;
}

.ny_ban .w_1650 {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.ny_ban h2 {
    font-size: 50px;
    color: #000;
    font-weight: bold;
    line-height: 2;
    position: relative;
}

.ny_ban h2::after {
    display: block;
    width: 100%;
    height: 8px;
    content: '';
    background: #f5b53d;
    position: absolute;
    left: 0;
    bottom: 0;
}


.new {
    max-width: 1520px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}

.new_main {
    width: 100%;
    overflow: hidden;
}

.new_main_01 {
    width: 49%;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f6f6f6;
	margin-right:2%;
	float:left;
}

.new_main_01:nth-child(2n){
	margin-right:0;
}

.new_pic {
    width: 20%;
    float: left;
    overflow: hidden;
}

.new_pic img {
    width: 100%;
}

.new_right {
    float: right;
    width: 80%;
    padding: 20px;
}

.new_rleft {
    width: 75%;
    float: left;
    color: #000;
}

.new_rtitle {
    font-size: 16px;
}

.new_rword {
    font-size: 12px;
    line-height: 2px;
    margin-top: 30px;
}

.new_rdate {
    float: right;
    width: 15%;
    overflow: hidden;
    text-align: center;
    color: #000;
}

.new_rd_day {
    font-size: 28px;
    font-weight: 700;
}

.new_rd_year {
    font-size: 14px;
}

/* 新闻详情 */

.news_d_title {
    margin: 5px 0;
    padding: 0;
    text-align: center;
    font-size: 30px;
    color: #28292a;
	margin-top:40px;
}

.news_d_info {
    text-align: center;
    color: #333;
    border-bottom: 1px solid #000;
	
    border-left: 0;
    border-right: 0;
    margin: 10px 0;
    padding: 5px 0;
	margin-top:20px;
	padding-bottom:20px;
}

#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: 1200px;
    margin: 20px auto 40px;
}


/* 案例展示 */

.incase {
    max-width: 1520px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}

.incase_title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    width: 100%;
    text-align: center;
}

.inacse_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.incase_main_01 {
   width: 30.9%;
    overflow: hidden;
    float: left;
    margin-right: 3.65%;
    position: relative;
    margin-bottom: 60px;
}

.incase_main_01:nth-child(3n) {
    margin-right: 0;
}

.incase_pic {
    width: 100%;
    overflow: hidden;
}

.incase_pic img {
    width: 100%;
}

.incase_word {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(254, 160, 26, 0.61);
    padding: 20px 42px;
    opacity: 0;
    transition: all 0.6s;
}

.incase_word_main {
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    text-align: center;
    padding-top: 30%;
    color: #fff;
}
.incase_word_main p{
	font-size:20px;}

.incase_main_01:hover .incase_word {
    opacity: 1;
}

.incase_big_pic {
    width: 100%;
    height: 100%;
    background: rgba(50, 50, 50, 0.5);
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 999;
    display: none;
}

.incase_close {
    font-size: 80px;
    float: right;
    cursor: pointer;
    color: #fff;
}

.incase_big_pic img {
    display: block;
    width: 40%;
    overflow: hidden;
    margin: auto;
    margin-top: 140px;
}

.banner_eng{
	display:none;
}

.banner_pagination{
	display:none;
}

.honornav{
	text-align:center;
	margin-top:40px;
}
.honornav a{
	display:inline-block;
	line-height:45px;
	height:45px;
	font-size:16px;
	color:#fff;
	padding:0 25px;
	border-radius:30px;
	background:#000;
	margin:0 15px;
	
}
.honornav a.active{
	background:#ff7800;
}
.inpar{
	cursor:pointer;
	margin:30px 2% 0 0;
	float:left;
	width:23.5%;
	text-align:center;
	background:#f9f9f9;
	height:250px;
	padding-top:40px;
}
.inpar:nth-child(4){
	margin-right:0;
}
.inpar_pic{
	height:55px;
	line-height:55px;
}
.inpar_title{
	font-size:18px;
	color:#333;
	margin-top:15px;
	font-weight:bold;
}
.inpar_titles{
	font-size:14px;
	color:#666;
	margin-top:10px;
	line-height:2;
}
.inpar:hover{
	background:#ff7800;
}
.inpar:hover .inpar_title,
.inpar:hover .inpar_titles{
	color:#fff;
}
.job{
	width:100%;
	overflow:hidden;
	margin:40px 0;
}
.jobs{
	max-width:1600px;
	margin:auto;
}
.job_top {
	width:100%;
    height: 60px;
    color: #fff;
    line-height: 60px;
    background: #ff7800;
	font-size:16px;
	padding:0 40px;
}
.job_name{width: 38.88%;box-sizing: border-box;padding-right: 10px; float:left;}
.job_num{width: 21.18%;box-sizing: border-box;padding-right: 10px; float:left;}
.job_money{width: calc(37.89% - 45px);box-sizing: border-box;padding-right: 10px; float:left;}
.job_lists{
	border-bottom:1px solid #ddd;
	
}
.job_list_top{
	width:100%;
    height: 60px;
    line-height: 60px;
	font-size:16px;
	padding:0 40px;
}
.job_list_name{width: 38.88%;box-sizing: border-box;padding-right: 10px; float:left;}
.job_list_num{width: 21.18%;box-sizing: border-box;padding-right: 10px; float:left;}
.job_list_money{width: calc(37.89% - 45px);box-sizing: border-box;padding-right: 10px; float:left;}
.job_list_icon{float:left; font-size:24px;}
.job_list_bot{
	line-height:2;
	font-size:16px;
	padding:0 40px 40px;
	display:none;
}
.job_list_bot a{
	display:inline-block;
	margin-top:20px;
	text-align:center;
	height:45px;
	line-height:45px;
	padding:0 30px;
	font-size:16px;
	color:#fff;
	background:#ff7800;
	border-radius:30px;
}
.index_about {
    width: 100%;
    overflow: hidden;
    background: url(../images/abbg.jpg) bottom center no-repeat;
    padding: 60px 0;
}

.index_abouts {
    max-width: 1400px;
    margin: auto;
}

.index_ab_fr {
    float: right;
    width: 46.6%;
	margin-top:30px;

}

.index_ab_fr video {
    width: 100%;
}

.index_ab_fl {
    float: left;
    width: 49.4%;
}

.indextitle {
    width: 100%;
    overflow: hidden;
}

.indextitle_fr {
    float: right;
    margin-top: 25px;
}
.indextitle_fr a{
display:block;
	width:130px;
	height:40px;
	line-height:40px;
	text-align:center;
	background:#f48326;
	font-size:14px;
	color:#fff;
}
.indextitle_fl {
    float: left;
}

.title_icon {
    float: left;
	display:none;
}

.indextitlecontainer {
    float: left;
}

.indexmaintitle {
    font-size: 24px;
    color: #9f9f9f;
    text-transform: uppercase;
    opacity: 0.2;
}

.indextitles {
    font-size: 36px;
    color: #333;
    margin-top: -10px;
	font-weight:bold;
}

.index_ab_con {
    font-size: 16px;
    color: #000;
    line-height: 2.5;
    margin-top: 25px;
}

.index_service {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.index_service_title {
    text-align: center;
}

.index_service_maintitle {
    font-weight: bold;
    font-size: 36px;
    color: #000;
}

.index_service_titles {
    font-size: 20px;
    color: #818181;
    font-weight: 300;
}

.index_service_top {
	max-width:1200px;
    margin: 35px auto 0;
}

.index_service_top_fl {
    float: left;
    width: 50%;
	display:none;
}

.index_service_top_fl img {
    width: 100%;
}

.index_service_top_fr {
    font-size: 16px;
    color: #333;
    line-height: 2;
    text-align: center;
}



.swiper-container.indexserviceswiper {
    max-width: 1400px;
    margin: 25px auto 0;
}

.indexserviceswiper a {
    display: block;
    border: 4px solid #fff;
}

.index_service_pic img {
    width: 100%;
}

.index_service_name {
    width: 100%;
    height: 70px;
    line-height: 70px;
    padding-left: 10px;
    font-size: 26px;
    color: #1d1d1d;
    background: #efefef url(../images/sericon.png) right 15px center no-repeat;
}

.indexserviceswiper a:hover {
    border: 4px solid #f48326;
}

.indexserviceswiper a:hover .index_service_name {
    color: #fff;
    background: #f48326 url(../images/sericon_active.png) right 15px center no-repeat;
}

.index_service_bot {
    text-align: center;
    margin-top: 15px;
}

.index_service_bot .swiper-pagination {
    position: static;
    width: 100%;
}

.index_service_bot .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    
    margin: 0 4px;
	 background: #f9c192;
}

.index_service_bot .swiper-pagination-bullet-active {
   background: #f48326;
}

.index_mid {
    width: 100%;
    overflow: hidden;
    background: url(../images/midbg.jpg) center no-repeat;
    margin-top: 25px;
    padding: 35px 0;
}

.index_mids {
    max-width: 1035px;
    margin: auto;
}

.index_mid_fl {
    float: left;
}

.index_mid_fl_title {
    font-weight: bold;
    color: #fff;
    font-size: 32px;
    margin-top: 15px;
	letter-spacing:10px;
}

.index_mid_fl_titles {
    color: #fff;
    font-size: 26px;
    font-weight: 300;
    margin-top: 20px;
    letter-spacing: 12.5px;
}

.index_mid_fr {
    float: right;
}

.index_mid_fr_num {
    color: #fff;
    font-size: 22px;
    font-weight: 300;
}

.index_mid_fr_more {
    margin-top: 25px;
}

.index_mid_fr_more a {
    display: block;
    text-align: center;
    width: 402px;
    height: 60px;
    background: url(../images/midmore.png) center no-repeat;
    line-height: 60px;
    color: #fff;
    font-size:20px;
    font-weight: 300;
}

.index_case {
    width: 100%;
    overflow: hidden;
    background: url(../images/casebg.jpg) center no-repeat;
    background-size: cover;
    padding: 35px 0;
}

.index_cases {
    max-width: 1400px;
    margin: auto;
}

.swiper-container.indexcaseswiper {
    margin-top: 35px;
}

.indexcaseswiper a {
    display: block;
    overflow: hidden;
    position: relative;
}

.index_case_pic img {
    width: 100%;
}

.index_case_before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(225, 102, 0, 0.6);
    display: table;
    text-align: center;
    transition: all 0.8s;
}

.index_case_befores {
    display: table-cell;
    vertical-align: middle;
}

.index_case_before_title {
    font-size: 22px;
    color: #fff;
}

.index_case_before_more {
    margin-top: 20px;
}

.indexcaseswiper a:hover .index_case_before {
    top: 0;
}

.index_case_bot {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top: 30px;
}

.index_case_bot .swiper-button-prev {
    position: static;
    display: inline-block;
    margin: 0 7px;
    width: 55px;
    height: 55px;
    background: url(../images/left-arrow.png) center no-repeat;
    cursor: pointer !important;
    pointer-events: all !important;
    opacity: 1 !important;
}

.index_case_bot .swiper-button-next {
    position: static;
    display: inline-block;
    margin: 0 7px;
    width: 55px;
    height: 55px;
    background: url(../images/right-arrow.png) center no-repeat;
    cursor: pointer !important;
    pointer-events: all !important;
    opacity: 1 !important;
}

.index_case_bot .swiper-pagination {
    position: relative;
    display: inline-block;
    top: -20px;
}

.index_case_bot .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 100%;
   background: #f9c192;
    margin: 0 4px;
}

.index_case_bot .swiper-pagination-bullet-active {
     background: #f48326;
}

.index_honor {
    width: 100%;
    overflow: hidden;
    background: url(../images/honorbg.jpg) center no-repeat;
    height: 755px;
    padding-top: 50px;
	display:none;
}

.index_honors {
    max-width: 1400px;
    margin: auto;
}

.index_honors .indextitles {
    color: #fff;
}

.index_honor_nav {
    text-align: center;
    font-size: 0;
    margin-top: 20px;
}

.index_honor_nav a {
    display: inline-block;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
    border-radius: 30px;
}

.index_honor_nav a.active {
    background: #fff;
    color: #f48326;
}

#certify {
    position: relative;
    width: 100%;
    margin: 25px auto 0;
}

#certify .swiper-container {
    margin: auto;
}

#certify .swiper-slide {
    width: 376px;
}

#certify .swiper-slide img {
    display: block;
    margin: auto;
    width: 100%;
}

.index_honor_lists {
    display: none;
}

.index_new {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.index_news {
    max-width: 1400px;
    margin: auto;
}

.index_new_container {
    width: 100%;
    overflow: hidden;
    margin-top: 45px;
}

.index_new_item {
    float: left;
    width: 32.7%;
    margin-right: 0.95%;
}

.index_new_item:nth-child(3n) {
    margin-right: 0;
}

.index_new_pic img {
    width: 100%;
}

.index_new_bot {
    width: 100%;
    background: #fff;
    padding-bottom: 30px;
}

.index_new_title {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    line-height: 50px;
    padding: 0 10px;
    font-size: 17px;
    color: #000;
}

.index_new_con {
    padding: 0 10px;
    font-size: 14px;
    color: #6f6f6f;
    line-height: 2;
    margin-top: 10px;
}

.index_new_item:hover .index_new_bot {
    background: #f48326;
}

.index_new_item:hover .index_new_title,
.index_new_item:hover .index_new_con {
    color: #fff;
}

.index_partner {
    width: 100%;
    overflow: hidden;
    background: #f2f2f2;
    margin-top: 40px;
    padding: 40px 0;
}

.index_partners {
    max-width: 1400px;
    margin: auto;
}

.indexpartnerswiper img {
    width: 100%;
	background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
}

.swiper-container.indexpartnerswiper {
    margin-top: 20px;
	padding:5px;
}

.indexpartner_bot {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top: 30px;
}

.indexpartner_bot .swiper-button-prev {
    position: static;
    display: inline-block;
    margin: 0 7px;
    width: 55px;
    height: 55px;
    background: url(../images/left-arrow.png) center no-repeat;
    cursor: pointer !important;
    pointer-events: all !important;
    opacity: 1 !important;
}

.indexpartner_bot .swiper-button-next {
    position: static;
    display: inline-block;
    margin: 0 7px;
    width: 55px;
    height: 55px;
    background: url(../images/right-arrow.png) center no-repeat;
    cursor: pointer !important;
    pointer-events: all !important;
    opacity: 1 !important;
}

.indexpartner_bot .swiper-pagination {
    position: relative;
    display: inline-block;
    top: -20px;
}

.indexpartner_bot .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background: #f48326;
    margin: 0 7px;
}

.indexpartner_bot .swiper-pagination-bullet-active {
    background: #f9c192;
}

.index_foot {
    width: 100%;
    overflow: hidden;
    background: url(../images/fbg.jpg) center no-repeat;
    background-size: cover;
	margin-top:40px;
}

.index_foots {
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
    padding: 40px 0;
}

.index_foot_fl {
    float: left;
}

.index_foot_logo {
    overflow: hidden;
}

.index_foot_logo_pic {
    float: left;
}

.index_foot_logo_pic img{
	width:80px;
}

.index_foot_logo_title {
    float: left;
    margin-left: 10px;
}

.index_foot_logo_maintitle {
    font-size: 28px;
    color: #fff;
}

.index_foot_logo_titles {
    font-size: 12px;
    color: #fff;
}

.index_foot_title {
    font-size: 24px;
    color: #fff;
    opacity: 0.7;
    margin-top: 15px;
}

.index_foot_tel {
    margin-top: 25px;
    font-size: 14px;
    color: #fff;
    border: 1px solid #f48326;
    line-height: 40px;
    padding: 0px 10px;
    display: inline-block;
	opacity: 0.6;
}

.fnav {
    float: left;
    margin-left: 6%;
}

.ftitle {
    font-weight: bold;
    font-size: 18px;
    color: #fff;
}

.flist a {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
	opacity: 0.6;
}

.fcontact {
    float: left;
    margin-left: 6%;
    width: 15%;
}

.fcon {
    font-size: 14px;
    color: #fff;
    line-height: 2.5;
	opacity: 0.6;
}

.saoma {
    float: right;
}

.sm {
    float: left;
    text-align: center;
    margin-left: 30px;
}

.sm p {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

.sm img {
    width: 175px;
}

.index_copy {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    line-height: 50px;
    font-size: 14px;
    color: #fff;
    text-align: center;
	opacity: 0.6;
}

.index_copy a {
    font-size: 14px;
    color: #fff;
    margin-left: 10px;
}
.index_ab_more {
	margin-top:15px;
}
.index_ab_more a{
	display:block;
	width:130px;
	height:40px;
	line-height:40px;
	text-align:center;
	background:#f48326;
	font-size:14px;
	color:#fff;
}


video::-internal-media-controls-download-button {
    display:none;
}

video::-webkit-media-controls-enclosure {
    overflow:hidden;
}

video::-webkit-media-controls-panel {
    width: calc(100% + 30px); 
}
 
 video::-webkit-media-controls-download-button {
  display: none !important;
}





.homeSwiper{
    width: 100%;
    height: 100vh;
	        position: relative;
        z-index: 0;
}
.homeSwiper  video{
    object-fit: cover;
    height: 100%;
    width: 100%;
}