/*初始化代码*/

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

body {
    background: #fff;
    font-size: 14px;
    overflow: hidden;
}

td,
th,
caption {
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #e6213a;
}

img {
    border: none;
    vertical-align: middle;
}

ol,
ul,
li {
    list-style: none;
}

input,
textarea,
select,
button {
    outline: none;
}

table {
    margin: 0 0 30px;
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    border: 1px solid #e2e1e1;
    padding: 15px;
    padding: 7px 18px;
}

table th img,
table td img {
    max-width: 100%;
}

table thead {
    background: #eee;
}

table thead th,
table thead td {
    text-transform: uppercase;
    font-weight: 900;
    color: #111;
}

html {
    overflow-y: scroll;
}

*::selection {
    background: #e6213a;
    color: #fff;
}

*::-moz-selection {
    background: #e6213a;
    color: #fff;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    *zoom: 1;
}

.w1400 {
    max-width: 1400px;
    margin: 0 auto;
}

.f_l {
    float: left;
}

.f_r {
    float: right;
}


/*初始化代码 end*/


/* m-title */

.m-title {
    text-align: center;
    margin-bottom: 4%;
}

.m-title h3 {
    display: inline-block;
    font-size: 40px;
    font-weight: bold;
    color: #333;
}

.m-title h3::before,
.m-title h3::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 20px;
    background-color: #e6213a;
    margin: 0 10px;
    transform: skewX(-20deg);
}

.m-title span {
    display: block;
    font-size: 18px;
    line-height: 40px;
    font-weight: 300;
    color: #666;
}


/* m-title end */


/* m-btn */

.m-btn {
    display: block;
    position: relative;
    width: 250px;
    line-height: 60px;
    text-align: center;
    border: 1px solid #e6213a;
    border-radius: 30px;
    margin: 0 auto;
    font-size: 18px;
    text-indent: 2em;
}

.m-btn::before {
    content: '';
    position: absolute;
    display: block;
    width: 52px;
    height: 52px;
    background: url(../images/more-arr.png) right center no-repeat, linear-gradient(to left, #71c73d, #5d9c39);
    border-radius: 26px;
    top: 4px;
    left: 4px;
    transition: all 0.3s;
}

.m-btn:hover::before {
    background: url(../images/more-arr.png) left center no-repeat, linear-gradient(to left, #71c73d, #5d9c39);
}


/* m-btn end */


/* header */

.head-logo {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    z-index: 999;
    background-color: #fff;
    width: 100%;
}

.head-logo.xg {
    position: fixed;
}

.head-logo .logo-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1700px;
    margin: 8px auto;
}

.head-logo .logo-con #logo>a {
    display: flex;
    align-items: center;
    margin-left: 2%;
}

.head-logo .logo-con #logo .logo-img {
    width: 450px;
}

.head-logo .logo-con #logo img {
    max-width: 100%;
}

.head-logo .logo-con #logo strong {
    font-size: 26px;
    line-height: 44px;
    font-weight: bold;
    color: #333;
}

.head-logo .logo-con #logo p {
    font-size: 18px;
}

.head-logo .logo-con .head-tel {
    background: url(../images/tel-btn.png) left center no-repeat;
    background-size: 52px;
    padding-left: 64px;
}

.head-logo .logo-con .head-tel span {
    font-size: 14px;
    color: #333;
}

.head-logo .logo-con .head-tel p {
    font-size: 28px;
    font-weight: bold;
    font-family: Impact;
    color: #e6213a;
    line-height: 36px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 55%;
    transition: all 0.1s;
    z-index: 9999;
}

