@font-face {
    font-family: 'Raleway';
    src: url('../font/Montserrat-Bold.woff2') format('woff2'), url('../font/Montserrat-Bold.woff') format('woff'), url('../font/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Raleway';
    src: url('../font/Montserrat-Medium.woff2') format('woff2'), url('../font/Montserrat-Medium.woff') format('woff'), url('../font/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Raleway';
    src: url('../font/Montserrat-Regular.woff2') format('woff2'), url('../font/Montserrat-Regular.woff') format('woff'), url('../font/Montserrat-Regular.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: "BebasNeue-Regular";
    font-style: normal;
    src: url(../font/BebasNeue-Regular.ttf) format("TrueType");
    font-display: fallback;
}

:root {
    --main-color: #31D5BD;
    --main-color-4: #ebf6f4;
    --main-color-6: #12c3a9;
    --dark-color: #249185;
    --pink: #FFE0F3;
    --brey: #f6f6f6;
    --cyagen: #E7E0FF;
    --cyagen-6: #F4F1FE;
    --white: #fff;
}

.white {
    color: var(--white) !important;
}

.pink {
    background: var(--pink);
}

.brey {
    background: var(--brey);
    padding: 50px 0;
}

.cyagen {
    background: var(--cyagen);
}

.cyagen-6 {
    background: var(--cyagen-6);
}

._center {
    text-align: center;
}

._mt30 {
    margin-top: 30px;
}

._mt50 {
    margin-top: 50px;
}

._mt20 {
    margin-top: 20px;
}

._pd50 {
    padding: 50px 0;
}

.main-color {
    color: var(--main-color);
}

.main-color-bg {
    background: var(--main-color);
    padding: 60px 0;
}

.main-color-4 {
    background: var(--main-color-4);
    padding: 50px 0;
}

.dark-color {
    color: var(--dark-color);
}

._block {
    display: block;
}

a {
    cursor: pointer;
}

._flex {
    display: flex;
    flex-wrap: wrap;
}

._flex_center {
    align-items: center;
}

._flex_r_center {
    justify-content: center;
}

._flex_between {
    justify-content: space-between;
}

._flex_gap_50 {
    gap: 50px;
}

._box_shadow {
    border-radius: 10px;
    box-shadow: 0 5px 5px #ddd;
    overflow: hidden;
    padding: 30px 20px;
}

._flex_col_6 {
    width: 50%;
}

._flex_col_4 {
    width: 32%;
}

._flex_col_3 {
    width: 23%;
    margin: 1%;
}

._flex_col_12 {
    width: 100%;
}

._white_bg {
    background: var(--white);
    border-radius: 10px;
    padding: 30px 40px;
}

._upper {
    text-transform: uppercase;
}

.max1200 {
    margin: 0 auto;
    max-width: 1200px;
}

.max1080 {
    margin: 0 auto;
    max-width: 1080px;
}

.max800 {
    margin: 0 auto;
    max-width: 800px;
}

.max700 {
    margin: 0 auto;
    max-width: 700px;
}

._links ul {
    display: flex;
    justify-content: flex-end;
}

._relative {
    position: relative;
}

.layout {
    max-width: 1700px;
    margin: 0 auto;
}

.top-bar {
    background: #000;
    padding: 15px 0;
    line-height: 24px;
}

.head-mail i {
    color: var(--white);
    margin-right: 5px;
}

.head-mail a {
    color: var(--white);
}

.head-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.head-search {
    /* margin-right: 20px; */
}

.head-search i {
    color: #fff;
}

.head-search-wrap {
    display: none;
}

.nav-bar {
    transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 11;
}

.navActive .nav-bar {
    background: var(--white);
    top: 0;
    box-shadow: 0 1px 5px #ccc;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 11;
}

.head-logo img {
    max-width: 160px;
}

.nav-subs,
.nav-sub {
    display: none;
    transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}

.nav-sub {
    position: absolute;
    min-width: 300px;
    background: rgba(255, 255, 255, 1);
    left: 50%;
    top: 100%;
    box-sizing: border-box;
    padding: 20px 30px;
    transform: translateX(-50%);
    z-index: 2;
}

.nav-sub-wrap {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 300px;
    background: var(--white);
    padding: 20px 30px;
}

.nav-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.nav-item {
    /* padding: 0 25px; */
    display: flex;
    align-items: center;
}

.nav-item>a {
    display: block;
    font-size: 16px;
    line-height: 80px;
    color: #fff;
    position: relative;
}

.nav-item:hover>a {
    color: var(--main-color);
}

.navActive .nav-item>a {
    color: #444;
}

.navActive .head-search i {
    color: #444;
}

.nav-item>a:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-color);
    transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}

.nav-item:hover>a:after {
    width: 100%;
}

._child_ico:after {
    font-family: 'fontawesome';
    content: "\f0d7";
    font-size: 12px;
    display: inline-block;
    padding-left: 10px;
    color: #444;
    line-height: 20px;
}

.navActive ._child_ico:after {
    color: #444;
}

.nav-item:hover ._child_ico:after {
    content: "\f0d8";
}

.nav-item:hover .nav-subs {
    display: block;
}

.nav-item:hover .nav-sub {
    display: block;
}

.nav-sub-title {
    position: relative;
}

.nav-sub-title>a {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 0;
    color: #444;
    display: block;
    position: relative;
}

.nav-sub-item>a {
    color: #444;
    display: block;
    line-height: 24px;
    font-size: 16px;
    padding: 10px 0;
}

.nav-sub-item>a:hover,
.nav-sub-title>a:hover {
    color: var(--main-color);
}

.nav-sub-title:hover .nav-sub-wrap {
    display: block;
}

#_lang,
#_menu {
    display: none;
}


._index {
    position: relative;
}

._index_banner .swiper-button-prev:after,
._index_banner .swiper-button-next:after {
    display: none;
}

._index_banner .swiper-button-prev {
    left: 32px;
}

._index_banner .swiper-button-next {
    right: 32px;
}

._index_banner .swiper-button-prev,
._index_banner .swiper-button-next {
    width: auto;
}

._index_banner .swiper-button-prev:hover i,
._index_banner .swiper-button-next:hover i {
    background: rgba(255, 255, 255, 1);
}

._index_banner .swiper-button-prev i,
._index_banner .swiper-button-next i {
    color: var(--white);
    background: rgba(255, 255, 255, .4);
    border-radius: 100%;
    width: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 24px;
}

._index_banner .swiper-button-prev:hover i,
._index_banner .swiper-button-next:hover i {
    background: rgba(255, 255, 255, 1);
    color: var(--main-color);
}

._index_banner {
    overflow: hidden;
    position: relative;
}

._index_banner .swiper-slide img {
    transform: scale(1.08);
    transition: all 3s ease-out;
    -moz-transition: all 3s ease-out;
    -webkit-transition: all 3s ease-out;
    -o-transition: all 3s ease-out;
    width: 100%;
}

._index_banner .swiper-slide-active img {
    transform: scale(1);
}

._index_banner .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

._index_banner .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 2px solid var(--white);
    background: inherit;
    opacity: 0.7;
}

._index_banner .swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
    border-color: var(--white);
    opacity: 1;
}

._banner_desc {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

._banner_desc._left {
    text-align: left;
}

._banner_desc._left a {
    margin-right: 20px;
}

._banner_txt {
    margin: 0 auto;
}

._banner_txt span {
    display: block;
    font-size: 60px;
    line-height: 1.2;
    padding-top: 20px;
}

._banner_txt h2,
._banner_txt h1 {
    font-size: clamp(20px, 3.5vw, 60px);
    line-height: 1.3;
    font-weight: bold;
}

._left .max800 {
    margin: 0;
}

._left .max700 {
    margin: 0;
}

._left ._sys_btn {
    justify-content: left;
}

._banner_txt h2 b,
._banner_txt h1 b {
    font-weight: bold;
}

._banner_txt p {
    font-size: 20px;
    line-height: 1.6;
    padding-top: 30px;
}

._sys_btn {
    padding-top: 50px;
    display: flex;
    justify-content: center;
}

._sys_btn a {
    width: max-content;
    border-radius: 5px;
    padding: 10px 40px;
    margin: 0 auto;
    border: 2px solid var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    margin: 0 10px;
}

._sys_btn a:hover {
    background: var(--main-color);
    color: var(--white);
    border: 2px solid var(--main-color);
}

._banner_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
}

._index {
    padding: 70px 0 70px;
}

._index_company_intr {
    /*background: #f1f1f1;*/
}

._index_title h2 {
    font-size: 44px;
    text-align: center;
    line-height: 1.1;
    color: #444;
    font-weight: 700;
}

/* ._index_company_txt ._index_title h1 {
    font-size: clamp(20px, 2.1vw, 40px);
} */

._index_title {
    padding-bottom: 30px;
    position: relative;
}

/* _index_company */
._index_company_img,
._index_company_wrap {
    /* width: 46%; */
    flex: 1;
    max-width: 50%;
}

._index_company_intr .layout {
    /* padding: 40px 50px; */
    /* box-shadow: 0 10px 20px #ddd; */
    /* border-radius: 30px; */
}

._index_company_wrap h2 {
    text-align: left;
}

._index_company_wrap ._sys_btn a {
    margin: 0;
}

._index_company_desc {
    font-size: 18px;
    line-height: 1.5;
    color: #777;
}

@media (max-width: 1440px) {
    ._index_company_desc {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
    }
}

._index_company_desc ul {
    padding-top: 20px;
}

._index_company_desc li {
    padding-left: 20px;
    position: relative;
}

