@charset 'utf-8';
/* CSS Document */

body {
 --green: #2ba245;
 --lightgrey: #f6f6f6;
 --grey: #8799a3;
 --gray:#ededed;
 --black: #333333;
 --grey: #8799a3;
 --white:#fff;
 --darkgreen: #2ba245;
}
body, html {
    padding: 0;
    margin: 0;
}
body {

    background: var(--white);
    min-width: 1200px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 100%;
}
a {
    color: inherit;
    text-decoration: none;
    color: var(--black);
    cursor: pointer;
}
a:hover {
    color: var(--green);
    transform: scale(1.1, 1.1);
    transition: all 0.3s;
}
a:focus {
    text-decoration: none;
    outline: none;
}
ul, ol, li {
    margin: 0;
    list-style-type: none;
}
body, button, input, select, textarea {
    /*font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif", \65B0\5B8B\4F53;*/
    font-family: "Arial";
    line-height: 1.4;
    margin: 0;
    color: var(--black);
    border: 0;
    outline: none;
    -webkit-text-size-adjust: none;
    -webkit-appearance: none;
}
input, textarea {
    -webkit-appearance: none;
}
a:focus, a:active, button::-moz-focus-inner, input[type='reset']::-moz-focus-inner, input[type='button']::-moz-focus-inner, input[type='submit']::-moz-focus-inner, select::-moz-focus-inner, input[type='file'] > input[type='button']::-moz-focus-inner {
 border: 0;
 outline: 0;
}
label {
    font-weight: normal;
    margin-bottom: 0;
}
img {
    vertical-align: middle;
}
/* ==================
          布局
 ==================== */

/*  -- flex弹性布局 -- */