header .nav {
    width: 82%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

header .nav>li {
    width: 14.2%;
    line-height: 70px;
}

header .nav>li {
    position: relative;
    z-index: 99999;
}

header .nav>li::after {
    content: '';
    position: absolute;
    top: 40%;
    right: 0;
    display: block;
    width: 1px;
    height: 15px;
    background-color: #666;
}

header .nav>li:last-child:after {
    display: none;
}

header .nav>li>a {
    display: block;
    text-align: center;
    color: #333;
    font-size: 18px;
}

header .nav>li>dl {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    top: 102px;
    width: 150px;
    background-color: #fff;
    box-shadow: 0 0 5px #eee;
    transition: all 0.3s;
}

header .nav>li>dl a {
    display: block;
    text-align: center;
    font-size: 15px;
    line-height: 50px;
    transition: all 0.3s;
}

header .nav>li.aci>a,
header .nav>li:hover>a {
    font-weight: bold;
}

header .nav>li:hover>dl {
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    top: 70px;
}

header .nav>li>dl a:hover {
    background-color: #e6213a;
    color: #fff;
}

header.xg {
    background-color: rgba(255, 255, 255, .95);
    box-shadow: 0px 2px 3px #ddd;
}

header:hover .nav>li>a,
header.xg .nav>li>a {
    color: #333;
}


/* 移动端按钮 */

header .menu {
    display: none;
    cursor: pointer;
    height: 30px;
    width: 30px;
    position: relative;
}

header .menu .line {
    display: block;
    width: 30px;
    height: 1px;
    background: #333;
    position: absolute;
    right: 0;
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
}

header .menu .line1 {
    top: 5px;
}

header .menu .line2 {
    top: 15px;
}

header .menu .line3 {
    top: 25px;
}

header .active .line1 {
    transform: rotate(45deg) translate(2px, 12px);
    -webkit-transform: rotate(45deg) translate(2px, 12px);
    -moz-transform: rotate(45deg) translate(2px, 12px);
}

header .active .line2 {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    opacity: 0;
}

header .active .line3 {
    transform: rotate(-45deg) translate(2px, -12px);
    -webkit-transform: rotate(-45deg) translate(2px, -12px);
    -moz-transform: rotate(-45deg) translate(2px, -12px);
}

header.xg .menu .line,
header:hover .menu .line {
    background-color: #333;
}


/* 移动端按钮 end */


/* 移动端导航*/

.navbar {
    display: none;
    padding: 15px 22px 0px;
    background: #fff;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    top: 67px;
    z-index: 998;
    box-sizing: border-box;
}

.navbar .a-wrap {
    height: 86%;
    overflow: auto;
}

.navbar .a-wrap li {
    display: block;
    width: 100%;
    line-height: 46px;
    color: #666;
    border-bottom: 1px solid #eee;
    transition: width ease 0.4s;
    -moz-transition: width ease 0.4s;
    -webkit-transition: width ease 0.4s;
    font-size: 15px;
    background: url(../images/ico15.gif) right 18px no-repeat;
}

.navbar .a-wrap li>a {
    display: inline-block;
    line-height: 46px;
}

.navbar .a-wrap li:last-child {
    border-bottom: none;
}

.navbar .a-wrap li>dl {
    display: none;
}

.navbar .active li {
    width: 40%;
}

.navbar .active li:nth-child(1) {
    transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
}

.navbar .active li:nth-child(2) {
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
}

.navbar .active li:nth-child(3) {
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
}

.navbar .active li:nth-child(4) {
    transition-delay: 0.4s;
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
}

.navbar .navbar-lang {
    text-align: center;
    margin-top: 8%;
}

.navbar .navbar-lang>a {
    color: #666;
    font-size: 15px;
}


/* 移动端导航 end */

header .lang-btn {
    width: 18%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

header .lang-btn a {
    width: 26%;
    font-size: 18px;
    color: #666;
}

header .lang-btn .cn-btn {
    color: #e6213a;
}

header .lang-btn .search-btn {
    display: block;
    width: 20px;
    height: 20px;
    font-size: 0;
    background: url(../images/sear-btn.png) center no-repeat;
    background-size: 100%;
}


/* 弹出搜索窗 */

.tc {
    transition: all ease 300ms;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc.act {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.tc-box {
    width: 60rem;
    padding-top: 40px;
    max-width: 80%;
    margin: 0 auto;
    margin-top: -80px;
    box-sizing: border-box;
    /* background:#fff; */
    display: block;
    position: relative;
    z-index: 1;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    overflow: hidden;
}

.tc.act .tc-box {
    -webkit-animation-name: anim-open-2;
    animation-name: anim-open-2;
    transform: scale(1);
}

.close {
    position: absolute;
    cursor: pointer;
    color: #e13a39;
    font-size: 30px;
    right: 30px;
    top: 30px;
}

.tc_bg {
    height: 100%;
    background: rgba(0, 0, 0, .85);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.tc_txt {
    height: 470px;
    overflow-y: auto;
    padding-right: 30px;
}


/*弹窗内容样式*/

.tc-box form {
    position: relative;
    border-bottom: 2px solid #eee;
    height: 4.25rem;
    padding-right: 20px;
    position: relative;
}

.tc-box .tc_fdj {
    position: absolute;
    left: 20px;
    display: block;
    height: 4.25rem;
    line-height: 4.25rem;
}

.tc-box .tc_fdj img {
    width: 1.3rem;
}

.tc-box form label {
    text-align: left;
    display: block;
    position: absolute;
    bottom: 0;
    height: 4.25rem;
    line-height: 4.25rem;
    font-size: 1.6rem;
    color: #999;
    pointer-events: none;
    margin-left: 20px;
    transition: .3s;
}

.tc-box form label.act {
    font-size: 16px;
    bottom: 3rem;
    line-height: 3rem;
    height: 3rem;
}

.tc-box #keyword {
    width: 80%;
    height: 4.25rem;
    padding: 0 20px;
    font-size: 1.6rem;
    color: #999;
    box-shadow: none;
    -webkit-appearance: none;
    float: left;
    border-right: 0;
    background: none;
    border: 0;
}

.tc-box .btn_blue {
    width: 40px;
    height: 4.25rem;
    border: 0;
    line-height: 4.25rem;
    background: url(../images/tel-ser.png) center center no-repeat;
    background-size: 40px;
    font-size: 1.125rem;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    float: right;
}

.tc-box .btn_blue.fr {
    background: #e9edef;
    color: #4e4f53;
}


/* 弹出搜索框 end */


/* header end */


/* banner */

.index-banner {
    width: 100%;
    position: relative;
}

.index-banner .swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.index-banner .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 .swiper-slide img {
    max-width: 100%;
}

.index-banner .swiper-container .swiper-button-next,
.index-banner .swiper-container .swiper-button-prev {
    z-index: 998;
    position: absolute;
    width: 50px !important;
    height: 50px !important;
    top: 50%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 38px;
    background-position: 50% 50%;
    -webkit-transition: all ease .35s;
    transition: all ease .35s;
}

.index-banner .swiper-container .swiper-button-prev {
    left: 3%;
    background-image: url(../images/arrow-left.png);
}

.index-banner .swiper-container .swiper-button-next {
    left: auto;
    right: 3%;
    background-image: url(../images/arrow-right.png);
}

.index-banner .swiper-container .swiper-button-next:hover,
.index-banner .swiper-container .swiper-button-prev:hover {
    background-color: rgba(230, 33, 58, .8);
}

.thumbs-list {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background-color: #e6213a;
}

.thumbs-list .thumbs-title {
    width: 12%;
    background-color: #e6213a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.thumbs-list .thumbs-title>h2 {
    font-size: 28px;
    font-weight: bold;
}

.thumbs-list .thumbs-next {
    width: 4%;
    background: #e6213a url(../images/thumbs-next.png) center no-repeat;
    background-size: 40px;
    cursor: pointer;
}

#thumbs {
    width: 84%!important;
    height: 110px!important;
}

#thumbs .swiper-slide {
    height: 100%;
    cursor: pointer;
    background-size: cover!important;
}

#thumbs .swiper-slide-thumb-active {}


/* banner end */


/* in-btn */

.in-btn ul {
    display: flex;
    flex-wrap: wrap;
}

.in-btn ul>li {
    width: 25%;
    text-align: center;
    padding: 1% 0;
}

.in-btn ul>li:nth-child(1) {
    background: url(../images/inb-bg1.jpg) center no-repeat;
    background-size: cover;
}

.in-btn ul>li:nth-child(2) {
    background: url(../images/inb-bg2.jpg) center no-repeat;
    background-size: cover;
}

.in-btn ul>li:nth-child(3) {
    background: url(../images/inb-bg3.jpg) center no-repeat;
    background-size: cover;
}

.in-btn ul>li:nth-child(4) {
    background: url(../images/inb-bg4.jpg) center no-repeat;
    background-size: cover;
}

.in-btn ul>li a {
    display: block;
    color: #fff;
}

.in-btn ul>li img {
    width: 35px;
    margin-bottom: 2%;
    transition: all 0.3s;
}

.in-btn ul>li h3 {
    font-size: 24px;
}

.in-btn ul>li p {
    color: #999;
}

.in-btn ul>li:hover img {
    transform: rotateY(180deg);
}


/* in-btn end */


/* index-pro */

.index-pro {
    margin: 4% auto;
}

.pro-sli {
    position: relative;
    overflow: hidden;
}

.swiper-container-prosli {
    position: relative;
}

.swiper-container-prosli .swiper-slide {
    position: relative;
}

.swiper-container-prosli .swiper-slide>a {
    display: flex;
    flex-wrap: wrap;
}

.swiper-container-prosli .swiper-slide img {
    max-width: 50%;
}

.swiper-container-prosli .swiper-slide .prosli-text {
    position: absolute;
    top: 10%;
    left: 5%;
}

.swiper-container-prosli .swiper-slide .prosli-text>i {
    display: block;
    width: 35px;
    height: 2px;
    background-color: #e6213a;
}

.swiper-container-prosli .swiper-slide .prosli-text>h3 {
    font-size: 36px;
    line-height: 60px;
    margin-bottom: 3%;
    font-weight: bold;
    color: #fff;
}

.swiper-container-prosli .swiper-slide .prosli-text>p {
    font-size: 16px;
    color: #fff;
    line-height: 36px;
}

.swiper-container-prosli .swiper-slide .prosli-text>button {
    display: block;
    font-size: 16px;
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
    padding: 1% 5%;
    margin-top: 50%;
}

.swiper-container-prosli .swiper-button-next,
.swiper-container-prosli .swiper-button-prev {
    z-index: 998;
    position: absolute;
    width: 34px !important;
    height: 34px !important;
    top: 50%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: 50% 50%;
    -webkit-transition: all ease .35s;
    transition: all ease .35s;
}

.swiper-container-prosli .swiper-button-prev {
    left: 5%;
    background-image: url(../images/arrow-left.png);
}

.swiper-container-prosli .swiper-button-next {
    left: auto;
    left: 8%;
    background-image: url(../images/arrow-right.png);
}

.mysw-btn {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
}

.mysw-btn .swiper-wrapper {
    height: 100%;
}

.mysw-btn .swiper-wrapper .swiper-slide {
    height: 25%!important;
}

.mysw-btn .swiper-wrapper .swiper-slide>a {
    position: relative;
    width: 90%;
    height: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    color: #888;
    border-bottom: 1px #666 solid;
}

.mysw-btn .swiper-wrapper .swiper-slide>a>span {
    font-size: 58px;
    font-family: Impact;
    font-weight: bold;
}

.mysw-btn .swiper-wrapper .swiper-slide>a>h3 {
    color: #fff;
    font-size: 26px;
    margin-top: 2%;
}

.mysw-btn .swiper-wrapper .swiper-slide>a>p {
    font-size: 16px;
    text-transform: uppercase;
}

.mysw-btn .swiper-wrapper .swiper-slide>a:hover {
    background-color: rgba(230, 33, 58, .2);
}

.mysw-btn .swiper-wrapper .swiper-slide>a>i {
    z-index: 998;
    position: absolute;
    width: 25px !important;
    height: 25px !important;
    top: 50%;
    border: 2px solid #fff;
    border-radius: 50%;
    right: 5%;
    bottom: 5%;
    background-image: url(../images/arrow-right.png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 50% 50%;
    -webkit-transition: all ease .35s;
    transition: all ease .35s;
}


/* index-pro end */


/* 车间设备 */

.index-eq {
    margin-bottom: 4%;
}

.ineq-li {
    border-top: 1px solid #ccc;
}

.ineq-li ul {
    display: flex;
    justify-content: space-between;
}

.ineq-li ul>li::before {
    content: '';
    display: block;
    width: 0%;
    height: 3px;
    background-color: #e6213a;
    margin-top: -2px;
    transition: all 0.3s;
}

.ineq-li ul>li a {
    display: block;
    color: #333;
    font-size: 18px;
    line-height: 70px;
}

.ineq-li ul>li.cur a,
.ineq-li ul>li:hover a {
    font-weight: bold;
}

.ineq-li ul>li.cur::before,
.ineq-li ul>li:hover::before {
    width: 100%;
}

.ineq-img {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ineq-img .ineq-ile,
.ineq-img .ineq-iri {
    width: 50%;
}

.ineq-img .ineq-iri {
    position: relative;
}

.ineq-img .ineq-ile>img,
.ineq-img .ineq-iri>img {
    width: 100%;
}

.ineq-img .ineq-iri>img {
    opacity: 0.2;
}

.ineq-img .ineq-ritxt {
    width: 84%;
    padding: 0 8%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.ineq-img .ineq-ritxt i {
    display: block;
    font-style: normal;
    font-style: 16px;
}

.ineq-img .ineq-ritxt h3 {
    position: relative;
    display: inline-block;
    font-size: 44px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4%;
}

.ineq-img .ineq-ritxt h3>span {
    position: relative;
    z-index: 9;
}

.ineq-img .ineq-ritxt h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 10px;
    background-color: #e6213a;
}

.ineq-img .ineq-ritxt>span {
    display: block;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 4%;
}

.ineq-img .ineq-ritxt>p {
    display: block;
    font-size: 16px;
}

.ineq-img .ineq-ritxt ul {
    display: flex;
    margin-top: 6%;
}

.ineq-img .ineq-ritxt li {
    margin-right: 4%;
    text-align: center;
}

.ineq-img .ineq-ritxt li>img {
    max-width: 90px;
}


/* 车间设备 end */


/* 合作品牌 */

.index-brand .m-title {
    margin-bottom: 0;
}

.index-brand img {
    max-width: 100%;
}


/* 合作品牌 end */


/* about */

.index-about {
    margin-top: 4%;
    background: url(../images/inab.jpg) bottom center no-repeat;
    background-size: cover;
}

.inab-c {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 4% 0 10%;
}

.inab-c .inab-l {
    width: 38%;
    margin-top: 4%;
}

.inab-c .inab-l h3 {
    font-size: 60px;
    font-weight: bold;
    color: #e6213a;
}

.inab-c .inab-l span {
    display: block;
    font-size: 38px;
    color: #333;
    margin: 4% 0;
}

.inab-c .inab-l p {
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 4%;
}

.inab-c .inab-l .inab-btn {
    display: flex;
    width: 50%;
    line-height: 42px;
    background-color: #eee;
}

.inab-c .inab-l .inab-btn a {
    display: block;
    width: 50%;
    text-align: center;
}

.inab-c .inab-l .inab-btn a:first-child {
    background-color: #e6213a;
    color: #fff;
}

.inab-c .inab-r {
    width: 50%;
}

.inab-c .inab-r>img {
    max-width: 100%;
}

.inab-c .about-info {
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 60%;
    box-shadow: 0 0 5px #eee;
}

.inab-c .about-info>ul {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    margin: 0 auto;
    padding: 4%;
    width: 100%;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.inab-c .about-info>ul>li {
    color: #333;
    text-align: center;
}

.inab-c .about-info>ul>li.abin-line {
    width: 1px;
    height: 90px;
    background-color: #eee;
}

.inab-c .about-info>ul>li span {
    font-size: 18px;
}

.inab-c .about-info>ul>li p {
    font-size: 18px;
}

.inab-c .about-info>ul>li i {
    font-size: 60px;
    font-weight: bold;
    font-style: normal;
}


/* about end */


/* footer */

footer {
    background: #333 url(../images/foot-dt.png) center no-repeat;
    background-size: cover;
    overflow: hidden;
}

footer .foot-t {
    display: flex;
    justify-content: space-between;
    margin: 4vh auto;
    color: #fff;
}

footer .foot-t .foot-menu h3 {
    font-size: 18px;
    font-weight: bold;
}

footer .foot-t .foot-nav {
    width: 60%;
}

footer .foot-t .foot-nav>ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

footer .foot-t .foot-nav>ul>li {
    position: relative;
    width: 14.2%;
    text-align: center;
}

footer .foot-t .foot-nav>ul>li::after {
    content: '/';
    color: #888;
    position: absolute;
    right: 0;
    top: 2px;
}

footer .foot-t .foot-nav>ul>li:last-child::after {
    display: none;
}

footer .foot-t .foot-nav>ul>li>a {
    color: #fff;
    font-size: 18px;
}

footer .foot-b {
    border-top: 1px solid #595959;
    border-bottom: 1px solid #595959;
}

footer .foot-b-con {
    display: flex;
    justify-content: space-between;
    margin-top: 5vh;
    margin-bottom: 5vh;
}

footer .foot-b-logo img {
    max-width: 215px;
    filter: grayscale(100%) brightness(10);
}

footer .foot-b-l {
    display: flex;
    color: #ccc;
    line-height: 36px;
}

footer .foot-b-l .ftbl-lx:first-child {
    margin-right: 30px;
}

footer .foot-b-l h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

footer .foot-b-con .foot-b-r {
    display: flex;
    align-items: center;
}

footer .foot-b-con .foot-b-r .foot-er {
    text-align: center;
    color: #ccc;
    line-height: 34px;
}

footer .foot-b-con .foot-b-r .foot-er:last-child {
    margin-left: 30px;
}

footer .foot-b-con .foot-b-r .foot-er>img {
    width: 85px;
}

.foot-copy,
.foot-copy a {
    color: #ccc;
}

.foot-copy {
    text-align: center;
    line-height: 36px;
    margin: 2% 0;
}


/* footer end */


/* 手机底部联系 */

.box9026_-2034 {
    display: none;
    font: 14px/1.43 'Microsoft Yahei', Arial, sans-serif;
    color: #666;
    text-align: center;
    padding: 9px 0;
    border-top: 1px solid #e3e3e3;
    width: 100%;
    background-color: #fff;
    font-size: 12px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
}

.box9026_-2034 * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.box9026_-2034 a {
    text-decoration: none;
    color: inherit;
}

.box9026_-2034 ul,
.box9026_-2034 li {
    list-style: none;
}

.box9026_-2034 ul {
    overflow: hidden;
}

.box9026_-2034 .nav-item {
    float: left;
    width: 25%;
}

.box9026_-2034 .nav-item .img-box {
    width: 40px;
    height: 22px;
    margin: 0 auto;
    background: no-repeat 50% 50% / auto 22px;
}

.box9026_-2034 .nav-item .icon-home {
    background-image: url(../images/sy1.png);
}

.box9026_-2034 .nav-item .icon-tel {
    background-image: url(../images/dh.png);
}

.box9026_-2034 .nav-item .icon-gotop {
    background-image: url(../images/gotop.png);
}

.box9026_-2034 .nav-item .icon-address {
    background-image: url(../images/dz.png);
}

.box9026_-2034 .link-name {
    padding-top: 6px;
}


/* 手机底部联系 end*/


/* 响应式 ******************************** */

@media (max-width: 1400px) {
    .w1400 {
        max-width: 1200px;
    }
    /* header */
    .head-logo .logo-con #logo .logo-img {
        width: 350px;
    }
    header {
        width: 60%;
    }
    header .nav>li>a {
        font-size: 16px;
    }
    /* header end */
    /* 关于我们 */
    .inab-c {
        padding: 4% 0 14%;
    }
    .inab-c .about-info>ul>li i {
        font-size: 46px;
    }
    /* 关于我们 end */
}

@media (max-width: 1200px) {
    .w1400 {
        max-width: 100%;
        margin: 0 2%;
    }
    .m-title h3 {
        font-size: 34px;
    }
    /* header */
    .head-logo .logo-con #logo .logo-img {
        width: 300px;
    }
    header {
        width: 66%;
    }
    /* header end*/
    /* in-btn */
    .in-btn ul>li h3 {
        font-size: 20px;
    }
    /* in-btn end */
    /* index-pro */
    .swiper-container-prosli .swiper-button-next,
    .swiper-container-prosli .swiper-button-prev {
        top: 65%;
    }
    .swiper-container-prosli .swiper-button-next {
        left: 10%;
    }
    .swiper-container-prosli .swiper-slide .prosli-text>h3 {
        font-size: 30px;
    }
    .swiper-container-prosli .swiper-slide .prosli-text>button {
        margin-top: 34%;
    }
    .mysw-btn .swiper-wrapper .swiper-slide>a>span {
        font-size: 45px;
    }
    .mysw-btn .swiper-wrapper .swiper-slide>a>h3 {
        font-size: 22px;
    }
    .mysw-btn .swiper-wrapper .swiper-slide>a>p {
        font-size: 13px;
    }
    /* index-pro end */
    /* 车间设备 */
    .ineq-li ul {
        justify-content: space-around;
    }
    .ineq-li ul>li a {
        font-size: 16px;
    }
    .ineq-img .ineq-ritxt h3 {
        font-size: 36px;
    }
    /* 车间设备 end*/
    /* 关于我们 */
    .inab-c .inab-l h3 {
        font-size: 44px;
    }
    .inab-c .inab-l span {
        font-size: 30px;
        margin: 2% 0;
    }
    /* 关于我们 end */
    /* 底部 */
    footer .foot-t {
        margin: 2%;
    }
    footer .foot-t .foot-nav>ul>li>a {
        font-size: 16px;
    }
    footer .foot-b-con {
        flex-wrap: wrap;
    }
    footer .foot-b-logo {
        width: 100%;
        margin-bottom: 2%;
    }
    footer .foot-b-logo img {
        max-width: 160px;
    }
    /* 底部 end */
}

@media (max-width: 996px) {
    .m-title span {
        font-size: 15px;
    }
    /* header */
    .head-logo .logo-con #logo .logo-img {
        width: 280px;
    }
    header .nav>li>a {
        font-size: 15px;
    }
    header .nav>li>dl {
        width: 160%;
    }
    header .lang-btn a {
        font-size: 16px;
    }
    /* header end*/
    /* in-btn */
    .in-btn ul>li h3 {
        font-size: 18px;
    }
    /* in-btn end */
    /* 产业布局 */
    .swiper-container-prosli .swiper-slide .prosli-text>p {
        font-size: 14px;
        line-height: 30px;
    }
    .swiper-container-prosli .swiper-slide .prosli-text>button {
        margin-top: 25%;
    }
    .mysw-btn .swiper-wrapper .swiper-slide>a>span {
        font-size: 34px;
    }
    .mysw-btn .swiper-wrapper .swiper-slide>a>h3 {
        font-size: 18px;
    }
    /* 产业布局 end */
    /* 关于我们 */
    .inab-c .inab-l {
        margin-top: 0;
    }
    .inab-c .inab-l h3 {
        font-size: 36px;
    }
    .inab-c .inab-l span {
        font-size: 24px;
    }
    .inab-c .inab-l p {
        font-size: 15px;
        line-height: 30px;
    }
    .inab-c .about-info>ul>li i {
        font-size: 30px;
    }
    .inab-c .about-info>ul>li.abin-line {
        height: 70px;
    }
    /* 关于我们 end */
}

@media (max-width: 768px) {
    /* header */
    header .nav {
        display: none;
    }
    header {
        width: 12%;
    }
    header .lang-btn {
        width: 50%;
    }
    header .menu {
        display: block;
    }
    .head-logo .logo-con {
        margin: 15px auto;
    }
    header .lang-btn .cn-btn,
    header .lang-btn .en-btn {
        display: none;
    }
    /* header end*/
    /* 大图 */
    .index-banner .swiper-container .swiper-button-next,
    .index-banner .swiper-container .swiper-button-prev {
        width: 40px!important;
        height: 40px!important;
        background-size: 28px;
    }
    .in-btn ul>li img {
        width: 26px;
    }
    /* 大图 end */
    /* 产业布局 */
    .swiper-container-prosli .swiper-slide .prosli-text {
        top: 4%;
    }
    .swiper-container-prosli .swiper-slide .prosli-text>button {
        margin-top: 22%;
    }
    .swiper-container-prosli .swiper-button-next,
    .swiper-container-prosli .swiper-button-prev {
        top: 33%;
    }
    .swiper-container-prosli .swiper-button-next {
        left: 12%;
    }
    .swiper-container-prosli .swiper-slide img {
        max-width: 100%;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    .mysw-btn {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }
    /* 产业布局 end */
    /* 车间设备 */
    .ineq-li ul>li a {
        font-size: 15px;
    }
    .ineq-img .ineq-ile,
    .ineq-img .ineq-iri {
        width: 100%;
        height: 50vh;
    }
    .ineq-img .ineq-ile>img,
    .ineq-img .ineq-iri>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .ineq-img .ineq-ritxt li>img {
        max-width: 68px;
    }
    /* 车间设备 end */
    /* 关于我们 */
    .inab-c .inab-l {
        width: 100%;
    }
    .inab-c .about-info {
        position: inherit;
        width: 92%;
        margin: 4% 0;
    }
    .inab-c .inab-r {
        width: 100%;
    }
    /* 关于我们 end */
    /* 底部 */
    footer .foot-t .foot-menu {
        display: none;
    }
    footer .foot-t .foot-nav {
        width: 100%;
    }
    /* 底部 end */
}

@media (max-width: 576px) {
    .m-title h3 {
        font-size: 24px;
    }
    .m-title span {
        font-size: 13px;
        line-height: 30px;
    }
    /* header */
    header {
        width: 18%;
    }
    .tc-box {
        width: 100%;
    }
    .index-banner .swiper-slide img {
        width: 100%;
        height: 28vh;
        object-fit: cover;
    }
    /* header end*/
    /* 大图 */
    .index-banner .swiper-container .swiper-button-next,
    .index-banner .swiper-container .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
        background-size: 20px;
    }
    .in-btn ul>li {
        width: 50%;
        padding: 2% 0;
    }
    .in-btn ul>li img {
        width: 22px;
    }
    .in-btn ul>li h3 {
        font-size: 15px;
    }
    /* 大图end */
    /* 产业布局 */
    .index-pro {
        margin: 10% auto;
    }
    .swiper-container-prosli .swiper-slide img {
        height: 46vh;
    }
    .swiper-container-prosli .swiper-slide .prosli-text>h3 {
        font-size: 24px;
        line-height: 40px;
    }
    .swiper-container-prosli .swiper-slide .prosli-text>p {
        line-height: 24px;
    }
    .swiper-container-prosli .swiper-button-next,
    .swiper-container-prosli .swiper-button-prev {
        width: 26px !important;
        height: 26px !important;
        background-size: 20px;
    }
    .swiper-container-prosli .swiper-button-next {
        left: 17%;
    }
    .mysw-btn .swiper-wrapper .swiper-slide>a>h3 {
        font-size: 16px;
    }
    /* 产业布局 end */
    /* 车间设备 */
    .index-eq {
        margin-bottom: 10%;
    }
    .ineq-li ul {
        flex-wrap: wrap;
    }
    .ineq-li ul>li {
        padding: 0 2%;
        text-align: center;
    }
    .ineq-li ul>li a {
        font-size: 14px;
        line-height: 45px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .ineq-img .ineq-ile,
    .ineq-img .ineq-iri {
        height: 46vh;
    }
    .ineq-img .ineq-ritxt {
        width: 92%;
        padding: 0 4%;
    }
    .ineq-img .ineq-ritxt h3 {
        font-size: 24px;
    }
    .ineq-img .ineq-ritxt h3::after {
        height: 6px;
    }
    .ineq-img .ineq-ritxt>span{
        font-size: 15px;
    }
    .ineq-img .ineq-ritxt>p {
        font-size: 14px;
    }
    /* 车间设备 end */
    /* 关于我们 */
    .index-about {
        margin-top: 10%;
    }
    .inab-c {
        padding: 10% 0;
    }
    .inab-c .inab-l h3 {
        font-size: 24px;
    }
    .inab-c .inab-l span {
        font-size: 18px;
    }
    .inab-c .inab-l p {
        font-size: 14px;
        line-height: 26px;
    }
    .inab-c .about-info>ul {
        flex-wrap: wrap;
    }
    .inab-c .about-info>ul>li {
        width: 32%;
    }
    .inab-c .about-info>ul>li:nth-child(7),
    .inab-c .about-info>ul>li:nth-child(9) {
        width: 49%;
    }
    .inab-c .about-info>ul>li p {
        font-size: 14px;
    }
    .inab-c .about-info>ul>li i {
        font-size: 24px;
    }
    .inab-c .about-info>ul>li span {
        font-size: 15px;
    }
    .inab-c .about-info>ul>li.abin-line {
        height: 60px;
    }
    /* 关于我们 end */
    /* 底部 */
    footer .foot-t {
        display: none;
    }
    footer .foot-b-l {
        line-height: 30px;
        margin: 4% 0;
    }
    footer .foot-b-l .ftbl-lx:first-child {
        margin-right: 15px;
    }
    footer .foot-b-l h3 {
        font-size: 14px;
    }
    footer .foot-b-con .foot-b-r {
        width: 100%;
        justify-content: space-around;
    }
    .foot-copy {
        margin: 4%;
        line-height: 28px;
        margin-bottom: 80px;
    }
    .foot-copy br {
        display: none;
    }
    /* 底部 end */
    .box9026_-2034 {
        display: block;
    }
}