* {
    margin: 0px;
    padding: 0px;
    font-size: 15px;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

input,
textarea {
    outline: none;
    border: none;
}

html {
    transition: font-size 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
  'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
  'Noto Color Emoji';


}

.public {
    width: 100%;
    max-width: 16rem;
    height: 100%;
    margin: 0 auto;
}

.nav {
    width: 100%;
    height: 1.08rem;
    background: #0C91E6;
    position: fixed;
    z-index: 9999;
    top: 0px;
    left: 0px;
    transition: 0.5s ease all;
}

.nav .out {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav .out .logo {
    height: 0.65rem;
    display: block;
}

.nav .out .logo img {
    height: 100%;
    display: block;
}

.nav .out .nav_right {
    display: flex ;
    align-items: center ;
    height: 100% ;
}

.nav .out .nav_right>ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav .out .nav_right>ul li {
    display: flex;
    align-items: center;
    position: relative;
    /* margin-right: 1.08rem; */

    height: 100%;
}

/* .nav .out .nav_right>ul li:last-child {
    margin-right: 0px;
} */

.nav .out .nav_right>ul li .title {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.18rem;
    color: #FFFFFF;
    padding: 0px 0.3rem;
    box-sizing: border-box;
    text-transform: uppercase ;
}

.nav .out .nav_right>ul li:hover,
.nav .out .nav_right>ul li.on {
    background: #FFF;
}

.nav .out .nav_right>ul li:hover .title,
.nav .out .nav_right>ul li.on .title {
    color: #0C91E6;
}

.nav .out .logo .img2 {
    display: none;
}

.nav.active {
    background: #FFF;
    box-shadow: 0px 0px 0.1rem 0.01rem #00000028;
}

.nav.active .out .logo .img {
    display: none;
}

.nav.active .out .logo .img2 {
    display: block;
}

.nav.active .out ul li .title {
    color: #0C91E6;
}

.nav.active .out ul li:hover,
.nav.active .out ul li.on {
    background: #0C91E6;
}

.nav.active .out ul li:hover .title,
.nav.active .out ul li.on .title {
    color: #FFF;
}

.nav.active .toggle_button span {
    background: #333 !important;
}



.banner_pages {
    width: 100%;
    height: 7.5rem;
    position: relative;
    overflow: hidden;
    margin-top: 1.08rem ;
}

.banner_pages .swiper {
    width: 100%;
    height: 100%;
    display: block;
}

.banner_pages .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner_pages .swiper-slide .img {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    z-index: 10;
}

.banner_pages .swiper-slide .img img {
    width: 100%;
    height: 100%;
    display: block;
}

.banner_pages .swiper-slide .public {
    position: relative;
    z-index: 20;
}

.banner_pages .swiper-slide .txt {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner_pages .swiper-slide .txt h5 {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.61rem;
    color: #fff;
    margin-bottom: 0.55rem;
    transition: 0.5s all ease;
    transform: translateY(0.6rem);
    transition-delay: 0.1s;
    visibility: hidden;
    opacity: 0;
    flex-wrap: wrap ;
}

.banner_pages .swiper-slide .txt h5 b {
    color: #0C91E6;
    font-weight: 500;
    font-size: 0.61rem;
}

.banner_pages .swiper-slide .txt p {
    font-weight: 400;
    font-size: 0.24rem;
    color: #FFFFFF;

    transform: translateY(0.6rem);
    transition: 0.5s all ease;
    transition-delay: 0.2s;
    visibility: hidden;
    opacity: 0;
}

.banner_pages .swiper-slide .txt a {
    width: 2.06rem;
    height: 0.66rem;
    background: #0C91E6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.22rem;
    color: #FFFFFF;
    margin-top: 1rem;
    transform: translateY(0.6rem);
    transition: 0.5s all ease;
    transition-delay: 0.3s;
    visibility: hidden;
    opacity: 0;
}


.banner_pages .swiper-slide-active .txt h5 {
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
}

.banner_pages .swiper-slide-active .txt p {
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
}

.banner_pages .swiper-slide-active .txt a {
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
}

.title_public {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title_public h5 {
    font-weight: bold;
    font-size: 0.39rem;
    color: #333333;
    text-transform: uppercase ;
}

.title_public i {
    width: 0.74rem;
    height: 0.04rem;
    background: #0C91E6;
    margin: 0.29rem 0px 0.17rem 0px;
}

.title_public p {
    font-weight: 400;
    font-size: 0.16rem;
    color: #666666;
    width: 100%;
    max-width: 8.96rem;
    text-align: center;
    line-height: 1.7em;
}

.PRODUCTS {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

.PRODUCTS .public {
    max-width: 15.05rem;
}

.PRODUCTS .out {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.18rem;
    margin-top: 0.77rem;
}

.PRODUCTS .out .box {
    width: 3.62rem;

}

.PRODUCTS .out .box .img {
    width: 100%;
    height: 3.62rem;
    border: 0.01rem solid #D4D4D4;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem;
    box-sizing: border-box;
    overflow: hidden;
}

.PRODUCTS .out .box .img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
    transition: 0.5s ease all;
}

.PRODUCTS .out .box span {
    width: 100%;
    display: block;
    /* margin-top: 0.24rem; */
    font-weight: 400;
    font-size: 0.16rem;
    color: #3E3E3E;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 0.8rem;
    background: #0C91E6;
    padding: 0px 0.2rem;
    box-sizing: border-box;
    line-height: 0.8rem;
    text-align: center;
    color: #FFF;
}

.PRODUCTS .out .box:hover .img img {
    transform: scale(1.1);
}


.about {
    width: 100%;
    padding: 1.33rem 0px 1.16rem 0px;
    box-sizing: border-box;
    background: url(../images/9956.jpg) no-repeat center;
    background-size: cover;
}

.about .title_public h5 {
    color: #FFF;
}

.about .out {
    width: 100%;
    max-width: 11.55rem;
    margin: 0 auto;
    margin-top: 0.87rem;
}

.about .out p {
    font-weight: 400;
    font-size: 0.18rem;
    color: #FFFFFF;
    line-height: 1.6em;
}

.about a {
    width: 2.48rem;
    height: 0.78rem;
    background: #0C91E6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.22rem;
    color: #FFFFFF;
    margin: 0 auto;
    margin-top: 1.46rem;
}

.PROJECT {
    width: 100%;
    margin: 1.10rem 0px;
}

.PROJECT .out {
    margin-top: 0.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.22rem;
}

.PROJECT .out .box {
    width: 3.83rem;
    height: 3.46rem;
    background: #EFF5F8;
    box-shadow: 0px 0px 0.1rem 0.01rem rgba(0, 0, 0, 0.15);
    padding: 0.55rem 0.23rem 0px 0.23rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.PROJECT .out .box .icon {
    height: 0.43rem;
    display: block;
    margin-bottom: 0.26rem;
}

.PROJECT .out .box h5 {
    font-weight: 500;
    font-size: 0.21rem;
    color: #111111;
    margin-bottom: 0.28rem;
    text-transform:capitalize ;
}

.PROJECT .out .box p {
    font-weight: 400;
    font-size: 0.16rem;
    color: #666666;
    /*text-align: center;*/
    height: 0.85rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    /* 限制为两行 */
    overflow: hidden;
}

/* OUR_PRODUCTS */

.OUR_PRODUCTS {
    margin-bottom: 1.12rem;
}

.OUR_PRODUCTS .title_public {
    width: 100%;
    background: #0C91E6;
    padding: 0.52rem 0px 0.58rem 0px;
    box-sizing: border-box;
}

.OUR_PRODUCTS .title_public h5 {
    color: #FFF;
}

.OUR_PRODUCTS .title_public i {
    background: #FFF;
    margin-top: 0px;
}

.OUR_PRODUCTS .but_list {
    width: 100%;
    height: 2.16rem;
    position: relative;
}

.OUR_PRODUCTS .but_list::after {
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.56);
    position: absolute;
    left: 0px;
    top: 0px;

}

.OUR_PRODUCTS .but_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.71rem;
}

.OUR_PRODUCTS .but_list .item {
    flex: 1;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.OUR_PRODUCTS .but_list .item::after {
    width: 0.27rem;
    height: 0.27rem;
    display: block;
    background: #0C91E6;
    content: '';
    position: absolute;
    bottom: -0.135rem;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease all;
}

.OUR_PRODUCTS .but_list .item.active::after {
    opacity: 1;
    visibility: visible;
}

.OUR_PRODUCTS .but_list .img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    position: relative;
    z-index: 2;
        padding: 0px 0.35rem;
    box-sizing: border-box;
}

.OUR_PRODUCTS .but_list .img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
}

.OUR_PRODUCTS .but_list .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.59);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 0px 0.35rem;
    box-sizing: border-box;
    z-index: 3;
}