.flex {
    display: flex;
}
.basis-xs {
    flex-basis: 20%;
}
.basis-sm {
    flex-basis: 40%;
}
.basis-df {
    flex-basis: 50%;
}
.basis-lg {
    flex-basis: 60%;
}
.basis-xl {
    flex-basis: 80%;
}
.flex-sub {
    flex: 1;
}
.flex-twice {
    flex: 2;
}
.flex-treble {
    flex: 3;
}
.flex-direction {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.align-start {
    align-items: flex-start;
}
.align-end {
    align-items: flex-end;
}
.align-center {
    align-items: center;
}
.align-stretch {
    align-items: stretch;
}
.self-start {
    align-self: flex-start;
}
.self-center {
    align-self: flex-center;
}
.self-end {
    align-self: flex-end;
}
.self-stretch {
    align-self: stretch;
}
.align-stretch {
    align-items: stretch;
}
.justify-start {
    justify-content: flex-start;
}
.justify-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
/*  -- 内外边距 -- */

.margin-0 {
    margin: 0;
}
.margin-xs {
    margin: 10px;
}
.margin-sm {
    margin: 20px;
}
.margin {
    margin: 30px;
}
.margin-lg {
    margin: 40px;
}
.margin-xl {
    margin: 50px;
}
.margin-top-xs {
    margin-top: 10px;
}
.margin-top-sm {
    margin-top: 20px;
}
.margin-top {
    margin-top: 30px;
}
.margin-top-lg {
    margin-top: 40px;
}
.margin-top-xl {
    margin-top: 50px;
}
.margin-right-xs {
    margin-right: 10px;
}
.margin-right-sm {
    margin-right: 20px;
}
.margin-right {
    margin-right: 30px;
}
.margin-right-lg {
    margin-right: 40px;
}
.margin-right-xl {
    margin-right: 50px;
}
.margin-bottom-xs {
    margin-bottom: 10px;
}
.margin-bottom-sm {
    margin-bottom: 20px;
}
.margin-bottom {
    margin-bottom: 30px;
}
.margin-bottom-lg {
    margin-bottom: 40px;
}
.margin-bottom-xl {
    margin-bottom: 50px;
}
.margin-left-xs {
    margin-left: 10px;
}
.margin-left-sm {
    margin-left: 20px;
}
.margin-left {
    margin-left: 30px;
}
.margin-left-lg {
    margin-left: 40px;
}
.margin-left-xl {
    margin-left: 50px;
}
.margin-lr-xs {
    margin-left: 10px;
    margin-right: 10px;
}
.margin-lr-sm {
    margin-left: 20px;
    margin-right: 20px;
}
.margin-lr {
    margin-left: 30px;
    margin-right: 30px;
}
.margin-lr-lg {
    margin-left: 40px;
    margin-right: 40px;
}
.margin-lr-xl {
    margin-left: 50px;
    margin-right: 50px;
}
.margin-tb-xs {
    margin-top: 10px;
    margin-bottom: 10px;
}
.margin-tb-sm {
    margin-top: 20px;
    margin-bottom: 20px;
}
.margin-tb {
    margin-top: 30px;
    margin-bottom: 30px;
}
.margin-tb-lg {
    margin-top: 40px;
    margin-bottom: 40px;
}
.margin-tb-xl {
    margin-top: 50px;
    margin-bottom: 50px;
}
.padding-0 {
    padding: 0;
}
.padding-xs {
    padding: 10px;
}
.padding-sm {
    padding: 20px;
}
.padding {
    padding: 30px;
}
.padding-lg {
    padding: 40px;
}
.padding-xl {
    padding: 50px;
}
.padding-top-xs {
    padding-top: 10px;
}
.padding-top-sm {
    padding-top: 20px;
}
.padding-top {
    padding-top: 30px;
}
.padding-top-lg {
    padding-top: 40px;
}
.padding-top-xl {
    padding-top: 50px;
}
.padding-right-xs {
    padding-right: 10px;
}
.padding-right-sm {
    padding-right: 20px;
}
.padding-right {
    padding-right: 30px;
}
.padding-right-lg {
    padding-right: 40px;
}
.padding-right-xl {
    padding-right: 50px;
}
.padding-bottom-xs {
    padding-bottom: 10px;
}
.padding-bottom-sm {
    padding-bottom: 20px;
}
.padding-bottom {
    padding-bottom: 30px;
}
.padding-bottom-lg {
    padding-bottom: 40px;
}
.padding-bottom-xl {
    padding-bottom: 50px;
}
.padding-left-xs {
    padding-left: 10px;
}
.padding-left-sm {
    padding-left: 20px;
}
.padding-left {
    padding-left: 30px;
}
.padding-left-lg {
    padding-left: 40px;
}
.padding-left-xl {
    padding-left: 50px;
}
.padding-lr-xs {
    padding-left: 10px;
    padding-right: 10px;
}
.padding-lr-sm {
    padding-left: 20px;
    padding-right: 20px;
}
.padding-lr {
    padding-left: 30px;
    padding-right: 30px;
}
.padding-lr-lg {
    padding-left: 40px;
    padding-right: 40px;
}
.padding-lr-xl {
    padding-left: 50px;
    padding-right: 50px;
}
.padding-tb-xs {
    padding-top: 10px;
    padding-bottom: 10px;
}
.padding-tb-sm {
    padding-top: 20px;
    padding-bottom: 20px;
}
.padding-tb {
    padding-top: 30px;
    padding-bottom: 30px;
}
.padding-tb-lg {
    padding-top: 40px;
    padding-bottom: 40px;
}
.padding-tb-xl {
    padding-top: 50px;
    padding-bottom: 50px;
}
/*  -- web css -- */
.pagination li{
    display: inline-block;
}
.navtop {
    background: var(--white);
}
.top li {
    font-size: 12px;
}
.navtop ul {
    max-width: 1200px;
    margin: 0 auto
}
.border-bottom {
    position: relative
}
.border-bottom::after {
    content: "";
    bottom: 0;
    border-bottom: rgba(0,0,0,0.08) solid 1px;
    width: 100%;
    left: 0;
    position: absolute;
}
.top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.5rem 0;
}
.top li {
    display: flex;
    place-items: center;
    padding: 0 2rem;
}
.top .i-tel {
    background: url("../images/icon-dianhua@3x.png") no-repeat center;
    background-size: auto 100%
}
.top .i-fax {
    background: url("../images/icon-chuanzhenji@3x.png") no-repeat center;
    background-size: auto 100%
}
.top .i-email {
    background: url("../images/icon-email@3x.png") no-repeat center;
    background-size: auto 90%
}
.top .i-app {
    background: url("../images/icon-taolunqu@3x.png") no-repeat center;
    background-size: auto 100%
}
.top span {
    display: inline-block;
    width: 18px;
    height: 12px;
    margin-right: 6px
}
.top .luage span {
    width: auto;
    height: auto;
    margin-right: auto;
    padding: 0 0.5rem;
}
.top .luage {
    background: #e5e5e5;
    border-radius: 100em;
    padding: 0 0;
    cursor: pointer
}
.top .luage .act {
    background: var(--green);
    border-radius: 100em;
    color: var(--white)
}
.Menu {
    padding: 0.5rem 0;
}
.Menu li {
    flex: 1;
    display: flex;
    place-items: center;
    justify-content: center;
}
.Menu li a {
    font-size: 120%;
}
.Menu .act {
    position: relative
}
.Menu .act a {
    color: var(--green);
    display: block
}
.Menu .act::after, .Menu .act::before {
    content: "";
    position: absolute;
    bottom: 20%
}
.Menu .act::after {
    border-bottom: var(--green) solid 2px;
    width: 60%;
}
.Menu .act::before {
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: var(--green) transparent transparent;
    bottom: 12%;
}
.Menu ul {
    flex: 3;
}
.Menu ol {
    flex: 1;
}
.bannerbx {
    width: 100%;
    min-height: 400px;
    background: #f1f1f1;
}
.bannerbx .swiper-wrapper{
    width: 100%;
}
.bannerbx .swiper-slide{
    width: 100%;
}
.bannerbx img{
    width: 100%;
}
.productbxA {
    margin-top: 20px;
    position: relative;
    background: url("../images/p-bg.jpg") no-repeat center bottom;
    background-size: 100% auto;
    padding-bottom: 80px;
}
.productbxA .gallery-top .swiper-container {
    margin-left: auto;
    margin-right: auto;
}
.productbxA .gallery-top .swiper-slide {
    width: 540px;
    padding: 40px;
    position: relative;
    z-index: 0;
    top: 70px
}
.productbxA .gallery-top .swiper-wrapper {
}
.productbxA .gallery-top .swiper-slide-active {
    top: 0!important
}
.product-content {
    background: #fff;
    box-shadow: rgba(0,112,70,.35) 0 0 54px;
    position: relative;
    height: 100%;
    width: 100%;
}
.productbxA .gallery-top {
    width: 1150px;
}
.productbxA .gallery-thumbs {
    width: 85%;
    margin: 0 auto
}
.productbxA .gallery-thumbs .swiper-slide {
    width: 100%;
    opacity: 0.4;
}
.xjpic {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}
.xjpic li {
    width: calc((100% - 8%)/4);
    padding-bottom: calc((100% - 8%)/4);
    box-shadow: rgba(0,0,0,0.15) 0 0 8px;
    margin: 1%;
    overflow: hidden;
    position: relative
}
.xjpic li div {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 70px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}
.xjpic li div span {
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.productbxA .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}
.xjpic li img, .customerlogo li img, .probx dd img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.productbxA .gallery-thumbs .swiper-wrapper {
}
.productbxA .gallery-top .swiper-slide-active::after {
    display: none
}
.productbxA .gallery-top .swiper-slide::after {
    position: absolute;
    width: 100%;
    height: 75%;
    bottom: 0;
    background: var(--darkgreen);
    content: "";
    left: 0;
    z-index: -1;
}
.product-content li {
    height: 460px;
    width: 100%;
    overflow: hidden;
    padding: 20px;
    overflow: hidden
}
.product-content li img {
	width: 100%;
    height: 100%;
}
.product-content ol {
    text-align: center;
    padding: 0px 20px 50px 20px;
    display: none;
}
.product-content h3 {
    padding: 20px;
    color: var(--darkgreen);
    text-transform : uppercase;
    font-size: 150%;
    line-height: 1.2;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-content a {
    color: var(--darkgreen);
    display: inline-block;
    border: var(--darkgreen) solid 1px;
    border-radius: 100em;
    text-transform : uppercase;
    margin: 0 auto;
    padding: 6px 40px;
}
.swiper-slide-active .product-content ol {
    display: block
}
.productbxA .swiper-button-next.swiper-button-white, .productbxA .swiper-button-prev.swiper-button-white {
    background: rgba(0,0,0,.45);
    width: 70px;
    height: 70px;
    border-radius: 100em;
    -webkit-transform: scale(1);/*bottom:10%;
	top:auto;*/
}
.productbxA .swiper-button-next.swiper-button-white {
    right: 310px
}
.productbxA .swiper-button-prev.swiper-button-white {
    left: 310px
}
.Title {
    margin-top: 5vw;
    text-align: center;
    position: relative;
    text-transform : uppercase;
	overflow: hidden;
}
.Title h1 {
    font-size: 250%;
    color: var(--darkgreen);
    z-index: 1;
}
.Title h1::after, .Title h1::before {
    content: "";
    display: inline-block;
    width: 120px;
    border-bottom: var(--darkgreen) 1.5px solid;
    margin: 0 10px 6px 10px
}
.Title span {
    font-size: 250%;
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: -1;
    font-weight: bolder;
    color: var(--lightgrey);
    white-space: nowrap;
}
.T-left {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    background: url("../images/dots.png") no-repeat center right;
    background-size: auto 16%;
}
.T-left span {
    left: 0;
    transform: translateX(0%);
}
.T-left h1::before {
    display: none
}
.iaboutbx {
    background: url("../images/about-bg.jpg") no-repeat top left #333;
    background-size: 100% auto;
    position: relative;
    z-index: 0;
    padding: 0;
}
.iaboutbx::after, .iaboutbx::before {
    content: "";
    z-index: -2;
    position: absolute;
    bottom: 0;
}
.iaboutbx::after {
    background: #000;
    height: 60px;
    width: 100%;
}
.iaboutbx::before {
    right: 0;
    width: 47%;
    top: 0;
    background: rgba(0,0,0,0.29)
}
.iaboutbx .Title span {
    color: var(--darkgreen);
}
.iaboutbx .Title h1 {
    color: var(--white);
}/*
.iaboutbx  .Title h1::after, .Title h1::before {

    border-bottom-color: var(--white)
}*/
.iaboutbx .right-content {
    padding: 6vw 5vw 5vw 5vw;
}
.about-content {
    color: rgba(255,255,255,0.8);
    text-align: justify;
}
/*.p:first-letter {*/
/*    font-size: 500%;*/
/*    font-weight: bolder;*/
/*    text-transform : uppercase;*/
/*    float: left;*/
/*    margin-top: -4%;*/
/*    line-height: 1;*/
/*    margin-right: 10px*/
/*}*/
.about-content p {
    margin-bottom: 35px;
    line-height: 2
}
.moreA {
    display: inline-block;
    color: var(--green)
}
.moreA:hover {
}
.moreA::before {
    content: "";
    display: block;
    width: 60px;
    border-top: var(--green) solid 1px;
}
.video {
    position: relative;
    width: 100%;
    height: 680px;
    margin-top: 70px
}
.video video {
    width: 100%!important;
    height: 100%!important;
}
.video::after {
    position: absolute;
    width: 102%;
    height: 97%;
    border: var(--darkgreen) 1px dotted;
    border-left: none;
    left: 0;
    top: -4%;
    z-index: -1;
    content: "";
    margin-bottom: 6px;
}
.ilist {
    width: 85%;
    margin: 20px auto 0 auto
}
.ilist ul {
    border: var(--gray) solid 1px;
    box-shadow: none;
    padding: 1.8%;
    width: calc((100% - 4%)/3);
}
.ilist li {
    position: relative;
    padding-bottom: calc((100% - 4%)/1.5);
    overflow: hidden;
}
.ilist li img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.ilist ol {
}
.ilist h3 {
    font-size: 80%;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    line-height: 2;
    margin-top: 2%;
    text-transform: uppercase
}
.ilist p {
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: justify;
    font-size: 90%;
}
.ilist ol a {
    background: var(--darkgreen);
    text-align: center;
    color: var(--white);
    margin-top: 5%;
    display: block;
    line-height: 3;
    border-radius: 4px;
    text-transform: uppercase
}
.news {
    background: var(--gray) url("../images/rnewsight-bg.jpg") no-repeat bottom right;
    background-size: auto 100%;
    min-height: 300px;
    padding-top: 0.1%;
    padding-bottom: 5%;
    margin-top: 5%;
    position: relative;
    z-index: 0
}
.news .Title span {
    color: rgba(255,255,255,0.45);
}
.news .ilist ul {
    border: var(--gray) solid 1px;
    box-shadow: none;
    padding: 1.8%;
    width: calc((100% - 0%)/4);
    background: var(--white)
}
.news .ilist li {
    padding-bottom: calc((100% - 0%)/1.5);
}
.news .ilist h3 {
    font-size: 130%;
    white-space: pre-wrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    line-height: 1.3;
    margin-top: 6%;
    margin-bottom: 2%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news .ilist p {
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: justify;
    font-size: 90%;
}
.time {
    display: block;
    font-size: 90%;
    background: url("../images/dots.png") no-repeat center right;
    background-size: auto 20%;
}
.news .time {
    margin-top: 4%;
}
.news a:hover p, .news a:hover span, .entry-item a:hover p, .entry-item a:hover span {
    color: var(--black);
}
.news .Title {
    background: none
}
.news .T-left a {
    float: right;
    color: var(--green);
    border: var(--green) solid 1PX;
    padding: 4px 2%;
    border-radius: 80em;
    margin-top: 1%
}
.foot {
    padding: 5% 3%;
    background: var(--darkgreen);
    position: relative;
    z-index: 0;
}
.foot::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: -1;
}
.foot>div {
    margin: 0 2%;
}
.foot h2 {
    color: #fff;
    font-size: 140%;
    margin-bottom: 6%;
    text-transform: uppercase;
}
.from {
    display: block;
    padding-top: 3%
}
.from input, .from textarea {
    background: none;
    border: solid 1px rgba(255,255,255,0.9);
    width: 100%;
    padding: 7px 10px;
    margin: 0 0 6px 0;
    color: var(--white)
}
.from ::-webkit-input-placeholder {
color:var(--white);
}
.from textarea {
    min-height: 6vw
}
.from button {
    background: var(--darkgreen);
    color: var(--white);
    padding: 2% 4%;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 105%;
    cursor: pointer
}
.from button:hover {
    transform: scale(1.1, 1.1);
    transition: all 0.3s;
}
.from button:active {
    background: var(--green);
}
.icontact p {
    color: var(--white);
    padding: 1% 0;
    line-height: 2;
    letter-spacing: 1px;
    font-size: 14px;
}
.mapbx {
    display: grid;
    place-items: center;
}
.video-case {
    position: relative;
    z-index: 1;
}
.video-case::after, .video-case::before {
    content: "";
    position: absolute;
}
.video-case::after {
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%
}
.video-case::before {
    width: 80px;
    height: 80px;
    border: #fff solid 2px;
    border-radius: 100em;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    top: 50%;
    z-index: 3;
    background: url("../images/bf.png") no-repeat center;
    background-size: auto 70%;
}
.sbanner {
    background: url("../images/banner1.jpg") center 0 no-repeat;
    background-size: 100% auto;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.sbanner::after {
    background: rgba(0,112,70,0.5);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}
.navbx {
    width: 1200px;
    margin: 0 auto;
    text-transform: uppercase;
}
.navbx h2 {
    color: #fff;
    font-size: 180%;
    font-weight: normal;
    letter-spacing: 2px;
}
.navbx span {
    font-size: 600%;
    position: absolute;
    color: rgba(255,255,255,0.08);
    top: 0;
    bottom: 0;
    z-index: -1;
    line-height: 2.8;
}
.w {
    width: 1200px;
    margin: 0 auto
}
.abus-txt {
    padding: 4% 8% 4% 4%
}
.abus-txt p {
    margin-bottom: 2vw;
    text-align: justify
}
.aboutimg img {
    width: 100%;
    height: 100%
}
.customer {
    background: url("../images/banner-bg.jpg") center no-repeat;
    background-attachment: fixed;
    background-size: 100% auto;
    padding-top: 25px;
    padding-bottom: 84px;
    position: relative;
    z-index: 1;
}
.customer::after {
    background: rgba(255,255,255,0.8);
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: -2;
    content: "";
    top: 0;
    -webkit-filter: blur(5px);
}
.au-content {
    padding: 60px 0 60px 0;
}
.customerlogo {
    margin-top: 40px
}
.customerlogo li {
    width: calc((100% - 4%)/5);
    /*padding-bottom: calc((100% - 4%)/4);*/
    height: auto;
    position: relative;
    margin-bottom: 1%
}
.customerlogo li img{
    width: 100% !important;
    height: auto !important;
    position: inherit !important;
}
.sNav {
    padding: 2% 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sNav a {
    padding: .2% 1%;
    margin: 0 0.2%;
    border: var(--gray) solid 1px;
    border-radius: 100em;
}
.sNav a:hover, .sNav a.act {
    background: var(--green);
    color: var(--white);
}
.sNav a.act:hover {
    transform: scale(1, 1);
}
.probx, .entry-item {
    padding: 0 4%;
    margin: 0 auto 2% auto;
}
.probx dl {
    width: calc((100% - 8%)/4);
    margin: 1% 1% 0 1%
}
.probx dl dd {
    padding-bottom: calc((100% - 8%)/1);
    position: relative;
    border: var(--gray) solid 1px
}
.probx dl dt {
    padding: 2%;
    display: grid;
    place-items: center;
    height: 13%;
}
.probx dl span {
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: center
}
.paging {
    margin: 5% auto 5% auto;
}
.paging, .paging span, .paging a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.paging span, .paging a {
    border: var(--gray) solid 1px;
    padding: 6px 16px;
    height: 30px;
    ;
    cursor: pointer
}
.paging span.prev::before, .paging span.next::before {
    content: "";
    height: 9px;
    width: 9px;
    border-top: #ddd solid 2px
}
.paging span.prev::before {
    transform: rotate(-45deg);
    border-left: #ddd solid 2px;
}
.paging span.next::before {
    transform: rotate(45deg);
    border-right: #ddd solid 2px;
}
.paging .act, .paging span:hover, .paging a:hover {
    border: var(--darkgreen) solid 1px;
    color: var(--white);
    background: var(--darkgreen);
    transform: scale(1, 1);
}
.entry-item>ul {
    width: calc((100% - 6%)/2);
    margin: 1% 1% 1% 1%
}
.entry-item .time {
    margin-top: 1%;
}
.service ol {
    margin-top: -2.5%
}
.fromA {
    display: block;
    width: 800px;
    margin: 0 auto
}
.fromA dd {
    display: flex;
    align-items: center;
    margin: 8px 0
}
.fromA dd label {
    width: 15%;
}
.fromA dd input, .from dd textarea {
    flex: 1;
    border: var(--grey) solid 1px;
    border-radius: 4px;
    margin-bottom: 0;
    color: var(--black);
}
.fromA dd img {
    height: 30px;
    margin-left: 20px
}
 .fromA ::-webkit-input-placeholder {
color:var(--black);
}
.fromA button {
    padding: 1% 4%;
    margin: 5% auto;
    display: block;
    width: 20%;
}
.cusactbx {
    background: url("../images/banner-bg.jpg") no-repeat left;
    background-size: 100% 100%;
    padding-left: 45%;
}
.cusactbx>div {
    background: #fff;
    padding: 10%;
    border-radius: 0 0 0 0;
    box-shadow: rgba(0,112,70,0.2) 0 0 25px;
    line-height: 2
}
.cusactbx h2 {
    font-size: 150%;
}
.cusactbx dl {
    margin-top: 5%;
    padding-top: 5%;
    border-top: #ddd dotted 1px
}
.contactbx {
    padding: 20px;
    margin: 0 auto;
    width: 1200px;
}
.TitleB {
    text-align: center;
    margin-bottom: 3%
}
.TitleB h1 {
    font-size: 180%;
    padding: 6% 6% 1% 6%;
}
.TitleB p {
    border-bottom: #ddd solid 1px;
    padding-bottom: 2%
}
.TitleB span {
    display: inline-block;
    margin: 0 8px
}
.contact-box p, .pro-c p {
    /*text-indent: 45px;*/
    margin-bottom: 30px;
    /*text-align: justify*/
}
.contact-box img {
    max-width: 100%;
}
.contactbx {
    padding-bottom: 5%
}
.navbx .wz {
    font-size: 14px;
    font-weight: inherit
}
.navbx .wz i {
    font-style: normal!important;
    margin: 0 4px
}
.navbx h2 {
    align-items: center;
    display: flex;
    justify-content: space-between
}
.pro-container {
    width: 900px;
    margin: 0 auto 2% auto
}
.pro-container .gallery-top {
    width: 100%;
    position: relative;
}
.pro-container .swiper-slide {
    overflow: hidden
}
.pro-container .gallery-top .swiper-slide {
    padding-bottom: calc((100% - 0px)/1.5)
}
.pro-container .gallery-thumbs {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
}
.pro-container .gallery-thumbs .swiper-slide {
    padding-bottom: calc((100% - 0px)/5.5)
}
.pro-container .gallery-thumbs .swiper-slide {
    width: calc((100% - 0px)/4);
    opacity: 0.4;
}
.pro-container .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}
.pro-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    height: 100%;
    width: 100%
}
.c-table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
}
.c-table td, .c-table th {
    border: #ddd solid 1px;
    padding: 10px;
    text-align: center
}
.c-table tr td:first-child {
    background: rgba(0,0,0,0.05)
}
.pro-c {
    padding-bottom: 5%
}
.txt-left {
    text-align: left
}
.TitleC h1 {
    font-size: 180%;
    padding: 6% 6% 3% 0;
    margin-bottom: 3%
}
.TitleC {
    padding-left: 16px;
    position: relative;
    padding-left: 50px
}
.TitleC h1::before {
    width: 8px;
    background: var(--darkgreen);
    content: "";
    position: absolute;
    left: 10px;
    top: 35%;
    bottom: 16%;
    border-radius: 100px;
}
.pro-case {
    width: 1200px;
    margin: 0 auto;
    height: 650px;
    margin-bottom: 3%
}
.pro-case video {
    width: 100%;
    height: 100%;
}



