/*-----------------[初始化]--------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

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

fieldset,
img {
    border: 0;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

a {
    text-decoration: none;
}

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.l,
.col-l,
.col_l,
.col-c,
.col_c {
    float: left;
}

.r,
.col-r,
.col_r,
dt span,
.ul-txt li span,
.ul_txt li span {
    float: right;
}

.c {
    clear: both;
}

.dn {
    display: none;
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none !important;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

body {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Microsoft Yahei', "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    border: none;
}

input,
textarea,
select {
    font-size: 14px;
    color: #333;
    font-family: 'Microsoft Yahei', "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    border: none;
}

input[type='submit'],
input[type='reset'],
input[type='button'],
input[type='radio'],
input[type='checkbox'],
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

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

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

select::-ms-expand {
    display: none;
}

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

a:hover {
    color: #ff4b59;
}

/*布局*/
.wp {
    margin: 0 auto;
    width: 1400px;
}

.wp-h {
    padding: 0 193px;
}

.links {
    display: none;
}

body.index .links {
    display: block;
}

/*******************************
    -------[=头部]-------
********************************/
.header {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    left: 0;
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.16);
    transition: all .3s;
}

.header.fixed {
    background: url(../images/navbg.png) no-repeat top center;
    -webkit-background-size: cover;
    background-size: cover;
    box-shadow: none;
}

.header.fixed .logo,
.header.fixed .nav li .v1,
.header.fixed .nav .phone {
    line-height: 100px;
}

.logo {
    float: left;
    overflow: hidden;
    line-height: 120px;
}

.logo img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.nav {
    float: right;
}

.nav ul {
    float: left;
}

.nav li {
    float: left;
    position: relative;
    padding: 0;
}

.nav li .v1 {
    font-size: 16px;
    color: #fff;
    display: block;
    line-height: 120px;
    position: relative;
    padding: 0 35px;
}

.nav li:hover .v1 {
    background: url(../images/bg1.png) no-repeat center;
    color: #FF9901;
}

.nav li .sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 9;
    padding: 10px 0;
    background-color: #FF9901;
}

.nav li .sub a {
    display: block;
    font-size: 14px;
    color: #fff;
    line-height: 35px;
}

.nav li .sub a:hover {
    background-color: #fff;
    color: #FF9901;
}

.nav .phone {
    line-height: 120px;
    float: left;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    position: relative;
    padding-left: 16px;
}

.nav .phone::after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 16px;
    background: #fff;
    top: 50%;
    margin-top: -8px;
    left: 0;
}

.nav .phone img {
    display: inline-block;
}

/*******************************
    -------[=导航]-------
********************************/
.menuBtn {
    display: none;
    position: fixed;
    top: 6px;
    right: 12px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
}

.menuBtn b {
    display: block;
    height: 4px;
    background-color: #fff;
    margin: 4px 0;
    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
}

.menuBtn.open {}

.menuBtn.open b {
    display: none;
    margin: 0;
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -5px;
    width: 30px;
}

.menuBtn.open b:first-child {
    display: block;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

.menuBtn.open b:last-child {
    display: block;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

/*******************************
    -------[=底部]-------
********************************/

/*******************************
    -------[=公用]-------
********************************/
.g-tit {
    text-align: center;
    margin-bottom: 40px;
}

.g-tit .cn {
    font-weight: bold;
    font-size: 36px;
    color: #fff;
    line-height: 24px;
    margin-top: -15px;
    position: relative;
    padding-bottom: 33px;
    margin-bottom: 12px;
}

.g-tit .cn::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 34px;
    height: 4px;
    margin: 0 auto;
    background: #FF9900;
}

.g-tit .en {
    font-size: 48px;
    line-height: 48px;
    color: rgba(255, 255, 255, 0.1);
    font-family: 'Impact';
    text-transform: uppercase;
}

.g-tit .desc {
    font-size: 16px;
    color: #fff;
}

.banner {
    height: 100vh;
}

.banner .swiper-slide {
    display: block;
    height: 100%;
    position: relative;
}

.banner .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.banner .swiper-slide .img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 4s;
    -o-transition: 4s;
    -moz-transition: 4s;
    transition: 4s;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner.swiper-container .swiper-slide.swiper-slide-active .img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.banner .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    top: 50%;
    right: 61px;
    left: auto;
    width: 48px;
    height: 185px;
    margin-top: -92.5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding-top: 40px;
}

.banner.swiper-container .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background: url(../images/bg1.png) no-repeat center;
    font-size: 0;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    opacity: 1;
    display: block;
    margin: 0 auto 10px !important;
    float: none;
}

.banner.swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: url(../images/bg2.png) no-repeat center;
}

.banner .txt {
    position: absolute;
    left: 9%;
    top: 14.58vw;
    width: 749.95px;
    height: 212.93px;
    background-repeat: no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
}

.g-tel {
    display: block;
    position: fixed;
    bottom: 5%;
    left: 0;
    width: 23.13vw;
    height: 7.24vw;
    background-repeat: no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    z-index: 99;
}




.g-prod {
    overflow: hidden;
}

.g-prod .l {
    width: 36%;
    height: 700px;
}

.g-prod .l .g-item1 {
    height: 100%;
}

.g-prod .item {
    overflow: hidden;
}

.g-prod .item .g-item1 {
    width: 50%;
    float: left;
    height: 350px;
}

.g-item1 {
    position: relative;
}

.g-item1 img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.g-item1 .txt {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    transition: all .3s;
}

.g-item1:hover .txt {
    display: block;
}

.g-item1 .txt .desc {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-transform: uppercase;
}

.g-item1 .txt .tit {
    font-size: 24px;
    margin-bottom: 8px;
}

