@charset "utf-8";
/*
首页模块命名规范：col-index-模块英文名称，如：col-index-news
内页页面外层容器命名规范：
1、通用样式：col-page，内页外层容器通用样式，使用方法<div class="col-page col-page-about"></div>
2、页面样式：col-page-模块英文名称，如：col-page-about（关于我们页面）
3、内页模块命名规范：col-模块英文名称，如：col-product（产品）、col-honor（荣誉）
其他命名规范：
1、使用swiper、owl.Carousel等插件时，插件外层容器可用模块名称-container,如product-container
2、使用英文名称为样式命名，不要出现拼音和首字母
3、模块最外层容器命名规范：col-自定义名称
4、样式命名中单词由符号“-”来连接，如：col-culture,col-hot-product
备注：上面所说的模块不是指系统后台模块，是网站前台页面中的组成模块，如：首页中包含网站头部、产品、新闻、荣誉、案例、网站底部，其中每个部分视为一个模块。
*/
@charset "utf-8";

@font-face {
    font-family: "DIN";
    font-weight: regular;
    src: url("../fonts/DIN-Regular.otf") format("opentype");
}

@font-face {
    font-family: "DIN";
    font-weight: 500;
    src: url("../fonts/DIN-Medium.otf") format("opentype");
}

@font-face {
    font-family: "DIN";
    font-weight: bold;
    src: url("../fonts/DIN-Bold.otf") format("opentype");
}

/* CDN 服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
    font-family: 'iconfont';
    /* Project id 1502878 */
    src: url('//at.alicdn.com/t/c/font_1502878_tg9601bt3d.woff2?t=1668735479256') format('woff2'),
        url('//at.alicdn.com/t/c/font_1502878_tg9601bt3d.woff?t=1668735479256') format('woff'),
        url('//at.alicdn.com/t/c/font_1502878_tg9601bt3d.ttf?t=1668735479256') format('truetype');
}

html {
    overflow-x: hidden;
    font-size: 16px;
}

html.active {
    overflow: hidden;
}

body {
    min-width: 320px;
    color: #333;
    overflow: hidden;
    font-family: "PingFang SC", PingHei, STHeitiSC-Light, "Myriad Set Pro", "Lucida Grande", "Helvetica Neue", Helvetica, "microsoft yahei", SimHei, tahoma, Arial, Verdana, sans-serif;
}

iframe {
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    width: 100%;
    height: 100%;
    border: 0;
}

.jiuge a {
    font-family: "iconfont" !important;
    font-size: 12px !important;
    color: rgb(255, 255, 255, .6) !important;
    font-style: normal;
    font-weight: normal;
    text-decoration: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: uppercase;
    transition: .5s all;
}

.icon-g:before {
    content: "\e603";
}

.iconfont {
    font-family: 'iconfont';
}

* {
    word-break: normal !important
}

li {
    list-style: none;
}

i {
    font-style: normal;
}

a {
    color: #333;
}

a:focus {
    text-decoration: none;
    outline: none;
    color: #333;
}

a:hover {
    color: #333;
    text-decoration: none;
    outline: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
    margin: 0;
    padding: 0;
}

img {
    border: 0;
    max-width: 100%;
}

.relative {
    position: relative;
}

.container {
    max-width: 1200px;
    padding: 0 10px;
}

.container2 {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.container3 {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 10vw;
}

#page {
    padding-top: 0px;
    overflow: hidden;
}

nav.mm-menu_offcanvas {
    display: none;
}

#BMapLib_transBox0 table td {
    box-sizing: content-box !important;
}

.target-fix {
    position: relative;
    top: -100px;
    display: block;
    height: 0;
    overflow: hidden;
}

img[src=""],
img:not([src]) {
    opacity: 0 !important;
}

.table {
    display: table;
    width: 100%;
    height: 100%;
    margin: 0;
}

.table>.middle {
    display: table-cell;
    vertical-align: middle;
}

.none {
    display: none;
}

.flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.swiper-container,
.swiper-container .swiper-slide {
    position: relative;
}

.swiper-container {
    --swiper-theme-color: #009b65;
    /* 设置Swiper风格 */
    --swiper-preloader-color: #009b65;
    /* 单独设置预加载圆圈的颜色 */
}

/* animates */
@-webkit-keyframes fadeUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeUp {
    -webkit-animation-name: fadeUp;
    animation-name: fadeUp;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -40px, 0);
        transform: translate3d(0, -40px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -40px, 0);
        transform: translate3d(0, -40px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeDown {
    -webkit-animation-name: fadeDown;
    animation-name: fadeDown;
}

@-webkit-keyframes fadeLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-40px, 0, 0);
        transform: translate3d(-40px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-40px, 0, 0);
        transform: translate3d(-40px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeLeft {
    -webkit-animation-name: fadeLeft;
    animation-name: fadeLeft;
}

@-webkit-keyframes fadeRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(40px, 0, 0);
        transform: translate3d(40px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(40px, 0, 0);
        transform: translate3d(40px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeRight {
    -webkit-animation-name: fadeRight;
    animation-name: fadeRight;
}

/* header */
#header a.mm_btn {
    display: none;
    transition: .3s all;
}

.header {
    width: 100%;
    z-index: 999;
    position: fixed;
    top: 25px;
    left: 0;
    width: 100%;
    transition: 0.25s;
}

.header .inner {
    transition: 0.36s;
    background: transparent;
    position: relative;
}

.header .inner .flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100px;
    line-height: 100px;
    transition: 0.5s;
    padding: 0 60px;
    align-items: center;
}

.header .inner .logo {
    font-size: 0;
    transition: 0.5s;
    position: relative;
    z-index: 5;
}

.header .inner nav {
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.header .inner nav ul {
    font-size: 0;
}

.header .inner nav ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4vw;
    font-size: 18px;
    position: relative;
}

.header .inner nav ul li:last-child {
    margin-right: 0;
}

.header .inner nav ul li>a {
    transition: color 0.3s;
    display: inline-block;
    line-height: 1;
    position: relative;
    color: #fff;
}

.header .inner nav ul li>a:hover {
    color: #009b65 !important;
}

.header .inner nav ul li .child {
    white-space: nowrap;
    position: absolute;
    top: 100%;
    margin-top: -10px;
    left: -1.6vw;
    display: none;
    padding: 10px 1.6vw 15px;
    background: #fff;
    box-shadow: 0 5px 5px 2px rgba(0, 0, 0, 0.05);
    min-width: 180px;
}

.header .inner nav ul li .child p {
    margin-top: 5px;
    line-height: 1.6;
    padding: 0;
}

.header .inner nav ul li .child a {
    font-size: 16px;
    color: #000;
    text-transform: none;
    transition: 0.2s;
}

.header .inner nav ul li .child a:hover {
    color: #009b65;
}

.header .inner .language {
    font-size: 0;
    text-transform: uppercase;
    height: 45px;
    margin-right: 1.5vw;
    position: relative;
}

.header .inner .language::after {
    content: '';
    width: 1px;
    height: 19px;
    background: rgba(255, 255, 255, .2);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header .inner .language .inner_lang {
    transition: 0.3s box-shadow;
}

.header .inner .language .inner_lang>a {
    display: block;
    padding: 0 20px;
    font-size: 18px;
    height: 45px;
    line-height: 45px;
    white-space: nowrap;
    color: #fff;
    font-weight: bold;
}

.header .inner .language .inner_lang>a i.fa {
    margin-left: 5px;
    font-size: 18px;
}

.header .inner .language .lang-none {
    display: none;
    position: absolute;
    width: 410px;
    left: -200px;
    height: 600px;
    overflow: auto;
}

.header .inner .language .lang-none::-webkit-scrollbar {
    width: 10px;
    height: 10px
}

.header .inner .language .lang-none::-webkit-scrollbar-track {
    background-color: #222;
    border-radius: 3px;
}

.header .inner .language .lang-none::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 3px;
}

.header .inner .language .lang-none a {
    display: block;
    text-align: center;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    background: #fff;
    transition: 0.25s;
    width: 100px;
    float: left;
}

.header .inner .language:hover .inner_lang {
    box-shadow: 0px 0px 9px 0px rgba(6, 0, 1, 0.18);
    background: #fff;
}

.header .inner .language:hover .inner_lang>a {
    color: #000;
}

.header .inner .language:hover .inner_lang a img {
    width: 20px;
    vertical-align: sub;
    margin-right: 10px;
}

.header .inner .language .lang-none a:hover {
    background: #000;
    color: #fff;
}

.header .inner .index-search {
    position: relative;
    font-size: 0;
}

.header .inner .index-search>a {
    color: rgba(255, 255, 255, .6);
}

.header .inner .index-search>a span.name {
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    transition: color 0.25s;
}

.header .inner .index-search i.iconfont {
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    transition: color 0.25s;
}

.header .inner .index-search .content {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
    display: none;
}

.header .inner .index-search .content .container {
    position: relative;
    height: 100%;
}

.header .inner .index-search .content .s-content {
    background: #fff;
    text-align: center;
    padding: 6vh 0;
    position: absolute;
    top: 30%;
    width: 100%;
    left: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.5s;
}

.header .inner .index-search .content a.close {
    position: absolute;
    font-size: 32px;
    top: 10px;
    right: 20px;
}

.header .inner .index-search .content .title {
    font-size: 24px;
    color: #242424;
    margin-bottom: 10px;
    line-height: 1.5;
}

.header .inner .index-search .content .input {
    font-size: 0;
    line-height: 1;
}

.header .inner .index-search .content input {
    height: 60px;
    outline: none;
    vertical-align: middle
}

.header .inner .index-search .content .inpt3 {
    padding-left: 20px;
    border: 1px solid #d2d2d2;
    font-size: 16px;
    width: 45%;
    color: #292929;
}

.header .inner .index-search .content .inpt3::-webkit-input-placeholder {
    color: #b6b6b6;
}

.header .inner .index-search .content .inpt3:-moz-placeholder {
    color: #b6b6b6;
}

.header .inner .index-search .content .inpt3::-moz-placeholder {
    color: #b6b6b6;
}

.header .inner .index-search .content .inpt3:-ms-input-placeholder {
    color: #b6b6b6;
}

.header .inner .index-search .content .inpt4 {
    width: 60px;
    background: #313131;
    border: none;
    font-size: 24px;
    color: #fff;
    font-family: 'iconfont';
}

.header .inner .index-search .content.active .s-content {
    transform: none;
    opacity: 1;
    transition-delay: 0.36s;
}

.header.active,
.header.cur {
    top: 0;
}

.header.active .inner,
.header.cur .inner {
    background: #fff;
    box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.1);
}

.header.active .inner .flex,
.header.cur .inner .flex {
    height: 80px;
    line-height: 80px;
}

.header.active .inner nav ul li>a,
.header.cur .inner nav ul li>a,
.header.active .inner .language .inner_lang>a,
.header.cur .inner .language .inner_lang>a,
.header.active .inner .index-search>a,
.header.cur .inner .index-search>a {
    color: #000;
}

.header.active .inner nav ul li.active>a {
    color: #009b65;
}

.header.active .inner nav ul li.active::after {
    width: 100%;
    left: 0;
}

.header.active .inner .logo img,
.header.cur .inner .logo img {
    display: none;
}

.header.active .inner .logo img.none,
.header.cur .inner .logo img.none {
    display: inline-block !important;
}

.header.relative {
    position: relative;
}


/*产品左侧*/
.aside {
    float: left;
    width: 230px;
}

.side-tit-bar {
    position: relative;
    margin-bottom: 15px;
}

.side-tit-bar .side-tit {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    height: 36px;
    overflow: hidden;
    white-space: nowrap;
    line-height: 36px;
    color: #5f5f5f;
    padding: 0 0 0 15px;
    background: #e2e2e2;
    text-transform: uppercase;
}

.side-widget {
    position: relative;
    margin: 0 0 50px;
}

/*.side-cate {*/
/*    padding: 0 0 0 10px;*/
/*}*/

.side-cate li {
    position: relative;
    line-height: 33px;
    font-size: 16px;
}

.side-cate li a {
    position: relative;
    display: block;
}

.side-cate>li+li {
    border-top: 1px solid #ddd;
}

.side-cate ul {
    display: none;
    overflow: visible !important background-color: #fff;
}

.side-cate li a {
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
}

.side-cate li li {
    font-size: 12px;
    padding: 2px 0;
}

.side-cate li li li {
    font-size: 12px;
}

.side-cate li a:hover,
.side-cate li.active>a {
    color: #C90D15;
}

.side-cate li a:hover:before,
.side-cate li.active>a:before {
    background-color: #29cf96;
}

.side-cate li .icon-cate {
    position: absolute;
    right: 0;
    top: 8px;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    text-align: center;
    font-size: 10px;
    cursor: pointer;
    color: #99abb7;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.side-cate li .icon-cate.icon-cate-down:before {
    content: '\f067';
}

.side-cate li .icon-cate.icon-cate-up:before {
    content: '\f068';
}

.side-widget .cate-type-list>li {
    line-height: 30px;
    font-size: 16px;
    background-color: #009b65;
    margin-bottom: 5px;
}
.side-widget .cate-type-list>li a{
    font-weight: bold;
    color: white;
    padding-left: 10px;
}
/*.side-widget .cate-type-list>li>a {*/
/*    padding-left: 15px;*/
/*    margin-right: 0;*/
/*}*/

/*.side-widget .cate-type-list>li>a:before {*/
/*    content: '';*/
/*    display: inline-block;*/
/*    width: 5px;*/
/*    height: 5px;*/
/*    background-color: #e0e0e0;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 12px;*/
/*}*/

.side-cate li.has-child>a {
    line-height: 35px;
    margin-right: 30px;
}

.side-cate li.nav-current>.icon-cate {
    color: #29cf96;
}

.side-cate>li.nav-current>a,
.side-cate>li.nav-current>.icon-cate {
    color: #29cf96;
}

.side-cate li li.nav-current>a {
    color: #29cf96;
}

.side-cate li.nav-current>.icon-cate,
.side-cate li:hover>.icon-cate,
li.show_li>.icon-cate {
    color: #99abb7;
}

.side-cate li .icon-cate:hover {
    background-color: #99abb7;
    color: #fff;
}

.side-product-items {
    position: relative;
}

.side-product-items .items_content {
    position: relative;
    padding: 35px 0;
}

.side_product_item {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.side_product_item figure {
    position: relative;
    display: table;
    width: 100%;
    overflow: hidden;
}

.side_product_item .item-img,
.side_product_item figcaption {
    display: table-cell;
    vertical-align: middle;
}

.side_product_item .item-img {
    width: 70px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: relative;
}

.side_product_item .item-img:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.side_product_item .item-img img {
    display: block;
    width: 100%;
}

.side_product_item:hover .item-img {
    border-color: #ccc;
}

.side_product_item:hover .item-img {
    opacity: .8;
}

.side_product_item figcaption {
    padding-left: 15px;
}

.side_product_item figcaption h3 {
    font-size: 16px;
    font-weight: normal;
}

.side_product_item figcaption h3 a {
    display: block;
    max-height: 4.2em;
    line-height: 1.4em;
    /*-ms-word-break:break-all;word-break:break-all;word-wrap:break-word;*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.side_product_item figcaption h3 a:hover,
.side_product_item .item-img:hover+figcaption h3 a {
    color: #C90D15;
    text-decoration: underline;
}

.side-product-items .swiper-slide {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.side-product-items .side_slider {
    max-height: 450px;
    overflow: hidden;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: relative;
}

.side-product-items .side_slider .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.side-product-items .side_product_item {
    height: 90px;
}

.side-product-items .btn-prev,
.side-product-items .btn-next {
    position: absolute;
    left: 0;
    width: 100%;
    height: 32px;
    line-height: 32px;
    opacity: 1;
    filter: alpha(opacity=100);
    font-size: 28px;
    color: #ccd3d9;
    z-index: 1;
    text-align: center;
    cursor: pointer;
}

.side-product-items .swiper-button-disabled {
    color: #eee;
    cursor: default;
}

.side-product-items .btn-prev:before,
.side-product-items .btn-next:before {
    font-weight: bold;
    display: inline-block;
    -webkit-transform: scale(4, 1);
    -ms-transform: scale(4, 1);
    -o-transform: scale(4, 1);
    transform: scale(4, 1);
}

.side-product-items .btn-prev {
    top: 0;
}

.side-product-items .btn-prev:before {
    content: '∧';
}

.side-product-items .btn-next {
    bottom: 0;
}

.side-product-items .btn-next:before {
    content: '∨';
}

.side-product-items .btn-prev:not(.swiper-button-disabled):hover,
.side-product-items .btn-next:not(.swiper-button-disabled):hover {
    color: #000;
}

.aside .side-bn {
    width: 100%;
    margin: 0 0 40px;
}

.aside .side-bn img {
    width: 100%
}

/*产品列表*/
.page_main {
    background: #FFF;
    padding: 50px 0 0;
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.main {
    position: relative;
    width: calc(100% - 265px);
    float: right;
    padding-bottom: 50px;
}

.main .banner_section {
    margin-bottom: 25px;
}

.main_hd {
    margin-bottom: 30px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.main_hd .page_title {
    float: left;
    font-weight: normal;
    padding-right: 8%;
    padding-bottom: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.main_hd .share_this,
.items_list .main_hd .share_this {
    float: right;
    position: static;
}

.page_title {
    font-size: 22px;
    color: #000;
    padding-bottom: 15px;
}

.main_banner {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.main_banner img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 160px;
}

.main_banner .swiper-wrapper li a {
    display: block;
    position: relative;
}

.main_banner .swiper-wrapper li a:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, .4));
    background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, .4));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, .4));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, .4));
    position: absolute;
    left: 0;
    top: 0;
}

