.indexProduct {
    margin-top: -50px;
    padding: 60px 0;
    border-radius: 50px;
    background: #f6f6f6 url(../images/ipbg1.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right bottom 50px;
    z-index: 9;
    position: relative;
}

.indexTitleA {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 55px;
}

.indexTitleA h2 {
    font-size: 34px;
    font-weight: bold;
    color: var(--primary-color);
    font-family: sans-serif;
    margin-bottom: 30px;
}

.indexTitleA p {
    margin-top: 25px;
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-txt);
    text-align: center;
}

.iTitleA_line img {
    height: 28px;
    object-fit: cover;
}

.indexPro_left {
    background-color: var(--primary-bg);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.indexPro_ltop {
    padding: 75px 70px;
}

.indexPro_ltop h3 {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-family: var(--bs-body-font-family);
}

.indexPro_lbot {
    padding: 36px 35px 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.indexPro_ltab {
    padding: 14px 35px 14px 40px;
    background: transparent;
    transition: all ease 0.3s;
    display: flex;
    align-items: center;
    border-radius: 100px;
    cursor: pointer;
}

.indexPro_ltab h4 {
    font-size: 16px;
    line-height: 1.3;
    font-weight: bold;
    color: var(--primary-txt);
    flex: 0 0 calc(100% - 20px);
}

.indexPro_ltab i {
    display: block;
    flex: 0 0 20px;
    opacity: 0;
    color: #fff;
    font-size: 14px;
    transform: translateX(-15px);
    transition: all ease 0.3s;
    text-align: right;
}

.indexPro_ltab.active,
.indexPro_ltab:hover {
    background: var(--primary-color);
}

.indexPro_ltab.active h4,
.indexPro_ltab:hover h4 {
    color: #fff;
}

.indexPro_ltab.active i,
.indexPro_ltab:hover i {
    opacity: 1;
    transform: translateX(0);
}

.indexPro_tabmain {
    display: none;
    position: relative;
}

.indexPro_tabmain.active {
    display: block;
}


.indexPro_main .iPro_left {
    padding-bottom: 50px;
}


.ipSwiper {
    max-width: 80% !important;
    margin: 0 auto !important;
    position: static !important;
    padding-bottom: 50px;
}

.ipSwiper .swiper-pagination {
    bottom: 0;
}

.ipSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    border-radius: 0;
}

.ipSwiper .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.ipSwiper .swiper-slide {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 20px;
    height: auto !important;
    padding: 5px;
}

.ipWrapper_box {
    position: relative;
    width: 90%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 15px 15px 20px;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    transition: all ease 0.5s;
    background: #fff;
}


.swiperbtns {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 100%;
    z-index: 1;
}

.ipSwiper .swiper-button-next {
    right: 0px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background-color: #fff;
    z-index: 9999;
    position: absolute;
    color: var(--primary-color);
    border-radius: 50%;
    transition: all ease 0.3s;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.ipSwiper .swiper-button-prev {
    left: 0;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background-color: #fff;
    z-index: 9999;
    position: absolute;
    color: var(--primary-color);
    border-radius: 50%;
    transition: all ease 0.3s;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.ipSwiper .swiper-button-next::after,
.ipSwiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.ipSwiper .swiper-button-next:hover,
.ipSwiper .swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: #fff;
    transition: all ease 0.3s;
}

.ipWrapper_i i {
    font-size: 32px;
    color: var(--primary-color);
    line-height: 1;
}

.ipWrapper_img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 100%;
    margin-bottom: 4px;
}

.ipWrapper_img img {
    width: 100%;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
}

.ipWrapper_box h5 {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
}

.ipWrapper_box p {
    text-align: center;
    font-size: 10px;
    line-height: 1.3;
    color: var(--primary-txt);

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    /* word-break: break-all; */
}

.ipWrapper_box:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    transition: all ease 0.5s;
}

.ipWrapper_box:hover img {
    transform: scale(1.1);
}

.indexPro_search {
    display: flex;
    gap: 42px;
    align-items: center;
    justify-content: center;
    margin-top: 70px;


}

.iPro_searchbox {
    position: relative;
}

.iPro_cateSelect {
    cursor: pointer;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 17px;
    line-height: 18px;
    font-weight: bold;
    color: var(--primary-color);
    padding: 14px 28px;
    background: transparent;
}