.g-item1 .txt a {
    display: block;
    width: 148px;
    height: 40px;
    border: 1px solid #FFFFFF;
    text-align: center;
    line-height: 38px;
    font-size: 14px;
    color: #fff;
    margin: 64px auto 0;
}

.g-product {
    overflow: hidden;
    background-color: #32425A;
}

.g-product .title .en {
    color: #FFAE00;
    font-size: 32px;
    line-height: 1.1;
    text-transform: uppercase;
}

.g-product .title {
    float: left;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding-top: 30px;
    width: 380px;
}

.g-product .title a {
    display: block;
    width: 148px;
    height: 40px;
    border: 1px solid #FFFFFF;
    text-align: center;
    line-height: 38px;
    font-size: 14px;
    color: #fff;
}

.g-product .title .cn {
    margin-bottom: 27px;
}

.ul-list1 {
    overflow: hidden;
}

.ul-list1 li {
    float: left;
    color: #fff;
    font-size: 12px;
    text-align: center;
    margin: 0 35px;
    padding: 58px 0;
    position: relative;
    transition: all .3s;
}

.ul-list1 li a {
    display: block;
}

.ul-list1 li::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #FF9900;
    display: none;
}

.ul-list1 li:hover::after {
    display: block;
}

.ul-list1 li:last-child {
    margin-right: 0;
}

.ul-list1 .tit {
    color: #fff;
    display: block;
    font-size: 16px;
}

.ul-list1 .en {
    color: #fff;
    display: block;
    font-size: 12px;
}

.ul-list1 .ico {
    background-repeat: no-repeat;
    margin: 0 auto;
    width: 42px;
    height: 42px;
    display: block;
}

.ul-list1 .i1 {
    background-image: url(../images/icop1.png);
}

.ul-list1 .i2 {
    background-image: url(../images/icop2.png);
}

.ul-list1 .i3 {
    background-image: url(../images/icop3.png);
}

.ul-list1 .i4 {
    background-image: url(../images/icop4.png);
}

.ul-list1 .i5 {
    background-image: url(../images/icop5.png);
}

.ul-list1 .i6 {
    background-image: url(../images/icop6.png);
}

.ul-list1 .i7 {
    background-image: url(../images/icop7.png);
}

.ul-list1 li:hover .tit,
.ul-list1 li:hover .en {
    color: #FFAE00;
}

.ul-list1 li:hover .i1 {
    background-image: url(../images/ico1.png);
}

.ul-list1 li:hover .i2 {
    background-image: url(../images/icop8.png);
}

.ul-list1 li:hover .i3 {
    background-image: url(../images/icop9.png);
}

.ul-list1 li:hover .i4 {
    background-image: url(../images/icop10.png);
}

.ul-list1 li:hover .i5 {
    background-image: url(../images/icop11.png);
}

.ul-list1 li:hover .i6 {
    background-image: url(../images/icop12.png);
}

.ul-list1 li:hover .i7 {
    background-image: url(../images/icop13.png);
}