.OUR_PRODUCTS .but_list .txt h5 {
    font-weight: 500;
    font-size: 0.24rem;
    color: #FFFFFF;
}

.OUR_PRODUCTS .but_list .txt i {
    width: 0.74rem;
    height: 0.04rem;
    background: #0C91E6;
    display: block;
    margin-top: 0.2rem;
}

.OUR_PRODUCTS .public {
    max-width: 15.05rem;
}

.OUR_PRODUCTS .swiper-slide .out {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.18rem;
    margin-top: 0.77rem;
}

.OUR_PRODUCTS .swiper-slide .out .box {
    width: 3.62rem;

}

.OUR_PRODUCTS .swiper-slide .out .box .img {
    width: 100%;
    height: 3.62rem;
    border: 0.01rem solid #D4D4D4;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem;
    box-sizing: border-box;
    overflow: hidden;
}

.OUR_PRODUCTS .swiper-slide .out .box .img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
    transition: 0.5s ease all;
}

.OUR_PRODUCTS .swiper-slide .out .box span {
    width: 100%;
    display: block;
    /* margin-top: 0.24rem; */
    font-weight: 400;
    font-size: 0.16rem;
    color: #3E3E3E;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 0.8rem;
    background: #0C91E6;
    padding: 0px 0.2rem;
    box-sizing: border-box;
    line-height: 0.8rem;
    text-align: center;
    color: #FFF;
}

.OUR_PRODUCTS .swiper-slide h5 {
    font-weight: bold;
    font-size: 0.39rem;
    color: #333333;
    text-align: center;
    text-transform: uppercase ;
}

.OUR_PRODUCTS .swiper-slide .out .box:hover .img img {
    transform: scale(1.1);
}

/* .OUR_PRODUCTS .swiper-slide .out .box:hover span {
    color: #0C91E6;
} */

.OUR_PRODUCTS .but_list .item.active .txt h5 {
    color: #0C91E6;
}


.News {
    margin-bottom: 1.01rem;
}

.News .out {
    margin-top: 0.59rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.34rem;
}

.News .out .box_active {
    width: 9.89rem;
    height: 6.09rem;
    position: relative;
}

.News .out .box_active .img {
    width: 100%;
    height: 100%;
    display: block;
}

.News .out .box_active .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.News .out .box_active .text {
    position: absolute;
    bottom: 0.58rem;
    width: 100%;
    left: 0px;
    padding: 0.35rem 0.4rem;
    box-sizing: border-box;
    background: rgba(58, 120, 193, 0.72);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.News .out .box_active .text .txt {
    width: 6.78rem;
}

.News .out .box_active .text .txt h5 {
    font-weight: 500;
    font-size: 0.2rem;
    color: #FFFFFF;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.News .out .box_active .text .txt p {
    font-weight: 400;
    font-size: 0.14rem;
    color: #E2E2E2;
    margin-top: 0.24rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 限制为两行 */
    overflow: hidden;
}

.News .out .box_active .text span {
    width: 1.26rem;
    height: 0.37rem;
    border: 0.01rem solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.14rem;
    color: #FFFFFF;
    border-radius: 0.3rem;
}

.News .out .box {
    width: 4.77rem;
}

.News .out .box .img {
    width: 100%;
    height: 3.46rem;
    overflow: hidden;
}

.News .out .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease all;
}

.News .out .box .text {
    width: 100%;
    height: 2.62rem;
    background: #F6F6F6;
    padding: 0.27rem 0.24rem 0.23rem 0.24rem;
    box-sizing: border-box;
}

.News .out .box .text span {
    font-weight: 400;
    font-size: 0.15rem;
    color: #666666;
    display: block;
    margin-bottom: 0.16rem;
}