.main_banner .swiper-pagination {
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.main_banner .swiper-pagination-bullet-active:before {
    width: 10px;
    height: 10px;
}

.main_intro {
    line-height: 1.6;
}

.banner_section .main_banner_slider ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin: 0 !important
}

.items_list {
    width: 100%;
    position: relative;
}

.items_list .share_this {
    float: right;
    position: absolute;
    right: 0;
    top: 5px;
}

.items_list ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: left;
}

.items_list .product_item {
    background-color: #f5f5f5bf;
    border-radius: 20px;
    margin: 14px;
    height: 310px;
    -webkit-box-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 30%;
    width: 30%;
    float: left;
    padding: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.items_list .product_item figure {
    padding: 3px;
    outline-offset: -2px;
}

.items_list .product_item figure:hover {}

.items_list .product_item figure:hover .item_title a {
    color: #ca1c28;
}

.items_list .product_item .item_img {
    border-width: 2px;
}

.items_list .product_item .item_img img {
    width: 100%
}

.items_list .product_item .item_title {
    font-size: 14px;
    margin-top: 10px;
}

/*产品图片*/
.product-intro {
    position: relative;
    overflow: hidden;
}

.cloud-zoom-lens {
    border: 1px solid #eee;
    cursor: move;
}

.cloud-zoom-title {
    position: absolute !important;
    background-color: #000;
    color: #fff;
    padding: 3px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    top: 0px;
}

.cloud-zoom-big {
    overflow: hidden;
    padding: 0px;
}

.cloud-zoom-loading {
    color: white;
    background: #222;
    padding: 3px;
    border: 1px solid #000;
}

.product-view .swiper-slide {
    padding-bottom: 1px;
}

.product-view .product-image.zoom_remove:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 999;
}

.product-view {
    position: relative;
    width: 37.6%;
    float: left;
}

.product-view .product-image {
    position: relative;
    border: 1px solid #ddd;
}

.product-view .product-image img {
    position: relative;
    width: 100%;
}

.product-view .image-additional {
    position: relative;
    margin: 20px 15px;
    overflow: hidden;
}

.product-view .image-additional .swiper-wrapper {
    padding: 0
}

.product-view .image-additional li {
    position: relative;
    width: 100%;
    width: 33.3333%;
    float: left;
    overflow: visible;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
}

.product-view .image-additional li.single {
    display: none;
}

.product-view .image-additional li img {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.product-view .image-additional li a {
    display: block;
    position: relative;
    border: 1px solid #eee;
    padding: 1px;
    margin: 0 15%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.product-view .image-additional li.current>a {
    border: 2px solid #151515;
    padding: 0;
}

.product-view .image-additional img.popup {
    display: none;
}

.ad_prompt {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    width: 100%;
    line-height: 40px;
    margin: -20px 0 0;
    text-align: center;
    color: #ff6f00;
    font-size: 20px;
    -webkit-animation: twinkling 1s infinite ease-in-out;
    animation: twinkling 1s infinite ease-in-out;
    display: none;
}

.product-view .image-additional.swiper-container-horizontal>.swiper-pagination-bullets {
    display: none;
}

.product-view .swiper-button-next,
.product-view .swiper-button-prev {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    opacity: 1;
    line-height: 30px;
    font-size: 22px;
    background: none;
    -webkit-transform: scale(.6, 1);
    -ms-transform: scale(.6, 1);
    -o-transform: scale(.6, 1);
    transform: scale(.6, 1);
    font-weight: bold;
}

.product-view .swiper-button-prev,
.product-view .swiper-container-rtl .swiper-button-next {
    left: -10px;
}

.product-view .swiper-button-next,
.product-view .swiper-container-rtl .swiper-button-prev {
    right: -10px;
}

/*product summary*/
.product-summary {
    position: relative;
    width: 57%;
    float: right;
    padding: 0 0 10px;
    color: #666;
    font-size: 13px;
}

.product-summary .product-meta {
    line-height: 1.8;
    max-width: 500px;
    font-size: 16px;
}

.product-summary .product-meta h3 {
    margin: 0 0 5px;
    font-size: 18px;
}

.product-summary .product-meta li {
    width: 100%;
    display: table;
    padding: 2px 0;
    font-size: 18px;
}

.product-summary .product-meta li em {
    display: table-cell;
    width: 40%;
    color: #aaa;
}

.product-summary .product-meta li .item-val {
    display: table-cell;
    -ms-word-break: break-all;
    word-break: break-all;
    word-wrap: break-word;
}

.product-btn-wrap {
    position: relative;
    padding-top: 30px;
}

.product-btn-wrap .email,
.product-btn-wrap .pdf,
.product-btn-wrap .buy {
    position: relative;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
    line-height: 28px;
    padding: .1em 1em;
    font-size: 16px;
    font-weight: bold;
    border-radius: 3px;
    background: #eee;
    border: 1px solid #eee;
    margin: 0 15px 10px 0;
}

.product-btn-wrap .email:before,
.product-btn-wrap .pdf:before {
    padding-right: 8px;
}

.product-btn-wrap .email:before {
    content: '\f003';
}

.product-btn-wrap .pdf:before {
    content: '\f1c1';
}

.product-btn-wrap a:hover {
    border-color: #e2e2e2 !important;
    background-color: #e2e2e2 !important;
    color: #353535 !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, .06);
}

.product-summary .share-this {
    margin: 30px 0 0;
    text-align: right;
}

/* product detail */
.product-detail {
    position: relative;
    overflow: visible;
    margin: 30px 0 0;
}

.detail-tabs {
    position: relative;
    padding-right: 30%;
}

.detail-tabs .title {
    position: relative;
    display: inline-block;
    font-weight: bold;
    vertical-align: top;
    line-height: 26px;
    padding: 1px 20px;
    cursor: pointer;
    margin: 0 5px 0 0;
    font-size: 18px;
    background-color: white;
    border: 1px solid #2dc26b;
    color: #2dc26b;
    margin-bottom: 15px;
}

.detail-tabs .title.current {
    background-color: #2dc26b;
    color: white;
}

.product-detail .share-this {
    position: absolute;
    right: 0;
    top: 2px;
}

.product-detail .tab-panel-content {
    padding: 10px 0;
    display: block;
    overflow: hidden
}

.product-detail .disabled {}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-top: -25px;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 30px;
    background-color: rgba(0, 0, 0, .4);
    background-color: #ccc;
    border-radius: 2px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: #333;
}

.swiper-button-next:before,
.swiper-button-prev:before {
    display: inline-block;
    vertical-align: top;
}

.swiper-container:hover .swiper-button-next,
.swiper-container:hover .swiper-button-prev {}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    cursor: auto;
    /*pointer-events:none;*/
    opacity: 0.3;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

/*.swiper-button-next:before,*/
/*.swiper-container-rtl .swiper-button-prev:before {*/
/*    content: '\f105';*/
/*}*/

/*.swiper-button-prev:before,*/
/*.swiper-container-rtl .swiper-button-next:before {*/
/*    content: '\f104';*/
/*}*/

@media screen and (max-width: 992px) {
    .header {
        top: 0;
    }

    .header .inner nav,
    .header .inner .language,
    .footer .footer-nav {
        display: none;
    }

    .header .inner .flex {
        height: 80px;
        line-height: 80px;
    }

    .header .inner .index-search {
        margin-left: auto;
        margin-right: 40px;
    }

    .aside {
        display: none;
    }

    .main {
        width: auto;
        float: none;
        margin: 0 auto;
    }

    /* main */
    .page_main {
        padding-top: 25px;
    }

    .main {
        width: auto;
        float: none;
        margin: 0 auto;
    }

    .product-item {
        width: 33.333%;
    }

    .product-item .item-wrap {
        margin: 8px;
    }

    .page_bar {
        margin-top: 20px;
        text-align: center;
    }

    .main_hd {
        display: block;
    }

    .main_hd .page_title {
        float: none;
    }

    .main_hd .share_this {
        float: none;
    }

    .main_hd .page_title+.share_this {
        padding-top: 5px;
    }

    /* list */
    .items_list ul {
        padding-top: 0;
    }

    .items_list .product_item {
        max-width: 100%;
        width: 100%;
        height: fit-content;
        margin: 0px;
        margin-bottom: 15px;
    }

    /* product intro */
    .page_title {
        line-height: 1.1;
        border-bottom: 0;
    }

    .video_close {
        display: none
    }

    .image-additional li.image-item.current img {
        border: none;
    }

    .product-view {
        width: 100%;
        float: none;
        margin: 0 -2px 30px;
    }

    .product-view .product-image,
    .single_product_items {
        display: none
    }

    .image-additional-wrap {
        display: block;
    }

    .product-view .image-additional {
        width: 100%;
        margin: 0;
    }

    .product-view .image-additional ul {
        width: 100%;
    }

    .product-view .image-additional li {
        width: 33.33333333%;
        margin: 0;
    }

    .product-view .image-additional li a {
        padding: 0;
        margin: 0 2px;
        border: 1px solid #eee;
        position: relative;
    }

    .product-view .image-additional li img {
        border: 0;
        padding: 0;
    }

    .product-view .image-additional li.current>a {
        border: 1px solid #eee;
    }

    .product-view .image-additional li.single {
        display: block
    }

    .product-view .image-additional li.current a:before,
    .product-view .image-additional li.current a:after {
        display: none;
    }

    .product-view .swiper-button-next,
    .product-view .swiper-button-prev {
        background: rgba(0, 0, 0, .8);
        color: #fff;
    }

    .product-view .swiper-button-next {
        right: 5px;
    }

    .product-view .swiper-button-prev {
        left: 5px;
    }

    /* product summary */
    .product-summary {
        position: relative;
        width: 100%;
        float: none;
    }

    .product-summary .share-this {
        float: none;
        margin: 30px 0;
    }

    .product-summary .product-meta li {
        display: block;
    }

    .product-summary .product-meta li em {
        display: inline;
        color: #333;
        padding-right: 15px;
        font-weight: bold;
    }

    .product-btn-wrap {
        text-align: left;
    }

    .product-btn-wrap a {
        margin: 0 0 10px !important;
    }

    .product-summary .share-this {
        text-align: left;
    }

    /* product detail  */
    .detail-tabs {
        padding-right: 0;
    }

    .product-detail .share-this {
        position: static;
        padding-bottom: 30px;
    }

    .tab-panel-wrap {
        padding: 10px 0 0;
    }

    .goods-may-like .title {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

/* banner */
.col-banner {
    transition: 0.5s all ease;
    position: relative;
    padding: 0 !important;
}

.col-banner .swiper-slide {
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.col-banner .swiper-slide .ban_cont {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    left: 0;
    width: 100%;
    z-index: 2;
}

#col-index-banner .swiper-slide {
    height: 100vh !important;
    position: relative;
}

#col-index-banner .swiper-slide .ban_cont .content .s-content {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.25;
}

#col-banner .swiper-slide .ban_cont .content h1 {
    font-size: 3rem;
    font-weight: bold;
}

/* index */
#index-body .fadein {
    opacity: 0;
    transition: 0.2s;
}

#index-body .fadeinup {
    transform: translateY(40px);
    opacity: 0;
    transition: 0.2s;
}

#index-body .fadeinleft {
    transform: translateX(-40px);
    opacity: 0;
    transition: 0.2s;
}

#index-body .fadeinright {
    transform: translateX(40px);
    opacity: 0;
    transition: 0.2s;
}

#index-body .section.active .fadein {
    opacity: 1;
    transition: 0.5s;
    transition-delay: 0.8s;
}

#index-body .section.active .fadeinup,
#index-body .section.active .fadeinleft,
#index-body .section.active .fadeinright {
    transform: none;
    opacity: 1;
    transition: 0.5s;
    transition-delay: 0.8s;
}

#index-body .section.active .delay1 {
    transition-delay: 0.9s;
}

#index-body .section.active .delay2 {
    transition-delay: 1s;
}

#index-body .section.active .delay3 {
    transition-delay: 1.1s;
}

#index-body .section.active .delay4 {
    transition-delay: 1.2s;
}

#index-body .section.active .delay5 {
    transition-delay: 1.3s;
}

#index-body .section {
    height: 100vh;
}

#index-body .init-1 .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    z-index: -1;
}

#index-body .init-1 .bg li {
    width: 50%;
    height: 100%;
}

#index-body .init-1 .wrap {
    margin-top: 80px;
}

#index-body .init-1 .content {
    width: 40%;
}

#index-body .init-1 .content .s-content {
    font-size: 18px;
    color: #666;
    line-height: 1.666;
}

#index-body .init-1 .content .s-content h2 {
    font-size: 3rem;
    color: #009b65;
    line-height: 1.208;
    font-weight: bold;
}

#index-body .init-1 .content .s-content ul {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

#index-body .init-1 .content .s-content ul::before {
    content: '';
    width: 1px;
    height: 80%;
    background: rgba(0, 0, 0, .1);
    position: absolute;
    left: 35%;
    top: 10%;
}

#index-body .init-1 .content .s-content ul li {
    color: #000;
    padding: 22px 18px 3vh 0;
}

#index-body .init-1 .content .s-content ul li:nth-child(-n+2) {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

#index-body .init-1 .content .s-content ul li:nth-child(2n-1) {
    width: 35%;
}

#index-body .init-1 .content .s-content ul li:nth-child(2n) {
    width: 65%;
    padding-left: 3vw;
}

#index-body .init-1 .content .s-content ul li p:nth-child(1) {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#index-body .init-1 .content .s-content ul li .odometer {
    font-size: 2.25rem;
    font-weight: bold;
    color: #009b65;
    line-height: 1;
    vertical-align: baseline;
    font-family: 'DIN';
    white-space: nowrap;
}

#index-body .init-1 .content a.more {
    font-size: 18px;
    transition: 0.25s;
    font-weight: bold;
    line-height: 1;
    margin-top: 6vh;
    margin-top: 3vh;
    display: inline-block;
}

#index-body .init-1 .content a.more span {
    display: inline-block;
    vertical-align: middle;
}

#index-body .init-1 .content a.more i.fa {
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    margin-left: 10px;
}

#index-body .init-1 .content a.more:hover {
    color: #009b65
}

#index-body .init-2 .container2 {
    margin-top: 80px;
}

#index-body .init-2 .head {
    margin-bottom: 4vh;
    display: flex;
    align-items: flex-end;
}

#index-body .init-2 .head h2 {
    font-size: 2.625rem;
    font-weight: bold;
    color: #009b65;
}

#index-body .init-2 .head .namemark {
    font-size: 1.875rem;
    color: #009b65;
    margin: 0 auto 0 20px;
}

#index-body .init-2 .head .swiper-button {
    position: static;
    width: 46px;
    height: 46px;
    margin-top: auto;
    border-radius: 50%;
    border: 1px solid rgba(62, 50, 41, .27);
    color: #b1b1b1;
    transition: 0.25s;
    opacity: 1;
    outline: none;
    text-align: center;
    line-height: 44px;
    font-size: 24px;
}

#index-body .init-2 .head .swiper-button::after {
    display: none;
}

#index-body .init-2 .head .swiper-button:hover {
    background: #009b65;
    border-color: #009b65;
    color: #fff;
}

#index-body .init-2 .head .swiper-button-prev {
    margin-right: 10px;
}

#index-body .init-2 .swiper-slide {
    position: relative;
}

#index-body .init-2 .swiper-slide .img {
    overflow: hidden;
    position: relative;
    padding-bottom: 145%;
    background-position: center;
    background-size: cover;
}

#index-body .init-2 .swiper-slide .title {
    position: absolute;
    bottom: 4.1vh;
    left: 0;
    width: 100%;
    color: black;
    text-align: center;
    font-size: 1.625rem;
    font-weight: bold;
    z-index: 1;
    transition: 0.25s;
}