.row2 {
    overflow: hidden;
    background: url(../images/pic6.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.ul-list3 {
    overflow: hidden;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.ul-list3 li {
    flex: 1;
    text-align: center;
    color: #fff;
    padding: 34px 0;
    position: relative;
}

.ul-list3 li::after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 99px;
    top: 50%;
    right: 0;
    margin-top: -50px;
    background: rgba(255, 255, 255, 0.5);
}

.ul-list3 li:last-child::after {
    display: none;
}

.ul-list3 .ico {
    margin: 0 auto 14px;
    width: 62px;
    height: 62px;
    background-repeat: no-repeat;
    background-position: center center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
}

.ul-list3 .tit {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ul-list3 .desc {
    font-size: 14px;
    line-height: 1.71;
}

.row3 {
    overflow: hidden;
    padding: 54px 0 66px;
    background: url(../images/pic8.jpg) no-repeat fixed;
    -webkit-background-size: cover;
    background-size: cover;
}

.row3 .info {
    text-indent: 2em;
    color: #fff;
    font-size: 16px;
    line-height: 1.88;
    margin-bottom: 50px;
}

.g-slider {
    overflow: hidden;
    position: relative;
}

.ul-tab {
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 601px;
    z-index: 9;
    font-size: 16px;
    color: #fff;
}

.ul-tab li {
    height: 80px;
    width: 33.333%;
    float: left;
    cursor: pointer;
    padding: 13px 15px;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.8);
}

.ul-tab li .tit {
    display: block;
    margin-bottom: 4px;
}

.ul-tab li .nub {
    font-size: 30px;
    line-height: 1.1;
    font-family: Impact;
    position: relative;
}

.ul-tab li .nub::after {
    content: '';
    display: block;
    position: absolute;
    left: 50px;
    top: 15px;
    width: 26px;
    height: 2px;
    background: #FFFFFF;
}

.ul-tab li.on,
.ul-tab li:hover {
    background: rgba(255, 160, 18, .9);
}

.slider1 {
    height: 440px;
    overflow: hidden;
}

.slider1 .pic {
    float: left;
    width: 600px;
    height: 100%;
}

.slider1 .pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider1 .txt {
    overflow: hidden;
    background: url(../images/bg-7.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    height: 100%;
    padding: 33px 64px;
}

.slider1 .tit {
    color: #333;
    font-size: 13px;
    text-transform: uppercase;
    padding-left: 76px;
    background-repeat: no-repeat;
    background-position: left;
    height: 64px;
    padding-top: 16px;
    margin-bottom: 20px;
}

.slider1 .tit .cn {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.1;
}

.slider1 .desc {
    font-size: 16px;
    color: #333333;
    margin-bottom: 30px;
}

.slider1 dl {
    margin-bottom: 20px;
}

.slider1 dt {
    font-size: 16px;
    color: #FF9900;
    margin-bottom: 8px;
    font-weight: bold;
}

.slider1 dd {
    font-size: 14px;
    color: #666666;
}

.g-more a {
    display: block;
    margin: 60px auto 0;
    width: 600px;
    height: 60px;
    background-color: #FFA012;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    font-size: 18px;
    color: #fff;
    line-height: 58px;
}

.g-more a span {
    display: block;
    float: left;
    width: 280px;
    color: #333;
    height: 60px;
    font-size: 18px;
    line-height: 58px;
    border-radius: 30px;
    background-color: #fff;
    transition: all .3s;
}

.g-more a:hover span {
    width: 100%;
}

.slider1 .txt {
    position: relative;
}

.slider1 a {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 45px;
    color: #fff;
    text-align: center;
    line-height: 45px;
    background-color: #FF9900;
    font-size: 12px;
}

.row4 {
    overflow: hidden;
    background: url(../images/pic19.jpg) no-repeat fixed;
    -webkit-background-size: cover;
    background-size: cover;
}

.g-txt1 {
    overflow: hidden;
    color: #fff;
    padding: 172px 0;
}

.g-txt1 .nub {
    float: right;
    padding-left: 48px;
}

.g-txt1 .nub .ico {
    width: 302px;
    height: 214px;
    margin-bottom: 10px;
    background: url(../images/txt2.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

.g-txt1 .nub .tit {
    text-align: center;
}

.g-txt1 .nub .jia {
    line-height: 1.1;
    font-size: 120px;
    text-align: center;
    position: relative;
}

.g-txt1 .nub .jia::after {
    content: '+';
    display: block;
    position: absolute;
    font-size: 20px;
    right: 0;
    top: 0;
}

.g-txt1 .txt {
    overflow: hidden;
    border-right: 1px solid #fff;
    padding-right: 60px;
}

.g-txt1 .txt .tit {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.g-txt1 .txt .tit::after {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 82px;
    height: 1px;
    background-color: #fff;
}

.g-txt1 .txt .desc {
    text-align: right;
    font-size: 16px;
    line-height: 2.63;
}

.g-txt1 .txt .tit span {
    display: block;
    text-align: right;
    font-size: 20px;
    line-height: 1.8;
}

.g-txt1 .txt .who {
    width: 266px;
    height: 90px;
    background: url(../images/txt1.png) no-repeat;
    float: right;
    margin-bottom: 10px;
    -webkit-background-size: contain;
    background-size: contain;
}

.g-txt1 .txt .tit {
    clear: right;

}

/***row5**/
.row5 {
    overflow: hidden;
    position: relative;
    color: #fff;
    background: url(../images/pic17.jpg) repeat-x;
    -webkit-background-size: cover;
    background-size: cover;
}

.row5 .w50:first-child {
    background: url(../images/pic9.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding-left: 260px;
    padding-top: 20px;
    padding-bottom: 30px;
}

.row5 .w50:last-child {}

.row5 .w50 {
    width: 50%;
    float: left;
    overflow: hidden;
}

.ul-list-3 {
    overflow: hidden;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding-top: 34px;
}

.ul-list-3 li {
    flex: 1;
    text-align: center;
    color: #fff;
}

.ul-list-3 .desc {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.71;
}

.g-txt2 .call {
    padding-left: 64px;
    color: #08f5c3;
    overflow: hidden;
    font-size: 16px;
    margin-bottom: 8px;
    background: url(../images/ico23.png) no-repeat left center;
}

.g-txt2 .call p {
    font-size: 30px;
    line-height: 30px;
    font-family: 'Impact';
}

.g-txt2 .call .de {
    float: left;
    margin-right: 15px;
}

.g-txt2 a {
    width: 113px;
    height: 28px;
    border: 1px solid #08f5c3;
    border-radius: 14px;
    font-size: 14px;
    color: #08f5c3;
    text-align: center;
    margin-top: 30px;
    line-height: 26px;
    display: block;
    overflow: hidden;
}

.g-txt2 a:hover {
    background-color: #0EC67E;
    border-color: #0EC67E;
    color: #fff;
}

.g-txt2 .tit {
    font-size: 26px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 10px;
}

.g-txt2 .tell {
    width: 313px;
    height: 48px;
    border: 1px solid #FFFFFF;
    border-radius: 38px;
    text-align: center;
    line-height: 46px;
    font-size: 20px;
}

.g-txt2 .en {
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 8px;
    display: block;
    position: relative;
}

.g-txt2 .en::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 1px;
    background: rgba(255, 255, 255, 0.59);
}

.g-txt2 .desc {
    font-size: 15px;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.row6 {
    padding-bottom: 70px;
    overflow: hidden;
    background: url(../images/pic10.jpg) no-repeat center;
    -webkit-background-size: cover;
    background-size: cover;
}

.g-about {
    padding-top: 55px;
}

.g-about .g-tit .en {
    color: #E8E8E8;
    font-size: 48px;
}

.g-about .g-tit .cn {
    font-size: 36px;
    color: #222222;
}

.g-about .g-tit .cn::after {
    margin: 0;
}

.g-about .g-tit {
    margin-bottom: 41px;
}

.g-about .txt {
    overflow: hidden;
    padding-right: 80px;
    padding-top: 46px;
}

.g-about .pic {
    float: right;
    position: relative;
    right: -73px;
}

.g-about .g-tit {
    text-align: left;
}

.g-about .g-tit::after {
    margin: 0;
}

.g-about .desc {
    font-size: 16px;
    color: #333333;
    line-height: 1.88;
    margin-bottom: 54px;
}

.g-about a.more {
    display: block;
    width: 120px;
    height: 40px;
    line-height: 40px;
    border-radius: 30px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background: #FF9900;
    margin-bottom: 70px;
}

.ul-link a {
    display: block;
    float: left;
    width: 200px;
    height: 100px;
    border: 1px solid #bfbfbf;
    margin-right: 20px;
}

.ul-link a.on {
    background: url(../images/pic11.jpg) no-repeat;
    border: none;
    background-size: cover;
}

.ul-link a.on .nub,
.ul-link a.on .tit,
.ul-link a.on .en {
    color: #fff;
}

.ul-link a .nub {
    float: left;
    padding-left: 15px;
    font-size: 42px;
    color: #b0b0b0;
    line-height: 98px;
    margin-right: 20px;
}

.ul-link a:last-child {
    margin-right: 0;
}

.ul-link .title {
    overflow: hidden;
    padding-top: 30px;
}

.ul-link .tit {
    font-size: 18px;
    color: #666666;
    line-height: 1.2;
}

.ul-link .en {
    font-size: 11px;
    color: #999999;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.g-list {
    overflow: hidden;
}

.g-list .item {
    float: left;
    width: 47%;
    margin-right: 6%;
}

.g-list .item:last-child {
    margin-right: 0;
}


.row7 {
    overflow: hidden;
    padding: 60px 0;
    background: url(../images/pic12.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.slider2 .pic {
    position: relative;
    padding-top: 75%;
    height: 0;
    overflow: hidden;
}

.slider2 img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider2 .tit {
    display: block;
    text-align: center;
    color: #fff;
    padding-top: 28px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.bofang img{ width: 45px; height: 45px;    left: 45%;
    top: 35%; }
.slider {
    position: relative;
}

.slider .swiper-button-prev {
    left: -50px;
    width: 33px;
    height: 33px;
    opacity: 1 !important;
    background: #FF9900 url(../images/prev.png) no-repeat center center;
}

.slider .swiper-button-next {
    right: -50px;
    width: 33px;
    height: 33px;
    opacity: 1 !important;
    background: #ff9900 url(../images/next.png) no-repeat center center;
}

.row8 {
    overflow: hidden;
    padding-bottom: 70px;
    padding-top: 50px;
    background: url(../images/pic14.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.row8 .g-tit .en {
    color: #EFE3E0;
}

.row8 .g-tit .cn {
    color: #333333;
}

.row8 .g-tit .desc {
    color: #666666;
}

.ul-news {
    overflow: hidden;
    margin: 0 -16px;
}

.ul-news li {
    width: 33.333%;
    float: left;
}

.ul-news a {
    display: block;
    background: #f8f8f8;
    overflow: hidden;
    margin: 0 16px;
    padding-bottom: 46px;
}

.ul-news .pic {
    position: relative;
    padding-top: 52%;
    overflow: hidden;
    height: 0;
    background-color: #fff;
}

.ul-news .pic img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.ul-news .txt {
    padding: 28px 20px 0;
    overflow: hidden;
}

.ul-news .more {
    border-top: 1px solid #dfdfdf;
    color: #747474;
    line-height: 68px;
    font-size: 14px;
    background: url(../images/jian.png) no-repeat right center;
}

.ul-news .time {
    font-size: 14px;
    color: #333333;
    margin-bottom: 15px;
    display: block;
}

.ul-news .tit {
    font-size: 24px;
    color: #333333;
    margin-bottom: 31px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ul-news .desc {
    font-size: 14px;
    color: #777777;
    line-height: 1.8;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 12px;
}
.page-num-current{
    background: #FF9900;
    color: #FFF;
}
.ul-tab2 {
    overflow: hidden;
    text-align: center;
    margin-bottom: 40px;
}

.ul-tab2 li {
    display: inline-block;
    margin: 0 15px;
}

.ul-tab2 li.on span,
.ul-tab2 li:hover span {
    background-color: #ffa012;
    color: #fff;
}

.ul-tab2 span {
    display: block;
    height: 40px;
    width: 158px;
    line-height: 40px;
    border-radius: 30px;
    background-color: #fff;
    overflow: hidden;
    cursor: pointer;
}

#allmap {width: 100%;height: 350px;margin:0;font-family:"微软雅黑";}
.footer.bg {
    background: url(../images/pic16.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.footer {
    overflow: hidden;
    background: #39404a;
    -webkit-background-size: cover;
    background-size: cover;
}

.footer.bg .top {
    padding-top: 80px;
}

.footer .top {
    overflow: hidden;
    padding: 26px 0;
}

.footer .tit {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 36px;
}

.fd-form {
    float: left;
    width: calc(100% - 400px);
}

.fd-form .w140 {
    width: 140px;
}

.fd-form .w180 {
    width: 180px;
}

.fd-form .w350 {
    width: 440px;
}

.fd-form .box {
    overflow: hidden;
}

.fd-form .item {
    overflow: hidden;
    float: left;
    margin-right: 40px;
}

.fd-form .item .inp-box {
    height: 37px;
    overflow: hidden;
}

.fd-form .item .inp {
    display: block;
    width: 100%;
    height: 32px;
    background: none;
    color: #fff;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fd-form .item .inp::placeholder {
    color: #fff;
}

.fdnav {
    overflow: hidden;
    margin-bottom: 50px;
}

.fdnav dl {
    float: left;
    margin-right: 150px;
}

.fdnav dl:last-child {
    margin-right: 0;
}

.fdnav dl dd a,
.fdnav dl dd span {
    display: block;
    font-size: 14px;
    line-height: 2.29;
    color: #A5A5A5;
}

.fdnav dl .item {
    float: left;
}

.fd-form .btn input {
    display: block;
    width: 88px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    color: #fff;
    cursor: pointer;
}

.fd-desc {
    overflow: hidden;
    float: right;
    width: 300px;
}

.fd-desc .desc {
    font-size: 14px;
    color: #A5A5A5;
    line-height: 2.29;
    margin-bottom: 21px;
}

.fd-desc .desc .add {
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
}

.fd-desc .qr {
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

.fd-desc .qr img {
    display: block;
    width: 114px;
}

.copy {
    font-size: 14px;
    line-height: 64px;
    color: #fff;
}

.copy a {
    font-size: 14px;
    color: #fff;
}

.links .ico {
    width: 129px;
    height: 25px;
    background: url(../images/links.png) no-repeat;
    margin-bottom: 20px;
}

.links .link {
    height: 72px;
    overflow: hidden;
}

.links .link a {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    color: #B1B0AF;
    margin-bottom: 15px;
}

#floatBottom {
    width: 100%;
    height: 53px;
    background: #8a8a8a;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999999;
    display: none;
}

#floatBottom a {
    width: 33.333%;
    height: 53px;
    display: block;
    float: left;
    position: relative;
    font-size: 14px;
    color: #fff;
    text-align: center;
    padding-bottom: 4px;
}

#floatBottom a img {
    display: block;

    margin: 4px auto 2px;
    height: 25px;
}

#floatBottom .ewm {
    width: 87px;
    height: 83px;
    position: absolute;
    bottom: 55px;
    left: 50%;
    margin-left: -45px;
    display: none;
}

#floatBottom .ewm img {
    width: 100%;
    height: 100%;
    display: block;
}

.phone-chanpin {
    margin-bottom: 30px;
    display: none;
}

.phone-chanpin::after {
    content: '';
    display: block;
    clear: both;
    visibility: hidden;
    width: 100%;
    height: 0;
}

.phone-chanpin .tit {
    width: 100px;
    float: left;
    background-color: #FF9901;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.phone-chanpin .more {
    float: left;
    width: calc(100% - 100px);
    background-color: #eee;
    position: relative;
    height: 44px;
}

.phone-chanpin .name {
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 44px;
}

.phone-chanpin .sub {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FF9901;
    z-index: 99;
    display: none;
    padding: 10px 0;
}

.phone-chanpin .sub a {
    display: block;
    line-height: 24px;
    font-size: 12px;
    padding-left: 15px;
    color: #fff;
}

@media only screen and (max-width: 1900px) {

    /*******************************
        -------[=公用]-------
    ********************************/
    .wp-h {
        padding: 0 15px;
    }

    .row5 .w50:first-child {
        padding-left: 5%;
    }

    .nav li .v1 {
        padding: 0 24px;
    }

    .nav li .sub a {
        font-size: 12px;
    }
}

@media only screen and (max-width: 1500px) {

    .nav ul {
        padding-right: 16px;
    }

    .ul-list-3 {
        padding-top: 50px;
    }

    .ul-list-3 li img {
        width: 50%;
    }

    .nav .phone {
        font-size: 12px;
        display: none;
    }

    .nav .phone img {
        display: none;
    }

    .nav ul {
        padding-right: 0;
    }
}

@media only screen and (max-width: 1430px) {
    .fdnav dl {
        margin-right: 50px;
    }

    .wp {
        width: 1200px;
    }

    .wp-h {
        padding: 0 2%;
    }

    .g-prod .l {
        height: 500px;
    }

    .g-prod .item .g-item1 {
        height: 250px;
    }

    .g-item1 .txt .tit {
        font-size: 20px;
    }

    .ul-list1 li {
        width: 25%;
        margin: 0;
    }

    .g-txt1 .nub .jia {
        font-size: 80px;
    }

    .g-txt1 .nub .ico {
        width: 241px;
        height: 171px;
    }

    .g-txt1 .txt .desc {
        font-size: 14px;
        line-height: 2;
    }

    .g-txt1 .txt .who {
        width: 212px;
        height: 72px;
    }

    .g-txt1 {
        padding: 80px 0;
    }

    .ul-list-3 {
        display: block;
        padding-top: 0;
    }

    .ul-list-3 .desc {
        font-size: 14px;
    }

    .g-txt2 {
        padding-top: 20px;
    }

    .ul-list-3 li img {
        width: 30%;
    }

    .ul-list-3 li {
        display: block;
        width: 33.33%;
        float: left;
        padding-top: 10px;
    }

    .g-about .desc {
        font-size: 14px;
    }

    .ul-news .tit {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .ul-news a {
        padding-bottom: 0;
    }

    .slider .swiper-button-prev {
        left: 0;
    }

    .slider .swiper-button-next {
        right: 0;
    }

    .slider2 .tit {
        padding-top: 14px;
    }

    .g-tit .en {
        font-size: 40px;
        line-height: 40px;
    }

    .g-tit .cn {
        font-size: 28px;
    }

    .row3 .info {
        font-size: 14px;
    }

    .ul-list3 li::after {
        display: none;
    }

    .ul-list1 li {
        padding: 15px;
    }

    .ul-list1 li:hover::after {
        display: none;
    }

    .g-product .title {
        padding-top: 52px;
    }

}

@media only screen and (max-width: 1230px) {
    .banner {
        height: calc(100vh - 53px);
    }

    .header .title {
        display: none;
    }

    .nav .v1 {
        font-size: 14px;
        margin: 0 5px;
    }

    .g-tit {
        margin-bottom: 30px;
    }

    .g-tit .cn {
        font-size: 22px;
        padding-bottom: 15px;
    }

    .nav .tel {
        display: none;
    }

    .wp {
        width: auto;
        padding: 0 15px;
    }

    body {
        padding-bottom: 53px;
    }

    #floatBottom {
        display: block;
    }

    .fd-form {
        width: auto;
        float: none;
    }

    .header {
        height: 50px;
    }

    .logo,
    .header.fixed .logo {
        line-height: 50px;
        width: 140px;
    }

    .header.fixed .nav li .v1 {
        line-height: 40px;
    }

    #floatBottom {
        display: block;
    }

    .menuBtn {
        display: block;
    }

    .nav {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        bottom: 0;
        margin-left: 100%;
        z-index: 99;
        overflow: hidden;
        transition: all .3s;
        background: none;
        width: auto;
        float: none;
        padding: 0;
    }

    .nav.on {
        margin-left: 0%;
    }

    .nav li .v1 {
        padding: 0;
    }

    .nav .phone {
        display: none;
    }

    .nav ul {
        width: 240px;
        position: absolute;
        right: 0;
        bottom: 0;
        top: 0;
        float: none;
        margin: 0;
        padding-right: 0;
        overflow-y: scroll;
    }

    .nav li {
        float: none;
        width: auto;
    }

    .nav .bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
    }

    .nav li .v1 {
        line-height: 40px;
        text-align: left;
        padding-left: 20px;
    }

    .nav li.on .v1::after {
        display: none;
    }

    .nav li i {
        display: block;
        width: 40px;
        height: 40px;
        background-position: center center;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 9;
        background: url(../images/sel2.png) no-repeat center center;
    }

    .nav li .sub {
        position: static;
        padding-left: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav li .sub a {
        padding-left: 20px;
        text-align: left;
        float: none;
        line-height: 30px;
        color: #fff;
    }

    .nav .v1 {
        height: 40px;
        line-height: 40px;
        text-align: left;
        color: #333;
        padding-left: 10px;
        margin: 0;
        overflow: hidden;
    }

    .nav li:hover .v1,
    .nav li.on .v1 {

        background: none;
    }

    .g-item1 .txt a {
        margin-top: 15px;
    }

    .slider1 .pic {
        width: 400px;
        height: 360px;
    }

    .slider1 {
        padding-bottom: 80px;
    }

    .slider1 .txt {
        height: 360px;
        padding: 20px;
    }

    .ul-tab {
        width: auto;
        right: 0;
    }

    .slider1 .desc {
        margin-bottom: 10px;
    }

    .g-txt2 .tit {
        font-size: 18px;
    }

    .ul-list-3 li {
        padding-top: 20px;
    }

    .g-txt1 .txt .desc {
        font-size: 12px;
    }

    .g-about .pic {
        max-width: 400px;
        position: static;
    }

    .g-about .g-tit .en {
        font-size: 34px;
    }

    .g-about .g-tit .cn {
        font-size: 22px;
    }

    .g-about .g-tit {
        margin-bottom: 10px;
    }

    .ul-link {
        display: none;
    }

    .row6 {
        padding-bottom: 40px;
    }

    .ul-news .pic {
        float: left;
        width: 200px;
        height: 129px;
        padding-top: 0;
        position: static;
    }

    .ul-news .pic img {
        position: static;
        object-fit: cover;
    }

    .ul-news .txt {
        padding: 10px 10px 0;
    }

    .ul-news .time {
        margin-bottom: 5px;
    }

    .ul-news .tit {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .ul-news li {
        width: auto;
        float: none;
        overflow: hidden;
        margin-bottom: 15px;
    }

    .ul-news .more {
        display: none;
    }

    .ul-news a,
    .ul-news {
        margin: 0;
    }

    .fdnav {
        display: none;
    }

    .fd-desc {
        float: none;
        width: auto;
    }

    .row8,
    .row7 {
        padding: 20px 0;
    }

    .banner .txt {
        width: 600px;
        height: 169.6px;
        top: 50%;
    }

    .g-tel {
        display: none;
    }

    .copy {
        padding-bottom: 10px;
    }

    .footer.bg {
        background-image: none;
        background-color: #464644;
    }

}

@media only screen and (max-width: 1024px) {
    .g-prod .l {
        width: auto;
        float: none;
    }

    .g-product .title .en {
        font-size: 26px;
    }

    .ul-list1 .tit {
        font-size: 12px;
    }

    .g-product .title {
        width: 260px;
    }
}

@media only screen and (max-width: 960px) {
    .g-about .pic {
        display: none;
    }

    .g-about .txt {
        padding-right: 0;
    }

    .g-txt2 .tit {
        font-size: 16px;
    }

    .g-about {
        padding-top: 0;
    }

    .row5 .w50 {
        width: auto;
        float: none;
    }

    .row5 .w50:last-child {
        padding-bottom: 15px;
    }

    .g-txt1 .nub {
        float: none;
        overflow: hidden;
        padding-left: 0;
        display: inline-block;
    }

    .g-txt1 .nub .ico {
        display: none;
    }

    .g-txt1 .nub .tit,
    .g-txt1 .nub .jia {
        text-align: left;
    }

    .g-txt1 .txt {
        padding-right: 0;
        border: none;
        text-align: left;
    }

    .g-txt1 .txt .who {
        display: none;
    }

    .g-txt1 .txt .desc,
    .g-txt1 .txt .tit span {
        text-align: left;
    }

    .g-txt1 .txt .tit::after {
        right: auto;
        left: 0;
    }

    .g-txt1 {
        padding: 40px 0;
    }

    .g-more {
        display: none;
    }

    .ul-tab {
        position: static;
    }

    .slider1 .pic {
        height: 200px;
        width: auto;
        float: none;
    }

    .slider1 .txt {
        height: auto;
    }

    .row3 {
        padding: 30px 0;
    }

    .row3 .info {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .slider1 {
        height: auto;
    }

    .fd-desc .desc .add {
        margin-bottom: 0;
    }

    .ul-list3 {
        display: block;
        overflow: hidden;
        padding-bottom: 20px;
    }

    .ul-list3 li {
        width: 50%;
        float: left;
        padding-bottom: 0px;
    }

    .footer .tit {
        margin-bottom: 0px;
    }

    .links .link {
        height: auto;
    }

}

/*Common For Max 480*/
@media only screen and (max-width: 767px) {
    body {
        padding-top: 50px;
    }

    .header {
        background: url(../images/navbg.png) no-repeat top center;
        -webkit-background-size: cover;
        background-size: cover;
    }

    .ul-tab2 li {
        width: 33.33%;
        margin: 0;
        float: left;
    }

    .ul-tab2 li span {
        margin: 0 5px;
        width: auto;
    }

    .ul-news .pic {
        width: auto;
        float: none;
    }

    .footer {
        background: #464644;
    }

    .footer .top {
        padding: 20px 0;
    }

    .copy {
        line-height: 1.8;
        padding-bottom: 40px;
    }

    .fd-desc .desc {
        margin-bottom: 0;
    }

    .copy a {
        display: inline-block;
    }

    .slider1 .txt {
        padding: 20px 10px;
    }

    .slider1 .tit {
        font-size: 10px;
        padding-left: 0;
        background: none !important;
        padding-top: 0;
        height: auto;
        margin-bottom: 5px;
    }

    .g-tit .en {
        font-size: 24px;
        line-height: 24px;
    }

    .g-tit .cn {
        font-size: 20px;
    }

    .ul-tab li .tit {
        font-size: 14px;
    }

    .ul-tab li .nub {
        display: none;
    }

    .slider1 .tit .cn {
        font-size: 20px;
    }

    .slider1 dl:last-child {
        margin-bottom: 0;
    }

    .g-tit {
        margin-bottom: 10px;
    }

    .ul-tab2 {
        margin-bottom: 15px;
    }

    .row5 .w50:first-child {
        padding: 15px;
    }

    .ul-list3 .desc br {
        display: none;
    }

    .ul-list3 .desc {
        font-size: 12px;
        padding: 0 10px;
    }

    .banner {
        height: 49.48vw;
        margin-top: 50px !important;
    }

    #px_banner {

        margin-top: 50px
    }

    .banner .txt {
        width: 325px;
        height: 98px;
        left: 5%;
        top: 25%;
    }

    .banner .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
        width: auto;
        bottom: 0px;
        top: auto;
        right: 15px;
        height: auto;
        background: none;
        padding-top: 0;
        margin-top: 0;
    }

    .g-product .title {
        padding-top: 15px;
        float: none;
        text-align: center;
        width: auto;
    }

    .g-product .title .en {
        font-size: 20px;
    }

    .g-product .title .cn {
        font-size: 18px;
        margin-bottom: 0;
    }

    .ul-list1 .tit {
        font-size: 12px;
    }

    .ul-list1 .en {
        display: none;
    }

    .g-product .title a {
        display: none;
    }

    .g-prod .l {
        height: 300px;
    }

    .g-prod .item .g-item1 {
        width: auto;
        float: none;
    }

    .g-prod .item .g-item1 {
        display: none;
    }

    .g-prod .item .g-item1:nth-child(1) {
        display: block;
    }

    .slider1 dt {
        margin-bottom: 0;
    }

    .slider1 dl {
        margin-bottom: 10px;
    }

    .footer.bg .top {
        padding-top: 40px;
    }
    #allmap {width: 100%;height: 150px;margin:0;font-family:"微软雅黑";}

}

@media only screen and (max-width: 500px) {
    .ul-list-3 li img {
        width: 50%;
    }

    .g-item1 .txt {
        display: block;
    }
}

.g-prodlist {
    overflow: hidden;
    margin-bottom: 15px;
}

.g-prodlist .col-l {
    width: 20%;
    background-color: #f2f4f6;
}

.g-prodlist .col-r {
    width: 75%;
}

.ul-listx1 {
    overflow: hidden;
    margin: 0 -15px;
}

.ul-listx1 li {
    float: left;
    width: 33.333%;
    padding: 0 15px;
}

.ul-listx1 li .con {
    display: block;
    padding: 10px;
    position: relative;
}

.ul-listx1 li .con::after,
.ul-listx1 li .con::before {
    pointer-events: none;
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
    content: '';
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: -1;
    -webkit-transition: all .8s;
    -moz-transition: all .8s;
    -o-transition: all .8s;
    -ms-transition: all .8s;
    transition: all .8s;
}

.ul-listx1 li .con::before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
}

.ul-listx1 li .con::after {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    transform: scale(1, 0);
}

.ul-listx1 li .con:hover::after,
.ul-listx1 li .con:hover::before {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    border-color: #999;
}

.ul-listx1 .pic {
    position: relative;
    height: 0;
    padding-top: 75%;
    overflow: hidden;
    text-align: center;
}

.ul-listx1 .pic img {
    position: absolute;
    top: 0%;
    left: 0%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .8s cubic-bezier(.76, .015, .41, 1);
    -moz-transition: all .8s cubic-bezier(.76, .015, .41, 1);
    -o-transition: all .8s cubic-bezier(.76, .015, .41, 1);
    -ms-transition: all .8s cubic-bezier(.76, .015, .41, 1);
    transition: all .8s cubic-bezier(.76, .015, .41, 1);
}

.ul-listx1 .con:hover .pic img {
    -webkit-transform: scale(1.08, 1.08);
    -moz-transform: scale(1.08, 1.08);
    -o-transform: scale(1.08, 1.08);
    -ms-transform: scale(1.08, 1.08);
    transform: scale(1.08, 1.08);
}

.ul-listx1 .txt {
    font-size: 16px;
    line-height: 1.7;
    color: #595757;
    padding-top: 10px;
}

.ul-listx1 .txt .tit {
    overflow: hidden;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
}

.ul-listx1 .txt h3 span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.75;
}

.ul-listx1 .con:hover .txt h3 .g-titx1 {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.ul-listx1 .txt .desc {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


.g-prodlist .col-l .title {
    color: #03132b;
    font-size: 16px;
    padding: 25px 30px;
    border-left: 2px solid #FF9901;
    text-transform: uppercase;
    margin-bottom: 0;
}

.g-prodlist .col-l ul {
    overflow: hidden;
}

.g-prodlist .col-l ul li a {
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #707070;
    padding: 9px 30px;
    border-top: 1px solid #fff;
}

.g-prodlist .col-l ul li a:hover,
.g-prodlist .col-l ul li.on a {
    background-color: #FF9901;
    color: #fff;
}

@media only screen and (max-width: 1024px) {
    .ul-listx1 li {
        width: 50%;
    }

    .slider1 a {
        position: static;
    }
}

@media only screen and (max-width: 768px) {

    .g-prodlist .col-l,
    .g-prodlist .col-r {
        width: auto;
        float: none;
    }

    .g-prodlist .col-l ul li {
        width: 33.33%;
        float: left;
    }

    .g-prodlist .col-l ul li a {
        font-size: 12px;
    }

    .g-prodlist .col-l .title {
        padding: 15px 30px;
    }

    .g-prodlist .col-l ul li a {
        padding: 0;
        display: block;
        text-align: center;
        line-height: 35px;
        font-size: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

}

@media only screen and (max-width: 600px) {
    .ul-listx1 li {
        width: auto;
        float: none;
    }

    .ul-list1 li {
        padding: 15px 0 0;
    }

    .ul-list1 {
        margin-bottom: 15px;
    }

    .ul-news li:last-child {
        display: none;
    }

    .copy {
        text-align: center;
    }

    .copy a {
        display: block;
    }

    .row6 {
        display: none;
    }

    .slider1 .txt .jj {
        display: none;
    }

    .row2 {
        display: none;
    }

    .ul-tab li {
        padding: 5px;
        height: auto;
    }

    .g-tit .en {
        display: none;
    }

    .slider1 .tit .en {
        display: none;
    }

    .row5 .w50:first-child {
        display: none;
    }

    .g-tit {
        padding-top: 15px;
    }

    .fd-desc .desc {
        font-size: 13px;
    }

    .g-txt1 .nub .jia {
        font-size: 60px;
    }

    .g-txt1 .nub .jia::after {
        width: 50px;
    }

    .slider1 .tit .cn {
        font-size: 18px;
    }

    .slider1 .desc {
        font-size: 14px;
    }
}



.pro-img a {
    display: block;
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    height: 0;
}

.pro-img a img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s-img {
    display: none;
}

@media only screen and (max-width: 420px) {
    .companyInfo.s {
        display: none;
    }

    .s-img {
        display: block;
    }
}


.right_nav_bar {
    position: fixed;
    right: 0;
    bottom: 15px;
    z-index: 10001;
    width: 57px;
    display: none;
}

.right_nav_bar li {
    position: relative;
    list-style: outside none none;
    float: left;
    height: 54px;
    width: 57px;
    background-color: #323232;
}

.right_nav_bar li:hover .icons {
    width: auto;
    background-color: #FF9900;
    font-size: 14px;
    color: #fff;
    top: 0;
}

.right_nav_bar .icons {
    height: 54px;
    width: 57px;
    float: left;
    position: absolute;
    right: 0;
    transition: all 0.3s ease 0s;
    overflow: hidden;
    word-break: keep-all;
    white-space: nowrap;
}

.right_nav_bar span.title {
    padding-right: 10px;
    color: #fff;
    position: relative;
    font-size: 16px;
    top: -20px;
}

.right_nav_bar .phone-icon span.title {
    top: -18px;
    font-size: 22px;
}

.right_nav_bar i.icon {
    background-repeat: no-repeat;
    height: 54px;
    width: 57px;
    display: inline-block;
    background-position: center center;
    -webkit-background-size: 30px 30px;
    background-size: 30px 30px;
}

.black.right_nav_bar span.title {
    color: #fff;
}

.right_nav_bar .wx-icon i {
    background-image: url(../images/wx.png);
}

/*.right_nav_bar .zixun-icon i {
  background-image: url(../images/wx.png);
}*/

.right_nav_bar .phone-icon i {
    background-image: url(../images/phone.png);
}

.right_nav_bar .top-icon i {
    background-image: url(../images/js-top.png);
}

.right_nav_bar .qr {
    position: absolute;
    left: -215px;
    top: -48px;
    width: 150px;
    height: 150px;
    display: none;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}

.right_nav_bar .qr img {
    display: block;
    width: 100%;
    height: 100%;
}

.right_nav_bar .wx:hover .qr {
    display: block;
}

.js-top {
    width: 57px;
    height: 54px;
    display: block;
    text-align: center;
    line-height: 56px;
    cursor: pointer;
}

@media only screen and (max-width: 1230px) {
    .right_nav_bar {
        display: none;
    }
}