.News .out .box .text h5 {
    font-weight: 500;
    font-size: 0.18rem;
    color: #222222;
    margin-bottom: 0.17rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.News .out .box .text p {
    font-weight: 500;
    font-size: 0.14rem;
    color: #666666;
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* 限制为两行 */
    overflow: hidden;
    height: 0.6rem;
}

.News .out .box .text b {
    width: 1.26rem;
    height: 0.37rem;
    border: 0.01rem solid #707070;
    border-radius: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.14rem;
    color: #555555;
}

.News .out .box:hover .img img {
    transform: scale(1.1);
}

.News .out .box:hover h5 {
    color: #0C91E6;
}


.footer {
    width: 100%;
    background: #191B1F;

}

.footer .title_icon {
    padding: 0.45rem 0px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.01rem solid #D7D7D7;
}

.footer .title_icon .icon_out {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 11.7rem;
}

.footer .title_icon .icon_out .box {
    width: 33%;
    display: flex;
    align-items: center;
}

.footer .title_icon .icon_out .box img {
    width: 0.68rem;
    height: 0.68rem;
    display: block;
    margin-right: 0.13rem;
}

.footer .title_icon .icon_out .box span {
    font-weight: 400;
    font-size: 0.18rem;
    color: #DCDCDC;
}

.footer .title_icon .erweima_out {
    display: flex;
    align-items: center;
}

.footer .title_icon .erweima_out .box span {
    font-weight: 400;
    font-size: 0.15rem;
    color: #DCDCDC;
    margin-top: 0.15rem;
    display: block;
    text-align: center;
}

.footer .title_icon .erweima_out .box img {
    width: 0.68rem;
    height: 0.68rem;
}

.footer .title_icon .erweima_out .box:last-child {
    margin-left: 0.8rem;
}

footer .out {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0px 0.7rem 0px;
    box-sizing: border-box;
}

footer .out .left {
    width: 2.36rem;
}

footer .out .left .logo {
    height: 0.8rem;
    display: block;
}

footer .out .left .logo img {
    height: 100%;
    display: block;
}

footer .out .left .form {
    display: flex;
    align-items: center;
    margin-top: 0.47rem;
}

footer .out .left .form img {
    width: 0.48rem;
    height: 0.48rem;
    display: block;
    margin-right: 0.18rem;
    flex: none;
}

footer .out .left .form input {
    width: 100%;
    height: 0.48rem;
    border: none;
    border-bottom: 0.01rem solid #707070;
    box-sizing: border-box;
    background: none;
    font-weight: 400;
    font-size: 0.12rem;
    color: #FFFFFF;
}

footer .out .left .form input::placeholder {
    font-size: 0.12rem;
    color: #FFF;
}

footer .out .left .icon_lsit {
    width: 100%;
    margin-top: 0.59rem;
}

footer .out .left .icon_lsit span {
    font-weight: 500;
    font-size: 0.19rem;
    color: #FFFFFF;
}

footer .out .left .icon_lsit .list {
    width: 1.61rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 0.39rem;
    gap: 0.3rem;
}

footer .out .left .icon_lsit .list img {
    width: 0.32rem;
    height: 0.32rem;
    display: block;
}

footer .out .ceng {
    width: 5.44rem;
    display: flex;
    justify-content: space-between;
}

footer .out .ceng .box h5 {
    font-weight: 500;
    font-size: 0.22rem;
    color: #FFFFFF;
    display: block;
    margin-bottom: 0.4rem;
    text-transform: capitalize ;
}

footer .out .ceng .box a {
    font-weight: 400;
    font-size: 0.16rem;
    margin-bottom: 0.34rem;
    color: #DCDCDC;
    display: block;
    text-transform: capitalize ;
}

footer .out .ceng .box a:last-child {
    margin-bottom: 0px;
}

footer .out .right {
    width: 3.62rem;
}

footer .out .right h5 {
    font-weight: 500;
    font-size: 0.22rem;
    color: #FFFFFF;
    margin-bottom: 0.28rem;
}

footer .out .right input {
    width: 100%;
    height: 0.42rem;
    border-radius: 0.05rem;
    border: 0.01rem solid #707070;
    padding: 0 0.12rem;
    box-sizing: border-box;
    background: none;
    font-weight: 400;
    font-size: 0.13rem;
    color: #D9D9D9;

    margin-top: 0.14rem;
}

footer .out .right input:first-child {
    margin-top: 0px;
}

footer .out .right input::placeholder,
footer .out .right .box textarea::placeholder {
    font-weight: 400;
    font-size: 0.13rem;
    color: #D9D9D9;
}

footer .out .right .box {
    display: flex;
    align-items: center;
    margin-top: 0.14rem;
}

footer .out .right .box textarea {
    height: 0.95rem;
    width: 100%;
    background: none;
    border: 0.01rem solid #707070;
    padding: 0.12rem;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 0.13rem;
    color: #D9D9D9;
}

footer .out .right .box button {
    width: 1.05rem;
    flex: none;
    height: 0.95rem;
    border: none;
    background: #0C91E6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.16rem;
    color: #FFFFFF;
    cursor: pointer;
}

.footer_DIbu {
    width: 100%;
    height: 0.7rem;
    border-top: 0.04rem solid #7E7E7E;
    box-sizing: border-box;
}

.ProjectPrice .out .left::after {
    width: 100%;
    position: absolute;
    top: 0px;

}

.footer_DIbu .public {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer_DIbu .public p {
    font-weight: 400;
    font-size: 0.14rem;
    color: #CCCCCC;
}

.footer_DIbu .public a {
    position: absolute;
    right: 0px;
    font-weight: 400;
    font-size: 0.14rem;
    color: #CCCCCC;
}

.banenr {
    position: relative;
    width: 100%;
    /* height: 5.51rem; */
    margin-top: 1.08rem;
}

.banenr img {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: 1;
    object-fit: cover;
}

.banenr .public {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0px;
    left: 50% ;
    transform: translateX(-50%);
    z-index: 2;
}

.banenr h5 {
    font-weight: 500;
    font-size: 0.61rem;
    color: #FFFFFF;
}

.About_pages {
    width: 100%;
    margin-top: 1.2rem;
    margin-bottom: 1.1rem;
}

.About_pages .public {
    max-width: 15rem;
}

.About_pages .out {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.About_pages .out .left {
    width: 7rem;
    height: 6.05rem;
    position: relative;
}

.About_pages .out .left .img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.About_pages .out .left .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.About_pages .out .left .Play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.18rem;
    height: 1.18rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.About_pages .out .left .Play img {
    display: block;
    height: 0.4rem;
}

.About_pages .out .right {
    width: 6.89rem;
    padding-top: 0.19rem;
}

.About_pages .out .right h6 {
    font-weight: bold;
    font-size: 0.39rem;
    color: #333333;
}

.About_pages .out .right i {
    width: 0.74rem;
    height: 0.04rem;
    display: block;
    margin: 0.35rem 0px 0.35rem 0px;
    background: #0C91E6;
}

.About_pages .out .right h5 {
    font-weight: bold;
    font-size: 0.34rem;
    color: #333333;
}

.About_pages .out .right .text {
    margin-top: 0.35rem;
}

.About_pages .out .right p {
    font-weight: 400;
    font-size: 0.2rem;
    color: #888888;
    line-height: 1.7em;
}

.About_pages .out .right a {
    width: 2.48rem;
    height: 0.78rem;
    background: #0C91E6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.22rem;
    color: #FFFFFF;
    margin-top: 0.54rem;
}

.development_history {
    width: 100%;
    margin-bottom: 1rem;
}

.development_history .out {
    margin-top: 0.6rem;
    position: relative;
}

.development_history .swiper {
    width: 100%;
    height: 14.75rem;
}

.development_history .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 2.95rem;
}

.development_history .swiper-slide:last-child {
    margin-bottom: 0px;
}

.development_history .swiper-slide:nth-child(2n) {
    flex-direction: row-reverse;
}

.development_history .swiper-slide .left {
    width: 5.59rem;
    height: 100%;
    height: 2.60rem;
}

.development_history .swiper-slide .left img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.development_history .swiper-slide .ceng {
    width: 0.44rem;
    height: 100%;
    display: block;
    transform: translateY(0.38rem);
    position: relative;
    background-color: #eee;
}

.development_history .swiper-slide .ceng::after {
    background: url(../images/y.png) center top repeat-y;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
}

.development_history .swiper-slide .ceng h5 {
    font-weight: bold;
    font-size: 0.39rem;
    color: #999999;
    position: absolute;
    top: -0.26rem;
    left: -1.22rem;
}

.development_history .swiper-slide:first-child .ceng {
    padding-top: 0.2rem;
}

.development_history .swiper-slide:first-child .ceng h5 {
    top: -0.1rem;
}

.development_history .swiper-slide .ceng h5::after {
    width: 0.07rem;
    height: 0.07rem;
    border-radius: 50%;
    background: #999999;
    position: absolute;
    top: 50%;
    right: -0.58rem;
    content: '';

}

/* .development_history .swiper-slide .ceng img {
    width: 100% ;
    display: block ;
    height: 100% ;
} */

.development_history .swiper-slide .right {
    width: 5.59rem;
    height: 2.60rem;
    display: flex;
    align-items: center;
}

.development_history .swiper-slide .right p {
    font-weight: 400;
    font-size: 0.16rem;
    color: #888888;
    line-height: 1.6em;
}

.development_history .out .swiper-button-prev {
    top: -0.3rem;
    right: 0px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.development_history .out .swiper-button-next {
    bottom: -0.5rem;
    right: 0px;
    top: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.development_history .out .swiper-button-next:after,
.development_history .out .swiper-button-prev:after {
    font-size: 0.15rem;
    font-weight: bold;
}

.development_history .Learn_More {
    width: 2.48rem;
    height: 0.78rem;
    background: #0C91E6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.22rem;
    color: #FFFFFF;
    margin: 0 auto;
    margin-top: 1.37rem;
}

.Honor {
    width: 100%;
    padding-top: 0.45rem;
    background: #F0F1F6;
}

.Honor .swiper {
    padding: 0.5rem 0px 1rem 0px;
    box-sizing: border-box;
}

.Honor .swiper-slide {
    width: 25%;
    padding: 0rem 0.18rem;
    box-sizing: border-box;
}

.Honor .swiper-slide .box {
    width: 100%;
    background: #FFF;
    padding: 0.24rem 0.38rem 0.42rem 0.24rem;
    box-sizing: border-box;
    box-shadow: 0px 0.03rem 0.12rem 0.01rem rgba(0, 0, 0, 0.13);
}

.Honor .swiper-slide .box .img {
    height: 3.45rem;
    width: 2.46rem;
    margin: 0 auto;
}

.Honor .swiper-slide .box .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.Honor .swiper-slide .box i {
    width: 100%;
    height: 0.01rem;
    margin: 0.29rem 0px 0.27rem 0px;
    background: #EBEBEB;
    display: block;
}

.Honor .swiper-slide .box span {
    font-weight: 500;
    font-size: 0.24rem;
    color: #555555;
    display: block;
    text-align: center;
}

.Honor .swiper-button-next,
.Honor .swiper-button-prev {
    border-radius: 50%;

}

.Honor .swiper-button-next:after,
.Honor .swiper-button-prev:after {
    font-size: 0.3rem;
    color: #333;
}


.Honor .swiper-button-next:hover::after,
.Honor .swiper-button-prev:hover::after {
    color: #0C91E6;
}


.News_pages {
    margin-top: 1rem;
    margin-bottom: 0.9rem;
}

.News_pages .out {
    margin-top: 0.6rem;
}

.News_pages .out .box {
    width: 100%;
    border-bottom: 0.01rem solid #DDDDDD;
    position: relative;
    padding-bottom: 0.49rem;
    box-sizing: border-box;
    margin-bottom: 0.53rem;
}

.News_pages .out .box::after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 0%;
    height: 0.01rem;
    background: #0B897E;
    content: '';
    display: block;
    transition: 0.6s ease;
}

.News_pages .out .box:hover::after {
    width: 100%;
}

.News_pages .out .box a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.News_pages .out .box .left {
    width: 4.52rem;
}

.News_pages .out .box .left img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease all;
}

.News_pages .out .box .left .img {
    width: 100%;
    height: 2.76rem;
    overflow: hidden;
}

.News_pages .out .box:hover .left img {
    transform: scale(1.1);
}

.News_pages .out .box .right {
    width: 7.21rem;
}

.News_pages .out .box .right h5 {
    font-weight: 500;
    font-size: 0.24rem;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
    color: #333333;
    margin-bottom: 0.26rem;
}

.News_pages .out .box .right p {
    font-weight: 400;
    font-size: 0.18rem;
    color: #666666;
    line-height: 1.5em;
    letter-spacing: 0.01rem;
    word-break: break-all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0.48rem;

}

.News_pages .out .box:hover .right h5 {
    color: #0C91E6;
}

.News_pages .out .box .right .tiem {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 0.33rem;
}

.News_pages .out .box .right .tiem img {
    height: 0.21rem;
    margin-right: 0.1rem;
}

.News_pages .out .box .right .tiem span {
    font-weight: 400;
    font-size: 0.15rem;
    color: #666666;
}

.News_pages .out .box .right .jiantou_box {
    width: 1.71rem;
    height: 0.54rem;
    /* background: #0B897E; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.54rem;
    overflow: hidden;
    position: relative;
}

.News_pages .out .box .right .jiantou_box::after {
    width: 0%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: #0C91E6;
    content: ' ';
    transition: 0.6s ease;
    z-index: -1;
}

.News_pages .out .box .right .jiantou_box span {
    font-weight: 500;
    font-size: 0.14rem;
    color: #99999B;

}

.News_pages .out .box .right .jiantou_box .jian {
    width: 0.54rem;
    height: 0.54rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 0.18rem;
    transform: translateX(0.1rem);
    background: #0C91E6;

}

.News_pages .out .box:hover .right .jiantou_box span {
    color: #FFF;
}

.News_pages .out .box:hover .right .jiantou_box::after {
    width: 100%;
}

.News_pages .out .tiem {
    width: 1.7rem;
}

.News_pages .out .tiem h5 {
    font-weight: 400;
    font-size: 0.29rem;
    color: #0C91E6;
}

.News_pages .out .tiem i {
    width: 1.45rem;
    height: 0.01rem;
    background: #0C91E6;
    margin: 0.21rem 0px 0.45rem 0px;
    display: block;
}

.News_pages .out .tiem span {
    font-weight: 400;
    font-size: 0.16rem;
    color: #999999;
    display: block;
    text-align: center;
}


.Products_pages {
    width: 100%;
    margin-top: 0.6rem;
    margin-bottom: 0.73rem;
}

.Products_pages .public {
    max-width: 15.5rem;
}

.Products_pages .out {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 0.73rem;
}

.Products_pages .out .left {
    width: 3.69rem;
    /* height: 4.35rem; */
    background: #FFFFFF;
    box-shadow: 0px 0px 0.1rem 0.01rem rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
}

.Products_pages .out .left .title {
    width: 100%;
    margin-bottom: 0.18rem;
    background: #0C91E6;
    padding: 0.31rem 0px 0.27rem 0.5rem;
    box-sizing: border-box;
}

.Products_pages .out .left .title h5 {
    font-weight: bold;
    font-size: 0.25rem;
    color: #fff;
    margin-bottom: 0.11rem;

}

.Products_pages .out .left .list {
    width: 100%;
    padding: 0px 0.23rem;
    box-sizing: border-box;
}

.Products_pages .out .left .list a {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.21rem 0px 0.19rem 0px;
    box-sizing: border-box;
    border-bottom: 0.01rem solid #EBEBEB;
    color: #666666;
    font-weight: 400;
    font-size: 0.16rem;
    text-transform: capitalize;
}

.Products_pages .out .left .list a i {
    font-size: 0.16rem;
    color: #666666;
    font-weight: bold;
    margin-right: 0.1rem;
    display: block;
}

.Products_pages .out .left .list a:hover,
.Products_pages .out .left .list a.on {
    color: #0A3B95;
}

.Products_pages .out .left .list a:hover i,
.Products_pages .out .left .list a.on i {
    color: #0A3B95;
}

.Products_pages .out .right {
    width: calc(100% - 3.69rem - 0.41rem);
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0.18rem;
}

.Products_pages .out .right .box {
    width: 3.62rem;
}

.Products_pages .out .right .img {
    width: 100%;
    height: 3.62rem;
    border: 0.01rem solid #D4D4D4;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem;
    box-sizing: border-box;
    overflow: hidden;
}

.Products_pages .out .right .img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
    transition: 0.5s all ease;
}

.Products_pages .out .right span {
    width: 100%;
    display: block;
    /* margin-top: 0.24rem; */
    font-weight: 400;
    font-size: 0.16rem;
    color: #3E3E3E;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 0.8rem;
    background: #0C91E6;
    padding: 0px 0.2rem;
    box-sizing: border-box;
    line-height: 0.8rem;
    text-align: center;
    color: #FFF;
}

.Products_pages .out .right .box:hover .img img {
    transform: scale(1.1);
}


.SALES_pages {
    width: 100%;
    margin-top: 1rem;
}

.SALES_pages .public {
    max-width: 12rem;
}

.SALES_pages .out {
    width: 100%;
    margin-top: 0.93rem;
}

.SALES_pages .out img {
    width: 100%;
    display: block;
}

.SALES_pages2 {
    margin-top: 1.25rem;
    margin-bottom: 1rem;
}

.SALES_pages2 .public {
    max-width: 15rem;
}

.SALES_pages2 .out {
    display: flex;
    flex-wrap: wrap;
    gap: 0.34rem;
    margin-top: 0.61rem;
}

.SALES_pages2 .out .box {
    width: 4.77rem;
}

.SALES_pages2 .out .box .img {
    width: 100%;
    height: 3.46rem;
    overflow: hidden;
}

.SALES_pages2 .out .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s all ease;
}

