@charset 'utf-8';

/* CSS Document */

@import "//at.alicdn.com/t/c/font_4146414_t6m0ddrv6g.css";

$baseColor: #1e1919;
$baseColor2: #7d7d7d;

//SCSS全局变量
// 默认移动端设计稿宽度
$baseDevice: 750;
// 前端切图移动端默认正常显示尺寸，默认为设计稿的一半
$device: $baseDevice / 2;
// 默认html font-size
$baseFontSize: 100px;
// scss function
@function calc-percent($target, $context) {
    @return $target/$context * 100%;
}

@function px2rem($px, $base-font-size: $baseDevice / $device * $baseFontSize) {
    @if (unitless($px)) {
        @warn "Assuming #{$px} to be in pixels, attempting to convert it into pixels for you";
        @return px2rem($px + 0px); // That may fail.
    }
    @else if (unit($px)==rem) {
        @return $px;
    }
    @return ($px / $base-font-size) * 1rem;
}

//透明
@mixin touming($o: 70) {
    opacity: $o/100;
    -webkit-opacity: $o/100;
    filter: alpha(opacity=$o);
}

@mixin transition($time: .2s) {
    -webkit-transition: $time ease all;
    -moz-transition: $time ease all;
    transition: $time ease all;
}

@mixin articleReset($fontsize: 14px, $lineHieght: 30px) {
    font-size: $fontsize;
    line-height: $lineHieght;
    p {
        margin-bottom: $lineHieght/2;
    }
    img {
        max-width: 100%;
        height: auto !important;
    }
    ul {
        list-style: disc;
        li {
            list-style: disc;
        }
    }
    ol {
        list-style: decimal;
        li {
            list-style: decimal;
        }
    }
}

// 多行省略
@mixin multiEllipsis($line: 2) {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: $line;
    -webkit-box-orient: vertical;
}
/* reset.css V1.6  Start*/

body,h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ul,ol,li,form,button,input,textarea,th,td {    
	font-weight: 300;
    margin: 0;
    padding: 0;
}

body,button,input,select,textarea,h1,h2,h3,h4,h5,h6,i {
    font: 300 14px BlinkMacSystemFont, Helvetica Neue, PingFang SC, Source Han Sans CN, Microsoft YaHei, Noto Sans CJK SC, WenQuanYi Micro Hei, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
html, body {
    max-width: 1920px;
    margin-right: initial!important;
    margin-left: initial!important;
    margin: auto!important;
    /* font-family: 'Microsoft Yahei','Helvetica Neue',sans-serif; */
    /* font-family: 'PingFang SC','Microsoft Yahei','微软雅黑','微軟正黑體', 'Microsoft JhengHei',Helvetica, sans-serif; */
    font-family: 'Verdana','Microsoft Yahei'!important;
    font-size: 14px;
    background: #fff;
    overflow-x: hidden;
}
:root {
    --swiper-theme-color: #1e1919;
}
ul,
ol,
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
	color: black;
    text-decoration: none;
}

img {
    vertical-align: top;
    border: 0;
}

button,
input,
textarea {
    font-size: 100%;
    vertical-align: middle;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

div,
a {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

html {
    font-size: $baseFontSize;
}

@media screen and (min-width: 320px) {
    html {
        font-size: (320/$device) * $baseFontSize;
    }
}

@media screen and (min-width: 35%) {
    html {
        font-size: (360/$device) * $baseFontSize;
    }
}

@media screen and (min-width: 375px) {
    html {
        font-size: (375/$device) * $baseFontSize;
    }
}

@media screen and (min-width: 480px) {
    html {
        font-size: (480/$device) * $baseFontSize;
    }
}

@media screen and (min-width: 640px) {
    html {
        font-size: (640/$device) * $baseFontSize;
    }
}

@media screen and (min-width: 750px) {
    html {
        font-size: (750/$device) * $baseFontSize;
    }
}
.clearfix::before, .clearfix::after {
	content: '';
	display: table;
} 
/* 真正清除浮动的标签 */
.clearfix::after {
	/* content: '';
	display: table; */
	clear: both;
} 
.header {
    /*position: absolute;*/
    top: 0;
    left: 0;
    z-index: 2000;
    background: rgb(255 255 255 / 70%);
    width: 100%;
    height: 80px; 
}
/* .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 0 20px;
    z-index: 2000;
} */
.header-info{ 
	padding: 0px 5%;  
}
.header .pd65 {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.logo{
	/* float: left; */
	
	padding-top: 20px;
}
.logo img{ 
	height: 45px;
}
.header-nav { 
	display: flex;
    position: relative;
    top: 0;
    left: 35%; 
}

.header-nav {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    font-size: 0;
    z-index: 10;
}
.header-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
/* .header-nav {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    font-size: 0;
    z-index: 10;
} 
.nav-item li{
	position: relative;
	display: inline-block; 
	vertical-align: top;
	padding: 0 5%;
	
}
.header-nav li {
    
}

.header-btn {
    display: flex;
	position: relative;
	right: 0;
	top: 0;
	float: right;
}
*/

.nav-item {
    position: relative;
    z-index: 2;
}

.header-nav li {
    position: relative;
    display: inline-block;
    vertical-align: top;
}
.header-nav li:first-child:before, .header-nav li:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -7px;
    width: 1px;
    height: 14px;
    background-color: #888;
}

.header-nav li:first-child:before {
    left: 0;
}
.header-nav li:first-child:before, .header-nav li:after {
    margin-top: -7px;
    height: 15px;
}
.header-nav .nav-item a {
    display: block;
    padding: 0 15px;
    line-height: 80px;
    font-size: 16px;
    color: #1e1919;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.header-nav .nav-item li:hover a{
	color: #1e1919;
    font-weight: 700;
}
.nav-item .active{
    color: #1e1919;
    font-weight: 700;
}
.header-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex; 
    margin-top: 20px;

}

.header-btn .btn-box {
    position: relative;
    margin-left: 25px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.header-btn li .icon {
    font-size: 22px;
}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.header-search,.search-btn{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    opacity: 0; 
    overflow: hidden;
    z-index: 9;
}
.search-btn{ 
    right: 0;
    width: 40px;
	opacity: 1; 
}
.header-search form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 36px;
    border: 1px solid #1e1919;
    border-radius: 4px;
}
.header-search .input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}
.header-search .input input {
    display: block;
    width: 100%;
    padding-left: 10px;
    height: 36px;
	line-height: 36px;
	font-size: 14px;
	color: #555;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* .header-search .input input::-webkit-input-placeholder{
	color: #fff;
}
.header-search .input input::-moz-placeholder{
	color: #fff;
}
.header-search .input input:-ms-input-placeholder{
	color: #fff;
}
 */

.search-btn .icon-search{
	width: 40px;
	text-align: center;
	font-size: 20px;
	color: #1e1919;
	font-weight: bold;
	cursor: pointer;
}

.header-search button {
    width: 40px;
    text-align: center;
    font-size: 20px;
	color: #1e1919;
	font-weight: bold;
    cursor: pointer;
}
.header-search button, .header-search input {
    border: none;
    outline: none;
    background: none;
}
.header-btn-search:hover .search-btn{
	opacity: 0;
}
.header-btn-search:hover .header-search{ 
	width: 240px;
	opacity: 1;
}