.iPro_cateSelect input {
    border: none;
    outline: none;
    font-size: 17px;
    font-weight: bold;
    color: var(--primary-color);
    background: transparent;
    cursor: pointer;
}

.iPro_cateSelect input::placeholder {
    opacity: 1;
}

.iPro_cateSelect i {
    display: inline-block;
    font-size: 18px;
    transform: rotate(0);
    transition: transform 0.3s ease;
}

.iPro_cateSelect i.active {
    transform: rotate(-180deg);
}

.iProcate_drop {
    position: absolute;
    top: 72px;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 12px #00000018;
    border-radius: 12px;
    padding: 24px 20px;
    /* display: none; */
    z-index: 99999999;
    width: 800px;
    flex-wrap: wrap;
    justify-content: space-between;
    transform: translateY(-20px);
    transition: all ease 0.3s;
    display: flex;
    opacity: 0;
    /* height: 0; */
    visibility: hidden;
}

.iProcate_drop.show {
    /* display: flex; */
    /* height: auto; */
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: all ease 0.3s;
}

.iProcate_item {
    flex: 0 0 49%;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    opacity: 0;
    transition: all ease 0.2s;
}

.iProcate_drop.show .iProcate_item {
    opacity: 1;
}

.iProcate_item i {
    font-size: 14px;
    color: var(--primary-color);
}

.iProcate_item:hover,
.iProcate_item.active {
    color: var(--primary-color);
}













.iPro_searBtn {
    text-align: center;
    padding: 15px 28px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    color: #fff;
    font-size: 17px;
    line-height: 20px;
    font-weight: bold;
    cursor: pointer;
}

.indexService {
    margin-top: -50px;
}

.indexSer_top {
    position: relative;
    overflow: hidden;
}

.indexTitleB p {
    font-size: 74px;
    line-height: 1;
    color: #e7ebf1;
    font-weight: bold;
    
    font-family: sans-serif;
}

.indexTitleB h2 {
    font-size: 34px;
    color: var(--primary-color);
    font-weight: bold;
    font-family: sans-serif;
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

.indexSer_left {
    padding: 160px 5% 60px 0;
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.indexSer_des {
    font-size: 13px;
    line-height: 2;
    
    color: var(--primary-txt);

    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    /* word-break: break-all; */
}

.indexbtn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    line-height: 1;
    padding: 10px 18px;
    color: #fff;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    border-radius: 32px;
    transition: all ease 0.3s;
}

.indexbtn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 0;
    border-radius: 32px;
    transition: all ease 0.3s;

}

.indexbtn a span,
.indexbtn a i {
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 12px;
    
}

.indexbtn a:hover::before {
    opacity: 1;
    transition: all ease 0.3s;
}

.indexSer_bg {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 56%;
    background: var(--primary-color);
    border-bottom-left-radius: 900px;
    border-bottom-right-radius: 900px;
    overflow: hidden;
    padding-right: 100px;
    margin-right: -100px;
}

.indexSer_bgimg {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 63%;
}

.indexSer_bgimg img {
    width: 100%;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
}

.indexSer_right {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    /* z-index: 9; */
}

.indexSer_rimg {
    width: 450px;
}

.indexSer_rproimg {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 100%;
}

.indexSer_rproimg img {
    width: 100%;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
}

.indexSer_bot {
    padding: 70px 0 95px;
}

.indexSer_box {
    height: 100%;
    position: relative;
    background: #f7f7f7;
    border-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 32px 30px;
    transition: all ease 0.3s;
    overflow: hidden;
}

.iSer_boxtitle {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    transition: all ease 0.3s;
    z-index: 3;
}

.iSer_boxtitle span {
    color: #e7e7e7;
    font-size: 56px;
    font-weight: bold;
    line-height: 1;
    font-family: sans-serif;
    transition: all ease 0.3s;
}

.iSer_boxtitle h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 14px;
    font-weight: bold;
    
    color: #656565;
    transition: all ease 0.3s;
}

.indexSer_box p {
    font-size: 10px;
    color: #555;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    /* word-break: break-all; */

    transition: all ease 0.3s;
    position: relative;
    z-index: 3;
}

.iSer_btn {
    margin-top: 15px;
    position: relative;
    z-index: 3;
}

.iSer_btn a {
    background: #dbdbdb;
    padding: 5px 25px;
    border-radius: 14px;
    transition: all ease 0.3s;
}