#index-body .init-2 .swiper-slide .content {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 6vh 2vw;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
    backdrop-filter: blur(5px);
    color: black;
}

#index-body .init-2 .swiper-slide .content h3 {
    text-align: center;
    font-size: 1.625rem;
    font-weight: bold;
    margin-bottom: 2vh;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.25s;
}

#index-body .init-2 .swiper-slide .content .s-content {
    font-size: 16px;
    line-height: 1.5;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.25s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    height: 96px;
}

#index-body .init-2 .swiper-slide:hover .title {
    transform: translateY(-10px);
    opacity: 0;
}

#index-body .init-2 .swiper-slide:hover .content {
    opacity: 1;
    visibility: visible;
}

#index-body .init-2 .swiper-slide:hover .content h3 {
    transition-delay: 0.2s;
    transform: none;
    opacity: 1;
}

#index-body .init-2 .swiper-slide:hover .content .s-content {
    transition-delay: 0.35s;
    transform: none;
    opacity: 1;
}

#index-body .init-2 .swiper-pagination {
    position: static;
    margin: 6vh 0 1px;
    height: 1px;
    background: rgba(0, 0, 0, .15);
}

#index-body .init-2 .swiper-pagination span.swiper-pagination-progressbar-fill {
    height: 3px;
    top: -1px;
    background: #009b65;
}

#index-body .init-3 ul.list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

#index-body .init-3 ul.list li {
    width: 33.33%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#index-body .init-3 ul.list li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    transition: 0.25s;
    background: rgba(0, 0, 0, .3);
    position: relative;
}

#index-body .init-3 ul.list li a::before {
    content: '';
    border-top: 9vw solid #009b65;
    border-right: 9vw solid transparent;
    position: absolute;
    left: -9vw;
    top: calc(-9vw + 80px);
    transition: 0.25s;
}

#index-body .init-3 ul.list li a::after {
    content: '';
    border-bottom: 9vw solid #009b65;
    border-left: 9vw solid transparent;
    position: absolute;
    bottom: -9vw;
    right: -9vw;
    transition: 0.25s;
}

#index-body .init-3 ul.list li a .img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: 1.5s cubic-bezier(.165, .84, .44, 1);
    z-index: -1;
}

#index-body .init-3 ul.list li a h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 8px;
}

#index-body .init-3 ul.list li a .namemark {
    font-size: 24px;
    font-weight: bold;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
}

#index-body .init-3 ul.list li a i.iconfont {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #009b65;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 65%;
    opacity: 0;
    margin-top: 20px;
    transition: 0.25s;
}

#index-body .init-3 ul.list li a .content {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 6vh;
    font-size: 18px;
    line-height: 1.5;
    padding: 0 5vw;
    transition: 0.25s;
}

#index-body .init-3 ul.list li a:hover {
    background: transparent;
}

#index-body .init-3 ul.list li a:hover .img {
    transform: scale(1.06);
}

#index-body .init-3 ul.list li a:hover i.iconfont {
    margin-top: 0;
    opacity: 1;
}

#index-body .init-3 ul.list li a:hover .content {
    transform: translateY(20px);
    opacity: 0;
}

#index-body .init-3 ul.list li a:hover::before {
    left: 0;
    top: 80px;
}

#index-body .init-3 ul.list li a:hover::after {
    right: 0;
    bottom: 0;
}

#index-body .init-4 .flex {
    flex-wrap: wrap;
    margin-top: 80px;
}

#index-body .init-4 .news-nav {
    width: 21%;
    position: relative;
    padding-bottom: 52px;
}

#index-body .init-4 .news-nav h2 {
    font-size: 2.625rem;
    margin-bottom: 3vh;
    color: #009b65;
    font-weight: bold;
}

#index-body .init-4 .news-nav ul.list li {
    margin-bottom: 6px;
}

#index-body .init-4 .news-nav ul.list li a {
    transition: 0.2s;
    font-size: 18px;
}

#index-body .init-4 .news-nav ul.list li a:hover {
    color: #009b65;
    font-weight: bold;
}

#index-body .init-4 .news-nav .swiper-button {
    width: 52px;
    height: 52px;
    text-align: center;
    line-height: 52px;
    background: #fff;
    border-radius: 50%;
    outline: none;
    opacity: 1;
    top: auto;
    bottom: 0;
    position: absolute;
    transition: 0.25s;
    font-size: 24px;
    color: #000
}

#index-body .init-4 .news-nav .swiper-button::after {
    display: none;
}

#index-body .init-4 .news-nav .swiper-button:hover {
    background: #009b65;
    color: #fff;
}

#index-body .init-4 .news-nav .swiper-button-prev {
    left: 0;
}

#index-body .init-4 .news-nav .swiper-button-next {
    right: auto;
    left: 65px;
}

#index-body .init-4 .slides {
    width: 79%;
}

#index-body .init-4 .slides .swiper-slide {
    padding: 10px;
}

#index-body .init-4 .slides .swiper-slide .img {
    overflow: hidden;
    position: relative;
    min-height: 88px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

#index-body .init-4 .slides .swiper-slide .title {
    font-size: 18px;
    line-height: 1.4;
    transition: 0.2s;
    margin: 3vh 0;
    height: 50px;
}

#index-body .init-4 .slides .swiper-slide .desc {
    font-size: 16px;
    color: #666;
    line-height: 1.875;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 4vh;
}

#index-body .init-4 .slides .swiper-slide .more {
    padding-top: 16px;
    border-top: 2px solid rgba(0, 0, 0, .1);
    font-size: 16px;
    color: #666;
    transition: 0.2s;
}

#index-body .init-4 .slides .swiper-slide:hover .title {
    color: #009b65;
}

#index-body .init-4 .slides .swiper-slide:hover .more {
    color: #009b65;
    border-top-color: #009b65;
}

/* page */
.el-pagination {
    white-space: nowrap;
    padding: 2px 5px;
    color: #303133;
    text-align: center;
    font-size: 12px;
    clear: both
}

.el-pagination::after,
.el-pagination::before {
    display: table;
    content: ""
}

.el-pagination::after {
    clear: both
}

.el-pagination button,
.el-pagination span:not([class*=suffix]) {
    display: inline-block;
    font-size: 13px;
    min-width: 35.5px;
    height: 28px;
    line-height: 28px;
    vertical-align: top;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.el-pagination button:disabled {
    color: #C0C4CC;
    background-color: #FFF;
    cursor: not-allowed
}

.el-pagination button {
    border: none;
    padding: 0 6px;
    background: 0 0
}

.el-pagination button,
.el-pagination span:not([class*=suffix]) {
    display: inline-block;
    font-size: 13px;
    min-width: 35.5px;
    height: 28px;
    line-height: 28px;
    vertical-align: top;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.el-pagination__total {
    margin-right: 10px;
    font-weight: 400;
    color: #606266
}

.el-pager {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    list-style: none;
    font-size: 0
}

.el-pager li {
    padding: 0 4px;
    font-size: 13px;
    min-width: 35.5px;
    height: 28px;
    line-height: 28px;
    box-sizing: border-box;
    text-align: center
}

.el-pager,
.el-pager li {
    vertical-align: top;
    margin: 0;
    display: inline-block
}

.el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: #409EFF;
    color: #FFF
}

.el-pagination .btn-next,
.el-pagination .btn-prev {
    background: center center no-repeat #FFF;
    background-size: 16px;
    cursor: pointer;
    margin: 0;
    color: #303133
}

.el-pagination.is-background .btn-next,
.el-pagination.is-background .btn-prev,
.el-pagination.is-background .el-pager li {
    margin: 0 5px;
    background-color: #f4f4f5;
    color: #606266;
    min-width: 30px;
    border-radius: 2px
}

/* 内页 */
.overflow {
    overflow: hidden;
}

.overflow img,
.smallImg img {
    width: 100%;
    transition: 1.5s cubic-bezier(.165, .84, .44, 1);
}

.overflow:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.smallImg:hover img {
    -webkit-transform: scale(0.92);
    transform: scale(0.95);
}

.videoPop {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    display: none;
    text-align: center;
    padding: 5vh 1vw;
}

.videoPop .col-video2 {
    position: relative;
    width: 100%;
    height: 100%;
}

#Video {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    max-width: 970px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

#videoClose {
    position: absolute;
    right: 10px;
    top: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 36px;
    transition: 0.5s;
    z-index: 99;
}

#videoClose:hover {
    color: #eee;
}

.vicenav {
    text-align: center;
    background: #f1f2f3;
    padding: 20px 10px;
}

.vicenav.white {
    background: #fff;
}

.vicenav a {
    font-size: 18px;
    transition: 0.2s;
    display: inline-block;
}

.vicenav a:not(:last-child) {
    margin-right: 2.3vw;
    padding-right: 2.3vw;
    position: relative;
}

.vicenav a:not(:last-child)::after {
    content: '/';
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    color: #000;
}

.vicenav a:hover,
.vicenav a.active {
    color: #009b65
}

.col-page-about h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #009b65;
    margin-bottom: 3.5vh;
}

.col-page-about .col-1 .wrap {
    padding: 12vh 60px 10px;
}

.col-page-about .col-1 .wrap .content {
    font-size: 18px;
    color: #666;
    line-height: 1.6666;
}

.col-page-about .col-1 .wrap .content>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.col-page-about .col-1 .wrap .content>ul>li {
    width: 49%;
    margin-bottom: 12vh;
}

.col-page-about .col-1 .wrap .content>ul>li:nth-child(1) {
    padding: 0 4.5vw 0 10vw;
}

.col-page-about .col-1 .wrap .content>ul>li:nth-child(4) {
    padding: 0 10vw 0 4.5vw;
}

.col-page-about .col-1 .wrap .content>ul>li:nth-child(2) img,
.col-page-about .col-1 .wrap .content>ul>li:nth-child(3) img {
    box-shadow: 5.5px 9.526px 35px 0px rgba(14, 30, 60, 0.35);
}

.col-page-about .col-1 .wrap .content>ul>li ul {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-top: 6vh;
}

.col-page-about .col-1 .wrap .content>ul>li ul::before {
    content: '';
    width: 1px;
    height: 80%;
    background: rgba(0, 0, 0, .1);
    position: absolute;
    left: 35%;
    top: 10%;
}

.col-page-about .col-1 .wrap .content>ul>li ul li {
    color: #000;
    padding: 22px 18px 3vh 0;
}

