* {
    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;
}

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

.nav {
    width: 100%;
    height: 0.9rem;
    background: #FFF;
    position: relative;
    z-index: 99999;
}

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

.nav .out .logo {
    height: 90%;
}

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

.nav .out ul {
    display: flex;
    align-items: center;
}

.nav .out ul li {
    position: relative;
}

.nav .out ul li .title {
    padding: 0.13rem 0.3rem;
    box-sizing: border-box;
    color: #000000;
    font-weight: 600;
    font-size: 0.2rem;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.nav .out ul li .title::after {
    height: 0.03rem;
    background: #000000;
    width: 0%;
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    transition: 0.3s ease;
}


.nav .out ul li .classify_list {
    width: max-content;
    background: #FFF;
    position: absolute;
    left: 0px;
    display: none;
}

.nav .out ul li .classify_list a {
    width: 100%;
    display: block;
    color: #494c4f;
    padding: 0.13rem 0.2rem;
    box-sizing: border-box;
    font-size: 0.15rem ;
}

.nav .out ul li .classify_list a:hover {
    background: #494c4f;
    color: #FFF;
}

.nav .out ul li:hover .classify_list {
    display: block;
}

.nav .out ul li.active .title::after,
.nav .out ul li:hover .title::after {
    width: 100%;
}

.nav .out ul li .title i {
    font-size: 0.16rem;
    line-height: 1;
    padding: 0.1rem 0 0.1rem 0.08rem;
    margin-top: -0.1rem;
    margin-bottom: -0.1rem;
    box-sizing: border-box;
    display: inline-block;
}


.nav .out form {
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 0.01rem 0.01rem rgba(0, 0, 0, 0.1);
    border-radius: 0.03rem;
    box-sizing: border-box;
    overflow: hidden;
}

.nav .out form input {
    width: 1.52rem;
    height: 0.5rem;
    background: #eceeef;
    padding: 0px 0.15rem;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 0.14rem;
    color: #7a7a7a;
    font-family: "Roboto", Sans-serif;
}

.nav .out form button {
    width: 0.5rem;
    height: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #54595f;
    border: none;
    cursor: pointer;
}

.nav .out form button i {
    color: #FFF;
    font-weight: bold;
    font-size: 0.18rem;
}


.banner_swiper {
    width: 100%;
    height: 8.5rem;
}

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

.banner_swiper .swiper-slide .img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.banner_swiper .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    position: relative;
}

.banner_swiper .swiper-slide .img::after {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    content: '';
}

.banner_swiper .swiper-slide .text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
}

.banner_swiper .swiper-slide .text .public {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner_swiper .swiper-slide .text h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3em;
    color: #f08519;
    text-align: center;
    margin-bottom: 0.7rem;
}

.banner_swiper .swiper-slide .text h2 span {
    color: #FFF;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3em;
}

.banner_swiper .swiper-slide .text p {
    width: 100%;
    max-width: 6.6rem;
    text-align: center;
    color: #fff;
    font-family: "Rajdhani", Sans-serif;
    font-size: 0.18rem;
    font-weight: 300;
    line-height: 1.7em;
    margin-bottom: 0.3rem;
}

.banner_swiper .swiper-slide .text a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(97, 206, 112, 0);
    border: 0.02rem solid #FFF;
    display: block;
    font-size: 0.16rem;
    padding: 0.15rem 0.3rem;
    border-radius: 0.04rem;
    color: #FFF;

    transition: all .3s;
}

.banner_swiper .swiper-slide .text a i {
    font-size: 0.16rem;
    margin-left: 0.04rem;
}

.banner_swiper .swiper-slide .text a:hover {
    background-color: #969292;
    border-color: #969292;
}

.public_title {
    width: 100%;
}

.public_title h5 {
    color: #949798;
    font-family: "Poppins", Sans-serif;
    font-size: 0.4rem;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0.2rem;
}

.public_title i {
    width: 10%;
    margin: 0 auto;
    background: #f08519;
    height: 0.1rem;
    display: block;
}

.Choose_your_favorite {
    margin: 1rem 0px;
}

.Choose_your_favorite .out {
    margin-top: 0.6rem;
    display: flex;
    flex-wrap: wrap;
}

.Choose_your_favorite .out .box {
    width: calc(100% / 6);
    height: 2.29rem;
    display: block;
    background-color: #f8f8f8;
    transition-duration: 2s;
    position: relative;
}

.Choose_your_favorite .out .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}

.Choose_your_favorite .out .box .list_box {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all .6s ease-in-out;
}

.Choose_your_favorite .out .box .text {
    padding: 0.3rem;
    box-sizing: border-box;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all .6s ease-in-out;
}

