@charset "utf-8";
/* CSS Document */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    background: #ffffff;
    font-family: 'Noto Sans SC', 'Microsoft YaHei', serif;
    overflow-x: hidden;
    transition: all .4s;
    -webkit-transition: all .4s;
}

ul, li, ol, dl, dt, dd, p, h1, h2, h3, h4, h5, h6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

input, textarea {
    outline: none;
}

::-webkit-input-placeholder {
    color: #bdbdbd;
}

::-moz-placeholder {
    color: #bdbdbd;
}

:-ms-input-placeholder {
    color: #bdbdbd;
}

a {
    display: block;
    text-decoration: none;
    color: #ffffff;
}

a:hover {
    color: #e00505;
}

.clearfix:after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both
}

.clearfix {
    zoom: 1;
}

.clear {
    clear: both
}

/*图片放大*/
div.imgZoom {
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgZoom img {
    transition: all .4s;
    -webkit-transition: all .4s;
}

.imgZoom:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

/*图片旋转*/
.imgRotate img {
    -webkit-transition: -webkit-transform 2s ease-out;
    -moz-transition: -moz-transform 2s ease-out;
    -o-transition: -o-transform 2s ease-out;
    -ms-transition: -ms-transform 2s ease-out;
}

.imgRotate:hover img {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
}

/* 水平镜像翻转 */
.mirrorRotateLevel img {
    transition: all 1s;
    -webkit-transition: all 1s;
}

.mirrorRotateLevel:hover img {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    /*兼容IE*/
}

/*按钮鼠标经过变暗*/
.wlp-button:hover {
    filter: alpha(opacity=90);
    background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1)) !important;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1)) !important;
}

/*鼠标经过有阴影*/
.wlp-shadow:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3) !important;
}

/*鼠标经过上浮并加阴影*/
.wlp-flow-shadow {
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

.wlp-flow-shadow:hover {
    transform: translate3d(0, -8px, 0);
    -webkit-transform: translate3d(0, -8px, 0);
    -webkit-box-shadow: 0 0px 10px #e9e9e9;
    box-shadow: 0 0px 10px #e9e9e9;
}

/*图片经过遮罩*/
.wlp-filter:hover img {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -webkit-opacity: 0.7;
    opacity: 0.7;
}

img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
    border: none;
}