._index_company_desc li:before {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--main-color);
    border-radius: 50%;
    left: 0;
    top: 8.5px;
}

.sysbtn {
    padding-top: 50px;
}

.sysbtn a {
    width: max-content;
    border-radius: 50px;
    padding: 10px 10px 10px 40px;
    box-shadow: 0 5px 8px #ddd;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.sysbtn a:hover {
    background: var(--dark-color);
    color: var(--white);
}

.sysbtn i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--dark-color);
    color: var(--white);
    margin-left: 50px;
    text-align: center;
}

.sysbtn a:hover i {
    background: var(--white);
    color: var(--dark-color);
}

._index_video_ico {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 22;
}

._index_company_img .swiper-button-next::after,
._index_company_img .swiper-button-prev::after {
    font-size: calc(var(--swiper-navigation-size)/ 2.5);
}

._index_company_img .swiper-button-next,
._index_company_img .swiper-button-prev {
    position: absolute;
    top: 60px;
    width: calc(var(--swiper-navigation-size) * 1.5);
    height: calc(var(--swiper-navigation-size) * 1.5);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 4));
    background: rgba(0, 0, 0, .4);
    border-radius: 50%;
}

._index_company_img .swiper-button-prev {
    left: 30px;
    right: auto;
}

._index_company_img .swiper-button-next {
    right: auto;
    left: calc(var(--swiper-navigation-size) * 1.5 + 50px);
}


/**/
._promote_item {
    width: 32.333333%;
    padding: 30px;
    box-shadow: 0 5px 10px #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: .5s;
}

._promote_item:hover {
    transform: translateY(-4px);
}

._promote_item_btn a {
    color: var(--dark-color);
    display: block;
    transition: .5s;
    padding-top: 20px;
}

._promote_item_btn img {
    width: 20px;
    margin-left: 5px;
}

._promote_item_btn a:hover {
    transform: translateX(4px);
}

._promote_item_btn a:hover i {
    color: var(--main-color);
}

._promote_item_img {
    overflow: hidden;
    border-radius: 10px;
}

._promote_item_img img {
    transition: .5s;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

._promote_item:hover img {
    transform: scale(1.05);
}

._promote_item_info {
    padding-top: 20px;
}

._promote_item_txt {
    flex: 1;
}

._promote_item_txt h3 {
    font-size: 20px;
    line-height: 1.4;
    color: #444;
    font-weight: 700;
    margin-bottom: 10px;
}

._promote_item_txt p {
    font-size: 16px;
    line-height: 1.4;
    color: #777;
}

._index_desc {
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
    color: #777;
    padding-bottom: 30px;
    position: relative;
}


/**/

._why_list * {
    transition: .5s;
}

._why_list {
    overflow: hidden;
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

._why_item {
    position: relative;
    margin-bottom: 20px;
    padding: 30px 40px;
    box-shadow: 0 5px 10px #ddd;
    border-radius: 12px;
}

._why_item:hover {
    transform: translateY(-4px);
}

._why_item_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

._why_item_txt {
    flex: 1;
}

._why_item_txt h3 {
    font-size: 22px;
    color: #444;
    /* text-transform: uppercase; */
}

._why_item_txt p {
    font-size: 15px;
    color: #444;
    padding-top: 10px;
    line-height: 1.6;
}

/* ._why_item_btn i {
    display: block;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--main-color);
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
}

._why_item_btn i:hover {
    background: var(--main-color);
    color: var(--white);
} */

._index_title h3 {
    font-size: 20px;
    padding-bottom: 10px;
}

._index_title p {
    font-size: 20px;
    color: #777;
    padding-top: 10px;
    text-align: center;
}

._why_item_img {
    overflow: hidden;
    border-radius: 20px;
}

._why_item_img img {
    transition: .5s;
}

._why_item:hover img {
    transform: scale(1.05);
}

._why_item_img {
    margin-bottom: 20px;
}

._why_item_img i {
    display: block;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--main-color);
    line-height: 80px;
    text-align: center;
    font-size: 40px;
}

._why_item_img i:hover {
    transform: rotateZ(180deg);
}


._brand_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

._brand_item {
    background-color: var(--white);
    color: #555;
    font-size: 16px;
    text-align: center;
    padding: 30px 40px;
    border-radius: 12px;
    transition: .5s;
    box-shadow: 0 5 10px #ddd;
}

._brand_item:hover {
    transform: translateY(-4px);
}


/**/

.mySwiper4 .swiper-slide {
    height: auto;
}

.mySwiper3-item {
    background: var(--white);
    border-radius: 10px;
    text-align: center;
    padding: 20px 30px;
    height: 100%;
}

.mySwiper3-item h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.mySwiper3-item p {
    font-size: 16px;
    color: #777;
}

.mySwiper3 {
    position: relative;
}

.mySwiper3:before {
    content: "";
    display: block;
    width: calc(100% - var(--swiper-navigation-size)*2);
    height: 2px;
    background: var(--white);
    opacity: .4;
    position: absolute;
    left: var(--swiper-navigation-size);
    top: calc(50% - 1px);
    z-index: -1;
}

._index_feature_wrapper {
    position: relative;
}

._index_feature_wrapper .swiper-button-next {
    right: 0;
}

._index_feature_wrapper .swiper-button-prev {
    left: 0;
}

._index_feature_wrapper .swiper-button-next,
._index_feature_wrapper .swiper-button-prev {
    top: 40px;
    width: calc(var(--swiper-navigation-size));
    height: calc(var(--swiper-navigation-size));
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    color: var(--swiper-navigation-color, var(--main-color));
    background: var(--white);
    border-radius: 50%;
}

._index_feature_wrapper .swiper-button-next::after,
._index_feature_wrapper .swiper-button-prev::after {
    font-size: calc(var(--swiper-navigation-size)/ 44 * 16);
}

.mySwiper3 .swiper-slide {
    text-align: center;
    padding: 20px 0;
}

.mySwiper3 .swiper-slide h5 {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--white);
    position: relative;
    margin: 0 auto;
}

.mySwiper3 .swiper-slide h5:before {
    content: "";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    opacity: .6;
    top: -5px;
    left: -5px;
    z-index: -1;
}

.mySwiper4 .swiper-slide {
    padding: 10px 0;
}

.mySwiper4 .swiper-slide:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
    left: calc(50% - 4px);
    top: -8px;
    margin: 0 auto;
}

.mySwiper3 .swiper-slide-thumb-active h5 {
    background: var(--main-color);
    color: var(--white);
}

._index_feature {
    position: relative;
}

._index_feature:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #121828;
}

._index_feature_wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

._index_feature_wrapper * {
    transition: .5s;
}

._index_feature_item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

._index_feature_item:hover ._feature_item_img img {
    transform: scale(1.05);
}

._index_feature_item:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 2;
}

._index_feature_item:hover:after {
    display: none;
}

._feature_item_info {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 20px;
}

._feature_item_txt h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

._feature_item_btn {
    padding-top: 20px;
}

._feature_item_btn a {
    color: var(--main-color);
}

._feature_item_btn img {
    width: 20px;
    filter: brightness(2);
}

/**/
.product_slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product_item {
    width: 31.333333%;
}

.item_img {
    overflow: hidden;
    border-radius: 20px;
}

.item_img img {
    transition: .5s;
}

.product_item:hover img {
    transform: scale(1.05);
}

.item_cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.item_cont_btn i {
    color: var(--main-color);
    width: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 20px;
}

.item_cont_txt .item_title {
    font-size: 20px;
    color: #444;
}

.item_cont_txt p {
    font-size: 16px;
    color: #777;
    padding-top: 10px;
    line-height: 20px;
}

/**/
.index_blog_bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.index_blog_item {
    width: calc(100% / 6 - 10px);
}

.index_blog_btn {
    padding-top: 30px;
}

.index_blog_btn a {
    display: block;
    margin: 0 auto;
    width: max-content;
    font-size: 16px;
    line-height: 30px;
    padding: 5px 30px;
    border-radius: 50px;
    background: var(--main-color);
    color: var(--white);
}

.index_blog_btn a:hover {
    background: var(--white);
    color: var(--main-color);
}

._index_adv_item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

._index_adv_img,
._index_adv_desc {
    width: 50%;
    overflow: hidden;
}

._index_adv_img {
    border-radius: 20px;
}

._index_adv_desc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

._index_adv_txt {
    width: 70%;
}

._index_adv_txt h4 {
    font-size: 24px;
    color: #444;
    margin-bottom: 20px;
}

._index_adv_txt p {
    font-size: 16px;
    line-height: 1.7;
    color: #777;
    text-align: justify;
}

.inquiry-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.inquiry-desc {
    width: max-content;
    font-size: 36px;
    color: var(--white);
    margin-right: 40px;
}

.inquiry-wrapper a {
    display: block;
    width: 200px;
    border-radius: 10px;
    background: var(--white);
    color: var(--main-color);
    text-align: center;
    font-size: 20px;
    line-height: 40px;
}

.inquiry-wrapper a:hover {
    background: #444;
    color: var(--white);
}


:root {
    --swiper-theme-color: var(--white);
}

.footer-wrapper {
    background: var(--dark-color);
}

.foot-wrap {
    padding: 50px 0 30px;
}

.foot-wrap .layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.foot-wrap .foot-item {
    width: 25%;
}

.foot-logo img {
    max-width: 180px;
}

.foot-desc {
    color: var(--white);
    font-size: 16px;
    line-height: 1.5;
    padding-top: 20px;
}

.foot-wrap .foot-logo {
    padding-right: 20px;
}

.foot-company-info {
    font-size: 16px;
    color: #f9f9f9;
    line-height: 20px;
}