.SALES_pages2 .out .box .text {
    width: 100%;
    height: 2.62rem;
    background: #F6F6F6;
    padding: 0.27rem 0.24rem 0.23rem 0.24rem;
    box-sizing: border-box;
}

.SALES_pages2 .out .box .text span {
    font-weight: 400;
    font-size: 0.15rem;
    color: #666666;
    display: block;
    margin-bottom: 0.16rem;
}

.SALES_pages2 .out .box .text h5 {
    font-weight: 500;
    font-size: 0.18rem;
    color: #222222;
    margin-bottom: 0.17rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.SALES_pages2 .out .box .text p {
    font-weight: 500;
    font-size: 0.14rem;
    color: #666666;
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* 限制为两行 */
    overflow: hidden;
    height: 0.6rem;
}

.SALES_pages2 .out .box .text b {
    width: 1.26rem;
    height: 0.37rem;
    border: 0.01rem solid #707070;
    border-radius: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.14rem;
    color: #555555;
}

.SALES_pages2 .out .box:hover .img img {
    transform: scale(1.1);
}

.SALES_pages2 .out .box:hover .text h5 {
    color: #0C91E6;
}

.Contact_pages {
    margin: 1.10rem 0px;
}

.Contact_pages .public {
    max-width: 15rem;
}

.Contact_pages .out {
    margin-top: 0.83rem;
    display: flex;
    justify-content: space-between;
}

.Contact_pages .out .left {
    width: 5.67rem;
}

.Contact_pages .out .left .box {
    display: flex;
    margin-bottom: 0.28rem;
}

.Contact_pages .out .left .box:last-child {
    margin-bottom: 0px;
}

.Contact_pages .out .left .box img {
    width: 0.52rem;
    height: 0.52rem;
    display: block;
    margin-right: 0.16rem;
}

.Contact_pages .out .left .box .txt {
    display: flex;
    align-items: center;
}

.Contact_pages .out .left .box .txt span {
    font-weight: 400;
    font-size: 0.18rem;
    color: #999999;
}

.Contact_pages .out .left .box .txt a {
    font-weight: 500;
    font-size: 0.18rem;
    color: #333333;
    margin-left: 0.1rem;

    word-break: break-all;
}

.Contact_pages .out .right {
    width: 7.62rem;
}

.Contact_pages .out .right .img_out {
    display: flex;
}

.Contact_pages .out .right .img_out .box:first-child {
    margin-right: 1rem;
}

.Contact_pages .out .right .img_out .box img {
    width: 1.11rem;
    height: 1.11rem;
    display: block;
    margin-bottom: 0.2rem;
}

.Contact_pages .out .right .img_out .box span {
    font-weight: 400;
    font-size: 0.21rem;
    color: #999999;
    text-align: center;
    display: block;
}

/* 在线联系 */
.Feedback {
    width: 100%;
    padding-top: 0.45rem;
    box-sizing: border-box;
}

.Feedback .Feedback_out {
    width: 100%;
}

.Feedback .Feedback_out .title {
    margin-bottom: 0.26rem;
}

.Feedback .Feedback_out .title h5 {
    font-weight: bold;
    font-size: 0.27rem;
    color: #111111;
    margin-bottom: 0.15rem;
}

.Feedback .Feedback_out .title p {
    font-weight: 400;
    font-size: 0.15rem;
    color: #8E8E8E;
    text-transform: capitalize;
}

.Feedback .Feedback_out form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.Feedback .Feedback_out input {
    width: 48%;
    height: 0.46rem;
    background: #FFFFFF;
    border-radius: 0.04rem;
    border: 0.01rem solid #EEEEEE;
    font-weight: 400;
    font-size: 0.14rem;
    color: #666666;
    padding: 0px 0.12rem;
    box-sizing: border-box;
    margin-bottom: 0.28rem;
}

.Feedback .Feedback_out textarea {
    width: 100%;
    height: 2.14rem;
    border: 0.01rem solid #EEEEEE;
    font-weight: 400;
    font-size: 0.14rem;
    color: #666666;
    padding: 0.18rem 0.21rem 0.18rem 0.21rem;
    box-sizing: border-box;
    background: #FFF;
}

.Feedback .Feedback_out .button {
    width: 100%;
}

.Feedback .Feedback_out button {
    width: 2.21rem;
    height: 0.46rem;
    background: #0C91E6;
    /* border-radius: 0.33rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.22rem;
    color: #FFFFFF;
    cursor: pointer;
    border: none;
    margin-top: 0.65rem;

    display: flex;
    align-items: center;
    justify-content: center;

}

.CAPTCHA {
    width: 70%;
    display: flex;
    align-items: center;
    margin-top: 0.3rem;
}

.CAPTCHA input {
    margin-bottom: 0px !important;
    margin-right: 0.1rem !important;
}

.CAPTCHA img {
    width: 1.2rem;
    height: 0.48rem;
    display: block;
}

.Knowledge-list {
    padding: 0.8rem 0px;
}

.Knowledge-list .public {
    max-width: 12.5rem;
}

.Knowledge-list .titel {
    text-align: center;
    /* margin-top: 70px; */
}

.Knowledge-list .titel h5 {
    font-size: 0.3rem;
    color: rgba(51, 51, 51, 1);
    font-weight: 400;
}

.Knowledge-list .release {
    height: 0.62rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 0.01rem solid rgba(227, 227, 227, 1);
    border-bottom: 0.01rem solid rgba(227, 227, 227, 1);
    margin-top: 0.3rem;
}

.Knowledge-list .release i {
    display: block;
    width: 0.01rem;
    height: 0.14rem;
    background: rgba(153, 153, 153, 1);
    margin: 0px 0.3rem;
}

.Knowledge-list .release span {
    font-size: 0.13rem;
    color: rgba(102, 102, 102, 1);
}

.Knowledge-list .text {
    padding: 0.43rem 0rem 0.73rem 0rem;
    box-sizing: border-box;
    font-size: 0.16rem;
    color: rgba(51, 51, 51, 1);
    line-height: 2.5em;
    border-bottom: 0.01rem solid rgba(227, 227, 227, 1);
}

.Knowledge-list .text p {
    font-size: 0.16rem;
    line-height: 1.8em;
}

.Knowledge-list .text img {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    display: block;
    height: auto ;
}

.Knowledge-list .text video {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

.Knowledge-list .butt_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding-left: 77px; */
    box-sizing: border-box;
    margin-top: 0.61rem;
}

.Knowledge-list .butt_box .left .box {
    display: flex;
    align-items: center;
}

.Knowledge-list .butt_box .left .box span,
.Knowledge-list .butt_box .left .box a {
    color: #666666;
    font-size: 0.13rem;
    margin-bottom: 0.14rem;
    display: block;
}

.Knowledge-list .butt_box .left .box a:hover {
    color: #0A3B95;
}

.Knowledge-list .butt_box .right {
    width: 1.61rem;
    height: 0.36rem;
    background: #0A3B95;
    border-radius: 0.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}

.Knowledge-list .butt_box .right {
    cursor: pointer;
}

.Products_xq_pages {
    width: 100%;
    margin: 1rem 0px;
}

.Products_xq_pages .out_title {
    display: flex;
    justify-content: space-between;
}

.Products_xq_pages .out_title .left {
    width: 45%;
    height: 4rem;
    background: #9999995d;
    padding: 0.4rem 0.3rem ;
    box-sizing: border-box;
}

.Products_xq_pages .out_title .left img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: contain;
}