.chanpin_a{
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #000;
    padding: 50px 0 50px 0;
}
.in_chanpin_a{
    width: 1200px;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
}
.in_chanpin_a1{
    width: 100%;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    color: #fff;
    font-size: 28px;
}
.in_chanpin_a2{
    width: 100%;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    color: #fff;
    font-size: 25px;
}
.in_chanpin_a3{
    width: 100%;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    color: #fff;
    font-size: 25px;
}
.in_chanpin_a4{
    width: 100%;
    padding-top: 20px;
    text-align: center;
    overflow: hidden;
    display: block;
}
.in_chanpin_a4 img{
    max-width: 100%;
    display: inline-block;
}
.in_chanpin_a5{
    width: 100%;
    padding-top: 20px;
    text-align: center;
    overflow: hidden;
    display: none;
}
.in_chanpin_a5 img{
    max-width: 100%;
    display: inline-block;
}
.in_chanpin_a6{
    width: 100%;
    padding-top: 20px;
    text-align: center;
    display: block;
    text-align: center;
}
.tubiao{
    width: 65px;
    height: 65px;
    display: inline-block;
    position: relative;
    margin: 10px;
}
.tubiao img{
    width: 100%;
}
.tubiao span{
    width: 180px;
    line-height: 28px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    bottom: 80px;
    z-index: 99;
    display: none;
    left: -56px;
}
.tubiao:hover span{
    display: block;
}
.tubiao span:after{
    content: "";
    display: block;
    background: url(../images/sj.png) no-repeat top center;
    width: 30px;
    height: 30px;
    position: absolute;
    background-size: contain;
    left: 50%;
    margin-left: -15px;
    bottom: -18px;
}