.social-share {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-share i {
    display: block;
    width: 50px;
    line-height: 30px;
    text-align: center;
    border: 1px solid var(--white);
    border-radius: 3px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.social-share i:hover {
    background: var(--main-color);
    border: 1px solid var(--main-color);
}

.foot-item h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 40px;
}

.foot-link-list a {
    display: block;
    color: #f1f1f1;
    font-size: 16px;
    line-height: 20px;
    padding: 5px 0;
}

.foot-link-list a:hover {
    color: var(--main-color);
}


.foot-contcat-list li {
    display: flex;
}

.foot-contcat-list a,
.foot-contcat-list i {
    display: block;
    color: #f1f1f1;
    font-size: 16px;
    line-height: 20px;
    padding: 5px 0;
}

.foot-item.foot-pro-cate {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.foot-contcat-list a {
    flex: 1;
}

.foot-contcat-list i {
    width: 20px;
    text-align: center;
    margin-right: 5px;
}

.foot {
    padding: 20px 0;
    border-top: 1px solid #0f7e72;
}

.copyright {
    font-size: 16px;
    color: var(--white);
    line-height: 20px;
}

._links a {
    display: block;
    font-size: 16px;
    color: var(--white);
    line-height: 20px;
}

._links li {
    padding: 0 5px;
}

._index_case {
    background: #f1f1f1;
}

.inquiry_wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99;
    left: 0;
    top: 0;
}

.inquiry_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 2;
    left: 0;
    top: 0;
}

.inquiry_form {
    position: absolute;
    background: var(--white);
    width: 800px;
    padding: 80px 50px 60px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

input,
textarea {
    outline: 0;
}

.inquiry_form_item input,
.inquiry_form_item textarea {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 20px;
    line-height: 50px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #555;
}

.inquiry_form_save {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.inquiry_form_save input {
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
    padding: 0 20px;
    line-height: 40px;
    border-radius: 5px;
    font-size: 20px;
    border: 1px solid var(--dark-color);
    width: 100%;
}

.inquiry_form_save input:hover {
    background: var(--white);
    color: var(--dark-color);
}

.inquiry_form_close {
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 30px;
    background: url(../ico/search_btn_close.png);
    width: 50px;
    height: 50px;
    display: block;
}

.inquiry_form_close:hover {
    background-position-y: 50px;
    animation: xuanzhuan 1s ease;
    animation-fill-mode: forwards;
}

._iconF {
    display: block;
    text-align: center;
}

._icon {
    width: 80px;
}

._inquiry_title {
    font-size: 30px;
    text-align: center;
    padding: 10px 0;
}

._inquiry_wrap {
    padding-bottom: 20px;
}

._inquiry_wrap p {
    text-align: center;
    font-size: 16px;
}

._flex_left {
    width: calc(33.333333% - 10px);
}

._flex_right {
    width: calc(66.666666% - 10px);
}

._flex_top {
    width: 100%;
    margin-bottom: 20px;
}

._flex_top ._index_case_item {
    width: calc(50% - 10px);
}

._flex_bottom ._index_case_item {
    width: calc(50% - 10px);
}

._index_case_item {
    position: relative;
}

._index_case_desc {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

._flex_left {
    overflow: hidden;
}

._flex_left ._index_case_item {
    height: 100%;
}

._flex_left ._index_case_item ._index_case_img {
    height: calc(100% - 30px);
}

._flex_left ._index_case_item ._index_case_img img {
    height: calc(100%);
    object-fit: cover;
}

._index_case_txt h3 {
    font-size: 16px;
    line-height: 20px;
    padding-top: 10px;
}

._index_case_txt p {
    line-height: 1.6;
    font-size: 15px;
}

._index_case_img {
    overflow: hidden;
}

._index_case_img img {
    transition: all .5s ease-in-out;
}

._index_case_img:hover img {
    transform: scale(1.05);
}

._index_case_item:hover ._index_case_desc {
    /*background: rgba(0,0,0,.7);*/
}

._index_case_item:hover ._index_case_txt p span {
    /*color: #ED0900;*/
}

/* language */
.change-language-title span {
    color: #fff;
    font-size: 16px;
}

.navActive .change-language-title span {
    color: #444;
}

.lang-wrap {
    position: relative;
}

.prisna-wp-translate-seo {
    display: none;
    font-family: Arial, Helvetica, sans-serif;
}

.mobile-head-language .prisna-wp-translate-seo,
.change-language .prisna-wp-translate-seo {
    display: block
}

.change-language .change-language-title,
.change-language .change-language-title a {
    font-size: 10pt;
    color: #fff;
}

.change-language .change-language-title {
    padding: 0;
}

.change-language .change-language-title a:after {
    font-family: 'fontawesome';
    content: "\f0d7";
    font-size: 12px;
    display: inline-block;
    padding-left: 2px;
    color: #fff;
}

.navActive .change-language .change-language-title a:after {
    color: #444;
}

.change-language:hover .change-language-title a:after {
    -moz-transform: rotate(-360deg);
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.change-language .change-language-cont {
    position: absolute;
    top: 35px;
    right: 0;
    width: 360px;
    background: var(--white);
    padding: 20px 10px 20px 20px;
    transform: scale3d(0.9, 0.9, 1);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow-y: scroll;
    max-height: 80vh;
}

.change-language:hover .change-language-cont {
    transform: scale3d(1, 1, 1);
    opacity: 1;
    visibility: visible;
}

.change-language .change-language-cont li {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    margin: 0 0 10px;
    font-size: 10pt;
    overflow: hidden;
    padding: 0 10px 0 0;
}

.change-language .change-language-cont .lang-item-hide {
    display: none !important;
}

.change-language .change-language-cont .lang-more {
    position: relative;
    display: block;
    text-align: center;
    cursor: pointer;
    line-height: 30px;
}

.change-language .change-language-cont .more-active {
    font-size: 20px;
}

.language-flag span {
    position: relative;
    display: inline-block;
    vertical-align: top;
    *display: inline;
    *zoom: 1;
    white-space: nowrap;
    padding: 0 0 0 33px;
    overflow: hidden;
}

.change-language ::-webkit-scrollbar {
    width: 5px;
}

.change-language ::-webkit-scrollbar-track {
    background-color: var(--white);
}

.change-language ::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .3);
    border-radius: 3px;
}

.change-language .language-cont:hover::-webkit-scrollbar-thumb {
    display: block
}

.language-flag .country-flag {
    position: absolute;
    left: 0;
    top: 50%;
    display: inline-block;
    vertical-align: top;
    *display: inline;
    *zoom: 1;
    background-repeat: no-repeat;
    background-image: url(../ico/all-m.gif);
    width: 22px;
    height: 16px;
    margin: -8px 5px 0;
}

li.language-flag a {
    position: relative;
}

.language-flag-af .country-flag {
    background-position: 0 0px !important;
}

.language-flag-am .country-flag {
    background-position: 0 -16px !important;
}

.language-flag-ar .country-flag {
    background-position: 0 -32px !important;
}

.language-flag-az .country-flag {
    background-position: 0 -48px !important;
}

.language-flag-be .country-flag {
    background-position: 0 -64px !important;
}

.language-flag-bg .country-flag {
    background-position: 0 -80px !important;
}

.language-flag-bn .country-flag {
    background-position: 0 -96px !important;
}

.language-flag-bs .country-flag {
    background-position: 0 -112px !important;
}

.language-flag-ca .country-flag {
    background-position: 0 -128px !important;
}

.language-flag-ceb .country-flag {
    background-position: 0 -144px !important;
}

.language-flag-co .country-flag {
    background-position: 0 -160px !important;
}

.language-flag-cs .country-flag {
    background-position: 0 -176px !important;
}

.language-flag-cy .country-flag {
    background-position: 0 -192px !important;
}

.language-flag-da .country-flag {
    background-position: 0 -208px !important;
}

.language-flag-de .country-flag {
    background-position: 0 -224px !important;
}

.language-flag-el .country-flag {
    background-position: 0 -240px !important;
}

.language-flag-en .country-flag {
    background-position: 0 -256px !important;
}

.language-flag-eo .country-flag {
    background-position: 0 -272px !important;
}

.language-flag-es .country-flag {
    background-position: 0 -288px !important;
}

.language-flag-et .country-flag {
    background-position: 0 -304px !important;
}

.language-flag-eu .country-flag {
    background-position: 0 -320px !important;
}

.language-flag-fa .country-flag {
    background-position: 0 -336px !important;
}

.language-flag-fi .country-flag {
    background-position: 0 -352px !important;
}

.language-flag-fr .country-flag {
    background-position: 0 -368px !important;
}

.language-flag-fy .country-flag {
    background-position: 0 -384px !important;
}

.language-flag-ga .country-flag {
    background-position: 0 -400px !important;
}

.language-flag-gd .country-flag {
    background-position: 0 -416px !important;
}

.language-flag-gl .country-flag {
    background-position: 0 -432px !important;
}

.language-flag-gu .country-flag {
    background-position: 0 -448px !important;
}

.language-flag-ha .country-flag {
    background-position: 0 -464px !important;
}

.language-flag-haw .country-flag {
    background-position: 0 -480px !important;
}

.language-flag-hi .country-flag {
    background-position: 0 -496px !important;
}

.language-flag-hmn .country-flag {
    background-position: 0 -512px !important;
}

.language-flag-hr .country-flag {
    background-position: 0 -528px !important;
}

.language-flag-ht .country-flag {
    background-position: 0 -544px !important;
}

.language-flag-hu .country-flag {
    background-position: 0 -560px !important;
}

.language-flag-hy .country-flag {
    background-position: 0 -576px !important;
}

.language-flag-id .country-flag {
    background-position: 0 -592px !important;
}

.language-flag-ig .country-flag {
    background-position: 0 -608px !important;
}

.language-flag-is .country-flag {
    background-position: 0 -624px !important;
}

.language-flag-it .country-flag {
    background-position: 0 -640px !important;
}

.language-flag-iw .country-flag {
    background-position: 0 -656px !important;
}

.language-flag-ja .country-flag {
    background-position: 0 -672px !important;
}

.language-flag-jw .country-flag {
    background-position: 0 -688px !important;
}

.language-flag-ka .country-flag {
    background-position: 0 -704px !important;
}

.language-flag-kk .country-flag {
    background-position: 0 -720px !important;
}

.language-flag-km .country-flag {
    background-position: 0 -736px !important;
}

.language-flag-kn .country-flag {
    background-position: 0 -752px !important;
}

.language-flag-ko .country-flag {
    background-position: 0 -768px !important;
}

.language-flag-ku .country-flag {
    background-position: 0 -784px !important;
}

.language-flag-ky .country-flag {
    background-position: 0 -800px !important;
}

.language-flag-la .country-flag {
    background-position: 0 -816px !important;
}

.language-flag-lb .country-flag {
    background-position: 0 -832px !important;
}

.language-flag-lo .country-flag {
    background-position: 0 -848px !important;
}

.language-flag-lt .country-flag {
    background-position: 0 -864px !important;
}

.language-flag-lv .country-flag {
    background-position: 0 -880px !important;
}

.language-flag-mg .country-flag {
    background-position: 0 -896px !important;
}

.language-flag-mi .country-flag {
    background-position: 0 -912px !important;
}

.language-flag-mk .country-flag {
    background-position: 0 -928px !important;
}

.language-flag-ml .country-flag {
    background-position: 0 -944px !important;
}

.language-flag-mn .country-flag {
    background-position: 0 -960px !important;
}

.language-flag-mr .country-flag {
    background-position: 0 -976px !important;
}

.language-flag-ms .country-flag {
    background-position: 0 -992px !important;
}

.language-flag-mt .country-flag {
    background-position: 0 -1008px !important;
}

.language-flag-my .country-flag {
    background-position: 0 -1024px !important;
}

.language-flag-ne .country-flag {
    background-position: 0 -1040px !important;
}

.language-flag-nl .country-flag {
    background-position: 0 -1056px !important;
}

.language-flag-no .country-flag {
    background-position: 0 -1072px !important;
}

.language-flag-ny .country-flag {
    background-position: 0 -1088px !important;
}

.language-flag-pa .country-flag {
    background-position: 0 -1104px !important;
}

.language-flag-pl .country-flag {
    background-position: 0 -1120px !important;
}

.language-flag-ps .country-flag {
    background-position: 0 -1136px !important;
}

.language-flag-pt .country-flag {
    background-position: 0 -1152px !important;
}

.language-flag-ro .country-flag {
    background-position: 0 -1168px !important;
}

.language-flag-ru .country-flag {
    background-position: 0 -1184px !important;
}

.language-flag-sd .country-flag {
    background-position: 0 -1200px !important;
}

.language-flag-si .country-flag {
    background-position: 0 -1216px !important;
}

.language-flag-sk .country-flag {
    background-position: 0 -1232px !important;
}

.language-flag-sl .country-flag {
    background-position: 0 -1248px !important;
}

.language-flag-sm .country-flag {
    background-position: 0 -1264px !important;
}

.language-flag-sn .country-flag {
    background-position: 0 -1280px !important;
}

.language-flag-so .country-flag {
    background-position: 0 -1296px !important;
}

.language-flag-sq .country-flag {
    background-position: 0 -1312px !important;
}

.language-flag-sr .country-flag {
    background-position: 0 -1328px !important;
}

.language-flag-st .country-flag {
    background-position: 0 -1344px !important;
}

.language-flag-su .country-flag {
    background-position: 0 -1360px !important;
}

.language-flag-sv .country-flag {
    background-position: 0 -1376px !important;
}

.language-flag-sw .country-flag {
    background-position: 0 -1392px !important;
}

.language-flag-ta .country-flag {
    background-position: 0 -1408px !important;
}

.language-flag-te .country-flag {
    background-position: 0 -1424px !important;
}

.language-flag-tg .country-flag {
    background-position: 0 -1440px !important;
}

.language-flag-th .country-flag {
    background-position: 0 -1456px !important;
}

.language-flag-tl .country-flag {
    background-position: 0 -1472px !important;
}

.language-flag-tr .country-flag {
    background-position: 0 -1488px !important;
}

.language-flag-uk .country-flag {
    background-position: 0 -1504px !important;
}

.language-flag-ur .country-flag {
    background-position: 0 -1520px !important;
}

.language-flag-uz .country-flag {
    background-position: 0 -1536px !important;
}

.language-flag-vi .country-flag {
    background-position: 0 -1552px !important;
}

.language-flag-xh .country-flag {
    background-position: 0 -1568px !important;
}

.language-flag-yi .country-flag {
    background-position: 0 -1584px !important;
}

.language-flag-yo .country-flag {
    background-position: 0 -1600px !important;
}

.language-flag-zh-CN .country-flag {
    background-position: 0 -1616px !important;
}

.language-flag-zh-TW .country-flag {
    background-position: 0 -1632px !important;
}

.language-flag-zu .country-flag {
    background-position: 0 -1648px !important;
}

.head-search-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.search-wrap {
    background: var(--white);
    width: 100%;
    padding: 40px 20%;
    box-shadow: 0 0px 5px #ccc;
}

.search-ipt {
    width: 100%;
    line-height: 50px;
    border: 0;
    border-bottom: 1px solid #ccc;
    text-transform: uppercase;
    font-size: 30px;
    color: #666;
    padding: 0 5px;
}

.search-attr {
    display: block;
    text-align: right;
    color: #555;
    font-size: 14px;
    margin-top: 10px;
}

#btn-search-close {
    background: url(../ico/search_btn_close.png);
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
}

#btn-search-close:hover {
    background-position-y: 50px;
    animation: xuanzhuan 1s ease;
    animation-fill-mode: forwards;
}


