html {
    font-size: 12px;
    overflow-x: hidden;
}

html, body {
    position: relative;
    /*height: 100%;*/
    background: #F3F4F6;

}

a {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    text-decoration: none !important;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

em {
    font-style: normal;
}

ol, ul {
    list-style: none
}

li {
    display: list-item
}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, meter, nav, object, ol, output, p, pre, progress, q, rp, rt, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video, xmp {
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 100%;
}

body, button, input, select, textarea {
    font: 14px/1 Arial;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1); /* 初始状态和结束状态都是100%大小 */
    }
    50% {
        transform: scale(1.02); /* 中间状态是放大到150% */
    }
}

.containers {
    width: 1400px;
    margin: 0 auto;
}

.headers {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1040;
    background: #fff;
    box-shadow: 0 0 3px #ddd;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.headers .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
}

.headers .header .logo {
    /*height: 60px;*/
}

.headers .header .logo img {
    /*height: 61px;*/
}

.headers .header .navs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.headers .header .navs .nav-item {
    /*height: 90px;*/
    /*line-height: 90px;*/
    position: relative;
    padding: 20px 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}
.headers .header .navs .nav-item .children {
    position: absolute;
    left: 0;
    top: 52px;
    background: rgba(20,94,165,0.8);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    white-space: nowrap;
    z-index: 999;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    overflow: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .navs .nav-item:hover .children {
    padding: 30px 10px;
    height: auto !important;
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .navs .nav-item .children a {
    padding: 7px 0;
    font-size: 16px;
    color: #fff;
}
.headers .header .navs .nav-item .children a:hover {
    color: #cccccc;
}
.headers .header .navs .nav-item .item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.headers .header .navs .nav-item:hover .item, .headers .header .navs .nav-item.active .item {
    color: #145EA5;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .navs .nav-item .item span {
    width: 10px;
    height: 6px;
    background-image: url("../image/s.png");
    background-repeat: no-repeat;
    background-position: -10px 0;
    margin-left: 5px;
    margin-top: 2px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .navs .nav-item:hover .item span {
    background-position: 0 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .navs .nav-item span.n-span {
    background: none;
}

.headers .header .navs .search {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 40px;
    margin-left: 20px;
    border-left: 1px solid #eee;
    height: 90px;
}
.language {
    padding-left: 20px;
}
.language .btn {
    background-image: linear-gradient(to bottom, #F2F2F2, #ffffff);
    border: 1px solid #ddd;
    padding: 2px 12px;
}
.language .dropdown-menu > li > a {
    padding: 5px 12px;
}
.lan-text {
    display: inline-block;
    font-size: 16px;
    color: #777;
    width: 92px;
    text-align: left;
}
.lan-icon {
    width: 24px;
    margin-right: 5px;
}

.banners {
    width: 100%;
}

.banners .banner {
    height: 700px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banners .banner .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    height: 700px;
}

.banners .banner .swiper-wrapper .swiper-slide .image {
    width: 100%;
    background-size: cover;
    background-position: center;
    height: 100%;
}

.banners .banner .swiper-wrapper .swiper-slide .image.image-pc {
    display: block;
}

.banners .banner .swiper-wrapper .swiper-slide .image.image-wap {
    display: none;
}

.banners .banner .swiper-pagination-banner {
    position: absolute;
    z-index: 999;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0;
    bottom: 15px;
}

.banners .banner .swiper-pagination-banner .swiper-pagination-bullet {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    margin: 0 5px;
    outline: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #fff;
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.banners .banner .swiper-pagination-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 5px;
    border: 1px solid #145EA5;
    background-color: #145EA5;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}


.section-abouts {
    padding: 60px 0 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #fff;
    /*background-image: url(../image/about_bg.jpg);*/
    /*background-position: center bottom;*/
    /*background-repeat: no-repeat;*/
}

.section-abouts.section-aboutsx {
    padding: 40px 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: none;
    margin-top: 0;
}

.abouts {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.abouts .box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.abouts .box .image {
    width: 800px;
    height: 516px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abouts .box .image img {
    width: 800px;
    height: 513px;
}

.abouts .box .bx {
    width: calc(100% - 920px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    margin-top: 60px;
}

.abouts .box .bx .h3 {
    font-size: 36px;
    letter-spacing: 1px;
    color: #000;
    font-weight: bold;
    width: 100%;
}

.abouts .box .bx .h3 span {
    color: #2E851D;
}

.abouts .box .bx .intro {
    font-size: 14px;
    color: #111;
    line-height: 2;
    max-height: 360px;
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
}

.abouts .box .bx .intro p {
    text-indent: 2rem;
}

.abouts .box .bx .tags {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 30px 0 30px;
}

.abouts .box .bx .tags .tag-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}

.abouts .box .bx .tags .tag-item .nm {
    display: flex;
    align-items: center;
    justify-content: center;
}

.abouts .box .bx .tags .tag-item .nm .count {
    font-size: 48px;
    font-weight: bold;
    color: #2A4CAE;
}

.abouts .box .bx .tags .tag-item .nm .unit {
    font-size: 18px;
    color: #2A4CAE;
    margin-top: 20px;
    padding-left: 5px;
}

.abouts .box .bx .tags .tag-item .name {
    font-size: 17px;
    color: #000;
    margin-top: 10px;
}

.abouts .box .bx .about-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.abouts .box .bx .about-btn .about-link {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: #2A4CAE;
    border: 1px solid #2A4CAE;
    color: #fff;
    padding: 0 40px;
    border-radius: 30px;
    margin-top: 20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.abouts .box .bx .about-btn .about-link:hover {
    background: #fff;
    color: #2A4CAE;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.section-advantage {
    padding: 80px 0 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background-image: url(../image/about_bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.advantage {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.advantage .box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.advantage .box .adv-item {
    width: calc((100% - 180px) / 4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.advantage .box .adv-item .icon {
    width: 96px;
    height: 80px;
    background-repeat: no-repeat;
    background-image: url("../image/adv.png");
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.advantage .box .adv-item:hover .icon {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.advantage .box .adv-item .icon.icon-1 {
    background-position: 0 0;
}
.advantage .box .adv-item:hover .icon.icon-1 {
    background-position: -96px 0;
}
.advantage .box .adv-item .icon.icon-2 {
    background-position: 0 -80px;
}
.advantage .box .adv-item:hover .icon.icon-2 {
    background-position: -96px -80px;
}
.advantage .box .adv-item .icon.icon-3 {
    background-position: 0 -160px;
}
.advantage .box .adv-item:hover .icon.icon-3 {
    background-position: -96px -160px;
}
.advantage .box .adv-item .icon.icon-4 {
    background-position: 0 -240px;
}
.advantage .box .adv-item:hover .icon.icon-4 {
    background-position: -96px -240px;
}
.advantage .box .adv-item .t {
    font-size: 18px;
    line-height: 28px;
    height: 56px;
    width: 100%;
    color: #111;
    text-align: center;
    margin-top: 40px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.advantage .box .adv-item:hover .t {
    color: #2E851D;
}
.advantage .box .adv-item .desc {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    color: #777;
}



.section-products {
    padding: 80px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #EFF3F6;
}

.products {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.products .pro-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 36px;
    font-weight: bold;
    color: #000;
}
.products .pro-title em {
    color: #2E851D;
    padding-left: 20px;
}
.products .category {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.products .category a {
    font-size: 16px;
    color: #111;
    background: #fff;
    padding: 12px 20px;
    margin-top: 30px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.products .category a.active {
    color: #fff;
    background: #2E851D;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.products .box {
    display: flex;
    width: 100%;
    margin-top: 60px;
}
.products .box .items {
    display: none;
    flex-wrap: wrap;
    width: 100%;
}
.products .box .items.active {
    display: flex;
}
.products .box .items .item {
    width: 330px;
    margin-right: calc((100% - (330px * 4)) / 3);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.products .box .items .item:nth-child(4n){
    margin-right: 0;
}
.products .box .items .item .image {
    width: 330px;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.products .box .items .item .image .big {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0,0,0,0.3) url("../image/view.png") center center no-repeat;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.products .box .items .item:hover .image .big {
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.products .box .items .item .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.products .box .items .item:hover .image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.products .box .items .item .t {
    display: inline-block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 10px;
    font-size: 16px;
    color: #000;
    text-align: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.products .box .items .item:hover .t {
    color: #2E851D;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.products .box .items .item .message {
    background: #1B88C9;
    color: #fff;
    border-radius: 40px;
    padding: 10px 15px;
    font-size: 14px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.products .box .items .item .message:hover {
    background: #2E851D;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}


.section-services {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background-image: url(../image/app_bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-services .services .s-title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}

.section-services .services .s-title h3 {
    color: rgba(255,255,255,1);
    font-size: 30px;
    font-weight: bold;
    position: relative;
}
.section-services .services .s-title h3:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 45px;
    height: 5px;
    background: #fff;
}

.section-services .services .intro {
    margin-top: 40px;
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    text-align: left;
    max-width: 734px;
}
.section-services .services .app-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    max-width:1000px;
    margin-top: 20px;
}
.section-services .services .app-list .p_list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}
.section-services .services .app-list .p_list .item {
    width: 22%;
    margin-right: calc(12% / 3);
    margin-top: 30px;
    position: relative;
    border-radius: 3px;
    padding: 15px;
    border: solid 1px #fff;
    cursor: pointer;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-services .services .app-list .p_list .item:hover {
    background: #2E851D;
    border: solid 1px #2E851D;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-services .services .app-list .p_list .item:nth-child(4n) {
    margin-right: 0;
}
.section-services .services .app-list .p_list .item .image {
    overflow: hidden;
    max-width: 35px;
    margin-right: 0;
    margin-left: auto;
}
.section-services .services .app-list .p_list .item .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: blur(0);
    transition: filter 1s;
}
.section-services .services .app-list .p_list .item .text-1 {
    line-height: normal;
    color: rgba(255,255,255,1);
    font-size: 16px;
    font-weight: normal;
    margin-top: 10px;
    text-align: left;
}
.section-services .services .app-list .p_list .item .text-2 {
    line-height: normal;
    color: rgba(255,255,255,1);
    font-size: 16px;
    font-weight: normal;
    margin-top: 10px;
    text-align: left;
}



.section-news {
    background: #fff;
    padding: 100px 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}

.news {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.news .s-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.news .s-title .l {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}

.news .s-title .l h3 {
    font-size: 36px;
    letter-spacing: 1px;
    color: #000;
    font-weight: bold;
    width: 100%;
}

.news .s-title .l span {
    padding-left: 15px;
    color: #2E851D;
}

.news .s-title .more-link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.news .s-title .more-link a {
    font-size: 18px;
    color: #888;
}
.news .s-title .more-link a:hover {
    color: #2E851D;
}
.news .s-title .more-link em {
    width:1px;
    height: 10px;
    background: #888;
    margin: 0 30px;
}

.news .new-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 40px;
    width: 100%;
}
.news .new-box .n-left {
    width: calc(100% / 3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.news .new-box .n-left .n-left-box {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.news .new-box .n-left .n-left-box .image {
    overflow: hidden;
    position: relative;
    padding-bottom: 60%;
    width: 100%;
}
.news .new-box .n-left .n-left-box .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    filter: blur(0);
    transition: filter 1s;
}
.news .new-box .n-left .n-left-box .info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.news .new-box .n-left .n-left-box .info .t {
    padding: 10px 20px;
    line-height: normal;
    text-align: left;
    width: calc(100% - 60px);
    background: #318420;
    color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news .new-box .n-left .n-left-box .info .lk {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #172989;
    color: #fff;
    font-size: 42px;
}
.news .new-box .n-right {
    width: calc(100% / 3 * 2 - 30px);
    display: flex;
    flex-wrap: wrap;
}
.news .new-box .n-right .item {
    width: calc(50% - 15px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    margin-right: 30px;
}
.news .new-box .n-right .item:nth-child(2n){
    margin-right: 0;
}
.news .new-box .n-right .item:nth-child(3),.news .new-box .n-right .item:nth-child(4){
    margin-top: 30px;
}
.news .new-box .n-right .item .t {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: rgba(51,51,51,1);
    font-size: 20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.news .new-box .n-right .item:hover .t {
    color: #2E851D;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.news .new-box .n-right .item .desc {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: #888;
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
}
.news .new-box .n-right .item .time {
    width: 100%;
    margin-top: 20px;
    font-size: 24px;
    color: rgba(0,0,0,1);
}

.section-footers {
    background-image: url(../image/bottom_bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.section-footers .b-border {
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #172A89, #2E851D);
}

.footer {
    padding: 50px 0 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer .bottom-menu {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer .bottom-menu .box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    /*max-width: 20%;*/
    margin-right: 30px;
}

.footer .bottom-menu .box a.t-link {
    font-size: 16px;
    color: #222;
    margin-bottom: 30px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.footer .bottom-menu .box a.s-link {
    font-size: 16px;
    color: #999;
    margin-bottom: 15px;
    width: 100%;
    max-width: 240px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.footer .bottom-menu .box a.s-link:hover {
    color: #2E851D;
}

.footer .bottom-contact {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 30px;
}
.footer .bottom-contact a {
    margin: 0 5px;
}
.footer .bottom-contact a img {
    width: 36px;
}
.footer .bottom-scan {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 140px;

}
.footer .bottom-scan .scan {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.footer .bottom-scan .scan:last-of-type {
    margin-top: 60px;
}
.footer .bottom-scan .scan img {
    max-width: 100%;
}
.section-copyright {
    padding: 30px 0;
    background-image: linear-gradient(to right, #172A89, #2E851D);
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #fff;
}

.copyright .cp {
    color: rgba(255, 255, 255, 0.5);
}

.copyright a {
    color: rgba(255, 255, 255, 1);
}

.copyright .cp a {
    color: rgba(255, 255, 255, 0.5);
}

.copyright .cov p {
    display: flex;
    align-items: center;
    justify-content: center;
}

#toolbar {
    position: fixed;
    z-index: 99999999;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-flow: column;
}
#toolbar .tool_item {
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 30px;
    background: #999;
    color: #fff;
    overflow: hidden;
    transition: width 0.4s;
    position: relative;
    cursor: pointer;
    margin-bottom: 10px;
    padding-left: 43px;
}
#toolbar .tool_item:hover {
    width: 240px;
}
#toolbar .tool_item.backtop:hover {
    width: 45px;
}
#toolbar .tool_item:last-of-type {
    margin-bottom: 0;
}
#toolbar .tool_item.whatsapp {
    background: #F66C6C;
}
#toolbar .tool_item.email {
    background: #3E6DDF;
}
#toolbar .tool_item.tel {
    background: #0065FF;
}
#toolbar .tool_item.backtop {
    background: orange;
}
#toolbar .tool_item.no-back {
    display: none;
}
#toolbar .tool_item .box {
    position: absolute;
    left: 0;
    top: 0;
    width: 43px;
    height: 43px;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}
#toolbar .tool_item .box img {
    width: 60%;
    height: 60%;
}
#toolbar .tool_item .line {
    margin-top: 5px;
    padding: 0 5px;
    line-height: 35px;
    text-align: center;
    width: 154px;
}
#toolbar .tool_item .line a {
    color: #fff;
}

.modal-header-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header-message::before, .modal-header-message::after {
    display: none;
}

.modal-dialog-message {
    width: 540px;
}

.form-message .form-group label {
    margin-bottom: 10px;
}

.form-message .form-group .code-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.form-message .form-group .code {
    width: 200px;
    margin-right: 10px;
}

.form-message .form-group .codeimg {
    height: 30px;
}

.form-message .message-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 30px 0 10px;
}


.page-banners .page-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.page-banners .page-banner .image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    animation: scDown 2s;
}
.page-banners .page-banner .b-text {
    position: absolute;
    width: 100%;
    top: calc(50% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}
.page-banners .page-banner .b-text span {
    font-size: 42px;
    color: #fff;
    font-weight: bold;
    margin: 0 10px;
}
.page-banners .page-banner .b-text em {
    width: 50px;
    height: 3px;
    background: #fff;
}
@keyframes scDown{
    from{transform:scale(1.5)}to{transform:scale(1)}
}


.section-page-position {
    padding: 30px 0 15px;
}
.page-position {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.page-position .p-position {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.page-position .p-position .icon-home {
    margin-right: 5px;
    width: 14px;
}
.page-position .p-position .r {
    margin: 0 5px;
    width: 14px;
}

.page-position .p-position a {
    padding: 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #888;
}
.page-position .p-position a:hover{
    color: #2E851D;
}

.page-position .p-position span {
    color: #333;
    font-size: 14px;
}

/*  内页  */
.section-mains {
    padding: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.mains {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.mains .d-left {
    width: 270px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.mains .d-left .menus {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    margin-bottom: 30px;
    background: #fff;
}
.mains .d-left .menus .t {
    background-image: linear-gradient(to right, #1365B1, #458D39);
    width: 100%;
    padding: 15px 20px;
    color: #fff;
    font-size:18px;
}
.mains .d-left .menus .items {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.mains .d-left .menus .items a {
    width: 100%;
    padding: 15px 20px;
    color: #333;
    font-size:16px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mains .d-left .menus .items a:hover,.mains .d-left .menus .items a.active {
    background: #458D39;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mains .d-left .hot-pro {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    margin-bottom: 30px;
    background: #fff;
}
.mains .d-left .hot-pro .t {
    background-image: linear-gradient(to right, #1365B1, #458D39);
    width: 100%;
    padding: 15px 20px;
    color: #fff;
    font-size:18px;
}
.mains .d-left .hot-pro .items {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.mains .d-left .hot-pro .items a {
    width: 100%;
    padding: 15px 15px;
}
.mains .d-left .hot-pro .items a .image {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #ddd;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mains .d-left .hot-pro .items a .image {
    border: 1px solid #2E851D;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mains .d-left .hot-pro .items a .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.mains .d-left .hot-pro .items a:hover .image img {
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.mains .d-left .hot-pro .items a .name {
    display: inline-block;
    line-height: normal;
    font-size: 16px;
    color: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    padding: 5px 10px;
    text-align: center;
}
.mains .d-left .hot-pro .items a:hover .name {
    color: #2E851D;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mains .d-content {
    width: calc(100% - 300px);
    padding: 15px 15px;
    background: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.mains .d-content .detail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.mains .d-content .gtt {
    border-bottom: 1px solid #ddd;
    width: 100%;
    position: relative;
    font-size: 20px;
    color: #000;
    padding: 10px 20px 15px;
    margin-bottom: 20px;
}
.mains .d-content .gtt:before {
    content: "";
    position: absolute;
    left: 5px;
    top: 8px;
    width: 4px;
    height: 24px;
    border-radius: 2px;
    background-image: linear-gradient(to bottom, #1365B1, #458D39);
}
.mains .d-content .gtt-t {
    width: 100%;
    font-size: 22px;
    color: #000;
    display: inline-block;
    margin: 20px 0 10px;
    text-align: center;
}
.mains .d-content .gtt-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 14px;
    color: #999;
    margin: 0 0 20px;
}
.mains .d-content .gtt-tags em {
    background: #ddd;
    width: 1px;
    height: 10px;
    margin:0 10px;
}
.mains .d-content .detail .content {
    padding: 10px 0 30px;
    min-height: 60vh;
    font-size: 16px;
    line-height: 30px;
    width: 100%;
}
.mains .d-content .pro-items {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.mains .d-content .pro-items .item {
    width: 240px;
    margin-right: calc((100% - (240px * 4)) / 3);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.mains .d-content .pro-items .item:nth-child(4n){
    margin-right: 0;
}
.mains .d-content .pro-items .item .image {
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.mains .d-content .pro-items .item .image .big {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0,0,0,0.3) url("../image/view.png") center center no-repeat;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mains .d-content .pro-items .item:hover .image .big {
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mains .d-content .pro-items .item .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.mains .d-content .pro-items .item:hover .image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.mains .d-content .pro-items .item .t {
    display: inline-block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 10px;
    font-size: 16px;
    color: #000;
    text-align: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mains .d-content .pro-items .item:hover .t {
    color: #2E851D;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mains .d-content .pro-items .item .message {
    background: #1B88C9;
    color: #fff;
    border-radius: 40px;
    padding: 10px 15px;
    font-size: 14px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mains .d-content .pro-items .item .message:hover {
    background: #2E851D;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mains .d-content .pro-detail {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: calc(100% - 40px);
    margin: 20px 20px;
}
.mains .d-content .pro-detail .photos{
    width: 400px;
    position: relative;
    display: inline-block;
    float: left;
}
.mains .d-content .pro-detail .photos .photos-box{
    overflow: hidden;
    position: relative;
    width: 400px;
    height: 400px;
}
.mains .d-content .pro-detail .photos .photos-box .images-cover{
    height: 100%;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}
.mains .d-content .pro-detail .photos .photos-box .images-cover img {
    padding: 1px;
    display: inline-block;
    float: left;
    border: 1px solid #ddd;
    box-sizing: border-box;
    position: absolute;
}
.mains .d-content .pro-detail .photos .photos-box .move-view{
    width: 100px;
    height: 100px;
    position: absolute;
    background-image: url('../image/move-box.png');
}
.mains .d-content .pro-detail .photos .magnifier-assembly {
    height: 92px;
    overflow: hidden;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}
.mains .d-content .pro-detail .photos .magnifier-assembly .magnifier-btn {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -40px;
}
.mains .d-content .pro-detail .photos .magnifier-assembly .magnifier-btn span {
    line-height: 75px;
    height: 75px;
    width: 20px;
    background: linear-gradient(to bottom, #1365AF, #458D39);
    color: #ffffff;
    display: block;
    z-index: 9998;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: background ease .5s;
    -webkit-transition: background ease .5s;
}
.mains .d-content .pro-detail .photos .magnifier-assembly .magnifier-btn .magnifier-btn-left {
    float: left;
}
.magnifier-btn .icon {
    font-size: 16px;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
    margin-top: -3px;
    fill: currentColor;
}
.mains .d-content .pro-detail .photos .magnifier-assembly .magnifier-btn .magnifier-btn-right{
    float: right;
}
.mains .d-content .pro-detail .photos .magnifier-assembly .magnifier-line {
    position: relative;
    overflow: hidden;
    height: 92px;
}
.mains .d-content .pro-detail .photos .magnifier-assembly .magnifier-line ul {
    overflow: hidden;
    margin: 0 auto;
    display: block;
    font-size: 0;
    width: 10000%;
    position: absolute;
    left: 0;
    z-index: 997;
}
.animation03 {
    transition: all .3s ease-in .1s;
    -ms-transition: all .3s ease-in .1s;
    -moz-transition: all .3s ease-in .1s;
    -webkit-transition: all .3s ease-in .1s;
    -o-transition: all .3s ease-in .1s;
}
.clearfix:after, .clearfix:before {
    display: table;
    line-height: 0;
    content: "";
}
.mains .d-content .pro-detail .photos .magnifier-assembly .magnifier-line ul li {
    list-style: none;
    cursor: pointer;
    float: left;
    width: 84px;
    height: 84px;
}
.mains .d-content .pro-detail .photos .magnifier-assembly .magnifier-line ul li img {
    padding: 1px;
    display: inline-block;
    float: left;
    border: 1px solid #cfcfcf;
    box-sizing: border-box;
}
.small-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 78px;
    width: 78px;
    padding: 1px;
    margin: 5px;
    overflow: hidden;
    text-align: center;
}
.small-img img {
    width: 100%;
    height: 100%;
}
.active {
    transition: .3s;
}
.magnifier-view {
    width: 100%;
    height: 100%;
    position: absolute;
    right: -105%;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    display: none;
    overflow: hidden;
}
.magnifier-view img {
    display: block;
}
.pro-detail .pro-info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 450px);
}
.pro-detail .pro-info .pro-h1 {
    color: #111;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    width: 100%;
}
.pro-detail .pro-info .item {
    color: #666;
    background: #F5F5F5;
    margin-top: 20px;
    font-size: 16px;
    display: inline-block;
    width: 100%;
    padding: 14px 10px;
}
.pro-detail .pro-info .pro-desc {
    line-height: 24px;
    font-size: 14px;
    color: rgba(102,102,102,1);
    margin-top: 20px;
}
.pro-detail .pro-info .pro-btn {
    background: #1B88C9;
    color: #fff;
    border-radius: 40px;
    padding: 10px 25px;
    font-size: 18px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    margin-top: 40px;
}
.pro-detail .pro-info .pro-btn:hover {
    background: #2E851D;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.pro-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 40px);
    margin: 20px 20px;
}
.pro-content .pro-content-t {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.pro-content .pro-content-t span {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-image: linear-gradient(to right, #1365B1, #458D39);
    padding: 15px 20px;
}
.pro-content .pro-content-s {
    line-height: 28px;
    width: 100%;
}
.pro-message {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 40px);
    margin: 50px 20px 20px;
    padding: 10px 10px;
    background: #F3F4F6;
}
.pro-message .mes-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    padding: 20px 20px;
    background: #fff;
}
.pro-message .mes-box .pro-message-t {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 30px;
    color: rgba(0,0,0,1);
    margin: 20px 0 30px;
}
.pro-message .mes-box .pro-message-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: rgba(136,136,136,1);
    font-size: 14px;
    margin-bottom: 15px;
}
.pro-message .mes-box .pro-form-message {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    margin-bottom: 10px;
}
.pro-message .mes-box .form-group {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.pro-message .mes-box .form-group .form-control {
    box-shadow: none;
    background: #FAFAFA;
    padding: 25px 20px;
    border:1px solid #FAFAFA;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.pro-message .mes-box .form-group .form-control:hover,.pro-message .mes-box .form-group .form-control:focus {
    border:1px solid #458D39;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.pro-message .mes-box .form-group  .code-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.pro-message .mes-box .form-group  .code-box .codeimg {
    margin-left: 10px;
    width: 50%;
}
.pro-message .mes-box .message-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 40px 0 50px;
}
.pro-message .mes-box .message-btn .btn {
    border: none;
    background-image: linear-gradient(to right, #1365B1, #458D39);
    color: #fff;
    padding: 10px 50px;
    font-size: 18px;
    border-radius: 20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.pro-message .mes-box .message-btn .btn:hover {
    background-image: linear-gradient(to right, #458D39, #1365B1);
    background-color: unset;
    background-position: 0 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.mains .d-content .news-items {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
}
.mains .d-content .news-items a.n-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 15px;
    background: #EFF0F2;
    margin-top: 20px;
}
.mains .d-content .news-items a.n-link:hover {
    background: #145EA5;
}
.mains .d-content .news-items a.n-link .image {
    width: 230px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mains .d-content .news-items a.n-link .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: zoomInOut 5s ease-in-out infinite;
}
.mains .d-content .news-items a.n-link .n-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 270px);
}
.mains .d-content .news-items a.n-link .n-con .l {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 80px);
}
.mains .d-content .news-items a.n-link .n-con .l .time {
    font-size: 14px;
    border: 1px solid #eee;
    padding: 2px 5px;
    color: #333;
    background: #fff;
}
.mains .d-content .news-items a.n-link .n-con .l .t {
    margin-top: 15px;
    display: inline-block;
    width: 100%;
    font-size: 18px;
    color: #000;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.mains .d-content .news-items a.n-link .n-con .l .s {
    margin-top: 15px;
    font-size: 14px;
    color: #888;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mains .d-content .news-items a.n-link:hover .n-con .l .t ,.mains .d-content .news-items a.n-link:hover .n-con .l .s {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mains .d-content .news-items a.n-link .n-con .more {
    width: 24px;
    height: 24px;
    background-image: url("../image/rights.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mains .d-content .news-items a.n-link:hover .n-con .more {
    background-position: -24px 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

/* ----- PB分页数字条效果 结束 ----- */
.pagebar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.pagebar .pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.pagination a {
    background: #fff;
    border: 1px solid #ccc;
    color: #000;
    font-size: 14px;
    padding: 6px 10px;
    margin: 0 5px;
    border-radius: 3px;
}

.pagination span {
    color: #000;
    font-size: 14px;
    padding: 8px 2px;
    margin: 0 5px;
    border-radius: 3px;
}

.pagination a:hover {
    color: #1A8DE8;
    border: 1px solid #1A8DE8;
}

.pagination a.page-num-current {
    color: #fff;
    background: #1A8DE8;
    border: 1px solid #1A8DE8;
}

/* ----- PB分页数字条效果 结束 ----- */
.maps {
    margin-top: 3rem;
}