.iSer_btn a i {
    font-size: 12px;
    line-height: 1;
    color: #949494;
    transition: all ease 0.3s;
}

.indexSer_box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, var(--primary-light), var(--primary-color));
    z-index: -1;

    border-radius: 22px;
    transition: all ease 0.3s;

}

.indexSer_box:hover::before {
    z-index: 0;
}

.indexSer_box:hover {
    background: transparent;
}

.indexSer_box:hover span {
    color: #5f7bb7;
    transition: all ease 0.3s;
}

.indexSer_box:hover h3,
.indexSer_box:hover p {
    color: #fff;
    transition: all ease 0.3s;
}

.indexSer_box:hover .iSer_btn a {
    background: #1f4fa0;
}

.indexSer_box:hover .iSer_btn a i {
    color: #fff;
}


.indexNews {
    padding: 80px 0 70px;
    background: #b3bed1 url(../images/inbg1.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.iNews_box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #f7f7f7;
    height: 100%;
}

.iNews_img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 100%;
}

.iNews_img img {
    width: 100%;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
}

.iNews_des {
    padding: 28px 38px 38px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.iNews_date {
    font-size: 12px;
    color: var(--primary-txt);
}

.iNews_des h3 {
    color: #151515;
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
    transition: all ease 0.3s;
}

.iNews_txt {
    color: #656565;
    font-size: 12px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
}

.iNews_desbot {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.iNews_tag {
    font-size: 12px;
    line-height: 22px;
    padding: 0 10px;
    background: #c9d1dd;
    color: var(--primary-color);
    border-radius: 5px;
}

.arrowBtn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--primary-color);
    
    transition: all ease 0.5s;
}

.arrowBtn i {
    font-size: 10px;
}

.iNews_box>a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.iNews_box:hover img {
    transform: scale(1.1);
}

.iNews_box:hover h3 {
    color: var(--primary-color);
}

.indexNews_main .row>div {
    margin-bottom: 30px;
}

.indexNews .indexbtn {
    margin-top: 60px;
    text-align: center;
}

.indexNews .indexbtn a {
    gap: 30px;
}


.indexAbout {
    background: url(../images/iabg.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0 250px;
    position: relative;
}

.indexAbout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.indexAbout_main {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.iAbout_main {
    width: 50%;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}

.iAbout_des {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;

}

.iAbout_main .indexTitleB h2 {
    margin-top: -55px;
}

.iAbout_main .indexTitleB p {
    opacity: 0.3;
}

.iAbout_main h1 {
    font-weight: bold;
    color: var(--primary-txt);
    font-size: 16px;
}

.iAbout_des p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--primary-txt);
    
}

.iAbout_main .indexbtn {
    margin-top: 50px;
}


footer {
    position: relative;
    padding-bottom: 55px;
}

footer::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer_top {
    padding: 105px 0 85px;
    position: relative;
}

.footer_topmain {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 70%;
    margin: 0 15%;
}

.footer_topmain h2 {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.footer_topmain p {
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.footer_topbtn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_topbtn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 3px 5px 3px 12px;
    border-radius: 30px;
    transition: all ease 0.3s;
}

.footer_topbtn a span {
    font-size: 12px;
    color: #fff;
    line-height: 1;
}

.footer_topbtn a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 12px;
    color: #Fff;
}


.footer_topbtn a:hover {
    gap: 18px;
    padding: 3px 8px 3px 15px;
}

.footer_bot {
    max-width: 1700px;
    margin: 0 auto;
    padding: 55px 0 75px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(40px);
    -moz-backdrop-filter: blur(40px);
    -ms-backdrop-filter: blur(40px);
    -o-backdrop-filter: blur(40px);
    position: relative;
}

.footer_botmain {}