@keyframes xuanzhuan {
    0% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes ToLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.inner-feedback-item {
    box-shadow: 0 0 5px #ddd;
    border-radius: 20px;
    padding: 30px 40px;
    margin-bottom: 30px;
    height: auto;
}

.inner-feedback-wraper {
    padding: 0px 20px 0;
    position: relative;
}

.inner-feedback-list {
    padding: 30px 10px 0;
}

.inner-feedback-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #777;
    padding: 10px 0;
}

.inner-feedback-wraper .swiper-button-next {
    right: 0;
}

.inner-feedback-wraper .swiper-button-prev {
    left: 0;
}

.inner-feedback-wraper .swiper-button-next,
.inner-feedback-wraper .swiper-button-prev {
    width: calc(var(--swiper-navigation-size));
    height: calc(var(--swiper-navigation-size));
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    color: var(--swiper-navigation-color, var(--white));
    background: var(--main-color);
    border-radius: 50%;
}

.inner-feedback-wraper .swiper-button-next::after,
.inner-feedback-wraper .swiper-button-prev::after {
    font-size: calc(var(--swiper-navigation-size)/ 44 * 16);
}

.inner-feedback-img {
    display: flex;
    gap: 10px;
    align-items: center;
}

.inner-feedback-img small {
    color: #777;
}

.inner-feedback-icon img {
    width: 30px;
    padding: 40px 0 20px;
    opacity: .7;
}

#_menu,
#_close,
#_lang,
.nav-bar .nav-wrap>.nav-item>.fa,
._body_bg,
.pro-left-title>i,
.nav-bar .nav-wrap>.nav-item .nav-sub-title .fa {
    display: none;
}

/* inner */
._inner_banner {
    min-height: 300px;
    position: relative;
    background: var(--main-color-4);
}

.inner-banner-desc {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-banner-desc h1 {
    color: var(--white);
}

._inner_banner img {
    filter: brightness(.8);
    min-height: 300px;
    object-fit: cover;
}

.inner-position {
    background: var(--main-color-4);
    padding: 25px 0;
    /*border-top: 1px solid #ddd;*/
}

.inner-position .layout {
    display: flex;
    flex-wrap: wrap;
}

.inner-position a {
    display: block;
    font-size: 16px;
    line-height: 20px;
    color: #333;
    font-weight: 300;
}

.inner-position .layout>i {
    display: block;
    font-size: 16px;
    line-height: 20px;
    color: #333;
    padding: 0 10px;
}

._inner_wrapper {
    padding: 50px 0;
}

._inner_title {
    margin-bottom: 30px;
}

._inner_title h1,
._inner_title h2 {
    font-size: 40px;
    text-align: center;
    font-weight: 500;
    color: var(--main-color);
}


/* product */

.inner_pro .pro-left {
    width: 26%;
}

.inner_pro .pro-right {
    width: 100%;
}

input {
    outline: 0;
}

.pro-search {
    position: relative;
    margin-bottom: 20px;
}

.pro-search input {
    width: 100%;
    line-height: 40px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 0 10px;
}

.pro-search i#pro_search_btn {
    position: absolute;
    right: 10px;
    top: 50%;
    color: #999;
    transform: translateY(-50%);
    font-size: 20px;
}

.pro-left-item {
    margin-bottom: 20px;
}

.pro-left-title {
    background: var(--main-color);
    font-size: 20px;
    padding: 15px;
    color: var(--white);
}