.col-page-about .col-1 .wrap .content>ul>li ul li:nth-child(-n+2) {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.col-page-about .col-1 .wrap .content>ul>li ul li:nth-child(2n-1) {
    width: 35%;
}

.col-page-about .col-1 .wrap .content>ul>li ul li:nth-child(2n) {
    width: 65%;
    padding-left: 3vw;
}

.col-page-about .col-1 .wrap .content>ul>li ul li p:nth-child(1) {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.col-page-about .col-1 .wrap .content>ul>li ul li .odometer{
    margin-right: 35px;
}

.col-page-about .col-1 .wrap .content>ul>li ul li .odometer {
    font-size: 3rem;
    font-weight: bold;
    color: #009b65;
    line-height: 1;
    vertical-align: baseline;
    font-family: 'DIN';
}

.col-page-about .col-1 .wrap .content>ul>li.tilter {
    position: relative;
    perspective: 1000px;
}

.col-page-about .col-2 .flex {
    flex-wrap: wrap;
}

.col-page-about .col-2 .flex .content {
    width: 50%;
    background-color: rgb(0, 176, 241);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col-page-about .col-2 .flex .content .inner {
    max-width: 700px;
    margin-left: auto;
    padding: 25px 5vw 25px 20px;
}

.col-page-about .col-2 .flex .content h2 {
    color: #fff;
    margin-bottom: 5vh;
}

.col-page-about .col-2 .flex .content .s-content {
    font-size: 18px;
    line-height: 1.66;
}

.col-page-about .col-2 .flex .content .s-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-page-about .col-2 .flex .content .s-content ul li {
    width: 38%;
    margin-bottom: 5vh;
}

.col-page-about .col-2 .flex .content .s-content ul li img {
    line-height: 61px;
}

.col-page-about .col-2 .flex .content .s-content ul li h3 {
    font-size: 1.875rem;
    margin: 12px 0 15px;
}

.col-page-about .col-2 .flex .img {
    width: 50%;
}

.col-page-about .col-2 .flex .img .bttrlazyloading-wrapper {
    width: 100%;
    height: 100%;
}

.col-page-about .col-2 .flex .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.col-page-about .col-3 {
    background: #f1f2f3;
}

.col-page-about .col-3 .container2 {
    padding: 10vh 20px 8vh;
}

.col-page-about .col-3 h2 {
    text-align: center;
    margin-bottom: 5vh;
}

.col-page-about .col-3 .swiper-container .swiper-slide {
    height: auto;
    background: #fff;
}

.col-page-about .col-3 .swiper-container .swiper-slide .img {
    position: relative;
    padding: 10px 20px;
    height: calc(100% - 85px);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
}

.col-page-about .col-3 .swiper-container .swiper-slide .img img {
    width: auto;
}

.col-page-about .col-3 .swiper-container .swiper-slide .title {
    padding: 0 10px;
    text-align: center;
    height: 85px;
    color: #666;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.col-page-about .col-3 .swiper-container .swiper-slide .title::before {
    content: '';
    width: 90%;
    height: 1px;
    background: #e5e5e5;
    position: absolute;
    left: 5%;
    top: 0;
}

.col-page-about .col-3 .swiper-container .swiper-pagination {
    position: static;
    margin-top: 6vh;
}

.col-page-about .col-3 .swiper-container .swiper-pagination span {
    width: 12px;
    height: 12px;
    background: #7d7d7d;
    opacity: 1;
    transition: 0.36s;
}

.col-page-about .col-3 .swiper-container .swiper-pagination span.swiper-pagination-bullet-active {
    background: #009b65;
}

.col-page-application ul.list li {
    display: flex;
    flex-wrap: wrap;
}

.col-page-application ul.list li:nth-child(2n) {
    flex-direction: row-reverse;
}

.col-page-application ul.list li .img {
    width: 50%;
    height: 50vw;
}

.col-page-application ul.list li .img .bttrlazyloading-wrapper {
    width: 100%;
    height: 100%;
}

.col-page-application ul.list li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.col-page-application ul.list li .content {
    padding: 35px 12vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.col-page-application ul.list li:nth-child(1) .content {
    background: url(../images/bg1.jpg) no-repeat center/cover;
}

.col-page-application ul.list li:nth-child(2) .content {
    background: url(../images/bg2.jpg) no-repeat center/cover;
}

.col-page-application ul.list li:nth-child(3) .content {
    background: url(../images/bg3.jpg) no-repeat center/cover;
}

.col-page-application ul.list li:nth-child(4) .content {
    background: url(../images/bg4.jpg) no-repeat center/cover;
}

.col-page-application ul.list li:nth-child(5) .content {
    background: url(../images/bg5.jpg) no-repeat center/cover;
}

.col-page-application ul.list li:nth-child(6) .content {
    background: url(../images/bg6.jpg) no-repeat center/cover;
}

.col-page-application ul.list li .content h2 {
    font-size: 2.25rem;
    margin-bottom: 3vh;
}

.col-page-application ul.list li .content .s-content {
    font-size: 18px;
    color: #666;
    line-height: 1.666;
    margin-bottom: 6vh;
}

.col-page-application ul.list li .content .product-list h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.col-page-application ul.list li .content .product-list .item {
    margin-bottom: 5px;
    color: #009b65;
    font-size: 18px;
    font-weight: bold;
}

.col-page-application ul.list li .content .product-list .item a {
    display: inline;
    border-bottom: 1px solid;
    margin-right: 6px;
    color: #009b65;
}

.col-page-product {
    padding: 9vh 0;
}

.col-page-product .flex {
    justify-content: space-between;
    flex-wrap: wrap;
}

.col-page-product .flex .sider {
    width: 25%;
}

.col-page-product .flex .sider h2 {
    font-size: 2.25rem;
    margin-bottom: 4vh;
}

.col-page-product .flex .sider ul {
    border-top: 1px solid rgba(0, 0, 0, .5);
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    margin-bottom: 6vh;
}

.col-page-product .flex .sider ul li {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.col-page-product .flex .sider ul li:last-child {
    border-bottom: none;
}

.col-page-product .flex .sider ul li a {
    display: block;
    width: 100%;
    padding: 18px 20px 18px 10px;
    display: flex;
    justify-content: space-between;
    transition: 0.25s;
}

.col-page-product .flex .sider ul li a span {
    font-size: 16px;
}

.col-page-product .flex .sider ul li a i.fa {
    font-size: 16px;
    color: #009b65;
    transition: 0.25s color;
}

.col-page-product .flex .sider ul li a:hover,
.col-page-product .flex .sider ul li.active a {
    background: #009b65;
    color: #fff;
}

.col-page-product .flex .sider ul li a:hover i.fa,
.col-page-product .flex .sider ul li.active a i.fa {
    color: #fff;
}

.col-page-product .flex .sider .product-search p {
    margin-bottom: 12px;
    font-size: 18px;
    color: #666;
}

.col-page-product .flex .sider .product-search .input {
    width: 100%;
    height: 56px;
    border-radius: 5px;
    background: #f5f6f7;
    border: 1px solid #e5e5e5;
}

.col-page-product .flex .sider .product-search .input input {
    outline: none;
    border: none;
    background: none;
    vertical-align: middle;
    font-size: 16px;
    height: 100%;
}

.col-page-product .flex .sider .product-search .input .inpt3 {
    padding-left: 12px;
    width: calc(100% - 60px);
}

.col-page-product .flex .sider .product-search .input .inpt4 {
    width: 60px;
}

.col-page-product .flex .wrap {
    width: 71%;
    background: #f1f2f3;
    border-radius: 5px;
    padding: 6vh 3.2vw 10vh;
}

.col-page-product .flex .wrap h2 {
    margin-bottom: 3.5vh;
    font-size: 1.875rem;
}

.col-page-product .flex .wrap .content {
    font-size: 18px;
    color: #666;
    line-height: 1.666;
    margin-bottom: 7vh;
}

.col-page-product .flex .wrap .content table {
    width: 100%;
    font-size: 16px;
    line-height: 1.875;
    border-top: 1px solid rgba(0, 0, 0, .4);
    border-bottom: 1px solid rgba(0, 0, 0, .4);
}

.col-page-product .flex .wrap .content table tr:nth-child(2n-1) {
    background: #fff;
}

.col-page-product .flex .wrap .content table td {
    padding: 15px 20px;
    color: #000;
}

.col-page-product .flex .wrap .content table td:nth-child(1) {
    border-right: 1px solid rgba(0, 0, 0, .4);
}

.col-page-product .flex .wrap .item {
    margin-top: 6vh;
}

.col-page-product .flex .wrap .item a {
    width: 200px;
    height: 50px;
    line-height: 50px;
    background: #009b65;
    color: #fff;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    margin: 0 15px 15px 0;
    text-align: center;
}

.col-page-rd h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #009b65;
    margin-bottom: 3vh;
}

.col-page-rd .col-1 .content {
    padding: 9vh 0;
}

.col-page-rd .col-1 .content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-page-rd .col-1 .content ul li:nth-child(1) {
    width: 39%;
}

.col-page-rd .col-1 .content ul li strong {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.313;
    color: #000;
}

.col-page-rd .col-1 .content ul li:nth-child(2) {
    width: 61%;
    font-size: 18px;
    color: #666;
    line-height: 1.778;
}

.col-page-rd .col-1 .wrap {
    position: relative;
}

.col-page-rd .col-1 .wrap .img {
    position: relative;
}

.col-page-rd .col-1 .wrap .img::after {
    content: '';
    width: 100%;
    height: 55%;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.4;
    background-image: -moz-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

.col-page-rd .col-1 .wrap .s-content {
    position: absolute;
    z-index: 2;
    bottom: 6vh;
    width: 100%;
    left: 0;
    color: #fff
}

.col-page-rd .col-1 .wrap .s-content ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.col-page-rd .col-1 .wrap .s-content ul li {
    margin: 0 2.5vw;
    position: relative;
    padding-left: 70px;
    font-size: 16px;
}

.col-page-rd .col-1 .wrap .s-content ul li:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 58px;
    background: rgba(255, 255, 255, .1);
    position: absolute;
    right: -2.5vw;
    top: 50%;
    transform: translateY(-50%);
}

.col-page-rd .col-1 .wrap .s-content ul li p:nth-child(1) {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.col-page-rd .col-1 .wrap .s-content ul li .odometer {
    font-family: 'DIN';
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    vertical-align: baseline;
}

.col-page-rd .col-2 {
    background: #f1f2f3;
}

.col-page-rd .col-2 .container2 {
    padding: 8vh 20px 10vh;
}

.col-page-rd .col-2 h2 {
    text-align: center;
    margin-bottom: 12px;
}

.col-page-rd .col-2 .desc {
    text-align: center;
    font-size: 24px;
    color: #666;
    margin-bottom: 6vh;
}

.col-page-rd .col-2 .list li {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
}

.col-page-rd .col-2 .list li:nth-child(2n) {
    flex-direction: row-reverse;
}

.col-page-rd .col-2 .list li .img {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.col-page-rd .col-2 .list li .img .bttrlazyloading-wrapper {
    width: 100%;
    height: 100%;
}

.col-page-rd .col-2 .list li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.col-page-rd .col-2 .list li .content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px 3vw 35px 4vw;
}

.col-page-rd .col-2 .list li:nth-child(2n) .content {
    padding: 35px 4vw 35px 3vw;
}

.col-page-rd .col-2 .list li .content h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 3vh;
}

.col-page-rd .col-2 .list li .content .s-content {
    font-size: 16px;
    color: #666;
    line-height: 1.875;
}

.col-page-rd .col-2 .list li:nth-child(3) .content .s-content {
    line-height: 1.5;
}

.col-page-rd .col-2 .list li:nth-child(3) .content .s-content strong {
    color: #009b65;
    font-family: 'microsoft yahei';
}

.col-page-rd .col-3 .wrap {
    padding: 8vh 60px;
}

.col-page-rd .col-3 .wrap h2 {
    text-align: center;
    margin-bottom: 12px;
}

.col-page-rd .col-3 .wrap .desc {
    text-align: center;
    font-size: 24px;
    color: #666;
    margin-bottom: 6vh;
}

.col-page-rd .col-3 .wrap ul.list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-page-rd .col-3 .wrap ul.list li {
    width: 32%;
    margin-bottom: 20px;
    text-align: center;
}

.col-page-rd .col-3 .wrap ul.list li .img {
    overflow: hidden;
}

.col-page-rd .col-3 .wrap ul.list li .content {
    padding: 5vh 5vw 0;
}

.col-page-rd .col-3 .wrap ul.list li .content h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2.2vh;
    padding: 0 20px;
}

.col-page-rd .col-3 .wrap ul.list li .content .s-content {
    font-size: 18px;
    line-height: 1.666;
}

.col-page-news {
    padding: 12vh 0;
}

.col-page-news ul.list {
    display: flex;
    flex-wrap: wrap;
}

.col-page-news ul.list li {
    width: 28%;
    margin-bottom: 9vh;
    margin-right: 8%;
}

.col-page-news ul.list li:nth-child(3n) {
    margin-right: 0;
}

.col-page-news ul.list li .img {
    overflow: hidden;
    position: relative;
    min-height: 88px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

.col-page-news ul.list li .title {
    font-size: 18px;
    line-height: 1.4;
    transition: 0.2s;
    margin: 4vh 0 3vh;
}

.col-page-news ul.list li .desc {
    font-size: 16px;
    color: #666;
    line-height: 1.875;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 4vh;
}

.col-page-news ul.list li .more {
    padding-top: 16px;
    border-top: 2px solid rgba(0, 0, 0, .1);
    font-size: 16px;
    color: #666;
    transition: 0.2s;
}

.col-page-news ul.list li:hover .title {
    color: #009b65;
}

.col-page-news ul.list li:hover .more {
    color: #009b65;
    border-top-color: #009b65;
}

.col-page-news2 {
    background: #f1f2f3;
    padding: 12vh 0;
}

.col-page-news2 ul.list {
    display: flex;
    flex-wrap: wrap;
}

.col-page-news2 ul.list li {
    width: calc(25% - 15px);
    margin-right: 20px;
    margin-bottom: 20px;
}

.col-page-news2 ul.list li:nth-child(4n) {
    margin-right: 0;
}

.col-page-news2 ul.list li a {
    transition: 0.25s;
    background: #fff;
    height: 100%;
    padding: 4.2vh 28px 20px;
    font-size: 16px;
    color: #666;
    display: flex;
    flex-direction: column;
}

.col-page-news2 ul.list li a .title {
    font-size: 18px;
    margin-bottom: 3vh;
    color: #000;
    transition: 0.2s color;
}

.col-page-news2 ul.list li a .desc {
    line-height: 1.5;
    margin-bottom: 14vh;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.col-page-news2 ul.list li a .date {
    margin-top: auto;
}

.col-page-news2 ul.list li a:hover {
    background: #009b65;
    color: #fff;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.col-page-news2 ul.list li a:hover .title {
    color: #fff;
}

/* 新闻详情页 */
.col-news {
    position: relative;
    margin: 0 auto;
    padding: 5vh 10px;
}

.col-news article {
    width: 100%;
    background: #fff;
}

.col-news .met_clear {
    clear: both;
}

.col-news .met_module2 h1.met_title {
    font-size: 24px;
    font-weight: normal;
    padding: 5px 0;
    color: #000;
}

.col-news .met_module2 .met_infos {
    color: #818181;
    font-size: 12px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.col-news .met_module2 .met_time {
    padding-right: 6px;
}

.col-news .met_module2 .met_source {
    padding-right: 6px;
}

.col-news .met_module2 .met_source a {
    color: #607fa6;
}

.col-news .met_module2 .met_editor {
    padding: 0 10px;
    color: #000;
}

.col-news .met_editor {
    line-height: 2;
}

.col-news .met_tools {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    position: relative;
    padding: 10px 10px 0;
}

.col-news .met_tools .met_page {
    clear: both;
    color: #818181;
}

.col-news .met_tools .met_page li {
    display: inline-block;
    list-style: none;
    margin-right: 30px;
}

.col-news .met_tools .met_page li:last-child {
    margin-right: 0
}

.col-news .met_tools .met_page li span {
    padding-right: 5px;
}

.col-news .met_tools .met_page a {
    color: #607fa6;
}

.col-page-contact h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #009b65;
}

.col-page-contact .col-1 .container2 {
    padding: 8vh 20px 4vh;
}

.col-page-contact .col-1 .flex {
    justify-content: space-between;
    margin-bottom: 8vh;
    align-items: flex-start;
}

.col-page-contact .col-1 .flex .content {
    font-size: 18px;
    color: #666;
    line-height: 1.66;
}

.col-page-contact .col-1 .flex .content h2 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.col-page-contact .col-1 .flex .content strong {
    color: #000;
    font-weight: bold;
}

.col-page-contact .col-1 .flex .content a {
    color: #009b65;
    border-bottom: 1px solid;
    display: inline;
}

.col-page-contact .col-1 .flex .code {
    display: flex;
    align-items: center;
}

.col-page-contact .col-1 .flex .code .img {
    margin-right: 12px;
}

.col-page-contact .col-1 .flex .code .title {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.col-page-contact .col-1 .map {
    height: 517px;
    border-radius: 10px;
}

.col-page-contact .col-1 .map #allmap {
    width: 100%;
    height: 100%;
}

.col-page-contact .col-1 .map #allmap img {
    max-width: 1070px;
    max-height: 500px;
}

.col-page-contact .col-1 .map #allmap label {
    max-width: 1070px;
    background: #fff !important;
    border: none !important;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
    padding: 10px !important;
    top: auto !important;
    bottom: 10px;
    left: 50% !important;
    transform: translateX(-45%)
}

.col-page-contact .col-1 .map #allmap label::before {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
}

.col-page-contact .col-1 .map #allmap .BMapLib_SearchInfoWindow .BMapLib_bubble_content {
    overflow-y: auto !important;
}

.col-page-contact .col-2 .container2 {
    padding: 4vh 20px 8vh;
}

.col-page-contact .col-2 .namemark {
    font-size: 18px;
    color: #666;
    margin: 10px 0 5vh;
}

.col-page-contact .col-2 form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-page-contact .col-2 form ul {
    width: 52%;
}

.col-page-contact .col-2 form ul li {
    margin-bottom: 20px;
    font-size: 0
}

.col-page-contact .col-2 form ul li input,
.col-page-contact .col-2 form ul li textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    padding-left: 15px;
    outline: none;
    background: #fff;
    font-size: 18px;
    height: 58px;
    box-shadow: 2px 3.464px 8px 0px rgba(0, 43, 105, 0.03);
}

.col-page-contact .col-2 form ul li textarea {
    min-height: 214px;
    padding-top: 15px;
}

.col-page-contact .col-2 form .content {
    width: 41%;
}

.col-page-contact .col-2 form .content .verify {
    line-height: 50px;
    border: 1px solid #d2d2d2;
    padding-left: 15px;
    ;
    background: none;
    outline: none;
    font-size: 16px;
    width: 190px;
}

.col-page-contact .col-2 form .content .recaptcha {
    color: #868686;
    margin: 10px 0 15px;
    display: inline-block;
    border-bottom: 1px solid #868686;
}

.col-page-contact .col-2 form .content .s-content {
    color: #868686;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.col-page-contact .col-2 form .content .sub {
    width: 200px;
    height: 55px;
    border-radius: 27.5px;
    background: #009b65;
    margin-top: 5vh;
    border: none;
    outline: none;
    color: #fff;
    font-size: 18px;
    transition: 0.36s;
}

.col-page-contact .col-2 form .content .sub:hover {
    box-shadow: 3px 5px 12px 0 rgba(0, 0, 0, 0.12);
}

.col-page-recruit h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #009b65;
    margin-bottom: 5.2vh;
}

.col-page-recruit .col-1 {
    background: #f1f2f3;
}

.col-page-recruit .col-1 .container2 {
    padding: 8vh 20px;
}

.col-page-recruit .col-1 h2 {
    text-align: center;
}

.col-page-recruit .col-1 ul.list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-page-recruit .col-1 ul.list li {
    width: 48%;
    background: #fff;
}

.col-page-recruit .col-1 ul.list li .img {
    overflow: hidden;
    position: relative;
}

.col-page-recruit .col-1 ul.list li .content {
    padding: 4vh 45px;
}

.col-page-recruit .col-1 ul.list li .content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    transition: 0.25s;
}

.col-page-recruit .col-1 ul.list li .content .s-content {
    font-size: 16px;
    color: #666;
    line-height: 1.875;
}

.col-page-recruit .col-1 ul.list li:hover .content h3 {
    color: #009b65;
}

.col-page-recruit .col-2 .container2 {
    padding: 8vh 20px 10vh;
}

.col-page-recruit .col-2 .job ul li {
    border-bottom: 1px solid #dcdcdc;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.col-page-recruit .col-2 .job ul li:last-child {
    border-bottom: 1px solid #000;
}

.col-page-recruit .col-2 .job ul li.active {
    background: #f1f2f3;
}

.col-page-recruit .col-2 .job ul li table {
    width: 100%;
}

.col-page-recruit .col-2 .job ul li table tr th {
    padding: 15px 0;
    font-size: 18px;
    font-weight: normal;
    width: 20%;
    background: #009b65;
    text-align: center;
    color: #fff;
}

.col-page-recruit .col-2 .job ul li table tr th:first-child {
    text-align: left;
    padding-left: 2.5vw;
}

.col-page-recruit .col-2 .job ul li .jobtit table tr td {
    width: 20%;
    padding: 15px 0;
    font-size: 16px;
    text-align: center;
}

.col-page-recruit .col-2 .job ul li .jobtit table tr td:first-child {
    text-align: left;
    padding-left: 2.5vw;
}

.col-page-recruit .col-2 .job ul li .jobtit {
    color: #000;
    cursor: pointer;
    position: relative;
    transition: 0.36s;
}

.col-page-recruit .col-2 .job ul li .jobcon {
    display: none;
    padding: 25px 2.5vw 6vh;
    position: relative;
}

.col-page-recruit .col-2 .job ul li .jobcon .content {
    position: relative;
}

.col-page-recruit .col-2 .job ul li .jobcon .content .box {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.col-page-recruit .col-2 .job ul li .jobcon .jobform {
    display: block;
    width: 200px;
    border-radius: 2px;
    height: 50px;
    background: #009b65;
    color: #fff;
    text-align: center;
    line-height: 50px;
    margin-top: 6vh;
    font-size: 16px;
}

.col-page-jobform {
    padding: 7vh 0 6vh;
}

.col-page-jobform #cvlist {
    padding: 15px;
}

.col-page-jobform #cvlist .v52fmbx {
    border: 1px solid #ddd;
    border-top: 0;
    overflow: hidden;
    text-align: left;
}

.col-page-jobform #cvlist .v52fmbx h3 {
    border-top: 1px solid #ddd;
    margin: 0;
    padding: 0 5px 0 15px;
    font-weight: bold;
    font-size: 16px;
    background: #ddd;
    height: 60px;
    line-height: 60px;
}