.flexSB {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flexL {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.flexC {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.flexR {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.w1753 {
    width: 1753px;
    margin: 0 auto;
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.w1300 {
    width: 1300px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

h2 {
    position: relative;
    height: 90px;
    font-size: 48px;
    font-weight: bold;
    color: black;
    margin-bottom: 50px;
    text-transform: uppercase;
}

h2:after {
    content: '';
    position: absolute;
    background: url(../images/icon02.png);
    width: 166px;
    height: 12px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

header {
    width: 100%;
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 2;
}

header.on {
    background: black;
}

header .w1200 {
    align-items: center;
}

header .logo a {
    display: inline-block;
}

header .logo img {
    margin-right: 17px;
}

.nav li {
    margin-left: 27px;
}

.nav li a {
    text-transform: uppercase;
    line-height: 100px;
    position: relative;
}

.nav li a:after {
    position: absolute;
    content: '';
    left: 0;
    width: 0;
    overflow: hidden;
    height: 3px;
    bottom: 0;
    background: #FFFFFF;
    transition: all 0.5s;
}

.nav li a:hover:after {
    width: 100%;
    transition: all 0.5s;
}

.nav li.on a {
    color: #FF0000;
}

.nav li.on a:after {
    width: 100%;
}

.language {
    align-items: center;
}

.search {
    margin: 0 15px;
    cursor: pointer;
}

.search img {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
}

header .menu-toggle {
    display: none;
}

/*语言切换*/
.languageTran {
    position: relative;
}

.languageTran a {
    display: inline-block;
}

.languageCurrent {
    width: 130px;
    line-height: 40px;
    border: 1px solid #E4E4E4;
    background: #FFFFFF;
    position: relative;
    cursor: pointer;
    color: black;
}

.languageCurrent:after {
    content: '';
    position: absolute;
    background: url(../images/icon01.jpg);
    width: 7px;
    height: 5px;
    right: 10px;
    top: 50%;
    margin-top: -2px;
}

.languageCurrent i {
    position: relative;
    top: -2px;
    margin: 0 8px;
}

.sprites {
    display: inline-block;
    width: 21px;
    height: 14px;
    background: url(../images/sprites.png);
    background-repeat: no-repeat;
}

.deutsch {
    background-position: -294px -112px;
}

.languageTran a {
    color: black;
    line-height: 40px;
}

.languageList {
    display: none;
    position: absolute;
    left: 0;
    top: 40px;
    width: 130px;
    background: #FFFFFF;
}

.languageList li span {
    margin: 0 8px;
    display: inline-block;
}

/*banner*/
.banner {
    position: relative;
}

.banner .swiper-container {
    box-shadow: 5px 0 10px 5px rgba(0, 0, 0, 0.6);
}

.banner .swiper-pagination {
    bottom: 30px !important;
}

.banner .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
    background: white;
    opacity: 1;
}

.banner .swiper-pagination-bullet-active {
    background: #FF0000 !important;
}

.bannerTit {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
}

/*workShop*/
.workShop {
    padding: 50px 0;
}

.workShop img {
    width: 100%;
}

.workShop .plant {
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px;
}

/*首页产品*/
.iPro {
    background: #f5f5f5;
    padding: 50px 0;
}

.iProList {
    margin: 0 -25px;
}

.iProList li {
    width: 25%;
    float: left;
    padding: 0 25px;
    margin-bottom: 50px;
}

.iProList li img {
    width: 100%;
}

.iProList li .proTit {
    width: 100%;
    line-height: 45px;
    color: white;
    position: relative;
    margin-top: -45px;
    background: rgba(0, 0, 0, 0.6);
}

.iPro .more, .iNews .more {
    width: 138px;
    line-height: 51px;
    text-align: center;
    background: #ffffff;
    color: #e00505;
    margin: 0 auto;
    font-size: 16px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    transition: all 0.2s;
}

.iPro .more:hover, .iNews .more:hover {
    font-size: 18px;
    transition: all 0.2s;
}

/*首页新闻*/
.iNews {
    padding: 50px 0;
}

.iNewsList {
    margin-bottom: 50px;
}

.iNewsList li {
    width: 30%;
    padding: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.iNewsTit {
    color: #000000;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 32px;
}

.iNewsTime {
    color: rgba(0, 0, 0, .6);
    font-size: 14px;
}

.iNewsContent {
    color: rgba(0, 0, 0, .6);
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 20px;
}

/*footer*/
footer {
    background: #080101;
    padding: 28px 0;
}

.footerTit {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 38px;
    font-weight: bold;
    color: #FFFFFF;
    padding-left: 17px;
    position: relative;
}

.footerTit:after {
    content: '';
    position: absolute;
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background: #FF0000;
    left: 0;
    top: 50%;
    margin-top: -4px;
}

footer ul li {
    padding-top: 60px;
}

footer ul li:nth-child(1) dl dd a {
    font-size: 16px;
    line-height: 42px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-left: 19px;
    position: relative;
}

footer ul li:nth-child(1) dl dd a:after {
    content: '';
    position: absolute;
    background: url(../images/icon02.jpg);
    width: 6px;
    height: 9px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

footer ul li:nth-child(1) dl dd a:hover {
    color: #FF0000;
}

footer ul li:nth-child(2) {
    text-align: center;
    padding-top: 0;
}

footer ul li:nth-child(3) {
    text-align: center;
}

footer ul li:nth-child(2) img {
    display: block;
    margin: 0 auto;
    margin-bottom: 17px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: #080101;
    line-height: 60px;
    text-align: center;
    color: rgba(255, 255, 255, .6);
}

/*搜索框*/
.search_box {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
}

.search_box dl {
    max-width: 900px;
    margin: 200px auto 0;
    border-bottom: #fff solid 1px;
    overflow: hidden;
    padding-top: 200px;
    position: relative;
}

.search_box dl input[type='text'] {
    width: 80%;
    height: 50px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    float: left;
}

.search_box dl input[type='submit'] {
    width: 50px;
    height: 50px;
    float: right;
    background: url(../images/icon15.png) no-repeat center;
    font-size: 0;
    border: none;
    cursor: pointer;
}

.search_box dl .search_off {
    width: 30px;
    height: 30px;
    background: url(../images/icon16.png) no-repeat;
    position: absolute;
    top: 0px;
    right: 0;
    cursor: pointer;
}

.bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}

/*about*/
.banner img {
    min-height: 100px;
}

.white {
    color: white;
}

.about h2 {
    text-align: center;
    width: 245px;
}

.about img {
    object-fit: cover;
    height: 100%;
}

.about > div {
    width: 50%;
}

.aboutContain {
    padding: 40px 45px;
    background: #343434;
}

.aboutTxt {
    font-size: 18px;
    line-height: 32px;
    text-align: justify;
    color: rgba(255, 255, 255, 0.4);
}

.certificate {
    padding: 50px 0;
}

.certificate img {
    border: 4px solid #CCCCCC;
    border-radius: 3px;
}

.aboutData {
    background: url(../images/about01.png) center fixed;
    background-size: cover;
    width: 100%;
    height: 496px;
}

.aboutData .dataWarp {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
}

.dataWarp .data {
    margin: 0 125px;
}

.dataWarp .data p:first-child {
    font-size: 48px;
    font-weight: bold;
    color: white;
}

.dataWarp .data p:last-child {
    color: #A5A3A3;
}

.spirit {
    padding: 50px 0;
}

.spirit ul {
}

.spirit ul li {
    text-align: center;
    width: 224px;
    float: left;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.06);
    padding: 20px 0;
    margin-bottom: 10px;
}

.spirit ul li img {
    border-radius: 100%;
}

.spirit ul li p {
    font-size: 24px;
    line-height: 1;
    margin-top: 20px;
}

.environment {
    padding: 50px 0;
    text-align: center;
}

.environment img {
    width: auto;
}

/*产品*/
.pro {
    padding: 50px 0;
}

.proTabClose {
    display: none;
    font-size: 18px;
    line-height: 32px;
    padding-left: 20px;
    color: whitesmoke;
    position: relative;
}

.proTabClose:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 3px solid #B4B4B4;
    border-right: 3px solid #B4B4B4;
    right: 27px;
    top: 50%;
    margin-top: -5px;
    transform: rotate(45deg);
    transition: all 0.5s;
}

.proTabClose.on:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 3px solid #B4B4B4;
    border-right: 3px solid #B4B4B4;
    right: 27px;
    top: 50%;
    margin-top: -5px;
    transform: rotate(135deg);
    transition: all 0.5s;
}

.proTab ul li p.cur:after {
    content: none !important;
}

.proTab {
    float: left;
    width: 20%;
    background: #3D3D3D;
    padding: 24px 0;
    height: auto;
}

.proTab ul li dl {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.proTab ul li:first-child p {
    border-top: none;
}

.proTab ul li:last-child p {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.proTab ul li p {
    font-size: 18px;
    line-height: 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: whitesmoke;
    padding-left: 27px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.proTab ul li p.on {
    background: rgba(255, 255, 255, 0.2);
}

.proTab ul li p.on:before {
    position: absolute;
    content: '';
    width: 5px;
    height: 40px;
    background: #FF0000;
    left: 0;
    top: 50%;
    margin-top: -20px;
}

.proTab ul li p:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #B4B4B4;
    border-right: 3px solid #B4B4B4;
    right: 27px;
    top: 50%;
    margin-top: -5px;
    transform: rotate(45deg);
    transition: all 0.5s;
}

.proTab ul li p.on:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #B4B4B4;
    border-right: 3px solid #B4B4B4;
    right: 27px;
    top: 50%;
    margin-top: -10px;
    transform: rotate(135deg);
    transition: all 0.5s;
}

.proTab ul li dl {
    display: none;
}

.proTab ul li.show dl {
    display: block;
}

.proTab ul li dl dd a {
    padding-left: 35px;
    line-height: 50px;
}

.proTab ul li dl dd a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.proTab ul li dl dd a.cur2 {
    color: #FF0000;
}

.proList {
    float: right;
    width: 77%;
}

.proList ul {
    margin: 0 -35px;
}

.proList li {
    width: 33.33%;
    float: left;
    padding: 0 35px;
    margin-bottom: 50px;
}

.proList li img {
  height: 100%;
  object-fit: cover;
}
.proList li div.imgZoom{
  height: 270px;
}

.proList li .proTit {
    width: 100%;
    line-height: 45px;
    color: white;
    position: relative;
    margin-top: -45px;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.orientation {
    line-height: 45px;
    background: #EEEEEE;
    padding-left: 13px;
}

.orientation a {
    color: black;
    display: inline-block;
    margin: 0 10px;
}

.orientation a:hover {
    color: #FF0000;
}

.orientation a img {
    position: relative;
    top: -2px;
}

.proDetail {
    text-align: center;
    margin-top: 45px;
}
.proDetail img{
    width: 600px;
}
.proDetail table{
    width: 100%!important;
    margin: 0 auto;
    border: 1px solid #E6E6E6!important;
    line-height: 36px;
    border-collapse: collapse;
}
.proDetail table td{
    border: 1px solid #E6E6E6!important;

}
/* .proDetail table td p{
    text-align: center;
} */
/*新闻*/
.news {
    padding: 50px 0;
}

.news li {
    padding: 25px;
    cursor: pointer;
    margin-bottom: 40px;
}

.news li:hover {
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
}

.newsImg {
    float: left;
}

.newsContain {
    padding-left: 35px;
    float: left;
    width: 790px;
    padding-top: 30px;
}

.newsTit a {
    color: black;
    font-size: 20px;
    line-height: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.newsTime {
    font-size: 14px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.6);
}

.newsTxt a {
    margin-top: 15px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.newsTxt a:hover, .newsTit a:hover {
    color: #FF0000;
}

/*分页*/
.page {
    text-align: center;
    margin: 0 auto;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.pager {
    max-width: 800px;
    text-align: center;
    margin-bottom: 30px;
    display: inline-block;
}

.pager a {
    cursor: pointer;
}

.pager a, .pager span {
    /* 按钮内数字 */
    width: 45px;
    height: 40px;
    border: 1px solid #EBEBEB;
    margin-left: -1px;
    color: #8a8a8a;
    display: inline-block;
    line-height: 40px;
    float: left;
    font-size: 15px;
    text-decoration: none;
    margin: 0 2px;
    border-radius: 6px;
}

.pager a:hover, .pager span:hover {
    border-color: #3897cd;
    color: #3897cd;
    position: relative;
    z-index: 1;
}

.pager span.current {
    background-color: #222A35;
    color: #fff;
    border-color: #EBEBEB;
    position: relative;
    z-index: 1;
}

.pager .pg-first, .pager .pg-prev, .pager .pg-next, .pager .pg-last {
    background: url(../images/page_bg.png) 8px 7px no-repeat;
}

.pager .pg-first:hover, .pager .pg-prev:hover, .pager .pg-next:hover, .pager .pg-last:hover {
    background: url(../images/page_bg_hover.png) 8px 7px no-repeat;
}

.pager .pg-prev, .pager .pg-prev:hover {
    background-position: 7px -21px;
}

.pager .pg-next, .pager .pg-next:hover {
    background-position: -21px -21px;
}

.pager .pg-last, .pager .pg-last:hover {
    background-position: -21px 7px;
}

.pager .pg-prev[disabled='true'], .pager .pg-prev[disabled='true']:hover {
    cursor: default;
    background-image: url(../images/page_bg.png);
}

.pager .pg-next[disabled='true'], .pager .pg-next[disabled='true']:hover {
    cursor: default;
    background-image: url(../images/page_bg.png);
}

.pager .pg-prev[disabled='true'], .pager .pg-next[disabled='true'] {
    border-color: #eeeeee;
}

.pager span.els {
    border-color: transparent;
}

.pagerHtmlWrap {
    width: 800px;
    margin: 30px auto;
}

.pagerHtmlWrap .cc_cells {
    width: 100%;
    height: 35px;
    padding: 5px 0;
    border-bottom: 1px #cccccc solid;
}

.pagerHtmlWrap .cc_cells a {
    color: #454545;
    font-size: 14px;
    line-height: 35px;
    text-decoration: none;
}

.pagerHtmlWrap .cc_cells a span {
    display: inline-block;
    width: 25%;
    text-align: left;
    margin: 0;
}

/*新闻详情*/
.newsDetail {
    padding: 30px 0;
}

.newsDetailT {
    margin-bottom: 20px;
}

.newsDetailTit {
    font-size: 20px;
    margin-bottom: 15px;
    color: black;
}

.newsDetailTime {
    font-size: 14px;
}

.newsDetailContain {
    padding: 20px 0;
    border-top: 1px dashed #B2B2B2;
    border-bottom: 1px dashed #B2B2B2;
}

.newsDetailTxt {
    font-size: 16px;
    line-height: 30px;
    text-indent: 2em;
}

.newsDetailContain img {
    display: block;
    margin: 20px auto;
}

.newsDetailPage {
    color: black;
    font-size: 18px;
    line-height: 30px;
    padding-bottom: 50px;
}

.newsDetailPage a {
    margin-bottom: 10px;
    display: inline-block;
    color: black;
    font-size: 18px;
    line-height: 30px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.newsDetailPage a:hover {
    color: #FF0000;
}

/*厂房*/
.workshop {
    padding: 50px 0;
}

.wrapper {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background: rgba(52, 52, 52, 0.8) no-repeat fixed center;
    background-size: 50%;
}

.workshop ul:after {
    content: '';
    width: 354px;
}

.workshop li {
    width: 354px;
    margin-bottom: 50px;
}

.workshop li img {
    width: 100%;
}

.workshop li p {
    text-align: center;
    line-height: 40px;
    text-transform: uppercase;
}

/*联系方式*/
.contactWay {
    padding: 50px 0;
}

.contactWay li:hover p {
    color: #0281B6;
}

.contactTit {
    font-size: 20px;
    color: black;
}

.map {
    height: 500px;
    margin: 20px auto;
}

.address {
    margin-bottom: 50px;
    color: black;
}

/*===/分页=============================*/
.fenye {
    text-align: center;
    font-size: 15px;
    width: 100%;
    height: 50px;
    margin: 20px 0 50px;
}

.fenye .prev, .fenye .next {
    line-height: 1;
    color: #8a8a8a;
    padding: 8px 14px;
    margin-right: 8px;
    display: inline;
    font-family: "宋体";
    font-size: 19px;
    border: #EBEBEB solid 1px;
    border-radius: 6px;
}

.fenye a {
    line-height: 1;
    color: #8a8a8a;
    padding: 8px 14px;
    margin-right: 8px;
    display: inline;
    border: #EBEBEB solid 1px;
    border-radius: 6px;
}

.fenye a:hover {
    color: #fff;
    background: #aaa;
}

.fenye a.current {
    line-height: 1;
    color: #fff;
    background: #222A35;
    padding: 8px 14px;
    margin-right: 8px;
    border: #222A35 solid 1px;
}


@media (max-width: 1753px) {
    .w1753 {
        width: 100%;
    }
}

@media (max-width: 1300px) {
    .w1300 {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .w1200 {
        width: 100%;
        padding: 0 10px;
    }

    .proTabClose {
        display: block;
    }

    .aboutBanner {
        height: 60px !important;
    }

    header {
        height: 60px;
        line-height: 60px;
    }

    .banner img {
        min-width: 100%;
        height: 250px;
        object-fit: cover;
        min-height: 60px;
    }

    .logo a img {
        height: 55px;
        position: relative;
        top: -4px;
        left: 15px;
    }

    .logo a:last-child {
        display: none;
    }

    .search img {
        border: none;
    }

    .language {
        position: relative;
        right: 55px;
    }

    .nav {
        background: #000000;
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        height: 100vh;
    }

    header .menu-toggle {
        width: 60px;
        height: 60px;
        position: absolute;
        right: 0;
        top: 0;
        float: right;
        z-index: 99999;
        display: block;
    }

    header .menu-toggle span {
        width: 35px;
        height: 2px;
        background: #ffffff;
        display: block;
        position: relative;
        opacity: 1;
        transition: all 300ms;
        margin: 30px 0 0 12px;
    }

    header .menu-toggle span:before {
        content: "";
        width: 35px;
        height: 2px;
        background: #ffffff;
        display: block;
        position: absolute;
        left: 0;
        top: -10px;
        transition: all 300ms;
    }

    header .menu-toggle span:after {
        content: "";
        width: 35px;
        height: 2px;
        background: #ffffff;
        display: block;
        position: absolute;
        left: 0;
        top: 10px;
        transition: all 300ms;
    }

    header .menu-toggle.cur span {
        background-color: transparent;
    }

    header .menu-toggle.cur span:before {
        transform: rotate(45deg);
        top: 0;
    }

    header .menu-toggle.cur span:after {
        transform: rotate(-45deg);
        top: 0;
    }

    footer {
        display: none;
    }

    .about > div {
        width: 100%;
    }

    .proTab {
        margin-bottom: 20px;
        padding: 10px 0;
    }

    .pro {
        padding: 20px 0;
    }

    .proTab, .proList {
        width: 100%;
    }

    .proTab ul {
        display: none;
    }

    .iProList, .proList {
        padding: 0 10px;
    }

    .iProList, .proList ul {
        margin: 0 -5px;
    }

    .iProList li .proTit, .proList li .proTit {
        line-height: 20px;
        margin-top: -20px;
        font-size: 12px;
    }

    .iProList li, .proList li {
        padding: 0 5px;
        margin-bottom: 10px;
    }

    .orientation {
        margin: 0 -10px;
        position: relative;
        padding-left: 0;
    }

    .orientation a {
        margin: 0 3px;
    }

    .newsContain {
        width: 100%;
        padding-left: 0;
        padding-top: 10px;
    }

    .newsImg {
        width: 100%;
    }

    .news li {
        margin-bottom: 0;
    }

    .workshop, .contactWay {
        padding: 20px 10px !important;
    }

    .workshop li {
        margin-bottom: 20px;
    }

    .workshop li p, .workShop .plant {
        font-size: 12px;
    }

    .nav li a {
        line-height: 60px !important;
    }

    .nav li a:hover:after, .nav li.on a:after {
        width: 0;
    }

    .about h2 {
        margin-bottom: 20px;
        width: 100%;
    }

    .aboutContain {
        padding: 10px;
    }

    .aboutTxt {
        font-size: 12px;
    }

    .dataWarp .data {
        width: 100%;
        margin: 0 auto;
    }

    .iNewsList {
        margin-bottom: 20px;
    }

    .banner .swiper-pagination {
        bottom: 2px !important;
    }

    .banner .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 768px) {
    .iProList li, .proList li, .contactWay li {
        width: 50%;
    }

    .contactWay li {
        margin-bottom: 10px;
    }

    .iNewsList li {
        width: 100%;
        margin-bottom: 20px;
    }

    .spirit ul li {
        margin: 0 auto 10px;
    }

    h2 {
        font-size: 24px;
        height: 65px;
    }

    .workshop li {
        width: 49%;
    }

    .proDetail img{
        width: auto;
    }

  .proList li div.imgZoom{
    height: 140px;
  }
}