.cate-list {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.cate-list .cate-item a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.cate-tree .cate-item {
    padding: 0 15px;
}

.cate-item>a:hover {
    color: var(--main-color);
}

.cate-tree {
    display: none;
}

.hot-pro-list {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.hot-pro-item {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.hot-pro-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hot-pro-item a img {
    width: 100px;
    border: 1px solid #ddd;
}

.hot-pro-item a span {
    display: block;
    width: calc(100% - 110px);
}

.hot-pro-item a:hover span {
    color: var(--main-color);
}

.cate-item {
    position: relative;
}

.cate-item i {
    position: absolute;
    right: 15px;
    font-size: 16px;
    top: 16px;
    width: 20px;
    text-align: center;
}

.pro-list * {
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.pro-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pro-list .pro-item {
    width: calc((100% - 60px) / 4);
    /*        margin: 0 .5% 20px;*/
    border: 1px solid var(--main-color);
    background: var(--main-color);
}

.pro-title {
    /*background: var(--main-color);*/
}

.pro-title h3 {
    color: var(--white);
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    padding: 8px 0;
    border-top: 1px solid var(--main-color);
}

.pro-item .pro-img {
    overflow: hidden;
}

.pro-item:hover {
    background: var(--white);
}

.pro-item:hover .pro-title h3 {
    color: var(--main-color);
}

.pro-item:hover .pro-img img {
    transform: scale(1.05);
}

.pro-right ._inner_title h1 {
    text-align: left;
    color: #333;
}

._cate_tit {
    width: 100%;
}

/* product-show */
.inner_pro_show .pro-right {
    width: 100%;
}

.pro-desc {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 10px;
    background: var(--white);
}

.pro-desc .pro-img {
    width: 500px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.pro-desc .pro-info {
    width: calc(100% - 520px);
    padding: 20px 10px;
}

.pro-info h1 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 32px;
}

.pro-img .swiper-wrapper {
    display: flex;
    justify-content: flex-start;
}

.mySwiper {
    overflow: hidden;
    width: 100%;
}

.mySwiper2 {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.pro-desc .swiper-slide {
    border: 1px solid #eee;
}

.pro-desc img {
    width: 100%;
}

.mySwiper .swiper-slide-thumb-active:after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    left: 0;
    top: 0;
}

.pro-detail {
    padding: 20px;
    background: var(--white);
}

.desc-title {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.desc-title {
    font-size: 20px;
    text-transform: uppercase;
}

.pro-position .desc {
    padding: 20px 0;
    background: #f1f1f1;
}

.pro-list ul {
    display: flex;
    flex-wrap: wrap;
}

.pro-list li {
    padding: 5px 10px;
    border-radius: 3px;
    border: 1px solid var(--main-color);
    margin-right: 10px;
}

.pro-detail-wrap {
    margin-bottom: 30px;
}

#inquiry_btn {
    color: var(--white);
    background: var(--main-color);
    display: block;
    width: max-content;
    font-size: 20px;
    text-align: center;
    padding: 5px 20px;
    border-radius: 3px;
    margin-top: 30px;
    line-height: 30px;
    text-transform: uppercase;
    border: 1px solid var(--main-color);
}

#inquiry_btn:hover {
    color: var(--main-color);
    background: var(--white);
    border: 1px solid var(--main-color);
}

/* news */

.news-list * {
    transition: all .5s ease-in-out;
}

.news-item {
    width: 100%;
    display: flex;
    padding: 20px 15px 20px 90px;
    background: var(--white);
    box-shadow: 0 5px 10px #ccc;
    margin-bottom: 40px;
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news-item .news-time {
    background: #303030;
    padding: 10px;
    text-align: right;
    position: absolute;
    left: 0;
    top: 0;
}

.news-time big {
    font-size: 18px;
    color: var(--white);
    display: block;
}

.news-time small {
    font-size: 14px;
    color: var(--white);
}

.news-item .news-info {
    padding: 20px 0;
    width: calc(100% - 600px);
}

.news-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 300;
}

.news-info a {
    display: block;
    border: 1px solid var(--main-color);
    width: 120px;
    text-align: center;
    border-radius: 20px;
    line-height: 36px;
}

.news-info p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 200;
}

.news-item .news-img {
    width: 500px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
}

.news-item:hover img {
    transform: scale(1.05);
}

.news-item:hover .news-info a {
    color: var(--white);
    background: var(--main-color);
}

.news-item:hover .news-time {
    background: var(--main-color);
    padding-left: 60px;
}

.news-item:hover {
    padding-left: 140px
}


/* news-show */

._news_show ._inner_title h1 {
    text-align: left;
    font-weight: 300;
    font-size: 26px;
}

._news_show ._inner_title small {
    font-size: 14px;
    font-weight: 200;
    color: #777;
    padding-top: 10px;
    display: block;
}

._news_show ._inner_title {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

._inner_show_wrap p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    padding: 10px 0;
    font-weight: 300;
}

._inner_show_wrap {
    /*padding: 30px 0;*/
    border-bottom: 1px solid #ccc;
}

._inner_btn_wrap {
    padding: 20px 0;
}

._inner_btn_item {
    display: flex;
}

._inner_btn_item span {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #444;
    margin-right: 10px;
}

._inner_btn_item a {
    display: block;
    font-size: 16px;
    font-weight: 200;
}

/* message */

._inner_form ._flex_col_6 {
    width: 49%;
}

.form-item {
    margin-bottom: 30px;
}

._inner_form input,
._inner_form textarea {
    width: 100%;
    line-height: 40px;
    border: 1px solid #ccc;
    border-radius: 3px;
    outline: 0;
    padding: 5px;
    color: #777;
    font-weight: 200;
}

._inner_form input:focus,
._inner_form textarea:focus {
    border-color: var(--main-color);
}

.form-btn {
    text-align: center;
}

.form-btn button {
    line-height: 40px;
    background: var(--main-color);
    color: var(--white);
    border-radius: 20px;
    border: 1px solid var(--main-color);
    padding: 0 40px;
    text-transform: uppercase;
}

.form-btn button:hover {
    background: var(--white);
    color: var(--main-color);
}

/* contact */
._message {
    padding: 50px 0;
    background: var(--main-color-4);
    margin-top: 50px;
}


/* page */

.page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
}

.page a {
    display: block;
    margin: 0 10px;
    font-size: 16px;
    line-height: 30px;
    width: 50px;
    text-align: center;
    padding: 5px 0;
    border: 1px solid #ccc;
}

.page i {
    font-size: 16px;
}

.page a:hover,
.page a.active {
    color: var(--white);
    background: var(--main-color);
    border-color: var(--main-color);
}

/* 新闻 + 应用 */

.news-list_ny {
    width: 100%;
    margin-top: 16px;
}

.news-list_ny ul {
    display: flex;
    flex-wrap: wrap;
}

.news-list_ny ul li {
    width: 30.33333333333%;
    margin: 1.5%;
    border-radius: 10px;
    height: 451px;
    overflow: hidden;
    background: #fff;
    margin-top: 30px;
    box-shadow: 0 2px 10px 2px #ebebec;
}

.news-img_ny {
    width: 100%;
    overflow: hidden;
    max-height: 240px;
}

.news-img_ny img {
    width: 100%;
    object-fit: cover;
    transition: all .6s ease;
}

.news-words_ny {
    width: 100%;
    padding: 56px 32px;
    background: #fff;
    position: relative;
    z-index: 2;
    transition: all .4s ease;
}

.news-words_ny h6 a {
    display: block;
    font-size: 20px;
    font-weight: bold;
}

.news-words_ny p {
    font-size: 16px;
    color: #666;
    transition: all .4s ease;
    line-height: 26px;
    margin-top: 0px;
    height: 0px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-words_ny span {
    display: block;
    margin-top: 42px;
    font-size: 16px;
    color: #848484;
}

.news-list_ny ul li:hover .news-img_ny img {
    transform: scale(1.1);
}

.news-list_ny ul li:hover .news-words_ny {
    margin-top: -78px;
}

.news-list_ny ul li:hover .news-words_ny p {
    height: 52px;
    margin-top: 26px;
}


/*单页排版*/

.inner-item-title {
    margin-bottom: 30px;
}

.inner-item-title h2 {
    font-size: 30px;
    text-transform: capitalize;
}

._equ .inner-item-title h2 {
    background: #f1f1f1;
    padding: 20px;
    border-top-left-radius: 20px;
}

.inner-item-title p {
    color: #777;
    padding-top: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.inner-item ._flex_col_6 {
    width: 46%;
}

.inner-item-txt p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.inner-item-txt p {
    padding: 10px 0;
}

._inquiry_btn {
    background: var(--main-color);
    height: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

._inquiry_btn ._icon {
    fill: var(--white);
}

._inquiry_btn ._iconF {
    display: block;
}

._inquiry_btn h4 {
    font-size: 20px;
    padding-top: 10px;
}


/* about单页 */

._about_inquiry {
    box-shadow: 0 5px 10px #ddd;
    border-radius: 12px;
    overflow: hidden;
}

._about_inquiry_wrap,
._about_inquiry_desc {
    width: 50%;
}

._about_inquiry_desc {
    padding: 50px;
    background: var(--dark-color);
}

._about_inquiry_wrap {
    padding: 50px;
    background: var(--white);
}

._about_inquiry_title {
    padding-bottom: 30px;
}

._about_inquiry_title h2 {
    font-weight: bold;
    font-size: 30px;
    color: #fff;
}

._about_inquiry {
    position: relative;
}

._about_inquiry:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--main-color);
    z-index: -1;
}

._about_inquiry:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--pink-6);
    z-index: -1;
}