.footer_main1 {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.footer_logo img {
    max-height: 70px;
    vertical-align: middle;
    max-width: initial;
}

.footer_nav {
    padding-right: 30px;
}

.footer_nav h3 {
    font-size: 26px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: "Roboto", Tahoma, sans-serif;
}

.footer_nav a {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 18px;
    text-transform: capitalize;
    word-wrap: break-word;
    /* word-break: break-all; */
    
        text-transform: none;
}

.footer_nav a:hover,
.footer_conbox a:hover {
    text-decoration: underline !important;
    color: #eee;
}

.footer_con {
    padding-left: 40px;
}

.footer_conmain {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.footer_conbox {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer_conbox span {
    font-size: 10px;
    color: #fff;
}

.footer_conbox a,
.footer_conbox p {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
}

.footer_conbtn {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer_conbtn a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    line-height: 20px;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    transition: all ease 0.3s;
}

.footer_conbtn a:hover {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
}



aside {
    position: fixed;
    right: 0;
    bottom: 45%;
    z-index: 9999999;
  }
  
  .RightFixbox {
    position: relative;
    right: 0;
  }

.ir_contact{
    display: flex;
    flex-direction: column;
    background: var(--primary-color);
    border-radius: 60px;
    transition: all ease .3s;
    padding: 15px 0;
    /* overflow: hidden; */
  }

  .ir_backtop{
    padding-top: 20px;
  }
  
  
  .ir_backtop i {
    color: #fff;

    width: 60px;
    height: 0px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all ease .3s;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
  }
  
  .ir_backtop.ir_hi i {
    height: 60px;
    opacity: 1;
  }
  
  .irBox {
    position: relative;
    transition: all ease .3s;
    cursor: pointer;
  }
  
  .irBox_i {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    pointer-events: none;
    transition: all ease .3s;
  }
  
  .irBox_i i {
    color: #fff;
    font-size: 30px;
  }
  
  .irBox_p {
    position: absolute;
    right: 65px;
    top: 5px;
    background: var(--primary-color);
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: all ease .3s;
    padding: 5px 5px 5px 10px;
    -webkit-box-shadow: 0 1px 3px rgb(18 18 18 / 10%);
    box-shadow: 0 1px 3px rgb(18 18 18 / 10%);
    min-width: 230px;
    min-height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .irBox_p a {
  
    font-size: 18px;
    color: #fff;
  }
  
  .irBox:hover .irBox_p {
    z-index: 3;
    opacity: 1;
    pointer-events: visible;
    right: 65px;
  } 
  
  .irBox:hover .irBox_i {
    opacity: .6;
  }

/* shi pei */
@media (max-width:575px) {
    .bg-dark {
        background-color: #fff !important;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .navbar-toggler {
        background-color: var(--primary-color);
    }

    .btn:hover {
        background-color: #333 !important;
        border-color: #333 !important;
    }

    .text-bg-dark {
        background-color: #fff !important;
    }

    .navbar-nav .show>.nav-link,
    .navbar-nav .nav-link.active {
        color: #111;
        font-weight: bold;
    }

    .nav-link {
        color: #111;
    }

    .nav-link:hover,
    .nav-link:focus {
        color: #111;
    }

    .btn-close {
        --bs-btn-close-white-filter: auto;
    }

    .dropdown-menu-dark {
        --bs-dropdown-bg: transparent;
    }

    .dropdown-item {
        color: #222;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--primary-color);
    }

    .indexProduct {
        margin-top: -16px;
        padding: 35px 0;
        border-radius: 20px;
    }

    .indexTitleA {
        margin-bottom: 30px;
    }

    .indexTitleA h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .iTitleA_line img {
        height: 22px;
    }

    .indexPro_ltop {
        padding: 30px 20px;
    }

    .indexPro_ltop h3 {
        font-size: 24px;
    }

    .indexPro_lbot {
        padding: 26px 10px;
        gap: 10px;
    }

    .indexPro_ltab {
        padding: 14px 20px 14px 25px;
        border-radius: 15px;
    }

    .indexPro_ltab h4 {
        font-size: 14px;
    }

    .ipSwiper .swiper-slide {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .swiperbtns {
        top: 47%;
    }

    .ipSwiper .swiper-pagination .swiper-pagination-bullet {
        width: 24px;
    }

    .ipSwiper {
        padding-bottom: 30px;
    }

    .indexPro_search {
        flex-direction: column;
        gap: 18px;
        margin-top: 30px;
    }

    .iPro_cateSelect input,
    .iPro_cateSelect i,
    .iPro_searBtn {
        font-size: 14px;
    }

    .iPro_searBtn {
        padding: 15px;
    }

    .indexService {
        margin-top: -16px;
    }

    .indexSer_left {
        padding: 40px 0;
        gap: 20px;
    }

    .indexSer_bg {
        width: 100%;
        border-bottom-left-radius: 900px;
        border-bottom-right-radius: 900px;
        padding-right: 50px;
        margin-right: -50px;
    }

    .indexSer_top .row>div:nth-child(1) {
        order: 2;
    }

    .indexSer_top .row>div:nth-child(2) {
        order: 1;
    }

    .indexSer_rimg {
        padding-top: 100px;
        width: 75%;
    }

    .indexTitleB p {
        font-size: 34px;
        word-break: break-all;
    }

    .indexTitleB h2 {
        font-size: 28px;
        margin-top: -25px;
    }

    .indexSer_des {
        font-size: 12px;
    }

    .indexSer_bot {
        padding: 10px 0 45px;
    }

    .indexSer_bot .row>div:not(:last-child) {
        margin-bottom: 30px;
    }

    .indexSer_box {
        padding: 22px 25px 30px;
    }

    .indexNews {
        padding: 40px 0 50px;
    }

    .indexTitleA p {
        margin-top: 18px;
        font-size: 18px;
    }

    .iNews_des {
        padding: 20px 20px 28px;
        gap: 10px;
    }

    .indexNews .indexbtn {
        margin-top: 10px;
    }

    .indexAbout {
        padding: 50px 0 60px;
    }

    .iAbout_main {
        width: 100%;
        gap: 20px;
    }

    .iAbout_main .indexTitleB h2 {
        margin-top: -30px;
    }

    .iAbout_des {
        gap: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-wrap: break-word;
        word-break: break-all;
    }

    .indexAbout::before {
        background: rgba(255, 255, 255, 0.3);
    }

    .iAbout_main .indexbtn {
        margin-top: 10px;
    }

    .footer_top {
        padding: 40px 0;
    }

    .footer_topmain {
        gap: 15px;
        max-width: 100%;
        margin: 0;
    }

    .footer_topmain h2 {
        font-size: 26px;
    }

    .footer_topmain p {
        font-size: 16px;
    }

    .footer_topbtn a:hover {
        gap: 18px;
        padding: 3px 5px 3px 12px;
    }

    .footer_bot {
        max-width: 90%;
        margin: 0 auto;
        padding: 35px 0 40px;
        border-radius: 28px;
    }

    .footer_logo img {
        max-height: 50px;
    }

    .footer_main1 {
        gap: 20px;
        margin-bottom: 25px;
    }

    .public_ad_header_social_media {
        gap: 12px;
    }

    .public_ad_header_social_media a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .public_ad_header_social_media a i {
        font-size: 18px;
    }

    .footer_nav,
    .footer_con {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .footer_nav {
        margin-bottom: 20px;
    }

    .footer_nav h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .footer_nav a {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer_conmain {
        margin-bottom: 30px;
    }

    .footer_conbtn a {
        display: inline-flex;
        width: fit-content;
    }

    .iProcate_drop {
        top: 60px;
        padding: 20px 18px;
        width: 290px;
    }

    .iProcate_item {
        flex: 0 0 100%;
        font-size: 14px;
        padding: 5px 8px;
    }

    aside{
        display: none;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .bg-dark {
        background-color: #fff !important;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .navbar-toggler {
        background-color: var(--primary-color);
    }

    .btn:hover {
        background-color: #333 !important;
        border-color: #333 !important;
    }

    .text-bg-dark {
        background-color: #fff !important;
    }

    .navbar-nav .show>.nav-link,
    .navbar-nav .nav-link.active {
        color: #111;
        font-weight: bold;
    }

    .nav-link {
        color: #111;
    }

    .nav-link:hover,
    .nav-link:focus {
        color: #111;
    }

    .btn-close {
        --bs-btn-close-white-filter: auto;
    }

    .dropdown-menu-dark {
        --bs-dropdown-bg: transparent;
    }

    .dropdown-item {
        color: #222;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--primary-color);
    }

    .indexProduct {
        margin-top: -16px;
        padding: 35px 0;
        border-radius: 20px;
    }

    .indexTitleA {
        margin-bottom: 30px;
    }

    .indexTitleA h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .iTitleA_line img {
        height: 22px;
    }

    .indexPro_ltop {
        padding: 30px 20px;
    }

    .indexPro_ltop h3 {
        font-size: 24px;
    }

    .indexPro_lbot {
        padding: 26px 10px;
        gap: 10px;
    }

    .indexPro_ltab {
        padding: 14px 20px 14px 25px;
        border-radius: 15px;
    }

    .indexPro_ltab h4 {
        font-size: 14px;
    }

    .ipSwiper .swiper-slide {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .swiperbtns {
        top: 47%;
    }

    .ipSwiper .swiper-pagination .swiper-pagination-bullet {
        width: 24px;
    }

    .ipSwiper {
        max-width: 100% !important;
        padding-bottom: 30px;
    }

    .indexPro_search {
        gap: 18px;
        margin-top: 30px;
    }

    .iPro_cateSelect input,
    .iPro_cateSelect i,
    .iPro_searBtn {
        font-size: 14px;
    }

    .iPro_cateSelect {
        padding: 14px 10px;
    }

    .iPro_searBtn {
        padding: 15px 10px;
    }

    .indexService {
        margin-top: -16px;
    }

    .indexSer_left {
        padding: 40px 0;
        gap: 20px;
    }

    .indexSer_bg {
        width: 100%;
        border-bottom-left-radius: 900px;
        border-bottom-right-radius: 900px;
        padding-right: 50px;
        margin-right: -50px;
    }

    .indexSer_top .row>div:nth-child(1) {
        order: 2;
    }

    .indexSer_top .row>div:nth-child(2) {
        order: 1;
    }

    .indexSer_right {
        justify-content: flex-start;
    }

    .indexSer_rimg {
        padding-top: 150px;
        width: 50%;
    }

    .indexTitleB p {
        font-size: 40px;
        word-break: break-all;
    }

    .indexTitleB h2 {
        font-size: 30px;
        margin-top: -25px;
    }

    .indexSer_bot {
        padding: 10px 0 45px;
    }

    .indexSer_bot .row>div:not(:last-child) {
        margin-bottom: 30px;
    }

    .indexSer_box {
        padding: 22px 25px 30px;
    }

    .indexNews {
        padding: 50px 0 60px;
    }

    .indexTitleA p {
        margin-top: 18px;
        font-size: 18px;
    }

    .iNews_des {
        padding: 20px 20px 28px;
        gap: 10px;
    }

    .indexNews .indexbtn {
        margin-top: 10px;
    }

    .indexAbout {
        padding: 50px 0 60px;
    }

    .iAbout_main {
        width: 100%;
        gap: 20px;
    }

    .iAbout_main .indexTitleB h2 {
        margin-top: -30px;
    }

    .iAbout_des {
        gap: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-wrap: break-word;
        word-break: break-all;
    }

    .indexAbout::before {
        background: rgba(255, 255, 255, 0.3);
    }

    .iAbout_main .indexbtn {
        margin-top: 10px;
    }

    .footer_top {
        padding: 40px 0;
    }

    .footer_topmain {
        gap: 15px;
        max-width: 100%;
        margin: 0;
    }

    .footer_topmain h2 {
        font-size: 26px;
    }

    .footer_topmain p {
        font-size: 16px;
    }

    .footer_topbtn a:hover {
        gap: 18px;
        padding: 3px 5px 3px 12px;
    }

    .footer_bot {
        max-width: 90%;
        margin: 0 auto;
        padding: 35px 0 40px;
        border-radius: 28px;
    }

    .footer_logo img {
        max-height: 50px;
    }

    .footer_main1 {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        align-items: center;
        margin-bottom: 25px;
    }

    .public_ad_header_social_media {
        gap: 12px;
    }

    .public_ad_header_social_media a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .public_ad_header_social_media a i {
        font-size: 18px;
    }

    .footer_nav,
    .footer_con {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .footer_nav {
        margin-bottom: 20px;
    }

    .footer_nav h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .footer_nav a {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer_conmain {
        margin-bottom: 30px;
    }

    .footer_conbtn a {
        display: inline-flex;
        width: fit-content;
    }

    .iProcate_drop {
        top: 60px;
        width: 550px;
    }

    .iProcate_item {
        font-size: 14px;
        padding: 5px 8px;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .bg-dark {
        background-color: #fff !important;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .navbar-toggler {
        background-color: var(--primary-color);
    }

    .btn:hover {
        background-color: #333 !important;
        border-color: #333 !important;
    }

    .text-bg-dark {
        background-color: #fff !important;
    }

    .navbar-nav .show>.nav-link,
    .navbar-nav .nav-link.active {
        color: #111;
        font-weight: bold;
    }

    .nav-link {
        color: #111;
    }

    .nav-link:hover,
    .nav-link:focus {
        color: #111;
    }

    .btn-close {
        --bs-btn-close-white-filter: auto;
    }

    .dropdown-menu-dark {
        --bs-dropdown-bg: transparent;
    }

    .dropdown-item {
        color: #222;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--primary-color);
    }

    .indexProduct {
        margin-top: -16px;
        padding: 45px 0;
        border-radius: 20px;
    }

    .indexTitleA {
        margin-bottom: 30px;
    }

    .indexTitleA h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .iTitleA_line img {
        height: 22px;
    }

    .indexPro_ltop {
        padding: 30px 20px;
    }

    .indexPro_ltop h3 {
        font-size: 24px;
    }

    .indexPro_lbot {
        padding: 26px 10px;
        gap: 10px;
    }

    .indexPro_ltab {
        padding: 14px 20px 14px 25px;
        border-radius: 15px;
    }

    .indexPro_ltab h4 {
        font-size: 14px;
    }

    .ipSwiper .swiper-slide {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .swiperbtns {
        top: 47%;
    }

    .indexPro_main .iPro_left {
        padding-bottom: 30px;
    }

    .ipSwiper {
        max-width: 100% !important;
        padding-bottom: 30px;
    }

    .indexPro_search {
        gap: 18px;
        margin-top: 30px;
    }

    .iPro_cateSelect input,
    .iPro_cateSelect i,
    .iPro_searBtn {
        font-size: 14px;
    }


    .indexService {
        margin-top: -16px;
    }

    .indexSer_left {
        padding: 70px 0 0px;
        gap: 20px;
    }

    .indexSer_bg {
        width: 60%;
        padding-right: 50px;
        margin-right: -50px;
    }

    .indexSer_right {
        justify-content: flex-start;
    }

    .indexSer_rimg {
        width: 80%;
    }

    .indexTitleB p {
        font-size: 40px;
        word-break: break-all;
    }

    .indexTitleB h2 {
        font-size: 30px;
        margin-top: -25px;
    }

    .indexSer_bot {
        padding: 40px 0 55px;
    }

    .indexNews {
        padding: 50px 0 60px;
    }

    .indexTitleA p {
        margin-top: 18px;
        font-size: 18px;
    }

    .iNews_des {
        padding: 20px 20px 28px;
        gap: 10px;
    }

    .indexNews .indexbtn {
        margin-top: 10px;
    }

    .iNews_tag {
        padding: 0 4px;
    }

    .arrowBtn {
        gap: 4px;
        font-size: 10px;
    }

    .indexAbout {
        padding: 60px 0 80px;
    }

    .iAbout_main {
        gap: 20px;
    }

    .iAbout_main .indexTitleB h2 {
        margin-top: -30px;
    }

    .iAbout_des {
        gap: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-wrap: break-word;
        word-break: break-all;
    }

    .indexAbout::before {
        background: rgba(255, 255, 255, 0.3);
    }

    .iAbout_main .indexbtn {
        margin-top: 10px;
    }

    .footer_top {
        padding: 40px 0;
    }

    .footer_topmain {
        gap: 15px;
        max-width: 100%;
        margin: 0;
    }

    .footer_topmain h2 {
        font-size: 26px;
    }

    .footer_topmain p {
        font-size: 16px;
    }

    .footer_topbtn a:hover {
        gap: 18px;
        padding: 3px 5px 3px 12px;
    }

    .footer_bot {
        max-width: 90%;
        margin: 0 auto;
        padding: 35px 0 40px;
        border-radius: 28px;
    }

    .footer_logo img {
        max-height: 50px;
    }

    .footer_main1 {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        align-items: center;
        margin-bottom: 25px;
    }

    .public_ad_header_social_media {
        gap: 12px;
    }

    .public_ad_header_social_media a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .public_ad_header_social_media a i {
        font-size: 18px;
    }

    .footer_nav,
    .footer_con {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .footer_nav {
        margin-bottom: 20px;
    }

    .footer_nav h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .footer_nav a {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer_conmain {
        margin-bottom: 30px;
    }

    .footer_conbtn a {
        font-size: 14px;
    }

    .iProcate_drop {
        top: 60px;
        width: 550px;
    }

    .iProcate_item {
        font-size: 14px;
        padding: 5px 8px;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .bg-dark {
        background-color: #fff !important;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .navbar-toggler {
        background-color: var(--primary-color);
    }

    .btn:hover {
        background-color: #333 !important;
        border-color: #333 !important;
    }

    .text-bg-dark {
        background-color: #fff !important;
    }

    .navbar-nav .show>.nav-link,
    .navbar-nav .nav-link.active {
        color: #111;
        font-weight: bold;
    }

    .nav-link {
        color: #111;
    }

    .nav-link:hover,
    .nav-link:focus {
        color: #111;
    }

    .btn-close {
        --bs-btn-close-white-filter: auto;
    }

    .dropdown-menu-dark {
        --bs-dropdown-bg: transparent;
    }

    .dropdown-item {
        color: #222;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--primary-color);
    }

    .indexProduct {
        margin-top: -16px;
        padding: 60px 0 70px;
        border-radius: 20px;
    }

    .indexPro_ltop {
        padding: 30px 20px;
    }

    .indexPro_ltop h3 {
        font-size: 24px;
    }

    .indexPro_lbot {
        padding: 36px 15px;
    }

    .indexPro_ltab {
        padding: 14px 20px 14px 25px;
        border-radius: 15px;
    }

    .indexPro_ltab h4 {
        font-size: 14px;
    }

    .swiperbtns {
        top: 47%;
    }

    .ipSwiper {
        max-width: 100% !important;
    }

    .indexPro_search {
        margin-top: 50px;
    }

    .iPro_cateSelect input,
    .iPro_cateSelect i,
    .iPro_searBtn {
        font-size: 14px;
    }


    .indexService {
        margin-top: -16px;
    }

    .indexSer_left {
        padding: 100px 0 0px;
        gap: 20px;
    }

    .indexSer_bg {
        width: 60%;
        padding-right: 50px;
        margin-right: -50px;
    }

    .indexSer_rimg {
    width: 70%;
    }

    .indexTitleB p {
        font-size: 46px;
        word-break: break-all;
    }

    .indexTitleB h2 {
        font-size: 30px;
        margin-top: -25px;
    }

    .indexSer_bot {
        padding: 50px 0 65px;
    }

    .indexNews {
        padding: 60px 0 70px;
    }

    .indexTitleA p {
        margin-top: 18px;
        font-size: 18px;
    }

    .iNews_des {
        padding: 20px 20px 28px;
        gap: 10px;
    }

    .indexNews .indexbtn {
        margin-top: 30px;
    }

    .indexAbout {
        padding: 100px 0 120px;
    }

    .iAbout_main {
        gap: 20px;
    }

    .iAbout_main .indexTitleB h2 {
        margin-top: -30px;
    }

    .iAbout_des {
        gap: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 10;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-wrap: break-word;
        word-break: break-all;
    }

    .indexAbout::before {
        background: rgba(255, 255, 255, 0.3);
    }

    .iAbout_main .indexbtn {
        margin-top: 30px;
    }

    .footer_top {
        padding: 60px 0;
    }

    .footer_topmain h2 {
        font-size: 32px;
    }

    .footer_topmain p {
        font-size: 18px;
    }

    .footer_bot {
        max-width: 94%;
        margin: 0 auto;
        padding: 55px 10px 65px;
        border-radius: 28px;
    }

    .footer_logo img {
        max-height: 50px;
    }

    .footer_main1 {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        align-items: center;
        margin-bottom: 25px;
    }

    .public_ad_header_social_media {
        gap: 12px;
    }

    .public_ad_header_social_media a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .public_ad_header_social_media a i {
        font-size: 18px;
    }

    .footer_nav h3 {
        font-size: 22px;
    }

    .footer_nav a {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer_conmain {
        margin-bottom: 30px;
    }

    .footer_conbtn a {
        font-size: 14px;
        width: fit-content;
    }

    .iProcate_drop {
        top: 60px;
        width: 650px;
    }

    .iProcate_item {
        font-size: 14px;
        padding: 5px 8px;
    }}

@media (min-width:1200px) and (max-width:1440px) {
    .head_layer .container{
        padding: 0 30px;
    }

    .nav_wrap .head_nav > li {
        font-size: 12px;
    }
    
    .indexPro_ltop {
        padding: 40px 30px;
    }

    .indexPro_lbot {
        padding: 30px 28px;
    }

    .indexPro_search{
        margin-top: 50px;
    }

    .indexSer_rimg {
        width: 400px;
      }

      .indexSer_left {
        padding: 140px 5% 30px 0;
      }

      .indexNews .indexbtn{
        margin-top: 40px;
      }

      .indexAbout{
        padding: 120px 0 150px;
      }
}

@media (min-width:1441px) and (max-width:1680px) {}