.header .lan {
  width: auto;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  margin-left: 15px; 
  
}
.header .lan::before{
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -9px;
	width: 2px;
	height: 18px;
	background-color: #999;
}
.header .lan:hover .lan_box {
  display: block;
  
}
.header .lan .lan_a {
  width: 100%;
  height: 32px;
  padding-left: 15px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 16px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  
} 
.header .lan .lan_a span {
  margin: 0 5px;
  font-family: "gr_l";
}
.header .lan .lan_a i {
  font-family: "gr_l";
}
.header .lan .lan_a i:first-child {
  font-size: 18px;
} 
.header .lan .lan_a i:last-child {
  font-size: 14px;
}
.header .lan .lan_box {
  position: absolute;
  left: 0;
  top: 70%;
  width: 100%;
  overflow: hidden; 
  border-radius: 5px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: none;
  animation: show 0.5s; 
}
.header .lan .lan_box a {
  line-height: 40px;
  text-transform: capitalize;
  color: #555;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px 0px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.hbox {
    display: none;
    font-size: 0;
    margin-right: -30px;
    margin-left: 15px;
    margin-top: -4px;
}  
.nav-skip {
    display: inline-block;
    box-sizing: border-box;
    width: 2.4rem;
    height: 2.4rem;
    padding: 0.5em 0 0.4em;
    text-indent: 2.1875em;
    font-size: 1.3rem;
    line-height: 1.9em;
    text-align: center;
}
.nav-skip span {
    position: relative;
    top: 0.4em;
    margin: 0 auto;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.nav-skip span:before, .nav-skip span:after {
    position: absolute;
    content: '';
}
.nav-skip span, .nav-skip span:before, .nav-skip span:after {
    width: 1.3em;
    height: 2px;
    background-color: #1e1919;
    display: block;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
}
.nav-skip span:before {
    top: -0.4em;
}
.nav-skip span:after {
    top: 0.4em;
}
.nav-skip.toggled span:before, .nav-skip.toggled span:after {
    top: 0;
    -webkit-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
}
.nav-skip.toggled span:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-skip.toggled span:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.nav-skip.toggled span {
    background-color: rgba(0,0,0,0.0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.index-banner .swiper {
	width: 100%;
	height: 100%;
}
.index-banner .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.advan-item .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff; 
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.index-banner .index_text_box {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

.index-banner .banner-box{
    max-width: 1200px;
    margin:0 auto;
}

.index-advan{
	background-color: #ffefef;
	background-repeat: no-repeat;
	background-size: cover;
}
.advan-item {
    padding: 5% 0px;
} 
.advan-box{
	position: relative; 
	width: 55%;
	height: 150px;
	background-color: rgb(30 25 25 / 80%);
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.advan-box .iconfont {
    margin-top: 25%;
    display: block;
    overflow: hidden;
	font-size: 5%;
	color: #fff;
}
.advan-box .iconfont { 
    font-size: 50px; 
}
.advan-box h3 {
    font-size: 30px;
    /* font-weight: bold; */
    color: #fff;
    padding: 8px 0;
	padding-top: 20%;
}
.advan-box .advan-line{
	display: block;
	overflow: hidden;
	text-align: center; 
	margin: 8px auto;
	width: 5%;
	height: 2px;
	background-color: #fff;
}
.advan-box .advan-en {
    font-size: 16px; 
    line-height: 40px;
    color: #e2e2e2;
    text-transform: uppercase;
    text-align: center;
    line-height: 100%;
    margin-bottom: 15px;
}
.advan-box .advan-desc {
    text-align: center;
    font-size: 18px;
	color: #fff; 
    line-height: 2;
    width: 80%;
    margin:0 auto;
    margin-top: 10%;
}
.advan-box .advan-more{
	position: absolute;
	left:calc(50% - 60px);
	bottom: 10%;
	width: 120px;
	font-size: 14px;
	color: #fff;
	line-height: 24px;
	border: 1px solid #ccc;
	border-radius: 25px;
	padding: 5px 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.advan-box .advan-more:hover{
	left:calc(50% - 70px);
	width: 140px;
}
.advan-box .iconfont,.advan-box .advan-en,.advan-box .advan-desc,.advan-box .advan-more{
	display: none;
}

.advan-info {
    display: block;
    overflow: hidden;
    padding: 8% 5%; 
}
.advan-list {
	height: 500px;
    background-position: center center!important;
    background-repeat: no-repeat!important;
    background-size: cover!important;
}
.advan-list:hover{ 
	    box-shadow: 0 3px 15px rgba(30,25,25,0.9);
}
.advan-list:hover .advan-box{
	height: 100%;
	width: 100%;
} 
@keyframes fadenum{
   0%{opacity: 0;}
   100%{opacity: 1;}
}
.advan-list:hover .advan-box .iconfont,
.advan-list:hover .advan-box .advan-en,
.advan-list:hover .advan-box .advan-desc,
.advan-list:hover .advan-box .advan-more{ 
	animation:fadenum 1s 1;
	display:block;
}
.advan-list:hover .advan-box h3 {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    padding: 8px 0;
	padding-top: 0%;
}
.advan-list:hover .advan-box .advan-line{
	display: none;
}
.index-title{
	display: block;
	overflow: hidden;
	position: relative;
}
.index-title .en {
	font-weight: 300;
    font-size: 25px; 
    line-height: 40px;
    color: #7D7D7D;
    text-transform: uppercase;
    text-align: center;
    line-height: 100%;
    margin-bottom: 15px;
}
.index-title .zh {
	font-weight: 700;
    font-size: 40px;
	font-weight: bold;
    color: #1E1919;
    line-height: 2;
    text-align: center;
    line-height: 100%;
    margin-bottom: 20px;
}
.index-title .text {
    text-align: center;
    font-size: 17px;
    color: #666;
    line-height: 2;
    margin-bottom: 80px;
}
.index-service{
	min-height: 800px;
}
.service-item{
	padding: 3% 20px;
	display: flex;
}
.service-box{
	width: 100%;
	margin: 0 10px;
	height: 1030px;
	background-color: #efefef;
}
.service1{
	background-image: url("/skin/images/index_service1.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.service2{
	background-image: url("/skin/images/index_service2.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.service-title{
	text-align: center;
	margin-top: 37%;
}
.service-title h3{  
	font-weight: 700; 
	font-size: 70px;
	text-align: center;
	color: #1E1919;
	letter-spacing: 4px;
}
.service-title p{
	margin-top: 2%;
	font-size: 28px;
	font-weight: 400;
	line-height: 40px;
	color: #7D7D7D;
	text-transform: uppercase;
	text-align: center;
	line-height: 100%;
	margin-bottom: 15px;  
	text-align: center; 
	
}
.service-list{
	display: block;
	overflow: hidden;
	margin: 15% auto;
	text-align: center;
}
.service-list .service-li{
	display: inline-block;
	padding: 0 5%;
}
.service-list .service-li .iconfont{
	font-size: 68px;  
	color: #757575;
}
.service-list .service-li .service-desc{
	font-weight: 400;
	font-size: 24px;
	padding: 25px 0;
	color: #1E1919;
}
.service-list .service-li:hover .iconfont,
.service-list .service-li:hover .service-desc{
	color: #1e1919;
}

.index-business{
	background-color: #efefef;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	/* filter: blur(5px); */
	/* opacity: 0.8; */
}
.index-business .business-info{
	padding: 10% 5%;
}
/* .index-business::before{
            content: ' ';
            width: 100%;
            height: 100%;
            position: absolute;
            z-index: -1;
            background-image: url('/skin/images/index_business.jpg');
            filter: blur(3px);
            -webkit-filter: blur(3px);
} */ 
/* .business-item .business-li{
	width: 25%;
} */
/* .octagon {
    width: 420px;
    height: 420px;
    background: #1e1919;
	border:1px solid #000;
    position: relative;
	margin: 15px 15px;
}
 
.octagon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-bottom: 120px solid #1e1919;
    border-left: 140px solid #fff;
    border-right: 140px solid #fff;
    width: 140px;
    height: 0;
}
 
.octagon:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 120px solid #1e1919;
    border-left: 140px solid #fff;
    border-right: 140px solid #fff; 
    width: 140px;
    height: 0;
}
 */
.index-business .business-item{
	padding: 5% 0;
	display: block;
	overflow: hidden;
}
.index-business .business-li{
    width:428px;
	/*width:470px!important;*/
    height:428px;
	/*height:470px!important;*/
	float: left;
	position: relative;
	margin-left: -60px;
	/* cursor: pointer; */ 
}
.business-item .swiper-slide{
	
}
.index-business .business-li:first-child{ 
	margin-left: 0px;
}
.index-business .octagon{
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	overflow: hidden;
	text-align: center;  
	z-index: 99;
	
}
/* .index-business .octagon:before {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	transform: rotate(45deg); 
	background:#1e1919;
	opacity: 0.2;
	content: ''; 
} */
.index-business .octagon::after {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	transform: rotate(45deg);
	/* background: rgb(6 143 48 / 30%); */
	background:#fff;
	opacity: 0.8;
	content: ''; 
	-webkit-transition: all 1.2s;
	-o-transition: all 1.2s;
	transition: all 1.2s;
}
/* .business-li:hover{
	z-index: -9999;
} */
/* .business-li:hover .octagon:before{ 
	opacity: 1; 
} */

.index-business .octagon .number{
	padding-top: 25%;
	display: block;
	overflow: hidden;
	font-size: 38px;
	font-weight: bold;
	color: #7d7d7d;
	/* color: #fff; */

}
.index-business .octagon h4{
	font-size: 32px;
	color: #7D7D7D;
}
.index-business .octagon .bus-en {
    font-size: 16px; 
    line-height: 40px;
    color: #7D7D7D;
    text-transform: uppercase;
    text-align: center; 
    margin-bottom: 25px; 
}
.index-business .octagon .bus-more{
	background-color: #7d7d7dff;
	border-radius: 25px;
	width: 120px;
	display: block;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 16px;
	color: #fff;
	margin-top: 10%;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.bus-box {
    position: relative;
    z-index: 9999999;
}
.business-li:hover .bus-box{ 
	z-index: 9999;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.business-li:hover .octagon{
	/* z-index: 199; */
}
.business-li:hover .octagon:after{ 
	opacity: 1;  
	background:#1e1919ff;
}
.business-li:hover .octagon .number,
.business-li:hover .octagon h4,
.business-li:hover .octagon .bus-en{
	color: #ffffff;
}
.business-li:hover .octagon .bus-more{
	background-color: #fff;
	color: #1e1919; 
}
.business-li .octagon .bus-more:hover{ 
	width: 150px;
}
.index-honor {
    background-color: #efefef;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; 
}
.index-honor .honor-info {
    padding: 7% 5% 10%;
}
.index-honor .honor-item {
    padding: 8% 0 3%;
    display: block;
    overflow: hidden;
}
.index-honor .honor-li img{
	width: 100%;
}
.index-honor .honor-item .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	opacity: 0.8;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	transition-property:all; 
	-webkit-box-reflect: below 5px -webkit-gradient(linear,left top,left bottom,from(transparent),color-stop(85%,transparent),to(hsla(0,0%,100%,.5)));
}

.swiper-slide-active{
	opacity: 1!important;
} 
.index-brand {
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; 
}
.index-brand .brand-info {
    padding: 7% 5% 10%;
}
.index-brand .brand-item {
    padding: 2% 0 3%;
    display: block;
    overflow: hidden;
}
.index-brand .brand-item ul {
    display: block;
    width: 100%;
    padding-top: 4.1%;
	font-size: 0;
}

.index-brand .brand-item ul li {
    width: 16%;
	height: 200px;
	float: left;
	/* display: inline-block; */
	vertical-align: top;
	text-align: center;
    border: 1px solid #c8c8c8;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
    /* box-shadow: 10px 10px 13px rgba(1,1,1,0.1); */
	
	display: -webkit-box;
	-webkit-box-orient: horizontal;
	-webkit-box-pack: start;
	-webkit-box-align: center;
	display: -moz-box;
	-moz-box-orient: horizontal;
	-moz-box-pack: start;
	-moz-box-align: center;
	display: -o-box;
	-o-box-orient: horizontal;
	-o-box-pack: start;
	-o-box-align: center;
	display: -ms-box;
	-ms-box-orient: horizontal;
	-ms-box-pack: start;
	-ms-box-align: center;
	display: box;
	box-orient: horizontal;
	box-pack: start;
	box-align: center;
}
.index-brand .brand-item ul li img{
	max-width: 100%;
	text-align: center;
}
.brand-box{
	width: 32%!important; 
}
.align-middle{
	padding: 8% 0;
	margin: 0 auto;
}
.brand-box .zh {
    font-size: 42px;
	font-weight: 700; 
    color: #1e1919;
    padding: 8px 0;
	padding-top: 0%;
}
.brand-box .en {
	font-weight: 300;
    font-size: 22px; 
    line-height: 40px;
    color: #3A3A3A;
    text-transform: uppercase;
    text-align: center;
    line-height: 100%;
    margin-bottom: 15px;
}
.index-news {
	padding: 7% 5% 7%;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%; 
}
.index-news .news-info {
	padding: 7% 5% 0%;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	background-color: rgb(241 241 241 / 85%);
}
.index-news .index-title{
	border-bottom: 1px solid #ccc;
}
.index-news .index-title .zh{
	padding-bottom: 3%;
}
.index-news .news-item{
	padding: 5% 0;
	display: inline-block;
	font-size: 0;
	width: 100%;
}
.index-news .news-li{
	width:21%;
	display: inline-block;
	vertical-align: top;
	margin-right: 2.6%;
	margin-bottom: 3%;
	padding: 1%;
	background-color: rgb(255 255 255 / 30%);
}
.index-news .news-li:nth-child(4n){
	margin-right: 0%;
}
.news-li img{
	width: 100%;
    height: 200px;
}
.index-news .news-li .news-date{
	font-weight: 700; 
	/* height: 24px; */
	line-height: 32px;
	font-size: 32px; 
	color: #1E1919;
	padding-bottom:8%;
}
.index-news .news-li .news-title{
	font-weight: 400; 
	font-size: 21px;
	text-align: left;
	color: #1E1919;
	padding: 10px 0;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
} 
.index-news .news-li .news-desc{
	color: #7d7d7dff;
	font-weight: 400; 
	font-size: 14px;
	height:60px; 
	line-height: 28px;
	display: block;
	overflow: hidden;
	
} 
.index-news .news-li .news-more{  
	width: 120px;
	overflow: hidden;
	display: block;
	text-align: center;
	font-size: 14px;
	color: #7D7D7D;
	font-weight: 400;
	line-height: 24px;
	border: 1px solid #7D7D7D;
	border-radius: 25px;
	padding: 5px 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	margin:25px 0;
}
.index-news .news-li .news-more:hover{ 
	width: 140px;
}
.index-news .news-li:hover{
	background-color: #fff;
	box-shadow: 0 0px 6px rgba(0,0,0,0.3);
}
.index-news .news-li .news-title:hover{
	opacity: 0.8;
}
.index-news .news-li:hover .news-desc{
	color: #454545;
}
.index-news .news-li:hover .news-more{
	color: #454545;
}

.footer {
	padding: 7% 5% 2%; 
	background-color:#f4f4f4;
}
.footer .footer-info { 
	display: block;
	overflow: hidden;
}
.footer-left{
	width: 65%;
	float: left;
	display: block;
	overflow: hidden;
}
.footer-right{
	width: 35%;
	float: right;
	display: block;
	overflow: hidden;
}

.footer .foot_ul{
	display: block;
	overflow: hidden;
	margin-bottom: 40px;
}
.footer .foot_top_li{
	width: 15%;
	float: left;
}
.footer .foot_top_li h3{
	font-weight: 400;
	text-align: center;
	font-size: 20px; 
	color: #1E1919;
	letter-spacing: 1px;
	margin-bottom: 10%;
}
.footer .foot_top_li ul.son li{
	text-align: center;
}
.footer .foot_top_li ul.son li a{
	color: #7d7d7dff;
	 font-weight: 300;
	 text-align: center;
	 font-size: 16px; 
	 line-height: 43px;
} 
.footer .foot_top_li ul.son li a:hover{
	color: black;
}
.footer-qrcode h1{
	font-weight: 400; 
	font-size: 20px;
	text-align: left;
	color: #7D7D7D;
}
.footer-qrcode h2{
	font-weight: 700; 
	font-size: 46px;
	text-align: left;
	color: #1E1919;
	padding: 10px 0 30px;
}
.qrcode-desc{
	font-weight: 400; 
	font-size: 16px;
	text-align: left;
	color: #1E1919;
	text-align: center;
	padding: 20px 0;
	letter-spacing: 2px;
}
.qrcode-box{
	width: 25%;
	float: left;
	padding-right: 5%;
	text-align: center;
}
.qrcode-box img{
	width: 150px;
	height: 150px;
}
.fooer-copyright {
    border-top: 1px solid #999;
    margin-top: 3%;
}
.copyright-text {
    padding: 2% 0;
    text-align: center;
    line-height: 24px;
}
/**
 * about
 */
.nei-banner { 
	position: relative;
    background-repeat: no-repeat;
    background-position: center top; 
    /* height: 550px; */
    width: 100%;
}
.banner-image img {
    width: 100%;
}

p.banner-title.banner-entext {
    margin-bottom: 3%;
    font-size: 50px;
}
.banner-desc {
	font-weight: 300;
	font-size: 22px;
    color: #FFFFFF;
    padding:1% 3%;
    padding-left: 0px;
    /*text-transform: uppercase;*/
    text-shadow: 2px 2px 4px rgb(0 0 0 / 30%);
}

.nybanner_text {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    margin-top: 25%;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
}
.nybanner_box {
    max-width: 1200px;
    margin: 0 auto;
}
.banner-title {
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    color: #FFFFFF;
    padding-bottom: 15px;
    padding: 0 3%;
    text-shadow: 0 0 15px rgba(0,0,0,0.5);
}


.about-banner.nybanner_text {
    width: 100%; 
    margin-top: 10%;
    position: absolute;
    left: 5%;
    top: 0; 
    text-align: left;
}
.about-banner .nybanner_box {  
    margin: 0;
}
.about-banner .banner-title {
    font-weight: 700;
    font-size: 38px;
    line-height: 50px;
    color: #FFFFFF;
    padding-bottom: 15px;
    padding: 0 3%;
    padding-left: 0px;
    text-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.index_odm_banner .banner-desc{
   color:#7D7D7D;
}
.about-info {
    display: block;
    overflow: hidden;
    padding: 8% 5%; 
}
.about-box {
    padding-top: 3%;
    padding-bottom: 3%;
    display: block;
    overflow: hidden;
}
.about-center{
	background-color: #ffefef;
	background-repeat: no-repeat;
	background-size: cover;
}
.about-jieshao {
    width: 50%;
    float: left;
    display: block;
    overflow: hidden;
}
.about-huanjing {
    width: 47%;
    float: left;
    display: block;
    overflow: hidden;
    padding-left: 3%;
}
.about-company h1{
	font-weight: 700;
	font-size: 24px;
}
.about-company .about-line {
    width: 50px;
    background-color: #000;
    height: 3px;
    margin: 5px 0;
}
.about-intro{
	font-weight: 400; 
	 font-size: 18px; 
	 line-height: 35px;
	 margin: 15px 0;
}
.about-intro p{
	text-indent: 2em;
}
.about-item {
    display: block;
    overflow: hidden;
	margin-top: 6%;
}
.about-item ul {
    display: inline-flex;
    overflow: hidden;
    width: 100%;
    text-align: center;
}
.about-item li { 
	display: block;
    overflow: hidden;
	margin: 0 auto;
    text-align: center;
}
.about-item li .text-num{
	display: block;
	overflow: hidden;
	font-weight: 700;
	font-size: 48px;
	text-align: center;
	color: #1E1919;
}
.about-item li .text-desc{
	font-weight: 400;  
	font-size: 16px;
	text-align: center;
	color: #7D7D7D;
}
.about-huanjing img{
	width: 100%;
}
.culture-info {
    display: block;
    overflow: hidden;
    padding: 8% 5%;
}
.culture-item {
    padding: 5% 0px;
    position: relative;
    width: 100%; 
    display: block;
}
.culture-item  .culture-li {
	width: 20%;
    text-align: center;
    font-size: 18px; 
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
	height: 608px;
	border-radius: 7px;
	background: #ffffffff;
	box-shadow: 0 0 29px 0 #0000003b;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
} 
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal.swiper-pagination-progressbar {
    top: unset!important;
    bottom: 0;
}
.culture-box {
    position: relative;
    width: 100%; 
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
	height: 100%;
	background-image:url("/skin/images/wh.png");
	background-repeat: no-repeat;
	background-position: left 50% bottom 17%;  
} 


.wh01{
    background-image: url("/skin/images/wh01.png");
    /*background-size: 100%;*/
 }   

.wh02{
    background-image: url("/skin/images/wh02.png");
    /*background-size: 100%; */
}

.wh03{
    background-image: url("/skin/images/wh03.png"); 
    /*background-size: 100%;*/
}

.wh04{
    background-image: url("/skin/images/wh04.png"); 
    /*background-size: 100%;*/
}

.culture-box h3 {
	font-weight: 700; 
	font-size: 26px;
	text-align: center;
	color: #1E1919;
	margin-top: 90px;
}
.culture-box .culture-line {
	/* position: relative; */
    background-color: #eee;
    height: 2px;
    width:60%;
    margin: 15px auto;
    display: block;
    overflow: hidden;
}
.culture-box .culture-line::before{
    content: " ";
    height: 4px;
    background-color: #000;
    width: 40px;
    position: absolute;
	/* top: 0; */
	left: calc(50% - 20px);
    margin: -1px auto;
    display: block;
    overflow: hidden;
	
} 
.culture-box .culture-desc {
    text-align: center;
	font-weight: 400; 
	font-size: 18px;  
    color: #fff;
    line-height: 2;
    width: 90%;
    text-align: center;
    margin: 0 auto; 
    margin-top: 15%;
}
.culture-item  .swiper-slide-active{
	width:35%; 
	border-radius: 7px;
	background: #1E1919;
	background-image: url(/skin/images/culture-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.culture-item  .swiper-slide-active .culture-box{ 
	border-radius: 7px;
	background-color: rgb(30 25 25 / 80%);
	background-image:url("/skin/images/jurassic.png");
     /*background-size: auto;*/
}
.culture-item  .swiper-slide-active .culture-box h3{
	color: #fff;
}
.culture-item  .swiper-slide-active  .culture-box .culture-line {
	/* position: relative; */
    background-color: #eee; 
}
.culture-item  .swiper-slide-active .culture-box .culture-line::before{
	background-color: #fff;
}
.about-envi{ 
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover; 
}
.envi-info {
    display: block;
    overflow: hidden;
    padding: 8% 5%; 
}
.envi-box{
	position: relative;
	margin: 10% auto 5%;
	min-height: 300px;
	border-radius: 7px;
	background: #ffffffff;
	box-shadow: 0 0 29px 0 #0000003b;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s; 
    padding: 15px 25px;
}
.envi-video {
	/* position: relative; */
    width:55%;
    /* height: 350px; */
    display: block;
    /* overflow: hidden; */
    float: left;
    /*background-color: #000;*/
}
.envi-video-box{ 
	width:58%;
	float: left;
	display: block;
	overflow: hidden;
}
.envi-video-box img{
	width: 58%;
	/* width: 100%; */
	position: absolute;
	left: -2%;
	top: -82px;
}
.envi-content{
	width:46%;
	float: right;
	display: block;
	overflow: hidden;
	color: #1e1919ff;
	font-weight: 400;
	font-size: 17px;
	text-align: left;
	line-height: 35px;
	margin: 2% 1%;
}
.video-img-box {
	position: absolute;
    left: 3%;
    top: -8%;
    width: 42.8%;
    height:110%;
    /* border: 1px solid #ccc; */
    display: block;
    overflow: hidden;
	z-index: 9;
} 
.video-img-box img{
	width:100%;
	position: absolute;
	left:0;
	top: 0px;
}
.envi-video-box img.playVideo {
	cursor: pointer;
    width: 50PX;
    left: calc(50% - 25px);
    top: 48%;
}
.shadow{
	position:fixed;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background-color:black;
	opacity:0.6; 
	z-index: 9999;
}
.boxed-group {
	width:50%;
	/* height:400px; */
	background-color:#778899;
	position:fixed;
	left:50%;
	top:40%;
	margin-left:-25%;
	margin-top:-15%;
	z-index: 99999;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.boxed-group h3{
	font-weight: 400;
	margin: 0;
}
.boxed-group h3 {
	padding: 12px 20px;
	color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background-color: #434a54;
}
.boxed-group .boxed-group-inner {
	/* height:300px; */
	font-size: 0;
	font-weight: 300;
	color: #aaa;
	border-color: #e6e9ed;
	background-color: #fff;
}
.btn-danger {
	padding: 10px 15px;
	cursor: pointer;
	border-radius: 3px;
	color: #fff;
}
#play-video{
	background-color: #c0392b;
	border: 1px solid #ab3326;
}
#cancel{
	background-color: #C0C0C0;
	border: 1px solid #C0C0C0;
}
#play-video:hover{
	background-color: #ab3326;
}
#cancel:hover{
	background-color: #696969;
}
span.closeModel {
	float: right;
	cursor: pointer;
} 
.about-history{ 
    padding: 7% 5% 7%;
    background-color: #fff;
    background-image: url(/skin/images/about-history.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.history-info { 
    display: block;
    overflow: hidden;  
    padding: 7% 5% 0%;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: rgb(241 241 241 / 97%);
}
.history-box{
	position: relative;
	padding: 5% 0;
}
.history-line {
    /* height: 100%; */
	width: 100%;
    position: absolute;
    left: 0%;
	top:77px;
	height: 2px;
    /* width: 4px; */
    background: #7D7D7DFF;
}
.timeline-item a{
	color:#7D7D7DFF;
	font-weight: 700; 
	font-size: 30px;
	text-align: center; 
}
.timeline-item a::after {
    content: " ";
    width: 15px;
    height: 15px;
    border: 2px solid #7D7D7DFF;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #fff;
}
.timeline-item li{
	display: inline;
	text-align: center;
}
.history-years{
	padding: 30px 0;
}
.history-years .swiper-slide-thumb-active a{
	font-weight: bold;
	color: #000;
}
.history-years .swiper-slide-thumb-active a::after {
	background-color: #000;
	color: #000;
	border: 2px solid #000;
}

.history-item-li {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    font-size: 0;
}
.history-item-libox {
    width: 31.33%; 
    /* border: 1px solid #000; */
    margin: 1%;
}
.history-image img{
	width: 100%;
}
.history-desc{
	background-color: #fff;
	padding: 30px;
	color: #1e1919ff;
	font-weight: 400; 
	font-size: 17px;
	text-align: left;
	line-height: 36px;
	
	display: -webkit-box;
	-webkit-box-orient: horizontal;
	-webkit-box-pack: start;
	-webkit-box-align: center;
	display: -moz-box;
	-moz-box-orient: horizontal;
	-moz-box-pack: start;
	-moz-box-align: center;
	display: -o-box;
	-o-box-orient: horizontal;
	-o-box-pack: start;
	-o-box-align: center;
	display: -ms-box;
	-ms-box-orient: horizontal;
	-ms-box-pack: start;
	-ms-box-align: center;
	display: box;
	box-orient: horizontal;
	box-pack: start;
	box-align: center;
}
.location_centert {
    /* float: left; */
    width: 100%;
    display: block;
    overflow: hidden; 
}
.location_links {
	display: block;
	overflow: hidden;
	padding: 0 5%;
    font-size: 14px;
    line-height: 80px;
    color: #000000;
    height: 80px; 
    margin-right: auto;
    margin-left: auto;
	text-align: right;
}
.location_links i {
    display: inline-block; 
    font-size: 28px;
    padding-top: 15px;
    padding-right: 6px;
	position: relative;
	height: 35px;
}
.location_links a { 
    text-decoration: none;
	font-weight: 400; 
	font-size: 14px;
	text-align: left;
	color: #7D7D7D;
}
.location_links i:before {
    display: block;
    overflow: hidden; 
    margin-top: 30px;
    position: absolute;
    left: -35px;
    top: 0;
}
.product-info {
    display: block;
    overflow: hidden;
    padding: 1% 5%; 
}
.pro-type{
	display: block;
	overflow: initial;
	border-bottom: 1px solid #ccc;
}
.pro-type-top{
	display: block;
	overflow: initial;
	font-weight: 400;
	font-size: 18px;
	color: #1E1919;
	min-height: 65px;
	padding: 0 30px;
	background-color: #F1F1F1;
}
.pro-type-all{
	padding-right: 20px;
}
.pro-type-all i{
	padding-right: 3px;
}
.pro-type-all,.pro-type-item{
	float: left;
	line-height: 65px;
} 
.pro-type-item li {
    display: inline-block;
    padding: 0 18px;
	position: relative;
} 
.pro-type-top .pro-type-item li:hover::after,.type-cur:after
,.pro-type-nav li:hover::after,.pro-type-nav .type-nav-curr:after 
{
	content: " ";
	width: 100%;
	height: 2px;
	background-color: #666;
	position: absolute;
	left: 0;
	bottom: -2px;
}
.pro-type-top .pro-type-item li:hover::before, .type-cur:before 
,.pro-type-nav li:hover::before,.pro-type-nav .type-nav-curr:before 
{
    content: " ";
    width: 0;
    height: 0; 
    position: absolute;
    bottom: -8px;
    left: calc( 50% - 10px);
    /*border: 1px solid #000;*/
    border-top: 7px solid #666;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}
.pro-type-item li:hover a,.type-cur a,.type-nav-curr a{
	font-weight: bold;
}
.pro-type-nav {
    display: block; 
    overflow: initial;
    border-bottom: 1px solid #ccc;
    clear: both;
}

.pro-list {
    padding: 3% 0;
}
.pro-list ul {
    font-size: 0px;
}
.pro-list li {
    display: inline-block;
    vertical-align: top;
    width: 23.5%;
    margin-right:2%;
    background-color: #fff; 
    /* border-bottom-width: 6px;
    border-bottom-style: solid;
    border-bottom-color: #e5e5e5; */
    /* padding: 5px; */
    transition: .5s;
    margin-bottom: 25px;
} 
.pro-list li:nth-child(4n) {
    margin-right: 0%;
}
.pro-box {
    padding: 0px; 
	border: 1px solid #ccc;
}
.pro-list li:hover{	
	box-shadow: 0 0 29px 0 #00000030;
}
.pro-list li:hover .pro-box{	 
	border: 1px solid #fff;
}
.pro-box img {
    width: 100%;
}
.pro-title {
    padding: 7% 0;
    line-height: 34px;
}
.pro-title .pro-num{
	color: #7d7d7d;
	 font-weight: 400; 
	 font-size: 18px;
	 text-align: center;
}
.pro-title .pro-text{
	font-weight: 700; 
	font-size: 20px;
	text-align: center;
	color: #1E1919;
}

.fenye{
display: block;
    overflow: hidden;
    text-align: center;
    margin: 1.5rem auto;
}
.fenye li{display:inline-block;/*float:left;*/height:35px;min-width:30px;margin-right:3px;border:#ccc 1px solid;
    margin-left:3px;font-size:14px;line-height:35px;border-radius:5px;padding: 0 8px}
.fenye .disabled{}
.fenye a{color:#333333;text-decoration:none;display:block;border-radius:15px;padding: 0 8px}
.fenye li:hover{color:#FFFFFF;text-decoration:none;background-color:#7D7D7D; border:#7D7D7D 1px solid}
.fenye li.active{color:#FFFFFF;text-decoration:none;background-color:#7D7D7D; border:#7D7D7D 1px solid}
.fenye li:hover a,.fenye li.active a{ color: #fff }
.location_line { 
    border-bottom: 1px solid #ccc;
    margin-bottom: 5%;
}
.product-container{
	max-width: 1400px;
	margin:0 auto;
	margin-bottom: 5%;
    padding: 15px;
}
.product-top {
	display: block;
	overflow: hidden;
	padding-bottom: 5%;
}
.product-top .left{
	width: 50%;
	float: left;
}
.product-top .right{
	width: 50%;
	float: left;
}
.product-top .swiper-slide img{
	width: 100%;
}
.product-top .mySwiper2{
	padding-bottom:15px;
}
.product-top .mySwiper .swiper-slide{
	cursor: pointer;
}
.product-top .mySwiper .swiper-slide img{
    border: 1px dashed #b6b6b6;
}
.product-top .mySwiper .swiper-slide-thumb-active {
    background-color: #000; 
}
.product-top .mySwiper .swiper-slide-thumb-active img{
	opacity: 0.8!important;  
	border: 1px solid #fff;
}
.dateils-desc {
    margin-left: 10%;
    padding: 0 15px;
}
.dateils-desc h2 {
	font-weight: 700;
    color: #333;
    font-size: 30px;
    padding: 10px 0;
	margin-bottom: 35px;
	border-bottom:1px solid #ccc;
}
.dateils-desc h3 {
	font-weight: 700;
    color: #333;
    font-size: 20px;
    padding: 10px 0; 
	padding: 30px 0;
}
.desc-item {
	display: block;
	overflow: hidden;
}
.dateils-desc ul li {
    width: 50%;
    float: left;
    color: #333;
    font-size: 16px;
    padding: 8px 0;
}
.pro-contact {
    margin-top: 10%;
}
.pro-contact .lx-btn{
    width: 120px;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    color: #7D7D7D;
    font-weight: 400;
    line-height: 24px;
    border: 1px solid #7D7D7D;
    border-radius:10px;
    padding: 8px 5px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 25px 0;
	margin-right: 45px;
}
.pro-contact .lx-btn:hover{
	color: #fff;
	background-color: #7D7D7D;
}
.pro-contact .back-link{
	margin: 0 0;
	padding:0;
	border:0;
	margin-right: 0;
	width: auto;
	float: right;
}
.back-icon {
    font-size: 35px;
    float: right;
    padding-top: 30px;
}
.product-content .pro-details-title {
	font-weight: 700;
    font-size: 28px;
    padding-bottom: 15px;
    border-bottom: 1px solid #c6c6c6;
}
.pro-details-box {
    padding: 5% 0;
}
.product-content .pro-details-box img {
    max-width: 100%;
    margin: auto;
    display: block;
    overflow: hidden;
    height: auto !important;
}
.about-oem{
	background-image: url(/skin/images/index_advan.jpg);
	background-color: #ffefef;
	background-repeat: no-repeat;
	background-size: cover;
} 
.oem-info,.oempro-info,.partner-info,.forpartner-info{
    display: block;
    overflow: hidden;
    padding: 8% 4.5%; 
}
.oem-box {
	padding: 5% 0;
    display: block;
    overflow: hidden;  
	position: relative;
}
.oem-desc {
	width: 50%;
	float: left;
	display: block;
	overflow: hidden;
	background-color: #fff;
}
.oem-desctxt {
    width:55%;
    padding: 3%;
	margin-top: 10%;
    color: #1e1919;
    font-weight: 400;
    font-size: 17px;
    text-align: left;
    line-height: 35px;
    background-color: #fff;
	box-shadow: 0 0 29px 0 #0000003b;
    position: absolute;
    left: 0;
    top: 0;
}
.oem-desctxt p{
	text-indent: 2em;
}
.oem-images {
    width: 50%;
    float: right;
    display: block;
    overflow: hidden;
    padding-left: 3%;
}
.oem-images img{
	width: 100%;
}
.oempro-advan{
	background-image: url(/skin/images/oempro-advan.png);
	background-color: #ffefef;
	background-repeat: no-repeat;
	background-size: cover;
} 
.odmpro-advan{
    background-image: url(/skin/images/odmpro-advan.png);
    background-color: #ffefef;
    background-repeat: no-repeat;
    background-size: cover;
} 
.oem-advanitem {
    margin: 5% 0;
}
.oem-advanitem ul{
	width: 100%;
	display: inline-block;
	overflow: hidden;
	font-size: 0;
}
.oem-advanitem ul li{
	width: 18%;
	display: inline-block;
	overflow: hidden;
	padding: 0 1%;
}
.oem-advanbox {
    background-color: #fff; 
    border-radius: 25px;
    height: 300px;
	width: 300px;
}
.oem-advanbox .num{
	font-weight: 700; 
	font-size: 38px;
	text-align: center;
    padding-top: 15%;
	color: #7D7D7D;

}
.oem-advanbox .icon {
    text-align: center;
	padding: 8% 0;
}
.oem-advanbox .icon::after {
    content: " ";
    display: block;
    overflow: hidden;
    width: 30px;
    height: 2px;
    background-color: #7d7d7d;
    margin: 5px auto;
}
.oem-advanbox .icon i{
	font-weight: 400; 
	font-size: 55px;
	text-align: center;
	color: #7D7D7D;
}
/*.icon-chejian{
	font-size: 5%!important;
}*/
.oem-advanbox .desc{
	font-weight: 400; 
	font-size: 16px;
	text-align: center;
	color: #7D7D7D;
	width: 80%;
	margin: auto;
}
.oem-advanbox:hover{
	background-color: #1E1919;
}
.oem-advanbox:hover .desc,
.oem-advanbox:hover .num,
.oem-advanbox:hover .iconfont
{
	color: #fff;
}
.oem-mintitle .en {
	font-weight: 400; 
	font-size: 18px;   
    line-height: 40px;
    color: #7D7D7D;
    text-transform: uppercase;
    text-align: center;
    line-height: 100%;
    margin-bottom: 3%;
}
.oem-mintitle .zh {
	font-weight: 400; 
	font-size: 36px; 
	color: #1E1919; 
    line-height: 2;
    text-align: center;
    line-height: 100%;
    margin-bottom: 20px;
}
.oem-mintitle .text {
	font-weight: 400;
    text-align: center;
    font-size: 26px;
    color: #1E1919;
    line-height: 2;
    /* margin-bottom: 80px; */
}

.partner-item ul {
    display: block;
    width: 100%;
    padding-top: 4.1%;
}

.partner-item ul li {
    width: 15.8%;
    float: left;
    border: 1px dashed #e0e0e0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 1%;
    margin-bottom: 2%;
}
.partner-item ul li:hover{
	border: 1px solid #f3f3f3;
	box-shadow: 0px 0px 8px rgba(1,1,1,0.1);
}
.partner-item ul li:nth-child(6n){
	margin-right: 0;
}
.partner-item ul li img {
    width: 100%;
}
.oem-forpartner{
	background-image: url(/skin/images/forpartner.png);
	background-color: #ffefef;
	background-repeat: no-repeat;
	background-size: cover;
} 
.forp-item {
    padding: 5% 0px;
}
.forp-item  .forp-li {
	width: 23%;
	margin-right: 2%;
    vertical-align: top;
    text-align: center;
    font-size: 18px; 
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: inline-block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
	height: 608px;
	border-radius: 7px;
	background: #ffffffff;
	box-shadow: 0 0 29px 0 #0000003b;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
} 
.forp-item  .forp-li:nth-child(4n){
	margin-right: 0%;
}
.forp-box {
    position: relative;
    width: auto;
    padding: 3%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
	height: 100%;
	background-image:url("/skin/images/forp-logo.png");
	background-repeat: no-repeat;
	background-position:right 15% bottom 30%;
} 
.forp-box .iconfont {
    margin-top:30%;
    font-size: 64px;
    display: block;
    overflow: hidden;
}
.forp-box h3 {
	font-weight: 700; 
	font-size: 26px;
	text-align: center;
	color: #1E1919;
	margin-top: 18%;
}
.forp-box .forp-line {
	/* position: relative; */
    background-color: #ababab;
    height: 2px;
    width:100px;
    margin: 15% auto;
    display: block;
    overflow: hidden;
}
/* .forp-box .forp-line::before{
    content: " ";
    height: 4px;
    background-color: #000;
    width: 40px;
    position: absolute; 
	left: calc(50% - 20px);
    margin: -1px auto;
    display: block;
    overflow: hidden; 
} */
.forp-box .forp-desc {
    text-align: center;
	font-weight: 400; 
	font-size: 18px;  
    color: #7D7D7D;
    line-height: 2;
    margin-top: 5%;
}
/* .forp-item  .forp-li:hover{ 
	border-radius: 7px;
	background: #1E1919; 
} */
.forp-item .forp-li:hover{ 
	border-radius: 7px;
	background: #1E1919;  
	background-color: rgb(30 25 25 / 90%);  
}
.forp-item .forp-li:hover .forp-box{  
	background-image:url("/skin/images/forp-logo.png");
	background-repeat: no-repeat; 
	background-position:right 15% bottom 30%;
}
.forp-item .forp-li:hover .iconfont,.forp-item .forp-li:hover h3,.forp-item .forp-li:hover .forp-desc{
	color: #fff;
}
.forp-item .forp-li:hover .forp-line {
	/* position: relative; */
    background-color: #eee; 
} 
.about-oembuss{ 
    padding: 7% 5% 7%;
    background-color: #fff;
    background-image: url(/skin/images/oem-buss.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.oembuss-info { 
    display: block;
    overflow: hidden;  
    padding: 7% 5% 0%;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: rgb(241 241 241 / 97%);
}
.oembuss-box{
	position: relative;
	padding: 5% 0;
}
.option-box{
	position: relative;
	display: block;
}
.oembuss-line {
    /* height: 100%; */
	width: 100%;
    position: absolute;
    left: 0%;
	top:205px;
	height: 2px;
    /* width: 4px; */
    background: #7D7D7DFF;
}
.oembuss-box .timeline-item a{
	color:#7D7D7D;
	font-weight: 700; 
	font-size: 30px;
	text-align: center; 
}
.oembuss-box .timeline-item a::after {
    content: " ";
    width: 5px;
    height: 5px;
    border: 2px solid #7D7D7D;
	background-color: #7D7D7D;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 50%; 
}
.timeline-item li{
	display: inline;
	text-align: center;
}
.oembuss-years{
	padding: 30px 0;
	width: 50%;
}
.oembuss-years .swiper-slide-thumb-active a{
	font-weight: bold;
	color: #000;
}
.oembuss-years .swiper-slide-thumb-active a::after {
	background-color: #000;
	color: #000;
	border: 2px solid #000;
}

.oembuss-item-li {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.oembuss-item-libox {
    width: 31.33%; 
    /* border: 1px solid #000; */
    margin: 1%;
}
.oembuss-image img{
	width: 100%;
}
.oembuss-desc{
	background-color: #fff;
	padding: 30px;
	color: #1e1919ff;
	font-weight: 400; 
	font-size: 17px;
	text-align: left;
	line-height: 36px;
	
	display: -webkit-box;
	-webkit-box-orient: horizontal;
	-webkit-box-pack: start;
	-webkit-box-align: center;
	display: -moz-box;
	-moz-box-orient: horizontal;
	-moz-box-pack: start;
	-moz-box-align: center;
	display: -o-box;
	-o-box-orient: horizontal;
	-o-box-pack: start;
	-o-box-align: center;
	display: -ms-box;
	-ms-box-orient: horizontal;
	-ms-box-pack: start;
	-ms-box-align: center;
	display: box;
	box-orient: horizontal;
	box-pack: start;
	box-align: center;
}
.big-round{
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: 0 auto;
	margin-bottom: 5px;
	text-align: center;
	background-color: #7D7D7D;
	display: -webkit-box;
	-webkit-box-orient: horizontal;
	-webkit-box-pack: center;
	-webkit-box-align: center;
	display: -moz-box;
	-moz-box-orient: horizontal;
	-moz-box-pack: center;
	-moz-box-align: center;
	display: -o-box;
	-o-box-orient: horizontal;
	-o-box-pack: center;
	-o-box-align: center;
	display: -ms-box;
	-ms-box-orient: horizontal;
	-ms-box-pack: center;
	-ms-box-align: center;
	display: box;
	box-orient: horizontal;
	box-pack: center;
	box-align: center;
}
.big-round::after {
    content: " ";
    width: 15px;
    height: 15px;
    border: 2px solid #7D7D7D;
	background-color: #7D7D7D;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 50%; 
	    position: absolute;
	    /* left: 0; */
	    bottom: -22px;
	    margin: auto;
} 
.oembuss-years .swiper-slide-thumb-active a::after,.oembuss-years .swiper-slide-thumb-active .big-round::after {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
}
.oembuss-years .swiper-slide-thumb-active .big-round{
	background-color: #000;
}
.min-round{
	width: 130px;
	height: 130px;
	display: block;
	overflow: hidden;
	border-radius: 50%;
	margin: 0 auto;
	border: 1px solid #fff;
	border-radius: 50%;
	font-weight: 700; 
	font-size: 20px;
	text-align: center;
	color: #FFFFFF;
	display: -webkit-box;
	-webkit-box-orient: horizontal;
	-webkit-box-pack: center;
	-webkit-box-align: center;
	display: -moz-box;
	-moz-box-orient: horizontal;
	-moz-box-pack: center;
	-moz-box-align: center;
	display: -o-box;
	-o-box-orient: horizontal;
	-o-box-pack: center;
	-o-box-align: center;
	display: -ms-box;
	-ms-box-orient: horizontal;
	-ms-box-pack: center;
	-ms-box-align: center;
	display: box;
	box-orient: horizontal;
	box-pack: center;
	box-align: center;
}
.oem-process {
    width: 100%;
    display: block;
    overflow: hidden;
    margin-top: 6%;
}
.oem-process ul{
    display: block;
	overflow: hidden;
	width: 100%;
	font-size: 0;
}
.oem-process ul li{
	position: relative;
	display: inline-block;
	font-size: 0; 
	text-align: center;
    vertical-align: top;
}
.oem-process.li5 ul li{
	width: 20%;
}
.oem-process.li6 ul li{
	width: 16.6%;
}
.oem-process .process-num{
	font-weight: 700; 
	font-size: 32.83px;
	text-align: center;
	color: #7D7D7D;
}
.oem-process .process-round{
	width: 150px;
	height: 150px; 
	margin: 5% auto;
	display: block;
	overflow: hidden;
	background-color: #7D7D7D;
	border-radius: 50%;
	text-align: center;
	color: #FFFFFF;
	display: -webkit-box;
	-webkit-box-orient: horizontal;
	-webkit-box-pack: center;
	-webkit-box-align: center;
	display: -moz-box;
	-moz-box-orient: horizontal;
	-moz-box-pack: center;
	-moz-box-align: center;
	display: -o-box;
	-o-box-orient: horizontal;
	-o-box-pack: center;
	-o-box-align: center;
	display: -ms-box;
	-ms-box-orient: horizontal;
	-ms-box-pack: center;
	-ms-box-align: center;
	display: box;
	box-orient: horizontal;
	box-pack: center;
	box-align: center;
}
.oem-process .process-round .iconfont{
	font-size: 50px;
}
.oem-process .process-text{
	font-weight: 400; 
	font-size: 18px;
	text-align: center;
	color: #7D7D7D;
}
.oem-process ul li:hover .process-num,
.oem-process ul li:hover .process-text
{
	color: #1E1919;
}
.oem-process ul li:hover .process-round{
	background-color: #1E1919;
}
.oem-process ul li:hover .iconfont{
	color: #fff;
}
.process-box::before{
	content: " ";
	display: block;
	width: 45px;
	height: 45px;
	background-image: url(/skin/images/jt.png); 
	background-size: 100% 100%; 
	position: absolute;
	right: -10%;
	top: 44%;
}
.oem-process ul li:last-child .process-box::before{
	background-image:none; 
}
.odm-service{
	display: block;
	overflow: hidden;
}
.service-info{
    display: block;
    overflow: hidden;
    padding: 8% 4.5%; 
}
.service-item ul{
	font-size: 0;
	display: block;
	overflow: hidden;
	width: 100%;
}
.service-item ul li{
	background-color: #fff;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	width: 23%;
	margin: 2% 1%;
	padding: 3% 0;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
    vertical-align: top;
}
.service-item .icon::after {
    content: " ";
    width: 80px;
    height: 2px;
    background: #7d7d7d;
    margin: 0 auto; 
    display: block;
    overflow: hidden;
    text-align: center;
	margin-top: 7%;
}
.service-item .iconfont{
	font-size: 69px;
	color: #7D7D7D;
	text-align: center;
	margin: 0 auto;
}
.service-item .title{
	font-weight: 700; 
	font-size: 22px;
	text-align: center;
	color: #7D7D7D;
	margin-top: 8%;
	margin-bottom: 6%;
}
.service-item .desc {
    color: #7D7D7D;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    width: 80%;
	min-height: 5%;
    margin: auto;
}
.service-item ul li:hover{
	background-color: #1e1919;
}
.service-item ul li:hover .iconfont,
.service-item ul li:hover .title,
.service-item ul li:hover .desc
{
	color: #fff;
}
.odm-advan{
	display: block;
	overflow: hidden;
	background-image: url(/skin/images/odm-advan.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.odmadvan-info{
    display: block;
    overflow: hidden;
    padding: 5% 4.5%; 
}
.odmadvan-item {
    padding: 3% 20px;
    display: flex;
}
.odmadvan-item ul{
	font-size: 0;
	display: block;
	overflow: hidden;
	width: 100%;
}
.odmadvan-item ul li{
	background-color: #fff;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	width: 23%;
	margin: 2% 1%;
	padding: 3% 0;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
    vertical-align: top;
}
.odmadvan-item .icon::after {
    content: " ";
    width: 80px;
    height: 2px;
    background: #7d7d7d;
    margin: 0 auto; 
    display: block;
    overflow: hidden;
    text-align: center;
	margin-top: 7%;
}
.odmadvan-item .num{
	font-size: 69px;
	color: #7D7D7D;
	text-align: center;
	margin: 0 auto;
}
.odmadvan-item .title{
	font-weight: 700; 
	font-size: 22px;
	text-align: center;
	color: #7D7D7D;
	margin: 5% auto; 
}
.odmadvan-item .desc {
    color: #7D7D7D;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    width: 85%;
	min-height: 5%;
    margin: auto;
}
.odmadvan-item ul li:hover{
	background-color: #1e1919;
}
.odmadvan-item ul li:hover .num,
.odmadvan-item ul li:hover .title,
.odmadvan-item ul li:hover .desc
{
	color: #fff;
}
.dnews-info{
    max-width: 1400px;
    margin: 0 auto;
    display: block; 
}
.dnews-type {
    display: block; 
    width: 100%;
    text-align: center;
}
.dnews-type a {
    display: inline-block; 
    font-size: 16px;
    padding: 10px 70px;
    margin: 0px 20px; 
    background: #7D7D7D;
    border-radius: 25px;
    color: #fff;
}
.dnews-type .a_curr{
    background: #1E1919!important; 
}
.dnews-list {
    display: block; 
    margin: 5% auto;
}
/*.dnews-item{
    display: block;
    overflow: hidden;
    margin-bottom:2%;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}*/
.dnews-item {
    display: block;
    overflow: hidden;
    padding-bottom: 5%;
    border-bottom: 1px solid #ccc; 
    padding: 5% 25px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.2); */
}
.dnews-item:hover{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.dnews-item .dnews-img {
    width: 30%;
    float: left;
} 
.dnews-item .dnews-img img{
	width: 100%;
}
.dnews-item .dnews-right {
    width: 70%;
    float: left;
    display: block;
    overflow: hidden;
}
.dnews-item .dnews-box {
    padding: 0 5%;
    display: block;
}
.dnews-item .dnews-box h3{
    font-weight: 700; 
    font-size: 20px;
    text-align: left;
    color: #7D7D7D;
    margin-bottom: 2%;
}
.dnews-item .dnews-box .dnews-desc{
    font-weight: 400; 
    font-size: 16px;
    text-align: left;
    color: #7D7D7D;
    margin-bottom: 5%;
}
.dnews-item .dnews-box .dnews-time {
    width: 70px;
    background-color: #EAEAEA;
    text-align: center;
    padding: 15px;
}
.dnews-item .dnews-box .dnews-day{
    font-weight: 700; 
    font-size: 50px; 
    color: #7D7D7D;
}
.dnews-item .dnews-box .dnews-day2{
    display: none;
}
.dnews-item .dnews-box .dnews-ym{
    font-weight: 400; 
    font-size: 16px; 
    color: #7D7D7D;
}
.news-details{
    display: block;
    overflow: hidden;
}
.news-container{
    max-width: 1400px;
    overflow: hidden;
    margin:0% auto 5% ;
    padding: 5px 15px;
}
.news-top {
    border-bottom: 1px solid #ccc;
}
.news-top h3{
    font-weight: 700; 
    font-size: 26px; 
    text-align: center;
    color: #1E1919;
}
.news-top .news-option{
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #7D7D7D;
    margin:25px 0;
}
.news-top .news-option span{
    padding: 0 25px;
}
.news-content {
    margin: 3% auto;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5%;
}
.news-prvnext {
    width: 70%;
    float: left;
    display: block;
    overflow: hidden;
}
.news-prvnext a {
    display: block; 
    margin-bottom: 20px;
}
.news-back {
    float: right;
    display: block; 
    margin-top: 25px;
}
a.a_back {
    background-color: #ccc;
    padding: 12px 50px;
    /* margin: 25px; */
    border-radius: 25px;
    display: block;
    text-align: center;
}
.a_back:hover{
    background-color: #1e1919;
    color: #fff;
} 
.contact-center{
    display: block;
    overflow: hidden;
}
.contact-info{
    display: block;
    overflow: hidden;
    padding: 8% 4.5%; 
}
.contact-top {
    display: block; 
    overflow: hidden;
    clear: both;
    max-width: 1400px;
    margin: auto;
}
.contact-left {
    display: block;
    overflow: hidden;
    width: 50%;
    float: left;
}
.contact-right {
    display: block;
    float: left;
    width: 40%;
    margin-left: 10%;
}
.contact-top h1{
    position: relative;
    font-weight: 400; 
    font-size: 40px;
    text-align: left;
    color: #1E1919;
    padding-left: 30px;
}
.contact-top h1 font {
    font-size: 55px;
    position: absolute;
    left: 0;
    top: -12px;
}
.contact-left ul{
    display: block;
    margin:25px 0;
    margin-top: 8%;
}
.contact-left ul li{
    display: block;
    margin:25px 0;
    font-weight: 400; 
    font-size: 22px;
    text-align: left;
    color: #1E1919;
    position: relative;
    padding-left: 40px;
    line-height: 32px;
}
.contact-left .iconfont {
    font-size: 35px;
    color: #8a8a8a; 
    position: absolute;
    left: 0;
    top: -4px;

}
.contact-right .qrcode-item{
    margin-top: 8%;
}
.contact-right .qrcode-desc{
    font-weight: 400; 
    font-size: 20px; 
    color: #292929;
}
.contact-map {
    display: block;
    overflow: hidden;
    padding-top: 5%;
}
#map-box{
    height: 650px
}
.fubox{
   width: 53px;
   position: fixed;
   right: 0;
   bottom: 20%;
   z-index: 999;
   margin-top: -110px;
}
.fubox ul{
   width: 100%;
}
.fubox ul li{
   width: 53px;
   height: 53px;
   margin: 1.5px 0;
   position: relative;
}
.fubox ul li a{
   display: block;
   width: 100%;
   height: 100%;
   background: #7D7D7D;
   border-radius: 5px;
   text-align: center;
}
.fubox ul li img{
   width: 100%;
   height: 100%;
}

.fubox .hovers{
  position: absolute;
   right: 60px;
   top: 0;
   display: none;
   width: 190px;
   background: #7D7D7D;
   padding: 14px;
   border-radius: 16px;
}
.fubox .hovers ul li{height: auto;width: auto;}
.fubox .hovers ul li a{color: #fff;text-align: center;}
.fubox .fbs{width: 250px;}

.qqs ul li img{width: auto;float: left;height: 30px;margin-right: 10px;}

.qqs ul li{width: 100%;line-height: 30px;height: auto;margin-bottom: 10px;text-align: center;}
.qqs ul li:last-child{margin-bottom: 0}
.fubox ul li i {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 26px;
    padding-top: 13px;
}
.zx {
    color: #fff;
    font-size: 18px;
    padding-top: 2px;
    display: block;
}

/*.qq:hover .qqs{display: block;}*/
.ewms,.wechats{
  width: 135px;
height: 135px;
position: absolute;
right: 60px;
bottom: 0;
display: none;
padding: 10px;
background: #7D7D7D;
border-radius: 6px;
}

@media(min-width: 768px){
  .ewm:hover .ewms,.wechat:hover .wechats{
     display: block;
  }
}

@media (max-width: 1700px) {
     .index-news .news-li .news-date { 
        font-size: 22px; 
        padding-bottom:5%;
    }
    .index-news .news-li .news-title {
        font-weight: 400;
        font-size: 18px;
    }
    .index-news .news-li .news-more{
        font-size:12px;
    }

    .envi-video-box img {
        width: 53%; 
        top: 0;
    } 


    
    /* end 1700px */
}
@media (max-width: 1660px) { 
    .advan-box h3 {
        font-size: 26px; 
        padding: 8px 0; 
        padding-top: 25%;
    }
    .index-business .business-li{
        /*width: 350px!important;*/
        /*height: 350px!important;*/
    }
    .service-box { 
        height: 900px; 
    }

    .index-business .octagon .number {
        padding-top: 18%; 
    }

    .news-li img {
        width: 100%;
        height: 165px;
    }
    
    .qrcode-box img {
        width: 130px;
        height: 130px;
    }

    .about-intro { 
        font-size: 16px;
        line-height: 32px; 
    }

    .about-item li .text-num { 
        font-size: 32px; 
    }

    .envi-video-box img {
        width: 53%;
        top: 15%;
    }

    .oem-box {
        padding: 14% 0; 
    }

    .oem-advanbox .icon { 
        padding: 4% 0;
    }

    .process-box::before { 
        width: 32px;
        height: 45px; 
    }
    .oem-process .process-round {
        width: 130px;
        height: 130px;
    }

    .brand-box .zh {
        font-size: 32px;
        font-weight: 600; 
    }
    .brand-box .en {
        font-weight: 300;
        font-size: 16px; 
    }

    /* end 1660px */
}
@media (max-width: 1440px) {
    .advan-box h3 {
        font-size: 22px; 
        padding: 8px 0; 
        padding-top: 25%;
    }
    .advan-list:hover .advan-box h3 {
        font-size: 22px; 
    }
    .advan-box .iconfont {
        margin-top: 25%;
        margin-bottom: 5%; 
        font-size: 45px; 
    }
    .service-title h3 { 
        font-size: 56px; 
    }

    .index-business .business-li { 
        margin-left: -50px; 
    }

    .index-business .octagon .number {
        padding-top:15%; 
        font-size:32px; 
    }

    .index-business .octagon h4 {
        font-size: 24px;
        color: #7D7D7D;
    }

    .index-business .octagon .bus-en {
        font-size: 16px; 
    }
    .index-business .octagon .bus-more{
        font-size: 14px;
    }
    
    .footer-qrcode h2 { 
        font-size: 32px; 
    }

    .qrcode-box img {
        width: 105px;
        height: 105px;
    }
    .footer .foot_top_li h3 { 
        font-size: 18px; 
        margin-bottom: 8%;
    }

    .footer .foot_top_li ul.son li a { 
        font-size: 14px; 
    }

    .about-jieshao {
        width: 57%; 
    }
    .about-huanjing {
        width: 40%; 
    }

    .oem-advanbox .desc { 
        font-size: 14px; 
    }
    
    .oem-advanbox .icon i { 
        font-size: 36px;
    }
    
    .oem-advanbox .num { 
        font-size: 32px; 
    }

    .oem-process .process-round {
        width: 140px;
        height: 140px;
    }

    .process-box::after { 
        width: 28px; 
        top: 47%;
    }
    .oem-process .process-text { 
        font-size: 16px;
    }
    .process-box::before { 
        width: 32px;
        height: 45px; 
    }
    .oem-process .process-round {
        width: 110px;
        height: 110px;
    }
    .oem-process .process-round .iconfont {
        font-size: 40px;
    }
    .service-item .iconfont {
        font-size:42px; 
    }
    .service-item .title { 
        font-size: 18px; 
    }
    .service-item .desc { 
        font-size: 14px; 
        line-height: 24px; 
    }
    .odmadvan-item .num {
        font-size: 54px; 
    }
    .odmadvan-item .title { 
        font-size: 18px; 
    }
    .odmadvan-item .desc { 
        font-size: 14px; 
        line-height: 22px; 
    }
    .dnews-item .dnews-box h3 { 
        font-size: 18px; 
    }
    .dnews-item .dnews-box .dnews-day { 
        font-size:36px; 
    } 
    .contact-top h1 { 
        font-size: 28px; 
        padding-left: 20px;
    }

    .contact-top h1 font {
        font-size: 44px;
    }

    .contact-left ul li { 
        font-size: 18px; 
    }

    .contact-right  .qrcode-box {
        width: 25%; 
    }

    .contact-right .qrcode-desc { 
        font-size: 16px; 
    }

    /* end 1440px */

}
@media (max-width: 1360px) {
    .header-nav {
        left: 45%;
    }

     .qrcode-box img {
        width: 100px;
        height: 100px;
    }

    /* end 1360px */
}

@media (max-width: 1280px) {
    .brand-box .zh {
        font-size: 28px;
        font-weight: 600; 
    }
    .brand-box .en {
        font-weight: 300;
        font-size: 14px; 
    }

}

@media (max-width: 1200px) {
    .service-title { 
        margin-top: 29%;
    }
     .service-box { 
        height: 600px; 
    }
    .index-business .octagon .number {
        padding-top: 15%;
        font-size: 30px;
    }
    .index-business .octagon h4 {
        font-size: 20px;
        color: #7D7D7D;
    }

    .index-business .octagon .bus-more {
        font-size: 12px;
        margin-top: 5%;
    }

    .index-business .octagon .bus-en {
        font-size: 12px;
        line-height: 24px;
    }

    
    .header-nav .nav-item a { 
        padding: 0 12px;
    }

    .header-btn-search:hover .header-search {
        width: 160px; 
    }

    .hbox{
        display: block;
    }

    
    .header-nav {  
        overflow: hidden;
        right: 0;
        left: unset;
        height: auto;
        -webkit-transform: inherit;
        -moz-transform: inherit;
        -ms-transform: inherit;
        transform: inherit; 
    }
    
    .header-nav { 
        display: none;
        overflow: auto;
        position: absolute;
        top: 80px;
        background: rgba(255,255,255,0.98);
        right: 0;
        width: 33.3%;
        padding: 10px 0;
        box-sizing: border-box;
        box-shadow: 0 4px 8px rgb(0 0 0 / 30%);
    }

    .header-nav li {
        display: block;
        overflow: hidden;
    }

    .header-nav li {
        display: block;
        width: 100%;
        padding: 0 30px 0 20px;
        min-height: 45px;
        line-height: 45px;
        box-sizing: border-box;
    }

    .header-nav .nav-item a {
        line-height: 30px;
    }

    .header-nav li:first-child:before, .header-nav li:after{
        display: none;
    }
    
    .header-nav .nav-item a {
        font-size: 14px;
    }

    .nav-item { 
        margin-top: 18px;
    }
    
    .advan-box h3 {
        font-size: 18px; 
    }
    
    .advan-list {
        height: 400px; 
    }
     
    .advan-list:hover .advan-box h3 {
        font-size: 18px;
    }

    .advan-box .advan-en {
        font-size: 14px; 
    }

    .advan-box .advan-desc { 
        font-size: 14px; 
    }
    
    .index-brand .brand-item ul li { 
        height: 180px;
    }
    .brand-box .zh {
        font-size: 28px; 
    }

    .brand-box .en { 
        font-size: 14px; 
    }
    .index-news .news-li {
        width: 29.3%;
    }
    .index-news .news-li:nth-child(4n) {
        margin-right: 3%;
    }
    .index-news .news-li:nth-child(3n) {
        margin-right: 0%;
    }
    
    .footer-qrcode h2 { 
        font-size: 28px; 
    }

    .qrcode-box img {
        width: 100px;
        height: 100px;
    }
    .footer .foot_top_li h3 { 
        font-size: 16px; 
        margin-bottom: 8%;
    }

    .footer .foot_top_li ul.son li a { 
        font-size: 13px; 
        line-height: 35px;
    }

    .about-jieshao {
        width: 100%; 
    }
    .about-huanjing {
        width: 100%; 
        padding-left:0;
    }
    
    .about-item { 
        margin-top: 3%;
        margin-bottom: 3%;
    }
    .culture-item .culture-li{
        height: 500px;
    }
    .culture-box h3 { 
        font-size: 20px; 
    }
    .culture-box .culture-desc { 
        font-size: 18px; 
    }

    .envi-content{
        width: 100%;
         margin: 0;
        margin-top: 5%;
    }
    .envi-box { 
        margin-top: 25%;
    }
    .video-img-box{
        width: 100%;
    }
    .envi-video-box,.video-img-box{
        overflow:inherit;
        left: 0;
    }
    .envi-video-box img {
        width: 70%;
        top: -30%; 
        margin: auto;
        left: calc(50% - 35%);
        margin-top: -26%;
    }
    .envi-video-box img.playVideo{
        margin: auto; 
        margin-top: -8%;
    }
    .envi-video,.envi-video-box{
        width: 100%;
    }
    .video-img-box,.envi-video-box img{
        position: relative;
    } 
    .pro-list li { 
        width: 32%;
        margin-right: 2%; 
    }
    .pro-list li:nth-child(4n) {
        margin-right: 2%;
    }
    .pro-list li:nth-child(3n) {
        margin-right: 0%;
    }
    .dateils-desc h2{
        font-size: 22px;
    }
    .dateils-desc ul li { 
        font-size: 14px; 
    }
    .pro-contact .lx-btn {
        font-size: 14px; 
    }

    .back-icon {
        font-size: 28px; 
    }
    
    .oem-box {
        padding: 20% 0;
        padding-bottom: 10%;
    }
    .oem-desctxt{
        font-size: 14px;
    }
    .oem-advanitem ul li {
        width: 31.33%;  
        margin-bottom: 5%;
    }

    .oem-advanbox { 
        margin: 0 auto;
    }

    .oem-advanbox .num { 
        padding-top: 20%; 
    }

    .oem-advanitem ul {
        display: flex;
        overflow: inherit;
    }
    
    .oem-advanbox { 
        border-radius: 25px; 
    }
    .partner-item ul li {
        width: 19%;  
    }
    .partner-item ul li:nth-child(4n),.partner-item ul li:nth-child(6n) {
        margin-right: 1%; 
    }
    .partner-item ul li:nth-child(5n) {
        margin-right: 0;
    }

    .forp-box h3 { 
        font-size: 18px; 
    }
    .forp-box .forp-desc { 
        font-size: 16px; 
    }
    .forp-box .iconfont {
        margin-top: 20%;
        font-size: 56px; 
    }
    .forp-item .forp-li{
        height: 500px;
    }
    .oembuss-years { 
        width: 60%;
    }
    .min-round {
        width: 110px;
        height: 110px;
        font-size: 18px;
    }
    .big-round {
        width: 130px;
        height: 130px;
    }
    .oembuss-line { 
        top: 186px; 
    }

    .oem-process .process-round {
        width: 100px;
        height: 100px;
    }
 
    .process-box::before { 
        width: 36px;
        height: 36px; 
        right: -13%;
        top: 44%;
    }
    .oem-process .process-round .iconfont {
        font-size: 40px;
    }
    .oem-process .process-text { 
        font-size: 16px;
    }
    .oem-process .process-num { 
        font-size:20px; 
    }
    .process-box::before { 
        width: 30px;
        height: 30px; 
    }
    .oem-process .process-round {
        width: 110px;
        height: 110px;
    }
    .oem-process .process-round .iconfont {
        font-size: 40px;
    }
    .process-box::before {
        width: 20px;
        height: 26px;
        right: -8%;
        top: 44%;
    }
    .dnews-item .dnews-box h3 { 
        font-size: 18px; 
    }
    .dnews-item .dnews-box .dnews-day { 
        font-size: 30px; 
    } 
    /* end 1200px */
}
@media (max-width: 992px) {
    .service-title { 
        margin-top: 0;
        padding-top: 13%;
    }
    .service-box { 
        height: 600px; 
        margin:0 0;
        margin-bottom: 3%;
    }
    .service-item { 
        display: block;
        overflow: hidden;
    }

    .header-nav {
        width: 50%;
    }
    .index-brand .brand-item ul li { 
        height: 160px;
    }
    .brand-box .zh {
        font-size: 20px; 
    }

    .brand-box .en { 
        font-size: 14px; 
    }

    .footer-left {
        width: 100%;
        float: right; 
    }
    
    .footer-right {
        width: 100%;
        float: left; 
    }
    .footer .foot_top_li {
        width: 16.6%; 
        float: initial; 
        display: inline-block;
        vertical-align: top;
    }
    .qrcode-item {
        display: block;
        overflow: hidden;
        float: left;
        width: 60%;
    }
    .footer-qrcode h2 {
        font-size: 28px;
        padding: 10px 0 15px;
    }
    .culture-item .culture-li{
        width: 50%;
    }
    .culture-item .swiper-slide-active {
        width: 50%; 
    } 
    .envi-video-box img.playVideo{
        width: 40px;
        left: calc(50% - 20px);
    }
    .history-item-li { 
        display: inline-block; 
    } 
    .history-item-libox {
        width: 47.7%; 
        margin: 1%;
        display: inline-block;
    }
    .history-item-libox.history-desc {
        width: 100%;
        display: block;
        overflow: hidden;
        margin: 15px 0;
        padding: 0;
    }
    .history-text {
        padding: 25px;
    } 

    .banner-title { 
        font-size: 28px!important; 
        padding: 0 3%;
        margin-bottom: 1%;
    }
    
    p.banner-title.banner-entext {
        margin-bottom: 2%;
        font-size: 38px!important; 
    }

    .banner-desc { 
        font-size: 20px;
        padding: 0 3%; 
    }


    .about-banner .banner-desc {
        font-size: 20px;
        padding: 0 3%;
        padding-left: 0;
    }

    .product-top .left,.product-top .right {
        width: 100%; 
    }
    .dateils-desc{
        margin-left: 0%;
        margin-top: 5%;
    }

    .pro-contact .lx-btn {
        width: 100px; 
        font-size: 14px; 
        line-height: 18px; 
        margin-right: 10px;
    }
    
    .product-content .pro-details-title { 
        font-size: 22px;
        padding-bottom: 15px; 
    }
    .oem-desc,.oem-images{
        width: 100%; 
    }
    .oem-desctxt {
        width: 95%;
        position: inherit;
        margin-top: 0;
        margin: 0 auto;
        box-shadow:none;
    }

    .oem-box {
        padding: 5% 0;
    }
    .forp-box h3 { 
        font-size: 16px; 
    }
    .forp-box .forp-desc { 
        font-size: 14px; 
    }
    .forp-box .iconfont {
        margin-top: 20%;
        font-size: 50px; 
    }
    .forp-item .forp-li{
        height: 500px;
        vertical-align: top;
    }

    .oembuss-years { 
        width: 80%;
    }
    .min-round {
        width: 110px;
        height: 110px;
    }
    .big-round {
        width: 130px;
        height: 130px;
    }
    .oem-process.li5 ul li {
        width: 33%;
        margin-bottom: 7%;
    }

    .oem-process.li5 ul li:nth-child(3n) .process-box::before{
        content: none;
    }
    .oem-process.li6 ul li {
        width: 33.33%;
        margin-bottom: 7%;
    }
    .oem-process.li6 ul li:nth-child(3n) .process-box::before{
        content: none;
    } 
    .service-item ul li { 
        width: 31.33%; 
    }
    .service-item .iconfont {
        font-size:42px; 
    }
    .service-item .title { 
        font-size: 18px; 
    }
    .service-item .desc { 
        font-size: 14px; 
        line-height: 24px; 
    }

    .odmadvan-item ul li { 
        width: 31.33%; 
    }
    .dnews-type a { 
        font-size: 16px;
        padding: 10px 28px;
        margin: 0px 20px; 
    }
    .news-top h3 { 
        font-size: 24px; 
    }
    .news-top .news-option { 
        font-size: 14px; 
        margin: 20px 0;
    } 
    .contact-left ul li {
        font-size: 18px;
        margin: 18px 0;
    }
    .contact-right .qrcode-item {
        margin-top: 8%;
        width: 100%;
    }
    .contact-right .qrcode-box {
        width: 28%;
    }
    /* end 992px */

}
@media (max-width: 772px) { 
    .header{
        position:relative;
    }
    .nybanner_text { 
        margin-top: 20%; 
    }
    .index-brand .brand-item ul li { 
        height: 140px;
    }
    .brand-box .zh {
        font-size: 22px; 
    }

    .brand-box .en { 
        font-size: 12px; 
    }

    .index-brand .brand-item ul li {
        width: 33.33%;
    }

    .brand-box {
        width: 100%!important;
    }

    .index-news .news-li {
        width:46.3%;
    }
    .index-news .news-li:nth-child(4n) {
        margin-right: 3%;
    }
    .index-news .news-li:nth-child(3n) {
        margin-right: 3%;
    }
    .index-news .news-li:nth-child(2n) {
        margin-right: 0%;
    }
    .index-news .news-li .news-date {
        font-size: 18px;
        padding-bottom:3%;
    }

    .news-li img { 
        height: 100px;
    } 
    .index-news .news-li .news-title { 
        font-size: 14px;
    }

    .index-news .news-li .news-desc { 
        font-size: 12px;
        height: 50px;
        line-height: 25px; 
    }

    .index-news .news-li .news-more {
        width: 100px; 
        font-size: 14px; 
        line-height: 24px; 
        padding: 3px 0; 
        margin: 10px 0;
    }

    .qrcode-item { 
        width: 70%;
    }

    .envi-video-box img {
        width: 100%;
        top: -30%; 
        margin: auto;
        left: calc(50% - 50%);
        margin-top:-30%;
    }
    .envi-video-box img.playVideo{
        margin: auto; 
        margin-top:0;
    }

    .timeline-item a { 
        font-size: 22px; 
    }
    .timeline-item a::after { 
        width: 12px;
        height: 12px; 
    }
    .history-line { 
        top: 67px; 
    }
    .history-text { 
        font-size: 14px;
        line-height: 26px;
    }
    .pro-title .pro-num { 
        font-size: 14px; 
    }
    .pro-title {
        padding: 7% 0;
        line-height: 24px;
    }
    .pro-title .pro-text { 
        font-size: 14px; 
    }

    .oem-advanitem ul li {
        width: 48%;  
        margin-bottom: 5%;
    }
    
    .forp-item .forp-li {
        width: 48.5%;
        margin-bottom: 3%;
    } 
    .forp-item .forp-li:nth-child(2n){
        margin-right: 0%;
    }

    .oembuss-years { 
        width: 100%;
    }
    .dnews-item .dnews-box .dnews-day{
        display: none;
    }
    .dnews-item .dnews-box .dnews-day2{
        display: inline-block;
    }
    .dnews-item .dnews-box .dnews-time{
        width: 120px;
        padding: 8px 0;
    }
    .dnews-item .dnews-box h3 {
        font-size: 16px;
    }
    .dnews-item .dnews-box .dnews-desc { 
        font-size: 14px; 
    }

    .contact-left,.contact-right {
        width: 100%;
        float: left;
        margin-left: 0%;
    } 
    .contact-top h1 font {
        font-size: 39px;
    }
    .contact-top h1 {
        font-size: 24px; 
    }
    .contact-left ul li {
        font-size: 18px;
        margin: 18px 0;
    }
    #map-box {
        height: 500px;
    }
    /* end 772px */

}

@media (max-width: 640px) {
    .service-box {
        height: 500px; 
    } 
    .service-title h3 {
        font-size: 32px;
    }
    .service-title {
        margin-top: 0;
        padding-top: 25%;
    }
    .service-title p {
        margin-top: 2%;
        font-size: 24px; 
    }
    .service-list .service-li .iconfont {
        font-size: 56px;
        color: #757575;
    }

    .service-list .service-li .service-desc { 
        font-size: 18px;
        padding: 25px 0; 
    }
     .index-title .en { 
        font-size: 18px;  
        margin-bottom: 15px;
    }
    .index-title .zh { 
        font-size: 28px; 
        margin-bottom: 20px;
    }

       .index-business .octagon .number {
        padding-top: 5%;
        font-size: 30px;
    }
    
    .index-business .octagon .bus-more {
        width: 100px;
    }
    .header {
        height: 60px;
    }
    .header-nav {
        width: 100%;
        top: 60px;
    }
    .hbox{
        margin-right:0;
    }
    .header-btn-search,.header .lan::before{
        display: none;
    }
    .logo {
        /* float: left; */
        padding-top: 10px;
    }
    .logo img {
        height: 40px; 
    } 
    .header-btn { 
        margin-top: 13px;
    }

    .index-brand .brand-item ul li {
        height: 100px;
    }

    .index-news .news-li .news-date {
        font-size: 16px; 
    }
    .footer .foot_top_li {
        width: 33.33%; 
        margin-bottom: 5%;
    }
    .qrcode-item {
        display: block;
        overflow: hidden;
        float: left;
        width: 100%;
    }
    .footer-qrcode h1 { 
        text-align: center;
    }
    .footer-qrcode h2 { 
        text-align: center;
    }
    .copyright-text { 
        font-size: 12px;
    }
    .footer .foot_top_li ul.son li a {
        font-size: 12px;
        line-height: 28px;
    }
    .about-box {
        padding-top: 6%; 
    }
    .about-company h1 { 
        font-size: 20px;
    }
    .culture-box h3 {
        font-size: 16px;
    }
    .culture-box .culture-desc {
        font-size: 14px;
    }
    /* .culture-item .culture-li{
        width: 40%;
    }
    .culture-item .swiper-slide-active {
        width: 60%; 
    } */

    .envi-video-box img.playVideo{
        width: 30px;
        left: calc(50% - 15px);
    }

    .banner-title { 
        font-size: 22px!important;
        padding-bottom: 0;
    }
    .footer .foot_ul { 
        margin-bottom: 15px;
        font-size: 0;
    }
    .banner-desc { 
        font-size: 16px!important;
        width: 90%;
        margin: auto;
    }
    
    .about-banner .banner-desc {
        font-size: 20px; 
        margin: 0;
    }

    p.banner-title.banner-entext {
        margin-bottom: 2%;
        font-size: 30px!important; 
    }

    .pro-list li { 
        width: 49%;
        margin-right: 2%; 
    }
    .pro-list li:nth-child(4n) {
        margin-right: 2%;
    }
    .pro-list li:nth-child(3n) {
        margin-right: 2%;
    }
    .pro-list li:nth-child(2n) {
        margin-right: 0%;
    }
    .pro-type-item li a {
        font-size: 14px;
    }
    .pro-type-all, .pro-type-item { 
        line-height: 50px;
    }
    .pro-type-all span{
        display: none;
    }
    .pro-type-top { 
        font-size: 16px;
        min-height: 50px; 
        padding: 0 10px;
    }
    .pro-type-nav { 
        margin-top: 15px;
    }
    .pro-type-nav .pro-type-item {
        line-height: 35px;
    }
    .pro-type-item li { 
        padding: 0 10px; 
    }
    .fenye li{
        font-size: 12px;
        margin-bottom:15px;
    }
    .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
        font-size: 30px;
    }

      .oem-advanitem ul li {
        width: 70%;  
        margin-bottom: 5%;
    }
   
    .oem-mintitle .zh { 
        font-size: 28px; 
    }
    .oem-mintitle .en { 
        font-size: 16px; 
    }
    .oem-mintitle .text { 
        font-size: 22px; 
    }

    .partner-item ul li {
        width:31.9%;  
    }
     .partner-item ul li:nth-child(4n),.partner-item ul li:nth-child(6n),.partner-item ul li:nth-child(5n) {
        margin-right: 1%; 
    }
     
    .partner-item ul li:nth-child(3n) {
        margin-right: 0;
    }
 

    .forp-item .forp-li {
        width: 48%;
        margin-bottom: 3%;
    } 
    .forp-box {  
        background-size: 40%; 
    }
    .forp-item .forp-li {
        height: 445px;
        vertical-align: top;
    } 
    .big-round {
        width: 110px;
        height: 110px;
    }
    .min-round {
        width: 90px;
        height: 90px;
        font-size: 14px;
    }
    .oembuss-line { 
        top: 186px; 
    }
    .oem-process .process-round {
        width: 100px;
        height: 100px;
    }
    .oem-process .process-round .iconfont {
        font-size: 32px;
    }
    .oem-process.li5 ul li {
        width: 48%;
        margin-bottom: 7%;
    }
    .oem-process.li5 ul li:nth-child(2n) .process-box::before{
        content: none;
    }
    .oem-process.li5 ul li:nth-child(3n) .process-box::before{
        content: " ";
    } 
    .oem-process.li6 ul li {
        width: 48%;
        margin-bottom: 7%;
    }
    .oem-process.li6 ul li:nth-child(2n) .process-box::before{
        content: none;
    }
    .oem-process.li6 ul li:nth-child(3n) .process-box::before{
        content: " ";
    } 
    .service-item,.odmadvan-item{
        padding: 3% 0;
    }
    .service-item ul li { 
        width: 48%; 
    }
    .service-item .iconfont {
        font-size:32px; 
    }
    .service-item .icon{ 
        margin-top: 15px;
    }
    .service-item .title { 
        font-size: 16px; 
    }
    .service-item .desc { 
        font-size: 12px; 
        line-height: 24px; 
    }
    .odmadvan-item ul li { 
        width: 48%; 
    }
    .odmadvan-item .num {
        font-size: 48px; 
    }
    .odmadvan-item .title { 
        font-size: 16px; 
    }
    .odmadvan-item .desc { 
        font-size: 12px; 
        line-height: 22px; 
    }
    .dnews-item .dnews-img {
        width: 100%; 
        margin-bottom: 5%;
    }
    .dnews-item .dnews-right {
        width: 100%; 
    }
    .dnews-item .dnews-box {
        padding: 0; 
    }

    .dnews-type a {
        font-size: 14px;
        padding: 8px 25px;
        margin: 0px 6px;
        margin-bottom: 5%;
    }
    .news-top h3 {
        font-size: 18px;
    }
    .news-top .news-option { 
        font-size: 14px;
        margin: 20px 0;
        padding: 0 5px;
    }
    .news-top .news-option span {
        padding: 0 5px;
    }
    .news-prvnext,.news-back{
        width: 100%;
    }
    .news-content { 
        font-size: 14px;
        line-height: 24px;
    }
    .contact-left .iconfont {
        font-size: 30px; 
    }
    .contact-top h1 font {
        font-size: 39px;
    }
    .contact-top h1 {
        font-size: 24px; 
    }
    .contact-left ul li {
        font-size: 18px;
        margin: 18px 0;
        line-height: 26px;
    }
    #map-box {
        height: 500px;
    }

    .index-banner .index_text_box { 
        top: 50%;  
    }

    .index-news { 
        background-size: cover;
    }

    /* end 640px */
}
@media (max-width: 420px) {
    .service-box {
        height:400px; 
        margin: 0 0;
        margin-bottom: 3%;
    } 
    .index-title .en { 
        font-size: 14px;  
        margin-bottom: 10px;
    }
    .index-title .zh { 
        font-size: 22px; 
        margin-bottom: 20px;
    }

    .service-list .service-li .iconfont {
        font-size: 36px;
        color: #757575;
    }

    .service-list .service-li .service-desc {
        font-size: 16px;
        padding: 15px 0;
    }

    .service-title h3 {
        font-size: 22px;
    }
    
    .service-title p {
        margin-top: 2%;
        font-size: 14px;
    } 
    .index-business .octagon .number {
        padding-top: 5%;
        font-size: 30px;
    }
    .index-business .octagon h4 {
        font-size: 16px;
        padding-bottom: 8px;
    }

    .index-business .octagon .bus-en {
        font-size: 12px;
        line-height: 16px;
    }

    .index-business .octagon .bus-more {
        padding: 5px 0;
    }

    .index-news .news-li .news-desc {
        font-size: 12px;
        height: 40px;
        line-height: 18px;
    }
    .about-banner .banner-title { 
        line-height: 34px; 
        font-size: 20px!important;
    }

    .about-banner .banner-desc {
        font-size: 20px; 
        margin: 0;
    }

    p.banner-title.banner-entext {
        margin-bottom: 2%;
        font-size: 26px!important; 
    }

    .about-item li .text-num {
        font-size: 20px;
        padding-bottom: 6px;
    } 
    .about-item li .text-desc { 
        font-size: 12px; 
    }
    
    .timeline-item a { 
        font-size: 18px; 
    }
    .timeline-item a::after { 
        width: 12px;
        height: 12px; 
    }
    .history-line {
        top: 32px;
    }
    .history-text { 
        font-size: 14px;
        line-height: 26px;

    }
    .history-years{
        padding-top: 0;
    }
    .qrcode-desc { 
        font-size: 14px; 
    }
    .dateils-desc ul li { 
        width: 100%;
    }
    .location_links i { 
        font-size: 22px; 
        padding-right: 0px; 
    }
    .product-content .pro-details-title,.dateils-desc h2,.dateils-desc h3{
        font-size: 18px; 
    }
    .oem-advanitem { 
        margin-bottom: 10%;
    }
    .oem-mintitle .zh { 
        font-size: 22px; 
        margin-bottom: 10px;
    }
    .oem-mintitle .en { 
        font-size: 16px; 
    }
    .oem-mintitle .text { 
        font-size: 16px; 
        line-height: 24px;
    }
    .forp-item .forp-li {
        height: 370px; 
    }
    .big-round {
        width: 90px;
        height: 90px;
    }
    .min-round {
        width: 80px;
        height: 80px;
        font-size: 14px;
    }
    .oembuss-line { 
        top: 186px; 
    }
    .big-round::after {
        content: " ";
        width: 12px;
        height: 12px;
    }
    .oembuss-line {
        top: 146px;
    }
    .odmadvan-item .num {
        font-size: 42px; 
    }
    .odmadvan-item .title { 
        font-size: 14px; 
    }
    .nybanner_text {
        margin-top: 15%;
    }
    .fubox{
        display: none;
    }

    .qrcode-box {
        width: 31%; 
        padding-right: 1%; 
    }

    .qrcode-box img {
        width: 88px;
        height: 88px;
    }


    /* end 420px */

}