.col-page-jobform #cvlist .v52fmbx dl {
    border-top: 1px solid #ddd;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -ms-flexbox;
    position: relative;
    padding: 5px 0;
}

.col-page-jobform #cvlist .v52fmbx dl dt {
    padding: 15px 15px 10px 15px;
    width: 105px;
    text-align: left;
    font-weight: normal;
    overflow: hidden;
    line-height: 1.2;
}

.col-page-jobform #cvlist .v52fmbx dl dd {
    -moz-box-flex: 1.0;
    -webkit-box-flex: 1.0;
    box-flex: 1.0;
    -ms-flex: 1;
    padding: 2px 15px;
    margin: 10px 0;
}

.col-page-jobform #cvlist .v52fmbx dl dd input {
    max-width: 350px;
    width: 100%;
    height: 28px;
    line-height: 28px\9;
    padding: 2px 5px;
    border: 1px solid #dcdfe0;
    background-color: #fff;
    color: #333;
    outline: 0;
    border-radius: 2px;
}

.col-page-jobform #cvlist .v52fmbx dl dd input[type="radio"] {
    border-radius: 100%;
    bottom: 3px;
    height: 15px;
    position: relative;
    vertical-align: middle;
    width: 15px;
    margin: 0;
    position: relative;
    top: -1px;
    margin-right: 6px;
}

.col-page-jobform #cvlist .v52fmbx dl dd textarea {
    max-width: 350px;
    width: 100%;
    line-height: 1.5;
    height: 100px;
    padding: 7px 5px;
    border: 1px solid #dcdfe0;
    background-color: #fff;
    color: #333;
    outline: 0;
}

.col-page-jobform #cvlist .v52fmbx dl dd input[type="submit"] {
    display: block;
    width: 185px;
    height: 50px;
    background: #009b65;
    color: #fff;
    text-align: center;
    transition: 0.3s;
    font-size: 16px;
    border: none;
    padding: 0;
}

.col-page-jobform #cvlist .v52fmbx dl dd input[type="submit"]:hover {
    box-shadow: 0px 5px 27px 0px rgba(6, 0, 1, 0.22);
}


/* search */
#search {
    padding: 8vh 0 6vh;
    overflow: hidden
}

#search .goomay-keywords-light {
    background: #bb2424 !important;
    color: #ffffff !important;
}

#search .search_left {
    border: 1px solid #d6d6d6;
    padding-top: 5px;
    padding-bottom: 5px;
}

#search .s_head {
    border-bottom: 1px solid #d6d6d6;
    height: 50px;
}

#search .s_head h2 {
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

#search .s_body ul {
    margin-top: 10px;
}

#search .s_body ul span {
    display: block;
    color: #333;
    line-height: 40px;
}

#search .s_body ul input,
.s_body ul select {
    height: 35px;
    width: 100%;
    line-height: 35px;
    border: 1px solid #e6e6e6;
    padding-left: 10px;
    margin-bottom: 10px;
}

#search .s_body .sub input {
    height: 45px;
    line-height: 45px;
    background: #333;
    border: 0;
    color: #fff;
    transition: 0.3s;
    text-align: center;
    padding-left: 0px;
    font-size: 16px;
}

#search .search_right .no-result {
    text-align: center;
    font-size: 30px;
    color: #333;
    margin-top: 50px;
}

#search .search-result-title {
    font-size: 20px;
    color: #333;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
}

#search .entry-image {
    float: left;
    width: 120px;
    margin: 0 20px 0 0;
}

#search .entry-c {
    position: relative;
    overflow: hidden;
}

#search .search-result-info {
    padding: 5px 0;
}

#search .search-result-info li {
    display: inline-block;
}

#search .entry-content p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#search .search_right em {
    color: #bb2424;
}

#search .search_right .search-result {
    margin-left: 25px;
}

#search .search_right .search-li {
    border-bottom: 1px solid #d6d6d6;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

#search .search_right li {
    overflow: hidden;
}

#search .search-result-info li:before {
    content: '/';
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    opacity: 0.5
}

#search .search-result-info li:first-child:before {
    display: none;
}

#search .product_list {
    padding-bottom: 15px;
    border-bottom: 1px solid #d6d6d6;
    margin-bottom: 15px;
}

#search .product_img {
    float: left;
}

#search .product_img img {
    border-radius: 50%;
}

#search .product_img img:hover {
    width: 90px;
    height: 90px;
}

#search .product_body {
    float: left;
    margin-left: 20px;
    margin-top: 10px;
}

#search .se_news {
    float: right;
    width: 79%;
}

#search .news ul li .se_news a {
    color: #bb2424;
    text-decoration: underline;
    display: inline-block;
    height: 22px;
    overflow: hidden;
    transition: 0.3s;
}

#search .search_right .news .date em {
    color: #fff;
}




/* 底部 */
#gotoTop {
    position: fixed;
    z-index: 999;
    ;
    bottom: 15vh;
    right: 20px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: #009b65;
    color: #fff;
    font-size: 24px;
    display: none;
    cursor: pointer;
}

.footer {
    position: relative;
    background: #222222;
    padding: 5vh 0 3vh;
}

.footer .logo {
    text-align: center;
    position: relative;
    margin-bottom: 4vh;
}

.footer .logo::before,
.footer .logo::after {
    content: '';
    width: calc(50% - 120px);
    height: 1px;
    background: rgba(255, 255, 255, .15);
    position: absolute;
    left: 0;
    top: 50%;
}

.footer .logo::after {
    left: auto;
    right: 0;
}

.footer .footer-nav ul {
    justify-content: space-between;
}

.footer .footer-nav ul li a {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
}

.footer .footer-nav ul li .child {
    margin-top: 2.6vh;
}

.footer .footer-nav ul li .child p {
    margin-bottom: 8px;
    text-transform: capitalize !important;
}
.footer .footer-nav ul li .child p a{
    text-transform: capitalize !important;
}

.footer .footer-nav ul li .child p a {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    transition: 0.2s;
}

.footer .footer-nav ul li .child p a:hover {
    color: #fff;
}

.footer .footer-info {
    margin-top: 5vh;
    padding-top: 3vh;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.footer .footer-info .contact {
    font-family: 'DIN';
    font-size: 1.875rem;
    color: #009b65;
    font-weight: bold;
}

.footer .footer-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, .7);
}

.footer .footer-info .copyright {
    margin-top: 2.4vh;
    font-size: 16px;
    color: rgba(255, 255, 255, .5);
}

.footer .footer-info .copyright a {
    color: rgba(255, 255, 255, .5);
}

.footer .footer-info .copyright .otherinfo {
    display: inline;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

/* media */

@media (max-width: 1800px) {}

@media (max-width: 1600px) {


    html {
        font-size: 15px;
    }
}

@media (max-width: 1460px) {

    #col-index-banner .swiper-slide .ban_cont .content .s-content,
    #index-body .init-1 .content .s-content h2,
    #index-body .init-1 .content .s-content ul li .odometer,
    #index-body .init-3 ul.list li a h2,
    #index-body .init-4 .news-nav h2,
    .col-page-about h2,
    .col-page-about .col-1 .wrap .content>ul>li ul li .odometer,
    #col-banner .swiper-slide .ban_cont .content h1,
    .col-page-rd h2,
    .col-page-rd .col-1 .wrap .s-content ul li .odometer,
    .col-page-contact h2,
    .col-page-recruit h2 {
        font-size: 2.5rem;
    }

    .col-page-rd .col-3 .wrap ul.list li .content {
        padding: 4vh 20px;
    }

    .col-page-about .col-1 .wrap .content>ul>li:nth-child(1),
    .col-page-about .col-1 .wrap .content>ul>li:nth-child(4) {
        padding: 0 4vw;
    }

    .header .inner nav ul li {
        margin-right: 2.5vw;
    }


    html {
        font-size: 14px;
    }

}

@media (max-width: 1200px) {

    #col-index-banner .swiper-slide .ban_cont .content .s-content,
    #index-body .init-1 .content .s-content h2,
    #index-body .init-1 .content .s-content ul li .odometer,
    #index-body .init-3 ul.list li a h2,
    #index-body .init-4 .news-nav h2,
    .col-page-about h2,
    .col-page-about .col-1 .wrap .content>ul>li ul li .odometer,
    #col-banner .swiper-slide .ban_cont .content h1,
    .col-page-rd h2,
    .col-page-rd .col-1 .wrap .s-content ul li .odometer,
    .col-page-contact h2,
    .col-page-recruit h2 {
        font-size: 2.25rem;
    }

    #index-body .init-3 ul.list li a .namemark,
    .col-page-rd .col-1 .content ul li strong,
    .col-page-rd .col-2 .desc,
    .col-page-rd .col-3 .wrap .desc,
    .col-page-recruit .col-1 ul.list li .content h3 {
        font-size: 18px;
    }

    .header .inner nav ul li,
    .header .inner .language .inner_lang>a,
    .header .inner .language .lang-none a,
    .header .inner .index-search>a span.name,
    #index-body .init-1 .content .s-content,
    #index-body .init-1 .content a.more,
    #index-body .init-3 ul.list li a .content,
    .vicenav a,
    .col-page-about .col-1 .wrap .content,
    .col-page-about .col-2 .flex .content .s-content,
    .col-page-application ul.list li .content .s-content,
    .col-page-product .flex .wrap .content,
    .col-page-rd .col-1 .content ul li:nth-child(2),
    .col-page-rd .col-3 .wrap ul.list li .content .s-content,
    .col-page-contact .col-1 .flex .content,
    .col-page-contact .col-2 .namemark,
    .col-page-contact .col-2 form ul li input,
    .col-page-contact .col-2 form ul li textarea,
    .col-page-recruit .col-2 .job ul li table tr th {
        font-size: 16px;
    }

    .col-page-application ul.list li .content {
        padding: 35px 6vw;
    }

    .col-page-application ul.list li .content .s-content {
        margin-bottom: 3vh;
    }

    .col-page-application ul.list li .img {
        height: auto;
    }

    .header .inner .logo img {
        width: 160px;
    }

    .header .inner .flex,
    .col-page-about .col-1 .wrap,
    .col-page-rd .col-3 .wrap {
        padding-left: 20px;
        padding-right: 20px;
    }


    html {
        font-size: 13px;
    }

}

@media (max-width: 992px) {

    .col-page-product .flex .wrap .content table,
    .col-page-contact .col-2 form .content .s-content,
    .col-page-recruit .col-2 .job ul li .jobtit table tr td {
        font-size: 14px;
    }

    .col-page-news ul.list li {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 3.68vh;
    }

    .col-page-news ul.list li:nth-child(3n) {
        margin-right: 4%;
    }

    .col-page-news ul.list li:nth-child(2n) {
        margin-right: 0;
    }

    .col-page-rd .col-1 .wrap .s-content {
        bottom: 5px;
    }

    .col-page-rd .col-1 .wrap .s-content ul li {
        margin-bottom: 5px;
    }

    .col-page-about .col-2 .flex,
    .col-page-contact .col-1 .flex {
        display: block;
        position: relative;
    }

    .col-page-about .col-2 .flex .content {
        width: 100%;
        background: rgb(0 176 241 / 38%);
    }

    .col-page-about .col-2 .flex .img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .col-page-about .col-2 .flex .content .inner {
        max-width: none;
        padding: 6vh 20px;
    }

    #index-body .init-3 ul.list li a::before {
        top: -9vw;
    }

    #index-body .init-3 ul.list li a:hover::before {
        top: 0;
    }

    #index-body .init-2 .container2,
    #index-body .init-1 .wrap {
        margin-top: 0;
    }

    #index-body .init-1 .content {
        width: 100%;
    }

    #index-body .init-1 .bg li,
    .col-page-about .col-1 .wrap .content>ul>li,
    .col-page-product .flex .sider,
    .col-page-product .flex .wrap,
    .col-page-rd .col-1 .content ul li:nth-child(1),
    .col-page-rd .col-1 .content ul li:nth-child(2),
    .col-page-rd .col-2 .list li .img,
    .col-page-rd .col-2 .list li .content,
    .col-page-rd .col-3 .wrap ul.list li {
        width: 100%;
    }

    .col-page-product .flex .sider,
    .col-page-rd .col-1 .content ul li:nth-child(1),
    .col-page-contact .col-1 .flex .content {
        margin-bottom: 25px;
    }

    .col-page-product .flex .wrap .content {
        overflow-x: auto;
    }

    .col-page-about .col-1 .wrap .content>ul>li {
        margin-bottom: 4vh;
    }

    .header {
        top: 0;
    }

    .header .inner .flex {
        height: 80px;
        line-height: 80px;
    }

    .header .inner nav,
    .header .inner .language,
    #index-body .init-1 .bg li:nth-child(2),
    .footer .footer-nav {
        display: none;
    }

    .header .inner .index-search {
        margin-left: auto;
        margin-right: 40px;
    }

    #header.active .mm_btn .menu_bar_item .rect,
    #header.cur .mm_btn .menu_bar_item .rect {
        background: #000;
    }


    html {
        font-size: 12px;
    }

}

@media (max-width: 768px) {
    .col-page-contact .col-1 .map {
        height: 300px;
    }

    .col-page-rd .col-1 .wrap .s-content {
        position: static;
        padding: 20px;
        color: #000;
    }

    .col-page-rd .col-1 .wrap .s-content ul li,
    .col-page-recruit .col-1 ul.list li {
        width: 100%;
        margin-bottom: 15px;
    }

    .col-page-rd .col-1 .wrap .s-content ul li img {
        filter: brightness(0);
    }

    .col-page-product .flex .wrap .item a,
    .col-page-contact .col-2 form .content .sub,
    .col-page-recruit .col-2 .job ul li .jobcon .jobform,
    .col-page-jobform #cvlist .v52fmbx dl dd input[type="submit"] {
        width: 140px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }

    .col-banner .swiper-slide .ban_cont {
        top: auto;
        transform: none;
        bottom: 10px;
    }

    #index-body .init-3 ul.list li a .content {
        bottom: 12px;
    }

    #index-body .init-2 .head .namemark,
    #index-body .init-4 .news-nav,
    #index-body .init-4 .slides,
    .col-page-application ul.list li .img,
    .col-page-application ul.list li .content,
    .col-page-news ul.list li,
    .col-page-contact .col-2 form ul,
    .col-page-contact .col-2 form .content,
    .col-page-recruit .col-1 ul.list li {
        width: 100%;
        margin-left: 0;
    }

    #index-body .init-4 .news-nav ul.list,
    .col-page-recruit .col-2 .job ul li table tr th:not(:first-child):not(:last-child),
    .col-page-recruit .col-2 .job ul li .jobtit table tr td:not(:last-child):not(:first-child) {
        display: none;
    }

    #index-body .init-3 ul.list li {
        width: 100%;
        height: 80vh;
    }

    #index-body .init-2 .head .swiper-button {
        margin-top: -46px;
    }

    #index-body .init-2 .head .swiper-button-prev {
        margin-left: auto;
    }

    #index-body .init-2 .head {
        flex-wrap: wrap;
    }

    #index-body .init-2 .swiper-container,
    #index-body .init-4 .slides .swiper-container {
        padding-right: 18vw;
    }

    html {
        font-size: 11px;
    }


}

@media (max-width: 468px) {
    .col-page-about .col-2 .flex .content .s-content ul li {
        width: 100%;
    }

    #index-body .init-3 ul.list li {
        height: 50vh;
    }

    #index-body .init-1 .content .s-content ul li,
    .col-page-about .col-1 .wrap .content>ul>li ul li {
        width: 100% !important;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        padding: 12px 10px 12px 0 !important;
    }

    #index-body .init-1 .content .s-content ul::before,
    .col-page-about .col-1 .wrap .content>ul>li ul:before {
        display: none;
    }

    html {
        font-size: 10px;
    }


}

@media (max-height: 700px) {}


/*手机版菜单*/
.mm-slideout {
    z-index: auto !important;
}