.Products_xq_pages .out_title .right {
    width: 50%;
    padding-top: 0.2rem;
    box-sizing: border-box;
}

.Products_xq_pages .out_title .right h5 {
    color: #171717;
    font-size: 0.24rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.Products_xq_pages .out_title .right p {
    line-height: 1.5em;
    color: #666;
    font-size: 0.16rem;
}

.Products_xq_pages .out_title .right .but_list {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.3rem;
    margin-bottom: 0.4rem;
}

.Products_xq_pages .out_title .right .but_list a {
    width: 2.3rem;
    height: 0.47rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: 400;
    font-size: 0.15rem;
    background: #0C91E6;
}

.Products_xq_pages .out_title .right .but_list a:nth-child(2) {
    background: #171717;
}

.Products_xq_pages .out_title .right .icon_box .box {
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
}

.Products_xq_pages .out_title .right .icon_box .box:last-child {
    margin-bottom: 0px;
}

.Products_xq_pages .out_title .right .icon_box .box img {
    width: 0.35rem;
    height: 0.35rem;
    margin-right: 0.15rem;
}

.Products_xq_pages .out_title .right .icon_box .box span {
    color: #171717;
    font-size: 0.17rem;
    display: block;
    font-weight: bold;
}

.Products_xq_pages .out_Description {
    width: 100%;
    margin-top: 0.4rem;
    background: #f7f7f7;
    padding: 0.3rem 0.4rem;
    box-sizing: border-box;
}

.Products_xq_pages .out_Description h5 {
    color: #333333;
    font-size: 0.24rem;
    margin-bottom: 0.2rem;
}

.Products_xq_pages .out_Description h4 {
    color: #333 ;
    font-size: 0.2rem ;
    font-weight: 700 ;
    border-bottom: 0.02rem solid rgb(96, 180, 204);
    padding: 0.08rem 0.2rem 0.06rem 0.3rem ;
    margin-bottom: 0.15rem ;
}

.Products_xq_pages .out_Description p {
    color: #666;
    line-height: 1.6em;
    font-size: 0.16rem;
}

.Products_xq_pages .out_Description img , .Products_xq_pages .out_Description video , .Products_xq_pages .out_Description iframe {
    width: auto ;
    max-width: 100% ;
    display: block ;
    margin: 0 auto ;
    height: auto ;
}

.Products_xq_pages .out_Description video , .Products_xq_pages .out_Description iframe {
        min-width: 7rem;
    min-height: 5rem;
}

.Products_xq_pages .Related_Products {
    width: 100%;
    margin-top: 0.7rem;
}

.Products_xq_pages .Related_Products>h5 {
    color: #171717;
    font-size: 0.25rem;
    margin-bottom: 0.4rem;
}

.Products_xq_pages .products_swiper {
    height: 4.56rem;
}

.Products_xq_pages .products_swiper .swiper-slide {
    width: 25%;
    height: 100%;
}


.Products_xq_pages .products_swiper .swiper-slide a {
    width: 100%;
    height: 100%;
    padding: 0.6rem 0.54rem 0.39rem 0.72rem;
    box-sizing: border-box;
    display: block;
}

.Products_xq_pages .products_swiper .swiper-slide a .img {
    width: 100%;
    height: 2.38rem;
    overflow: hidden;
}

.Products_xq_pages .products_swiper .swiper-slide a .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.Products_xq_pages .products_swiper .swiper-slide .text {
    position: absolute;
    bottom: 0.14rem;
    width: 90%;
    background: #D7D7D7;
    border-left: 0.07rem solid #0C91E6;
    border-right: 0.07rem solid #0C91E6;
    left: 50%;
    transform: translateX(-50%);
    padding: 0px 0.39rem;
    box-sizing: border-box;
    height: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Products_xq_pages .products_swiper .swiper-slide .text p {
    color: #333333;
    font-size: 0.15rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.Products_xq_pages .products_swiper .swiper-slide:nth-child(2n) .public_products {
    background: #FFFFFF;
}

.Products_xq_pages .Form_out {
    width: 100%;
    margin-top: 0.7rem;
    background: #EBEBEB;
    padding: 0.5rem 0.4rem;
    box-sizing: border-box;
}

.Products_xq_pages .Form_out .Feedback {
    padding: 0px;
}

.nav .out .nav_right>ul li .drop_down {
    position: absolute;
    left: 50%;
    top: 1.08rem;
    transform: translateX(-50%);
    background: #FFF;
    border-radius: 0.05rem;
    box-shadow: 0px 0px 0.1rem 0.01rem rgba(0, 0, 0, 0.16);
    width: max-content;
    padding: 0.2rem 0.1rem;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.2rem);
    transition: all 0.2s ease-in-out;

}

.nav .out .nav_right>ul li:hover .drop_down {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0%);
}

.nav .out .nav_right>ul li .drop_down a {
    display: block;
    width: 100%;
    padding: 0.1rem 0.2rem;
    box-sizing: border-box;
    font-size: 0.15rem;
    color: #171717;
    text-transform: capitalize;
    text-align: center ;
}

.nav .out .nav_right>ul li .drop_down a:hover {
    background: #0C91E6;
    color: #FFF;
}

.toggle_button {
    width: 0.4rem;
    height: 0.3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 0.2rem;
    cursor: pointer;
    display: none;
}

.toggle_button span {
    height: 0.03rem;
    width: 100%;
    display: block;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.toggle_button.on span:nth-child(1) {
    transition-delay: 0.2s;
    transform: rotate(45deg);
    transform-origin: 0.01rem;
}

.toggle_button.on span:nth-child(2) {
    opacity: 0;
    transform: translateX(0.25rem);
}

.toggle_button.on span:nth-child(3) {
    transition-delay: 0.4s;
    transform: rotate(-45deg);
    transform-origin: 0.01rem;
}

.min_nav {
    width: 100%;
    background: #FFF;
    position: absolute;
    top: 1.08rem;
    left: 0px;
    box-shadow: 0.1rem 0px 0.1rem 0.01rem #00000021;
    padding: 0.3rem 0px;
    display: none;
}

.min_nav .title {
    width: 100%;
    height: 0.6rem;
    font-size: 0.24rem;
    color: #333;
    border-bottom: 0.01rem solid #eee;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0px 0.3rem;
    box-sizing: border-box;
}

.min_nav .title a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 0.24rem;
    text-transform: uppercase ;
}

.min_nav .title .img {
    width: 0.6rem;
    height: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0.3rem;
    top: 0px;
    z-index: 10;
}

.min_nav .title .img img {
    height: 0.2rem;
    display: block;
    transition: 0.5s ease all;
}

.min_nav .box {
    width: 100%;
    padding-left: 0.2rem;
    box-sizing: border-box;
    display: none;
}

.min_nav .box a {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.15rem 0.3rem;
    color: #333;
    font-size: 0.2rem;
}

.min_nav .title.on .img img {
    transform: rotate(90deg);
}

.Video_pages {
    position: fixed;
    z-index: 999999;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.Video_pages.on {
    opacity: 1;
    visibility: visible;
}

.Video_pages .vid_box {
    width: 90%;
    max-width: 9rem;
    height: 5.06rem;
    position: relative;
}

.Video_pages .guanbi {
    position: absolute;
    top: -0.6rem;
    right: 0px;
    cursor: pointer;
}

.Video_pages .guanbi i {
    font-size: 0.3rem;
    color: #FFF;
}

.Video_pages .vid_box iframe {
    width: 100%;
    object-fit: cover !important;
}

.but_News_list {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.2rem 0.4rem;
    margin-top: 0.4rem;
}

.but_News_list a {
    width: 1.44rem;
    height: 0.38rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEEEEE;
    font-weight: 400;
    font-size: 0.15rem;
    color: #333333;
}

.but_News_list a.on {
    background: #0C91E6;
    color: #FFF;
}

.banner_pages .swiper-slide .img img {
    object-fit: cover ;
}


.rightfix {
    top: 50%;
    transform: translateY(-50%);
    right: 0.1rem;
    width: auto;
    box-shadow: none;
    border: none;
    background: transparent;
}

.rightfix li {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 0;
    padding: 0;
    border: none;
    background: transparent;
    position: relative;
}

.rightfix li:not(:last-child) {
    margin-bottom: 0.06rem;
}

.rightfix li:nth-child(1),
.rightfix li:nth-child(1) .floatwindow_more_box {
    background: #4cafe9;
}

.rightfix li:nth-child(1) .floatwindow_more_box::after {
    border-left-color: #4cafe9;
}

.rightfix li:nth-child(2) .floatwindow_more_box::after {
    border-left-color: #2FD76D;
}

.rightfix li:nth-child(3) .floatwindow_more_box::after {
    border-left-color: #F5B246;
}

.rightfix li:nth-child(4) .floatwindow_more_box::after {
    border-left-color: #008CD9;
}

.rightfix li:nth-child(5) .floatwindow_more_box::after {
    border-left-color: #3CB035;
}

.rightfix li:nth-child(6) .floatwindow_more_box::after {
    border-left-color: #B0B0B0;
}

.rightfix li:nth-child(2),
.rightfix li:nth-child(2) .floatwindow_more_box {
    background: #2FD76D;
}

.rightfix li:nth-child(3),
.rightfix li:nth-child(3) .floatwindow_more_box {
    background: #F5B246;
}

.rightfix li:nth-child(4),
.rightfix li:nth-child(4) .floatwindow_more_box {
    background: #008CD9;
}

.rightfix li:nth-child(5),
.rightfix li:nth-child(5) .floatwindow_more_box {
    background: #3CB035;
}

.rightfix li:nth-child(6),
.rightfix li:nth-child(6) .floatwindow_more_box {
    background: #B0B0B0;
}

.rightfix li:nth-child(4) .floatwindow_abs div {
    height: auto;
    padding: 0.14rem 0.16rem;
    /* 0.875rem 1rem */
}

.rightfix li:nth-child(4) .floatwindow_abs div::after {
    top: 20%;
}

.rightfix li:nth-child(2) .floatwindow_abs div {
    text-align: center;
    height: auto;
    padding: 0.14rem 0.16rem;
    /* 0.875rem 1rem */
}

.rightfix li:nth-child(2) .floatwindow_abs div::after {
    top: 20%;
}

.rightfix li .floatwindow_abs {
    position: absolute;
    top: 0px;
    right: 0px;
    padding-right: 1.1rem;
    display: none;
}

.rightfix li .floatwindow_abs img {
    width: 1.2rem;
    height: 1.2rem;
    min-width: 1.2rem;
    margin-top: 0.15rem ;
}

.rightfix li .floatwindow_abs div {
    position: relative;
    padding: 0.3rem 0.2rem;
    /* 1.875rem 1.25rem */
    border-radius: 0.05rem;
    /* 0.3125rem */
    height: 0.3rem;
    /* 1.875rem */
    line-height: 0.3rem;
    /* 1.875rem */
    white-space: nowrap;
    color: #FFF;
    box-sizing: content-box;
    font-size: 0.16rem;
    /* 1rem */
}

.rightfix li .floatwindow_abs div::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -0.065rem;
    border-width: 0.075rem 0 0.075rem 0.08rem;
    border-color: transparent;
    border-left-color: #FFF;
    border-style: solid;
}

.rightfix li:hover .floatwindow_abs {
    display: block;
}

.rightfix li:first-child::before {
    display: none;
}

.rightfix li::before {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.45);
    bottom: auto;
    top: 0;
    display: none;
}

