﻿/**
 * style.less
 * 层叠样式表
 */
.ff {
    font-family: 'iconfont' !important;
}
@font-face {
    font-family: 'Segoe UI';
    font-weight: bold;
    font-style: normal;

    src: url('../font/SegoeUI-Bold.eot');
    src: local('Segoe UI Bold'), local('SegoeUI-Bold'), url('../font/SegoeUI-Bold.eot') format('embedded-opentype'), url('../font/SegoeUI-Bold.woff2') format('woff2'), url('../font/SegoeUI-Bold.woff') format('woff'), url('../font/SegoeUI-Bold.ttf') format('truetype'), url('http://www.cetroc.com/tpl/en_cetroc/assets/fonts/SegoeUI-Bold.svg') format('svg');
    font-display: swap;
}
@font-face {
    font-family: 'Segoe UI';
    font-weight: normal;
    font-style: normal;

    src: url('../font/SegoeUI.eot');
    src: local('Segoe UI'), local('SegoeUI'), url('../font/SegoeUI.eot') format('embedded-opentype'), url('../font/SegoeUI.woff2') format('woff2'), url('../font/SegoeUI.woff') format('woff'), url('../font/SegoeUI.ttf') format('truetype'), url('http://www.cetroc.com/tpl/en_cetroc/assets/fonts/SegoeUI.svg') format('svg');
    font-display: swap;
}
body {
    font-family: 'Segoe UI', Arial, 'Helvetica Neue', Helvetica, 'Microsoft YaHei', 'WenQuanYi Micro Hei', 'Heiti SC', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    font-size: 14px;
    font-weight: normal;

    color: #222;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-arrow {
    font-size: 20px;
    line-height: 40px;

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

    display: block;
    overflow: hidden;

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

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

    opacity: 1;
    color: #666;
    border: none;
    border: 1px solid #bfbfbf;
    border-radius: 50%;
    outline: none;
    background: none;
    background: rgba(255, 255, 255, .37);
}
@media (max-width: 991px) {
    .slick-arrow {
        font-size: 20px;
        line-height: 30px;

        left: 0;

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

    display: block;

    content: '\e62b';
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.slick-arrow.slick-next {
    right: -3%;
    left: auto;
}
@media (max-width: 991px) {
    .slick-arrow.slick-next {
        right: 0;
    }
}
.slick-arrow.slick-next:before {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.slick-arrow:hover {
    color: #fff;
    border-color: #005b4c;
    background-color: #005b4c;
}
.header {
    position: fixed;
    z-index: 10;

    width: 100%;
    height: 130px;

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

    border-bottom: 4px solid #005b4c;
    background-color: #fff;
}
@media (max-width: 1199px) {
    .header {
        height: 70px;
    }
}
.header .logo {
    display: inline-block;
    float: left;

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

    -webkit-transition: all .6s;
    transition: all .6s;
}
@media (max-width: 1199px) {
    .header .logo {
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    .header .logo {
        height: 20px;
        margin-top: 25px;
    }
}
.header .logo img {
    height: 100%;
}
.header #google_translate_element {
    display: inline-block;
    float: right;

    margin-top: 50px;

    -webkit-transition: all .4s;
    transition: all .4s;
}
.header .language {
    display: inline-block;
    float: right;

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

    -webkit-transition: all .4s;
    transition: all .4s;
    text-align: center;
}
@media (max-width: 1199px) {
    .header .language {
        margin-top: 20px;
        margin-right: 20px;
        margin-left: 0;
    }
}
.header .language a {
    display: inline-block;

    width: 30px;
    height: 30px;

    background: url(../image/language.png) no-repeat;
    background-size: cover;
}
.header .language a.en {
    background-position: -30px 0;
}
.header .pc-search {
    position: relative;

    display: inline-block;
    float: right;

    width: 200px;
    margin-top: 44px;

    -webkit-transition: all .4s;
    transition: all .4s;
}
@media (max-width: 1199px) {
    .header .pc-search {
        display: none;
    }
}
.header .pc-search input {
    font-size: 16px;
    line-height: 24px;

    width: 100%;
    padding: 8px 50px 8px 10px;

    border: 1px solid #dbdbdb;
    border-radius: 30px;
}
.header .pc-search input::-webkit-input-placeholder,
.header .pc-search textarea::-webkit-input-placeholder {
    color: #c5c5c5;
}
.header .pc-search input:-o-placeholder,
.header .pc-search textarea:-o-placeholder {
    color: #c5c5c5;
}
.header .pc-search input::-moz-placeholder,
.header .pc-search textarea::-moz-placeholder {
    color: #c5c5c5;
}
.header .pc-search input:-ms-input-placeholder,
.header .pc-search textarea:-ms-input-placeholder {
    color: #c5c5c5;
}
.header .pc-search input:focus::-webkit-input-placeholder,
.header .pc-search textarea:focus::-webkit-input-placeholder {
    color: #eee;
}
.header .pc-search input:focus::-o-placeholder,
.header .pc-search textarea:focus::-o-placeholder {
    color: #eee;
}
.header .pc-search input:focus::-moz-placeholder,
.header .pc-search textarea:focus::-moz-placeholder {
    color: #eee;
}
.header .pc-search input:focus::-ms-input-placeholder,
.header .pc-search textarea:focus::-ms-input-placeholder {
    color: #eee;
}
.header .pc-search .submit {
    font-size: 20px;
    line-height: 30px;

    position: absolute;
    top: 6px;
    right: 6px;

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

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

    color: #fff;
    border-radius: 30px;
    background-color: #005b4c;
}
.header .pc-search .submit:before {
    font-family: 'iconfont' !important;

    content: '\e66a';
}
.header .pc-search .submit:hover {
    background-color: #014338;
}
.header .cart {
    line-height: 120px;

    position: relative;

    float: right;

    -webkit-transition: all .4s;
    transition: all .4s;
}
@media (max-width: 1470px) {
    .header .cart {
        margin-left: 10px;
    }
}
@media (max-width: 1199px) {
    .header .cart {
        line-height: 70px;

        margin-right: 10px;
    }
}
@media (max-width: 767px) {
    .header .cart {
        margin-left: 0;
    }
}
.header .cart a {
    font-size: 16px;

    display: block;

    color: #666;
}
@media (max-width: 767px) {
    .header .cart a {
        font-size: 0;
    }
}
.header .cart a:before {
    font-family: 'iconfont' !important;
    font-size: 24px;

    float: left;

    margin-right: 10px;

    content: '\e601';
}
@media (max-width: 767px) {
    .header .cart a:before {
        margin: 0;
    }
}
.header .cart a:hover {
    color: #005b4c;
}
.header .cart a:hover:before {
    color: #005b4c;
}
@media (max-width: 767px) {
    .header .cart a span {
        font-size: 14px;
    }
}
.header .cart a span:before {
    content: '(';
}
.header .cart a span:after {
    content: ')';
}
.header .nav-collapse {
    position: relative;

    display: none;
    float: right;

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

    cursor: pointer;

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

        margin-top: 15px;
    }
    .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: #999;
}
.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: #999;
}
.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);
}
.header .header-nav {
    clear: both;
}
@media (min-width: 1200px) {
    .header .nav {
        display: inline-block;

        -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: rgba(51, 51, 51, .9);
    }
    .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 15px;
    }
}
.header .nav.left-100 {
    left: -100%;
}
.header .nav.left-200 {
    left: -200%;
}
@media (min-width: 1200px) {
    .header .nav .nav-list1 li a {
        white-space: nowrap;
    }
    .header .nav .nav-list1>li {
        display: inline-block;

        vertical-align: top;
    }
    .header .nav .nav-list1>li>a {
        font-family: Impact, Arial;
        font-size: 18px;
        font-weight: normal;
        line-height: 130px;

        position: relative;

        display: inline-block;
        overflow: hidden;

        padding: 0 22px;

        -webkit-transition: all .4s;
        transition: all .4s;
        vertical-align: middle;
        text-transform: uppercase;
    }
    .header .nav .nav-list1>li:hover>a,
    .header .nav .nav-list1>li.active>a {
        text-decoration: underline;

        color: #005b4c;
    }
    .header .nav .nav-list1 .nav-list2 {
        position: absolute;
        z-index: 50;
        top: 100%;

        display: none;

        padding: 20px 0;

        text-align: center;
        text-align: left;

        color: #333;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    }
    .header .nav .nav-list1 .nav-list2 li {
        display: block;

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

        padding: 0 30px;
    }
    .header .nav .nav-list1 .nav-list2 li a:hover {
        text-decoration: underline;

        color: #005b4c;
    }
}
@media (min-width: 1200px) and (max-width: 1720px) {
    .header .nav .nav-list1>li>a {
        padding: 0 16px;
    }
}
@media (min-width: 1200px) and (max-width: 1560px) {
    .header .nav .nav-list1>li>a {
        font-size: 16px;
        padding: 0 7px;
    }
}
@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;
    }
}
.header .nav .nav-list2 {
    display: none;
}
@media (max-width: 1199px) {
    .header .nav .nav-list3 a {
        line-height: 30px;

        padding: 0 10px;
    }
    .header .nav .nav-list3 a:before {
        margin-right: 4px;

        content: '-';
    }
    .header .nav .nav-list3 .nav-list4 a {
        display: inline-block;

        padding: 0 4px;

        opacity: .6;
    }
    .header .nav .nav-list3 .nav-list4 a:before {
        content: '·';
    }
}
.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: rgba(51, 51, 51, .9);
    }
    .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: 16px;

        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-product,
.header .nav-3 .nav-product {
    display: none;
}
.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: 24px;
    line-height: 36px;

    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 li,