@media screen and (max-width: 992px) {
    #header a.mm_btn {
        background: center center no-repeat transparent;
        display: block;
        width: 60px;
        height: 60px;
        position: absolute;
        top: 10px;
        right: 0;
        padding: 15px;
        z-index: 12;
    }

    #header .mm_btn .menu_bar {
        width: 30px;
        height: 30px;
        position: relative;
        transform: translateZ(0) rotate(0);
        transition: transform .4s cubic-bezier(.4, .01, .165, .99);
    }

    #header .mm_btn .menu_bar_item {
        position: absolute;
        left: 0;
        top: 0;
        transform: translateZ(0) rotate(0);
        transition: transform .25s cubic-bezier(.4, .01, .165, .99) 0s;
        -webkit-transform: translateZ(0) rotate(0);
        -webkit-transition: -webkit-transform .25s cubic-bezier(.4, .01, .165, .99) 0s;
        width: 30px;
        height: 30px;
    }

    #header .mm_btn .menu_bar_item .rect {
        width: 30px;
        height: 2px;
        background: #009b65;
        position: absolute;
        left: 0;
        top: 14px;
        /*transition: transform .2s ease .2s;-webkit-transition: -webkit-transform .2s ease .2s;*/
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    #header .mm_btn .menu_bar_item .rect.top {
        transform: translate3d(0, -8px, 0);
        -webkit-transform: translate3d(0, -8px, 0);
    }

    #header .mm_btn .menu_bar_item .rect.mid {
        transform: translate3d(0, 0px, 0);
        -webkit-transform: translate3d(0, 0px, 0);
        transition: 0.5s;
    }

    #header .mm_btn .menu_bar_item .rect.bottom {
        transform: translate3d(0, 8px, 0);
        -webkit-transform: translate3d(0, 8px, 0);
    }

    #header .mm_btn.is_active .menu_bar_item.mid {
        opacity: 0;
    }

    #header .mm_btn.is_active .menu_bar_item .rect {
        transition: transform 0s ease 0s;
        transform: translate3d(0, 0, 0);
        -webkit-transition: -webkit-transform 0s ease 0s;
        -webkit-transform: translate3d(0, 0, 0);
    }

    #header .mm_btn.is_active .menu_bar_item.bottom {
        transform: translateZ(0) rotate(-45deg);
        -webkit-transform: translateZ(0) rotate(-45deg);
    }

    #header .mm_btn.is_active .menu_bar_item {
        transform: translateZ(0) rotate(45deg);
        transition: transform .25s cubic-bezier(.4, .01, .165, .99) 0s;
        -webkit-transform: translateZ(0) rotate(45deg);
        -webkit-transition: -webkit-transform .25s cubic-bezier(.4, .01, .165, .99) 0s;
    }

    /*菜单弹出方向*/
    .mm-menu_offcanvas {
        left: auto !important;
    }

    .mm-menu {
        right: 0 !important;
    }

    .mm-menu_offcanvas.mm-menu_opened {
        z-index: 9 !important;
    }

    .mm-slideout {
        z-index: 10 !important;
    }

    .mm-menu.mm-menu_pageshadow:after {
        content: "";
        display: block;
        width: 20px;
        height: 120%;
        position: absolute;
        right: 100%;
        top: -10%;
        z-index: 99;
        box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    }

    /*弹出菜单边阴影*/
    .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout {
        -webkit-transform: translate(-80vw, 0) !important;
        -ms-transform: translate(-80vw, 0) !important;
        transform: translate(-80vw, 0) !important;
        -webkit-transform: translate3d(-80vw, 0, 0) !important;
        transform: translate3d(-80vw, 0, 0) !important;
        /*transform: translate3d(80vw,0,0)!important;*/
    }

    .mm-wrapper_opened .mm-menu_fx-menu-slide {
        -webkit-transform: translate(0, 0) !important;
        -ms-transform: translate(0, 0) !important;
        transform: translate(0, 0) !important;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
    }

    /**/
    #menu {
        color: rgba(0, 0, 0, .8);
    }

    #menu .mm-listview .mm-btn_next:after {
        border-color: rgba(189, 189, 189, 1);
    }

    #menu .mm-btn:after,
    #menu .mm-btn:before {
        border-color: rgba(189, 189, 189, 1);
    }

    #menu .mm-navbar a,
    #menu .mm-navbar>* {
        color: rgba(0, 0, 0, .8);
        font-size: 16px;
    }

    #menu.mm-menu_theme-white .mm-counter {
        color: rgba(0, 0, 0, .6);
    }

    /* #menu .mm-searchfield input{background: rgba(0,0,0,.3);color: rgba(0,0,0,.2);} */
    #menu .mm-listitem,
    #menu .mm-listitem #menu .mm-btn_next,
    #menu .mm-listitem #menu .mm-btn_next:before,
    #menu .mm-listitem:after,
    #menu .mm-listview {
        border-color: rgba(0, 0, 0, .1);
    }

    #menu .mm-navbars_bottom,
    #menu .mm-navbars_top {
        border-color: rgba(0, 0, 0, .1);
    }

    #menu .mm-listitem a {
        font-size: 16px;
    }
}

@media (min-width: 550px) {
    .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout {
        -webkit-transform: translate(-440px, 0) !important;
        -ms-transform: translate(-440px, 0) !important;
        transform: translate(-440px, 0) !important;
        -webkit-transform: translate3d(-440px, 0, 0) !important;
        transform: translate3d(-440px, 0, 0) !important;
    }
}

/*tags标签-勿删除*/
.global_section01 a {
    color: red;
}

.global_page a {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.global_page img {
    max-width: 100%;
    width: 100%;
}

.flex_wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.flex_nowrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    width: 100%;
}

.global_tabs li,
.global_tabs li:after {
    -webkit-transition: all ease-in-out .35s;
    -o-transition: all ease-in-out .35s;
    transition: all ease-in-out .35s;
    -ms-transition: all ease-in-out .35s;
}

.global_advertisement h2,
.global_blog_right aside>h2 span,
.global_blog_title,
.global_tabs li,
.global_tags,
.global_title {
    font-weight: 700;
    font-family: Lora;
}

.global_research li a,
.global_section.global_section01 p {
    font-weight: 400;
    font-family: Nunito;
    font-size: 14px;
    line-height: 1.5;
}

.global_featureed_item figcaption h2 a,
.global_product figcaption h2>a,
.global_related_item h2 {
    letter-spacing: .11em;
    font-weight: 400;
    font-family: balboa;
}

.global_advertisement .shop_btn,
.global_featureed_item figure,
.global_leftpd .global_toppd_btn,
.global_page_bar a,
.global_product figure {
    -webkit-transition: all ease-in-out .35s;
    -o-transition: all ease-in-out .35s;
    transition: all ease-in-out .35s;
    -ms-transition: all ease-in-out .35s;
}

.global_title {
    position: relative;
    margin-bottom: 17px;
    color: #515365;
    text-transform: capitalize;
    font-size: 18px;
}

.border_shadow {
    border: 1px solid #f6f6f6;
    border-radius: 20px;
    -webkit-box-shadow: 2px 7px 0 #e1e3e5;
    box-shadow: 2px 7px 0 #e1e3e5;
}