.rightfix li>div,
.rightfix li>a:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: transparent;
    flex-wrap: wrap;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.rightfix li:hover>a,
.rightfix li:hover>div {
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.rightfix li:hover .img {
    z-index: 2;
    opacity: 1;
    right: 100%;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    display: block;
}

.rightfix li .icon {
    width: 100%;
}

.rightfix li .icon img {
    width: 0.3rem;
    /* 1.875rem */
    height: 0.3rem;
    /* 1.875rem */
    display: block ;
    margin: 0 auto ;
}

.rightfix li .name {
    width: 100%;
    color: #FFF;
    text-align: center;
    font-size: 0.14rem;
    /* 0.875rem */
    font-weight: 400;
    line-height: 0.24rem;
    /* 1.5rem */
}

.rightfix li .img {
    position: absolute;
    top: 0;
    right: 100%;
    width: 1.2rem;
    /* 7.5rem */
    height: 1.2rem;
    /* 7.5rem */
    z-index: -1;
    opacity: 0;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    display: none;
}

.fixright_li_last {
    display: none;
    cursor: pointer;
}

.rightfix li {
    position: relative;
    border: none !important;
}

.rightfix li .iconfont {
    font-size: 0.22rem;
    /* 1.375rem */
    display: block;
    color: #fff;
    border-radius: 50%;
    background: #1857A4;
}

.rightfix li:hover .iconfont {
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.rightfix li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 0.01rem;
    background: #DEDDDD;
    width: 0.19rem;
    /* 1.1875rem */
}

.right_div.img {
    min-width: 1.2rem !important;
    /* 7.5rem */
}

.right_div.img img {
    height: 1.2rem;
    /* 7.5rem */
    object-fit: contain;
}

.rightfix {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 9999;
    display: block;
    border-right: none;
    transform: translateY(-50%);
}

.fix_ul li {
    position: relative;
    float: none;
    padding: 0.08rem;
    /* .5rem */
    border: 0.01rem solid #ffffff;
    border-right: none;
    background: #000000;
    color: #ffffff;
    text-align: center;
    font-size: 0.12rem;
    /* .75rem */
    cursor: pointer;
}

.fix_ul li i {
    color: #ffffff;
    font-size: 0.25rem;
    /* 1.55rem（实际开发建议用24px或25px） */
}

.fix_ul a {
    display: block;
    color: #ffffff;
    font-size: 0.14rem;
    /* .875rem */
}

.right_div {
    position: absolute;
    top: 0;
    right: 0.4rem;
    padding: 0 0.05rem;
    min-width: 1.4rem;
    min-height: 0.7rem;
    border: 0.01rem solid #ddd;
    background: #fff;
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, .1);
    color: #6a6a6a;
    font-size: 0.16rem;
    /* 1rem */
    line-height: 0.68rem;
    transition: .4s ease-in-out;
    transform: scale(0);
    -ms-transform: scale(0);
}