._about_inquiry_list p {
    font-size: 18px;
    line-height: 32px;
    position: relative;
    color: #fff;
    padding: 5px 0 5px 24px;
}

._about_inquiry_list p a {
    color: #fff;
}

._about_inquiry_list p:before {
    content: "\f058";
    font-size: 18px;
    font-family: "fontawesome";
    position: absolute;
    left: 0;
    top: 5px;
    line-height: 32px;
    color: var(--white);
}

/* about1 */
.strength-item {
    background: var(--main-color-4);
    padding: 20px 30px;
    border-radius: 10px;
}

.strength-item img {
    max-width: 80px;
}

.strength-item h4 {
    font-size: 20px;
    padding: 10px 0;
}

.inner-item-img {
    position: relative;
}

.inner-item-img a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    display: block;
    background: rgba(0, 0, 0, .8);
    color: var(--white);
    border-radius: 3px;
    padding: 10px 30px;
}

.detail-content {
    margin-top: 60px;
}

.detail-content .block-list {
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-top: 50px;
}

.detail-content .block-list:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid transparent;
    border-bottom: 16px solid var(--main-color);
    position: absolute;
    left: calc(50% - 12px);
    top: -16px;
    z-index: 2;
}

.detail-content .block-list:after {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background: #ccc;
    position: absolute;
    left: calc(50% - 1px);
    top: 0;
    z-index: 1;
}

.block-list .block-item {
    /*padding-bottom: 30px;*/
    width: calc(50%);
    padding-left: 30px;
    padding-top: 120px;
    position: relative;
}

.block-list .block-item:last-child:before {
    content: "";
    display: block;
    background: #fff;
    width: 4px;
    height: calc(50% + 20px);
    position: absolute;
    right: -2px;
    bottom: 0;
    z-index: 3;
}

.block-list .block-item .content:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 4px solid var(--main-color);
    border-radius: 50%;
    position: absolute;
    box-sizing: border-box;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.block-list .block-item:nth-child(2n+1) {
    padding: 0;
    padding-right: 30px;
    padding-bottom: 30px;
}

.block-list .block-item:nth-child(2n) .content:after {
    left: -40px;
    right: auto;
}

.block-item:last-child:before {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: calc(50% + 20px);
    background: #fff;
    bottom: 0;
    right: -2px;
    z-index: 10;
}

.block-list .block-item .content:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    z-index: -1;
}

.block-list .block-item .content:hover:before {
    height: 100%;
}

.block-list p {
    font-size: 16px;
    color: #777;
    line-height: 1.6;
}

.block-item span {
    display: block;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
}

.block-list .block-item .content:hover p,
.block-list .block-item .content:hover span {
    color: #fff;
}

.block-item .content {
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 5px 10px #eee;
    padding: 20px 30px;
    box-sizing: border-box;
    position: relative;
    position: relative;
    display: flex;
}

.content-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.fl .content-img {
    margin-left: 30px;
}

.fr .content-img {
    margin-right: 30px;
}

.content-img img {
    object-fit: cover;
    height: 100%;
}

.content-txt {
    flex: 1;
}

.fl {
    float: left;
    flex-direction: row-reverse;
}

.fr {
    float: right;
}

.fl p {
    text-align: right;
}

.fl span {
    text-align: right;
}

@media screen and (max-width: 768px) {
    .block-list .block-item {
        padding: 0;
        width: 100%;
    }

    .block-list .block-item:nth-child(2n+1) {
        padding: 0;
        border: 0;
    }

    .detail-content .block-list:before,
    .detail-content .block-list:after {
        display: none;
    }

    .detail-content .block-list {
        margin-bottom: 20px;
        padding-top: 20px;
    }
}


/*about2*/
.mySwiper6 .swiper-slide {
    background: #f1f1f1;
    padding: 10px 15px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
}

.mySwiper5 .swiper-slide {
    cursor: grab;
}

.mySwiper6 h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    text-transform: capitalize;
}

.mySwiper6 .swiper-slide:before {
    content: "";
    display: block;
    width: 4px;
    height: 20px;
    background: var(--main-color);
    margin-right: 12px;
    margin-top: 1px;
    border-radius: 10px;
}

.mySwiper6 .swiper-slide-thumb-active {
    background: var(--main-color);
    color: #fff;
}

.mySwiper6 .swiper-slide-thumb-active:before {
    background: #fff;
}

._sol_desc p {
    font-size: 16px;
    line-height: 1.6;
    padding: 10px 0;
    color: #444;
}

._tube {
    width: 8px;
    height: 8px;
    display: inline-block;
    background: var(--main-color);
    margin-right: 5px;
    margin-bottom: 2px;
}

._sol_ad h4,
._sol_sum h4 {
    font-size: 16px;
    line-height: 1.6;
    padding: 20px 30px 10px;
    color: #444;
    font-weight: bold;
}

._sol_sum {
    background: #EFEFEF;
    width: 100%;
    padding-bottom: 20px;
}

._sol_ad {
    background: #EFEFEF;
    width: 100%;
    margin-top: 20px;
}

._sol_sum p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    padding: 0 30px;
}

._title {
    width: 40%;
}

._sol_desc {
    width: 58%;
}

._title h2 {
    font-size: 40px;
    font-weight: 300;
}

._title p {
    font-size: 18px;
    color: #444;
    line-height: 1.2;
    padding-top: 10px;
}

._title a {
    display: block;
    width: fit-content;
    padding: 10px 30px;
    margin-top: 30px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    font-size: 16px;
    color: var(--main-color);
    font-weight: 200;
}

.inner_sol ._inner_title p {
    font-size: 16px;
    padding-top: 10px;
}

.inner_sol ._inner_title h1 {
    text-align: left;
}

.mySwiper5 {
    padding-top: 40px;
}

.mySwiper4 img {
    margin: 0 auto;
    display: block;
}

.sol-desc {
    position: relative;
}

.sol-desc .swiper-button-next,
.sol-desc .swiper-button-prev {
    top: 20px;
    background: var(--main-color);
}

.sol-desc .swiper-button-next {
    right: 0px;
}

.sol-desc .swiper-button-prev {
    left: 0px;
}

.sol-desc .swiper-button-next::after,
.sol-desc .swiper-button-prev::after {
    font-size: calc(var(--swiper-navigation-size) / 2);
}

/* about3 */

.inner-item-desc table {
    width: auto;
    margin: 0 auto;
    min-width: 1080px;
}

.inner-item-desc td {
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    color: #555;
}

.equ-item h4 {
    font-size: 16px;
    padding: 10px 0 20px;
}

/* about4 */
.inner-item-desc>p {
    font-size: 16px;
    line-height: 1.7;
    padding: 5px 0;
    color: #555;
}

.inner-item-desc h5 {
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
    font-weight: bold;
}

.manu-item {
    width: 80%;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
}

._process_wrapper .swiper-slide {
    padding: 50px 20px 30px;
    height: auto;
    color: #555;
    line-height: 1.6;
}

._process_item {
    box-shadow: 0 5px 10px #ddd;
    height: 100%;
    border-radius: 10px;
    padding: 40px 40px 30px;
}

._process_wrapper .swiper-button-next,
._process_wrapper .swiper-button-prev {
    border-radius: 50%;
    background: var(--main-color);
    width: calc(var(--swiper-navigation-size));
}

._process_wrapper .swiper-button-prev {
    left: 0;
}

._process_wrapper .swiper-button-next {
    right: 0;
}

._process_wrapper .swiper-button-next:after,
._process_wrapper .swiper-button-prev:after {
    font-size: calc(var(--swiper-navigation-size) / 44* 20);
}

._process_item small {
    display: block;
    position: absolute;
    width: 60px;
    height: 60px;
    line-height: 60px !important;
    left: calc(50% - 30px);
    top: 20px;
    background: #fff;
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    box-shadow: 0 5px 10px #ddd;
    text-align: center;
}


/* about5 */
.faq-item {
    --faqColor: var(--main-color);
}

.faq-item .faq-title.show-title:before,
.faq-item .faq-title:before {
    display: none;
}

.faq .faq-list {
    margin-top: 30px;
}

.faq-list .faq-item {
    margin: 0 0 30px;
    border: 0;
    /*box-shadow: 0 5px 10px #eee;*/
    border-radius: 5px;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--faqColor);
}

.faq-item .faq-title {
    padding: 20px 20px;
    display: flex;
    position: relative;
    /*background: #E3E3E3;*/
    margin: 0;
    align-items: flex-start;
}

.faq-item .faq-title h4 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    flex: 1;
}

.faq-item .faq-title span {
    display: block;
    width: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--faqColor);
    color: #fff;
    border-radius: 5px;
    font-size: 20px;
    margin-right: 20px;
}

.faq-item .faq-desc {
    display: none;
}

.faq-item .faq-desc p {
    margin-top: 20px;
    line-height: 1.5;
    font-size: 16px;
    color: #666;
    margin: 0;
    padding: 20px 30px 30px;
    text-align: left !important;
}

.faq-item:hover .faq-title {
    background: var(--faqColor);
}

.faq-item:hover .faq-title h4 {
    color: #fff;
}

.faq-item:hover .faq-title span {
    background: #fff;
    color: var(--faqColor);
}

/* pro-detail */
.sep-p table {
    margin-top: 10px;
}

.sep-p td {
    padding: 10px;
    font-size: 16px;
}

.sep-p p {
    font-size: 16px;
    line-height: 1.7;
    padding: 5px 0;
}

.sep-p h2 {
    padding-bottom: 10px;
}

._child {
    display: flex;
    flex-wrap: wrap;
}

._child img {
    border-radius: 5px;
    margin: .5%;
    border: 1px solid #ddd;
}

