@media screen and (max-width: 786px) {
    .content {
        padding: 0 1.2rem;
    }

    .content .content, .content .small_content{
        padding-left: 0;
        padding-right: 0;
    }

    .small_content {
        padding: 0 1.2rem;
    }
    .head h1{
        font-size: 30px;
        line-height: 1.5;
    }
    .head h2 {
        font-size: 25px;
        line-height: 1.5;
    }

    .head p {
        font-size: 0.9rem;
        line-height: 1.5rem;
    }

    .button_arrow {
        font-size: 15px;
        padding: 13px 30px;
        padding-right: 50px;
    }

    .button_arrow:after {
        right: 28px !important;
        width: 12px !important;
    }

    header {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    header .header_main .flex {
        padding: 0 1.2rem;
    }

    header .header_main .logo {
        top: 0;
    }

    header .header_main .logo img {
        width: 100px;
    }

    header .header_main nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75vw;
        height: 100vh;
        background-color: #fff;
        z-index: 19999;
        transition: all 0.3s;
        display: block;
        overflow: auto;
    }

    header .header_main nav.active {
        left: 0;
    }

    header .header_main nav .close {
        padding: 2rem 1.2rem 1.2rem;
        border-bottom: 1px solid #eee;
        text-align: right;
    }

    header .header_main nav .close span {
        display: inline-block;
        width: 15px;
        filter: brightness(0);
        height: 15px;
        background: url('../img/mobile-menu/close.svg') no-repeat center / contain;
    }

    header .header_main nav div>ul {
        display: block;
    }

    header .header_main nav div>ul>li {
        margin-right: 0;
    }

    header .header_main nav div>ul>li::before {
        display: none;
    }

    header .header_main nav div>ul>li.menu-item-has-children {
        padding: 0;
    }

    header .header_main nav div>ul>li:hover.current-menu-item,
    header .header_main nav div>ul>li:hover.current-menu-parent {
        color: var(--theme_color);
    }

    header .header_main nav div>ul>li:hover>a {
        color: var(--title_color);
    }

    header .header_main nav div>ul>li>a {
        color: var(--title_color);
        line-height: 4rem;
        position: relative;
        padding: 0 0 0 4rem;
    }

    header .header_main nav div>ul>li>a::before {
        content: "";
        width: 23px;
        height: 23px;
        position: absolute;
        left: 2rem;
        top: 50%;
        transform: translateY(-50%);
        background: url('../img/mobile-menu/menu-default.svg') no-repeat center / contain;
    }

    header .header_main nav div>ul>li.menu-item-home>a::before {
        background-image: url(../img/mobile-menu/menu-home.svg);
    }

    header .header_main nav div>ul>li.product-icon>a::before {
        background-image: url(../img/mobile-menu/menu-product.svg);
    }

    header .header_main nav div>ul>li.about-icon>a::before {
        background-image: url(../img/mobile-menu/menu-about.svg);
    }

    header .header_main nav div>ul>li.case-icon>a::before {
        background-image: url(../img/mobile-menu/menu-case.svg);
    }

    header .header_main nav div>ul>li.blog-icon>a::before {
        background-image: url(../img/mobile-menu/menu-blog.svg);
    }

    header .header_main nav div>ul>li.service-icon>a::before {
        background-image: url(../img/mobile-menu/menu-service.svg);
    }

    header .header_main nav div>ul>li.contact-icon>a::before {
        background-image: url(../img/mobile-menu/menu-contact.svg);
    }

    header .header_main nav div>ul>li.menu-item-has-children>a {
        margin-right: 52px;
    }

    header .header_main nav div>ul>li.menu-item-has-children::after {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
        position: absolute;
        left: calc(100% - 2rem);
        top: 26px;
        transition: all 0.3s;
    }

    header .header_main nav div>ul>li.active::after {
        transform: rotate(180deg);
    }

    header .header_main nav div>ul>li ul {
        position: static;
        visibility: visible;
        padding: 1rem 1rem 0.8rem;
        background-color: #f8f8f8;
        margin: 0 2rem;
        box-shadow: none;
        border-radius: 5px;
        display: none;
        transform: translate(0);
        opacity: 1;
        pointer-events: all;
        transition: none;
    }

    header .header_main nav div>ul>li ul li a {
        color: var(--title_color);
        padding: 0.5rem 0;
        white-space: wrap;
        font-size: 14px;
    }

    /* header .header_main .search {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        padding: 8px 1rem;
        background-color: #fff;
        display: none;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        z-index: -1;
      } */
    header .header_main .search form {
        display: flex;
        width: 100%;
    }

    header .header_main .search input[type="text"] {
        border: none;
        width: 0;
        flex: 1;
        font-size: 14px;
        padding: 0 1rem;
    }

    header .header_main .search input[type="submit"] {
        border: none;
        width: 2.5rem;
        height: 2.5rem;
    }

    header .header_main .contact {
        display: none;
    }

    header .header_main .btns {
        gap: 1.25rem;
        height: 4rem;
        align-items: center;
    }

    header .header_main .btns .icon_search {
        display: block;
        width: 20px;
        height: 20px;
        background: url(../img/search.svg) no-repeat center / contain;
    }

    header .header_main .btns .icon_menu {
        display: block;
        width: 23px;
        height: 23px;
        background: url(../img/menu.svg) no-repeat center / contain;
        filter: contrast(0) brightness(0.5);
    }

    header .header_main .btns .overlay_m {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.3);
        display: none;
        z-index: 9999;
    }

    header .header_main .btns .overlay_m.active {
        display: block;
    }

    header .header_main .header-icon {
        margin-right: 0;
    }

    .swiper_home_banner li.swiper-slide {
        height: auto;
        padding: 5rem 0;
        background-position: 82%;
        position: relative;
    }

    .swiper_home_banner li.swiper-slide:after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: rgba(0, 0, 0, 0.3);
    }

    .home_banner .swiper_home_banner h1,
    .home_banner .swiper_home_banner strong {
        font-size: 30px;
        line-height: 1.55;
        max-width: 80%;
    }

    .home_banner .swiper_arrow {
        display: none;
    }

    .swiper_home_banner li .button_arrow {
        margin-top: 20px;
    }

    .swiper_category li.swiper-slide {
        height: 138px;
    }

    .swiper_category li.swiper-slide .img {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }

    .swiper_category li.swiper-slide p {
        font-size: 16px;
        min-height: unset;
    }

    .swiper_category li.swiper-slide a {
        padding: 0;
    }

    .home_solutions {
        padding: 5rem 0;
    }

    .home_solutions .main {
        margin-top: 35px;
    }

    .home_solutions .main ul {
        gap: 16px;
        grid-template-columns: repeat(2,1fr);
        width: 100%;
    }


    .home_solutions .main ul li .img {
        height: 180px;
    }

    .home_solutions .main ul li .img a {
        font-size: 15px;
        padding: 10px;
    }

    .home_solutions .main ul li .sub_links {
        gap: 10px;
        padding: 1.2rem;
        grid-template-columns: repeat(1,1fr);
    }

    .home_solutions .main ul li .sub_links a {
        font-size: 15px;
    }

    .home_solutions img.cirlce2 {
        z-index: -1;
    }

    .home_solutions>img {
        width: 150%;
        right: -60%;
        top: -60%;
    }

    .home_solutions img.cirlce2 {
        width: 150%;
        left: -60%;
        bottom: -60%;
    }

    .home_safe {
        overflow: hidden;
        padding: 5rem 0;
    }

    .home_safe .head {
        padding: 0;
    }

    .home_safe .head p {
        margin-top: 1rem;
    }

    .home_safe .safe_block {
        margin-top: 1.5rem;
    }

    .home_safe .safe_block li {
        min-width: 270px;
        aspect-ratio: 472/560;
        height: auto;
    }

    .home_safe .safe_block ul {
        gap: 1.2rem;
        width: 100%;
        overflow: auto;
    }

    .home_safe .safe_block li a strong {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .home_safe .safe_block li a span {
        font-size: 15px;
    }

    .home_safe .safe_block li a span:after {
        top: 3px;
    }

    .home_safe .safe_block li:nth-of-type(2) {
        margin-top: 0;
    }

    .home_safe .safe-num {
        margin-top: 40px;
    }

    .home_safe .safe-num ul li div.img {
        width: 55px;
        height: 55px;
    }

    .home_safe .safe-num ul li>span {
        font-size: 25px;
        margin-top: 20px;
        padding-top: 20px;
    }

    .home_safe .safe-num ul li>span:before {
        width: 8px;
        height: 8px;
    }

    .home_safe .safe-num ul li>span .small {
        font-size: 25px;
    }

    .home_safe .safe-num ul li p {
        font-size: 17px;
    }

    .home_application {
        padding: 4rem 0;
        padding-top: 0;
    }

    .home_application .head p {
        font-size: 0.9rem;
        line-height: 1.5rem;
        margin-top: 0.5rem;
    }

    .home_application .main {
        margin-top: 2rem;
    }

    .home_application .main .flex {
        flex-direction: column;
    }

    .home_application .main .imgs {
        width: 100%;
        height: 200px;
        border-radius: 12px;
    }

    .home_application .main .texts {
        position: static;
        width: 100%;
        border-radius: 0 0 12px 12px;
        margin-top: -12px;
    }

    .home_application .main .texts .home_application_swiper .swiper-slide a {
        padding: 2rem 1.2rem 1.6rem;
    }

    .home_application .main .texts .home_application_swiper .swiper-slide a h3 {
        font-size: 18px;
        line-height: 1.5;
    }

    .home_application .main .texts .home_application_swiper .swiper-slide a p {
        font-size: 0.9rem;
        line-height: 1.5rem;
        margin-top: 0.5rem;
    }

    .home_application .main .texts .home_application_swiper .swiper-slide a span {
        font-size: 14px;
        gap: 8px;
    }

    .home_application .main .texts .home_application_swiper .swiper-slide a span::after {
        width: 12px;
        height: 12px;
    }

    .home_application .main .nav {
        width: 100%;
        order: 3;
        margin-top: 1rem;
    }

    .home_application .main .nav ul {
        display: flex;
        overflow: auto;
        gap: 12px;
    }

    .home_application .main .nav li {
        margin: 0;
        min-width: 35%;
        padding: 12px;
        min-height: unset;
        gap: 1rem;
        flex-direction: column;
    }

    .home_application .main .nav li.active {
        gap: 12px;
        padding: 12px;
    }

    .home_application .main .nav li.active::after {
        width: 100%;
        transform: translate(0);
        border-radius: 12px;
    }

    .home_application .main .nav li::after {
        width: 100%;
        transform: translate(0);
        border-radius: 12px;
        background-color: var(--theme_color);
    }

    .home_application .main .nav li i {
        width: 2rem;
        height: 2rem;
        min-width: 2rem;
    }

    .home_application .main .nav li p {
        font-size: 13px;
        line-height: 1.5;
        text-align: center;
    }

    .home_application .main .nav li span {
        display: none;
    }

    footer {
        /* overflow: hidden; */
    }

    .circle3 {
        width: 150%;
        left: -60%;
        top: -40%;
    }
    .circle4{
        z-index: -1;
    }
    .home_blog{
        padding: 4rem 0;
    }
    .home_blog .nav {
        margin: 1.5rem 0 2rem;
    }

    .home_blog .nav ul li {
        font-size: 14px;
        padding: 10px 20px;
    }

    .home_blog .main .left {
        width: 100%;
    }

    .home_blog .main .right {
        width: 100%;
    }

    .home_blog .main .home_blog_con>div {
        flex-flow: wrap;
    }

    .home_blog .main .home_blog_con {
        height: auto;
    }

    .home_blog .main .blog-item .img {
        height: 250px;
    }

    .home_blog .main .blog-item .date span:nth-of-type(1) {
        font-size: 25px;
        line-height: 1;
    }

    .home_blog .main .blog-item .date span:nth-of-type(2) {
        font-size: 16px;
    }

    .home_blog .main .blog-item .date {
        padding: 10px 17px;
        left: 20px;
        top: 20px;
    }

    .blog-item .flex {
        flex-flow: wrap;
    }

    .home_blog .main .right .infos {
        padding: 1.2rem;
        order: 9;
    }
    .home_blog .main .right li:last-of-type{
        margin-top: -1px;
    }
    .home_blog .main .right li:nth-of-type(1) .infos>span {
        margin-bottom: 0.5rem;
    }

    .home_blog .main .right li:nth-of-type(1) .infos>span span:nth-of-type(1) {
        font-size: 15px;
    }

    .home_blog .main .right li:nth-of-type(1) .infos>span span {
        font-size: 15px;
    }

    .home_blog .main .right li:nth-of-type(1) .infos strong {
        font-size: 17px;
        line-height: 1.4;
        margin-bottom: 0.7rem;
    }

    .home_blog .main .right li:nth-of-type(1) .infos p {
        font-size: 0.9rem;
        line-height: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .home_blog .main .right li:nth-of-type(1) .infos .arrow {
        font-size: 15px;
    }

    .home_blog .main .right li:nth-of-type(1) .infos .arrow:after {
        top: 5px;
    }

    .home_blog .main .left .blog-item .infos {
        position: relative;
        left: unset;
        top: unset;
        transform: translateY(0);
        padding: 1.2rem;
        background: #e4ecf2;
        color: var(--title_color);
    }

    .home_blog .main .left .blog-item .infos strong {

        font-size: 17px;
        line-height: 1.4;
        margin-bottom: 0.7rem;
    }

    .home_blog .main .right .left {
        order: 9;
    }

    .home_blog .main .left .blog-item .infos span {
        color: #595959;
    }

    .home_blog .main .right li.item a {
        padding: 1.2rem;
        padding-bottom: 0.6rem;
    }

    .home_blog .main .right li.item strong {
        font-size: 0.9rem;
        line-height: 1.5rem;
    }

    .home_blog .main .right li.item .date span {
        font-size: 25px;
    }

    .home_blog .main .right li.item .date span:nth-of-type(2) {
        font-size: 16px;
    }

    .home_blog .main .right ul li.item:nth-of-type(3) a {
        padding-top: 0.6rem;
    }
    .contact-con .flex_middle{
        flex-flow: wrap;
    }
    footer .contact-con h2{
        font-size: 25px;
        line-height: 1.5;
    }
    footer .contact-con .small_content{
        padding: 2rem 0;
    }
    footer .contact-con a{
        margin-top: 1rem;
    }
    .contact-con .content:after{
        width: 100%;
        left: 0;
        top: 0;
        border-radius: 8px;
    }
    .footer-main .small_content > .flex{
        flex-flow: wrap;
    }
    footer .flex .col{
        width: 100%;
        flex: unset;
    }
    .footer-main .col strong{
        font-size: 16px;
        padding: 0.7rem 1rem;
        border-radius: 5px;
        border: 1px solid #eee;
        margin-bottom: 1rem;
        position: relative;
    }
    .footer-main .col strong:after{
        content: "";
        width: 15px;
        height: 15px;
        background: url('../img/plus.svg') no-repeat center/contain;
        position: absolute;
        right: 1.2rem;
        top: 13px;
        filter: brightness(100);
    }
    .footer-main .col strong.active:after{
        background-image: url('../img/minus.svg');
    }
    footer .col .menu li a{
        font-size: 0.95rem;
        margin-bottom: 14px;
    }
    footer .col ul{
        display: none;
        padding-bottom: 1rem;
    }
    .footer-main .logo img{
        width: 120px;
        
    }
    .footer-main .logo{
        margin: 2rem 0;
    }
    .copyright p{
        width: 100%;
        text-align: center;
        line-height: 1.5rem;
    }
    .copyright .flex div{
        width: 100%;
    }
    .copyright>.flex{
        flex-flow: wrap;
    }
    .social{
        justify-content: center;
        margin-top: 1rem;
    }
    .social li a{
        width: 16px;
        height: 16px;
    }
    .contact_col li a{
        font-size: 16px;
        margin-bottom: 0.5rem;
    }
    .contact_col li span{
        font-size: 14px;
        max-width: 100%;
    }
    .about_banner .flex{
        height: auto;
        padding: 5rem 0;
    }
    .about_banner h1{
        margin-bottom: 1rem;
    }
    .fish1{
        width: 50%;
    }
    .about_partner{
        padding: 50px 0;
        padding-bottom: 0;
    }
    .about_partner ul{
        margin-top: 2rem;
        grid-template-columns: repeat(3,1fr);
        gap: 1rem;
    }
    .about_partner ul li{
        height: 54px;
    }
    .fish2{
        width: 100%;
        right: -50%;
        top: -50px;
    }
    .about_profile .small_content .flex{
        flex-flow: wrap;
    }
    .about_profile .left{
        width: 100%;
    }
    .about_profile .right{
        width: 100%;
    }
    .about_profile .left h3{
        font-size: 20px;
        margin-bottom: 1rem;
    }
    .about_profile .left p{
        font-size: 0.9rem ;
        line-height: 1.5rem;
    }
    .about_profile .head{
        margin-bottom: 30px;
    }
    .about_profile .left li{
        font-size: 16px;
    }
    .about_profile .left li img{
        width: 30px;
    }
    .about_profile .img{
        width: 100%;
        height: 300px;
    }
    .about_profile .img img{
        width: 100%;
    }
    .about_warehouse{
        background-size: cover;
        background-image: unset;
        padding: 4rem 0;
    }
    .about_warehouse .nav ul li{
        font-size: 0.9rem;
        padding: 10px 20px;
        white-space: nowrap;
    }
    .about_warehouse .nav ul{
        justify-content: left;
        overflow: auto;
    }
    .swiper_warehouse .swiper-slide>.flex{
        flex-flow: wrap;
    }
    .swiper_warehouse .swiper-slide .img{
        width: 100%;
        height: 200px;
    }
    .swiper_warehouse .swiper-slide .right{
        width: 100%;
    }
    .swiper_warehouse .swiper-slide{
        padding: 0;
        border: 1px solid #eee;
    }
    .swiper_warehouse .swiper-slide .right{
        padding: 1.2rem;
    }
    .swiper_warehouse .swiper-slide .right strong{
        font-size: 20px;
        margin-bottom: 1rem;
        line-height: 1;
    }
    .swiper_warehouse .swiper-slide .right p{
        font-size: 0.9rem;
        line-height: 1.5rem;
    }
    .about_warehouse .swiper_arrow{
        width: 90%;
        max-width: 90%;
        top: 23%;
    }
    .about_warehouse .swiper_arrow>div{
        width: 35px;
        height: 25px;
    }
    .blog_banner .banner_flex{
        height: auto;
        padding: 4rem 0;
    }
    .blog_banner .banner_flex .head h1{
        font-size: 30px;
        line-height: 1.5;
        margin-bottom: 0;
    }
    .blog_banner .banner_flex .head p{
        font-size: 0.9rem;
        line-height: 1.5rem;
        margin-top: 0.5rem;
    }
    .blog_latest{
        padding: 4rem 0;
    }
    .blog_latest .head{
        margin-bottom: 2rem;
    }
    .blog_latest .head .flex{
        flex-flow: wrap;
    }
    .blog_latest .head h2{
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    .blog_latest .head .nav ul li a{
        display: inline-block;
        font-size: 0.9rem;
        padding: 10px 20px;

    }
    .blog_latest .head .nav ul{
        width: 100%;
        justify-content: center;
    }
    .blog_latest .head .nav{
        width: 100%;
    }
    .swiper_blog_latest .left{
        width: 100%;
        padding: 2rem 1.2rem;
        position: unset;
        transform: translateY(0);
        order: 9;
    }
    .swiper_blog_latest .swiper-slide .flex{
        flex-flow: wrap;
    }
    .swiper_blog_latest .img{
        width: 100%;
        height: 240px;
    }
    .swiper_blog_latest .left > span:nth-of-type(1){
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    .swiper_blog_latest .left strong{
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }
    .swiper_blog_latest .left p{
        font-size: 0.9rem;
        line-height: 1.5rem;
        margin-bottom: 1rem;
    }
    .swiper_blog_latest .left .arrow{
        font-size: 0.9rem;
    }
    .swiper_blog_latest .left .arrow:after{
        top: 4px;
    }
    .blog_latest .swiper_arrow>div{
        width: 35px;
        height: 35px;
    }
    .blog_latest .swiper_arrow{
        top: 41%;
        max-width: 90%;
    }
    .blog_main{
        padding-bottom: 5rem;
    }
    .blog_main .filter_select .flex{
        flex-flow: wrap;
        justify-content: space-between;
    }
    .blog_main .filter_select p{
        font-size: 1rem;
    }
    .blog_main .filter_select select{
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-width: 38%;
        margin-left: 0;
        background: url(../img/sanjiao.svg) no-repeat right 12px center/9px;
    }
    
    .blog_main .blog_list{
        margin-top: 2rem;
    }
    .blog_main .blog_list ul{
        grid-template-columns: repeat(2,1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .blog_main .blog_list ul li .img{
        height: 150px;
    }
    .blog_main .blog_list ul li .infos{
        padding: 1rem;
    }
    .blog_main .blog_list ul li .infos span.cat{
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    .blog_main .blog_list ul li .infos strong{
        font-size: 1rem;
        line-height: 1.5rem;
        margin-bottom: 1rem;
        min-height: 72px;
    }
    .blog_main .blog_list ul li:hover .infos .arrow{
        font-size: 0.9rem;
    }
    .blog_main .blog_list ul li .infos .arrow:after{
        width: 10px;
        top: 3px;
    }
    .post_banner{
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }
    .post_banner h1{
        font-size: 25px;
    }
    .post_banner .infos{
        margin: 1.5rem 0;
    }
    .post_banner .infos ul{
        gap: 1.5rem;
    }
    .post_banner .infos ul li{
        font-size: 0.9rem;
    }
    .post_banner .infos ul li:before{
        width: 16px;
        height: 16px;
    }
    .post_banner .img img{
        width: 100%;
    }
    .post_main .small_content>.flex{
        flex-flow: wrap;
    }
    .post_main .left{
        width: 100%;
        order: 9;
    }
    .post_main .right{
        width: 100%;
    }
    .post_details h2{
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }
    .post_details p{
        font-size: 0.9rem;
        line-height: 1.5rem;
        margin-bottom: 20px;
    }
    .post_details h3{
        font-size: 18px;
        line-height: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .post_main{
        padding-bottom: 3rem;
    }
    .post_main .left .infos li{
        font-size: 1rem;
        padding-left: 25px;
        margin-bottom: 1rem;
    }
    .post_main .left .infos li::before{
        width: 16px;
        height: 20px;
        top: 3px;
    }
    .post_main .left strong{
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    .post_main .left .infos{
        margin-bottom: 30px;
    }
    .post_main .left .cats li a{
        font-size: 1rem;
    }
    .swiper_related{
        margin-top: 0;
        margin-bottom: 30px;
    }
    .related_post{
        padding-bottom: 4rem;
    }
    .related_post h2{
        text-align: center;
        margin-bottom: 1rem;
    }
    .swiper_related li.swiper-slide{
        box-shadow: none;
        border: 1px solid #eee;
    }
    .swiper_related li.swiper-slide .img{
        height: 150px;
    }
    .swiper_related li.swiper-slide .infos{
        padding: 1.2rem;
    }
    .swiper_related li.swiper-slide .infos span.cat{
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    .swiper_related li.swiper-slide .infos strong{
        font-size: 1.1rem;
        min-height: 84px;
        margin-bottom: 1rem;
    }
    .related_post .swiper_arrow>div{
        width: 40px;
        height: 40px;
    }
    .related_post .swiper_arrow{
        max-width: 90%;
        top: 34%;
    }
    .products_banner .head{
        height: auto;
        padding: 4rem 0;
    }
    .products_banner .head h1{
        font-size: 30px;
        line-height: 1.5;
        margin-bottom: 0;
    }
    .product_main{
        padding: 4rem 0;
    }
    .product_main .small_content .flex{
        flex-flow: wrap;
    }
    .product_main .left{
        width: 100%;
    }
    .product_main .right{
        width: 100%;
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .product_main .left .category_list li a{
        font-size: 15px;
        border: 1px solid #eee;
    }
    .product_main .left .category_list li img{
        max-width: 22px;
        max-height: 22px;
    }
    .category_list ul{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 1rem;
    }
    .products_list li .head h2 img{
        width: 30px;
    }
    .products_list li .head h2{
        font-size: 25px;
    }
    .products_list li .head p{
        margin-top: 0.5rem;
    }
    .products_list .sy_products{
        grid-template-columns: repeat(2,1fr);
        gap: 40px 16px;
    }
    .sy_products .sy_product .img img{
        object-fit: contain;
    }
    .sy_products .sy_product .img{
        height: 150px;
    }
    .sy_products .sy_product .infos p{
        font-size: 17px;
        min-height: 44px;

    }
    .sy_products .sy_product .infos{
        padding-bottom: 60px;
    }
    .sy_products .sy_product .infos strong{
        width: 60px;
        height: 60px;
    }
    .product_banner .head{
        width: 100%;
        order: 9;
    }
    .product_banner .head h1{
        font-size: 30px;
        margin-bottom: 1rem;
        margin-top: 0.5rem;
        line-height: 1;
    }
    .product_banner .head p{
        margin-top: 0;
    }
    .product_banner .img{
        width: 100%;
    }
    .product_banner .flex img{
        position: unset;
        transform: translateY(0);
        width: 100%;
        min-width: unset;
    }
    .product_banner{
        padding: 4rem 0;
        padding-top: 0;
        padding-bottom: 0;
        min-height: unset;
    }
    .product_banner .small_content>.flex{
        flex-flow: wrap;
    }
    .product_nav a{
        font-size: 1rem;
        padding-bottom: 1rem;
        white-space: nowrap;
    }
    .product_nav{
        padding-bottom: 2rem;
    }
    .product_nav ul{
        gap: 1rem;
        overflow-y: hidden;
    }
    .product_feature{
        padding-bottom: 4rem;
    }
    .product_feature h2{
        margin-bottom: 1rem;
    }
    .product_feature li{
        padding-left: 20px;
        margin-bottom: 1rem;
    }
    .product_feature li strong{
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    .product_feature li p{
        font-size: 0.9rem;
        line-height: 1.5rem;
    }
    .product_feature li:before{
        width: 8px;
        height: 8px;
        top: 7px;
    }
    .product_solution{
        padding: 4rem 0;
    }
    .product_solution h2{
        margin-bottom: 1rem;
    }

    .product_solution h2{
        margin-bottom: 1rem;
    }
    .product_solution li{
        padding-left: 20px;
        margin-bottom: 1rem;
    }
    .product_solution li strong{
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    .product_solution li p{
        font-size: 0.9rem;
        line-height: 1.5rem;
        margin-top: 0;
    }
    .product_solution li:before{
        width: 8px;
        height: 8px;
        top: 7px;
    }
    .product_spec{
        padding: 4rem 0;
    }
    .product_spec h2{
        margin-bottom: 2rem;
    }
    .product_spec table tr:nth-of-type(1) td{
        font-size: 18px;
        padding: 1rem;
    }
    .product_spec table td{
        padding: 0.8rem 1rem;
        font-size: 15px;
    }
    .product_related{
        padding: 4rem 0;
        padding-top: 0;
    }
    .product_related h2{
        margin-bottom: 1rem;
    }
    .product_related .sy_products .sy_product .img{
        height: 150px;
    }
    .product_related .sy_products .sy_product .img img{
        transform: translateY(0);
    }
    .product_related .sy_products .sy_product .infos span{
        font-size: 15px;
    }
    .product_related .sy_products .sy_product .infos p{
        font-size: 17px;
        min-height: 51px;
        line-height: 1.5;
    }
    .product_related .sy_products .sy_product .infos strong{
        width: 60px;
        height: 60px;
    }
    .product_related .sy_products .sy_product .infos{
        padding-bottom: 47px;
    }
    .product_related .swiper_product_realted{
        padding-bottom: 60px;
    }
    .product_related .swiper_arrow>div{
        width: 40px;
        height: 40px;
    }
    .product_related .swiper_arrow{
        max-width: 96%;
    }

    .contact_banner .flex {
        padding: 4rem 0;
        min-height: unset;
      }
      .contact_banner .head h1 {
        font-size: 25px;
        line-height: 1.5;
      }
      .contact_banner .head p {
        font-size: 0.9rem;
        line-height: 1.5rem;
        margin-top: 0.5rem;
      }
      .contact_main {
        margin-top: -2rem;
      }
      .contact_main .infos ul {
        overflow: auto;
      }
      .contact_main .infos ul li {
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
        min-width: 65%;
        padding: 2rem 1.2rem 1.6rem;
      }
      .contact_main .infos ul li span {
        width: 4rem;
        height: 4rem;
      }
      .contact_main .infos ul li span i {
        width: 1.25rem;
        height: 1.25rem;
      }
      .contact_main .infos ul li strong {
        font-size: 18px;
        line-height: 1.5;
        margin: 1rem 0 0.5rem;
      }
      .contact_main .infos ul li a {
        font-size: 1rem;
        line-height: 1.5;
        word-break: break-all;
      }
      .contact_main .infos ul li p {
        font-size: 0.9rem;
        line-height: 1.5rem;
      }
      .contact_main .inquiry {
        padding: 4rem 0;
      }
      .contact_main .inquiry form {
        gap: 1rem;
        margin-top: 2rem;
      }
      .contact_main .inquiry form .col3 {
        width: 100%;
      }
      .contact_main .inquiry form input,
      .contact_main .inquiry form textarea {
        font-size: 14px;
        padding: 0.7rem 1rem;
      }
      .contact_main .inquiry form textarea {
        height: 120px;
      }
      .contact_main .inquiry form input[type="submit"] {
        font-size: 14px;
        padding: 9px 22px 10px;
        width: 120px;
        margin-top: 0;
      }
      .contact_location {
        padding: 2rem 0 5rem;
      }
      .contact_location li {
        margin-bottom: 2rem;
        display: block;
      }
      .contact_location li .img {
        width: 100%;
      }
      .contact_location li .info {
        margin-top: 1rem;
        padding-left: 1.6rem;
      }
      .contact_location li .info::before {
        width: 1.25rem;
        height: 1.25rem;
        top: 4px;
      }
      .contact_location li .info strong {
        font-size: 18px;
        line-height: 1.5;
      }
      .contact_location li .info p {
        font-size: 0.9rem;
        line-height: 1.5rem;
        margin: 0.5rem 0;
      }
      .contact_location li .info a {
        font-size: 0.9rem;
        line-height: 1.5rem;
      }


      div.search-block .searchform {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
    
      div.search-block input[type='text'] {
        flex: 1;
      }
    
      div.search-block input[type='submit'] {
        width: 1.5rem;
        height: 1.5rem;
        margin: 0 2.2vw 0 1.2vw;
        /* background: url(../img/page_home-header_search.svg) no-repeat center; */
        background-size: 1.4rem;
        display: inline-block;
        vertical-align: middle;
        transition: 0.3s all ease;
        display: none;
        cursor: pointer;
        border: none;
        outline: none;
      }
    
      div.search-block div.content {
        position: unset;
      }
    
      div.search-block .searchform input[type='text'] {
        font-size: 22px;
        height: 70px;
      }
    
      .wd-action-btn {
        width: 25px;
        height: 25px;
        top: unset;
        right: 2rem;
        bottom: 2rem;
      }
    
      div.search-block {
        height: 100%;
        width: 100%;
        top: 120%;
        bottom: unset;
        display: none;
      }
    
      div.search-block.active {
        top: 20%;
        display: block;
        height: 80%;
        transform: translateY(0);
      }
    
      .search-block input[type="submit"]:not(:disabled):hover {
        /* background: url(../img/page_home-header_search.svg) no-repeat center; */
        background-size: 1.4rem;
        border: none;
      }


      .small_content .content{
        padding-left: 0;
        padding-right: 0;
      }
      header .contact-icon{
        display: block;
      }
}