/**
 * style.less
 * 层叠样式表
 */
.ff
{
    font-family: 'iconfont' !important;
}
body
{
    font-family: 'Microsoft YaHei', 'WenQuanYi Micro Hei', 'Heiti SC', 'PingFang SC', 'Hiragino Sans GB', Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 14px;

    color: #222;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.header
{
    font-size: 0;

    position: fixed;
    z-index: 10;
    top: 0;

    width: 100%;
    height: 200px;

    -webkit-transition: all .4s;
            transition: all .4s;

    background-color: rgba(255, 255, 255, .5);
}
@media (max-width: 1199px)
{
    .header
    {
        height: 70px;
    }
}
.header .header-top
{
    font-size: 14px;

    height: 140px;
}
@media (max-width: 1199px)
{
    .header .header-top
    {
        height: 70px;
    }
}
.header .header-top p,
.header .header-top .hnav
{
    display: inline-block;

    margin: 0;

    vertical-align: top;
}
.header .header-top p
{
    line-height: 40px;
}
@media (max-width: 1199px)
{
    .header .header-top p
    {
        display: none;
    }
}
.header .header-top p a:hover
{
    text-decoration: underline;

    color: #117919;
}
.header .logo
{
    position: relative;
    z-index: 2;

    display: inline-block;

    height: 100px;
    margin-top: 20px;

    -webkit-transition: all .4s;
            transition: all .4s;
    vertical-align: middle;
}
@media (max-width: 1350px)
{
    .header .logo
    {
        height: 80px;
        margin-top: 30px;
    }
}
@media (max-width: 1199px)
{
    .header .logo
    {
        height: 50px;
        margin-top: 10px;
    }
}
.header .logo a
{
    display: block;

    height: 100%;
}
.header .logo img
{
    position: relative;
    z-index: 2;

    display: inline-block;

    height: 100%;
}
.header .logo .logo-text
{
    display: inline-block;

    margin-left: 10px;

    vertical-align: middle;
}
@media (max-width: 767px)
{
    .header .logo .logo-text
    {
        display: none;
    }
}
.header .logo .logo-text b
{
    font-size: 72px;
    line-height: 1;

    display: inline-block;

    padding-left: 10px;

    vertical-align: middle;

    color: #e5760e;
    border-left: 1px solid #e6ede7;
}
@media (max-width: 1350px)
{
    .header .logo .logo-text b
    {
        font-size: 60px;
    }
}
@media (max-width: 991px)
{
    .header .logo .logo-text b
    {
        font-size: 40px;
    }
}
@media (max-width: 767px)
{
    .header .logo .logo-text b
    {
        font-size: 24px;
    }
}
.header .logo .logo-text p
{
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;

    display: inline-block;

    vertical-align: middle;

    color: #117919;
}
@media (max-width: 1350px)
{
    .header .logo .logo-text p
    {
        font-size: 26px;
    }
}
@media (max-width: 991px)
{
    .header .logo .logo-text p
    {
        font-size: 20px;
    }
}
@media (max-width: 767px)
{
    .header .logo .logo-text p
    {
        font-size: 16px;
    }
}
.header .logo .logo-text p span
{
    font-size: 16px;
    font-weight: normal;

    display: block;

    color: #333;
}
@media (max-width: 991px)
{
    .header .logo .logo-text p span
    {
        font-size: 14px;
    }
}
@media (max-width: 767px)
{
    .header .logo .logo-text p span
    {
        font-size: 12px;
    }
}
.header .pc-search
{
    position: relative;

    display: inline-block;
    float: right;

    width: 320px;
    margin-top: 48px;
}
@media (max-width: 1350px)
{
    .header .pc-search
    {
        width: 260px;
    }
}
@media (max-width: 1199px)
{
    .header .pc-search
    {
        display: none;
    }
}
.header .pc-search input
{
    line-height: 24px;

    width: 100%;
    padding: 10px 60px 10px 10px;

    border: 1px solid #fff;
    background: none;
}
.header .pc-search .submit
{
    font-size: 24px;
    line-height: 44px;

    position: absolute;
    top: 0;
    right: 0;

    width: 60px;
    padding: 0;

    text-align: center;

    color: #fff;
    background: none;
}
.header .pc-search .submit:after
{
    font-family: 'iconfont' !important;

    content: '\e696';
}
.header .tel
{
    position: relative;

    display: inline-block;
    float: right;

    margin-top: 40px;
    margin-left: 3%;
    padding-left: 60px;
}
@media (max-width: 1199px)
{
    .header .tel
    {
        display: none;
    }
}
.header .tel:before
{
    font-family: 'iconfont' !important;
    font-size: 20px;
    line-height: 46px;

    position: absolute;
    top: 50%;
    left: 0;

    display: block;

    width: 46px;
    height: 46px;

    content: '\e686';
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;

    color: #117919;
    border: 1px solid #117919;
    border-radius: 50%;
}
.header .tel b
{
    font-size: 24px;
    line-height: 1.2;

    display: block;

    color: #117919;
}
.header .tel p
{
    font-size: 14px;
    line-height: 20px;

    margin: 0;
}
.header .header-nav
{
    border-top: 1px solid #dfe6df;
}
.header .nav-collapse
{
    position: relative;

    display: none;
    float: right;

    width: 20px;
    height: 40px;
    margin-left: 10px;
    padding: 0;

    cursor: pointer;

    background: none;
}
@media (max-width: 1199px)
{
    .header .nav-collapse
    {
        display: block;

        margin-top: 14px;
    }
    .header .nav-collapse.nav-collapse-1
    {
        position: absolute;
        z-index: 9999;
        top: 10px;
        right: 20px;

        display: block;

        margin-top: 8px;

        border: none;
    }
    .header .nav-collapse.nav-collapse-1 .btn-line
    {
        background-color: #fff !important;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px)
{
    .header .nav-collapse.nav-collapse-xs:hover .btn-line
    {
        background-color: #000;
    }
}
.header .nav-collapse .btn-line
{
    position: absolute;
    left: 50%;

    width: 20px;
    height: 2px;

    -webkit-transition: all .5s ease;
            transition: all .5s ease;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);

    background-color: #333;
}
.header .nav-collapse .btn-line:nth-child(3),
.header .nav-collapse .btn-line:nth-child(1)
{
    position: absolute;

    display: block;

    width: 20px;
    height: 2px;

    content: '';
    -webkit-transition: all .5s ease;
            transition: all .5s ease;

    background-color: #333;
}
.header .nav-collapse .btn-line:nth-child(1)
{
    top: 35%;
}
.header .nav-collapse .btn-line:nth-child(2)
{
    top: 50%;
}
.header .nav-collapse .btn-line:nth-child(3)
{
    top: 65%;
}
.header .nav-collapse.active
{
    border-color: transparent;
}
.header .nav-collapse.active .btn-line
{
    background-color: #fff;
}
.header .nav-collapse.active .btn-line:nth-child(2)
{
    -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
            transform: translateX(-50px);

    opacity: 0;
}
.header .nav-collapse.active .btn-line:nth-child(1)
{
    top: 50%;
    left: 50%;

    -webkit-transform: translateX(-50%) rotateZ(45deg);
        -ms-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotateZ(45deg);
}
.header .nav-collapse.active .btn-line:nth-child(3)
{
    top: 50%;
    left: 50%;

    -webkit-transform: translateX(-50%) rotateZ(-45deg);
        -ms-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotateZ(-45deg);
}
@media (min-width: 1200px)
{
    .header .nav
    {
        position: relative;
        z-index: 2;

        -webkit-transition: all .4s;
                transition: all .4s;
    }
}
@media (max-width: 1199px)
{
    .header .nav
    {
        position: fixed;
        z-index: 9998;
        top: 0;
        left: 0;

        display: none;

        width: 100%;
        height: 100%;
        padding: 0 26px;

        -webkit-transition: left .3s;
                transition: left .3s;
        text-align: left;
        text-align: center;

        background: #fafafa;
        background-color: #000;
    }
    .header .nav .tbl
    {
        display: table;

        width: 100%;
        height: 100%;
    }
    .header .nav .tbl-cell
    {
        display: table-cell;

        height: 100%;

        vertical-align: middle;
    }
}
@media (max-width: 767px)
{
    .header .nav
    {
        width: 100%;
        padding: 30px;
    }
}
.header .nav.left-100
{
    left: -100%;
}
.header .nav.left-200
{
    left: -200%;
}
@media (min-width: 1200px)
{
    .header .nav .nav-list1
    {
        margin: 0 -40px;
    }
    .header .nav .nav-list1 > li
    {
        position: relative;

        display: inline-block;

        vertical-align: top;
    }
    .header .nav .nav-list1 > li > a
    {
        font-size: 16px;
        line-height: 60px;

        position: relative;

        display: inline-block;

        padding: 0 40px;

        -webkit-transition: all .4s;
                transition: all .4s;
        vertical-align: middle;
    }
    .header .nav .nav-list1 > li:hover > a,
    .header .nav .nav-list1 > li.active > a
    {
        color: #fff;
        background-color: #117919;
    }
    .header .nav .nav-list1 .nav-list2
    {
        position: absolute;
        z-index: 50;
        top: 100%;

        display: none;

        min-width: 100%;
        padding: 0;

        text-align: center;

        background-color: #117919;
        box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    }
    .header .nav .nav-list1 .nav-list2 li
    {
        position: relative;

        list-style: none;
    }
    .header .nav .nav-list1 .nav-list2 li > a
    {
        font-size: 16px;
        line-height: 26px;

        position: relative;
        z-index: 1;

        display: block;

        padding: 15px 18px;

        -webkit-transition: -webkit-transform .6s ease;
                transition: -webkit-transform .6s ease;
                transition:         transform .6s ease;
                transition:         transform .6s ease, -webkit-transform .6s ease;
        white-space: nowrap;

        color: #fff;
    }
    .header .nav .nav-list1 .nav-list2 li > a:hover
    {
        color: #fff;
        background-color: #086d13;
    }
    .header .nav .nav-list1 .nav-list2 li img
    {
        max-width: 400px;
    }
    .header .nav .nav-list1 .nav-list3
    {
        position: absolute;
        top: -20px;
        left: 100%;

        display: none;

        min-width: 120px;
        padding: 20px 0;

        text-align: left;

        background-color: #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    }
    .header .nav .nav-list1 .nav-list3 li
    {
        border-bottom: 1px dashed rgba(255, 255, 255, .2);
    }
    .header .nav .nav-list1 .nav-list3 li > a
    {
        line-height: 30px;

        padding: 0 20px;
    }
}
@media (min-width: 1200px) and (max-width: 1470px)
{
    .header .nav .nav-list1
    {
        margin: 0 -30px;
    }
}
@media (min-width: 1200px) and (max-width: 1350px)
{
    .header .nav .nav-list1
    {
        margin: 0 -24px;
    }
}
@media (min-width: 1200px) and (max-width: 1470px)
{
    .header .nav .nav-list1 > li > a
    {
        padding: 0 30px;
    }
}
@media (min-width: 1200px) and (max-width: 1350px)
{
    .header .nav .nav-list1 > li > a
    {
        padding: 0 24px;
    }
}
@media (max-width: 1199px)
{
    .header .nav .nav-list1
    {
        margin: 20px 0;

        opacity: 0;
    }
    .header .nav .nav-list1 > li
    {
        -webkit-transform: translateX(-25px);
            -ms-transform: translateX(-25px);
                transform: translateX(-25px);

        opacity: 0;
    }
    .header .nav .nav-list1 > a
    {
        font-size: 20px;

        color: #fff;
    }
}
@media (max-width: 1199px)
{
    .header .nav .nav-list2,
    .header .nav .nav-list3
    {
        display: none;
    }
    .header .nav .nav-list2 a,
    .header .nav .nav-list3 a
    {
        font-size: 15px;
        line-height: 2;

        margin-top: 5px;

        color: #fff;
    }
}
.header .nav .nav-list2 a,
.header .nav .nav-list3 a
{
    display: block;
}
@media (max-height: 580px)
{
    .header .nav .nav-list2 a,
    .header .nav .nav-list3 a
    {
        margin-top: 0;
    }
}
.header .nav-2,
.header .nav-3
{
    display: none;
}
@media (max-width: 1199px)
{
    .header .nav-2,
    .header .nav-3
    {
        position: absolute;
        z-index: 9999;
        top: 0;

        display: block;
        overflow: hidden;

        width: 100%;
        height: 100%;
        padding: 20px;

        -webkit-transition: left .3s;
                transition: left .3s;
        text-align: left;
        text-align: center;

        color: #fff;
        background: #fafafa;
        background-color: #000;
    }
    .header .nav-2 .img-box,
    .header .nav-3 .img-box
    {
        display: none;
    }
    .header .nav-2 .item,
    .header .nav-3 .item
    {
        display: block;
    }
    .header .nav-2 .item p,
    .header .nav-3 .item p
    {
        font-size: 14px;

        position: relative;
        top: 0;

        display: block;

        margin: 0;
        padding: 0;

        -webkit-transform: translateY(0%);
            -ms-transform: translateY(0%);
                transform: translateY(0%);

        color: #fff;
    }
}
.header .nav-2 .nav-top .back-btn:before,
.header .nav-3 .nav-top .back-btn:before
{
    font-family: 'iconfont';
    font-size: 26px;

    content: '\e9b5';
}
.header .nav-2 .nav-top .nav-title,
.header .nav-3 .nav-top .nav-title
{
    font-size: 18px;
    line-height: 40px;

    margin: 0;

    text-transform: uppercase;
}
@media (max-width: 767px)
{
    .header .nav-2 .nav-top .nav-title,
    .header .nav-3 .nav-top .nav-title
    {
        font-size: 18px;

        width: 100%;
    }
}
.header .nav-2 .nav-top .nav-collapse-2,
.header .nav-3 .nav-top .nav-collapse-2
{
    margin: 0;
}
.header .nav-2 .nav-top .nav-collapse-2 .btn-line,
.header .nav-3 .nav-top .nav-collapse-2 .btn-line
{
    background-color: #fff;
}
.header .nav-2 .content,
.header .nav-3 .content
{
    overflow: auto;

    height: 80%;
    margin-top: 12%;
}
.header .nav-2 .content ul,
.header .nav-3 .content ul
{
    margin: 0;
    padding: 0;
}
@media (max-width: 767px)
{
    .header .nav-2 .content ul,
    .header .nav-3 .content ul
    {
        padding: 0 15px;
    }
}
.header .nav-2 .content ul li,
.header .nav-3 .content ul li
{
    line-height: 44px;

    clear: both;

    margin: 25px 0;

    text-align: left;
}
@media (max-width: 767px)
{
    .header .nav-2 .content ul li,
    .header .nav-3 .content ul li
    {
        margin: 0;
    }
}
.header .nav-2 .content ul li.more,
.header .nav-3 .content ul li.more
{
    position: relative;
}
.header .nav-2 .content ul li.more:after,
.header .nav-3 .content ul li.more:after
{
    font-family: 'iconfont' !important;
    font-size: 16px;

    position: absolute;
    top: 50%;
    right: 0;

    content: '\e72f';
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);

    color: #fff;
}
.header .nav-2 .content ul li a,
.header .nav-3 .content ul li a
{
    font-size: 20px;

    display: block;
}
@media (max-width: 767px)
{
    .header .nav-2 .content ul li a,
    .header .nav-3 .content ul li a
    {
        font-size: 16px;
    }
}
.header .nav-2
{
    left: 100%;
}
.header .nav-3
{
    left: 200%;
}
.header .nav-3 .content ul li
{
    font-size: 15px;
}
.header .fade-out ul
{
    text-align: left;
}
@media only screen and (min-width: 768px) and (max-width: 1199px)
{
    .header .fade-out ul
    {
        padding: 0 5%;
    }
}
@media (max-width: 1199px)
{
    .header .fade-out ul .pic
    {
        display: none !important;
    }
}
@media (max-width: 1199px)
{
    .header .fade-out ul.nav-list1
    {
        opacity: 1;
    }
    .header .fade-out ul.nav-list1 a
    {
        color: #fff;
    }
    .header .fade-out ul.nav-list1 > li
    {
        position: relative;

        margin: 20px 0;
    }
    .header .fade-out ul.nav-list1 > li.act
    {
        -webkit-transition: all .4s;
                transition: all .4s;
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    .header .fade-out ul.nav-list1 > li.more:after
    {
        font-family: 'iconfont';
        font-size: 18px;

        position: absolute;
        top: 50%;
        right: 0;

        margin-top: -14px;

        content: '\e72f';

        color: #fff;
    }
    .header .fade-out ul.nav-list1 > li > a
    {
        font-size: 18px;
        line-height: 2.5;

        display: block;

        text-transform: uppercase;
    }
    .header .fade-out ul.nav-list1 .nav-list2 > li > a
    {
        font-size: 20px;
    }
}
@media (max-width: 1199px) and (max-width: 767px)
{
    .header .fade-out ul.nav-list1 > li
    {
        margin: 0;
    }
}
@media (max-width: 1199px) and (max-height: 768px)
{
    .header .fade-out ul.nav-list1 .nav-list2 > li > a
    {
        font-size: 18px;
    }
}
@media (max-width: 1199px) and (max-width: 480px)
{
    .header .fade-out ul.nav-list1 .nav-list2 > li > a
    {
        font-size: 14px;
    }
}
.header .fade-out ul.nav2-list2 h4
{
    font-size: 20px;
    line-height: 50px;
}
.header .search-box
{
    font-size: 14px;

    position: fixed;
    z-index: 888;
    top: 100%;
    left: 0;

    display: none;
    overflow: hidden;

    width: 100%;
    height: 100%;
    margin-top: 20px;
    margin-top: 0;
    margin-right: 10px;
    padding: 0 3%;

    background-color: rgba(51, 51, 51, .96);
}
.header .search-box .search
{
    line-height: 40px;

    overflow: hidden;
    zoom: 1;

    width: 240px;

    border: 1px solid #dbdbdb;
    border-radius: 40px;
}
.header .search-box .search:after
{
    display: block;
    visibility: hidden;
    clear: both;

    height: 0;

    content: '';
}
.header .search-box .input-text
{
    float: left;

    height: 38px;
    padding-left: 10%;

    color: #fff;
    background: none;
}
@media (min-width: 768px)
{
    .header .search-box .input-text
    {
        width: 90%;
        padding: 0 15px;
    }
}
.header .search-box p
{
    display: block;
}
.header .search-box .input-submit
{
    line-height: 36px;

    float: right;

    width: 10%;

    -webkit-animation: fadeInLeft 1s 0s ease both;
            animation: fadeInLeft 1s 0s ease both;

    background: none;
}
.header .search-box .input-submit:before
{
    font-family: 'iconfont' !important;
    font-size: 22px;

    content: '\e660';

    color: #fff;
}
@media (min-width: 768px)
{
    .header .search-box .input-submit
    {
        position: absolute;
        right: 0;
        bottom: 20px;
    }
}
.header .search-box.search-xs
{
    width: 100%;
    margin: 0;

    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    background: none;
}
@media (min-width: 1200px)
{
    .header .search-box.search-xs
    {
        display: none;
    }
}
@media (max-width: 1199px)
{
    .header .search-box.search-xs
    {
        position: absolute;
        z-index: 0;
        top: auto;
        right: 0;
        bottom: 0;
        bottom: 30px;

        display: inline-block;

        height: 34px;
    }
}
.header .search-box.search-xs.show
{
    z-index: 66;
}
.header .search-box.search-xs.show .search
{
    left: 0;
}
.header .search-box.search-xs .search
{
    position: absolute;
    z-index: 888;
    top: 0;
    left: 120%;

    width: 100%;

    -webkit-transition: left .3s;
            transition: left .3s;

    border-color: #fff;
    background: #fff;
}
.header .search-box.search-xs .input-submit
{
    line-height: 34px;

    background: #fff;
}
.header .search-box.search-xs .input-submit:before
{
    color: #104384;
}
.header .search-icon
{
    position: absolute;
    z-index: 10;
    top: 18px;
    left: 15px;

    display: inline-block;

    cursor: pointer;
}
.header .search-icon:before
{
    font-family: 'iconfont' !important;
    font-size: 18px;

    content: '\e660';

    color: #117919;
}
.header .search-lg
{
    font-size: 14px;

    top: 0;
}
.header .search-lg .logo
{
    margin-top: 20px;
    margin-left: 0;
}
.header .search-lg .search
{
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;

    width: 100%;
    max-width: 90%;
    margin: auto;
    padding: 0 10px;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);

    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .8);
    border-radius: 0;
}
.header .search-lg .search p
{
    margin-bottom: 50px;

    -webkit-animation: zoomIn 1s 0s ease both;
            animation: zoomIn 1s 0s ease both;
    text-align: center;
    letter-spacing: 2px;

    color: #fff;
}
.header .search-lg .input-text
{
    font-size: 16px;
    line-height: 30px;

    width: 90%;
    height: 50px;
    padding: 10px;

    -webkit-animation: zoomIn 1s 0s ease both;
            animation: zoomIn 1s 0s ease both;
    text-align: center;

    color: #fff;
    border: none;
    outline: none;
}
.header .search-lg .close-btn
{
    position: fixed;
    top: 34px;
    right: 18%;

    cursor: pointer;
}
@media (max-width: 1440px)
{
    .header .search-lg .close-btn
    {
        right: 8%;
    }
}
.header .search-lg .close-btn:before
{
    font-family: 'iconfont' !important;
    font-size: 20px;

    content: '\e61b';

    color: #fff;
}
.header .find
{
    line-height: 140px;

    display: inline-block;
    display: none;
    float: right;

    height: 140px;

    cursor: pointer;
    -webkit-transition: all .4s;
            transition: all .4s;
}
@media (max-width: 1199px)
{
    .header .find
    {
        line-height: 70px;

        display: inline-block;

        height: 70px;
        margin-right: 10px;
    }
}
.header .find:before
{
    font-family: 'iconfont';
    font-size: 20px;

    content: '\e660';
}
.header .find:hover
{
    color: #117919;
}
.header .language
{
    display: inline-block;
    float: right;

    margin-left: 14px;
}
.header .language a
{
    font-size: 18px;
    line-height: 140px;

    display: inline-block;

    padding: 0 10px;

    -webkit-transition: all .4s;
            transition: all .4s;

    color: #575c66;
}
@media (max-width: 1199px)
{
    .header .language a
    {
        line-height: 70px;
    }
}
.header .language a:before
{
    font-family: 'iconfont' !important;

    float: left;

    margin-right: 6px;

    content: '\e62a';
}
.header .language a:after
{
    font-size: 12px;

    display: inline-block;

    margin-left: 10px;

    content: '|';
    vertical-align: top;
}
.header .language a:hover
{
    color: #117919;
}
.header .back-btn
{
    position: absolute;
    left: 15px;
}
.header.fixed-header
{
    top: -140px;

    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
@media (max-width: 1199px)
{
    .header.fixed-header
    {
        top: 0;
    }
}
.header-in
{
    position: relative;
}
.header-in .pc-search input
{
    border: 1px solid #d9d9d9;
}
.header-in .pc-search .submit
{
    color: #999;
}
.header-in.fixed-header
{
    top: 0;
}
.online-wrap .btn
{
    line-height: 36px;

    position: fixed;
    z-index: 8;
    right: 0;
    bottom: 55px;

    width: 40px;
    height: 40px;
    padding: 0;

    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
    text-align: center;

    border-radius: 0;
    background-color: rgba(0, 0, 0, .7);
}
@media (min-width: 992px)
{
    .online-wrap .btn
    {
        display: none;
    }
}
.online-wrap .btn:before
{
    font-family: 'iconfont' !important;
    font-size: 18px;

    display: inline-block;

    content: '\e6d2';
    -webkit-transition: -webkit-transform .3s;
            transition: -webkit-transform .3s;
            transition:         transform .3s;
            transition:         transform .3s, -webkit-transform .3s;

    color: #fff;
}
.online-wrap .btn.active:before
{
    -webkit-transform: rotateZ(225deg);
        -ms-transform: rotate(225deg);
            transform: rotateZ(225deg);
}
.online-wrap .code-pic
{
    position: fixed;
    z-index: 101;
    right: 45px;
    bottom: 180px;

    display: none;

    max-width: 120px;
}
.online-wrap .code-pic .pic-box
{
    padding: 5px;

    background-color: #fff;
}
.online-wrap .code-pic img
{
    display: block;

    max-width: 100%;
}
.online-wrap .online
{
    position: fixed;
    z-index: 8;
    top: 50%;
    right: 0;

    -webkit-transition: right .3s;
            transition: right .3s;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
}
@media (max-width: 991px)
{
    .online-wrap .online
    {
        top: auto;
        right: -60px;
        bottom: 100px;

        -webkit-transform: translateY(0%);
            -ms-transform: translateY(0%);
                transform: translateY(0%);
    }
    .online-wrap .online.active
    {
        right: 0;
    }
}
.online-wrap .online a
{
    line-height: 48px;

    position: relative;

    display: block;

    width: 48px;
    height: 48px;
    margin: 2px auto;
    padding: 0;

    -webkit-transition: all .4s;
            transition: all .4s;
    text-align: center;

    border-radius: 4px;
    background-color: #626262;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.online-wrap .online a:before
{
    font-size: 20px;

    color: #fff;
}
@media (min-width: 992px)
{
    .online-wrap .online a:hover
    {
        text-decoration: none;

        background-color: #117919;
    }
    .online-wrap .online a:hover:before
    {
        color: #fff;
    }
}
@media (max-width: 767px)
{
    .online-wrap .online a
    {
        line-height: 40px;

        width: 40px;
        height: 40px;
    }
    .online-wrap .online a:before
    {
        font-size: 20px;
    }
}
@media (min-width: 992px)
{
    .online-wrap .online .icon-phone:hover .phone-num
    {
        right: 100%;
    }
}
.online-wrap .online .icon-phone .phone-num
{
    position: absolute;
    z-index: -1;
    top: 0;
    right: -300px;

    padding-right: 0;

    -webkit-transition: right .3s;
            transition: right .3s;
    white-space: nowrap;
}
.online-wrap .online .icon-phone .phone-num p
{
    margin: 0;
    padding: 0 10px;

    color: #fff;
    background-color: #117919;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .12);
}
.online-wrap .online .code:before
{
    font-size: 24px;
}
@media (max-width: 767px)
{
    .online-wrap .online .code:before
    {
        font-size: 22px;
    }
}
.online-wrap .online .code .mask
{
    position: absolute;
    z-index: 10;
    top: 0;
    right: 100%;

    display: none;

    width: 130px;
    height: 130px;
    padding-right: 5px;
}
.online-wrap .online .code .mask .mask-box
{
    border: 1px solid #e5e5e5;
    background-color: #fff;
}
.online-wrap .online .code .mask img
{
    display: block;

    width: 100%;
}
.online-wrap .online .code .mask p
{
    font-size: 13px;
    line-height: 16px;

    margin: 5px 0 8px 0;

    color: #888;
}
.online-wrap .online .sale
{
    width: 158px;
    margin-bottom: 30px;
}
@media (max-width: 991px)
{
    .online-wrap .online .sale
    {
        width: 50px;
    }
}
.online-wrap .online .sale a
{
    width: 158px;
    height: 162px;

    background: none;
}
@media (max-width: 991px)
{
    .online-wrap .online .sale a
    {
        width: 50px;
        height: 50px;
    }
}
.online-wrap .online .sale img
{
    max-width: 100%;
}
.online-wrap .icon-qq:before
{
    font-family: 'iconfont' !important;

    content: '\e62d';
}
.online-wrap .icon-weixin:before
{
    font-family: 'iconfont' !important;

    content: '\e604';
}
.online-wrap .icon-message:before
{
    font-family: 'iconfont' !important;
    font-size: 24px !important;

    content: '\e72e';
}
.online-wrap .icon-skype:before
{
    font-family: 'iconfont' !important;

    content: '\e616';
}
.online-wrap .icon-whatsapp:before
{
    font-family: 'iconfont' !important;

    content: '\e751';
}
.online-wrap .icon-phone:before
{
    font-family: 'iconfont' !important;

    content: '\e61c';
}
.online-wrap .icon-arrow-top:before
{
    font-family: 'iconfont' !important;

    content: '\e622';
}
.xs-online
{
    position: fixed;
    z-index: 8;
    right: 0;
    bottom: 0;

    display: none;

    width: 100%;

    background-color: rgba(51, 51, 51, .9);
    box-shadow: 0 -2px 14px 1px rgba(0, 0, 0, .2);
}
@media (max-width: 991px)
{
    .xs-online
    {
        display: block !important;
    }
}
.xs-online ul
{
    overflow: hidden;

    margin: 0;
    padding: 0;

    text-align: center;

    color: #fff;
}
.xs-online ul li
{
    float: left;

    width: 20%;

    list-style: none;

    border-left: 1px solid rgba(255, 255, 255, .6);
}
.xs-online ul li > a
{
    font-size: 10px;

    display: block;

    padding: 8px 0;

    text-transform: uppercase;

    color: #fff;
}
@media (max-width: 320px)
{
    .xs-online ul li > a
    {
        font-size: 8px;
    }
}
.xs-online ul li > a:before
{
    font-family: 'iconfont' !important;
    font-size: 16px;
    font-style: normal;

    display: block;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.xs-online ul li:first-child
{
    border-left: none;
}
.xs-online ul li.tel > a:before
{
    content: '\e686';
}
.xs-online ul li.mail > a:before
{
    font-weight: normal;

    content: '\e619';
}
.xs-online ul li.message > a:before
{
    font-weight: normal;

    content: '\e826';
}
.xs-online ul li.home > a:before
{
    font-weight: normal;

    content: '\e6c8';
}
.xs-online ul li.map > a:before
{
    font-weight: normal;

    content: '\e63e';
}
.xs-online ul li.product > a:before
{
    font-weight: normal;

    content: '\e7e9';
}
.xs-online ul li.top > a:before
{
    font-weight: normal;

    content: '\e622';
}
.xs-online ul li.whatsapp > a:before
{
    font-weight: normal;

    content: '\e64e';
}
.xs-online ul li.wechat > a:before
{
    font-weight: normal;

    content: '\e604';
}
.xs-online ul li.wechat img
{
    position: absolute;
    top: -90px;
    left: 50%;

    display: none;

    width: 90px;

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.xs-online ul li.wechat:hover img
{
    display: block;
}
.banner
{
    font-size: 0;

    position: relative;

    overflow: hidden;

    width: 100%;

    background-color: #000;
}
@media (max-width: 1199px)
{
    .banner .slickbanner
    {
        width: 120%;
        max-width: 120%;
        margin-left: -10%;
    }
}
@media (max-width: 991px)
{
    .banner .slickbanner
    {
        width: 130%;
        max-width: 130%;
        margin-left: -15%;
    }
}
@media (max-width: 1199px)
{
    .banner .slick-arrow
    {
        left: 10%;
    }
    .banner .slick-arrow.slick-next
    {
        right: 10%;
    }
}
.banner .slick-dots
{
    position: absolute;
    bottom: 30px;

    width: 100%;
    margin: 0;
    padding: 0 10%;

    text-align: center;
}
@media (max-width: 1199px)
{
    .banner .slick-dots
    {
        bottom: 10px;
    }
}
.banner .slick-dots li
{
    display: inline-block;

    width: 12px;
    height: 12px;
    margin: 0;
    margin: 0 10px;

    cursor: pointer;
    -webkit-transition: all .4s;
            transition: all .4s;

    color: #e0e1e7;
    border: 1px solid #fff;
    border-radius: 50%;
    background: none;
}
.banner .slick-dots li.slick-active
{
    background-color: #fff;
}
.banner .slick-dots li button
{
    display: none;
}
.banner .item
{
    position: relative;

    display: block;
    overflow: hidden;
}
.banner .item img
{
    display: block;

    max-width: 100%;
}
.banner .item a
{
    display: block;

    width: 100%;
}
.banner .item .video-box
{
    position: relative;

    display: block;

    padding-bottom: 49.58333333%;
}
.banner .item .video-box .fluid_video_wrapper
{
    position: absolute;
    z-index: 10;
}
.banner .item .video-box .fluid_initial_play
{
    background-color: #117919 !important;
}
@media (max-width: 991px)
{
    .banner-in .slickbanner
    {
        width: 140%;
        max-width: 140%;
        margin-left: -20%;
    }
}
.banner-in .text-in
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
@media (max-width: 991px)
{
    .banner-in .text-in
    {
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
    }
}
.banner-in .text-in b
{
    font-size: 32px;
    line-height: 1;
}
@media (max-width: 991px)
{
    .banner-in .text-in b
    {
        font-size: 26px;
    }
}
@media (max-width: 767px)
{
    .banner-in .text-in b
    {
        font-size: 20px;
    }
}
.banner-in .text-in p
{
    font-size: 14px;
    line-height: 24px;

    max-width: 580px;
    margin: 16px 0 0 0;
}
@media (max-width: 1199px)
{
    .banner-in .text-in p
    {
        display: none;
    }
}
.banner-in .text-in-white b,
.banner-in .text-in-white p
{
    color: #fff;
}
.banner-in .banner-nav
{
    position: absolute;
    right: 0;
    bottom: 0;

    width: 100%;

    text-align: right;
}
.banner-in .banner-nav ul
{
    display: inline-block;
}
.banner-in .banner-nav ul li
{
    display: inline-block;
}
.banner-in .banner-nav ul li a
{
    font-size: 16px;
    line-height: 70px;

    display: block;

    padding: 0 70px;

    color: #fff;
    background-color: rgba(0, 0, 0, .7);
}
@media (max-width: 991px)
{
    .banner-in .banner-nav ul li a
    {
        line-height: 40px;

        padding: 0 40px;
    }
}
@media (max-width: 767px)
{
    .banner-in .banner-nav ul li a
    {
        padding: 0 20px;
    }
}
.banner-in .banner-nav ul li.active a
{
    background-image: -webkit-gradient(linear, left top, right top, from(#e83928), to(#4f96d0));
    background-image: -webkit-linear-gradient(left, #e83928, #4f96d0);
    background-image:         linear-gradient(to right, #e83928, #4f96d0);
}
.banner .slick-current img
{
    -webkit-animation: narrow 4s 0s ease both;
            animation: narrow 4s 0s ease both;
}
.banner .banner-arrow
{
    position: absolute;
    z-index: 8;
    bottom: 40px;

    width: 100%;

    text-align: center;
}
@media (max-width: 1199px)
{
    .banner .banner-arrow
    {
        bottom: 0;
    }
}
.banner .banner-arrow a
{
    display: inline-block;
}
.banner .banner-arrow a:after
{
    font-family: 'iconfont' !important;
    font-size: 30px;

    content: '\e770';

    color: #fff;
}
@-webkit-keyframes narrow
{
    0%
    {
        -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
                transform: scale(1.1);

        opacity: 1;
    }
    50%
    {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
}
@keyframes narrow
{
    0%
    {
        -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
                transform: scale(1.1);

        opacity: 1;
    }
    50%
    {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
}
.zoomIn1
{
    -webkit-animation-name: narrow;
            animation-name: narrow;
}
.box
{
    overflow: hidden;

    padding: 80px 0;
}
@media (max-width: 991px)
{
    .box
    {
        padding: 50px 0;
    }
}
.title
{
    text-align: center;
}
.title:after
{
    display: block;

    width: 60px;
    height: 4px;
    margin: 0 auto;
    margin-top: 30px;

    content: '';

    background-color: #117919;
}
.title h2
{
    font-size: 48px;
    font-weight: bold;
    line-height: 1;

    margin: 0;
}
@media (max-width: 1470px)
{
    .title h2
    {
        font-size: 38px;
    }
}
@media (max-width: 991px)
{
    .title h2
    {
        font-size: 28px;
    }
}
@media (max-width: 767px)
{
    .title h2
    {
        font-size: 24px;
    }
}
.title p
{
    font-size: 24px;
    line-height: 1.66666667;

    margin: 14px 0 0 0;

    color: #117919;
}
@media (max-width: 991px)
{
    .title p
    {
        font-size: 18px;
    }
}
@media (max-width: 767px)
{
    .title p
    {
        font-size: 14px;
    }
}
.indexcontent
{
    position: relative;
    z-index: 2;
}
.box-governance
{
    background: url(../images/governance_bg.jpg) no-repeat center;
    background-size: cover;
}
.box-governance .governance .item
{
    position: relative;

    margin-top: 60px;
    padding: 50px 50px 60px 180px;

    -webkit-transition: all .6s;
            transition: all .6s;

    border-top: 2px solid #117919;
    background: url(../images/governance_item_bg.jpg) no-repeat bottom right;
    background-size: cover;
}
@media (max-width: 1199px)
{
    .box-governance .governance .item
    {
        margin-top: 30px;
        padding: 30px 30px 30px 130px;
    }
}
.box-governance .governance .item .gicon
{
    position: absolute;
    top: 50px;
    left: 30px;

    width: 154px;
}
@media (max-width: 1199px)
{
    .box-governance .governance .item .gicon
    {
        left: 14px;

        width: 100px;
    }
}
.box-governance .governance .item .gicon img
{
    max-width: 100%;
}
.box-governance .governance .item b
{
    font-size: 30px;
    line-height: 40px;

    display: block;
    display: -webkit-box;
    overflow: hidden;

    height: 40px;

    color: #117919;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media (max-width: 1199px)
{
    .box-governance .governance .item b
    {
        font-size: 24px;
    }
}
@media (max-width: 767px)
{
    .box-governance .governance .item b
    {
        font-size: 20px;
    }
}
.box-governance .governance .item p
{
    font-size: 16px;
    line-height: 36px;

    display: -webkit-box;
    overflow: hidden;

    height: 108px;
    margin: 10px 0 0 0;

    color: #666;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
@media (max-width: 1199px)
{
    .box-governance .governance .item p
    {
        font-size: 14px;
        line-height: 24px;

        height: 72px;
    }
}
.box-governance .governance .item a.more
{
    line-height: 46px;

    display: inline-block;

    margin-top: 50px;
    padding: 0 30px;

    -webkit-transition: all .2s;
            transition: all .2s;

    color: #117919;
    border: 1px solid #117919;
}
@media (max-width: 1199px)
{
    .box-governance .governance .item a.more
    {
        margin-top: 30px;
    }
}
@media (max-width: 767px)
{
    .box-governance .governance .item a.more
    {
        line-height: 36px;

        margin-top: 20px;
        padding: 0 20px;
    }
}
.box-governance .governance .item a.more:after
{
    font-family: 'iconfont' !important;

    margin-left: 30px;

    content: '\e625';
}
@media (max-width: 767px)
{
    .box-governance .governance .item a.more:after
    {
        margin-left: 10px;
    }
}
.box-governance .governance .item:hover
{
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);

    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.box-governance .governance .item:hover a.more
{
    color: #fff;
    background-color: #117919;
}
.box-product
{
    background-color: #e8ede8;
}
.box-product .sort
{
    display: inline-block;

    margin-top: 30px;
}
.box-product .sort ul
{
    margin: 0 -26px;

    text-align: center;
}
@media (max-width: 767px)
{
    .box-product .sort ul
    {
        margin: 0 -10px;
    }
}
.box-product .sort ul li
{
    display: inline-block;

    padding: 0 26px;
}
@media (max-width: 767px)
{
    .box-product .sort ul li
    {
        padding: 0 10px;
    }
}
.box-product .sort ul li:last-child:after
{
    display: none;
}
.box-product .sort ul li.active a
{
    color: #333;
    border-bottom: 2px solid #117919;
}
.box-product .sort ul li a
{
    font-size: 16px;
    line-height: 46px;

    display: inline-block;

    vertical-align: middle;
    text-transform: uppercase;

    color: #666;
}
@media (max-width: 767px)
{
    .box-product .sort ul li a
    {
        font-size: 14px;
    }
}
.box-product .product-more
{
    display: inline-block;
    float: right;

    margin-top: 30px;
}
@media (max-width: 767px)
{
    .box-product .product-more
    {
        display: block;
        float: none;

        margin-top: 10px;

        text-align: center;
    }
}
.box-product .product-more a
{
    line-height: 46px;

    display: inline-block;

    padding: 0 30px;

    -webkit-transition: all .2s;
            transition: all .2s;

    color: #fff;
    background-color: #117919;
}
.box-product .product-more a:hover
{
    background-color: #07580d;
}
.box-product .list
{
    position: relative;

    margin-top: 50px;
}
@media (max-width: 767px)
{
    .box-product .list
    {
        margin-top: 30px;
    }
}
.box-product .slick-product
{
	padding: 0 15px;
    /* margin: 0 -5px; */
}
.box-product .slick-slide
{
    padding: 0 15px;
}
@media(max-width:991px){
	.box-product .slick-product
	{
		/* padding: 0 15px; */
	    margin: 0 -5px;
	}
	.box-product .slick-slide
	{
	    padding: 0 5px;
	}
}
.box-product .slick-arrow
{
    left: 8px;
}
.box-product .slick-arrow.slick-next
{
    right: 8px;
}
.box-product .item
{
    position: relative;

    display: block;

    text-align: center;

    color: inherit;
}
.box-product .item .pic
{
    position: relative;

    overflow: hidden;
}
.box-product .item .pic .img-box
{
    -webkit-transition: all .2s;
            transition: all .2s;
}
.box-product .item .pic span.more
{
    line-height: 50px;

    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;

    display: inline-block;

    padding: 0 30px;

    -webkit-transition: all .2s;
            transition: all .2s;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);

    opacity: 0;
    color: #117919;
    background-color: #fff;
}
.box-product .item .pic span.more:after
{
    font-family: 'iconfont' !important;

    margin-left: 10px;

    content: '\e625';
}
.box-product .item .text
{
    margin-top: 14px;
}
.box-product .item .text b
{
    font-size: 22px;
    font-weight: normal;
    line-height: 40px;

    display: -webkit-box;
    overflow: hidden;

    height: 80px;

    -webkit-transition: all .2s;
            transition: all .2s;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
@media (max-width: 991px)
{
    .box-product .item .text b
    {
        font-size: 14px;
        line-height: 40px;

        height: 40px;
    }
}
@media (min-width: 1200px)
{
    .box-product .item:hover
    {
        text-decoration: none;
    }
    .box-product .item:hover .pic
    {
        background-color: #117919;
        box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    }
    .box-product .item:hover .pic .img-box
    {
        opacity: .3;
    }
    .box-product .item:hover .pic span.more
    {
        opacity: 1;
    }
    .box-product .item:hover .text b
    {
        color: #117919;
    }
}
.box-choose
{
    padding-bottom: 0;
}
.box-choose .choose
{
    margin-top: 60px;
    padding: 60px 0;

    background: url(../images/choose_bg.jpg) no-repeat top center;
    background-size: cover;
}
@media (max-width: 767px)
{
    .box-choose .choose
    {
        margin-top: 30px;
        padding: 30px 0;
    }
}
.box-choose .choose .title-choose
{
    text-align: center;

    color: #fff;
}
.box-choose .choose .title-choose h2
{
    font-size: 36px;
    font-weight: bold;
    line-height: 1.4;

    margin: 0;
}
@media (max-width: 991px)
{
    .box-choose .choose .title-choose h2
    {
        font-size: 30px;
    }
}
@media (max-width: 767px)
{
    .box-choose .choose .title-choose h2
    {
        font-size: 20px;
    }
}
.box-choose .choose .title-choose h3
{
    font-size: 24px;
    line-height: 1.4;

    margin: 10px 0 0 0;
}
@media (max-width: 991px)
{
    .box-choose .choose .title-choose h3
    {
        font-size: 20px;
    }
}
@media (max-width: 767px)
{
    .box-choose .choose .title-choose h3
    {
        font-size: 16px;
    }
}
.box-choose .choose ul
{
    font-size: 0;

    margin: 0 -5px;
    margin-top: 30px;
}
.box-choose .choose ul li
{
    font-size: 14px;

    display: inline-block;

    width: 20%;
    padding: 0 5px;

    vertical-align: top;
}
@media (max-width: 991px)
{
    .box-choose .choose ul li
    {
        width: 33.33333333%;
    }
}
@media (max-width: 767px)
{
    .box-choose .choose ul li
    {
        width: 100%;
    }
}
.box-choose .choose .item
{
    margin-top: 10px;
    padding: 40px 5%;

    -webkit-transition: all .4s;
            transition: all .4s;
    text-align: center;

    background-color: #fff;
}
@media (max-width: 767px)
{
    .box-choose .choose .item
    {
        padding: 20px 14px;
    }
}
.box-choose .choose .item:before
{
    font-family: 'iconfont' !important;
    font-size: 38px;
    line-height: 78px;

    display: block;

    width: 90px;
    height: 90px;
    margin: 0 auto;

    content: '\e6f2';
    text-align: center;

    color: #fff;
    border: 6px solid #b6e4b6;
    border-radius: 50%;
    background-color: #117919;
}
@media (max-width: 767px)
{
    .box-choose .choose .item:before
    {
        font-size: 30px;
        line-height: 52px;

        width: 60px;
        height: 60px;

        border-width: 4px;
    }
}
.box-choose .choose .item-jinkou:before
{
    content: '\e658';
}
.box-choose .choose .item-zhiliang:before
{
    content: '\e640';
}
.box-choose .choose .item-chanpin:before
{
    content: '\e683';
}
.box-choose .choose .item-fuwu:before
{
    content: '\e63d';
}
.box-choose .choose .item b
{
    font-size: 22px;
    line-height: 30px;

    display: block;

    max-width: 140px;
    margin: 0 auto;
    margin-top: 30px;

    color: #117919;
}
@media (max-width: 991px)
{
    .box-choose .choose .item b
    {
        font-size: 20px;
    }
}
@media (max-width: 767px)
{
    .box-choose .choose .item b
    {
        font-size: 16px;

        max-width: 100%;
        margin-top: 10px;
    }
}
.box-choose .choose .item p
{
    font-size: 16px;
    line-height: 1.875;

    margin: 10px 0 0 0;
}
@media (max-width: 991px)
{
    .box-choose .choose .item p
    {
        font-size: 14px;
    }
}
.box-choose .choose .item:hover
{
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
}
.box-choose .choose .item:hover:before
{
    -webkit-animation: swing 1s 0s ease both;
            animation: swing 1s 0s ease both;
}
.box-case,
.wrap-case
{
    background-color: #f7faf7;
}
.box-case .case-top,
.wrap-case .case-top
{
    margin-top: 30px;
}
@media (max-width: 991px)
{
    .box-case .case-top,
    .wrap-case .case-top
    {
        margin: 0;
    }
}
.box-case .case-top .text,
.wrap-case .case-top .text
{
    margin-top: 30px;
    padding-right: 5%;
}
@media (max-width: 991px)
{
    .box-case .case-top .text,
    .wrap-case .case-top .text
    {
        padding-right: 0;
    }
}
.box-case .case-top .text .date,
.wrap-case .case-top .text .date
{
    font-size: 20px;
    line-height: 30px;

    display: block;

    color: #117919;
}
.box-case .case-top .text b,
.wrap-case .case-top .text b
{
    font-size: 30px;
    font-weight: normal;
    line-height: 46px;

    display: -webkit-box;
    overflow: hidden;

    /* max-width: 360px; */
    max-height: 92px;
    margin: 40px 0 30px;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
@media (max-width: 1199px)
{
    .box-case .case-top .text b,
    .wrap-case .case-top .text b
    {
        font-size: 28px;
        line-height: 34px;

        max-height: 68px;
        margin: 20px 0;
    }
}
@media (max-width: 991px)
{
    .box-case .case-top .text b,
    .wrap-case .case-top .text b
    {
        font-size: 24px;
    }
}
@media (max-width: 767px)
{
    .box-case .case-top .text b,
    .wrap-case .case-top .text b
    {
        font-size: 18px;

        margin: 10px 0;
    }
}
.box-case .case-top .text p,
.wrap-case .case-top .text p
{
    font-size: 16px;
    line-height: 30px;

    display: -webkit-box;
    overflow: hidden;

    max-height: 120px;
    margin: 0;

    color: #666;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
@media (max-width: 991px)
{
    .box-case .case-top .text p,
    .wrap-case .case-top .text p
    {
        font-size: 14px;

        display: -webkit-box;
        overflow: hidden;

        max-height: 60px;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}
.box-case .case-top .text .more,
.wrap-case .case-top .text .more
{
    line-height: 30px;

    display: inline-block;

    margin-top: 30px;

    color: #117919;
    border-bottom: 1px solid #117919;
}
@media (max-width: 991px)
{
    .box-case .case-top .text .more,
    .wrap-case .case-top .text .more
    {
        margin-top: 10px;
    }
}
.box-case .case-top .text .more:after,
.wrap-case .case-top .text .more:after
{
    font-family: 'iconfont' !important;

    margin-left: 10px;

    content: '\e625';
}
.box-case .case-top .pic,
.wrap-case .case-top .pic
{
    margin-top: 30px;
}
.box-case .case-top .pic .img-box,
.wrap-case .case-top .pic .img-box
{
    padding-bottom: 62.31884058%;
}
.box-case .case-top .pic .img-box img,
.wrap-case .case-top .pic .img-box img
{
    -webkit-transition: all 1s;
            transition: all 1s;
}
.box-case .case-top:hover .text b,
.wrap-case .case-top:hover .text b
{
    color: #117919;
}
.box-case .case-top:hover .pic .img-box img,
.wrap-case .case-top:hover .pic .img-box img
{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.box-case .case,
.wrap-case .case
{
    margin-top: 10px;
}
.box-case .case .item,
.wrap-case .case .item
{
    display: block;

    margin-top: 30px;
}
@media (max-width: 767px)
{
    .box-case .case .item,
    .wrap-case .case .item
    {
        margin-top: 20px;
    }
}
.box-case .case .item .img-box,
.wrap-case .case .item .img-box
{
    padding-bottom: 62.31884058%;
}
.box-case .case .item .img-box img,
.wrap-case .case .item .img-box img
{
    -webkit-transition: all 1s;
            transition: all 1s;
}
.box-case .case .item .note,
.wrap-case .case .item .note
{
    padding-top: 20px;
}
.box-case .case .item .date,
.wrap-case .case .item .date
{
    font-size: 16px;
    line-height: 30px;

    display: block;

    color: #117919;
}
@media (max-width: 767px)
{
    .box-case .case .item .date,
    .wrap-case .case .item .date
    {
        font-size: 14px;
    }
}
.box-case .case .item b,
.wrap-case .case .item b
{
    font-size: 22px;
    font-weight: normal;
    line-height: 30px;

    display: -webkit-box;
    overflow: hidden;

    height: 30px;
    margin: 10px 0;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media (max-width: 991px)
{
    .box-case .case .item b,
    .wrap-case .case .item b
    {
        font-size: 18px;
    }
}
@media (max-width: 767px)
{
    .box-case .case .item b,
    .wrap-case .case .item b
    {
        font-size: 16px;
    }
}
.box-case .case .item p,
.wrap-case .case .item p
{
    font-size: 16px;
    line-height: 30px;

    display: -webkit-box;
    overflow: hidden;

    height: 60px;
    margin: 0;

    color: #666;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
@media (max-width: 991px)
{
    .box-case .case .item p,
    .wrap-case .case .item p
    {
        font-size: 14px;
        line-height: 24px;

        height: 48px;
    }
}
.box-case .case .item:hover .img-box img,
.wrap-case .case .item:hover .img-box img
{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.box-case .case .item:hover b,
.wrap-case .case .item:hover b
{
    color: #117919;
}
.box-case .case-more,
.wrap-case .case-more
{
    margin-top: 30px;

    text-align: center;
}
.box-case .case-more a,
.wrap-case .case-more a
{
    line-height: 50px;

    display: inline-block;

    padding: 0 30px;

    -webkit-transition: all .2s;
            transition: all .2s;

    color: #fff;
    border-radius: 2px;
    background-color: #117919;
}
.box-case .case-more a:after,
.wrap-case .case-more a:after
{
    font-family: 'iconfont' !important;

    margin-left: 30px;

    content: '\e625';
}
.box-case .case-more a:hover,
.wrap-case .case-more a:hover
{
    background-color: #07580d;
}
.wrap-case
{
    background-color: #fff;
}
.box-news .news .item
{
    font-size: 0;

    margin-top: 30px;
}
.box-news .news .item .pic,
.box-news .news .item .note
{
    font-size: 14px;

    display: inline-block;

    vertical-align: middle;
}
.box-news .news .item .pic
{
    width: 48%;
}
.box-news .news .item .pic .img-box
{
    padding-bottom: 62.12121212%;
}
.box-news .news .item .pic .img-box img
{
    -webkit-transition: all 1s;
            transition: all 1s;
}
.box-news .news .item .note
{
    width: 52%;
    padding-left: 30px;
}
@media (max-width: 991px)
{
    .box-news .news .item .note
    {
        padding-left: 10px;
    }
}
.box-news .news .item .note .date
{
    font-size: 16px;
    line-height: 30px;

    display: block;

    color: #117919;
}
.box-news .news .item .note b
{
    font-size: 22px;
    font-weight: normal;
    line-height: 30px;

    display: -webkit-box;
    overflow: hidden;

    height: 30px;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media (max-width: 991px)
{
    .box-news .news .item .note b
    {
        font-size: 18px;
        line-height: 24px;

        height: 24px;
    }
}
@media (max-width: 767px)
{
    .box-news .news .item .note b
    {
        font-size: 16px;
        line-height: 20px;

        height: 20px;
    }
}
.box-news .news .item .note a
{
    display: block;
}
.box-news .news .item .note p
{
    font-size: 16px;
    line-height: 30px;

    display: -webkit-box;
    overflow: hidden;

    height: 60px;
    margin: 10px 0 0 0;

    color: #666;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
@media (max-width: 991px)
{
    .box-news .news .item .note p
    {
        font-size: 14px;
        line-height: 24px;

        display: -webkit-box;
        overflow: hidden;

        height: 24px;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }
}
.box-news .news .item .note a.more
{
    display: inline-block;

    margin-top: 20px;

    color: #117919;
}
@media (max-width: 991px)
{
    .box-news .news .item .note a.more
    {
        margin-top: 10px;
    }
}
.box-news .news .item .note a.more:after
{
    font-family: 'iconfont' !important;

    margin-left: 10px;

    content: '\e625';
}
.box-news .news .item:hover .img-box img
{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.box-news .news .item:hover b
{
    color: #117919;
}
.box-news .news-more
{
    margin-top: 30px;

    text-align: center;
}
.box-news .news-more a
{
    line-height: 50px;

    display: inline-block;

    padding: 0 30px;

    -webkit-transition: all .2s;
            transition: all .2s;

    color: #fff;
    border-radius: 2px;
    background-color: #117919;
}
.box-news .news-more a:after
{
    font-family: 'iconfont' !important;

    margin-left: 30px;

    content: '\e625';
}
.box-news .news-more a:hover
{
    background-color: #07580d;
}
.box-partner
{
    background-color: #e6ede6;
}
.box-partner .slick-partner
{
    font-size: 0;

    margin-top: 60px;
}
@media (max-width: 991px)
{
    .box-partner .slick-partner
    {
        margin-top: 30px;
    }
}
.box-partner .slick-partner .slick-slide .item
{
    margin-top: -1px;
    margin-left: -1px;

    border: 1px solid #e1e6e1;
}
.box-partner .slick-partner .slick-slide .item .img-box
{
    padding-bottom: 46.42857143%;
}
.box-partner .slick-partner .slick-dots
{
    margin-top: 30px;

    text-align: center;
}
.box-partner .slick-partner .slick-dots li
{
    display: inline-block;

    width: 10px;
    height: 10px;
    margin: 0 8px;

    border: 1px solid #117919;
    border-radius: 50%;
}
@media (max-width: 991px)
{
    .box-partner .slick-partner .slick-dots li
    {
        margin: 0 4px;
    }
}
.box-partner .slick-partner .slick-dots li button
{
    display: none;
}
.box-partner .slick-partner .slick-dots li.slick-active
{
    background-color: #117919;
}
.footer
{
    font-size: 0;

    position: relative;

    overflow: hidden;

    color: #bbbfbb;
    background-color: #232523;
}
@media (max-width: 991px)
{
    .footer
    {
        padding-bottom: 55px;
    }
}
.footer .foot-top
{
    padding: 80px 0;

    border-bottom: 1px solid #303330;
}
@media (max-width: 991px)
{
    .footer .foot-top
    {
        padding: 20px 0;
    }
}
.footer .foot-top .foot-logo
{
    display: inline-block;

    vertical-align: middle;
}
.footer .foot-top img
{
    display: inline-block;

    max-height: 80px;
}
@media (max-width: 1199px)
{
    .footer .foot-top img
    {
        display: none;
    }
}
.footer .foot-top .foot-nav
{
    display: inline-block;
    float: right;

    margin-top: 20px;

    vertical-align: top;
}
@media (max-width: 1199px)
{
    .footer .foot-top .foot-nav
    {
        display: block;
        float: none;
    }
}
.footer .foot-top .foot-nav ul
{
    margin: 0 -20px;
}
@media (max-width: 991px)
{
    .footer .foot-top .foot-nav ul
    {
        margin: 0 -10px;
    }
}
.footer .foot-top .foot-nav ul li
{
    display: inline-block;

    vertical-align: top;
}
.footer .foot-top .foot-nav ul li a
{
    font-size: 14px;
    line-height: 30px;

    display: block;

    padding: 0 20px;
}
@media (max-width: 991px)
{
    .footer .foot-top .foot-nav ul li a
    {
        padding: 0 10px;
    }
}
.footer .foot-top .foot-nav ul li a:hover
{
    text-decoration: underline;

    color: #fff;
}
.footer .foot
{
    padding: 60px 0;

    border-bottom: 1px solid #303330;
}
@media (max-width: 1199px)
{
    .footer .foot
    {
        display: none;
    }
}
.footer .foot > ul
{
    font-size: 0;
}
@media (min-width: 1200px)
{
    .footer .foot > ul
    {
        padding: 0;

        text-align: justify;
        text-justify: distribute-all-lines;
    }
    .footer .foot > ul:after
    {
        display: inline-block;
        overflow: hidden;

        width: 100%;
        height: 0;
        margin: 0;

        content: '';
    }
}
@media (min-width: 1200px) and (max-width: 991px)
{
    .footer .foot > ul:after
    {
        display: none;
    }
}
.footer .foot > ul > li
{
    font-size: 14px;

    display: inline-block;

    text-align: left;
    vertical-align: top;
}
.footer .foot .item-text p
{
    font-size: 12px;
    line-height: 2;
}
.footer .foot .item-text b
{
    font-size: 34px;
    line-height: 1.17647059;

    display: block;

    max-width: 240px;

    color: #117919;
}
.footer .foot .item:before
{
    font-family: 'iconfont' !important;
    font-size: 20px;
    line-height: 46px;

    display: block;

    width: 46px;
    height: 46px;
    margin-bottom: 20px;

    content: '\e686';
    text-align: center;

    color: #117919;
    border: 1px solid #117919;
    border-radius: 50%;
}
.footer .foot .item-email:before
{
    content: '\e619';
}
.footer .foot .item-address:before
{
    content: '\e64e';
}
.footer .foot .item p
{
    line-height: 24px;

    margin: 0;
}
.footer .foot .item b
{
    font-size: 20px;
    line-height: 30px;
}
.footer .foot .item a:hover
{
    text-decoration: underline;

    color: #117919;
}
.footer .copyright
{
    font-size: 14px;
    line-height: 30px;

    padding: 50px 0;

    text-align: center;
}
@media (max-width: 1199px)
{
    .footer .copyright
    {
        line-height: 24px;

        position: relative;

        padding: 10px 0;
    }
}
.footer .copyright a.sitemap
{
    display: inline-block;
    float: left;
}
.footer .copyright p
{
    line-height: 30px;

    margin: 0;
}
.footer .copyright p a
{
    -webkit-transition: all .4s;
            transition: all .4s;
}
.footer .copyright p a:hover
{
    text-decoration: underline;

    color: #fff;
}
.wrapper
{
    overflow: hidden;
}
.wrap
{
    overflow: hidden;

    padding: 70px 0;
}
@media (max-width: 991px)
{
    .wrap
    {
        padding: 50px 0;
    }
}
.title-in
{
    text-align: center;
}
.title-in:after
{
    display: block;

    width: 60px;
    height: 4px;
    margin: 0 auto;
    margin-top: 20px;

    content: '';

    background-color: #333;
}
.title-in h2
{
    font-size: 32px;
    font-weight: bold;
    line-height: 1;

    margin: 0;

    color: #117919;
}
@media (max-width: 1470px)
{
    .title-in h2
    {
        font-size: 28px;
    }
}
@media (max-width: 991px)
{
    .title-in h2
    {
        font-size: 24px;
    }
}
@media (max-width: 767px)
{
    .title-in h2
    {
        font-size: 20px;
    }
}
.wrap-sidenav
{
    padding: 0 20px 30px 20px;

    background-color: #f5fcf6;
}
.wrap-sidenav .title-sidenav
{
    padding: 30px 0;
}
@media (max-width: 991px)
{
    .wrap-sidenav .title-sidenav
    {
        padding: 10px 0;
    }
}
.wrap-sidenav .title-sidenav h2
{
    font-size: 22px;
    line-height: 30px;

    margin: 0;
}
.wrap-sidenav .title-sidenav h2:before
{
    font-family: 'iconfont' !important;
    font-size: 24px;

    float: left;

    margin-right: 8px;

    content: '\e655';
}
.wrap-sidenav .sidenav > ul
{
    margin: 0;
}
.wrap-sidenav .sidenav > ul > li
{
    margin-bottom: 10px;

    background-color: #f7f9fa;
}
@media (max-width: 991px)
{
    .wrap-sidenav .sidenav > ul > li
    {
        display: inline-block;

        vertical-align: top;
    }
}
.wrap-sidenav .sidenav > ul > li > a
{
    font-size: 16px;
    line-height: 30px;

    position: relative;

    display: block;

    padding: 15px 40px;

    color: #fff;
    border-radius: 6px;
    background-color: #51a858;
}
@media (max-width: 991px)
{
    .wrap-sidenav .sidenav > ul > li > a
    {
        font-size: 15px;
    }
}
@media (max-width: 767px)
{
    .wrap-sidenav .sidenav > ul > li > a
    {
        font-size: 15px;
    }
}
.wrap-sidenav .sidenav > ul > li > a:after
{
    font-size: 12px;
    font-weight: normal;
    line-height: 16px;

    position: absolute;
    top: 21px;
    right: 14px;

    width: 18px;
    height: 18px;

    content: '+';
    text-align: center;

    color: #117919;
    border-radius: 50%;
    background-color: #fff;
}
.wrap-sidenav .sidenav > ul > li > a:before
{
    font-family: 'iconfont' !important;
    line-height: 60px;

    position: absolute;
    top: 0;
    left: 16px;

    content: '\e647';
}
.wrap-sidenav .sidenav > ul > li > ul
{
    display: none;

    margin-top: 10px;
    padding: 20px 0;

    border-radius: 6px;
    background-color: #73bf79;
}
@media (max-width: 991px)
{
    .wrap-sidenav .sidenav > ul > li > ul
    {
        padding: 10px 0;
    }
}
@media (max-width: 991px)
{
    .wrap-sidenav .sidenav > ul > li > ul > li
    {
        display: inline-block;

        vertical-align: top;
    }
}
.wrap-sidenav .sidenav > ul > li > ul > li > a
{
    font-size: 16px;
    line-height: 26px;

    position: relative;

    display: block;

    padding: 10px 30px;

    color: #fff;
}
@media (max-width: 991px)
{
    .wrap-sidenav .sidenav > ul > li > ul > li > a
    {
        font-size: 14px;

        padding: 0 10px 0 20px;
    }
}
.wrap-sidenav .sidenav > ul > li > ul > li > a:before
{
    line-height: 46px;

    position: absolute;
    top: 0;
    left: 16px;

    content: '-';
}
@media (max-width: 991px)
{
    .wrap-sidenav .sidenav > ul > li > ul > li > a:before
    {
        line-height: 26px;

        left: 6px;
    }
}
.wrap-sidenav .sidenav > ul > li > ul > li.active > a
{
    text-decoration: underline;
}
.wrap-sidenav .sidenav > ul > li.active
{
    display: block;
}
.wrap-sidenav .sidenav > ul > li.active > ul
{
    display: block;
}
.wrap-sidenav .sidenav > ul > li.active > a,
.wrap-sidenav .sidenav > ul > li:hover > a
{
    color: #fff;
    background-color: #117919;
}
.wrap-sidenav .sidenav > ul > li.active > a:after,
.wrap-sidenav .sidenav > ul > li:hover > a:after
{
    content: '-';
}
.wrap-about .about,
.wrap-culture .about,
.wrap-about .culture,
.wrap-culture .culture
{
    margin-top: 40px;
}
.wrap-about .about p,
.wrap-culture .about p,
.wrap-about .culture p,
.wrap-culture .culture p
{
    font-size: 16px;
    line-height: 1.875;

    margin: 0;

    color: #666;
}
@media (max-width: 991px)
{
    .wrap-about .about p,
    .wrap-culture .about p,
    .wrap-about .culture p,
    .wrap-culture .culture p
    {
        font-size: 16px;
    }
}
@media (max-width: 767px)
{
    .wrap-about .about p,
    .wrap-culture .about p,
    .wrap-about .culture p,
    .wrap-culture .culture p
    {
        font-size: 14px;
    }
}
.wrap-about .about img,
.wrap-culture .about img,
.wrap-about .culture img,
.wrap-culture .culture img
{
    max-width: 100%;
    height: auto !important;
}
.wrap-service
{
    background-color: #f7f7f7;
}
.wrap-service .service
{
    margin-top: 30px;

    text-align: center;
}
.wrap-service .service img
{
    max-width: 100%;
}
.wrap-service .service.service-xs
{
    display: none;
}
@media (max-width: 991px)
{
    .wrap-service .service.service-xs
    {
        display: block;
    }
    .wrap-service .service.service-lg
    {
        display: none;
    }
}
.wrap-sidenav-about
{
    position: relative;
    z-index: 2;

    background-color: #3ba644;
}
@media (max-width: 767px)
{
    .wrap-sidenav-about
    {
        margin: 0;
    }
}
.wrap-sidenav-about .sidenav-about
{
    font-size: 0;

    text-align: center;
}
.wrap-sidenav-about .sidenav-about > ul
{
    font-size: 0;

    display: inline-block;

    margin: 0 -90px;

    border-left: 1px solid #75c77c;
}
@media (max-width: 1199px)
{
    .wrap-sidenav-about .sidenav-about > ul
    {
        margin: 0 -20px;
    }
}
@media (max-width: 767px)
{
    .wrap-sidenav-about .sidenav-about > ul
    {
        margin: 0 -10px;

        border: none;
    }
}
.wrap-sidenav-about .sidenav-about > ul > li
{
    display: inline-block;

    vertical-align: top;

    border-right: 1px solid #75c77c;
}
@media (max-width: 767px)
{
    .wrap-sidenav-about .sidenav-about > ul > li
    {
        border: none;
    }
}
.wrap-sidenav-about .sidenav-about > ul > li a
{
    font-size: 16px;
    line-height: 30px;

    position: relative;

    display: block;

    padding: 15px 90px;

    -webkit-transition: all .2s;
            transition: all .2s;

    color: #fff;
}
@media (max-width: 1199px)
{
    .wrap-sidenav-about .sidenav-about > ul > li a
    {
        padding: 15px 20px;
    }
}
@media (max-width: 767px)
{
    .wrap-sidenav-about .sidenav-about > ul > li a
    {
        font-size: 14px;

        padding: 10px;
    }
}
.wrap-sidenav-about .sidenav-about > ul > li a:after
{
    font-weight: normal;

    position: absolute;
    bottom: -7px;
    left: 50%;

    display: inline-block;

    width: 0;
    height: 0;
    margin-left: -4px;

    content: '';

    opacity: 0;
    border-width: 7px 7px 0 7px;
    border-style: solid;
    border-color: #117919 transparent transparent transparent;
}
.wrap-sidenav-about .sidenav-about > ul > li.active a,
.wrap-sidenav-about .sidenav-about > ul > li:hover a
{
    color: #fff;
    background-color: #117919;
}
.wrap-sidenav-about .sidenav-about > ul > li.active a:after,
.wrap-sidenav-about .sidenav-about > ul > li:hover a:after
{
    opacity: 1;
}
.wrap-honor .honor
{
    margin-top: 30px;
}
@media (max-width: 991px)
{
    .wrap-honor .honor
    {
        margin-top: 20px;
    }
}
.wrap-honor .honor .item
{
    display: block;

    margin-top: 30px;
    padding: 20px;

    text-align: center;

    color: inherit;
    background-color: #f2f5f2;
}
@media (max-width: 991px)
{
    .wrap-honor .honor .item
    {
        padding: 10px;
    }
}
@media (max-width: 767px)
{
    .wrap-honor .honor .item
    {
        margin-top: 16px;
    }
}
.wrap-honor .honor .item .img-box
{
    padding-bottom: 139.53488372%;
}
.wrap-honor .honor .item .img-box img
{
    -webkit-transition: all 1s;
            transition: all 1s;
}
.wrap-honor .honor .item:hover .img-box img
{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.wrap-video .info .item
{
    display: block;

    margin-top: 30px;
}
.wrap-video .info .item .pic
{
    position: relative;

    padding: 20px;

    background-color: #f7f7f7;
}
@media (max-width: 991px)
{
    .wrap-video .info .item .pic
    {
        padding: 10px;
    }
}
.wrap-video .info .item .pic .img-box
{
    padding-bottom: 57.77777778%;
}
.wrap-video .info .item .pic .img-box img
{
    -webkit-transition: all 1s;
            transition: all 1s;
}
.wrap-video .info .item .pic .play
{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;

    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);

    color: #fff;
}
.wrap-video .info .item .pic .play:before
{
    font-family: 'iconfont' !important;
    font-size: 60px;
    line-height: 1;

    display: block;

    content: '\e650';
    cursor: pointer;
    -webkit-transition: all .6s;
            transition: all .6s;
}
@media (max-width: 991px)
{
    .wrap-video .info .item .pic .play:before
    {
        font-size: 40px;
    }
}
.wrap-video .info .item p
{
    font-size: 22px;
    line-height: 30px;

    display: -webkit-box;
    overflow: hidden;

    height: 30px;
    margin: 20px 0 0 0;
    padding: 0 20px;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media (max-width: 991px)
{
    .wrap-video .info .item p
    {
        font-size: 18px;
    }
}
@media (max-width: 767px)
{
    .wrap-video .info .item p
    {
        font-size: 16px;

        margin-top: 10px;
    }
}
.wrap-video .info .item:hover .pic .img-box img
{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.wrap-video .info .item:hover .pic .play
{
    color: #117919;
}
.wrap-video .info .item:hover p
{
    color: #117919;
}
.wrap-case-show .title-case-show,
.wrap-news-show .title-case-show,
.wrap-case-show .title-news-show,
.wrap-news-show .title-news-show
{
    text-align: center;
}
.wrap-case-show .title-case-show:after,
.wrap-news-show .title-case-show:after,
.wrap-case-show .title-news-show:after,
.wrap-news-show .title-news-show:after
{
    display: block;

    width: 60px;
    height: 4px;
    margin: 0 auto;
    margin-top: 30px;

    content: '';

    background-color: #117919;
}
.wrap-case-show .title-case-show h1,
.wrap-news-show .title-case-show h1,
.wrap-case-show .title-news-show h1,
.wrap-news-show .title-news-show h1
{
    font-size: 48px;
    font-weight: bold;
    line-height: 1;

    margin: 0;
}
@media (max-width: 1470px)
{
    .wrap-case-show .title-case-show h1,
    .wrap-news-show .title-case-show h1,
    .wrap-case-show .title-news-show h1,
    .wrap-news-show .title-news-show h1
    {
        font-size: 38px;
    }
}
@media (max-width: 991px)
{
    .wrap-case-show .title-case-show h1,
    .wrap-news-show .title-case-show h1,
    .wrap-case-show .title-news-show h1,
    .wrap-news-show .title-news-show h1
    {
        font-size: 28px;
    }
}
@media (max-width: 767px)
{
    .wrap-case-show .title-case-show h1,
    .wrap-news-show .title-case-show h1,
    .wrap-case-show .title-news-show h1,
    .wrap-news-show .title-news-show h1
    {
        font-size: 24px;
    }
}
.wrap-case-show .title-case-show p,
.wrap-news-show .title-case-show p,
.wrap-case-show .title-news-show p,
.wrap-news-show .title-news-show p
{
    font-size: 24px;
    line-height: 1.66666667;

    margin: 14px 0 0 0;

    color: #117919;
}
@media (max-width: 991px)
{
    .wrap-case-show .title-case-show p,
    .wrap-news-show .title-case-show p,
    .wrap-case-show .title-news-show p,
    .wrap-news-show .title-news-show p
    {
        font-size: 18px;
    }
}
@media (max-width: 767px)
{
    .wrap-case-show .title-case-show p,
    .wrap-news-show .title-case-show p,
    .wrap-case-show .title-news-show p,
    .wrap-news-show .title-news-show p
    {
        font-size: 14px;
    }
}
.wrap-case-show .case-show,
.wrap-news-show .case-show,
.wrap-case-show .news-show,
.wrap-news-show .news-show
{
    margin-top: 30px;
}
.wrap-case-show .case-show p,
.wrap-news-show .case-show p,
.wrap-case-show .news-show p,
.wrap-news-show .news-show p
{
    font-size: 16px;
    line-height: 1.875;

    margin: 0;

    color: #666;
}
@media (max-width: 991px)
{
    .wrap-case-show .case-show p,
    .wrap-news-show .case-show p,
    .wrap-case-show .news-show p,
    .wrap-news-show .news-show p
    {
        font-size: 15px;
    }
}
@media (max-width: 767px)
{
    .wrap-case-show .case-show p,
    .wrap-news-show .case-show p,
    .wrap-case-show .news-show p,
    .wrap-news-show .news-show p
    {
        font-size: 14px;
    }
}
.wrap-case-show .case-show img,
.wrap-news-show .case-show img,
.wrap-case-show .news-show img,
.wrap-news-show .news-show img
{
    max-width: 100%;
    height: auto !important;
}
.wrap-case-show .prev-next,
.wrap-news-show .prev-next
{
    margin-top: 40px;
    padding-top: 30px;

    border-top: 1px solid #d7d9d7;
}
.wrap-case-show .prev-next a,
.wrap-news-show .prev-next a
{
    font-size: 16px;
    line-height: 30px;

    display: block;
    display: -webkit-box;
    overflow: hidden;

    height: 30px;
    margin-top: 10px;

    color: #666;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media (max-width: 767px)
{
    .wrap-case-show .prev-next a,
    .wrap-news-show .prev-next a
    {
        font-size: 14px;
    }
}
.wrap-case-show .prev-next a:hover,
.wrap-news-show .prev-next a:hover
{
    color: #117919;
}
.wrap-news .news
{
    margin-top: 20px;
}
.wrap-news .news .itembox
{
    border-bottom: 1px solid #d7d9d7;
}
.wrap-news .news .item
{
    font-size: 0;

    padding: 40px 0;
}
.wrap-news .news .item .pic,
.wrap-news .news .item .note
{
    font-size: 14px;

    display: inline-block;

    vertical-align: middle;
}
.wrap-news .news .item .pic
{
    width: 48%;
}
.wrap-news .news .item .pic .img-box
{
    padding-bottom: 62.12121212%;
}
.wrap-news .news .item .pic .img-box img
{
    -webkit-transition: all 1s;
            transition: all 1s;
}
.wrap-news .news .item .note
{
    width: 52%;
    padding-left: 30px;
}
@media (max-width: 991px)
{
    .wrap-news .news .item .note
    {
        padding-left: 10px;
    }
}
.wrap-news .news .item .note .date
{
    font-size: 16px;
    line-height: 30px;

    display: block;

    color: #117919;
}
.wrap-news .news .item .note b
{
    font-size: 22px;
    font-weight: normal;
    line-height: 30px;

    display: -webkit-box;
    overflow: hidden;

    height: 30px;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media (max-width: 991px)
{
    .wrap-news .news .item .note b
    {
        font-size: 18px;
        line-height: 24px;

        height: 24px;
    }
}
@media (max-width: 767px)
{
    .wrap-news .news .item .note b
    {
        font-size: 16px;
        line-height: 20px;

        height: 20px;
    }
}
.wrap-news .news .item .note a
{
    display: block;
}
.wrap-news .news .item .note p
{
    font-size: 16px;
    line-height: 30px;

    display: -webkit-box;
    overflow: hidden;

    height: 60px;
    margin: 10px 0 0 0;

    color: #666;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
@media (max-width: 991px)
{
    .wrap-news .news .item .note p
    {
        font-size: 14px;
        line-height: 24px;

        display: -webkit-box;
        overflow: hidden;

        height: 24px;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }
}
.wrap-news .news .item .note a.more
{
    display: inline-block;

    margin-top: 20px;

    color: #117919;
}
@media (max-width: 991px)
{
    .wrap-news .news .item .note a.more
    {
        margin-top: 10px;
    }
}
.wrap-news .news .item .note a.more:after
{
    font-family: 'iconfont' !important;

    margin-left: 10px;

    content: '\e625';
}
.wrap-news .news .item:hover .img-box img
{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.wrap-news .news .item:hover b
{
    color: #117919;
}
.wrap-solution-overview .text
{
    margin-top: 30px;
}
.wrap-solution-overview .text p
{
    font-size: 16px;
    line-height: 1.875;

    margin: 0;

    color: #666;
}
@media (max-width: 1470px)
{
    .wrap-solution-overview .text p
    {
        font-size: 15px;
        line-height: 1.73333333;
    }
}
@media (max-width: 991px)
{
    .wrap-solution-overview .text p
    {
        font-size: 14px;
    }
}
.wrap-solution-overview .text img
{
    max-width: 100%;
    height: auto !important;
}
.wrap-solution-overview .pic .item
{
    margin-top: 30px;
}
.wrap-solution-overview .pic .item .img-box
{
    padding-bottom: 62.22222222%;
}
.wrap-solution-principle
{
    background-color: #f7f7f7;
}
.wrap-solution-principle .solution-principle
{
    font-size: 0;

    margin-top: 40px;

    background-color: #fff;
}
.wrap-solution-principle .solution-principle > ul
{
    overflow: hidden;
}
.wrap-solution-principle .solution-principle > ul > li:nth-child(2n) .pic
{
    right: 50%;
}
@media (max-width: 767px)
{
    .wrap-solution-principle .solution-principle > ul > li:nth-child(2n) .pic
    {
        right: 0;
    }
}
.wrap-solution-principle .solution-principle > ul > li:nth-child(2n) .text
{
    left: 50%;
}
@media (max-width: 767px)
{
    .wrap-solution-principle .solution-principle > ul > li:nth-child(2n) .text
    {
        left: 0;
    }
}
.wrap-solution-principle .solution-principle .text,
.wrap-solution-principle .solution-principle .pic
{
    font-size: 14px;

    position: relative;

    display: inline-block;

    width: 50%;

    vertical-align: middle;
}
@media (max-width: 767px)
{
    .wrap-solution-principle .solution-principle .text,
    .wrap-solution-principle .solution-principle .pic
    {
        display: block;

        width: 100%;
    }
}
.wrap-solution-principle .solution-principle .pic img
{
    max-width: 100%;
}
.wrap-solution-principle .solution-principle .text
{
    padding: 20px 5%;
}
.wrap-solution-principle .solution-principle .text .title-principle h2
{
    font-size: 22px;
    line-height: 1.4;

    margin: 0;
}
@media (max-width: 991px)
{
    .wrap-solution-principle .solution-principle .text .title-principle h2
    {
        font-size: 18px;
    }
}
@media (max-width: 767px)
{
    .wrap-solution-principle .solution-principle .text .title-principle h2
    {
        font-size: 16px;
    }
}
.wrap-solution-principle .solution-principle .text .note
{
    margin-top: 20px;
}
.wrap-solution-principle .solution-principle .text .note p
{
    font-size: 16px;
    line-height: 1.875;

    margin: 0;

    color: #666;
}
@media (max-width: 1470px)
{
    .wrap-solution-principle .solution-principle .text .note p
    {
        font-size: 15px;
        line-height: 1.73333333;
    }
}
@media (max-width: 991px)
{
    .wrap-solution-principle .solution-principle .text .note p
    {
        font-size: 14px;
    }
}
.wrap-solution-way .solution-way
{
    margin-top: 30px;
}
.wrap-solution-way .solution-way > ul
{
    overflow: hidden;
}
.wrap-solution-way .solution-way > ul > li:nth-child(2n) .item
{
    background-color: #f2f2f2;
}
.wrap-solution-way .solution-way > ul > li:nth-child(2n) .pic
{
    left: 50%;
}
@media (max-width: 767px)
{
    .wrap-solution-way .solution-way > ul > li:nth-child(2n) .pic
    {
        left: 0;
    }
}
.wrap-solution-way .solution-way > ul > li:nth-child(2n) .text
{
    right: 50%;

    padding-right: 40px;
    padding-left: 15px;
}
@media (max-width: 1470px)
{
    .wrap-solution-way .solution-way > ul > li:nth-child(2n) .text
    {
        padding-right: 15px;
    }
}
@media (max-width: 767px)
{
    .wrap-solution-way .solution-way > ul > li:nth-child(2n) .text
    {
        right: 0;
    }
}
.wrap-solution-way .solution-way .item
{
    font-size: 0;

    margin: 0 -15px;
    padding: 50px;

    background-color: #f7f7f7;
}
@media (max-width: 991px)
{
    .wrap-solution-way .solution-way .item
    {
        padding: 30px 15px;
    }
}
@media (max-width: 767px)
{
    .wrap-solution-way .solution-way .item
    {
        padding: 15px 10px;
    }
}
.wrap-solution-way .solution-way .item .text,
.wrap-solution-way .solution-way .item .pic
{
    font-size: 14px;

    position: relative;

    display: inline-block;

    width: 50%;
    padding: 0 15px;

    vertical-align: top;
}
@media (max-width: 767px)
{
    .wrap-solution-way .solution-way .item .text,
    .wrap-solution-way .solution-way .item .pic
    {
        display: block;

        width: 100%;
    }
}
.wrap-solution-way .solution-way .item .pic img
{
    max-width: 100%;
}
.wrap-solution-way .solution-way .item .text
{
    padding-top: 30px;
    padding-left: 40px;
}
@media (max-width: 1470px)
{
    .wrap-solution-way .solution-way .item .text
    {
        padding-left: 15px;
    }
}
@media (max-width: 767px)
{
    .wrap-solution-way .solution-way .item .text
    {
        padding-top: 20px;
    }
}
.wrap-solution-way .solution-way .item .text .title-way h2
{
    font-size: 22px;
    line-height: 1.4;

    margin: 0;
}
@media (max-width: 991px)
{
    .wrap-solution-way .solution-way .item .text .title-way h2
    {
        font-size: 18px;
    }
}
@media (max-width: 767px)
{
    .wrap-solution-way .solution-way .item .text .title-way h2
    {
        font-size: 16px;
    }
}
.wrap-solution-way .solution-way .item .text .note
{
    margin-top: 20px;
}
@media (max-width: 991px)
{
    .wrap-solution-way .solution-way .item .text .note
    {
        margin-top: 10px;
    }
}
.wrap-solution-way .solution-way .item .text .note p
{
    font-size: 16px;
    line-height: 1.875;

    margin: 0;

    color: #666;
}
@media (max-width: 1470px)
{
    .wrap-solution-way .solution-way .item .text .note p
    {
        font-size: 15px;
        line-height: 1.73333333;
    }
}
@media (max-width: 991px)
{
    .wrap-solution-way .solution-way .item .text .note p
    {
        font-size: 14px;
    }
}
.wrap-solution-industry .solution-industry
{
    margin-top: 30px;
}
.wrap-solution-industry .solution-industry img
{
    max-width: 100%;
}
.wrap-solution-product,
.wrap-solution-case
{
    background-color: #f7f7f7;
}
.wrap-solution-product .slick-solution-product,
.wrap-solution-case .slick-solution-product,
.wrap-solution-product .slick-solution-case,
.wrap-solution-case .slick-solution-case
{
    margin: 0 -15px;
    margin-top: 30px;
}
@media (max-width: 991px)
{
    .wrap-solution-product .slick-solution-product,
    .wrap-solution-case .slick-solution-product,
    .wrap-solution-product .slick-solution-case,
    .wrap-solution-case .slick-solution-case
    {
        margin: 0 -8px;
        margin-top: 20px;
    }
}
.wrap-solution-product .slick-solution-product .slick-slide,
.wrap-solution-case .slick-solution-product .slick-slide,
.wrap-solution-product .slick-solution-case .slick-slide,
.wrap-solution-case .slick-solution-case .slick-slide
{
    padding: 0 15px;
}
@media (max-width: 991px)
{
    .wrap-solution-product .slick-solution-product .slick-slide,
    .wrap-solution-case .slick-solution-product .slick-slide,
    .wrap-solution-product .slick-solution-case .slick-slide,
    .wrap-solution-case .slick-solution-case .slick-slide
    {
        padding: 0 8px;
    }
}
.wrap-solution-product .slick-solution-product .item,
.wrap-solution-case .slick-solution-product .item,
.wrap-solution-product .slick-solution-case .item,
.wrap-solution-case .slick-solution-case .item
{
    display: block;

    text-align: center;
}
.wrap-solution-product .slick-solution-product .item .img-box img,
.wrap-solution-case .slick-solution-product .item .img-box img,
.wrap-solution-product .slick-solution-case .item .img-box img,
.wrap-solution-case .slick-solution-case .item .img-box img
{
    -webkit-transition: all 1s;
            transition: all 1s;
}
.wrap-solution-product .slick-solution-product .item p,
.wrap-solution-case .slick-solution-product .item p,
.wrap-solution-product .slick-solution-case .item p,
.wrap-solution-case .slick-solution-case .item p
{
    font-size: 22px;
    line-height: 30px;

    display: -webkit-box;
    overflow: hidden;

    height: 30px;
    margin: 14px 0 0 0;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media (max-width: 991px)
{
    .wrap-solution-product .slick-solution-product .item p,
    .wrap-solution-case .slick-solution-product .item p,
    .wrap-solution-product .slick-solution-case .item p,
    .wrap-solution-case .slick-solution-case .item p
    {
        font-size: 18px;
    }
}
@media (max-width: 767px)
{
    .wrap-solution-product .slick-solution-product .item p,
    .wrap-solution-case .slick-solution-product .item p,
    .wrap-solution-product .slick-solution-case .item p,
    .wrap-solution-case .slick-solution-case .item p
    {
        font-size: 16px;
    }
}
.wrap-solution-product .slick-solution-product .item span.more,
.wrap-solution-case .slick-solution-product .item span.more,
.wrap-solution-product .slick-solution-case .item span.more,
.wrap-solution-case .slick-solution-case .item span.more
{
    line-height: 30px;

    display: block;

    color: #117919;
}
.wrap-solution-product .slick-solution-product .item span.more:after,
.wrap-solution-case .slick-solution-product .item span.more:after,
.wrap-solution-product .slick-solution-case .item span.more:after,
.wrap-solution-case .slick-solution-case .item span.more:after
{
    font-family: 'iconfont' !important;

    margin-left: 10px;

    content: '\e625';
}
.wrap-solution-product .slick-solution-product .item:hover .img-box img,
.wrap-solution-case .slick-solution-product .item:hover .img-box img,
.wrap-solution-product .slick-solution-case .item:hover .img-box img,
.wrap-solution-case .slick-solution-case .item:hover .img-box img
{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.wrap-solution-product .slick-solution-product .item:hover p,
.wrap-solution-case .slick-solution-product .item:hover p,
.wrap-solution-product .slick-solution-case .item:hover p,
.wrap-solution-case .slick-solution-case .item:hover p
{
    color: #117919;
}
.wrap-solution-case
{
    background-color: #fff;
}
.wrap-solution-case .slick-solution-case .item
{
    text-align: left;
}
.wrap-solution-case .slick-solution-case .item .img-box
{
    padding-bottom: 62.31884058%;
}
.wrap-solution-case .slick-solution-case .item p
{
    color: #117919;
}
.wrap-product .title-in
{
    margin-top: 40px;
}
.wrap-product .title-in p
{
    margin-top: 30px;
}
.wrap-product .title-product
{
    padding: 15px 0;

    border-bottom: 3px solid #458f68;
}
.wrap-product .title-product h2
{
    font-size: 22px;
    line-height: 30px;

    margin: 0;
}
@media (max-width: 991px)
{
    .wrap-product .title-product h2
    {
        font-size: 18px;
    }
}
.wrap-product .product
{
    margin-top: 20px;
}
@media (max-width: 991px)
{
    .wrap-product .product
    {
        margin: 0;
    }
}
.wrap-product .product .row
{
    font-size: 0;
}
.wrap-product .product .itembox
{
    font-size: 14px;

    display: inline-block;
    float: none;

    vertical-align: top;
}
.wrap-product .product .item
{
    display: block;

    margin-top: 30px;

    text-align: center;

    color: inherit;
}
.wrap-product .product .item .pic
{
    border: 5px solid #f2f2f2;
}
.wrap-product .product .item .img-box img
{
    -webkit-transition: all 1s;
            transition: all 1s;
}
.wrap-product .product .item .note
{
    margin-top: 14px;
}
.wrap-product .product .item .note p
{
    font-size: 18px;
    line-height: 30px;
	height: 30px;
    margin: 0;
	overflow: hidden;        
	    display: -webkit-box;
	    -webkit-line-clamp: 1;
	    -webkit-box-orient: vertical;
}
@media (max-width: 1470px)
{
    .wrap-product .product .item .note p
    {
        font-size: 16px;
    }
}
@media (max-width: 1350px)
{
    .wrap-product .product .item .note p
    {
       
		line-height: 24px;
		height: 48px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
    }
}
@media (max-width: 767px)
{
    .wrap-product .product .item .note p
    {
        font-size: 14px;
		
    }
}
.wrap-product .product .item:hover .img-box img
{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.wrap-product .product .item:hover .note p
{
    color: #117919;
}
.wrap-product-show .carousel-wrap .carousel
{
    font-size: 0;

    position: relative;

    padding-right: 30px;
}
@media (max-width: 991px)
{
    .wrap-product-show .carousel-wrap .carousel
    {
        margin-top: 30px;
        padding-right: 0;
    }
}
.wrap-product-show .carousel-wrap .carousel .slider-for
{
    position: relative;

    border: 5px solid #f2f2f2;
}
.wrap-product-show .carousel-wrap .carousel .slick-arrow
{
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 0;

    width: 30px;
    margin: 0;
    padding: 0;

    cursor: pointer;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;

    border: none;
    border-radius: 50%;
    outline: none;
    background: none;
}
@media (max-width: 991px)
{
    .wrap-product-show .carousel-wrap .carousel .slick-arrow
    {
        left: -10px;
    }
}
.wrap-product-show .carousel-wrap .carousel .slick-arrow:before
{
    font-family: 'iconfont' !important;
    font-size: 30px;
    line-height: 30px;

    display: block;

    content: '\eb60';
    -webkit-transition: all .4s;
            transition: all .4s;
    text-align: center;

    color: #333;
}
.wrap-product-show .carousel-wrap .carousel .slick-arrow.slick-next
{
    right: 0;
    left: auto;

    text-align: right;
}
@media (max-width: 991px)
{
    .wrap-product-show .carousel-wrap .carousel .slick-arrow.slick-next
    {
        right: -10px;
    }
}
.wrap-product-show .carousel-wrap .carousel .slick-arrow.slick-next:before
{
    content: '\e625';
}
.wrap-product-show .carousel-wrap .carousel .slick-arrow:hover:before
{
    color: #117919;
}
.wrap-product-show .carousel-wrap .info-box
{
    position: relative;
}
.wrap-product-show .carousel-wrap .info-box .title-info
{
    margin-top: 20px;
    padding-bottom: 20px;

    border-bottom: 4px solid #d9d9d9;
}
.wrap-product-show .carousel-wrap .info-box .title-info h1
{
    font-size: 22px;
    font-weight: bold;
    line-height: 1.33333333;

    display: block;

    margin: 10px 0 0 0;
}
@media (max-width: 1350px)
{
    .wrap-product-show .carousel-wrap .info-box .title-info h1
    {
        font-size: 26px;
    }
}
@media (max-width: 767px)
{
    .wrap-product-show .carousel-wrap .info-box .title-info h1
    {
        font-size: 20px;
    }
}
.wrap-product-show .carousel-wrap .info-box .slider-nav
{
    margin: 0 -6px;
    margin-top: 40px;
}
.wrap-product-show .carousel-wrap .info-box .slider-nav .slick-slide
{
    padding: 0 6px;

    outline: none;
}
.wrap-product-show .carousel-wrap .info-box .slider-nav .item
{
    position: relative;

    border: 1px solid #f2f2f2;
}
.wrap-product-show .carousel-wrap .info-box .slider-nav .slick-current .item
{
    border-color: #117919;
}
.wrap-product-show .carousel-wrap .info-box .text
{
    margin-top: 30px;
}
.wrap-product-show .carousel-wrap .info-box .text p
{
    font-size: 16px;
    line-height: 1.875;

    margin: 0;

    color: #666;
}
@media (max-width: 767px)
{
    .wrap-product-show .carousel-wrap .info-box .text p
    {
        font-size: 14px;
    }
}
.wrap-product-show .carousel-wrap .info-box .prev-next
{
    margin-top: 40px;
}
@media (max-width: 991px)
{
    .wrap-product-show .carousel-wrap .info-box .prev-next
    {
        margin-top: 20px;
    }
}
.wrap-product-show .carousel-wrap .info-box .prev-next ul
{
    font-size: 0;

    margin: 0 -4px;
}
.wrap-product-show .carousel-wrap .info-box .prev-next ul li
{
    font-size: 14px;

    display: inline-block;

    margin-top: 10px;
    padding: 0 4px;

    text-align: center;
}
.wrap-product-show .carousel-wrap .info-box .prev-next ul li a
{
    font-size: 14px;
    line-height: 30px;

    display: block;

    padding: 10px 20px;

    -webkit-transition: all .2s;
            transition: all .2s;

    color: #fff;
    background-color: #333;
}
.wrap-product-show .carousel-wrap .info-box .prev-next ul li a:hover
{
    background-color: #117919;
}
.wrap-product-show .carousel-wrap .info-box .prev-next ul li.prev a:before
{
    font-family: 'iconfont' !important;

    margin-right: 40px;

    content: '\eb60';
}
.wrap-product-show .carousel-wrap .info-box .prev-next ul li.next a
{
    background-color: #117919;
}
.wrap-product-show .carousel-wrap .info-box .prev-next ul li.next a:after
{
    font-family: 'iconfont' !important;

    margin-left: 40px;

    content: '\e625';
}
.wrap-product-show .title-parameter,
.wrap-product-show .title-relate
{
    padding: 0 40px;

    background-color: #ededed;
}
@media (max-width: 991px)
{
    .wrap-product-show .title-parameter,
    .wrap-product-show .title-relate
    {
        padding: 0 10px;
    }
}
.wrap-product-show .title-parameter h2,
.wrap-product-show .title-relate h2
{
    font-size: 22px;
    line-height: 54px;

    margin: 0;
}
@media (max-width: 991px)
{
    .wrap-product-show .title-parameter h2,
    .wrap-product-show .title-relate h2
    {
        font-size: 18px;
    }
}
.wrap-product-show .parameter
{
    padding-top: 60px;
}
.wrap-product-show .parameter .parameter-sort
{
    border-bottom: 1px solid #e1e3e5;
}
.wrap-product-show .parameter .parameter-sort ul li
{
    display: inline-block;

    vertical-align: top;
}
.wrap-product-show .parameter .parameter-sort ul li a
{
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;

    display: inline-block;

    padding: 10px 20px;
}
.wrap-product-show .parameter .parameter-sort ul li.active a
{
    color: #117919;
    border-bottom: 3px solid #117919;
}
.wrap-product-show .parameter .text
{
    padding: 30px 20px;

    background-color: #fff;
}
.wrap-product-show .parameter .text p
{
    font-size: 16px;
    line-height: 1.575;

    margin: 0;

    color: #666;
}
@media (max-width: 991px)
{
    .wrap-product-show .parameter .text p
    {
        font-size: 15px;
    }
}
@media (max-width: 767px)
{
    .wrap-product-show .parameter .text p
    {
        font-size: 14px;
    }
}
.wrap-product-show .parameter .text img
{
    max-width: 100%;
    height: auto !important;
}
.wrap-product-show .parameter .table-box
{
    overflow: auto;

    width: 100%;
    max-width: 100%;
}
.wrap-product-show .parameter table
{
    width: auto;
    min-width: 50%;
    max-width: 100%;
	margin: 0 auto;
   margin-top: 30px;
    padding: 0;

    border-spacing: 0;
    border-collapse: collapse;
}
.wrap-product-show .parameter table tr,
.wrap-product-show .parameter table td
{
    font-size: 14px;

    width: auto !important;
    height: auto !important;

    vertical-align: middle;

    color: #71737a;
}
@media (max-width: 767px)
{
    .wrap-product-show .parameter table tr,
    .wrap-product-show .parameter table td
    {
        font-size: 14px;
    }
}
.wrap-product-show .parameter table td
{
    padding: 10px !important;

    border: 1px solid #dcdcdc !important;
}
@media (max-width: 767px)
{
    .wrap-product-show .parameter table td
    {
        padding: 6px !important;
    }
}
.wrap-product-show .parameter table tr p,
.wrap-product-show .parameter table tr span
{
    margin: 0 !important;
    padding: 0 !important;

    background: none !important;
}
.wrap-product-show .product-relate .slick-product-relate
{
    margin: 0 -15px;
    margin-top: 30px;
}
.wrap-product-show .product-relate .slick-slide
{
    padding: 0 15px;
}
.wrap-product-show .product-relate .item
{
    display: block;

    text-align: center;

    color: inherit;
}
.wrap-product-show .product-relate .item .pic
{
    border: 5px solid #f2f2f2;
}
.wrap-product-show .product-relate .item .img-box img
{
    -webkit-transition: all 1s;
            transition: all 1s;
}
.wrap-product-show .product-relate .item .note
{
    margin-top: 14px;
}
.wrap-product-show .product-relate .item .note p
{
    font-size: 22px;
    line-height: 30px;

    margin: 0;
}
@media (max-width: 991px)
{
    .wrap-product-show .product-relate .item .note p
    {
        font-size: 18px;
    }
}
@media (max-width: 767px)
{
    .wrap-product-show .product-relate .item .note p
    {
        font-size: 16px;
    }
}
.wrap-product-show .product-relate .item:hover .img-box img
{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.wrap-product-show .product-relate .item:hover .note p
{
    color: #117919;
}
.wrap-contact .contact
{
    display: table;

    width: 100%;

    background: url(../images/contact_bg.jpg) no-repeat center;
    background-size: cover;
}
@media (max-width: 991px)
{
    .wrap-contact .contact
    {
        display: block;
    }
}
.wrap-contact .contact .text,
.wrap-contact .contact .message
{
    display: table-cell;

    width: 50%;
    padding: 50px 5%;

    vertical-align: top;

    color: #fff;
}
@media (max-width: 991px)
{
    .wrap-contact .contact .text,
    .wrap-contact .contact .message
    {
        display: block;

        width: 100%;
        padding: 30px 15px;
    }
}
.wrap-contact .contact .text
{
    border-right: 1px solid rgba(255, 255, 255, .3);
}
@media (max-width: 991px)
{
    .wrap-contact .contact .text
    {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .3);
    }
}
.wrap-contact .contact .text .title-contact:after
{
    display: block;

    width: 60px;
    height: 4px;
    margin-top: 30px;

    content: '';

    background-color: #fff;
}
@media (max-width: 767px)
{
    .wrap-contact .contact .text .title-contact:after
    {
        margin-top: 10px;
    }
}
.wrap-contact .contact .text .title-contact h1
{
    font-size: 36px;
    font-weight: bold;
    line-height: 1.4;

    margin: 0;
}
@media (max-width: 1470px)
{
    .wrap-contact .contact .text .title-contact h1
    {
        font-size: 30px;
    }
}
@media (max-width: 991px)
{
    .wrap-contact .contact .text .title-contact h1
    {
        font-size: 24px;
    }
}
@media (max-width: 767px)
{
    .wrap-contact .contact .text .title-contact h1
    {
        font-size: 20px;
    }
}
.wrap-contact .contact .text .title-contact h2
{
    font-size: 24px;
    line-height: 1.4;

    margin: 10px 0 0 0;
}
@media (max-width: 1470px)
{
    .wrap-contact .contact .text .title-contact h2
    {
        font-size: 20px;
    }
}
@media (max-width: 767px)
{
    .wrap-contact .contact .text .title-contact h2
    {
        font-size: 16px;
    }
}
.wrap-contact .contact .text .item
{
    position: relative;

    margin-top: 30px;
    padding-left: 56px;
}
@media (max-width: 767px)
{
    .wrap-contact .contact .text .item
    {
        margin-top: 14px;
    }
}
.wrap-contact .contact .text .item:before
{
    font-family: 'iconfont' !important;
    font-size: 20px;
    line-height: 46px;

    position: absolute;
    top: 0;
    left: 0;

    width: 46px;
    height: 46px;

    content: '\e686';
    text-align: center;

    border: 1px solid #fff;
    border-radius: 50%;
}
.wrap-contact .contact .text .item-email:before
{
    content: '\e619';
}
.wrap-contact .contact .text .item-fax:before
{
    content: '\e931';
}
.wrap-contact .contact .text .item p
{
    font-size: 18px;
    line-height: 1.8;

    margin: 0;
}
@media (max-width: 991px)
{
    .wrap-contact .contact .text .item p
    {
        font-size: 16px;
    }
}
@media (max-width: 767px)
{
    .wrap-contact .contact .text .item p
    {
        font-size: 14px;
    }
}
.wrap-contact .contact .text .item b
{
    font-size: 20px;
    font-weight: normal;
}
@media (max-width: 991px)
{
    .wrap-contact .contact .text .item b
    {
        font-size: 18px;
    }
}
@media (max-width: 767px)
{
    .wrap-contact .contact .text .item b
    {
        font-size: 16px;
    }
}
.wrap-contact .contact .text .item a:hover
{
    text-decoration: underline;
}
.wrap-contact .contact .message .title-message h2
{
    font-size: 36px;
    line-height: 1.27777778;

    max-width: 410px;
    margin: 0;
}
@media (max-width: 1470px)
{
    .wrap-contact .contact .message .title-message h2
    {
        font-size: 30px;
    }
}
@media (max-width: 991px)
{
    .wrap-contact .contact .message .title-message h2
    {
        font-size: 26px;
    }
}
@media (max-width: 767px)
{
    .wrap-contact .contact .message .title-message h2
    {
        font-size: 20px;
    }
}
.wrap-contact .contact .message .item
{
    margin-top: 30px;
}
.wrap-contact .contact .message .item p
{
    font-size: 18px;
    line-height: 30px;
}
@media (max-width: 767px)
{
    .wrap-contact .contact .message .item p
    {
        font-size: 16px;
        line-height: 20px;

        margin: 0;
    }
}
.wrap-contact .contact .message input,
.wrap-contact .contact .message textarea
{
    font-size: 16px;
    line-height: 30px;

    width: 100%;
    margin-top: 20px;
    padding: 10px 20px;

    resize: vertical;

    color: #666;
    border-radius: 5px;
    background: #fff;
}
@media (max-width: 991px)
{
    .wrap-contact .contact .message input,
    .wrap-contact .contact .message textarea
    {
        font-size: 15px;
    }
}
@media (max-width: 767px)
{
    .wrap-contact .contact .message input,
    .wrap-contact .contact .message textarea
    {
        font-size: 14px;
    }
}
.wrap-contact .contact .message textarea
{
    padding: 10px 20px;

    border: 1px solid #cacbcc;
}
.wrap-contact .contact .message input::-webkit-input-placeholder,
.wrap-contact .contact .message textarea::-webkit-input-placeholder
{
    color: #999;
}
.wrap-contact .contact .message input:-o-placeholder,
.wrap-contact .contact .message textarea:-o-placeholder
{
    color: #999;
}
.wrap-contact .contact .message input::-moz-placeholder,
.wrap-contact .contact .message textarea::-moz-placeholder
{
    color: #999;
}
.wrap-contact .contact .message input:-ms-input-placeholder,
.wrap-contact .contact .message textarea:-ms-input-placeholder
{
    color: #999;
}
.wrap-contact .contact .message input:focus::-webkit-input-placeholder,
.wrap-contact .contact .message textarea:focus::-webkit-input-placeholder
{
    color: #c5c5c5;
}
.wrap-contact .contact .message input:focus::-o-placeholder,
.wrap-contact .contact .message textarea:focus::-o-placeholder
{
    color: #c5c5c5;
}
.wrap-contact .contact .message input:focus::-moz-placeholder,
.wrap-contact .contact .message textarea:focus::-moz-placeholder
{
    color: #c5c5c5;
}
.wrap-contact .contact .message input:focus::-ms-input-placeholder,
.wrap-contact .contact .message textarea:focus::-ms-input-placeholder
{
    color: #c5c5c5;
}
.wrap-contact .contact .message .submit
{
    font-size: 14px;
    line-height: 50px;

    margin-top: 40px;
    padding: 0 60px;

    -webkit-transition: all .2s;
            transition: all .2s;

    color: #333;
    border-radius: 0;
    outline: none;
    background-color: #fff;
}
@media (max-width: 991px)
{
    .wrap-contact .contact .message .submit
    {
        line-height: 50px;

        margin-top: 20px;
        padding: 0 40px;
    }
}
.wrap-contact .contact .message .submit:hover
{
    color: #fff;
    background-color: #07580d;
}
.wrap-contact .map
{
    height: 420px;
    margin-top: 60px;
}
@media (max-width: 991px)
{
    .wrap-contact .map
    {
        height: 340px;
    }
}
.wrap-contact .map .map-content
{
    height: 100%;
}
.wrap-sitemap .title-sitemap:after
{
    display: block;

    width: 60px;
    height: 4px;
    margin-top: 14px;

    content: '';

    background-color: #117919;
}
.wrap-sitemap .title-sitemap h2
{
    font-size: 42px;
    font-weight: bold;
    line-height: 1.4;

    display: block;

    margin: 0;

    color: #2e3642;
}
@media (max-width: 1199px)
{
    .wrap-sitemap .title-sitemap h2
    {
        font-size: 36px;
    }
}
@media (max-width: 991px)
{
    .wrap-sitemap .title-sitemap h2
    {
        font-size: 30px;
    }
}
@media (max-width: 767px)
{
    .wrap-sitemap .title-sitemap h2
    {
        font-size: 20px;
    }
}
.wrap-sitemap .sitemap
{
    margin-top: 20px;
}
.wrap-sitemap .sitemap > ul > li > a
{
    font-size: 16px;
    line-height: 30px;

    display: inline-block;

    min-width: 260px;
    margin-top: 20px;
    padding: 15px 30px;

    -webkit-transition: all .2s;
            transition: all .2s;
    text-align: center;
    vertical-align: top;

    background-color: #ededed;
}
@media (max-width: 991px)
{
    .wrap-sitemap .sitemap > ul > li > a
    {
        font-size: 16px;
        line-height: 24px;

        min-width: 140px;
        padding: 10px;
    }
}
.wrap-sitemap .sitemap > ul > li > a:hover
{
    color: #fff;
    background-color: #07580d;
}
.wrap-sitemap .sitemap > ul > li > ul
{
    display: inline-block;

    vertical-align: top;
}
@media (max-width: 991px)
{
    .wrap-sitemap .sitemap > ul > li > ul
    {
        display: block;

        margin: 0 -8px;
    }
}
.wrap-sitemap .sitemap > ul > li > ul > li
{
    display: inline-block;

    margin-top: 20px;
    margin-left: 20px;

    vertical-align: top;
}
@media (max-width: 991px)
{
    .wrap-sitemap .sitemap > ul > li > ul > li
    {
        margin-left: 0;
        padding: 0 8px;
    }
}
.wrap-sitemap .sitemap > ul > li > ul > li > a
{
    font-size: 16px;
    line-height: 30px;

    display: inline-block;

    padding: 15px 15px;

    -webkit-transition: all .2s;
            transition: all .2s;
    text-align: center;

    color: #666;
    background-color: #f7f7f7;
}
@media (max-width: 991px)
{
    .wrap-sitemap .sitemap > ul > li > ul > li > a
    {
        font-size: 16px;
        line-height: 24px;

        min-width: 140px;
        padding: 10px;
    }
}
.wrap-sitemap .sitemap > ul > li > ul > li > a:hover
{
    color: #fff;
    background-color: #117919;
}
nav
{
    text-align: center;
}
.pagination
{
    margin: 70px 0 0 0;
    padding: 0;
}
@media (max-width: 991px)
{
    .pagination
    {
        margin-top: 50px;
    }
}
.pagination li.prev a span:before,
.pagination li.next a span:before
{
    font-family: 'iconfont' !important;

    content: '\eb60';
}
.pagination li.next a span:before
{
    content: '\e625';
}
.pagination li a
{
    line-height: 46px;

    display: block;

    width: 46px;
    height: 46px;
    margin: 0 6px;
    padding: 0;

    -webkit-transition: all .2s;
            transition: all .2s;
    text-align: center;

    color: #666;
    border: none;
    border: 1px solid #d9d9d9;
}
@media (max-width: 991px)
{
    .pagination li a
    {
        line-height: 30px;

        width: 30px;
        height: 30px;
    }
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover
{
    color: #fff;
    background-color: #117919;
}
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover
{
    color: #fff;
    background-color: #117919;
}
.slick-arrow
{
    line-height: 48px;

    position: absolute;
    z-index: 9;
    z-index: 8;
    top: 50%;
    left: 3%;

    overflow: hidden;

    width: 48px;
    height: 48px;
    padding: 0;

    cursor: pointer;
    -webkit-transition: all .4s;
            transition: all .4s;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);

    color: #fff;
    border: none;
    border: 1px solid #fff;
    border-radius: 50%;
    outline: none;
    background: none;
}
@media (max-width: 1199px)
{
    .slick-arrow
    {
        line-height: 40px;

        left: -10px;

        width: 40px;
        height: 40px;
    }
}
.slick-arrow:before
{
    font-family: 'iconfont' !important;
    font-size: 16px;

    display: inline-block;

    content: '\e9b7';
}
.slick-arrow.slick-next
{
    right: 3%;
    left: auto;
}
@media (max-width: 1199px)
{
    .slick-arrow.slick-next
    {
        right: -10px;
    }
}
.slick-arrow.slick-next:before
{
    content: '\e610';
}
.slick-arrow:hover
{
    color: #fff;
    border-color: rgba(17, 121, 25, .8);
    background-color: rgba(17, 121, 25, .8);
}
.stuck
{
    position: fixed;
    z-index: 9;
    top: 0;

    width: 100%;
    height: 60px !important;

    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
@media (max-width: 1199px)
{
    .stuck
    {
        height: 70px !important;
    }
}