.pd_reviews .review_star {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.pd_reviews .review_star img {
    max-width: 12px;
    cursor: pointer;
}

.pd_reviews a {
    position: relative;
    display: inline-block;
    margin-left: 8px;
    color: #b3b3b3;
    vertical-align: middle;
    font-size: 12px;
    line-height: 1;
}

.global_page {
    position: relative;
    padding: 50px 0;
    background: #fff !important;
}

.global_page .layout {
    position: relative;
    display: block;
    margin: auto;
    width: 1280px;
    background: #fff;
}

.global_path_nav {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.global_path_nav:before {
    position: relative;
    margin-right: 7px;
    color: #3b3f5c;
    content: "\f101";
    font-family: fontawesome;
    display: inline-block;
}

.global_path_nav li {
    position: relative;
    display: inline-block;
}

.global_path_nav li,
.global_path_nav li a {
    color: #888ea8;
}

.global_path_nav li+li:before {
    position: relative;
    margin: 0 15px;
    content: "/";
}

.global_section.global_section01 {
    position: relative;
    padding-bottom: 33px;
    border-bottom: 1px dashed #ddd;
    letter-spacing: 1px;
    font-weight: 300;
}

.global_tags {
    position: absolute;
    top: 18px;
    left: 18px;
    display: table;
    padding: 0 5px;
    border-radius: 2px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 21px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.global_tags.new_tag {
    background: #37f;
}

.global_tags.hot_tag {
    background: #614ba6;
}

.global_tags.sale_tag {
    background: #f33;
}

.pd_icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: #fff;
    background-image: url(../images/global_icon.png);
    background-position: -40px 0;
    background-repeat: no-repeat;
}

.global_section.global_section02 {
    padding: 25px 0;
}

.global_section.global_sell_product {
    margin: 25px 0;
}

.global_top_products {
    position: relative;
    margin-top: 25px 0;
}

.global_top_products .global_leftpd {
    float: left;
    width: 36.73%;
}

.global_rightpd {
    float: right;
    width: 63.27%;
}

.global_product {
    position: relative;
    padding: 9px;
}

.global_product figure {
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid #ededed;
    border-radius: 2px;
}

.global_product figure .img {
    position: relative;
    cursor: pointer;
}

.global_product figcaption {
    position: relative;
    padding: 0 15px 15px 15px;
}

.global_product figcaption h2>a {
    display: block;
    color: #3d464d;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

.global_product .pd_reviews {
    position: relative;
    margin-top: 5px;
    font-size: 0;
    line-height: 1;
}

.global_leftpd .global_toppd_btn {
    position: relative;
    display: table;
    margin: auto;
    margin-top: 70px;
    padding: 0 20px;
    border-radius: 3px;
    color: #fff;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 40px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.global_leftpd.global_product figcaption {
    padding: 0 30px 30px 30px;
}

.global_rightpd .global_product {
    width: 33.33%;
}

.global_rightpd .global_product .img {
    line-height: 300px;
    text-align: center;
}

.global_rightpd .global_product .img img {
    max-height: 300px;
    width: auto;
}

.global_advertisement {
    position: relative;
    margin-bottom: 30px;
    padding: 30px 0 42px 0;
    background-size: 100%;
    color: #3d464d;
    text-align: center;
}

.global_advertisement h2 {
    position: relative;
    text-align: center;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
}

.global_advertisement p {
    position: relative;
    display: block;
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.5;
}

.global_advertisement .shop_btn {
    position: relative;
    display: table;
    margin: auto;
    margin-top: 20px;
    padding: 0 17px;
    border-radius: 3px;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 32px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.global_featuredpd .global_featureed_item {
    position: relative;
    padding: 7px;
    width: 33.33%;
}

.global_featureed_item figure {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    padding: 15px 30px 15px 10px;
    height: 100%;
    border: 1px solid #ededed;
    border-radius: 2px;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.global_featureed_item figure .img {
    margin-right: 15px;
    width: 100px;
    cursor: pointer;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    -webkit-flex: 0 0 100px;
    text-align: center;
}

.global_featureed_item figure .img img {
    max-height: 80px;
    width: auto;
}

.global_featureed_item figcaption {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.global_featureed_item figcaption h2 {
    position: relative;
}

.global_featureed_item figcaption h2 a {
    position: relative;
    display: block;
    color: #4754a9;
    font-size: 14px;
    line-height: 18px;
}

.global_featureed_item .global_tags {
    top: 10px;
    left: 10px;
}

.global_related_serach {
    position: relative;
    margin: 50px 0;
}

.global_research {
    position: relative;
    font-size: 0;
}

.global_research li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 0 15px;
    border: 2px solid #fff;
    border-radius: 5px;
    font-size: 18px;
    line-height: 46px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.global_research li a {
    display: block;
    line-height: 35px;
}

.global_message_wrap {
    position: relative;
    padding: 30px;
    height: 600px;
}

.global_message_titbar {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.global_message_titbar h2 {
    position: relative;
    padding-left: 45px;
    font-size: 23px;
}

.global_message_titbar h2:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background-image: url(../images/global_icon.png);
    background-position: 0 -150px;
    content: "";
}

.global_message_titbar p {
    color: #444;
}

.mauticform_wrapper {
    position: relative;
    margin-top: 45px;
}

.mauticform_wrapper input {
    display: block;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
    height: 48px;
    outline: 0;
    border: 1px solid #eee;
    border-left: 3px solid #013e5a;
    border-radius: 3px;
    background: #fff;
    color: #757575;
    font-size: 14px;
    font-family: Arial;
    resize: none;
    -webkit-transition: -webkit-box-shadow .2s ease;
    -o-transition: box-shadow .2s ease;
    transition: -webkit-box-shadow .2s ease;
    transition: box-shadow .2s ease;
    transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
    transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
    transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
}

.mauticform_wrapper button {
    display: block;
    margin-top: 25px;
    width: 100%;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: .38px;
    font-family: Arial;
    line-height: 48px;
    cursor: pointer;
}

.mauticform_wrapper button i {
    color: #fff;
}

.mauticform_wrapper textarea {
    display: block;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
    min-height: 150px;
    outline: 0;
    border: 1px solid #eee;
    border-left: 3px solid #013e5a;
    border-radius: 3px;
    background: #fff;
    color: #757575;
    font-size: 14px;
    font-family: Arial;
    resize: none;
    -webkit-transition: -webkit-box-shadow .2s ease;
    -o-transition: box-shadow .2s ease;
    transition: -webkit-box-shadow .2s ease;
    transition: box-shadow .2s ease;
    transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
    transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
    transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
}

.global_related_tab_container {
    position: relative;
}

.global_tabs {
    position: relative;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e6ed;
    font-size: 0;
}

.global_tabs li {
    position: relative;
    display: inline-block !important;
    padding: 15px 25px;
    color: #000;
    text-transform: capitalize;
    font-size: 18px;
    cursor: pointer;
}

.global_tabs li i {
    display: inline-block;
    margin-top: -4px;
    margin-right: 5px;
    width: 28px;
    height: 28px;
    background-image: url(../images/global_icon.png);
    background-size: 600px;
    background-repeat: no-repeat;
    content: "";
    vertical-align: middle;
}

.global_tabs li:after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    content: "";
}

.global_tabs li.active:after,
.global_tabs li:hover:after {
    width: 100%;
}

.global_tabs li:nth-child(1) i {
    background-position: 0 -207px;
}

.global_tabs li:nth-child(2) i {
    background-position: 0 -255px;
}

.global_tabs li:nth-child(3) i {
    background-position: 0 -300px;
}

.global_rela_wrap {
    display: none;
}

.global_rela_wrap.show_wrap {
    display: block;
}

.global_related_items {
    position: relative;
}

.global_related_item {
    position: relative;
    margin-bottom: 30px;
    padding: 13px 30px;
}

.global_related_item h2 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    color: #3b3f5c;
    font-weight: 400;
    font-size: 18px;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
}

.global_related_item h2 a {
    color: #3b3f5c;
}

.global_related_item h4 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
}

.global_relareview_wrap .re_star,
.global_related_item h2 i.fa-thumbs-o-up {
    position: relative;
    margin-left: auto;
    font-size: 15px;
}

.global_related_item h2 i.fa-thumbs-o-up:before {
    margin-right: 5px;
}

.global_related_item h2 i.fa_icon {
    position: relative;
    margin-right: 20px;
    color: #888ea8;
}

.global_related_item h2 i.fa_icon:before {
    margin-right: 5px;
    content: "\f104";
    font-family: fontawesome;
}

.global_related_item h2 i.fa_icon:after {
    content: "\f105";
    font-family: fontawesome;
}

.global_related_item .global_related_info {
    position: relative;
    display: none;
    margin: 18px 0;
}

.global_related_videos {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.global_related_video {
    position: relative;
    width: 49%;
    padding-bottom: 10px;
}

.global_related_video p {
    position: relative;
    display: block;
    margin-bottom: 15px;
    padding-left: 30px;
    background-image: url(../images/global_icon.png);
    background-position: 0 -254px;
    background-size: 600px;
    background-repeat: no-repeat;
    content: "";
    vertical-align: middle;
    line-height: 29px;
}

.global_related_video .border_shadow {
    padding: 10px;
    position: relative;
    height: 100%;
}

.global_relareview_wrap .re_star img {
    max-width: 12px;
    cursor: pointer;
}

/*.global_relareview_wrap .fa_icontw {display:inline-block;margin-right:20px;width:28px;height:28px;background-image:url(../images/global_icon.png);background-position:0 -406px;background-repeat:no-repeat;content:"";vertical-align:middle;}*/
.global_relareview_wrap .fa_icontw {
    display: inline-block;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    background-image: url(../images/global_icon.png);
    background-position: 0 -225px;
    background-repeat: no-repeat;
    content: "";
    vertical-align: middle;
    background-size: 450px;
}

.global_blog_page {
    position: relative;
    font-weight: 400;
    font-family: Lora;
}

.global_blog_left {
    position: relative;
    float: left;
    width: 64.88%;
}

.global_blog_right {
    position: relative;
    float: right;
    width: 32.14%;
}

.global_blog_right .global_featureed_item {
    position: relative;
    padding: 7px 0;
    width: 100%;
}

.global_blog_right aside+aside {
    margin-top: 55px;
}

.global_blog_right aside>h2 {
    position: relative;
    margin-bottom: 30px;
    color: #000;
    text-transform: capitalize;
    font-size: 23px;
    line-height: 1.5;
}

.global_blog_right aside>h2 span {
    position: relative;
    z-index: 9;
    display: inline-block;
    padding-right: 20px;
    background: #fff;
}

.global_blog_right aside>h2:before {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -1px;
    width: 100%;
    height: 2px;
    background: #f2f2f2;
    content: "";
}

.global_blog_title {
    position: relative;
    margin-bottom: 2px;
    color: #000;
    text-transform: capitalize;
    letter-spacing: .8px;
    font-size: 23px;
}

.global_blog_titbar {
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
    color: #666;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 24px;
}

.global_blog_titbar span {
    display: inline-block;
    margin-right: 5px;
    font-size: 12px;
}

.global_blog_titbar span+span {
    color: #333;
}

.global_blog_titbar time {
    margin-left: 15px;
    font-size: 12px;
}

.global_blog_mian {
    position: relative;
    color: #222;
}

.global_blog_mian p {
    position: relative;
    margin: 21px 0;
}

.global_blog_mian strong {
    font-weight: 700;
}

.global_blog_mian a {
    position: relative;
    display: inline-block;
    max-width: 32.33%;
}

.global_share {
    position: relative;
    margin-bottom: 46px;
    padding-bottom: 32px;
    border-bottom: 1px dashed #ddd;
}

.global_share .global_sns {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.global_share .global_sns li {
    display: inline-block;
    width: 45px;
    border: 1px solid #000;
    border-radius: 50%;
    text-align: center;
    line-height: 43px;
}

.global_share .global_sns li:nth-child(1) {
    border-color: #234e9a;
}

.global_share .global_sns li:nth-child(2) {
    border-color: #32aadc;
}

.global_share .global_sns li:nth-child(3) {
    border-color: #e2131e;
}

.global_share .global_sns li:nth-child(4) {
    border-color: #007bb5;
}

.global_share .global_sns li:nth-child(5) {
    border-color: #ee4056;
}

.global_page_change {
    padding: 35px 0;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.global_change_block {
    position: relative;
    width: 46%;
    font-size: 14px;
    line-height: 21px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 46%;
    flex: 0 0 46%;
    -webkit-flex: 0 0 46%;
}

.global_change_block.left_algin {
    padding-left: 30px;
    text-align: left;
}

.global_change_block.right_algin {
    padding-right: 30px;
    text-align: right;
}

.global_change_icon {
    position: absolute;
    top: 50%;
    width: 30px;
    color: #000;
    text-align: center;
    font-size: 18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.left_algin .global_change_icon {
    left: 0;
}

.right_algin .global_change_icon {
    right: 0;
}

.global_change_block a {
    position: relative;
    display: block;
    color: #000;
}

.global_change_block .post_navigation_title {
    text-transform: capitalize;
}

.global_change_block .post_navigation_info {
    font-weight: 700;
}

.global_blog_mian table {
    margin-bottom: 20px;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.global_blog_mian td,
.global_blog_mian th {
    padding: 0 15px;
    height: 30px;
    border: 1px solid #ccc;
    background: #fbfbfb;
    color: #666;
    text-align: left;
    font-size: 12px;
    line-height: 30px;
}

.global_blog_mian th {
    background: #eee;
    font-size: 12px;
}

.global_blog_mian td p,
.global_blog_mian th p,
.pd-panel .global_blog_mian td p,
.pd-panel .global_blog_mian th p {
    margin: 0;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
}

.global_blog_mian td.amts {
    color: #cb2027;
}

.global_blog_mian th#cartDelete {
    text-align: center;
}

.global_blog_mian .button {
    margin: 15px 10px 0 0;
    padding: 8px 15px;
    border: 0;
    background: #dfdfdf;
    color: #777;
    text-transform: Capitalize;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
}

.global_blog_mian .button:hover {
    background: #cb2027;
    color: #fff;
}

.global_blog_mian .deletecartitem {
    width: 50px;
    text-align: center;
}

.global_blog_mian .deletecartitem label {
    display: none;
}

.global_blog_mian .stotal td.amts {
    font-weight: 700;
    font-size: 18px;
}

.global_blog_mian img.alignleft {
    float: left;
    margin: 20px 15px 0 0;
}

.global_blog_mian img.alignright {
    float: right;
    margin: 20px 0 0 15px;
}

.global_blog_mian img.alignleftnopad {
    float: left;
    margin-left: 0;
}

.global_blog_mian img.alignrightnopad {
    float: right;
    margin-right: 0;
}

.global_blog_mian img.aligncenter {
    display: block;
    margin: 20px auto 0 auto;
    text-align: center;
}

.global_blog_mian img {
    max-width: 100%;
    cursor: pointer;
}

.global_blog_items {
    position: relative;
}

.global_blog_item {
    position: relative;
    padding: 25px 0;
    border-bottom: 1px dashed #ddd;
}

.global_blog_item:first-child {
    padding-top: 0;
}

.global_blog_item:first-child,
.global_blog_item:first-child .global_blog_titbar {
    padding-top: 0;
}

.global_blog_item .global_blog_titbar {
    border: none;
}

.global_blog_item .global_blog_btn {
    position: relative;
    display: table;
    margin-top: 35px;
    margin-left: auto;
    padding: 0 15px;
    border: 1px solid #000;
    border-radius: 55px;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 40px;
}

.global_page_bar {
    position: relative;
    margin-top: 40px;
    margin-bottom: 15px;
    text-align: center;
    line-height: 45px;
}

.global_page_bar a,
.global_page_bar span {
    position: relative;
    display: inline-block;
    margin: 0 0 0 8px;
    width: 45px;
    min-width: 45px;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #222;
    vertical-align: top;
    text-align: center;
}

.global_page_bar a.current,
.global_page_bar a:hover {
    color: #fff;
}

.global_page_bar span.current2 {
    font-size: 14px;
}

.global_related_columus {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.global_related_columu {
    position: relative;
    margin-bottom: 1%;
    padding: 15px;
    max-width: 49.5%;
    border: 1px solid #dadce0;
    border-radius: 15px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 49.5%;
    -ms-flex: 0 0 49.5%;
    flex: 0 0 49.5%;
}

.global_related_columu .related_title {
    position: relative;
}

.global_related_columu .related_title a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
    font-size: 16px;
    font-family: Nunito;
    line-height: 1.5;
    -o-text-overflow: ellipsis;
}

.global_related_columu .related_title a span {
    font-size: 14px;
    font-weight: 400;
    margin-left: 3px;
}

.global_related_columu .related_info {
    position: relative;
    display: -webkit-box;
    overflow: hidden;
    margin-top: 5px;
    color: #6e7278;
    font-weight: 400;
    font-size: 13px;
    font-family: Nunito;
    line-height: 17px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.global_related_item .related_info {
    padding-left: 25px;
}

.global_related_columu .related_title a:hover {
    color: #167fdf;
}

.global_related_video h5 {
    font-weight: 700;
    font-size: 16px;
    font-family: Nunito;
    margin-bottom: 10px;
    padding-left: 10px;
    line-height: 1;
}

.global_section_partnership {
    ;
}

.partnership_items {
    margin: 0 -3.2%;
    margin-top: 50px;
    width: auto;
}

.partnership_items .partnership_item {
    position: relative;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    padding: 0 3.2%;
}

.partnership_item figure {
    background-color: #f4f4f4;
    border-radius: 10px;
    border: solid 1px rgba(237, 107, 0, 0.5);
    overflow: hidden;
}

.partnership_item .partnership_img {
    ;
}

.partnership_item .partnership_img img {
    ;
}

.partnership_item .partnership_tit {
    position: relative;
    padding: 27px 0;
}

.partnership_item .partnership_tit a {
    position: relative;
    font-family: Nunito;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #000000;
    display: block;
    text-align: center;
    text-transform: capitalize;
}

.partnership_item:hover figure {
    -webkit-box-shadow: -10px 12px 40px 0px #eaceb7;
    box-shadow: -10px 12px 40px 0px #eaceb7;
    background-color: #ed6b00;
}

.partnership_item:hover .partnership_tit a {
    color: #fff;
}

.global_section_certificates {
    position: relative;
    margin-top: 80px;
}

.certificates_items {
    margin: 0 -3.2%;
    margin-top: 30px;
    width: auto;
}

.certificates_items .certificates_item {
    position: relative;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    padding: 0 3.2%;
    text-align: center;
    margin-bottom: 50px;
}

.certificates_item figure {
    background-color: #f4f4f4;
    border-radius: 10px;
    border: solid 1px rgba(237, 107, 0, 0.5);
    overflow: hidden;
    height: 100%;
    padding: 15px 10px 0 10px;
}

.certificates_item .certificates_img {
    position: relative;
    line-height: 100px;
}

.certificates_item .certificates_img img {
    width: auto;
}

.certificates_item figcaption {
    border-top: solid 1px rgba(237, 107, 0, 0.5);
    position: relative;
    margin-top: 18px;
    padding-top: 14px;
}

.certificates_item .certificates_tit {
    font-family: "Nunito";
    font-size: 16px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
}

.certificates_item .certificates_desc {
    font-size: 14px;
    font-family: "Nunito";
    font-weight: 300;
    line-height: 24px;
    color: #000000;
    opacity: 0.7;
}

.certificates_item:hover .certificates_tit,
.certificates_item:hover .certificates_desc {
    color: #ffffff;
}

.certificates_item:hover .certificates_img img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.certificates_item:hover figure {
    -webkit-box-shadow: -10px 12px 40px 0px #eaceb7;
    box-shadow: -10px 12px 40px 0px #eaceb7;
    background-color: #ed6b00;
}

.certificates_item:hover figcaption {
    border-top: solid 1px #fff;
}

@media only screen and (max-width:1440px) {
    .global_page .layout {
        width: 1200px;
    }

    .global_page {
        padding: 25px 0;
    }

    ;
}

@media only screen and (max-width:1366px) {
    .global_page {
        font-size: 14px;
        line-height: 21px;
    }

    .global_title {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .global_path_nav {
        margin-bottom: 15px;
        padding-bottom: 7px;
    }

    .global_tags {
        top: 10px;
        left: 10px;
    }

    .global_advertisement h2 {
        font-size: 24px;
    }

    .global_advertisement p {
        font-size: 15px;
    }

    .global_featureed_item figcaption h2 a {
        font-size: 14px;
    }

    .global_tabs li {
        padding: 10px 20px;
        font-size: 18px;
    }

    .global_related_item {
        padding: 13px 15px;
    }

    .global_related_item h2 {
        font-size: 16px;
    }

    .global_related_item .global_related_info {
        margin: 15px 0;
        line-height: 1.68;
    }

    .global_product figcaption {
        padding: 0 10px 10px 10px;
    }

    .global_leftpd.global_product figcaption {
        padding: 0 15px 15px 15px;
    }

    .global_featureed_item figcaption h2 a {
        font-size: 12px;
    }

    .global_featureed_item figure .img {
        margin-right: 10px;
        cursor: pointer;
    }

    .global_related_serach {
        margin: 25px 0;
    }

    .global_research li {
        margin-right: 7px;
        margin-bottom: 7px;
        line-height: 40px;
    }

    .global_research li a {
        font-size: 14px;
        display: block;
    }

    .global_message_titbar h2 {
        padding-left: 30px;
        font-size: 20px;
    }

    .global_message_titbar h2:before {
        width: 22px;
        height: 22px;
        background-position: 0 -112px;
        background-size: 600px;
    }

    .global_message_titbar p {
        font-size: 14px;
    }

    .mauticform_wrapper {
        margin-top: 25px;
    }

    .global_blog_title {
        font-size: 20px;
    }

    .global_blog_item .global_blog_btn {
        margin-top: 25px;
        font-size: 14px;
    }

    .global_blog_item .global_blog_titbar {
        padding-bottom: 10px;
    }

    .global_related_columu .related_title a {
        font-size: 16px;
    }

    .global_related_columu {
        border-radius: 15px;
    }

    .partnership_items,
    .certificates_items {
        margin: 0 -1.5%;
    }

    .partnership_items .partnership_item,
    .certificates_items .certificates_item {
        padding: 0px 1.5%;
    }

    .certificates_items .certificates_item {
        margin-bottom: 30px;
    }

    .partnership_item .partnership_tit {
        padding: 15px 0;
    }

    .certificates_item figcaption {
        margin-top: 15px;
        padding-top: 10px;
    }

    ;
}

@media only screen and (max-width:1280px) {
    .global_page .layout {
        padding: 0 1%;
        width: 100%;
    }

    .global_product figcaption h2>a {
        display: block;
        overflow: hidden;
        max-height: 36px;
        font-size: 12px;
    }

    .global_change_block .post_navigation_title {
        font-size: 14px;
    }

    .global_change_block .post_navigation_info {
        font-size: 16px;
    }

    .global_blog_item .global_blog_desc {
        font-size: 16px;
    }

    .global_leftpd .global_toppd_btn {
        margin-top: 35px;
        font-size: 16px;
        line-height: 32px;
    }

    ;
}

@media only screen and (max-width:950px) {
    .header .inner .index-search>a {
        color: #009b65;
    }
    #index-body .section{
        height: 25vh !important;
        position: relative;
        top: 80px;
            padding-bottom: 110px;
    }
    #col-index-banner .fp-tableCell{
        height: 25vh !important;
    }
    #col-index-banner .swiper-slide{
        height: 25vh !important;
    }
    .global_page {
        font-size: 14px;
    }

    .global_section.global_section01 {
        padding-bottom: 15px;
    }

    .global_featuredpd .global_featureed_item {
        width: 50%;
    }

    .global_research li a {
        font-size: 12px;
        line-height: 28px;
    }

    .global_research li {
        margin-right: 5px;
        margin-bottom: 5px;
        padding: 0 15px;
        font-size: 20px;
        line-height: 34px;
    }

    .global_message_wrap {
        padding: 15px;
    }

    .global_message_titbar h2 {
        font-size: 18px;
    }

    .global_advertisement p {
        font-size: 14px;
    }

    .global_advertisement {
        margin-bottom: 0;
    }

    .global_related_video {
        padding: 15px 1%;
    }

    .global_relareview_wrap .re_star img {
        max-width: 14px;
        cursor: pointer;
    }

    .global_top_products .global_leftpd {
        display: none;
    }

    .global_rightpd {
        float: none;
        width: 100%;
    }

    .mauticform_wrapper {
        margin-top: 15px;
    }

    .mauticform_wrapper input {
        margin-bottom: 7px;
        padding: 0 10px;
        height: 40px;
        font-size: 12px;
    }

    .mauticform_wrapper button {
        line-height: 40px;
    }

    .global_related_item {
        margin-bottom: 15px;
        padding: 10px 15px;
    }

    .global_related_item h2 {
        font-size: 14px;
    }

    .global_tabs li i {
        width: 14px;
        height: 15px;
        background-size: 400px;
    }

    .global_tabs li:nth-child(3) i {
        background-position: 0 -203px;
    }

    .global_tabs li:nth-child(2) i {
        background-position: 0 -171px;
    }

    .global_tabs li:nth-child(1) i {
        background-position: 0 -140px;
    }

    /*.pd_icon {width:19px;height:19px;background-position:4px 4px;background-size:400px;}*/
    .global_featuredpd .global_featureed_item,
    .global_product {
        padding: 4px;
    }

    .global_featureed_item figure {
        padding: 10px;
    }

    .global_blog_mian {
        font-size: 14px;
    }

    .global_blog_title {
        font-size: 18px;
    }

    .global_blog_left,
    .global_blog_right {
        float: none;
        width: 100%;
    }

    .global_featuredpd {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .global_blog_right aside>h2 {
        margin-bottom: 15px;
        font-size: 20px;
    }

    .global_blog_right aside+aside {
        margin-top: 25px;
    }

    .global_share {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .global_share .global_sns li {
        width: 40px;
        line-height: 40px;
    }

    .global_change_block .post_navigation_info {
        font-size: 14px;
    }

    .global_blog_titbar {
        padding-bottom: 10px;
        font-size: 12px;
    }

    .global_blog_item .global_blog_desc {
        font-size: 14px;
    }

    .global_blog_item .global_blog_btn {
        margin-top: 20px;
        padding: 0 15px;
        font-size: 16px;
        line-height: 2;
    }

    .global_page_bar {
        font-size: 12px;
        line-height: 35px;
    }

    .global_page_bar a,
    .global_page_bar span {
        width: auto;
        border-radius: 0;
    }

    .global_page_bar span.current2 {
        font-size: 12px;
    }

    .global_relareview_wrap .re_star,
    .global_related_item h2 i.fa-thumbs-o-up {
        font-size: 12px;
    }

    .global_featureed_item figure .img {
        margin-right: 7px;
        width: 80px;
        cursor: pointer;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
        flex: 0 0 80px;
        -webkit-flex: 0 0 80px;
    }

    .global_message_titbar p {
        font-size: 12px;
    }

    .fancybox-nav span {
        visibility: visible;
    }

    .partnership_items,
    .certificates_items {
        margin: 0 -1%;
    }

    .partnership_items .partnership_item,
    .certificates_items .certificates_item {
        padding: 0px 1%;
    }

    .certificates_items .certificates_item {
        margin-bottom: 15px;
    }

    .global_section_certificates {
        margin-top: 50px;
    }

    ;
}

@media only screen and (max-width:768px) {
    .global_page {
        font-size: 12px;
        line-height: 18px;
    }

    .global_tabs li {
        font-size: 16px;
    }

    .global_featureed_item .global_tags,
    .global_tags {
        top: 5px;
        left: 5px;
        padding: 0 5px;
        text-transform: capitalize;
        font-size: 12px;
        line-height: 1.5;
    }

    .global_blog_mian {
        font-size: 12px;
    }

    .global_blog_title {
        font-size: 18px;
    }

    .global_share .global_sns li {
        width: 30px;
        line-height: 30px;
    }

    .global_change_block .post_navigation_info {
        font-size: 12px;
    }

    .flex_nowrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }

    .global_change_block {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-flex: 0 0 100%;
    }

    .global_change_block.left_algin {
        padding-left: 30px;
    }

    .global_change_block.right_algin {
        margin-top: 10px;
        padding-right: 0;
        padding-left: 30px;
        text-align: left;
    }

    .right_algin .global_change_icon {
        right: unset;
        left: 0;
    }

    .global_change_icon {
        width: 30px;
    }

    .global_blog_item .global_blog_desc {
        font-size: 12px;
    }

    .global_blog_item .global_blog_btn {
        margin-top: 20px;
        font-size: 14px;
    }

    .global_title {
        font-size: 18px;
    }

    .global_message_titbar p {
        margin-top: 10px;
        width: 100%;
        -webkit-flex: 0 0 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .global_blog_right aside>h2 {
        font-size: 18px;
    }

    .global_related_columu .related_title a {
        font-size: 14px;
    }

    .global_related_columu .related_title a span {
        font-size: 12px;
    }

    .global_related_columu .related_info {
        margin-top: 3px;
        -webkit-line-clamp: 3;
    }

    .global_related_video h5 {
        font-size: 14px;
    }

    .global_related_video {
        width: 100%;
    }

    .global_rightpd .global_product .img {
        line-height: 240px;
    }

    .global_rightpd .global_product .img img {
        max-height: 240px;
    }

    .partnership_items .partnership_item,
    .certificates_items .certificates_item {
        flex: 0 0 50%;
        margin-bottom: 2%;
    }

    .certificates_item .certificates_desc {
        font-size: 12px;
        line-height: 20px;
    }

    .certificates_item .certificates_tit {
        font-size: 14px;
        line-height: 2;
    }

    .partnership_item .partnership_tit a {
        font-size: 14px;
    }

    .global_section_certificates {
        margin-top: 30px;
    }

    .certificates_item .certificates_img img {
        max-height: 60px;
    }

    .certificates_item .certificates_img {
        line-height: 60px;
    }

    ;
}

@media only screen and (max-width:640px) {
    .global_rightpd .global_product {
        width: 50%;
    }

    .global_advertisement h2 {
        font-size: 24px;
    }

    .global_advertisement p {
        font-size: 14px;
    }

    .global_featuredpd .global_featureed_item {
        width: 100%;
    }

    .global_tabs li {
        padding: 5px 7px;
        font-size: 14px;
    }

    .global_blog_title {
        font-size: 16px;
    }

    .global_blog_item .global_blog_btn {
        margin-top: 15px;
        font-size: 12px;
    }

    .global_title {
        font-size: 16px;
    }

    .global_blog_right aside>h2 {
        font-size: 16px;
    }

    .global_related_columu {
        margin-bottom: 1%;
        padding: 10px 1%;
        max-width: 100%;
        border-radius: 7px;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
    }

    ;
}

.global_advertisement .shop_btn,
.global_featureed_item .pd_icon:hover,
.global_featureed_item:hover .pd_icon,
.global_form button,
.global_leftpd .global_toppd_btn,
.global_page_bar a.current,
.global_page_bar a:hover,
.global_product:hover .pd_icon,
.global_tabs li:after {
    background-color: #167fdf !important;
}

.global_blog_item .global_blog_btn:hover,
.global_featureed_item:hover figure,
.global_page_bar a.current,
.global_page_bar a:hover,
.global_product:hover figure,
.global_research li {
    border-color: #167fdf !important;
}

.global_blog_item .global_blog_btn:hover,
.global_featureed_item figcaption h2 a:hover,
.global_product figcaption h2>a:hover,
.global_related_item h2.title_show a,
.global_related_item h2.title_show i.fa-thumbs-o-up,
.global_related_item h2.title_show i.fa_icon,
.global_research li a:hover {
    color: #167fdf !important;
}

.global_advertisement .shop_btn:hover,
.global_form button:hover,
.global_leftpd .global_toppd_btn:hover,
.global_product .pd_icon:hover {
    background-color: #3d464d !important;
}

.global_featureed_item:hover .pd_icon,
.global_product:hover .pd_icon {
    background-position: -40px -30px;
}

.global_featureed_item .pd_icon:hover,
.global_product .pd_icon:hover {
    background-position: -40px -60px;
}

.global_advertisement .shop_btn:hover {
    color: #fff;
}

.global_page figure {
    margin: 0;
}

.global_page h2 a {
    padding: 0;
    border: none;
}

.global_page h2:hover a {
    color: #000 !important;
}

.tag_banner {
    display: block;
}

/*! *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome *  License - http://fontawesome.io/license (Font:SIL OFL 1.1,CSS:MIT License)*/
[class^="fa"] {
    font-family: "fontawesome";
    font-weight: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 fontawesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571429em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
}

.fa-ul>li {
    position: relative;
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center;
}

.fa-li.fa-lg {
    left: -1.85714286em;
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left {
    margin-right: .3em;
}

.fa.fa-pull-right {
    margin-left: .3em;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: .3em;
}

.fa.pull-right {
    margin-left: .3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }

    ;
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }

    ;
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    -webkit-filter: none;
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

.language-flag .country-flag {
	display: inline-block;
	margin: -8px 5px 0;
	width: 22px;
	height: 16px;
	background-image: url(../images/lang.gif);
	background-repeat: no-repeat;
}

li.language-flag a {
	position: relative;
	display: flex;
	align-items: center;
}

.language-flag-af .country-flag {
	background-position: 0 0 !important;
}

.language-flag-sq .country-flag {
	background-position: 0 -16px !important;
}

.language-flag-ar .country-flag {
	background-position: 0 -32px !important;
}

.language-flag-hy .country-flag {
	background-position: 0 -48px !important;
}

.language-flag-az .country-flag {
	background-position: 0 -64px !important;
}

.language-flag-eu .country-flag {
	background-position: 0 -80px !important;
}

.language-flag-be .country-flag {
	background-position: 0 -96px !important;
}

.language-flag-bg .country-flag {
	background-position: 0 -112px !important;
}

.language-flag-ca .country-flag {
	background-position: 0 -128px !important;
}

.language-flag-zh .country-flag {
	background-position: 0 -144px !important;
}

.language-flag-zh-TW .country-flag {
	background-position: 0 -160px !important;
}

.language-flag-hr .country-flag {
	background-position: 0 -176px !important;
}

.language-flag-cs .country-flag {
	background-position: 0 -192px !important;
}

.language-flag-da .country-flag {
	background-position: 0 -208px !important;
}

.language-flag-nl .country-flag {
	background-position: 0 -240px !important;
}

.language-flag-en .country-flag {
	background-position: 0 -256px !important;
}

.language-flag-et .country-flag {
	background-position: 0 -272px !important;
}

.language-flag-tl .country-flag {
	background-position: 0 -288px !important;
}

.language-flag-fi .country-flag {
	background-position: 0 -304px !important;
}

.language-flag-fr .country-flag {
	background-position: 0 -320px !important;
}

.language-flag-gl .country-flag {
	background-position: 0 -336px !important;
}

.language-flag-ka .country-flag {
	background-position: 0 -352px !important;
}

.language-flag-de .country-flag {
	background-position: 0 -368px !important;
}

.language-flag-el .country-flag {
	background-position: 0 -384px !important;
}

.language-flag-ht .country-flag {
	background-position: 0 -400px !important;
}

.language-flag-iw .country-flag {
	background-position: 0 -416px !important;
}

.language-flag-hi .country-flag,
.language-flag-te .country-flag,
.language-flag-kn .country-flag,
.language-flag-ta .country-flag,
.language-flag-gu .country-flag {
	background-position: 0 -432px !important;
}

.language-flag-hu .country-flag {
	background-position: 0 -448px !important;
}

.language-flag-is .country-flag {
	background-position: 0 -464px !important;
}

.language-flag-id .country-flag {
	background-position: 0 -480px !important;
}

.language-flag-ga .country-flag {
	background-position: 0 -496px !important;
}

.language-flag-it .country-flag {
	background-position: 0 -512px !important;
}

.language-flag-ja .country-flag {
	background-position: 0 -528px !important;
}

.language-flag-ko .country-flag {
	background-position: 0 -544px !important;
}

.language-flag-la .country-flag {
	background-position: 0 -560px !important;
}

.language-flag-lv .country-flag {
	background-position: 0 -576px !important;
}

.language-flag-lt .country-flag {
	background-position: 0 -592px !important;
}

.language-flag-mk .country-flag {
	background-position: 0 -608px !important;
}

.language-flag-ms .country-flag {
	background-position: 0 -624px !important;
}

.language-flag-mt .country-flag {
	background-position: 0 -640px !important;
}

.language-flag-no .country-flag {
	background-position: 0 -656px !important;
}

.language-flag-fa .country-flag {
	background-position: 0 -672px !important;
}

.language-flag-pl .country-flag {
	background-position: 0 -688px !important;
}

.language-flag-pt .country-flag {
	background-position: 0 -704px !important;
}

.language-flag-ro .country-flag {
	background-position: 0 -720px !important;
}

.language-flag-ru .country-flag {
	background-position: 0 -736px !important;
}

.language-flag-sr .country-flag {
	background-position: 0 -752px !important;
}

.language-flag-sk .country-flag {
	background-position: 0 -768px !important;
}

.language-flag-sl .country-flag {
	background-position: 0 -784px !important;
}

.language-flag-es .country-flag {
	background-position: 0 -800px !important;
}

.language-flag-sw .country-flag {
	background-position: 0 -816px !important;
}

.language-flag-sv .country-flag {
	background-position: 0 -832px !important;
}

.language-flag-th .country-flag {
	background-position: 0 -848px !important;
}

.language-flag-tr .country-flag {
	background-position: 0 -864px !important;
}

.language-flag-uk .country-flag {
	background-position: 0 -880px !important;
}

.language-flag-ur .country-flag {
	background-position: 0 -896px !important;
}

.language-flag-vi .country-flag {
	background-position: 0 -912px !important;
}

.language-flag-cy .country-flag {
	background-position: 0 -928px !important;
}

.language-flag-yi .country-flag {
	background-position: 0 -944px !important;
}

.language-flag-bn .country-flag {
	background-position: 0 -960px !important;
}

.language-flag-eo .country-flag {
	background-position: 0 -976px !important;
}

.language-flag.language-flag-custom-afghanistan .country-flag {
	background-position: 0 -992px !important;
}

.language-flag.language-flag-custom-albania .country-flag {
	background-position: 0 -1008px !important;
}

.language-flag.language-flag-custom-algeria .country-flag {
	background-position: 0 -1024px !important;
}

.language-flag.language-flag-custom-argentina .country-flag {
	background-position: 0 -1040px !important;
}

.language-flag.language-flag-custom-australia .country-flag {
	background-position: 0 -1056px !important;
}

.language-flag.language-flag-custom-austria .country-flag {
	background-position: 0 -1072px !important;
}

.language-flag.language-flag-custom-belgium .country-flag {
	background-position: 0 -1088px !important;
}

.language-flag.language-flag-custom-brazil .country-flag {
	background-position: 0 -1104px !important;
}

.language-flag.language-flag-custom-canada .country-flag {
	background-position: 0 -1120px !important;
}

.language-flag.language-flag-custom-chile .country-flag {
	background-position: 0 -1136px !important;
}

.language-flag.language-flag-custom-cote-d-ivoire .country-flag {
	background-position: 0 -1152px !important;
}

.language-flag.language-flag-custom-ecuador .country-flag {
	background-position: 0 -1168px !important;
}

.language-flag.language-flag-custom-egypt .country-flag {
	background-position: 0 -1184px !important;
}

.language-flag.language-flag-custom-england .country-flag {
	background-position: 0 -1200px !important;
}

.language-flag.language-flag-custom-luxembourg .country-flag {
	background-position: 0 -1216px !important;
}

.language-flag.language-flag-custom-malaysia .country-flag {
	background-position: 0 -1232px !important;
}

.language-flag.language-flag-custom-mexico .country-flag {
	background-position: 0 -1248px !important;
}

.language-flag.language-flag-custom-new-zealand .country-flag {
	background-position: 0 -1264px !important;
}

.language-flag.language-flag-custom-oman .country-flag {
	background-position: 0 -1280px !important;
}

.language-flag.language-flag-custom-qatar .country-flag {
	background-position: 0 -1296px !important;
}

.language-flag.language-flag-custom-saudi-arabia .country-flag {
	background-position: 0 -1312px !important;
}

.language-flag.language-flag-custom-singapore .country-flag {
	background-position: 0 -1328px !important;
}

.language-flag.language-flag-custom-south-africa .country-flag {
	background-position: 0 0 !important;
}

.language-flag.language-flag-custom-switzerland .country-flag {
	background-position: 0 -1344px !important;
}

.language-flag.language-flag-custom-syria .country-flag {
	background-position: 0 -1360px !important;
}

.language-flag.language-flag-custom-united-arab-emirates .country-flag {
	background-position: 0 -1376px !important;
}

.language-flag.language-flag-custom-united-states-of-america .country-flag {
	background-position: 0 -1392px !important;
}

.language-flag-hy .country-flag {
	background-position: 0 -1408px;
}

.language-flag-bs .country-flag {
	background-position: 0 -1424px;
}

.language-flag-ceb .country-flag {
	background-position: 0 -1440px;
}

.language-flag-ny .country-flag {
	background-position: 0 -1456px;
}

.language-flag-ha .country-flag {
	background-position: 0 -1472px;
}

.language-flag-hmn .country-flag {
	background-position: 0 -1488px;
}

.language-flag-ig .country-flag {
	background-position: 0 -1504px;
}

.language-flag-jw .country-flag {
	background-position: 0 -1520px;
}

.language-flag-kk .country-flag {
	background-position: 0 -1536px;
}

.language-flag-km .country-flag {
	background-position: 0 -1552px;
}

.language-flag-lo .country-flag {
	background-position: 0 -1568px;
}

.language-flag-la .country-flag {
	background-position: 0 -1584px;
}

.language-flag-mg .country-flag {
	background-position: 0 -1600px;
}

.language-flag-ml .country-flag {
	background-position: 0 -1616px;
}

.language-flag-mi .country-flag {
	background-position: 0 -1632px;
}

.language-flag-mr .country-flag {
	background-position: 0 -1648px;
}

.language-flag-mn .country-flag {
	background-position: 0 -1664px;
}

.language-flag-my .country-flag {
	background-position: 0 -1680px;
}

.language-flag-ne .country-flag {
	background-position: 0 -1696px;
}

.language-flag-pa .country-flag {
	background-position: 0 -1712px;
}

.language-flag-st .country-flag {
	background-position: 0 -1728px;
}

.language-flag-si .country-flag {
	background-position: 0 -1744px;
}

.language-flag-so .country-flag {
	background-position: 0 -1760px;
}

.language-flag-su .country-flag {
	background-position: 0 -1776px;
}


.language-flag-tg .country-flag {
	background-position: 0 -1792px;
}

.language-flag-uz .country-flag {
	background-position: 0 -1808px;
}

.language-flag-yo .country-flag {
	background-position: 0 -1824px;
}

.language-flag-zu .country-flag {
	background-position: 0 -1840px;
}
@media only screen and (max-width:992px) {
    #index-body .init-2 .head h2{
        padding-bottom: 65px;
    }
    
    .footer .footer-info p{
        font-size: 14px;
        word-break: break-word !important;
    }
    
    #index-body .section.footer{
        padding-bottom: 100px !important;
    }
    
}