.fix_ul li:last-child {
    border-bottom: none;
}

.fix_ul li:hover {
    background: #57b665;
    transition: .4s ease-in-out;
}

.fix_ul li:first-child>.right_div {
    padding: 0;
}

.fix_ul li:hover a,
.fix_ul li:hover i {
    color: #fff;
}

.fix_ul li:hover .right_div {
    right: 0.7rem;
    transition: .4s ease-in-out;
    transform: scale(1);
    -ms-transform: scale(1);
}

.right_div div {
    height: 0.3rem;
    line-height: 0.3rem;
}

@media (max-width:764px) {
    .toggle_button {
        display: flex;
    }

    .banner_pages {
        height: 3rem;
        margin-top: 1.08rem;
    }

    .banner_pages .swiper-slide .txt h5 b {
        display: none ;
    }

    .public {
        padding: 0px 4%;
        box-sizing: border-box;
    }

    .nav .out .nav_right>ul {
        display: none;
    }

    .banner_pages .swiper-slide .txt {
        display: none ;
    }

    .News .out .box_active .text .txt {
        width: 65%;
    }

    .banner_pages .swiper-slide .txt h5 {
        flex-wrap: wrap;
    }

    .footer .title_icon {
        flex-wrap: wrap;
    }

    .OUR_PRODUCTS .but_list {
        height: auto;
        flex-wrap: wrap;
    }

    .OUR_PRODUCTS .but_list .item {
        flex: 50%;
        height: 2rem;
    }

    .PRODUCTS .out {
        gap: 0.3rem 0px;
        justify-content: space-between;
    }

    .PRODUCTS .out .box {
        width: 48%;
    }

    .about .out p {
        text-align: center;
        font-size: 0.2rem;
    }

    .title_public h5 {
        text-align: center;
    }

    .PROJECT .out {
        gap: 0.3rem 0px;
        justify-content: space-between;
    }

    .PROJECT .out .box {
        width: 48%;
    }

    .OUR_PRODUCTS .swiper-slide .out {
        gap: 0.3rem 0px;
        justify-content: space-between;
    }

    .OUR_PRODUCTS .swiper-slide .out .box {
        width: 48%;
    }

    .OUR_PRODUCTS .public {
        padding: 0px;
    }

    .OUR_PRODUCTS .swiper {
        padding: 0px 5%;
        box-sizing: border-box;
    }

    .News .out .box_active {
        width: 100%;
    }

    .News .out .box {
        width: 100%;
    }

    .footer .title_icon .icon_out {
        flex-wrap: wrap;
        gap: 0.3rem 0px;
    }

    .footer .title_icon .icon_out .box {
        width: 100%;
    }

    .footer .title_icon .erweima_out {
        margin-top: 0.5rem;
    }

    .footer .title_icon .erweima_out .box img {
        width: 1.3rem;
        height: 1.3rem;
    }

    footer .out .ceng {
        display: none;
    }

    .footer_DIbu .public a {
        position: relative;
        margin-left: 0.05rem;
    }

    .banenr {
        height: 3.5rem;
    }

    .About_pages .out {
        flex-wrap: wrap;
    }

    .About_pages .out .left {
        width: 100%;
        height: 4.5rem;
    }

    .About_pages .out .right {
        width: 100%;
        margin-top: 0.4rem;
    }

    .development_history .swiper-slide .ceng {
        display: none;
    }

    .development_history .swiper-slide .left {
        width: 48%;
    }

    .development_history .swiper-slide .right {
        width: 48%;
    }

    .Honor .swiper-slide {
        width: 50%;
    }

    .Products_pages .out {
        flex-wrap: wrap;
    }

    .Products_pages .out .left {
        width: 100%;
    }

    .Products_pages .out .right {
        width: 100%;
        gap: 0.3rem 0px;
        justify-content: space-between;
        margin-top: 0.4rem;
    }

    .Products_pages .out .right .box {
        width: 48%;
    }

    .News_pages .out .box a {
        flex-wrap: wrap;
    }

    .News_pages .out .box .left {
        width: 100%;
    }

    .News_pages .out .box .left .img {
        height: 4rem;
    }

    .News_pages .out .box .right {
        width: 100%;
        margin-top: 0.4rem;
    }

    .News_pages .out .tiem {
        display: none;
    }

    .SALES_pages2 .out .box {
        width: 100%;
    }

    .Contact_pages .out {
        flex-wrap: wrap;
    }

    .Contact_pages .out .left {
        width: 100%;
    }

    .Contact_pages .out .right {
        width: 100%;
        margin-top: 0.6rem;
    }

    .Contact_pages .out .right .Feedback .public {
        padding: 0px 0px;
    }

    .Products_xq_pages .out_title {
        flex-wrap: wrap;
    }

    .Products_xq_pages .out_title .left {
        width: 100%;
    }

    .Products_xq_pages .out_title .right {
        width: 100%;
        margin-top: 0.5rem;
    }

    .Products_xq_pages .products_swiper .swiper-slide {
        width: 50%;
    }

    .Products_xq_pages .Form_out {
        padding: 0.4rem 0.1rem;
    }

}

@media (min-width:360px) and (max-width:768px) {
    html {
        font-size: 52px;
    }

}

@media (min-width:769px) and (max-width:930px) {
    html {
        font-size: 50px;
    }

}

@media (min-width:931px) and (max-width:1099px) {
    html {
        font-size: 60px;
    }
}

@media (min-width:1100px) and (max-width:1249px) {
    html {
        font-size: 70px;
    }
}

@media (min-width:1250px) and (max-width:1399px) {
    html {
        font-size: 80px;
    }
}

@media (min-width:1400px) and (max-width:1699px) {
    html {
        font-size: 90px;
    }
}


@media (min-width:1700px) {
    html {
        font-size: 100px;
    }
}