._four img {
    width: 24%;
}

.sep-p ._flex_col_6 img {
    max-width: 96%;
    max-height: 490px;
}

/* inner-banner */
.inner-banner-desc ._inner_title h1 {
    color: var(--white);
}

/* Capabilities 1 */
._flex_col_6_49 {
    width: 49%;
}

.engin-item-desc .inner-item-txt {
    width: 80%;
    margin: 0 auto;
}

.engin-item-desc .inner-item-txt p {
    text-align: justify;
}

.adv-list {
    width: 90%;
    margin-left: auto;
}

.adv-item-tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.adv-btn {
    width: 50px;
    height: 50px;
    background-image: url(../ico/faq_btn.png);
    overflow: hidden;
    background-position-y: 0;
}

.adv-btn:hover {
    animation: _turn .5s ease-in-out;
}

.adv-btn.open {
    background-position-y: 50px;
}

.adv-btn.open:hover {
    animation: none;
}

.adv-item {
    padding: 40px 0;
    border-bottom: 1px solid #ccc;
}

.adv-item-tit h4 {
    font-size: 26px;
    color: var(--main-color);
}

._border {
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.adv-item-desc {
    padding-top: 20px;
    display: none;
}

.adv-item-desc p {
    color: #555;
    line-height: 1.7;
}

/* Capabilities 2 */

.video-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.video-item {
    width: calc((100% - 40px) / 3);
}

.video-tit {
    font-size: 20px;
    color: #444;
    text-align: center;
    padding-top: 10px;
    line-height: 24px;
}

.video-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    z-index: 22;
}

.video-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    top: 0;
    left: 0;
}