.Choose_your_favorite .out .box .text_a {
    background-color: #00a2e9;
    transform: rotateX(-180deg) rotateY(0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.Choose_your_favorite .out .box .txt_t {
    z-index: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.Choose_your_favorite .out .box .text_a a {
    padding: 0.12rem 0.24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 0.16rem;
    font-weight: 600;
    border-radius: 0.04rem;
    border: 0.02rem solid #FFF;
    box-sizing: border-box;
}

.Choose_your_favorite .out .box .list_box:hover .txt_t {
    -webkit-transform: rotateX(180deg) rotateY(0);
    transform: rotateX(180deg) rotateY(0);
}

.Choose_your_favorite .out .box .list_box:hover .text_a {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.Choose_your_favorite .out .box .text h5 {
    color: #000;
    font-family: "Roboto", Sans-serif;
    font-size: 0.14rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.Choose_your_favorite .out .box .text .txt {
    width: 100%;
    color: #000;
    font-family: "Roboto", Sans-serif;
    font-size: 0.1rem;
    font-weight: 400;

}

.around_box {
    width: 100%;
    height: 6.5rem;
}

.around_box .out {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.around_box .box {
    width: 50%;
    height: 100%;
    position: relative;
}

.around_box .box .img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.around_box .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.around_box .box .text {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 100%;
    transition: all 0.6s;
}

.around_box .box .text img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    filter: brightness(50%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
    z-index: -1;
}

.around_box .box .text h5 {
    font-family: "Poppins", Sans-serif;
    font-weight: 600;
    font-size: 0.21rem;
    color: #FFF;
    margin-bottom: 0.2rem;
}

.around_box .box .text p {
    color: #FFF;
    font-size: 0.16rem;
    font-weight: 500;

}

.around_box .box:hover .text {
    opacity: 0;
    visibility: hidden;
}

.Most_popular_products {
    margin: 1rem 0px;
}

.Most_popular_products .public {
    max-width: 11.2rem;
}

.Most_popular_products .out {
    margin-top: 0.6rem;
    display: flex;
    flex-wrap: wrap;
}

.Most_popular_products .out .box {
    width: 33.33%;
    padding: 0.1rem;
    box-sizing: border-box;
}

.Most_popular_products .out .box .img {
    width: 100%;
    height: 2.87rem;
    overflow: hidden;
    margin-bottom: 0.2rem;
}

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

.Most_popular_products .out .box .text {
    width: 100%;

}

.Most_popular_products .out .box .text h5 {
    text-align: center;
    color: #949798;
    font-family: "Poppins", Sans-serif;
    font-size: 0.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.Most_popular_products .out .box .text p {
    padding: 0px 0.2rem;
    box-sizing: border-box;
    font-family: "Rajdhani", Sans-serif;
    text-shadow: 0px 0px 0.1rem rgba(0, 0, 0, .3);
    color: #7a7a7a;
    font-size: 0.144rem;
    line-height: 1.6em;
    margin-bottom: 0.2rem;
    font-weight: 300;
}

.Most_popular_products .out .box a {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background-color: #f08519;
    font-size: 0.15rem;
    padding: 0.12rem 0.24rem;
    border-radius: 0.03rem;
    color: #fff;
    fill: #fff;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    width: max-content;
    margin: 0 auto;
}

.Most_popular_products .out .box a i {
    font-weight: bold;
    color: #FFF;
    font-size: 0.15rem;
    margin-left: 0.05rem;
}

.video_About {
    width: 100%;
    background: #f8f8f8;
    padding: 1rem 0px;
    box-sizing: border-box;
}

.video_About .public {
    max-width: 13.8rem;
}

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

.video_About .out .left {
    width: 8.77rem;
    height: 4.93rem;
    overflow: hidden;
    position: relative;
}

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

.video_About .out .left .playBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    clear: both;
    width: 1rem;
    height: 0.7rem;
    line-height: 0.7rem;
    font-size: 0.45rem;
    background: rgba(0, 0, 0, .65);
    text-align: center;
    color: #fff;
    border-radius: 0.18rem;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -0.5rem;
    margin-top: -0.35rem;
    cursor: pointer;
    z-index: 20 ;
}

.video_About .out .left .playBtn span {
    width: 0;
    height: 0;
    border-top: 0.15rem  solid transparent;
    border-bottom: 0.15rem solid transparent;
    border-left: 0.15rem solid #fff;
}

.video_About .out .left iframe {
    width: 100% ;
    height: 100% ;
    object-fit: cover ;
    position: relative;
    z-index: 10;
}

.video_About .out .right {
    width: 4.63rem;
    padding: 0.1rem;
    box-sizing: border-box;
}

.video_About .out .right h5 {
    color: #949798;
    font-family: "Poppins", Sans-serif;
    font-size: 0.25rem;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0.2rem;
}

.video_About .out .right .txt {
    padding: 0px 0.2rem;
    box-sizing: border-box;
    font-family: "Rajdhani", Sans-serif;
    font-weight: 400;
    text-shadow: 0px 0px 0.01rem rgba(0, 0, 0, .3);
    font-size: 0.16rem;
    line-height: 1.7em;
    color: #7a7a7a;
}

.video_About .out .right a {
    padding: 0.13rem 0.24rem;
    border: 0.03rem solid #f08519;
    border-radius: 0.01rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 0 auto;
    color: #f08519;
    font-size: 0.15rem;
    font-weight: 500;
    margin-top: 0.4rem;
}

.video_About .out .right a i {
    font-size: 0.15rem;
    margin-left: 0.05rem;
    display: block;
}

.customers_evaluate {
    margin: 1rem 0px;
}

.customers_evaluate .public {
    max-width: 11.20rem;
}

.customers_evaluate .out {
    padding: 0.3rem;
    box-sizing: border-box;
    position: relative;
}

.customers_evaluate .out .text {
    width: 100%;
}

.customers_evaluate .out .text p {
    /*font-family: "Roboto", Sans-serif;*/
    font-size: 0.15rem;
    font-weight: 400;
    line-height: 1.5em;
    color: #7a7a7a;
    text-align: center;
}

.customers_evaluate .out .box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.customers_evaluate .out .box .img {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.customers_evaluate .out .box .img img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

.customers_evaluate .out .box .txt {
    margin-left: 0.2rem;
}

.customers_evaluate .out .box .txt h5 {
    font-size: 0.14rem;
    color: #7a7a7a;
    font-weight: bold;
    margin-bottom: 0.05rem;
}

.customers_evaluate .out .box .txt p {
    color: #000;
    font-family: "Roboto Slab", Sans-serif;
    font-weight: 400;
    font-size: 0.15rem ;
}

.customers_evaluate .swiper-button-prev {
    left: -0.3rem;
}

.customers_evaluate .swiper-button-next {
    right: -0.3rem;
}

.customers_evaluate .swiper-pagination {
    bottom: -0.3rem;
}

.customers_evaluate .swiper-pagination .swiper-pagination-bullet {
    width: 0.06rem;
    height: 0.06rem;
    background: #000;
    margin: 0px 0.06rem;
    cursor: pointer;
}

.customers_evaluate .swiper-button-prev::after,
.customers_evaluate .swiper-button-next::after {
    font-size: 0.2rem;
    font-weight: bold;
    color: hsla(0, 0%, 93.3%, 0.9);
}

.Resources {
    width: 100%;
    padding: 1rem 0px;
    box-sizing: border-box;
    background: #f8f8f8;
}

.Resources .out {
    margin-top: 0.2rem;
    display: flex;
    flex-wrap: wrap;
}

.Resources .out .box {
    width: 50%;
    display: flex;
}

.Resources .out .box .text {
    padding: 0.3rem;
    margin: 0.1rem;
    box-sizing: border-box;
    border-radius: 0.05rem;
    background: #FFF;
    box-shadow: 0px 0px 0.1rem 0.01rem rgba(0, 0, 0, .1);
    width: 100%;
}

.Resources .out .box .text h5 {
    color: #949798;
    font-family: "Poppins", Sans-serif;
    font-size: 0.25rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0.2rem;
}

.Resources .out .box .text .txt {
    width: 100%;
}

.Resources .out .box .text .txt p {
    color: #7a7a7a;
    font-family: "Rajdhani", Sans-serif;
    font-weight: 500;
    text-shadow: 0px 0px 0.1rem rgba(0, 0, 0, .3);
    font-size: 0.16rem;
    line-height: 1.5em;
    margin-bottom: 0.14rem;
}

.Resources .out .box .text a {
    color: #f08519;
    font-family: "Rajdhani", Sans-serif;
    font-weight: 500;
    text-shadow: 0px 0px 0.1rem rgba(0, 0, 0, .3);
    font-size: 0.18rem;
}

.footer {
    padding: 0.5rem 0px;
    background: #7B7878;
}

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

.footer .out {
    display: flex;
    justify-content: space-between;
}

.footer .out .left {
    width: 6.66rem;
    display: flex;
    flex-wrap: wrap;
}

.footer .out .left .A_box {
        width: 50%;
    display: block;
        margin: 0.05rem 0px;
}

.footer .out .left a {
font-family: "Rajdhani", Sans-serif;
font-weight: 300;
    color: #FFFFFF;
    font-size: 0.16rem;
    line-height: 0.25rem;

}

.footer .out .left a:hover {
    color: #FF0000;
}

.footer .out .content {
    width: 2.67rem;
}

.footer .out .content input {
    width: 100%;
    height: 0.4rem;
    padding: 0.08rem 0.16rem;
    box-sizing: border-box;
    color: #7a7a7a;
    font-size: 0.16rem;
    font-weight: 400;
    margin-bottom: 0.1rem;
    background: #FFF;
}

.footer .out .content button {
    height: 0.4rem;
    width: 1.99rem;
    background: #FF0000;
    color: #FFF;
    font-size: 0.16rem;
    border: none;
    border-radius: 0.05rem;
    cursor: pointer;
}

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

.footer .out .right .txt {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0.1rem 0px;
}

.footer .out .right .txt i {
    font-size: 0.15rem;
    color: #F08519;
    display: block;
}

.footer .out .right .txt span {
    margin-left: 0.05rem;
    font-family: "Rajdhani", Sans-serif;
    font-weight: 400;
    color: #FFF;
    font-size: 0.15rem;
}

.footer .out .right .icon_list {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 0.2rem;
    gap: 0px 0.1rem ;
}

.footer .out .right .icon_list a {
    width: 0.24rem;
    height: 0.24rem;
    display: block;
    border-radius: 50%;
}

.footer .out .right .icon_list a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.fonnter_dibu {
    width: 100%;
    height: 0.35rem;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px 0.2rem ;
    position: relative;
}

.fonnter_dibu a {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    color: #454545;
    font-size: 0.15rem;
    font-weight: 500;
    color: #454545;
}

.fonnter_dibu img {
    height: 0.17rem;
    display: block;
    margin-right: 0.2rem;
}

.banner_nr_pages {
    height: 6rem;
}

.banner_nr_pages .swiper-slide .text h2 {
    margin-bottom: 0.3rem;
}


.Successful_pages {
    margin: 1rem 0px;
    overflow: hidden;
}

.Successful_pages .title h5 {
    text-align: center;
    color: #949798;
    font-family: "Roboto", Sans-serif;
    font-size: 0.4rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.Successful_pages .title p {
    text-align: center;
    font-family: "Rajdhani", Sans-serif;
    font-weight: 500;
    font-size: 0.15rem;
    color: #54595f;
}

.Successful_pages .out {
    margin-top: 0.8rem;
}

.Successful_pages .out .box {
    display: flex;
    width: 100%;
    margin-bottom: 0.8rem;
}

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

.Successful_pages .out .box:nth-child(2n) {
    flex-direction: row-reverse;
}

.Successful_pages .out .box .img {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    box-shadow: 0px 0px 0.1rem 0px rgba(0, 0, 0, .5);
    width: 8.53rem;
}

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


.Successful_pages .out .box .txt {
    width: 4.61rem;
    border-style: solid;
    border-width: 0.01rem;
    border-color: #000;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
    padding: 0.3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.Successful_pages .out .box .txt .num {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 0.2rem;
    box-sizing: border-box;
    background-color: #0ba6ea;
    color: #fff;
    font-family: "Roboto", Sans-serif;
    font-size: 0.5rem;
    font-weight: 600;
    font-style: italic;
}

.Successful_pages .out .box .txt h5 {
    text-align: center;
    color: #949798;
    font-family: "Roboto", Sans-serif;
    font-weight: 600;
    font-size: 0.32rem;
    margin-bottom: 0.2rem;
}


.Successful_pages .out .box .txt p {
    color: #7a7a7a;
    line-height: 1.6em;
    font-size: 0.16rem;
}

.Successful_pages .out .box .txt a {
    padding: 0.15rem 0.3rem;
    border-radius: 0.03rem;
    border: 0.02rem solid #9e9e9e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    color: #9e9e9e;
    font-size: 0.16rem;
    width: max-content;
    margin: 0 auto;
    margin-top: 0.4rem;
}

.Successful_pages .out .box .txt a i {
    display: block;
    color: #9e9e9e;
    font-size: 0.16rem;
    margin-left: 0.06rem;
}


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

.FAQ_pages .public {
    max-width: 11.2rem;
}

.FAQ_pages .title {
    margin-bottom: 0.4rem;
}

.FAQ_pages .title h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f08519;
    font-family: "Poppins", Sans-serif;
    font-size: 0.4rem;
    font-weight: 700;
}

.FAQ_pages .title h5 b {
    color: #00a2e9;
    display: block;
    margin-left: 0.1rem;
    font-family: "Poppins", Sans-serif;
    font-size: 0.4rem;
    font-weight: 700;
}

.FAQ_pages .out {
    width: 100%;
    border: 0.01rem solid #d4d4d4;
    box-sizing: border-box;
}

.FAQ_pages .out .item {
    width: 100%;
    border-bottom: 0.01rem solid #d4d4d4;
}

.FAQ_pages .out .item:last-child {
    border-bottom: none;
}

.FAQ_pages .out .item .tit {
    margin: 0;
    padding: 0.15rem 0.2rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
}

.FAQ_pages .out .item .tit .i_box {
    width: 0.16rem;
    height: 0.16rem;
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    margin-right: 0.08rem;
}

.FAQ_pages .out .item .tit .i_box i {
    width: 100%;
    height: 0.02rem;
    background: #6c6d6e;
    display: block;
    position: absolute;
    top: 50%;
    left: 0%;
    margin-top: -0.01rem;
    margin-left: 0px;
    transition: 0.4s ease;
}

.FAQ_pages .out .item .tit .i_box i:nth-child(2) {
    height: 100%;
    width: 0.02rem;
    background: #6c6d6e;
    display: block;
    top: 0%;
    left: 50%;
    margin-top: 0px;
    margin-left: -0.01rem;
}


.FAQ_pages .out .item.on .tit i:nth-child(2) {
    transform: rotate(90deg);
}

.FAQ_pages .out .item .tit span {
    color: #6c6d6e;
    font-weight: 600;
    font-size: 0.16rem;
}

.FAQ_pages .out .item .txt {
    font-family: "Rajdhani", Sans-serif;
    padding: 0.15rem 0.2rem;
    border-top: 0.01rem solid #d4d4d4;
    box-sizing: border-box;
    margin-bottom: 0.1rem;
    font-family: "Rajdhani", Sans-serif;
    font-weight: 400;
    color: #7a7a7a;
    font-size: 0.144rem;
    line-height: 1.6em;
    display: none;
}

.FAQ_pages .out .item .txt p{
    font-family: "Rajdhani", Sans-serif;
    font-weight: 500;
    color: #7a7a7a;
    font-size: 0.16rem;
    line-height: 1.6em;
}

.Free_pages {
    width: 100%;
    padding: 0.15rem 0px;
    box-sizing: border-box;
    background-color: transparent;
    background-image: linear-gradient(180deg, #adadad 0%, #3f3f3f 100%);
    height: 8.45rem;
}

.Free_pages .public {
    max-width: 11.4rem;
}

.Free_pages .out {
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
}

.Free_pages .out .left {
    width: 5.2rem;
    height: 4.44rem;
    padding: 0.1rem;
    box-sizing: border-box;
    margin: 0px 0.3rem 0px 0px;
    --e-column-margin-right: 0.3rem;
    --e-column-margin-left: 0px;
    display: flex;
    flex-wrap: wrap;
}

.Free_pages .out .left .img {
    width: 2.4rem;
    height: 1.9rem;
    padding: 0.1rem;
    box-sizing: border-box;
}

.Free_pages .out .left .img img {
    height: 1.9rem;
    width: 1.9rem;
    border-radius: 50%;
    display: block;
}

.Free_pages .out .right {
    width: 5.7rem;
    padding: 0px 0.2rem;
    box-sizing: border-box;
}

.Free_pages .out .right h5 {
    display: flex;
    align-items: center;
    color: #fff;
    font-family: "Poppins", Sans-serif;
    font-size: 0.34rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    text-align: center;
    justify-content: center;
}

.Free_pages .out .right h5 b {
    color: #f08519;
    font-family: "Poppins", Sans-serif;
    font-size: 0.34rem;
    font-weight: 600;
    margin-left: 0.06rem;
}

.Free_pages .out .right p {
    text-align: center;
    color: #fff;
    font-family: "Rajdhani", Sans-serif;
    font-weight: 500;
    font-size: 0.144rem;
    line-height: 1.7em;
}

.Free_pages .out .right form {
    margin-top: 0.3rem;
    width: 100%;
}

.Free_pages .out .right form input {
    width: 100%;
    background: #FFF;
    padding: 0.08rem 0.16rem;
    box-sizing: border-box;
    margin-bottom: 0.42rem;
    border: 0.01rem solid #818a91;
    color: #7a7a7a;
    font-size: 0.15rem;
    border-radius: 0.03rem;
    height: 0.4rem;
}

.Free_pages .out .right form textarea {
    width: 100%;
    background: #FFF;
    padding: 0.08rem 0.16rem;
    box-sizing: border-box;
    margin-bottom: 0.42rem;
    border: 0.01rem solid #818a91;
    color: #7a7a7a;
    font-size: 0.15rem;
    border-radius: 0.03rem;
    height: 0.96rem;
}

.Free_pages .out .right form button {
    width: 100%;
    background-color: #f08519;
    color: #fff;
    height: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.15rem;
    border: none;
    cursor: pointer;
}

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

.News_pages .out {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.News_pages .out .left {
    width: 10.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.News_pages .out .left .box {
    width: 3.23rem;
    background: #FFF;
    box-shadow: 0px 0px 0.1rem 0.01rem rgba(0, 0, 0, .2);
    transition: 0.5s ease all;
}

.News_pages .out .left .box:hover {
    box-shadow: 0px 0px 0.4rem 0.01rem rgba(0, 0, 0, .2);
}

.News_pages .out .left .box .text {
    margin-top: 0.2rem;
    padding: 0px 0.3rem;
    box-sizing: border-box;
}

.News_pages .out .left .box .text h5 {
    font-size: 0.21rem;
    font-weight: 500;
    color: #54595f;
    margin-bottom: 0.25rem;
}

.News_pages .out .left .box .text p {
    margin: 0;
    font-size: 0.14rem;
    color: #777;
    margin-bottom: 0.25rem;
    line-height: 1.7em;
}

.News_pages .out .left .box .text a {
    color: #f08519;
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.12rem;
}

.News_pages .out .left .box .txt {
    width: 100%;
    padding: 0.15rem 0.3rem;
    box-sizing: border-box;
    border-top: 0.01rem solid #eaeaea;
    line-height: 1.3em;
    font-size: 0.12rem;
    color: #adadad;
}

.News_pages .out .right {
    width: 3.3rem;
    background: #f8f8f8;
    padding: 0.3rem;
    box-sizing: border-box;
}

.News_pages .out .right h5 {
    color: #949798;
    font-family: "Poppins", Sans-serif;
    font-size: 0.2rem;
    font-weight: 600;
    line-height: 1.5em;
    text-align: center;
    margin-bottom: 0.2rem;
}

.News_pages .out .right p {
    text-align: center;
    font-family: "Rajdhani", Sans-serif;
    font-weight: 500;
    text-shadow: 0px 0px 0.1rem rgba(0, 0, 0, .3);
    font-size: 0.16rem;
    color: #7a7a7a;
    margin-bottom: 0.34rem;
}

.News_pages .out .right input {
    width: 100%;
    border: 0.01rem solid #818a91;
    color: #373a3c;
    background: #FFF;
    height: 0.4rem;
    padding: 0.08rem 0.16rem;
    box-sizing: border-box;
    margin-bottom: 0.1rem;
    font-size: 0.15rem;
}

.News_pages .out .right button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    background-color: #f00;
    font-size: 0.15rem;
    height: 0.4rem;
    border: none;
    border-radius: 0.05rem;
    cursor: pointer;
}

.Contact .public {
    max-width: 11.2rem;
}

.Contact .out {
    width: 100%;
    display: flex;
    justify-content: center;
    transform: translateY(-30%);
    position: relative;
    z-index: 100;
}

.Contact .out .box {
    padding: 0.5rem 0px;
    box-sizing: border-box;
    background: #FFF;
    margin: 0.05rem;
    width: 33.33%;
    text-align: center;
    border-radius: 0.05rem;
    box-shadow: 0px 0px 0.1rem 0.01rem rgba(0, 0, 0, .2);
}

.Contact .out .box .icon {
    height: 0.5rem;
}

.Contact .out .box .icon i {
    font-weight: 900;
    font-size: 0.5rem;
    color: #f08519;
}

.Contact .out .box h5 {
    margin-top: 0.15rem;
    font-family: "Poppins", Sans-serif;
    font-size: 0.2rem;
    color: #000;
}

.Contact_form {
    width: 100%;
    padding: 1rem 0px;
}

.Contact_form .public {
    max-width: 10rem;
}

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

.Contact_form .out .left {
    width: 4rem;
    padding: 0.1rem;
    box-sizing: border-box;
}

.Contact_form .out .right {
    width: 5.7rem;
}

.Contact_form .out .right input {
    width: 100%;
    height: 0.4rem;
    padding: 0.08rem 0.16rem;
    box-sizing: border-box;
    font-size: 0.14rem;
    border: 0.01rem solid #818a91;
    box-sizing: border-box;
    color: #7a7a7a;
    margin-bottom: 0.1rem;
    border-radius: 0.02rem;
}

.Contact_form .out .right textarea {
    width: 100%;
    height: 0.98rem;
    padding: 0.08rem 0.16rem;
    box-sizing: border-box;
    border: 0.01rem solid #818a91;
    font-size: 0.14rem;
    color: #7a7a7a;
    margin-bottom: 0.1rem;
    border-radius: 0.02rem;
}

.Contact_form .out .right button {
    width: 100%;
    height: 0.4rem;
    background: #f08519;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    border-radius: 0.05rem;
    font-size: 0.16rem;
}

.Contact_form .out .left h5 {
    color: #000;
    font-size: 0.32rem;
    margin-bottom: 0.2rem;
}

.Contact_form .out .left p {
    font-size: 0.16rem;
    line-height: 1.5em;
    color: #54595f;
}

.Masp_pages {
    width: 100%;
    padding: 0.1rem;
    box-sizing: border-box;
}

.Masp_pages iframe {
    width: 100%;
    height: 4rem;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}

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

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

.About_pages .out {
    overflow: hidden ;
}

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

.About_pages .out .left p {
    margin-bottom: 0.14rem;
    font-size: 0.2rem;
    color: #7a7a7a;
    font-family: "Rajdhani", Sans-serif;
    font-weight: 400;
    line-height: 1.8em;
    word-break: break-all;
}

.About_pages .out .right {
    width: 5.4rem;
    height: 4.05rem;
    float: right;
    padding-left: 0.2rem;
    padding-bottom: 0.2rem ;
}

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

.Numbers {
    width: 100%;
    background-color: #f8f8f8;
    padding: 0.5rem 0px;
    box-sizing: border-box;
}

.Numbers .public {
    max-width: 11.4rem;
}

.Numbers .out {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.Numbers .out .title {
    width: 25%;
}

.Numbers .out .title h5 {
    color: #00a2e9;
    font-family: "Poppins", Sans-serif;
    font-size: 0.3rem;
    font-weight: 700;
    line-height: 1;
}

.Numbers .out .item {
    width: 25%;
}

.Numbers .out .item .Num {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a2e9;
    font-family: "Poppins", Sans-serif;
    font-weight: 600;
    font-size: 0.69rem;
}

.Numbers .out .item .Num b {
    color: #00a2e9;
    font-family: "Poppins", Sans-serif;
    font-weight: 600;
    font-size: 0.69rem;
}

.Numbers .out .item span {
    text-align: center;
    font-size: 0.19rem;
    line-height: 2.5;
    color: #f08519;
    font-family: "Rajdhani", Sans-serif;
    font-weight: 900;
    text-align: center;
    width: 100%;
    display: block;
}

.developingCourse {}

.developingCourse .out {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.developingCourse .out .box {
    width: 4.68rem;
    text-align: right;
    margin: 1rem 0px;
}

.developingCourse .out .box h5 {
    color: #000;
    font-family: "Poppins", Sans-serif;
    font-weight: 600;
    font-size: 0.32rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.developingCourse .out .box p {
    font-size: 0.16rem;
    color: #7a7a7a;
    font-weight: 400;
    line-height: 1.6em;
}

.developingCourse .out .box:nth-child(3n) {
    text-align: left;
}

.developingCourse .out .kong {
    width: 2.16rem;
    margin: 1rem 0px;
}

.developingCourse .out .kong_img {
    width: 3.84rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.developingCourse .out .kong_img img {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    object-fit: cover;
}

.Factory {
    margin-bottom: 1.5rem;
}

.Factory .public {
    max-width: 11.2rem;
}

.Factory .out {
    margin-top: 0.5rem;
}

.Factory .out .Factory_swiper {
    width: 100%;
    height: 4.5rem;
}

.Factory .out .Factory_swiper .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-right: 0.1rem;
}

.Factory .out .Factory_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.Factory .out .Factory_swiper2 {
    width: 100%;
    height: 1.2rem;
    margin-top: 0.1rem;
}

.Factory .out .Factory_swiper2 .swiper-slide {
    width: 2.16rem;
    height: 100%;
    overflow: hidden;
    margin-right: 0.1rem;
    position: relative;
    cursor: pointer;

}

.Factory .out .Factory_swiper2 .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .3);
}

.Factory .out .Factory_swiper2 .swiper-slide-active::after {
    display: none;
}


.Factory .out .Factory_swiper2 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Factory .out .swiper-button-prev::after,
.Factory .out .swiper-button-next::after {
    color: hsla(0, 0%, 93.3%, .9);
    font-size: 0.2rem;
    font-weight: bold;
}

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

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

.Products_pages .out .left {
    width: 3.28rem;
}

.Products_pages .out .left .title h5 {
    color: #f08519;
    font-family: "Roboto", Sans-serif;
    font-weight: 600;
    font-size: 0.32rem;
    margin-bottom: 0.2rem;
    text-align: center;
}

.Products_pages .out .left .title i {
    width: 100%;
    background: #00a2e9;
    height: 0.1rem;
    display: block;
    margin-bottom: 0.2rem;
}

.Products_pages .out .left .list {
    width: 100%;
    border: 0.01rem solid #818a91;
    box-sizing: border-box;
}

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

.Products_pages .out .left .list .item .tit {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.15rem 0.2rem;
    box-sizing: border-box;
    cursor: pointer;
    border-bottom: 0.01rem solid #818a91;
}

.Products_pages .out .left .list .item:last-child .tit {
    border-bottom: none;
}

.Products_pages .out .left .list .item .tit h5 {
    color: #000;
    font-size: 0.16rem;
}

.Products_pages .out .left .list .item .tit .i_icon {
    width: 0.16rem;
    height: 0.16rem;
    display: block;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.1rem;
}

.Products_pages .out .left .list .item .tit .i_icon i {
    width: 100%;
    height: 0.02rem;
    background: #000;
    display: block;
    position: absolute;
    transition: 0.5s ease;
}

.Products_pages .out .left .list .item .tit .i_icon i:nth-child(2) {
    height: 100%;
    width: 0.02rem;
}

.Products_pages .out .left .list .item .box {
    width: 100%;
    border-bottom: 0.01rem solid #818a91;
    box-sizing: border-box;
    padding: 0.15rem 0.2rem;
    box-sizing: border-box;
    display: none;
}

.Products_pages .out .left .list .item:last-child .box {
    border: none;
}

.Products_pages .out .left .list .item .box a {
    color: #c36;
    font-size: 0.16rem;
    margin-bottom: 0.1rem;
    display: block;
}

.Products_pages .out .left .list .item .box a:hover {
    color: #454545;
}

.Products_pages .out .left .list .item.on .tit .i_icon i:nth-child(2) {
    transform: rotate(90deg);
}

.Products_pages .out .right {
    width: 10.2rem;
    display: flex;
    flex-wrap: wrap;
}

.Products_pages .out .right .box {
    width: 25%;
    box-sizing: border-box;
    padding: 0.1rem;
    box-sizing: border-box;
    margin-bottom: 0.2rem ;
}

.Products_pages .out .right .box .img {
    width: 100%;
    height: 2.3rem;
    overflow: hidden;
    margin-bottom: 0.2rem ;
}

.Products_pages .out .right .box .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.Products_pages .out .right .box .text {
    width: 100% ;
}

.Products_pages .out .right .box .text h5{
    color: #f08519;
    font-family: "Poppins", Sans-serif;
    font-size: 0.19rem;
    font-weight: 500;
    margin-bottom: 0.2rem ;
    text-align: center ;
}

.Products_pages .out .right .box .text span {
    font-family: "Roboto", Sans-serif;
    font-weight: 500;
    fill: #f08519;
    color: #f08519;
    background-color: rgba(240, 133, 25, 0);
    border-style: solid;
    border-width: 0.02rem ;
    border-color: #f08519;
    font-size: 0.15rem ;
    color: #f08519 ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    margin: 0 auto ;
    width: max-content ;
    padding: 0.08rem 0.16rem ;
    box-sizing: border-box ;
    border-radius: 0.04rem ;
    transition: 0.4s ;
}

.Products_pages .out .right .box:hover .text span {
    background: #f08519 ;
    color: #FFF ;
}

.Products_Top {
    padding: 1rem 0px ;
}

.Products_Top .out {
    width: 100% ;
    display: flex ;
    justify-content: center ;
    align-items: flex-start ;
}

.Products_Top .out .left {
    width: 4.9rem ;
    height: 4.9rem ;
    padding: 0.1rem ;
    box-sizing: border-box ;
}

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

.Products_Top .out .right {
    width: 4.71rem ;
    padding: 0.1rem ;
    box-sizing: border-box ;
}

.Products_Top .out .right h5{
    color: #000;
    font-family: "Poppins", Sans-serif;
    font-size: 0.3rem ;
    font-weight: 700;
    line-height: 1 ;
    margin-bottom: 0.2rem ;
    /*text-align: center ;*/
}

.Products_Top .out .right p {
    color: #7a7a7a;
    font-family: "Rajdhani", Sans-serif;
    font-size: 0.2rem ;
    font-weight: 500;
    margin-bottom: 0.14rem ;
}

.Products_Top .out .right .Form_but {
    font-family: "Roboto", Sans-serif;
    font-weight: 500;
    background-color: #f01919;
    border-radius: 0.05rem ;
    padding: 0.15rem 1rem 0.15rem 1rem;
    font-size: 0.16rem ;
    color: #FFF ;
    width: max-content ;
    margin:  0 auto ;
    margin-top: 0.3rem ;
    cursor: pointer;
}

.streamer {
    width: 100% ;
    height: 2.08rem ;
    background: url(../images/LANGOOD-BANNER.webp) no-repeat center ;
    background-size: cover ;
}

.streamer  .out {
    width: 100% ;
    height: 100% ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
}

.streamer  .out  h5{
    display: flex ;
    align-items: center ;
    justify-content: center ;
    color: #fff;
    font-family: "Roboto", Sans-serif;
    font-size: 0.58rem ;
    font-weight: 600;
}

.streamer  .out  h5 b{
    color: #f08519 ;
    font-family: "Roboto", Sans-serif;
    font-size: 0.58rem ;
    font-weight: 600;
}

.Products_text {
    margin: 0.5rem 0px ;
}

.Products_text .out {
    display: flex ;
    align-items: flex-start ;
    justify-content: center ;
}

.Products_text .out .left {
    width: 5.7rem ;
    padding: 0.1rem ;
    box-sizing: border-box ;
}

.Products_text .out .left  .box {
    width: 100% ;
    display: flex ;
    flex-wrap: wrap ;
    gap: 0.2rem ;
}

.Products_text .out .left  .box img {
    width: 48% ;
}

.Products_text .out .right {
    width: 5.7rem ;
    padding: 0.1rem ;
    box-sizing: border-box ;
}

.Products_text .out .title {
    margin-bottom: 0.3rem ;
    text-align: left;
    color: #474747;
    font-family: "Poppins", Sans-serif;
    font-size: 0.2rem ;
    font-weight: 600;
    line-height: 1 ;
}

.Products_text .out .right ul {
    padding-left: 0.4rem ;
    list-style:disc;
}



.Products_text .out .right ul li {
    font-family: "Rajdhani", Sans-serif;
    font-size: 0.2rem;
    font-weight: 400;
    line-height: 0.3rem ;
    color: #7a7a7a ;
}

.Products_text .out .right ul li::marker {
    width: 0.08rem ;
    height: 0.08rem ;
    color: #7a7a7a ;
}

.Products_text .out .right .box {
    margin-bottom: 0.4rem ;
}

.Products_text .out .right .list {
    width: 100% ;
    display: flex ;
    flex-wrap: wrap ;
}

.Products_text .out .right .list .item {
    width: 50% ;
    display: flex ;
    flex-direction: column ;
    align-items: center ;
    justify-content: center ;
    margin-bottom: 0.16rem ;
    padding: 0.1rem ;
    box-sizing: border-box ;
}

.Products_text .out .right .list .item .icon {
    height: 0.5rem ;
    margin: 0 auto ;
    margin-bottom: 0.15rem ;
}

.Products_text .out .right .list .item .icon img {
    height: 100% ;
    display: block ;
}

.Products_text .out .right .list .item .icon i {
    font-size: 0.5rem ;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.Products_text .out .right .list .item span {
    font-family: "Roboto", Sans-serif;
    font-weight: 600;
    color: #474747;
    font-size: 0.16rem ;
}

.Related_Products {
    width: 100% ;
    background: #f8f8f8 ;
    padding: 0.6rem 0px ;
    box-sizing: border-box ;
}

.Related_Products .title {
    color: #000;
    font-family: "Poppins", Sans-serif;
    font-size: 0.25rem ;
    font-weight: 500;
    margin-bottom: 0.5rem ;
    text-align: center ;
}

.Related_Products .out {
    display: flex ;
    justify-content: center ;
}

.Related_Products .out .box {
    width: 3.77rem ;
    padding: 0.1rem ;
    margin-right: 0.27rem ;
}

.Related_Products .out .box:last-child {
    margin-right: 0px ;
}

.Related_Products .out .box .img {
    width: 1.24rem ;
    height: 1.24rem ;
    margin: 0 auto ;
    overflow: hidden;
    margin-bottom: 0.2rem ;
}

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

.Related_Products .out .box .txt {
    width: 100% ;
}

.Related_Products .out .box .txt h5{
    text-align: center ;
    text-align: center;
    font-family: "Poppins", Sans-serif;
    font-size: 0.18rem ;
    font-weight: 500;
    line-height: 1 ;
    margin-bottom: 0.3rem ;
    color: #7a7a7a;
    display: block ;
}

.Related_Products .out .box .txt p {
    text-align: center;
    font-family: "Rajdhani", Sans-serif;
    font-weight: 500;
    text-align: center ;
    font-size: 0.16rem  ;
    color: #7a7a7a ;
    margin-bottom: 0.3rem ;
}

.Related_Products .out .box a {
    display:block;
    line-height: 1;
    background-color: #f08519;
    font-size: 0.15rem ;
    padding: 0.12rem 0.24rem;
    border-radius: 0.03rem;
    color: #fff;
    fill: #fff;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    margin: 0 auto ;
    width: max-content ;
}

.Form_Biaodan {
    position: fixed ;
    top: 0px ;
    left: 0px ;
    z-index: 999999 ;
    background: rgba(0, 0, 0, .5) ;
    width: 100% ;
    height: 100% ;
    display: none ;
}

.Form_Biaodan .Form_out {
    width: 100% ;
    max-width: 8.5rem ;
    position: absolute ;
    top: 50% ;
    left: 50% ;
    transform: translate(-50% , -50%);
    display: flex ;
    min-height: 4.5rem ;
}

.Form_Biaodan .Form_out .left {
    width: 35% ;
    background: #2d3a4e ;
    display: flex ;
    flex-direction: column ;
    align-items: center ;
    justify-content: center ;
    padding: 0.1rem ;
    box-sizing: border-box ;
}

.Form_Biaodan .Form_out .left h5{
    color: #fff;
    font-family: "Roboto", Sans-serif;
    font-size: 0.2rem ;
    font-weight: 600;
    margin-bottom: 0.2rem ;
}

.Form_Biaodan .Form_out .left .list {
    width: 100% ;
    padding: 0px 0.3rem ;
    box-sizing: border-box ;
}

.Form_Biaodan .Form_out .left .list .item {
    display: flex ;
    align-items: center ;
    margin-bottom: 0.3rem ;
}

.Form_Biaodan .Form_out .left .list .item .icon i {
    font-size: 0.16rem ;
    color: #6ec1e4 ;
    display: block ;
}

.Form_Biaodan .Form_out .left .list .item span {
    font-size: 0.12rem ;
    color: #FFF ;
    display: block ;
    margin-left: 0.07rem ;
}

.Form_Biaodan .Form_out .right {
    width: 65% ;
    background: #FFF ;
    padding: 0.1rem ;
    box-sizing: border-box ;
    position: relative;
}

.Form_Biaodan .Form_out .right .occlude {
    position: absolute ;
    right: 0.1rem ;
    top: 0.1rem ;
    color: #333 ;
    font-size: 0.2rem ;
    cursor: pointer;
    font-weight: bold ;
}

.Form_Biaodan .Form_out .right h5{
    color: #2250a3;
    margin-top: 0.3rem ;
    margin-bottom: 0.2rem ;
    font-size: 0.32rem ;
    line-height: 1 ;
    text-align: center ;
}

.Form_Biaodan .Form_out .right input , .Form_Biaodan .Form_out .right textarea {
    width: 100% ;
    height: 0.4rem ;
    border: 0.01rem solid #818a91 ;
    box-sizing: border-box ;
    padding: 0.08rem 0.16rem ;
    box-sizing: border-box ;
    color: #7a7a7a ;
    font-size: 0.15rem ;
    margin-bottom: 0.1rem ;
}

.Form_Biaodan .Form_out .right textarea {
    height: 0.96rem ;
    margin-bottom: 0px ;
}

.Form_Biaodan .Form_out .right button {
    width: 100% ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    cursor: pointer;
    border: none ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    color: #FFF ;
    height: 0.4rem ;
    font-size: 0.15rem ;
    background: #f08519 ;
}

.Form_Biaodan .Form_out .right span {
    font-size: 0.12rem ;
    font-weight: 300 ;
    color: #54595f ;
}

.Form_Biaodan .Form_out .right .wenjkian {
    padding: 0px ;
    border: none ;
    height: 0.4rem ;
}

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

.News_Xq .public {
    max-width: 11.4rem ;
}

.News_Xq .title {
    width: 100% ;
    text-align: center ;
    margin-bottom: 0.5rem ;
}

.News_Xq .title h5{
    color: #474747;
    font-family: "Poppins", Sans-serif;
    font-size: 0.5rem ;
    font-weight: 600;
    line-height: 1 ;
}

.News_Xq .text {
    width: 100% ;
}

.News_Xq .text p{
    font-size: 0.18rem ;
    color: #7a7a7a ;
    font-weight: 400 ;
    line-height: 1.6em ;
    margin-bottom: 0.14rem ;
}

.News_Xq .text img{
    width:auto;
    max-width: 100% ;
    display: block ;
}

.News_Xq .text table {
    width: 100% ;
}

.News_Xq .text table td{
    padding: 0.1rem ;
    box-sizing: border-box;
}

.News_Xq .text .box {
    width: 100% ;
    display: flex ;
    justify-content: space-between ;
    margin-top: 0.5rem ;
}

.News_Xq .text .box .left {
    width: 50% ;
    padding: 0.1rem ;
    box-sizing: border-box ;
}

.News_Xq .text  h5{
    color: #474747;
    font-family: "Poppins", Sans-serif;
    font-weight: 600;
    font-size: 0.3rem ;
    margin-bottom: 0.2rem ;
    line-height: 1 ;
}


.News_Xq .text .box .right {
    width: 50% ;
    padding: 0.1rem ;
    box-sizing: border-box ;
}

.News_Xq .text .box .right img {
    width: 100% ;
    display: block ;
}

.post_reply {
    width: 100% ;
}

.post_reply .out h5{
    color: #333;
    font-size: 0.32rem ;
    margin-bottom: 0.16rem ;
    margin-top: 0.08rem ;
    line-height: 1 ;
}

.post_reply .out p {
    font-size: 0.16rem ;
    color: #333 ;
    margin-bottom: 0.14rem ;
}

.post_reply .out .box{
    margin-bottom: 0.15rem ;
}

.post_reply .out .box label {
    font-size: 0.16rem ;
    color: #333 ;
}

.post_reply .out .box textarea , .post_reply .out .box input {
    width: 100% ;
    height: 2.1rem ;
    padding: 0.08rem 0.16rem ;
    border: 0.01rem solid #818a91 ;
    box-sizing: border-box ;
    font-size: 0.15rem ;
    color: #333 ;
}

.post_reply .out .box input {
    height: 0.42rem ;
}

.post_reply .out  .checkbox_box  {
    display: flex ;
    align-items: center ;
}

.post_reply .out  .checkbox_box input {
    width: 0.14rem ;
    height: 0.14rem ;
    margin-right: 0.1rem ;
}

.post_reply .out button {
    padding: 0.08rem 0.16rem ;
    border: 0.02rem solid #f08519 ;
    color: #f08519 ;
    font-size: 0.18rem ;
    border-radius: 0.05rem ;
    margin-bottom: 0.15rem ;
    background: none ;
    cursor: pointer;
}

.post_reply .out button:hover {
    background: #f08519 ;
    color: #FFF ;
}

.post_reply .item .item_text{
    width: 100% ;
    padding: 0.3rem 0px ;
    border-bottom: 0.01rem solid #818a91 ;
    box-sizing: border-box ;
    display: flex ;
    align-items: flex-start;
}

.post_reply .item .item_text .img {
    width: 0.42rem ;
    height: 0.42rem ;
    margin-right: 0.2rem ;
    border-radius: 50% ;
    overflow: hidden;
    border: 0.01rem solid #818a91 ;
    flex: none ;
}

.post_reply .item .item_text .img img {
    width: 100% ;
    height: 100% ;
    display: block ;
    object-fit: cover ;
}

.post_reply .item .item_text .title {
    display: flex ;
    justify-content: space-between ;
    align-items: center ;
    width: 100% ;
    margin-bottom: 0.1rem ;
}

.post_reply .item .item_text .text {
    width: 100% ;
}

.post_reply .item .item_text .title h6 {
    display: flex ;
    align-items: center ;
    font-size: 0.14rem ;
    color: #54595f ;
}

.post_reply .item .item_text .title h6 a {
    font-size: 0.14rem ;
    color: #c36 ;
}

.post_reply .item .item_text .title span {
    color: #c36 ;
    font-size: 0.11rem ;
    display: block ;
}

.post_reply .item .item_text .txt {
    width: 100% ;
    font-size: 0.14rem ;
    margin-bottom: 0.14rem ;
    color: #333 ;
}

.post_reply .item .item_text .guifu {
    color: #c36 ;
    font-size: 0.14rem ;
    cursor: pointer;
}

.huifu_firtm {
    display: none ;
}

.huifu_firtm>h5 span {
    font-size: 0.32rem;
    color: #c36;
    cursor: pointer;
}

.out_reply {
    margin-bottom: 0.6rem ;
}



/* ---------------------- 右侧悬浮 */
.levitation {
    position: fixed;
    right: 0px;
    top: 50%;

    z-index: 99999999 ;
}

.fm_box {
    position: relative;
    border-radius: 0.4rem;
    cursor: pointer;
    height: 0.48rem;
    transition: 0.5s all;
}

.fm_iocn {
    width: 0.48rem;
    height: 0.48rem;
    background: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0px;
    z-index: 2;
    position: relative;
    box-shadow: 0px 0px 0.1rem 0.01rem #00000042;
    z-index: 100 ;
}

.fm_iocn img {
    width: 100% ;
    height: 100% ;
    object-fit: contain ;
    display: block ;
    transform: scale(0.5);
}

.fm_item {
    position: absolute;
    right: 0px;
    height: 0.48rem;
    top: 0px;
    padding: 0px 0.45rem 0px 0.3rem;
    border-radius: 0.4rem;
    background: rebeccapurple;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
    visibility: hidden;
    color: #FFF ;
    font-size: 0.15rem ;
    width: max-content ;
}


.fm_box:hover .fm_item {
    padding-right: 0.6rem;
    visibility: visible;
}

.tiosd_box {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 0.48rem ;
    height: 0.48rem ;
    color: #FFF ;
    font-size: 0.15rem ;
}

.tiosd_box .fm_box {
    position: absolute;
    top: 0px;
    right: 0px;
    visibility: hidden ;
    z-index: 77 ;
}

.tiosd_box.on .fm_box {
    visibility: visible;
}

.tiosd_box.on .fm_box:nth-child(1) {
    right: 0px;
    top: -1rem;
    z-index: 100 ;
}

.tiosd_box.on .fm_box:nth-child(2) {
    right: 0.71rem;
    top: -0.71rem;
    z-index: 90 ;
}

.tiosd_box.on .fm_box:nth-child(3) {
    right: 1rem;
    top: 0rem;
    z-index: 80 ;
}

.tiosd_box.on .fm_box:nth-child(4) {
    right: 0.71rem;
    top: 0.71rem;
    z-index: 70 ;
}

.tiosd_box.on .fm_box:nth-child(5) {
    right: 0px;
    top: 1rem;
    z-index: 80 ;
}

.fm_fenlies {
    position: relative;
    cursor: pointer;
    z-index: 200 ;
}

.fm_fenlies .fm_iocn {
    z-index: 100 ;
}

.heiusd {
    position: absolute;
    width: 1.48rem;
    height: 2.48rem;
    border-radius: 1rem 0px 0px 1rem;
    top: -1rem;
    right: 0px;
    display: none ;
}

.fm_list {
    margin: 0.1rem 0px;
    transition: 0.5s ease ;
}

.fm_fenlies:hover .heiusd {
    display: block ;
}


.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: #333 ;
    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: 0.79rem ;
    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 ;
}

.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);
}

.Products_img_list {
    width: 100% ;
    margin: 0.6rem 0px ;
}

.Products_img_list .out {
    display: flex ;
    flex-wrap: wrap ;
}

.Products_img_list .out img {
    width: calc(100% / var(--index));
    padding: 0.1rem ;
    
    box-sizing: border-box;
}

@media (max-width:768px) {

    .toggle_button {
        display: flex ;
    }

    .nav .out form input {
        width: 2rem ;
    }

    .nav .out ul{
        display: none ;
    }

    .public  {
        padding: 0.3rem ;
        box-sizing: border-box ;
    }

    .Choose_your_favorite .out .box {
        width: 50% ;
    }

    .Choose_your_favorite .out .box .txt_t {
        justify-content: center ;
    }

    .around_box {
        height: auto ;
    }

    .around_box .box {
        width: 100% ;
        height: 3.4rem ;
    }

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

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

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

    .video_About .out .right {
        width: 100% ;
        margin-top: 0.3rem ;
    }

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

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

    .footer .out .left {
        width: 100% ;
        margin-bottom: 0.3rem ;
    }

    .footer .out .content {
        width: 40% ;
    }

    .footer .out .right {
        width: 50% ;
    }

    .Numbers .out .title {
        width: 100% ;
        margin-bottom: 0.4rem ;
    }

    .Numbers .out .item {
        width: 33.33% ;
    }

    .developingCourse .out .box {
        width: 100% ;
        margin: 0.3rem ;
    }

    .developingCourse .out .kong {
        display: none ;
    }

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

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

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

    .Products_pages .out .right {
        margin-top: 0.4rem ;
    }

    .Successful_pages .out .box {
        flex-wrap: wrap ;
    }

    .Successful_pages .out .box .img {
        width: 100% ;
    }

    .Successful_pages .out .box .txt {
        width: 100% ;
        padding-top: 0.7rem ;
    }
    
    .News_pages .out {
        flex-wrap: wrap ;
    }

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

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

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

    .Free_pages .out .left {
        display: none ;
    }

    .Free_pages .out .right {
        width: 100% ;
    }

    .Contact .out {
        transform: translate(0px);
    }

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

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

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

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

    .Contact_form .out .right {
        width: 100% ;
    }

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

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

    .Form_Biaodan .Form_out {
        height: auto ;
        flex-wrap: wrap ;
        width: 80% ;
    }

    .Form_Biaodan .Form_out .left , .Form_Biaodan .Form_out .right {
        width: 100% ;
    }

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

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

    .Products_text .out .right {
        width: 100% ;
    }

}

@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: 100px !important;
    }
}


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