.chanpin_b{
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #2ba246;
    padding: 50px 0 50px 0;
}
.in_chanpin_b{
    width: 1200px;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
}
.in_chanpin_b1{
    width: 100%;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    color: #fff;
    font-size: 28px;
}
.in_chanpin_b2{
    width: 100%;
    padding-top: 20px;
    overflow: hidden;
}
.in_chanpin_b2_box{
    width: 33.3%;
    height: auto;
    overflow: hidden;
    display: inline-block;
    padding-bottom: 20px;
    float: left;
}
.in_chanpin_b2_box1{
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    text-align: center;
}
.in_chanpin_b2_box1 img{
    width: 70px;
    height: auto;
    display: inline-block;
}
.in_chanpin_b2_box2{
    width: 100%;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    padding: 0 20px;
}
.in_chanpin_b2_box3{
    width: 100%;
    padding: 0 15%;
    line-height: 28px;
    text-align: center;
    overflow: hidden;
    color: #fff;
    font-size: 13px;
}
.chanpin_c{
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #f0f8ff;
    padding: 50px 0 50px 0;
}
.in_chanpin_c{
    width: 1200px;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
}
.in_chanpin_c1{
    width: 100%;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    color: #333;
    font-size: 28px;
}
.in_chanpin_c2{
    width: 100%;
    padding-top: 20px;
    overflow: hidden;
}
.in_chanpin_c2_left{
    width: 50%;
    height: auto;
    overflow: hidden;
    float: left;
    line-height: 28px;
    color: #333;
    font-size: 14px;
    padding-top: 30px;
    word-break: break-word;
}
.in_chanpin_c2_right{
    width: 50%;
    height: auto;
    overflow: hidden;
    float: right;
    padding-left: 5%;
}
.in_chanpin_c2_right img{
    width: 100%;
    height: auto;
}
.chanpin_d{
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #dcdcdc;
    padding: 50px 0 50px 0;
}
.in_chanpin_d1{
    width: 100%;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    color: #000;
    font-size: 28px;
}
.in_chanpin_d{
    width: 1200px;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
}
.in_chanpin_d2{
    width: 100%;
    padding-top: 20px;
    overflow: hidden;
}
.in_chanpin_d2_right{
    width: 50%;
    height: auto;
    overflow: hidden;
    float: right;
    line-height: 28px;
    color: #000;
    font-size: 14px;
    padding-top: 30px;
    word-break: break-word;
}
.in_chanpin_d2_left{
    width: 50%;
    height: auto;
    overflow: hidden;
    float: left;
    padding-right: 5%;
}
.in_chanpin_d2_left img{
    width: 100%;
    height: auto;
}
.chanpin_e{
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #010101;
    padding: 50px 0 50px 0;
}
.in_chanpin_e{
    width: 1200px;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
}
.in_chanpin_e1{
    width: 100%;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    color: #fff;
    font-size: 20px;
}
.in_chanpin_e2{
    width: 100%;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    color: #fff;
    font-size: 28px;
}
.in_chanpin_e2 img{
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10px 0;
}
.in_chanpin_e3{
    width: 100%;
    overflow: hidden;
}
.in_chanpin_e3 img{
    width: 100%;
    height: auto;
}
.chanpin_f{
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #1e1e1e;
    padding: 50px 0 50px 0;
}
.in_chanpin_f{
    width: 1200px;
    margin: 0 auto;
    height: auto;
}
.in_chanpin_f1{
    width: 100%;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 28px;
}
.in_chanpin_f2{
    width: 100%;
}
.yingyong_left{
    width: 298px;
    height: auto;
    float: left;
}
.yltubiao{
    width: 140px;
    height: auto;
    display: inline-block;
    position: relative;
    margin: 4px;
    float: left;
}
.yltubiao img{
    width: 100%;
}
.yltubiao span{
    width: 180px;
    line-height: 28px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    bottom: 80px;
    z-index: 99;
    display: none;
    left: -20px;
}
.yltubiao:hover span{
    display: block;
}
.yltubiao span:after{
    content: "";
    display: block;
    background: url(../images/sj.png) no-repeat top center;
    width: 30px;
    height: 30px;
    position: absolute;
    background-size: contain;
    left: 50%;
    margin-left: -15px;
    bottom: -18px;
}
.yingyong_middle{
    width: 31%;
    display: inline-block;
    vertical-align: top;
    background-color: #3e3e3e;
    border: 1px solid #656565;
    padding: 14px 10px 4px;
    margin-bottom: 10px;
    text-align: center;
    min-height: 384px;
    margin-top: 4px;
}
.ymtubiao{
    width: 140px;
    height: auto;
    display: inline-block;
    position: relative;
    margin: 4px;
}
.ymtubiao div {
    width: 100%;
    line-height: 28px;
    padding: 0 10px;
    color: #fff;
    word-break: break-word;
}
.ymtubiao img{
    width: 100%;
}
.ymtubiao span{
    width: 180px;
    line-height: 28px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    bottom: 80px;
    z-index: 99;
    display: none;
    left: -20px;
    word-break: break-word;
}
.ymtubiao:hover span{
    display: block;
}
.ymtubiao span:after{
    content: "";
    display: block;
    background: url(../images/sj.png) no-repeat top center;
    width: 30px;
    height: 30px;
    position: absolute;
    background-size: contain;
    left: 50%;
    margin-left: -15px;
    bottom: -18px;
}
.yingyong_right{
    width: calc( 68% - 298px );
    height: auto;
    float: right;
    margin-top: 4px;
}
.rltubiao{
    display: inline-block;
    max-width: 120px;
    text-align: center;
    line-height: 18px;
    margin-bottom: 9px;
    padding-top: 6px;
    margin-right: 5px;
    background-color: #3e3e3e;
    border: 1px solid #656565;
    vertical-align: bottom;
    position: relative;
}
.rltubiao div {
    width: 100%;
    line-height: 28px;
    height: 28px;
    text-overflow: ellipsis;
    padding: 0 10px;
    color: #fff;
    word-break: break-word;
    font-size: 12px;
    overflow: hidden;
}
.rltubiao img{
    width: 73%;
}
.rltubiao span{
    width: 180px;
    line-height: 28px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    bottom: 80px;
    z-index: 99;
    display: none;
    left: -20px;
    word-break: break-word;
}
.rltubiao:hover span{
    display: block;
}
.rltubiao span:after{
    content: "";
    display: block;
    background: url(../images/sj.png) no-repeat top center;
    width: 30px;
    height: 30px;
    position: absolute;
    background-size: contain;
    left: 50%;
    margin-left: -15px;
    bottom: -18px;
}