.video {
    position: absolute;
    width: 60%;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-close-btn {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 50px;
    top: 50px;
    background-image: url(../ico/video_close_btn.png);
    overflow: hidden;
}

.video-close-btn:hover {
    background-position-y: 50px;
    animation: xuanzhuan 1s ease;
    animation-fill-mode: forwards;
}

.cap_bg {
    background-attachment: fixed;
    background-size: cover;
    padding: 50px 0;
    margin: 50px 0;
}

.inner-item-btn {
    width: max-content;
    padding: 10px 20px;
    color: var(--main-color);
    background: var(--white);
    border-radius: 5px;
    margin-top: 30px;
    cursor: pointer;
}

._pt50 {
    padding-top: 50px;
}

._flex_col_9 {
    width: 74%;
}

._flex_col_3_24 {
    width: 24%;
}

.font20 {
    font-size: 20px !important;
}

.max900 {
    max-width: 900px;
    margin: 0 auto;
}

.inner-blog-wrapper {
    padding: 50px 0;
}

.inner-blog-list .swiper-slide {
    padding: 20px;
}

.blog-slide {
    box-shadow: 0 0 10px #ddd;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.blog-tit a {
    display: block;
    font-size: 20px;
    color: #444;
    line-height: 24px;
    padding: 20px;
}

.blog-btn a {
    display: block;
    font-size: 16px;
    color: #555;
    line-height: 20px;
    padding: 0 20px 20px;
}

.inner-blog-list .swiper-button-next,
.inner-blog-list .swiper-button-prev {
    border-radius: 50%;
    background: var(--main-color);
    width: calc(var(--swiper-navigation-size));
}

.inner-blog-list .swiper-button-next:after,
.inner-blog-list .swiper-button-prev:after {
    font-size: calc(var(--swiper-navigation-size) / 44* 20);
}

.inner-item-txt h4 {
    font-size: 20px;
    padding-bottom: 20px;
}

.engin-item-desc>p {
    line-height: 1.6;
    color: #555;
}

.engin-item-desc table {
    margin: 20px 0;
}

.engin-item-desc td {
    padding: 10px;
    color: #555;
}

.engin-item-desc tr:nth-child(even) {
    background: #f1f1f1;
}

._mt30 {
    margin-top: 30px;
}


._index_goal {
    /* padding-top: 0; */
}

._goal_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

._goal_item {
    /* width: 24%;
    margin: 0.5%; */
    flex: 1;
}

._goal_item_title {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

._goal_item_number {
    display: flex;
    align-items: center;
    color: var(--dark-color);
}

._goal_item_number .counter,
._goal_item_number span {
    display: block;
    font-size: 55px;
    font-family: BebasNeue-Regular;
}

._goal_item_number em {
    font-size: 30px;
    margin-left: 5px;
}

._goal_item_title b {
    font-size: 30px;
    color: var(--dark-color);
}

._goal_item_txt p {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    color: #777;
}

._index_faq ._index_title h2,
._index_faq ._index_desc {
    text-align: left;
    margin: 0;
}

._index_title h4 {
    font-size: 20px;
    padding-top: 20px;
}

._index_faq_wrapper {
    display: flex;
    gap: 50px;
}

._index_faq_tit {
    width: 500px;
}

._index_faq_list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

._index_faq_item {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 10px #eee;
    padding: 20px 30px;
}

._index_faq_item_tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._index_faq_item_desc {
    display: none;
}


.faq-btn {
    width: 50px;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg width='50' height='100' viewBox='0 0 50 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='24' y='15' width='2' height='20' fill='%23333'%3E%3C/rect%3E%3Crect x='15' y='24' width='20' height='2' fill='%23333'%3E%3C/rect%3E%3Crect x='15' y='74' width='20' height='2' fill='%23333'%3E%3C/rect%3E%3C/svg%3E");
    overflow: hidden;
    background-position-y: 0;
    display: block;
}

.faq-btn:hover {
    animation: _turn .5s ease-in-out;
}

.faq-btn.open {
    background-position-y: 50px;
}

.faq-btn.open:hover {
    animation: none;
}

._index_faq_item_tit h4 {
    font-size: 18px;
    color: var(--faqColor);
    flex: 1
}

._border {
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.faq-desc {
    padding-top: 20px;
    display: none;
}

._index_faq_item_desc p {
    color: #777;
    line-height: 1.7;
    font-size: 15px;
}


@media (max-width:768px) {
    ._index_faq_item_tit h4 {
        font-size: 18px;
    }

    ._index_faq_item_desc p {
        font-size: 14px
    }
}


@keyframes _turn {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotateZ(180deg);
    }
}


@media (max-width: 1600px) {
    .layout {
        max-width: 1400px;
    }
}

@media (max-width: 1440px) {
    .layout {
        max-width: 1300px;
    }

    .inquiry_form {
        padding: 20px 50px 20px;
    }
}

@media (max-width: 1366px) {
    .layout {
        padding: 0 20px;
    }

    .nav-item {
        padding: 0 15px;
    }
}


@media (max-width: 1200px) {
    .nav-item {
        padding: 0 10px;
    }

    .nav-item>a {
        font-size: 16px
    }

    ._index_company_desc {
        font-size: 14px;
    }

    .inquiry_form {
        padding: 20px 30px 20px;
        width: 80%;
    }

    .inquiry_form_item input,
    .inquiry_form_item textarea {
        margin-bottom: 10px;
        line-height: 30px;
    }

    ._icon {
        width: 50px;
    }
}

@media (max-width: 1080px) {
    .nav-item {
        padding: 0 10px;
    }

    .nav-item>a {
        text-transform: capitalize;
    }

    .mySwiper6 {
        padding: 0 30px;
    }
}

@media (max-width: 960px) {

    .nav-wrap,
    .change-language .change-language-cont {
        display: none;
        position: fixed;
        width: 70%;
        background: var(--white);
        height: 100%;
        left: 0;
        top: 0;
        flex-wrap: wrap;
        align-content: flex-start;
        overflow-y: scroll;
        animation: ToLeft 1s ease;
        animation-fill-mode: forwards;
        z-index: 99;
    }

    .change-language .change-language-cont {
        display: block;
        opacity: 1;
        visibility: hidden;
        background-color: var(--white);
        visibility: visible;
        transform: scale3d(1, 1, 1);
        overflow-y: scroll;
        max-height: none;
    }

    .change-language .change-language-cont li {
        width: 100%;
    }

    .navActive .nav-bar {
        padding: 10px 0;
    }

    #_menu,
    #_lang,
    .nav-bar .nav-wrap>.nav-item>.fa,
    .nav-bar .nav-wrap>.nav-item .nav-sub-title .fa {
        display: block;
    }

    .lang-wrap,
    .lang-wrap .medium-title,
    ._child_ico {
        display: none;
    }

    .head-right i.fa {
        font-size: 22px;
    }

    #_lang {
        margin-right: 20px;
    }

    #_close,
    #_close_lang {
        background-color: var(--white);
        background-image: url(../ico/search_btn_close.png);
        width: 50px;
        height: 50px;
        position: fixed;
        left: calc(70% + 5px);
        top: 0;
        z-index: 99;
    }

    ._body_bg {
        position: fixed;
        width: 100%;
        background: rgba(0, 0, 0, .7);
        height: 100%;
        left: 0;
        top: 0;
        z-index: 80;
    }

    .nav-item>a {
        line-height: 60px;
    }

    .nav-item {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .nav-sub-title {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        padding: 0 20px;
    }

    .nav-sub {
        position: static;
        transform: translateX(0);
        width: 100%;
        padding: 0 10px;
        background: #EEEEEE;
        min-width: auto;
    }

    .nav-sub-wrap {
        position: static;
        transform: translateX(0);
        width: 100%;
        padding: 0 10px;
        background: #EEEEEE;
        min-width: auto;
    }

    .index-main-wrapper,
    .inner-main-wrapper {
        padding-top: 65px;
    }

    ._index_title h1,
    ._index_title h2 {
        font-size: 20px;
    }

    .foot-wrap .foot-item {
        width: 48%;
    }

    ._banner_txt p {
        font-size: 14px;
        padding-top: 10px;
    }

    ._sys_btn a {
        padding: 5px 20px;
        font-size: 14px;
        margin: 0;
    }

    ._sys_btn {
        padding-top: 20px;
        gap: 20px;
    }

    ._banner_txt h2,
    ._banner_txt h1 {
        text-transform: capitalize;
    }

    ._banner_desc {
        width: 80%;
        left: 10%;
    }

    ._banner_desc._left a {
        margin-right: 0;
    }

    ._index_company_img,
    ._index_company_wrap {
        width: 100%;
        padding: 10px 0;
    }

    .sysbtn {
        padding-top: 20px;
    }

    ._index {
        padding: 30px 0 30px;
    }

    ._promote_item {
        width: 49%;
    }

    ._index_desc {
        font-size: 13px;
        padding-bottom: 20px;
    }

    ._promote_item_txt h4 {
        font-size: 16px;
    }

    ._promote_item_txt p {
        font-size: 13px;
    }

    ._index_adv_item {
        gap: 20px;
        padding: 10px 0;
    }

    ._index_adv_img,
    ._index_adv_desc {
        width: 100%;
    }

    ._index_adv_txt {
        width: 100%;
    }

    ._index_adv_txt h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    ._index_adv_txt p {
        font-size: 14px;
    }

    ._flex_col_4 {
        width: 48%;
    }

    ._why_item_txt h4 {
        font-size: 16px;
    }

    ._why_item_txt p {
        font-size: 13px;
    }

    .inner-feedback-desc p {
        font-size: 13px;
    }

    .inquiry-desc {
        font-size: 20px;
    }

    .foot-item.foot-pro-cate {
        display: none;
    }

    .foot-contcat h3 {
        display: none;
    }

    .foot-desc {
        font-size: 13px;
    }

    .inner-item ._flex_col_6 {
        width: 100%;
    }

    .strength-list ._flex_col_3 {
        width: 48%;
    }

    .inner-item-title h2 {
        font-size: 20px;
        text-transform: capitalize;
    }

    .inner-item-txt p {
        font-size: 14px;
    }

    .strength-item h4 {
        font-size: 16px;
        padding: 10px 0;
    }

    .strength-item p {
        font-size: 13px;
    }

    .strength-item img {
        max-width: 60px;
    }

    .inner-item-title p {
        padding-top: 10px;
        font-size: 14px;
    }

    ._about_inquiry_wrap,
    ._about_inquiry_desc {
        width: 100%;
    }

    ._about_inquiry .layout {
        padding: 0;
    }

    ._about_inquiry_wrap {
        padding: 20px;
    }

    ._about_inquiry_desc {
        padding: 20px;
    }

    ._title h2 {
        font-size: 20px;
        font-weight: 500;
    }

    ._title p {
        font-size: 14px;
    }

    ._table_wrap {
        overflow-x: scroll;
    }

    .inner-item-desc td {
        font-size: 14px;
    }

    .inner-item-desc h5 {
        font-size: 16px;
    }

    ._process_item p {
        font-size: 13px;
    }

    .inner-item-desc p {
        font-size: 14px;
    }

    .inner-item-desc>p {
        font-size: 13px;
    }

    .manu-item {
        width: 100%;
    }

    .manu-item p {
        font-size: 14px;
    }

    ._flex {
        gap: 20px;
    }

    .faq-item .faq-title h4 {
        font-size: 16px;
    }

    .faq-item .faq-desc p {
        font-size: 14px;
    }

    ._flex_col_9 {
        width: 100%;
    }

    ._flex_col_3_24 {
        width: 100%;
    }

    .video-item {
        width: calc((100% - 20px) / 2);
    }

    .video-tit {
        font-size: 16px;
    }

    .engin-item-desc>p {
        font-size: 14px;
    }

    ._rubber_item_table,
    ._rubber_item_img {
        width: 100%;
    }

    ._need_desc p {
        font-size: 13px;
    }

    ._need_desc h4 {
        font-size: 16px;
    }

    ._provide_wrapper h4 {
        font-size: 16px;
    }

    ._flex_col_6_50 {
        width: calc(100);
    }

    .inner-item-title h4 {
        font-size: 20px;
    }

    ._custom_silicone_list ._custom_silicone_item {
        width: calc((100% - 40px) / 3);
    }

    .mold-item-desc p {
        font-size: 14px;
    }

    .mold-item-tit h4 {
        font-size: 16px;
        padding: 20px 0 10px;
    }

    ._cast_tit h5 {
        font-size: 12px;
    }

    ._inner_title h1,
    ._inner_title h2 {
        font-size: 24px;
    }

    .news-item .news-img {
        width: 100%;
    }

    .news-item .news-info {
        padding: 20px 0;
        width: calc(100%);
    }

    .pro-list .pro-item {
        width: calc((100% - 20px) / 2);
    }
}


@media (max-width: 768px) {
    ._flex_col_6 {
        width: 100%;
        text-align: center;
    }

    ._links ul {
        justify-content: center;
    }

    .copyright {
        font-size: 14px;
    }

    ._links a {
        font-size: 14px;
    }

    ._sol_desc,
    ._title {
        width: 100%;
    }

    ._title {
        margin-top: 20px;
    }

    ._flex_col_6_49 {
        width: 100%;
    }

    .adv-list {
        width: 100%;
    }

    .adv-item-tit h4 {
        font-size: 20px;
    }

    .adv-item-desc p {
        font-size: 14px;
    }

    .blog-tit a {
        font-size: 16px;
    }

    .moldor-wrapper,
    .moldor-nav {
        width: 100%;
    }

    .moldor-wrap .engin-item-desc h4 {
        font-size: 16px;
    }

    .moldor-item {
        height: auto;
        width: calc(25% - 15px);
    }

    .moldor-item h4 {
        font-size: 16px;
    }

    .moldor-nav {
        flex-direction: row;
        margin-top: 20px;
        gap: 20px;
    }

    .moldor-wrap {
        padding: 20px 20px;
    }

    ._step_item {
        width: calc((100% - 20px) / 2);
    }

    ._step_item h4 {
        font-size: 16px;
    }

    ._step_item p {
        font-size: 14px;
    }

    .inquiry_form {
        width: 100%;
        height: 100vh;
        overflow-y: auto;
    }

    ._choose_item {
        width: calc((100% - 40px) / 2);
        padding: 20px 30px;
    }

    ._choose_desc h4 {
        font-size: 16px;
        padding: 10px 0;
    }

    . ._choose_desc p {
        font-size: 14px;
    }

    ._cast_item {
        width: calc((100% - 40px) / 3);
    }

    ._cast_item:nth-child(4) {
        order: 6;
    }

    ._cast_item:nth-child(5) {
        order: 5;
    }

    ._cast_item:nth-child(4) {
        order: 4;
    }

    ._cast_item:nth-child(3):after {
        top: auto;
        bottom: -10px;
        right: calc(50% - 7px);
        transform: rotate(90deg);
    }

    ._cast_item:nth-child(4):after,
    ._cast_item:nth-child(5):after {
        transform: rotate(180deg);
        right: auto;
        left: -10px;
    }

    .post-item-img,
    .post-item-desc {
        width: 100%;
    }

    .post-item-desc {
        padding: 20px 30px;
    }

    .pro-desc .pro-img {
        width: 100%;
    }

    .pro-desc .pro-info {
        width: calc(100%);
    }
}

@media (max-width: 640px) {
    .foot-wrap .foot-item {
        width: 100%;
        text-align: center;
    }

    .social-share {
        justify-content: center;
    }

    .foot-pro-cate,
    .foot-news {
        display: none;
    }

    .foot-contcat-list li {
        display: block;
    }

    .foot-contcat-list a {
        flex: none;
    }

    .foot-contcat-list a,
    .foot-contcat-list i {
        display: inline;
    }

    .foot-inquiry-btn {
        display: flex;
        justify-content: center;
    }

    ._banner_txt p {
        display: none;
    }

    ._index_banner .swiper-button-prev,
    ._index_banner .swiper-button-next {
        display: none;
    }

    .inquiry-desc {
        width: 100%;
        margin-right: 0;
        text-align: center;
        margin-bottom: 10px;
    }

    ._sys_btn a {
        padding: 5px 10px;
    }

    .video-item {
        width: calc(100%);
    }

    .moldor-item {
        width: calc(50% - 10px);
    }

    ._custom_rubber_list ._custom_rubber_item,
    ._custom_silicone_list ._custom_silicone_item {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 480px) {
    ._promote_item {
        width: 100%;
    }

    ._flex_col_4 {
        width: 100%;
    }

    ._step_item {
        width: calc(100%);
    }

    ._need_item {
        flex-wrap: wrap;
        text-align: center;
    }

    ._need_item ._need_img {
        width: 60px;
        margin: 0 auto 20px;
    }

    ._need_item ._need_desc {
        flex: auto;
        width: 100%;
    }

    ._choose_item {
        width: calc(100%);
    }

    ._choose_list {
        gap: 20px;
    }
}

._index_company_intr video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #2ecc71;
    --secondary-dark: #27ae60;
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --bg-light: #f5f7fa;
    --border-color: #ddd;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --success-color: #2ecc71;
    --white: #ffffff;
}

.faq-card-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 25px;
    font-family: 'Segoe UI', sans-serif;
}

.faq-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 6px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.question-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-question h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
}

.faq-answer {
    display: flex;
    padding-top: 15px;
    border-top: 1px solid #eaeaea;
}

.answer-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
    flex: 1;
}