.header .nav-3 .content ul li {
    line-height: 30px;

    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: 16px;
    line-height: 2.2;

    display: block;
}
.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: 16px;
        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 {
    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, .9);
}
.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%;

    background: none;
}
@media (min-width: 768px) {
    .header .search-box .input-text {
        width: 100%;
        padding: 0 50px 0 3%;
    }
}
.header .search-box .input-submit {
    line-height: 36px;

    position: absolute;
    right: 0;
    bottom: 0;

    float: right;

    width: 50px;

    -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;
}
@media (max-width: 360px) {
    .header .search-box.search-xs form .input-text {
        width: 74%;
    }
}
@media (max-width: 767px) {
    .header .search-box.search-xs form .input-text {
        padding-left: 5%;
    }
}
.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: #005b4c;
}
.header .search-lg {
    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;
}
@media (max-width: 1199px) {
    .header .search-lg .search p {
        font-size: 14px;
        line-height: 1.5;

        display: block;
    }
}
.header .search-lg .input-text {
    font-size: 20px;
    line-height: 30px;

    width: 100%;
    height: 60px;
    padding: 0 50px;

    -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-size: 20px;

    content: '\2716';

    color: #fff;
}
.header .find {
    font-size: 20px;
    font-weight: bold;
    line-height: 120px;

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

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

        display: inline-block;

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

    display: inline-block;

    content: '\e660';
    vertical-align: middle;
}
.header .find:hover {
    color: #005b4c;
}
.header .back-btn {
    position: absolute;
    left: 15px;
}
.online-wrap .btn {
    line-height: 36px;

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

    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;
    outline: none;
    background-color: rgba(255, 255, 255, .9);
}
@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: #898989;
}
.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%;
    left: 0;

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

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

    position: relative;

    display: block;

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

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

    border-radius: 6px;
    background-color: rgba(68, 68, 68, .4);
}
.online-wrap .online a:before {
    font-size: 24px;

    color: #fff;
}
@media (min-width: 992px) {
    .online-wrap .online a:hover {
        background-color: rgba(0, 91, 76, .8);
    }
    .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 {
        left: 100%;
    }
}
.online-wrap .online .icon-phone .phone-num {
    position: absolute;
    z-index: -1;
    top: 0;
    left: -300px;

    padding-left: 5px;

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

    color: #fff;
    background-color: #014338;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .12);
}
@media (max-width: 767px) {
    .online-wrap .online .code:before {
        font-size: 22px;
    }
}
.online-wrap .online .code .mask {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 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%;
}
@media (min-width: 992px) {
    .online-wrap-in .online {
        right: 0;
    }
}
.online-wrap .icon-qq:before {
    font-family: 'iconfont' !important;

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

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

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

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

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

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

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

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

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

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

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

    content: '\e614';
}
.xs-online {
    position: fixed;
    z-index: 9;
    bottom: 0;
    left: 0;

    display: none;

    width: 100%;

    background-color: #005b4c;
    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-right: 1px solid #00352c;
    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: inherit;
}
@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;
    line-height: 24px;

    display: block;

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

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

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

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

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

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

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

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

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

    content: '\e751';
}
.banner {
    font-size: 0;

    position: relative;

    overflow: hidden;

    width: 100%;
    padding-top: 130px;
}
@media (max-width: 1199px) {
    .banner {
        padding-top: 70px;
    }
}
.banner .item {
    position: relative;
}
@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%;
    }
}
.banner .slick-dots {
    position: absolute;
    bottom: 20px;

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

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

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

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

    opacity: .7;
    border-radius: 50%;
    background-color: #fff;
}
.banner .slick-dots li.slick-active {
    width: 20px;

    opacity: 1;
    border-radius: 10px;
    background-color: #fff;
}
.banner .slick-dots li button {
    display: none;
}
.banner .slick-arrow {
    left: 4%;
}
@media (max-width: 991px) {
    .banner .slick-arrow {
        left: 12%;
    }
}
.banner .slick-arrow.slick-next {
    right: 4%;
    left: auto;
}
@media (max-width: 991px) {
    .banner .slick-arrow.slick-next {
        right: 12%;
    }
}
.banner .slick-arrow:hover {
    background-color: #005b4c;
}
.banner .num-box {
    font-size: 15px;

    position: absolute;
    bottom: 30px;

    width: 100%;

    text-align: center;
}
@media (max-width: 767px) {
    .banner .num-box {
        bottom: 0;
    }
}
.banner .num-box .prev:before {
    font-family: 'iconfont' !important;
    font-weight: bold;

    display: inline-block;

    margin-top: -2px;
    margin-right: 10px;

    content: '\e9b5';
    vertical-align: middle;
}
.banner .num-box .prev:after {
    margin: 0 10px;

    content: '/';
}
.banner .num-box .next:after {
    font-family: 'iconfont' !important;
    font-weight: bold;

    display: inline-block;

    margin-top: -2px;
    margin-left: 10px;

    content: '\e72f';
    vertical-align: middle;
}
.banner img {
    display: block;

    width: 100%;
}
.banner .banner-pic {
    position: absolute;
    bottom: 30px;

    width: 100%;

    text-align: center;
}
@media (max-width: 991px) {
    .banner .banner-pic {
        bottom: 10px;
    }
}
.banner .banner-pic img {
    display: inline-block;

    width: auto;
    max-width: 100%;
}
@media (max-width: 991px) {
    .banner-in .slickbanner {
        width: 140%;
        max-width: 140%;
        margin-left: -20%;
    }
}
.banner-in .text-in {
    position: absolute;
    top: 60%;

    overflow: hidden;

    width: 100%;

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

    color: #fff;
}
@media (max-width: 991px) {
    .banner-in .text-in {
        top: 64%;
    }
}
.banner-in .text-in b {
    font-size: 54px;
    line-height: 1;

    display: inline-block;

    text-transform: uppercase;
}
@media (max-width: 767px) {
    .banner-in .text-in b {
        font-size: 20px;

        display: block;
    }
}
.banner .slick-current img {
    -webkit-animation: narrow 4s 0s ease both;
    animation: narrow 4s 0s ease both;
}
.banner .banner-arrow {
    font-size: 30px;

    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;

    -webkit-transition: all .4s;
    transition: all .4s;
}
.banner .banner-arrow a:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
@-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: 40px 0;
    }
}
.title h2 {
    font-family: Impact, Arial;
    font-size: 48px;
    font-weight: bold;
    line-height: 50px;

    display: inline-block;

    margin: 0;

    text-transform: uppercase;

    color: #005b4c;
}
@media (max-width: 1350px) {
    .title h2 {
        font-size: 40px;
    }
}
@media (max-width: 991px) {
    .title h2 {
        font-size: 38px;
    }
}
@media (max-width: 767px) {
    .title h2 {
        font-size: 24px;
    }
}
.title a.more {
    font-size: 16px;
    line-height: 50px;

    display: inline-block;
    float: right;

    -webkit-transition: all .2s;
    transition: all .2s;
}
.title a.more:before {
    display: inline-block;

    width: 60px;
    height: 1px;
    margin-right: 10px;

    content: '';
    vertical-align: middle;

    background-color: #737373;
}
@media (max-width: 767px) {
    .title a.more:before {
        width: 30px;
    }
}
.title a.more:hover {
    color: #005b4c;
}
.title a.more:hover:before {
    background-color: #005b4c;
}
.indexcontent {
    position: relative;
    z-index: 2;
}
.box-number .number ul {
    font-size: 0;
}
@media (min-width: 1200px) {
    .box-number .number ul {
        width: 100%;
        padding: 0;

        text-align: justify;
        text-justify: distribute-all-lines;
    }
    .box-number .number ul:after {
        display: inline-block;
        overflow: hidden;

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

        content: '';
    }
}
.box-number .number ul li {
    font-size: 14px;

    display: inline-block;

    max-width: 33.33333333%;

    text-align: left;
    vertical-align: top;
}
@media (max-width: 767px) {
    .box-number .number ul li {
        display: block;

        max-width: 100%;
        margin: 10px 0;
    }
}
.box-number .number .item {
    position: relative;

    padding-left: 70px;
}
@media (max-width: 767px) {
    .box-number .number .item {
        padding-left: 40px;
    }
}
.box-number .number .item:before {
    font-family: 'iconfont' !important;
    font-size: 50px;
    line-height: 50px;

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

    content: '\e601';

    color: #005b4c;
}
@media (max-width: 991px) {
    .box-number .number .item:before {
        font-size: 40px;
    }
}
@media (max-width: 767px) {
    .box-number .number .item:before {
        font-size: 30px;
        line-height: 30px;
    }
}
.box-number .number .item-patterns:before {
    font-size: 60px;
}
@media (max-width: 991px) {
    .box-number .number .item-patterns:before {
        font-size: 50px;
    }
}
@media (max-width: 767px) {
    .box-number .number .item-patterns:before {
        font-size: 40px;
        line-height: 50px;
    }
}
.box-number .number .item-engineers:before {
    content: '\e68e';
}
.box-number .number .item-countries:before {
    content: '\e62a';
}
.box-number .number .item b,
.box-number .number .item p {
    display: inline-block;

    vertical-align: middle;
}
.box-number .number .item b {
    font-family: Impact;
    font-size: 46px;
    font-weight: bold;

    margin-right: 10px;
}
@media (max-width: 1350px) {
    .box-number .number .item b {
        font-size: 40px;
    }
}
@media (max-width: 991px) {
    .box-number .number .item b {
        font-size: 30px;

        display: block;
    }
}
.box-number .number .item b span {
    display: inline-block;

    vertical-align: top;
}
.box-number .number .item b sup {
    font-size: 18px;

    top: 10px;

    vertical-align: top;

    color: #005b4c;
}
@media (max-width: 991px) {
    .box-number .number .item b sup {
        font-size: 16px;
    }
}
.box-number .number .item p {
    font-size: 18px;
    line-height: 24px;

    display: inline-block;

    max-width: 230px;
    margin: 0;

    color: #666;
}
@media (max-width: 1350px) {
    .box-number .number .item p {
        font-size: 16px;

        max-width: 200px;
    }
}
@media (max-width: 991px) {
    .box-number .number .item p {
        font-size: 14px;
    }
}
.box-number .number .item:hover:before {
    -webkit-animation: swing 1s 0s ease both;
    animation: swing 1s 0s ease both;
}
.box-about {
    padding-top: 0;
}
.box-about .title-about h3 {
    font-size: 18px;
    line-height: 1.66666667;

    margin: 0;

    color: #444;
}
.box-about .title-about h3:after {
    display: inline-block;

    width: 54px;
    height: 1px;
    margin-left: 10px;

    content: '';
    vertical-align: middle;

    background-color: #444;
}
.box-about .title-about h2 {
    font-family: Impact, Arial;
    font-size: 56px;

    margin: 10px 0;

    text-transform: uppercase;

    color: #005b4c;
}
@media (max-width: 1350px) {
    .box-about .title-about h2 {
        font-size: 46px;
    }
}
@media (max-width: 991px) {
    .box-about .title-about h2 {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .box-about .title-about h2 {
        font-size: 24px;
    }
}
.box-about .title-about h1 {
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;

    margin: 0;

    color: #005b4c;
}
@media (max-width: 991px) {
    .box-about .title-about h1 {
        font-size: 16px;
    }
}
.box-about .text {
    margin-top: 30px;
}
@media (max-width: 1350px) {
    .box-about .text {
        margin-top: 20px;
    }
}
.box-about .text p {
    font-size: 16px;
    line-height: 2;

    margin: 0;

    color: #444;
}
@media (max-width: 1350px) {
    .box-about .text p {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .box-about .text p {
        font-size: 14px;
        line-height: 22px;
    }
}
.box-about .more {
    margin-top: 50px;
}
@media (max-width: 1350px) {
    .box-about .more {
        margin-top: 30px;
    }
}
.box-about .more a {
    font-size: 16px;
    line-height: 48px;

    display: inline-block;

    padding: 0 28px;

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

    color: #fff;
    border-radius: 6px;
    background-color: #005b4c;
}
@media (max-width: 767px) {
    .box-about .more a {
        line-height: 40px;

        padding: 0 20px;
    }
}
.box-about .more a:after {
    display: inline-block;

    width: 22px;
    height: 1px;
    margin-left: 10px;

    content: '';
    vertical-align: middle;

    background-color: #fff;
}
.box-about .more a:hover {
    background-color: #014338;
}
.box-about .video {
    position: relative;

    overflow: hidden;

    padding-left: 54px;
}
@media (max-width: 991px) {
    .box-about .video {
        margin-top: 30px;
        padding-left: 30px;
    }
}
@media (max-width: 767px) {
    .box-about .video {
        padding-left: 15px;
    }
}
.box-about .video img {
    max-width: 100%;
}
.box-about .video .play {
    font-size: 60px;
    line-height: 96px;

    position: absolute;
    z-index: 2;
    top: 50%;
    left: 6px;

    width: 96px;
    height: 96px;

    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;

    color: #005b4c;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
@media (max-width: 991px) {
    .box-about .video .play {
        font-size: 40px;
        line-height: 60px;

        width: 60px;
        height: 60px;
    }
}
@media (max-width: 767px) {
    .box-about .video .play {
        left: 0;
    }
}
.box-about .video .play:before {
    font-family: 'iconfont' !important;

    display: block;

    content: '\e647';
}
.box-about .video .play:hover {
    color: #fff;
    background-color: #005b4c;
}
.box-product {
    background-color: #f5f5f5;
}
.box-product .product .slick-product {
    margin: 0 -15px;
}
.box-product .product .slick-product .slick-slide {
    padding: 0 15px;
}
.box-product .product .item {
    position: relative;

    display: block;
}
.box-product .product .item .pic {
    position: relative;

    overflow: hidden;
}
.box-product .product .item .pic .img-box {
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateY(90px);
    -ms-transform: translateY(90px);
    transform: translateY(90px);
}
.box-product .product .item .note {
    position: absolute;
    z-index: 2;
    bottom: -2px;
    left: 0;

    overflow: hidden;

    width: 100%;

    -webkit-transition: all .2s;
    transition: all .2s;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    text-align: center;

    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.box-product .product .item .note b {
    font-family: Impact, Arial;
    font-size: 24px;
    font-weight: normal;
    line-height: 60px;

    display: -webkit-box;
    float: left;
    overflow: hidden;

    width: 40%;
    height: 60px;

    -webkit-transition: all .2s;
    transition: all .2s;
    text-transform: uppercase;

    color: #005b4c;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media (max-width: 1350px) {
    .box-product .product .item .note b {
        font-size: 20px;
    }
}
.box-product .product .item .note b span {
    display: block;

    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
}
.box-product .product .item .note p {
    font-size: 18px;
    line-height: 60px;

    display: -webkit-box;
    float: left;
    overflow: hidden;

    width: 60%;
    height: 60px;
    margin: 0;

    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media (max-width: 1350px) {
    .box-product .product .item .note p {
        font-size: 16px;
    }
}
.box-product .product .item:hover .pic .img-box {
    -webkit-transform: translateY(60px);
    -ms-transform: translateY(60px);
    transform: translateY(60px);
}
.box-product .product .item:hover .note {
    color: #fff;
    background-color: #00241e;
}
.box-product .product .item:hover .note b {
    color: #fff;
    background-color: #005b4c;
}
.box-product .product-sort-index {
    margin-top: 60px;
}
@media (max-width: 991px) {
    .box-product .product-sort-index {
        margin: 0;
    }
}
.box-product .product-sort-index .item {
    display: block;

    margin-top: 30px;
}
.box-product .product-sort-index .item .img-box {
    padding-bottom: 57.97101449%;
}
.box-product .product-sort-index .item .img-box img {
    -webkit-transition: all 1s;
    transition: all 1s;
}
.box-product .product-sort-index .item:hover .img-box img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.box-news .news .item {
    margin-top: 50px;

    border: 1px solid #eee;
}
@media (max-width: 991px) {
    .box-news .news .item {
        margin-top: 20px;
    }
}
.box-news .news .item .pic {
    position: relative;

    display: block;

    padding: 20px;
}
@media (max-width: 991px) {
    .box-news .news .item .pic {
        padding: 10px;
    }
}
.box-news .news .item .pic .img-box {
    padding-bottom: 63.41463415%;
}
.box-news .news .item .pic .img-box img {
    -webkit-transition: all 1s;
    transition: all 1s;
}
.box-news .news .item .pic .date {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 20px;

    background-color: #fff;
}
@media (max-width: 991px) {
    .box-news .news .item .pic .date {
        right: 10px;
        bottom: 10px;
    }
}
.box-news .news .item .pic .date b,
.box-news .news .item .pic .date p {
    line-height: 40px;

    display: inline-block;

    padding: 0 20px;

    vertical-align: middle;
}
@media (max-width: 991px) {
    .box-news .news .item .pic .date b,
    .box-news .news .item .pic .date p {
        padding: 0 10px;
    }
}
.box-news .news .item .pic .date b {
    font-family: Impact, Arial;
    font-size: 36px;
    font-weight: normal;

    position: relative;

    color: #005b4c;
}
@media (max-width: 767px) {
    .box-news .news .item .pic .date b {
        font-size: 24px;
    }
}
.box-news .news .item .pic .date b:after {
    position: absolute;
    top: 14px;
    right: 0;

    display: inline-block;

    width: 1px;
    height: 16px;

    content: '';
    vertical-align: middle;

    background-color: #e0e0e0;
}
.box-news .news .item .pic .date p {
    line-height: 18px;

    margin: 0;

    color: #666;
}
@media (max-width: 767px) {
    .box-news .news .item .pic .date p {
        font-size: 14px;
    }
}
.box-news .news .item .pic .date p span {
    display: block;
}
.box-news .news .item .note {
    padding: 0 30px;
}
@media (max-width: 767px) {
    .box-news .news .item .note {
        padding: 0 10px;
    }
}
.box-news .news .item .note b {
    font-size: 24px;
    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: 20px;
    }
}
@media (max-width: 767px) {
    .box-news .news .item .note b {
        font-size: 16px;
    }
}
.box-news .news .item .note p {
    line-height: 30px;

    display: -webkit-box;
    overflow: hidden;

    height: 90px;
    margin: 10px 0 0 0;

    color: #666;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
@media (max-width: 767px) {
    .box-news .news .item .note p {
        line-height: 20px;

        height: 60px;
    }
}
.box-news .news .item .more {
    font-family: Impact, Arial;
    font-size: 16px;
    line-height: 50px;

    display: block;

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

    -webkit-transition: all 1s;
    transition: all 1s;

    color: #005b4c;
}
@media (max-width: 767px) {
    .box-news .news .item .more {
        margin-top: 10px;
        padding: 0 10px;
    }
}
.box-news .news .item .more:after {
    font-family: 'iconfont' !important;

    margin-left: 10px;

    content: '\e9b6';
}
.box-news .news .item:hover .pic .img-box img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.box-news .news .item:hover .note b {
    color: #005b4c;
}
.box-news .news .item:hover .more {
    color: #fff;
    background-color: #005b4c;
}
.box-partner {
    padding-top: 0;
}
.box-partner .slick-partner {
    margin: 0 -15px;
    margin-top: 30px;
}
@media (max-width: 991px) {
    .box-partner .slick-partner {
        margin: 0 -8px;
    }
}
.box-partner .slick-partner .slick-slide {
    padding: 0 15px;
}
@media (max-width: 991px) {
    .box-partner .slick-partner .slick-slide {
        padding: 0 8px;
    }
}
.box-partner .slick-partner .item {
    /* border: 1px solid #e5e5e5; */
}
.box-partner .slick-partner .item .img-box {
    padding-bottom: 38.0952381%;
}
.box-partner .slick-partner .item .img-box img {
    -webkit-transition: all .2s;
    transition: all .2s;

    /* -webkit-filter: grayscale(100%);
       -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
         -o-filter: grayscale(100%);
            filter: grayscale(100%);
    -webkit-filter: gray;
            filter: gray; */
}
.box-partner .slick-partner .item:hover .img-box img {
    /* -webkit-filter: grayscale(0%);
       -moz-filter: grayscale(0%);
        -ms-filter: grayscale(0%);
         -o-filter: grayscale(0%);
            filter: grayscale(0%); */
}
.footer {
    font-size: 0;

    position: relative;

    overflow: hidden;

    color: #fff;
    background: url(../image/footer_bg.jpg) no-repeat center;
    background-size: cover;
}
@media (max-width: 991px) {
    .footer {
        padding-bottom: 55px;
    }
}
.footer .foot {
    padding: 70px 0;
}
@media (max-width: 991px) {
    .footer .foot {
        padding: 30px 0;
    }
}
.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 (max-width: 991px) {
    .footer .foot>ul:after {
        display: none;
    }
}
@media (max-width: 991px) {
    .footer .foot>ul {
        display: block;
        overflow: hidden;
    }
}
.footer .foot>ul>li {
    display: inline-block;

    text-align: left;
    vertical-align: top;
}
@media (max-width: 1199px) {
    .footer .foot>ul>li {
        width: 50%;
    }
}
@media (max-width: 991px) {
    .footer .foot>ul>li {
        display: block;

        width: 100%;
    }
}
.footer .foot>ul>li .item {
    text-align: left;
}
@media (max-width: 1199px) {
    .footer .foot>ul>li .item {
        margin-top: 14px;
    }
}
.footer .foot>ul>li .item .title-foot {
    margin-top: 30px;
}
@media (max-width: 991px) {
    .footer .foot>ul>li .item .title-foot {
        margin-top: 10px;
    }
}
.footer .foot>ul>li .item .title-foot h3 {
    font-family: Impact, Arial;
    font-size: 24px;
    line-height: 30px;

    position: relative;

    margin: 0;

    color: #fff;
}
.footer .foot>ul>li .item .title-foot h3:after {
    display: inline-block;

    width: 24px;
    height: 1px;
    margin-left: 20px;

    content: '';
    vertical-align: middle;

    background-color: #fff;
}
@media (max-width: 991px) {
    .footer .foot>ul>li .item .title-foot h3:after {
        display: none;
    }
}
.footer .foot>ul>li .item .title-foot h3 span {
    font-family: 'Segoe UI', Arial, 'Helvetica Neue', Helvetica, 'Microsoft YaHei', 'WenQuanYi Micro Hei', 'Heiti SC', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    font-size: 14px;

    position: absolute;
    top: -10px;
    left: -20px;

    color: #959595;
}
@media (max-width: 991px) {
    .footer .foot>ul>li .item .title-foot h3 {
        font-size: 16px;
        line-height: 24px;
    }
    .footer .foot>ul>li .item .title-foot h3:before {
        font-family: 'iconfont' !important;

        float: right;

        content: '\e629';
    }
}
.footer .foot>ul>li .item-1 {
    width: 270px;
}
@media (max-width: 991px) {
    .footer .foot>ul>li .item-1 {
        width: 100%;
    }
}
.footer .foot>ul>li .item-1 img {
    display: block;

    max-width: 100%;
    margin-bottom: 10px;
}
.footer .foot>ul>li .item-1 form {
    position: relative;

    margin-top: 30px;
}
.footer .foot>ul>li .item-1 form input {
    font-size: 14px;
    line-height: 30px;

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

    color: #fff;
    border: 1px solid #909090;
    background: none;
}
@media (max-width: 991px) {
    .footer .foot>ul>li .item-1 form input {
        line-height: 24px;

        padding: 6px 70px 6px 10px;
    }
}
.footer .foot>ul>li .item-1 form input::-webkit-input-placeholder,
.footer .foot>ul>li .item-1 form textarea::-webkit-input-placeholder {
    color: #909090;
}
.footer .foot>ul>li .item-1 form input:-o-placeholder,
.footer .foot>ul>li .item-1 form textarea:-o-placeholder {
    color: #909090;
}
.footer .foot>ul>li .item-1 form input::-moz-placeholder,
.footer .foot>ul>li .item-1 form textarea::-moz-placeholder {
    color: #909090;
}
.footer .foot>ul>li .item-1 form input:-ms-input-placeholder,
.footer .foot>ul>li .item-1 form textarea:-ms-input-placeholder {
    color: #909090;
}
.footer .foot>ul>li .item-1 form input:focus::-webkit-input-placeholder,
.footer .foot>ul>li .item-1 form textarea:focus::-webkit-input-placeholder {
    color: #c5c5c5;
}
.footer .foot>ul>li .item-1 form input:focus::-o-placeholder,
.footer .foot>ul>li .item-1 form textarea:focus::-o-placeholder {
    color: #c5c5c5;
}
.footer .foot>ul>li .item-1 form input:focus::-moz-placeholder,
.footer .foot>ul>li .item-1 form textarea:focus::-moz-placeholder {
    color: #c5c5c5;
}
.footer .foot>ul>li .item-1 form input:focus::-ms-input-placeholder,
.footer .foot>ul>li .item-1 form textarea:focus::-ms-input-placeholder {
    color: #c5c5c5;
}
.footer .foot>ul>li .item-1 form .submit {
    font-size: 22px;
    line-height: 50px;

    position: absolute;
    top: 1px;
    right: 1px;

    width: 60px;
    height: 50px;
    padding: 0;

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

    color: #fff;
    border-radius: 0;
    background-color: #005b4c;
}
@media (max-width: 991px) {
    .footer .foot>ul>li .item-1 form .submit {
        line-height: 38px;

        height: 38px;
    }
}
.footer .foot>ul>li .item-1 form .submit:before {
    font-family: 'iconfont' !important;

    content: '\e642';
}
.footer .foot>ul>li .item-1 form .submit:hover {
    background-color: #014338;
}
.footer .foot>ul>li .item-1 .share {
    display: inline-block;

    margin-top: 30px;

    vertical-align: middle;
}
@media (max-width: 1199px) {
    .footer .foot>ul>li .item-1 .share {
        display: block;

        margin-top: 10px;
    }
}
.footer .foot>ul>li .item-1 .share ul {
    font-size: 0;

    display: inline-block;
}
.footer .foot>ul>li .item-1 .share ul li {
    display: inline-block;
}
.footer .foot>ul>li .item-1 .share ul li a {
    font-size: 20px;
    line-height: 30px;

    display: block;

    width: 30px;
    height: 30px;
    margin-right: 14px;

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

    color: #c5c5c5;
}
.footer .foot>ul>li .item-1 .share ul li a:before {
    font-family: 'iconfont';
    font-weight: normal;

    display: inline-block;

    content: '\f19d';
    text-align: center;
    vertical-align: top;
}
.footer .foot>ul>li .item-1 .share ul li.twitter a:before {
    content: '\ea90';
}
.footer .foot>ul>li .item-1 .share ul li.linkedin a:before {
    content: '\ebf6';
}
.footer .foot>ul>li .item-1 .share ul li.instagram a:before {
    content: '\e6fc';
}
.footer .foot>ul>li .item-1 .share ul li.youtube a:before {
    content: '\e8e2';
}
.footer .foot>ul>li .item-1 .share ul li.google a:before {
    content: '\e645';
}
.footer .foot>ul>li .item-1 .share ul li.amazon a:before {
    content: '\e6c1';
}
.footer .foot>ul>li .item-1 .share ul li:hover a {
    color: #005b4c;
}
.footer .foot>ul>li .item-1 a.sitemap {
    font-size: 14px;
    line-height: 30px;

    display: inline-block;

    margin-top: 30px;

    -webkit-transition: all .2s;
    transition: all .2s;
    text-decoration: underline;

    color: #909090;
}
@media (max-width: 991px) {
    .footer .foot>ul>li .item-1 a.sitemap {
        margin-top: 10px;
    }
}
.footer .foot>ul>li .item-1 a.sitemap:hover {
    color: #fff;
}
@media (max-width: 1199px) {
    .footer .foot>ul>li .item-1 .info-down {
        display: block;
    }
}
.footer .foot>ul>li .item-2 a {
    font-size: 14px;
    line-height: 28px;

    position: relative;

    display: block;

    padding: 4px 0;

    text-transform: uppercase;
}
.footer .foot>ul>li .item-2 a:before {
    position: absolute;
    top: 16px;
    left: -14px;

    width: 4px;
    height: 4px;

    content: '';

    opacity: 0;
    border-radius: 50%;
    background-color: #fff;
}
.footer .foot>ul>li .item-2 a:hover {
    font-weight: bold;

    text-decoration: underline;
}
.footer .foot>ul>li .item-2 a:hover:before {
    opacity: 1;
}
.footer .foot>ul>li .item-3 {
    width: 340px;
}
@media (max-width: 1199px) {
    .footer .foot>ul>li .item-3 {
        width: 100%;
    }
}
.footer .foot>ul>li .item-3 p {
    font-size: 14px;
    line-height: 20px;

    position: relative;

    margin-bottom: 14px;
    padding-left: 30px;
}
.footer .foot>ul>li .item-3 p:before {
    font-family: 'iconfont' !important;
    font-size: 22px;
    line-height: 20px;

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

    content: '\e640';
}
.footer .foot>ul>li .item-3 p.email:before {
    content: '\ed2e';
}
.footer .foot>ul>li .item-3 p.tel:before {
    content: '\e62c';
}
.footer .foot>ul>li .item-3 p.phone:before {
    font-size: 20px;

    content: '\e63d';
}
.footer .foot>ul>li .item-3 p.website:before {
    content: '\e649';
}
.footer .foot>ul>li .item-3 p a:hover {
    text-decoration: underline;
}
.footer .foot>ul>li .item-4 {
    width: 330px;
}
@media (max-width: 1199px) {
    .footer .foot>ul>li .item-4 {
        width: 100%;
    }
}
.footer .foot>ul>li .item-4 input,
.footer .foot>ul>li .item-4 textarea {
    font-size: 14px;
    line-height: 26px;

    width: 100%;
    margin-top: 14px;
    padding: 6px 14px;

    border: 1px solid #909090;
    background: none;
}
.footer .foot>ul>li .item-4 input::-webkit-input-placeholder,
.footer .foot>ul>li .item-4 textarea::-webkit-input-placeholder {
    color: #909090;
}
.footer .foot>ul>li .item-4 input:-o-placeholder,
.footer .foot>ul>li .item-4 textarea:-o-placeholder {
    color: #909090;
}
.footer .foot>ul>li .item-4 input::-moz-placeholder,
.footer .foot>ul>li .item-4 textarea::-moz-placeholder {
    color: #909090;
}
.footer .foot>ul>li .item-4 input:-ms-input-placeholder,
.footer .foot>ul>li .item-4 textarea:-ms-input-placeholder {
    color: #909090;
}
.footer .foot>ul>li .item-4 input:focus::-webkit-input-placeholder,
.footer .foot>ul>li .item-4 textarea:focus::-webkit-input-placeholder {
    color: #c5c5c5;
}
.footer .foot>ul>li .item-4 input:focus::-o-placeholder,
.footer .foot>ul>li .item-4 textarea:focus::-o-placeholder {
    color: #c5c5c5;
}
.footer .foot>ul>li .item-4 input:focus::-moz-placeholder,
.footer .foot>ul>li .item-4 textarea:focus::-moz-placeholder {
    color: #c5c5c5;
}
.footer .foot>ul>li .item-4 input:focus::-ms-input-placeholder,
.footer .foot>ul>li .item-4 textarea:focus::-ms-input-placeholder {
    color: #c5c5c5;
}
.footer .foot>ul>li .item-4 .send {
    text-align: right;
}
.footer .foot>ul>li .item-4 .send .submit {
    display: inline-block;

    margin-top: 10px;

    background: none;
}
.footer .foot>ul>li .item-4 .send .submit:after {
    font-family: 'iconfont' !important;

    margin-left: 10px;

    content: '\e641';
}
.footer .foot>ul>li .item-4 .send .submit:hover {
    text-decoration: underline;

    color: #fff;
}
.footer .foot>ul>li .info-down {
    margin-top: 10px;
}
@media (max-width: 991px) {
    .footer .foot>ul>li .info-down {
        display: none;
    }
}
.footer .foot>ul>li.current .title-foot h3:before {
    content: '\e628';
}
.footer .copyright {
    font-size: 14px;

    padding: 15px 0;

    text-align: center;

    background-color: rgba(0, 0, 0, .45);
}
@media (max-width: 991px) {
    .footer .copyright {
        font-size: 14px;

        padding: 10px 0;
    }
}
.footer .copyright p {
    line-height: 30px;

    display: inline-block;

    margin: 0;

    vertical-align: middle;

    color: #8a8a8a;
}
@media (max-width: 991px) {
    .footer .copyright p {
        line-height: 22px;
    }
}
.footer .copyright p a {
    margin-left: 10px;

    -webkit-transition: all .4s;
    transition: all .4s;
}
.footer .copyright p a:hover {
    color: #fff;
}
.wrapper {
    clear: both;
    overflow: hidden;
}
.wrap {
    padding: 90px 0;
}
@media (max-width: 991px) {
    .wrap {
        padding: 50px 0;
    }
}
.title-in {
    text-align: center;
}
.title-in h2 {
    font-family: Impact, Arial;
    font-size: 50px;
    line-height: 1.2;

    display: block;

    margin: 0;

    text-transform: uppercase;

    color: #005b4c;
}
@media (max-width: 991px) {
    .title-in h2 {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .title-in h2 {
        font-size: 20px;
    }
}
.title-in p {
    font-size: 18px;
    line-height: 30px;

    display: inline-block;

    margin: 0;

    text-transform: capitalize;
}
.title-in p:before,
.title-in p:after {
    display: inline-block;

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

    content: '';
    vertical-align: middle;

    background-color: #005b4c;
}
.sidenav {
    padding-top: 80px;
}
@media (max-width: 991px) {
    .sidenav {
        padding-top: 50px;
    }
}
.sidenav>ul>li>a {
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;

    display: block;

    padding: 20px 30px;

    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
@media (max-width: 991px) {
    .sidenav>ul>li>a {
        font-size: 18px;

        padding: 10px;
    }
}
@media (max-width: 767px) {
    .sidenav>ul>li>a {
        font-size: 16px;
    }
}
.sidenav>ul>li.active>a,
.sidenav>ul>li:hover>a {
    color: #fff;
    background-color: #00f;
}
.sidenav>ul>li>ul {
    padding: 20px 0;
}
@media (max-width: 767px) {
    .sidenav>ul>li>ul {
        padding: 10px 0;
    }
}
@media (max-width: 991px) {
    .sidenav>ul>li>ul>li {
        display: inline-block;

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

    display: block;

    padding: 10px 20px;
}
@media (max-width: 991px) {
    .sidenav>ul>li>ul>li a {
        font-size: 14px;

        padding: 0 10px;
    }
}
.sidenav>ul>li>ul>li.active,
.sidenav>ul>li>ul>li:hover {
    text-decoration: underline;

    color: #00f;
}
.wrap-about .text {
    margin-top: 20px;
}
.wrap-about .text p {
    font-size: 16px;
    line-height: 1.625;

    color: #444;
}
@media (max-width: 767px) {
    .wrap-about .text p {
        font-size: 14px;
        line-height: 2;
    }
}
.wrap-about .text img {
    max-width: 100%;
    height: auto !important;
    margin: 10px 0;
}
.wrap-about .video {
    position: relative;

    margin-top: 60px;
}
@media (max-width: 991px) {
    .wrap-about .video {
        margin-top: 30px;
    }
}
.wrap-about .video .slick-video .item {
    position: relative;

    background-color: #000;
}
.wrap-about .video .slick-video .item .img-box {
    padding-bottom: 43.97163121%;

    opacity: .5;
}
.wrap-about .video .slick-video .item .img-box img {
    -webkit-transition: all 1s;
    transition: all 1s;
}
.wrap-about .video .slick-video .item .play {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;

    display: block;

    width: 130px;
    height: 130px;

    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
.wrap-about .video .slick-video .item .play img {
    max-width: 100%;
}
@media (max-width: 991px) {
    .wrap-about .video .slick-video .item .play {
        width: 100px;
        height: 100px;
    }
}
@media (max-width: 767px) {
    .wrap-about .video .slick-video .item .play {
        width: 60px;
        height: 60px;
    }
}
.wrap-about .video .slick-video .slick-arrow {
    line-height: 180px;

    z-index: 2;
    left: 0;

    width: 40px;
    height: 180px;

    color: #fff;
    border: none;
    border-radius: 0;
    background-color: rgba(255, 255, 255, .5);
}
@media (max-width: 991px) {
    .wrap-about .video .slick-video .slick-arrow {
        line-height: 60px;

        height: 60px;
    }
}
.wrap-about .video .slick-video .slick-arrow:before {
    content: '\e625';
}
.wrap-about .video .slick-video .slick-arrow.slick-next {
    right: 0;
    left: auto;
}
.wrap-about .video .number {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 20px;

    color: #fff;
    background-color: rgba(255, 255, 255, .09);
}
@media (max-width: 991px) {
    .wrap-about .video .number {
        position: relative;

        color: #444;
    }
}
.wrap-about .video .number ul {
    font-size: 0;
}
@media (min-width: 1200px) {
    .wrap-about .video .number ul {
        width: 100%;
        padding: 0;

        text-align: justify;
        text-justify: distribute-all-lines;
    }
    .wrap-about .video .number ul:after {
        display: inline-block;
        overflow: hidden;

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

        content: '';
    }
}
.wrap-about .video .number ul li {
    font-size: 14px;

    display: inline-block;

    max-width: 33.33333333%;

    text-align: left;
    vertical-align: top;
}
@media (max-width: 767px) {
    .wrap-about .video .number ul li {
        display: block;

        max-width: 100%;
        margin: 10px 0;
    }
}
.wrap-about .video .number .item {
    position: relative;

    padding-left: 70px;
}
@media (max-width: 767px) {
    .wrap-about .video .number .item {
        padding-left: 40px;
    }
}
.wrap-about .video .number .item:before {
    font-family: 'iconfont' !important;
    font-size: 50px;
    line-height: 50px;

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

    content: '\e601';
}
@media (max-width: 991px) {
    .wrap-about .video .number .item:before {
        font-size: 40px;
    }
}
@media (max-width: 767px) {
    .wrap-about .video .number .item:before {
        font-size: 30px;
        line-height: 30px;
    }
}
.wrap-about .video .number .item-patterns:before {
    font-size: 60px;
}
@media (max-width: 991px) {
    .wrap-about .video .number .item-patterns:before {
        font-size: 50px;
    }
}
@media (max-width: 767px) {
    .wrap-about .video .number .item-patterns:before {
        font-size: 40px;
        line-height: 50px;
    }
}
.wrap-about .video .number .item-engineers:before {
    content: '\e68e';
}
.wrap-about .video .number .item-countries:before {
    content: '\e62a';
}
.wrap-about .video .number .item b,
.wrap-about .video .number .item p {
    display: inline-block;

    vertical-align: middle;
}
.wrap-about .video .number .item b {
    font-family: Impact, Arial;
    font-size: 46px;
    font-weight: bold;

    margin-right: 10px;
}
@media (max-width: 1350px) {
    .wrap-about .video .number .item b {
        font-size: 40px;
    }
}
@media (max-width: 991px) {
    .wrap-about .video .number .item b {
        font-size: 30px;

        display: block;
    }
}
.wrap-about .video .number .item b span {
    display: inline-block;

    vertical-align: top;
}
.wrap-about .video .number .item b sup {
    font-size: 18px;

    top: 10px;

    vertical-align: top;
}
@media (max-width: 991px) {
    .wrap-about .video .number .item b sup {
        font-size: 16px;
    }
}
.wrap-about .video .number .item p {
    font-size: 18px;
    line-height: 24px;

    display: inline-block;

    max-width: 230px;
    margin: 0;
}
@media (max-width: 1350px) {
    .wrap-about .video .number .item p {
        font-size: 16px;

        max-width: 200px;
    }
}
@media (max-width: 991px) {
    .wrap-about .video .number .item p {
        font-size: 14px;
    }
}
.wrap-about .video .number .item:hover:before {
    -webkit-animation: swing 1s 0s ease both;
    animation: swing 1s 0s ease both;
}
.wrap-download .download .item {
    display: block;

    margin-top: 30px;

    color: inherit;
    background-color: #f0f0f0;
}
.wrap-download .download .item b {
    font-size: 18px;
    font-weight: normal;
    line-height: 60px;

    display: -webkit-box;
    overflow: hidden;

    height: 60px;
    padding: 0 20px;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media (max-width: 991px) {
    .wrap-download .download .item b {
        font-size: 16px;
        line-height: 50px;

        height: 50px;
    }
}
.wrap-download .download .item .pic {
    position: relative;

    display: block;
    overflow: hidden;
}
.wrap-download .download .item .pic:before {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

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

    border: 0 solid #fff;
}
.wrap-download .download .item .pic .img-box {
    padding-bottom: 56.52173913%;
}
.wrap-download .download .item .pic .img-box img {
    -webkit-transition: all 1s;
    transition: all 1s;
}
.wrap-download .download .item .note {
    position: relative;

    padding: 15px 80px 15px 0;
}
@media (max-width: 767px) {
    .wrap-download .download .item .note {
        padding: 5px 50px 5px 0;
    }
}
.wrap-download .download .item .note p {
    font-size: 16px;
    line-height: 30px;

    margin: 0;
}
@media (max-width: 1199px) {
    .wrap-download .download .item .note p {
        font-size: 14px;
    }
}
.wrap-download .download .item .note p span {
    margin-left: 20px;
}
.wrap-download .download .item .note a.down {
    font-size: 20px;
    line-height: 60px;

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

    display: block;

    width: 80px;
    height: 60px;

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

    color: #fff;
    background-color: #00f;
}
@media (max-width: 767px) {
    .wrap-download .download .item .note a.down {
        font-size: 18px;
        line-height: 40px;

        right: 0;

        width: 50px;
        height: 40px;
    }
}
.wrap-download .download .item .note a.down:after {
    font-family: 'iconfont' !important;

    content: '\e684';
}
.wrap-download .download .item:hover b {
    color: #005b4c;
}
.wrap-download .download .item:hover .pic .img-box img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.wrap-download .download .item:hover .note a.down {
    background-color: #005b4c;
}
.wrap-news .news ul li:nth-child(2n) .item .pic {
    left: 50%;
}
@media (max-width: 767px) {
    .wrap-news .news ul li:nth-child(2n) .item .pic {
        left: 0;
    }
}
.wrap-news .news ul li:nth-child(2n) .item .text {
    right: 50%;

    margin-right: -5%;
    margin-left: 0;
    padding: 70px 10% 120px 6%;
}
@media (max-width: 1350px) {
    .wrap-news .news ul li:nth-child(2n) .item .text {
        padding: 50px 8% 90px 5%;
    }
}
@media (max-width: 991px) {
    .wrap-news .news ul li:nth-child(2n) .item .text {
        padding: 40px 8% 60px 5%;
    }
}
@media (max-width: 767px) {
    .wrap-news .news ul li:nth-child(2n) .item .text {
        right: 0;

        margin: 0;
        padding: 30px 10px;
    }
}
.wrap-news .news .item {
    font-size: 0;

    margin-top: 50px;
}
.wrap-news .news .item .pic,
.wrap-news .news .item .text {
    font-size: 14px;

    position: relative;

    display: inline-block;

    vertical-align: middle;
}
.wrap-news .news .item .pic {
    width: 50%;
}
@media (max-width: 767px) {
    .wrap-news .news .item .pic {
        width: 100%;
    }
}
.wrap-news .news .item .pic .img-box {
    padding-bottom: 63.76811594%;
}
.wrap-news .news .item .pic .img-box img {
    -webkit-transition: all 1s;
    transition: all 1s;
}
.wrap-news .news .item .text {
    position: relative;

    overflow: hidden;

    width: 55%;
    margin-left: -5%;
    padding: 70px 6% 120px 10%;

    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
@media (max-width: 1350px) {
    .wrap-news .news .item .text {
        padding: 50px 5% 90px 8%;
    }
}
@media (max-width: 991px) {
    .wrap-news .news .item .text {
        padding: 40px 5% 60px 8%;
    }
}
@media (max-width: 767px) {
    .wrap-news .news .item .text {
        width: 100%;
        margin: 0;
        padding: 30px 10px;
    }
}
.wrap-news .news .item .text .top-text {
    position: relative;

    padding-right: 90px;
}
@media (max-width: 767px) {
    .wrap-news .news .item .text .top-text {
        padding-right: 60px;
    }
}
.wrap-news .news .item .text .top-text b {
    font-size: 30px;
    line-height: 44px;

    display: -webkit-box;
    overflow: hidden;

    height: 88px;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
@media (max-width: 1350px) {
    .wrap-news .news .item .text .top-text b {
        font-size: 26px;
    }
}
@media (max-width: 991px) {
    .wrap-news .news .item .text .top-text b {
        font-size: 24px;
        line-height: 30px;

        height: 60px;
    }
}
@media (max-width: 767px) {
    .wrap-news .news .item .text .top-text b {
        font-size: 18px;
    }
}
.wrap-news .news .item .text .top-text .date {
    position: absolute;
    top: 0;
    right: 0;

    width: 90px;

    text-align: right;

    border-left: 1px solid #e5e5e5;
}
@media (max-width: 767px) {
    .wrap-news .news .item .text .top-text .date {
        width: 50px;
    }
}
.wrap-news .news .item .text .top-text .date span {
    font-size: 16px;
    line-height: 24px;

    display: block;

    color: #666;
}
@media (max-width: 767px) {
    .wrap-news .news .item .text .top-text .date span {
        font-size: 14px;
        line-height: 20px;
    }
}
.wrap-news .news .item .text .top-text .date p {
    font-family: Impact, Arial;
    font-size: 30px;
    line-height: 1;

    margin: 0;

    color: #005b4c;
}
@media (max-width: 767px) {
    .wrap-news .news .item .text .top-text .date p {
        font-size: 20px;
    }
}
.wrap-news .news .item .text .note {
    margin-top: 40px;
}
@media (max-width: 991px) {
    .wrap-news .news .item .text .note {
        margin-top: 20px;
    }
}
.wrap-news .news .item .text .note p {
    font-size: 16px;
    line-height: 1.875;

    display: -webkit-box;
    overflow: hidden;

    height: 90px;
    margin: 0;

    color: #666;

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

        height: 72px;
    }
}
.wrap-news .news .item .text .more {
    margin-top: 60px;
}
@media (max-width: 991px) {
    .wrap-news .news .item .text .more {
        margin-top: 30px;
    }
}
.wrap-news .news .item .text .more a {
    font-size: 16px;
    line-height: 30px;

    display: inline-block;

    padding: 10px 30px;

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

    color: #666;
    border: 1px solid #666;
    border-radius: 10px;
}
@media (max-width: 767px) {
    .wrap-news .news .item .text .more a {
        line-height: 24px;

        padding: 10px 20px;
    }
}
.wrap-news .news .item .text .more a:after {
    display: inline-block;

    width: 30px;
    height: 1px;
    margin-left: 10px;

    content: '';
    vertical-align: middle;

    background-color: #666;
}
.wrap-news .news .item .text .more a:hover {
    color: #fff;
    border-color: #005b4c;
    background-color: #005b4c;
}
.wrap-news .news .item .text .more a:hover:after {
    background-color: #fff;
}
.wrap-news .news .item .text .number {
    font-family: Impact, Arial;
    font-size: 160px;
    font-style: italic;
    line-height: 1;

    position: absolute;
    right: 20%;
    bottom: -60px;

    color: rgba(0, 91, 76, .08);
}
@media (max-width: 991px) {
    .wrap-news .news .item .text .number {
        font-size: 100px;

        bottom: -30px;
    }
}
@media (max-width: 767px) {
    .wrap-news .news .item .text .number {
        font-size: 80px;

        right: 30px;
    }
}
.wrap-news .news .item:hover .pic .img-box img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.wrap-news .news .item:hover .text b {
    color: #005b4c;
}
.wrap-news-show .title-news-show {
    position: relative;

    padding-bottom: 30px;

    border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 767px) {
    .wrap-news-show .title-news-show {
        padding-bottom: 20px;
    }
}
.wrap-news-show .title-news-show:after {
    position: absolute;
    right: 0;
    bottom: -2px;

    display: block;

    width: 28px;
    height: 6px;

    content: '';

    background-color: #005b4c;
}
.wrap-news-show .title-news-show h1 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;

    margin: 0;
}
@media (max-width: 991px) {
    .wrap-news-show .title-news-show h1 {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .wrap-news-show .title-news-show h1 {
        font-size: 20px;
    }
}
.wrap-news-show .title-news-show span.date {
    font-size: 16px;
    line-height: 30px;

    display: block;

    margin-top: 20px;

    color: #005b4c;
}
@media (max-width: 767px) {
    .wrap-news-show .title-news-show span.date {
        margin-top: 10px;
    }
}
.wrap-news-show .title-news-show span.date:before {
    font-family: 'iconfont' !important;
    font-size: 20px;

    float: left;

    margin-right: 10px;

    content: '\e64e';
}
.wrap-news-show .text {
    margin-top: 30px;
}
.wrap-news-show .text p {
    font-size: 16px;
    line-height: 1.875;

    margin: 0;

    color: #666;
}
@media (max-width: 767px) {
    .wrap-news-show .text p {
        font-size: 14px;
        line-height: 24px;
    }
}
.wrap-news-show .text img {
    max-width: 100%;
    height: auto !important;
}
.wrap-news-show .news-relate {
    margin-top: 30px;
}
.wrap-news-show .news-relate ul li {
    margin-top: 10px;
}
.wrap-news-show .news-relate ul li a {
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;

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

    height: 30px;

    color: #888;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.wrap-news-show .news-relate ul li a:before {
    font-family: 'iconfont' !important;
    font-size: 20px;
    font-weight: normal;

    display: inline-block;

    margin-right: 10px;

    content: '\e88f';
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.wrap-news-show .news-relate ul li.next {
    text-align: right;
}
@media (max-width: 767px) {
    .wrap-news-show .news-relate ul li.next {
        text-align: left;
    }
}
.wrap-news-show .news-relate ul li.next a:before {
    float: right;

    margin-right: 0;
    margin-left: 10px;

    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
@media (max-width: 767px) {
    .wrap-news-show .news-relate ul li.next a:before {
        float: left;

        margin-right: 10px;
        margin-left: 0;
    }
}
.wrap-news-show .news-relate ul li:hover a {
    text-decoration: underline;

    color: #005b4c;
}
.wrap-product .product {
    margin-top: 10px;
}
.wrap-product .product .item {
    display: block;

    margin-top: 50px;
}
@media (max-width: 991px) {
    .wrap-product .product .item {
        margin-top: 30px;
    }
}
.wrap-product .product .item img {
    width: 100%;
}
.title-product {
    overflow: hidden;
    text-align: center;
}
.title-product h2 {
    font-family: Impact, Arial;
    font-size: 48px;

    display: inline-block;
    float: left;

    margin: 0;

    vertical-align: middle;
    text-transform: uppercase;
}
@media (max-width: 1350px) {
    .title-product h2 {
        font-size: 40px;
    }
}
@media (max-width: 991px) {
    .title-product h2 {
        font-size: 30px;

        display: block;
    }
}
@media (max-width: 767px) {
    .title-product h2 {
        font-size: 24px;
    }
}
.title-product h2:after {
    display: inline-block;

    width: 18px;
    height: 2px;
    margin-left: 16px;

    content: '';
    vertical-align: middle;

    background-color: #222;
}
.product-sort {
    display: inline-block;
    /* float: right; */
}
@media (max-width: 991px) {
    .product-sort {
        display: block;
        float: none;

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

    padding: 0 10px;
}
@media (max-width: 991px) {
    .product-sort ul li {
        margin-top: 10px;
    }
}
@media (max-width: 767px) {
    .product-sort ul li {
        padding: 0 4px;
    }
}
.product-sort ul li a {
    font-size: 0;
    line-height: 70px;

    display: block;
    display: inline-block;

    /* min-width: 270px; */
    padding: 0 20px;
    margin-bottom: 10px;

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

    border: 1px solid #e5e5e5;
}
@media (max-width: 1470px) {
    .product-sort ul li a {
        /* min-width: 240px; */
    }
}
@media (max-width: 1350px) {
    .product-sort ul li a {
        /* min-width: 200px; */
        padding: 0 10px;
    }
}
@media (max-width: 991px) {
    .product-sort ul li a {
        line-height: 50px;
    }
}
@media (max-width: 767px) {
    .product-sort ul li a {
        /* min-width: 140px; */
    }
}
.product-sort ul li a img {
    display: inline-block;

    width: 40px;
    height: 40px;
    margin-right: 10px;

    vertical-align: middle;
}
.product-sort ul li a img.ihover {
    display: none;

    width: 40px;
    height: 40px;
}
.product-sort ul li a span {
    font-size: 18px;

    display: inline-block;

    vertical-align: middle;
}
@media (max-width: 1350px) {
    .product-sort ul li a span {
        font-size: 18px;
    }
}
@media (max-width: 991px) {
    .product-sort ul li a span {
        font-size: 16px;
    }
}
.product-sort ul li.active a,
.product-sort ul li:hover a {
    color: #fff;
    background-color: #005b4c;
}
.product-sort ul li.active a img.inow,
.product-sort ul li:hover a img.inow {
    display: none;
}
.product-sort ul li.active a img.ihover,
.product-sort ul li:hover a img.ihover {
    display: inline-block;
}
.wrap-product-list .product-list .item {
    position: relative;

    display: block;
}
.wrap-product-list .product-list .item .pic {
    position: relative;

    overflow: hidden;
}
.wrap-product-list .product-list .item .pic .img-box {
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateY(60px);
    -ms-transform: translateY(60px);
    transform: translateY(60px);
}
.wrap-product-list .product-list .item .note {
    position: absolute;
    z-index: 2;
    bottom: -2px;
    left: 0;

    overflow: hidden;

    width: 100%;

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

    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.wrap-product-list .product-list .item .note b {
    font-family: Impact, Arial;
    font-size: 24px;
    font-weight: normal;
    line-height: 60px;

    display: -webkit-box;
    float: left;
    overflow: hidden;

    width: 40%;
    height: 60px;

    -webkit-transition: all .2s;
    transition: all .2s;
    text-transform: uppercase;

    color: #005b4c;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media (max-width: 1350px) {
    .wrap-product-list .product-list .item .note b {
        font-size: 20px;
    }
}
.wrap-product-list .product-list .item .note b span {
    display: block;
}
.wrap-product-list .product-list .item .note p {
    font-size: 18px;
    font-weight: bold;
    line-height: 60px;

    display: -webkit-box;
    float: left;
    overflow: hidden;

    width: 60%;
    height: 60px;
    margin: 0;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media (max-width: 1350px) {
    .wrap-product-list .product-list .item .note p {
        font-size: 16px;
    }
}
.wrap-product-list .product-list .item:hover .pic .img-box {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}
.wrap-product-list .product-list .item:hover .note {
    color: #fff;
    /* background-color: #00241e; */
}
.wrap-product-list .product-list .item:hover .note b {
    color: #fff;
    /* background-color: #005b4c; */
}
.wrap-product-show .carousel-wrap {
    margin-top: 70px;
}
.wrap-product-show .carousel-wrap .img-box {
    -webkit-transition: all .4s;
    transition: all .4s;
}
.wrap-product-show .carousel-wrap .carousel {
    font-size: 0;

    position: relative;

    padding-right: 220px;
}
@media (max-width: 1470px) {
    .wrap-product-show .carousel-wrap .carousel {
        padding-right: 190px;
    }
}
@media (max-width: 1350px) {
    .wrap-product-show .carousel-wrap .carousel {
        padding-right: 160px;
    }
}
@media (max-width: 991px) {
    .wrap-product-show .carousel-wrap .carousel {
        padding: 0;
    }
}
.wrap-product-show .carousel-wrap .carousel .slider-for {
    position: relative;

    border: 1px solid #eaeaea;
}
.wrap-product-show .carousel-wrap .carousel .slider-for .item {
    position: relative;
}
.wrap-product-show .carousel-wrap .carousel .slider-for .video {
    position: relative;
}
.wrap-product-show .carousel-wrap .carousel .slider-for .video:before {
    font-family: 'iconfont' !important;
    font-size: 60px;

    position: absolute;
    z-index: 2;
    top: 50%;

    width: 100%;

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

    color: #fff;
}
.wrap-product-show .carousel-wrap .carousel .slider-for .video img {
    width: 100%;
}
.wrap-product-show .carousel-wrap .carousel .slider-nav {
    position: absolute;
    top: 0;
    right: 20px;

    width: 169px;
    padding: 30px 0;
}
@media (max-width: 1470px) {
    .wrap-product-show .carousel-wrap .carousel .slider-nav {
        right: 0;

        width: 153px;
    }
}
@media (max-width: 1350px) {
    .wrap-product-show .carousel-wrap .carousel .slider-nav {
        width: 137px;
    }
}
@media (max-width: 991px) {
    .wrap-product-show .carousel-wrap .carousel .slider-nav {
        position: relative;
        right: 0;

        width: 100%;
        margin-top: 20px;
    }
}
.wrap-product-show .carousel-wrap .carousel .slider-nav .slick-slide {
    outline: none;
}
.wrap-product-show .carousel-wrap .carousel .slider-nav .item {
    position: relative;

    margin: 4px 0;

    border: 1px solid #eaeaea;
    background-color: #000;
}
.wrap-product-show .carousel-wrap .carousel .slider-nav .item-video {
    position: relative;
}
.wrap-product-show .carousel-wrap .carousel .slider-nav .item-video .img-box {
    opacity: .8;
}
.wrap-product-show .carousel-wrap .carousel .slider-nav .item-video:after {
    font-family: 'iconfont' !important;
    font-size: 40px;

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

    content: '\e644';
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);

    color: #fff;
}
.wrap-product-show .carousel-wrap .carousel .slider-nav .slick-current .item {
    border: 1px solid #005b4c;
}
.wrap-product-show .carousel-wrap .carousel .slick-arrow {
    font-size: 20px;
    line-height: 24px;

    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;

    width: 100%;
    height: 24px;
    margin: 0;
    padding: 0;

    cursor: pointer;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    text-align: left;

    border: 1px solid #e5e5e5;
    border-radius: 0;
    outline: none;
    background: none;
}
.wrap-product-show .carousel-wrap .carousel .slick-arrow:before {
    font-family: 'iconfont' !important;

    display: block;

    content: '\e602';
    -webkit-transition: all .4s;
    transition: all .4s;
    text-align: center;
}
.wrap-product-show .carousel-wrap .carousel .slick-arrow.slick-next {
    top: auto;
    bottom: 0;
}
.wrap-product-show .carousel-wrap .carousel .slick-arrow:hover {
    color: #fff;
    background-color: #005b4c;
}
.wrap-product-show .carousel-wrap .info-box {
    position: relative;

    padding: 20px 20px 40px 20px;

    border: 1px solid #eaeaea;
}
@media (max-width: 991px) {
    .wrap-product-show .carousel-wrap .info-box {
        margin-top: 30px;
        padding: 30px 14px;
    }
}
.wrap-product-show .carousel-wrap .info-box:after {
    position: absolute;
    top: 40px;
    right: 0;

    display: block;

    width: 4px;
    height: 100px;

    content: '';

    background-color: #005b4c;
}
.wrap-product-show .carousel-wrap .info-box .title-info {
    position: relative;
}
.wrap-product-show .carousel-wrap .info-box .title-info h1 {
    font-family: Impact, Arial;
    font-size: 36px;
    line-height: 1.33333333;

    display: block;

    margin: 0;

    text-transform: capitalize;

    color: #005b4c;
}
@media (max-width: 991px) {
    .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 .detail {
    min-height: 250px;
    margin-top: 20px;
}
@media (max-width: 1470px) {
    .wrap-product-show .carousel-wrap .info-box .detail {
        min-height: 200px;
    }
}
.wrap-product-show .carousel-wrap .info-box .detail h3 {
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;

    margin: 0 0 10px 0;
}
.wrap-product-show .carousel-wrap .info-box .detail p {
    font-size: 14px;
    line-height: 2;

    margin: 0;

    color: #666;
}
.wrap-product-show .carousel-wrap .info-box .share {
    margin-top: 20px;
}
.wrap-product-show .carousel-wrap .info-box .share p,
.wrap-product-show .carousel-wrap .info-box .share .addthis_inline_share_toolbox {
    display: inline-block;

    vertical-align: middle;
}
.wrap-product-show .carousel-wrap .info-box .share p {
    font-size: 18px;
}
.wrap-product-show .carousel-wrap .info-box .btn-inquiry {
    margin-top: 40px;
}
@media (max-width: 1350px) {
    .wrap-product-show .carousel-wrap .info-box .btn-inquiry {
        margin-top: 20px;
    }
}
.wrap-product-show .carousel-wrap .info-box .btn-inquiry a {
    font-size: 14px;
    font-weight: bold;
    line-height: 36px;

    display: inline-block;

    padding: 0 30px;

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

    color: #fff;
    border-radius: 30px;
    background-color: #005b4c;
}
.wrap-product-show .carousel-wrap .info-box .btn-inquiry a:before {
    font-family: 'iconfont' !important;
    font-size: 18px;
    font-weight: normal;

    float: right;

    margin-left: 10px;

    content: '\e648';
}
.wrap-product-show .carousel-wrap .info-box .btn-inquiry a:hover {
    background-color: #005b4c;
}
.wrap-product-show .carousel-wrap .info-box .prev-next {
    margin-top: 50px;
}
@media (max-width: 1350px) {
    .wrap-product-show .carousel-wrap .info-box .prev-next {
        margin-top: 20px;
    }
}
.wrap-product-show .carousel-wrap .info-box .prev-next a {
    font-size: 16px;
    line-height: 30px;

    display: inline-block;

    width: 50%;

    color: #666;
}
.wrap-product-show .carousel-wrap .info-box .prev-next a:before {
    font-family: 'iconfont' !important;
    font-size: 20px;
    line-height: 26px;

    display: inline-block;

    width: 30px;
    height: 30px;
    margin-right: 10px;

    content: '\e62b';
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    text-align: center;
    vertical-align: middle;

    border: 2px solid #666;
    border-radius: 50%;
}
.wrap-product-show .carousel-wrap .info-box .prev-next a.btn-next {
    float: right;

    text-align: right;
}
.wrap-product-show .carousel-wrap .info-box .prev-next a.btn-next:before {
    float: right;

    margin-right: 0;
    margin-left: 10px;

    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.wrap-product-show .carousel-wrap .info-box .prev-next a:hover {
    color: #005b4c;
}
.wrap-product-show .carousel-wrap .info-box .prev-next a:hover:before {
    border-color: #005b4c;
}
.wrap-product-show .title-product-show {
    position: relative;
    z-index: 2;
}
.wrap-product-show .title-product-show b {
    font-size: 30px;
    line-height: 1;

    position: relative;

    display: block;
}
@media (max-width: 991px) {
    .wrap-product-show .title-product-show b {
        font-size: 20px;
    }
}
.wrap-product-show .title-product-show p {
    line-height: 24px;

    margin: 10px 0 0 0;

    color: #666;
}
.wrap-product-show .parameter,
.wrap-product-show .relate-product,
.wrap-product-show .inquiry {
    padding-top: 80px;
}
@media (max-width: 991px) {
    .wrap-product-show .parameter,
    .wrap-product-show .relate-product,
    .wrap-product-show .inquiry {
        padding-top: 50px;
    }
}
.wrap-product-show .parameter .text {
    margin-top: 20px;
    padding: 30px;

    border: 1px solid #f0f0f0;
}
@media (max-width: 991px) {
    .wrap-product-show .parameter .text {
        padding: 30px 14px;
    }
}
.wrap-product-show .parameter .text p {
    font-size: 16px;
    line-height: 2;

    margin: 0;

    color: #666;
}
@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 .text .table-box {
    overflow: auto;

    width: 100%;
    max-width: 100%;
}
.wrap-product-show .parameter .text .table-box table {
    line-height: 1.2;

    width: 100%;
    max-width: 100%;

    border-spacing: 0;
    border-collapse: collapse;

    text-align: center;
}
.wrap-product-show .parameter .text .table-box table tr,
.wrap-product-show .parameter .text .table-box table td,
.wrap-product-show .parameter .text .table-box table th {
    width: auto !important;
    height: auto !important;
}
.wrap-product-show .parameter .text .table-box table td,
.wrap-product-show .parameter .text .table-box table th {
    font-weight: normal;

    padding: 10px !important;

    border: 1px solid #d6d6d6 !important;
}
@media (max-width: 480px) {
    .wrap-product-show .parameter .text .table-box table td,
    .wrap-product-show .parameter .text .table-box table th {
        padding: 8px !important;
    }
}
.wrap-product-show .parameter .text .table-box table tr p,
.wrap-product-show .parameter .text .table-box table tr span {
    margin: 0 !important;
    padding: 0 !important;

    background: none !important;
}
.wrap-product-show .parameter .text .table-box table th {
    text-align: center;
}
.wrap-product-show .inquiry input,
.wrap-product-show .inquiry textarea {
    line-height: 30px;

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

    resize: vertical;

    border: none;
    outline: none;
    background: none;
    background-color: #ededed;
}
@media (max-width: 991px) {
    .wrap-product-show .inquiry input,
    .wrap-product-show .inquiry textarea {
        margin-top: 20px;
    }
}
.wrap-product-show .inquiry input::-webkit-input-placeholder,
.wrap-product-show .inquiry textarea::-webkit-input-placeholder {
    color: #666;
}
.wrap-product-show .inquiry input:-o-placeholder,
.wrap-product-show .inquiry textarea:-o-placeholder {
    color: #666;
}
.wrap-product-show .inquiry input::-moz-placeholder,
.wrap-product-show .inquiry textarea::-moz-placeholder {
    color: #666;
}
.wrap-product-show .inquiry input:-ms-input-placeholder,
.wrap-product-show .inquiry textarea:-ms-input-placeholder {
    color: #666;
}
.wrap-product-show .inquiry input:focus::-webkit-input-placeholder,
.wrap-product-show .inquiry textarea:focus::-webkit-input-placeholder {
    color: #c5c5c5;
}
.wrap-product-show .inquiry input:focus::-o-placeholder,
.wrap-product-show .inquiry textarea:focus::-o-placeholder {
    color: #c5c5c5;
}
.wrap-product-show .inquiry input:focus::-moz-placeholder,
.wrap-product-show .inquiry textarea:focus::-moz-placeholder {
    color: #c5c5c5;
}
.wrap-product-show .inquiry input:focus::-ms-input-placeholder,
.wrap-product-show .inquiry textarea:focus::-ms-input-placeholder {
    color: #c5c5c5;
}
.wrap-product-show .inquiry .read input {
    color: #333;
    background-color: #d8d8d8;
}
.wrap-product-show .inquiry .read input::-webkit-input-placeholder,
.wrap-product-show .inquiry .read textarea::-webkit-input-placeholder {
    color: #333;
}
.wrap-product-show .inquiry .read input:-o-placeholder,
.wrap-product-show .inquiry .read textarea:-o-placeholder {
    color: #333;
}
.wrap-product-show .inquiry .read input::-moz-placeholder,
.wrap-product-show .inquiry .read textarea::-moz-placeholder {
    color: #333;
}
.wrap-product-show .inquiry .read input:-ms-input-placeholder,
.wrap-product-show .inquiry .read textarea:-ms-input-placeholder {
    color: #333;
}
.wrap-product-show .inquiry .read input:focus::-webkit-input-placeholder,
.wrap-product-show .inquiry .read textarea:focus::-webkit-input-placeholder {
    color: #333;
}
.wrap-product-show .inquiry .read input:focus::-o-placeholder,
.wrap-product-show .inquiry .read textarea:focus::-o-placeholder {
    color: #333;
}
.wrap-product-show .inquiry .read input:focus::-moz-placeholder,
.wrap-product-show .inquiry .read textarea:focus::-moz-placeholder {
    color: #333;
}
.wrap-product-show .inquiry .read input:focus::-ms-input-placeholder,
.wrap-product-show .inquiry .read textarea:focus::-ms-input-placeholder {
    color: #333;
}
.wrap-product-show .inquiry .send {
    text-align: center;
}
.wrap-product-show .inquiry .submit {
    line-height: 44px;

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

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

    color: #fff;
    border: none;
    border-radius: 0;
    background-color: #005b4c;
}
@media (max-width: 991px) {
    .wrap-product-show .inquiry .submit {
        line-height: 40px;

        margin-top: 20px;
        padding-bottom: 0 40px;
    }
}
.wrap-product-show .inquiry .submit:hover {
    background-color: #014338;
}
.wrap-product-show .relate-product .slick-relate-product {
    margin: 0 -15px;
}
.wrap-product-show .relate-product .slick-slide {
    padding: 15px;
}
@media (max-width: 767px) {
    .wrap-product-show .relate-product .slick-slide {
        padding: 8px;
    }
}
.wrap-product-show .relate-product .item {
    display: block;

    margin-top: 30px;

    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.wrap-product-show .relate-product .item .pic {
    padding: 16px 16px 0 16px;
}
@media (max-width: 1199px) {
    .wrap-product-show .relate-product .item .pic {
        padding: 6px 6px 0 6px;
    }
}
.wrap-product-show .relate-product .item .img-box img {
    -webkit-transition: all 1s;
    transition: all 1s;
}
.wrap-product-show .relate-product .item p {
    font-size: 16px;
    line-height: 50px;

    display: -webkit-box;
    overflow: hidden;

    height: 50px;
    margin: 0;

    text-align: center;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media (max-width: 767px) {
    .wrap-product-show .relate-product .item p {
        font-size: 14px;
    }
}
.wrap-product-show .relate-product .item span.more {
    font-size: 16px;
    line-height: 50px;

    display: block;

    padding: 0 20px;

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

    color: #999;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
@media (max-width: 767px) {
    .wrap-product-show .relate-product .item span.more {
        font-size: 14px;
    }
}
.wrap-product-show .relate-product .item span.more:after {
    font-family: 'iconfont' !important;

    float: right;

    content: '\e65a';
}
.wrap-product-show .relate-product .item:hover .img-box img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.wrap-product-show .relate-product .item:hover span.more {
    color: #fff;
    background-color: #005b4c;
}
.wrap-contact .contact {
    margin-top: 40px;
    padding: 50px 5% 160px 5%;

    border: 1px solid #e5e5e5;
}
@media (max-width: 991px) {
    .wrap-contact .contact {
        padding: 30px 10px 90px;
    }
}
.wrap-contact .contact .text {
    margin-top: 20px;
    padding-left: 14%;
}
@media (max-width: 1350px) {
    .wrap-contact .contact .text {
        padding-left: 5%;
    }
}
@media (max-width: 991px) {
    .wrap-contact .contact .text {
        margin-top: 30px;
        padding-left: 0;
    }
}
.wrap-contact .contact .text p {
    font-size: 16px;
    line-height: 2;
    line-height: 30px;

    position: relative;

    width: 100%;
    min-height: 50px;
    margin-bottom: 30px;
    padding-top: 10px;
    padding-left: 80px;
}
.wrap-contact .contact .text p:before {
    font-family: 'iconfont' !important;
    font-size: 24px;
    line-height: 50px;

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

    width: 50px;
    height: 50px;

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

    color: #fff;
    border-radius: 16px;
    background-color: #005b4c;
}
.wrap-contact .contact .text p.email:before {
    content: '\ed2e';
}
.wrap-contact .contact .text p.tel:before {
    content: '\e62c';
}
.wrap-contact .contact .text p.phone:before {
    font-size: 20px;

    content: '\e63d';
}
.wrap-contact .contact .text p.website:before {
    content: '\e649';
}
.wrap-contact .contact .text p a:hover {
    text-decoration: underline;

    color: #005b4c;
}
.wrap-contact .message .title-message p {
    line-height: 30px;

    margin: 0;

    color: #666;
}
.wrap-contact .message form {
    margin-top: 10px;
}
.wrap-contact .message form input,
.wrap-contact .message form textarea {
    font-size: 16px;
    line-height: 30px;

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

    resize: vertical;

    border: none;
    outline: none;
    background: none;
    background-color: #f7f7f7;
}
@media (max-width: 991px) {
    .wrap-contact .message form input,
    .wrap-contact .message form textarea {
        margin-top: 20px;
    }
}
.wrap-contact .message form input::-webkit-input-placeholder,
.wrap-contact .message form textarea::-webkit-input-placeholder {
    color: #444;
}
.wrap-contact .message form input:-o-placeholder,
.wrap-contact .message form textarea:-o-placeholder {
    color: #444;
}
.wrap-contact .message form input::-moz-placeholder,
.wrap-contact .message form textarea::-moz-placeholder {
    color: #444;
}
.wrap-contact .message form input:-ms-input-placeholder,
.wrap-contact .message form textarea:-ms-input-placeholder {
    color: #444;
}
.wrap-contact .message form input:focus::-webkit-input-placeholder,
.wrap-contact .message form textarea:focus::-webkit-input-placeholder {
    color: #c5c5c5;
}
.wrap-contact .message form input:focus::-o-placeholder,
.wrap-contact .message form textarea:focus::-o-placeholder {
    color: #c5c5c5;
}
.wrap-contact .message form input:focus::-moz-placeholder,
.wrap-contact .message form textarea:focus::-moz-placeholder {
    color: #c5c5c5;
}
.wrap-contact .message form input:focus::-ms-input-placeholder,
.wrap-contact .message form textarea:focus::-ms-input-placeholder {
    color: #c5c5c5;
}
.wrap-contact .message form .send {
    text-align: center;
}
.wrap-contact .message form .submit {
    font-size: 18px;
    line-height: 50px;

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

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

    color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    background-color: #005b4c;
}
.wrap-contact .message form .submit:hover {
    background-color: #014338;
}
.wrap-contact .map {
    position: relative;
    z-index: 2;

    max-width: 1180px;
    margin: 0 auto;
    margin-top: -90px;
}
@media (max-width: 991px) {
    .wrap-contact .map {
        max-width: 90%;
        margin-top: -60px;
    }
}
.wrap-contact .map #dituContent {
    overflow: hidden;

    height: 400px;

    border-radius: 10px;
}
@media (max-width: 991px) {
    .wrap-contact .map #dituContent {
        height: 300px;
    }
}
.wrap-sitemap {
    padding-top: 200px;
}
@media (max-width: 991px) {
    .wrap-sitemap {
        padding-top: 100px;
    }
}
.wrap-sitemap .title-sitemap {
    position: relative;

    overflow: hidden;

    text-align: left;
}
.wrap-sitemap .title-sitemap:after {
    position: absolute;
    top: 50%;
    left: 0;

    display: inline-block;

    width: 100%;
    height: 1px;

    content: '';

    background-color: #dcdcdc;
}
.wrap-sitemap .title-sitemap h2 {
    font-family: Impact, Arial;
    font-size: 30px;
    line-height: 1;

    position: relative;
    z-index: 2;

    display: inline-block;

    margin: 0;
    padding-right: 60px;

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

    background-color: #fff;
}
@media (max-width: 991px) {
    .wrap-sitemap .sitemap {
        margin-top: 20px;
    }
}
.wrap-sitemap .sitemap>ul>li {
    margin-top: 30px;
}
@media (max-width: 767px) {
    .wrap-sitemap .sitemap>ul>li {
        margin-top: 20px;
    }
}
.wrap-sitemap .sitemap>ul>li>a {
    font-family: Impact, Arial;
    font-size: 18px;
    line-height: 40px;

    display: inline-block;

    min-width: 180px;

    vertical-align: top;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .wrap-sitemap .sitemap>ul>li>a {
        font-size: 16px;

        display: block;
    }
}
.wrap-sitemap .sitemap>ul>li:hover>a {
    text-decoration: underline;

    color: #005b4c;
}
.wrap-sitemap .sitemap>ul>li>ul {
    display: inline-block;

    margin: 0 -15px;

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

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

    padding: 0 15px;

    vertical-align: top;
}
@media (max-width: 767px) {
    .wrap-sitemap .sitemap>ul>li>ul>li {
        margin-top: 10px;
        padding: 0 8px;
    }
}
.wrap-sitemap .sitemap>ul>li>ul>li a {
    font-size: 18px;
    line-height: 28px;

    display: block;

    min-width: 124px;
    padding: 6px 10px;

    text-align: center;
    text-transform: capitalize;

    border: 1px solid #dcdcdc;
    border-radius: 30px;
}
@media (max-width: 767px) {
    .wrap-sitemap .sitemap>ul>li>ul>li a {
        font-size: 14px;
    }
}
.wrap-sitemap .sitemap>ul>li>ul>li:hover a {
    color: #fff;
    background-color: #005b4c;
}
nav {
    margin: 40px 0 0 0;

    text-align: center;
}
.pagination {
    display: inline-block;

    padding: 16px 18px;

    background-color: #eee;
}
@media (max-width: 991px) {
    .pagination {
        margin-top: 30px;
        padding: 10px;
    }
}
.pagination li.prev a,
.pagination li.next a {
    width: 30px;
    height: 30px;
    margin: 0 10px;

    text-align: center;

    color: #fff;
    border-radius: 6px;
    background-color: #626262;
}
.pagination li.prev a span:before,
.pagination li.next a span:before {
    font-family: 'iconfont' !important;

    content: '\eb60';
}
.pagination li.prev:hover a,
.pagination li.next:hover a,
.pagination li.prev.active a,
.pagination li.next.active a {
    color: #fff;
    background-color: #005b4c;
}
.pagination li.next a span:before {
    content: '\e625';
}
.pagination li a {
    font-size: 18px;
    line-height: 30px;

    display: block;

    padding: 0 8px;

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

    color: #666;
    border: none;
    background: none;
}
.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    color: #005b4c;
    background: none;
}
.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    color: #005b4c;
    background: none;
}
.fixed-header {
    z-index: 9;
    top: 0;

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

    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
@media (max-width: 1199px) {
    .fixed-header {
        height: 70px !important;
    }
}
.fixed-header .logo {
    margin-top: 25px;
}
@media (max-width: 1199px) {
    .fixed-header .logo {
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    .fixed-header .logo {
        margin-top: 25px;
    }
}
@media (min-width: 1200px) {
    .fixed-header .nav .nav-list1>li>a {
        line-height: 80px;
    }
}
.fixed-header .pc-search {
    margin-top: 18px;
}
.fixed-header .cart,
.fixed-header .find {
    line-height: 80px;

    height: 80px;
}
@media (max-width: 1199px) {
    .fixed-header .cart,
    .fixed-header .find {
        line-height: 70px;
    }
}
.fixed-header .language {
    margin-top: 22px;
}
.fixed-header #google_translate_element {
    margin-top: 30px;
}

.product-sort ul li.ROADONE.active a,
.product-sort ul li.ROADONE:hover a {
    background-color: #d4090f;
}

.product-sort ul li.CETROC.active a,
.product-sort ul li.CETROC:hover a {
    background-color: #d5ad22;
}
.wrap-product-list .product-list .item:hover .ROADONE {
    background-color: #a21115;
}

.wrap-product-list .product-list .item:hover .ROADONE b {
    background-color: #cb1d23;
}

.wrap-product-list .product-list .item:hover .CETROC {
    background-color: #d5ad22;
}

.wrap-product-list .product-list .item:hover .CETROC b {
    background-color: #ae7f31;
}
.product-sort ul li.CETROC a img {
    display: none !important;
}
.product-sort ul li.CETROC a span {
    font-size: 20px;
}
@media(max-width:767px) {
    .product-sort ul li.CETROC a span {
        font-size: 16px;
    }
}
.table-box table tr:first-child,
.table-box table.rowspan2 tr:nth-child(2),
.table-box table.rowspan3 tr:nth-child(2),
.table-box table.rowspan3 tr:nth-child(3),
.table-box table.rowspan4 tr:nth-child(2),
.table-box table.rowspan4 tr:nth-child(3),
.table-box table.rowspan4 tr:nth-child(4),
.table-box table.rowspan5 tr:nth-child(2),
.table-box table.rowspan5 tr:nth-child(3),
.table-box table.rowspan5 tr:nth-child(4),
.table-box table.rowspan5 tr:nth-child(5) {
    background-color: #005b4c;
    color: #fff;
    font-weight: bold;
}
.table-box table tr:first-child p,
.table-box table.rowspan2 tr:nth-child(2) p,
.table-box table.rowspan3 tr:nth-child(2) p,
.table-box table.rowspan3 tr:nth-child(3) p,
.table-box table.rowspan4 tr:nth-child(2) p,
.table-box table.rowspan4 tr:nth-child(3) p,
.table-box table.rowspan4 tr:nth-child(4) p,
.table-box table.rowspan5 tr:nth-child(2) p,
.table-box table.rowspan5 tr:nth-child(3) p,
.table-box table.rowspan5 tr:nth-child(4) p,
.table-box table.rowspan5 tr:nth-child(5) p {
    color: #fff !important;
}