.chanpin_g{
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #000;
    padding: 50px 0 50px 0;
}
.in_chanpin_g{
    width: 1200px;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
}
.in_chanpin_g1{
    width: 100%;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    color: #333;
    font-size: 20px;
}
.in_chanpin_g2{
    width: 100%;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    color: #fff;
    font-size: 28px;
}
.in_chanpin_g3{
    width: 100%;
    overflow: hidden;
}
.in_chanpin_g3 img{
    width: 100%;
    height: auto;
}
.chanpin_h{
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #1e1e1e;
    padding: 50px 0 50px 0;
}
.in_chanpin_h{
    width: 1400px;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
}
.in_chanpin_h1{
    width: 100%;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}
.in_chanpin_h2{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.in_chanpin_h2_box{
    width: 48%;
    line-height: 50px;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid #fff;
}
.in_chanpin_h2_box:nth-child(odd){
    float: left;
}
.in_chanpin_h2_box:nth-child(even){
    float: right;
}
.in_chanpin_h2_box1{
    width: 50%;
    line-height: 50px;
    font-size: 14px;
    color: #fff;
    float: left;
}
.in_chanpin_h2_box2{
    width: 50%;
    line-height: 50px;
    height: 50px;
    font-size: 14px;
    color: #fff;
    float: right;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.chanpin_i{
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #2ba245;
    padding: 50px 0 50px 0;
}
.in_chanpin_i{
    width: 1200px;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
}
.in_chanpin_i1{
    width: 100%;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}
.in_chanpin_i2{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.in_chanpin_i2_box{
    width: 49%;
    height: 80px;
    line-height: 40px;
    padding: 20px;
    background: #fff;
    margin-bottom: 15px;
}
.in_chanpin_i2_box:nth-child(odd){
    float: left;
}
.in_chanpin_i2_box:nth-child(even){
    float: right;
}
.in_chanpin_i2_box1{
    width: 80%;
    line-height: 40px;
    font-size: 14px;
    color: #333;
    float: left;
}
.in_chanpin_i2_box1 img{
    width: 26px;
    height: 26px;
    float: left;
    margin-right: 20px;
    margin-top: 7px;
}
.in_chanpin_i2_box2{
    width: 20%;
    line-height: 40px;
    font-size: 14px;
    color: #333;
    float: right;
    text-align: right;
}
.chanpin_j{
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #f0f8ff;
    padding: 50px 0 50px 0;
}
.in_chanpin_j{
    width: 1200px;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
}
.in_chanpin_j1{
    width: 45%;
    height: auto;
    overflow: hidden;
    float: left;
}
.in_chanpin_j1 img{
    width: 100%;
}
.in_chanpin_j2{
    width: 45%;
    height: auto;
    overflow: hidden;
    float: right;
}
.in_chanpin_j2_a{
    width: 100%;
    color: #333;
    font-size: 28px;
    padding-bottom: 80px;
}
.in_chanpin_j2_b{
    width: 100%;
    color: #666;
    font-size: 14px;
    padding-bottom: 30px;
}
.in_chanpin_j2_c{
    width: 100%;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
}
.in_chanpin_j2_d{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.select1{
    width: 100%;
    border: 1px solid #666;
    line-height: 28px;
    background: #fff;
    padding: 0 15px;
    border: 1px solid #666;
    color: #333;
    font-size: 14px;
}
.in_chanpin_j2_e{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 20px;
}
.in_chanpin_j2_e a{
    width: 200px;
    height: 50px;
    line-height: 50px;
    display: block;
    float: right;
    color: #fff;
    font-size: 18px;
    background: #004677;
    text-align: center;
}








