html,body{
    font-size: 62.5%;
    margin: 0;
    padding: 0;
    background: #f1f1f1;
    font-family: 'PoppinsRegular';
}

@font-face {
    font-family: 'PoppinsMedium'; /*   title*/
    src: url('../font/Poppins-Medium.otf') , /* 字体文件的路径以及对应的格式 */
}

@font-face {
    font-family: 'PoppinsRegular'; /* text */
    src: url('../font/Poppins-Regular.otf') , /* 字体文件的路径以及对应的格式 */
}

@font-face {
    font-family: 'PoppinsSemiBold'; /* banner */
    src: url('../font/Poppins-SemiBold.otf') , /* 字体文件的路径以及对应的格式 */
}

.NavMenu_list_menu_Company .btn_a{
    color: #000;
}
a{
    color: #fff;
    text-decoration: none;
}

.footer_right a{
    color: rgba(0, 0, 0, 0.68);
    text-decoration: none;
}

/* 加粗 */
.font_weight{
    font-weight: bold;
}
/*字体颜色*/
.color_3e {
    color: #3e3e3e;
}
.color_757 {
    color: #757575;
}

.color_333 {
    color: #333;
}

.color_white {
    color: white;
}

.color_ {
    color: #ddd;
}

.color_ccc {
    color: #ccc;
}

.color_f50 {
    color: #ff5500;
}

.color_bdb {
    color: #bdb9bd;
}
.color_666 {
    color: #666;
}
.color_999 {
    color: #999;
}

.color_3b {
    color: #3b3b3b;
}

.color_009 {
    color: #0090ff;
}

.color_959 {
    color: #959595;
}

.color_ff0 {
    color: #ff0000;
}
.color_004{
    color: #0048ff;
}


/*布局*/

.display {
    display: flex;
    box-sizing: border-box
}

.display_justifycenter {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.display_around {
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-sizing: border-box;
}

.display_column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.home_top{
    width: 100%;
}
.background_box{
    width: 100%;
    height: 90px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
.home_top::before{
    height: 90px;
    width: 100%;
    content: "";
    display: block;
}


/* navigation */

.navigation,
.Partners_logo,
.Voordelen_Prestaties,
.Voordelen_Prestaties_list,
.Customer_stories,
.Our_story,
.countries,
.Breadcrumb,
.email_phone
{
    width: 90%;
    max-width: 144rem;
    justify-content: space-between;
    align-items: center;
    color: #000;
    margin: 12rem auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.Breadcrumb{
    margin-top: 2rem;
    margin-bottom: 0;
    justify-content: flex-start;
    color:  rgba(0, 0, 0, 0.68);
    font-size: 16px;
}

.Breadcrumb a{
    padding: 4px 14px;
    /* border: 1px solid #fff; */
    background: rgba(255, 255, 255);
    border-radius: 2rem;
    cursor: pointer;
    color:  rgba(0, 0, 0);
    /* font-weight: bold; */
}
.Breadcrumb img{
    margin: 0 1rem;
}

.navigation{
    margin: 2rem auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.navigation_left{
    align-items: center;
    flex: 1;
    height: 5rem;
}
.navigation .logo,.footer_logo{
    color:#fff;
    line-height: 7rem;
    font-weight: bold;
    margin-right: 5rem;
    height: 100%;
}
.NavMenu{
    /* position: relative; */
    height: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    color: rgba(255, 255, 255, 0.7);
}
.NavMenu a{
    color: rgba(0, 0, 0, 0.68);
}
.NavMenu_list{
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    
}
.NavMenu_list_Company{
    position: relative;
}
.NavMenu_list_menu {
    position: absolute;
    left: 0;
    top: 4.5rem;
    list-style-type: none;
    margin: 0;
    width: 100%;
    padding: 0;
    display: none;
    animation: fadeInMenu 0.5s ease-in-out forwards; 
}
.navigation_left .NavMenu_list_menu li a ,.navigation_right_box .NavMenu_list_menu li{
    padding: 1rem 2rem;
    background: rgba(255, 255, 255);
    border-radius: 2px;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    /* margin-bottom: 1rem; */
    display: ruby-text;
}

.NavMenu_list_Company:hover>.NavMenu_list_menu_Company{
    display: block;
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(-10px); /* 初始状态，向上偏移 10px 并且透明 */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* 最终状态，回到正常位置且完全显示 */
    }
}

.navigation_right{
    width: 15rem;
    height: 4rem;
    border-radius: 5rem;
    background: rgba(2, 198, 165, 1);
    text-align: center;
    line-height: 4rem;
    font-size: 1.6rem;
    /* padding: .5rem 2rem; */
    border: 2px solid rgba(2, 198, 165, 1);
    /* font-weight: 600; */
}

.navigation_right_login{
    background: transparent;
    border: 2px solid #000;
    box-sizing: border-box;
    width: 10rem;
    cursor: pointer;
    font-family: 'PoppinsMedium';
}

.bg_line_1_box{
    position: absolute;
    top: 2rem;
    left: 0;
}

.bg_line_2_box{
    position: absolute;
    top: -26%;
    right: -33%;
}

.home_top_tetle{
    position: absolute;
    bottom: 20%;
    left: 5%;
    font-size: 9rem;
    font-weight: 700;
    line-height: 10rem;
    color: #fff;
    font-family: 'PoppinsSemiBold';
}

.home_top_tetle span{
    color: black;
    text-shadow:
        -1px -1px 0 white, /* 左上角阴影，模拟描边效果 */
        1px -1px 0 white, /* 右上角阴影 */
        -1px 1px 0 white, /* 左下角阴影 */
        1px 1px 0 white; /* 右上角阴影 */
}

.home_top_cam_title{
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 2.4rem;
    color: #fff;
    display: flex;
    align-items: center;
    font-family: 'PoppinsMedium';
}

.home_top_cam_title span{
    font-size: 2.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.38);
    margin-left: 5rem;

}

.Voordelen_Prestaties_list{
    width: 100%;
}

/* Plan_cameras_box */
.Plan_cameras_box{
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Plan_cameras{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 24rem;
    text-align: center;
}
.Plan_cameras_tltie{
    margin: 1rem auto 2rem;
    font-size: 1.8rem;
}
.Plan_cameras_text{
    color:  rgba(0, 0, 0, 0.68);
    font-size: 1.5rem;
}

/* cam */

.cam_box .swiper-slide{
    border-radius: 5rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: #FFFFFF;
    /* margin-top: 40px;
    margin-left: 26px; */
    text-align: left;
}



  .swiper_img_box{
    width: 30rem;
    height: 30rem;
    border-radius: 5rem;
    background-color: rgba(245, 245, 245, 0.02);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    margin-right: 20px;
    transition:all .7s ease 0s;
  }

  .cam_box .swiper-slide:hover .swiper_img_box{
    background: rgba(119, 184, 28, 0.1);
    }

.cam_box .swiper-slide:hover span{
    color: rgba(119, 184, 28, 1);
    }

  .cam_box .swiper-slide img{
    width: 19rem;
    height: 19rem;
    display: block;
    transition:all .7s ease 0s;
    margin-right: 0;
  }

  .cam_box .swiper-slide:hover  img{
    transform: scale(1.1);
}


/* Partners_logo */
.Partners_logo{
    margin-top: 16rem;
    margin-bottom: 12rem;
    gap: 2rem 0;
}

.Partners_logo div{
    width: 20%;
    text-align: center;
}
.Partners_logo div img{
    transform: scale(0.8);
}

/* Voordelen_Prestaties */

.Voordelen_Prestaties_title,.Customer_stories_title,.Our_story_title{
    font-size: 3.6rem;
    font-weight: 500;
    margin-bottom: 12rem;
    font-family: 'PoppinsMedium';
}   

.Voordelen_Prestaties_box{
    width: 30rem;
    height: 23.8rem;
    background-image: url(../image/home/bg3.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    box-sizing: border-box;
}
.Voordelen_Prestaties_box_h1{
    font-size: 7rem;
    font-weight: 500;
    line-height: 10rem;
}
.Voordelen_Prestaties_box_text{
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.38);
}

/* Customer_stories */

.swiper_img_animal_box{
    width: 31rem;
}
.swiper_img_animal_box img{
    display: block;
    width: 100%;
    height: 100%;
}

/* help */

.help{
    margin: 12rem 0;
    width: 100%;
    height: 62rem;
    background-image: url(../image/home/bg_contact2.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.help img{
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.help_box{
    width: 90%;
    max-width: 144rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    flex-wrap: wrap;
}

.help_left{
    flex: 1;
    height: 40rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    box-sizing: border-box;
    padding: 6rem;
}


.help_right{
    flex: 1;
    width: 100%;
    /* height: 40rem; */
    background-image: url(../image/home/bg_contact.png);
    background-size: cover;
    background-repeat: no-repeat; 
    box-sizing: border-box;
    padding: 6rem;
    flex-direction: column;
    justify-content: space-evenly;
}

.help_title{
    color: rgba(255, 255, 255, 0.87);
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-family: 'PoppinsMedium';
}

.help_left_text{
    color: rgba(255, 255, 255, 0.87);
    text-overflow: ellipsis;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.48px;
}

.help_right_list_box{
    margin: 3rem auto;
}

.help_list_box_left{
    color: rgba(255, 255, 255, 0.38);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.48px;
    flex: 1;
}

.help_list_box_right{
    color:  rgba(255, 255, 255, 0.87);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.48px;
    flex: 2;
}

.help_list_box_left img{
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 2rem;
    display: block;
    position: initial;
}

.help_left_input{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.help_left_input .email{
    width: 40rem;
    height: 4.8rem;
    border-radius: 4.8rem;
    background: rgba(35, 35, 35, 1);
    color: #fff;
    font-size: 1.6rem;
    padding: 1rem 2rem;
    box-sizing: border-box;
    border: none;
    outline: none;
    margin-right: 2rem;
}

.footer{
    width: 90%;
    max-width: 144rem;
    margin: 12rem auto 2rem;
    height: 10rem;
    align-items: baseline;
}

.footer_logo{
    height: auto;
}

.footer span{
    color:  rgba(0, 0, 0);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24px;
}

.footer_left,.footer_right{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.footer_left{
    margin-right: 10rem;
}
.footer_right{
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer_right div{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Our_story */

.Our_story{
    align-items: center;
    flex-wrap: wrap;
}
.Our_story_title{
    margin-bottom: 3rem;
}
.Our_story_text{
    color: rgba(255, 255, 255, 0.38);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.4rem; /* 150% */
    letter-spacing: 0.48px;
    margin-bottom: 5rem;
}

.Our_story_left{
    flex: 1;
    width: 50%;
    flex-direction: column;
    justify-content: space-evenly;
}

.Our_story_right{
    flex: 1;
    width: 50%;
    max-width: 64.5rem;
}
.Our_story_right img{
    width: 100%;
    height: 100%;
}

/* countries */
.countries_box{
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.countries_left{
    flex: 1;
}

.countries_left_title{
    color: rgba(255, 255, 255, 0.87);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 3rem;
}

.countries_left_text{
    flex-direction: column;
    color:  rgba(255, 255, 255, 0.38);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.48px;
    line-height: 3rem;
}


.countries_right{
    flex: 4;
}
.countries_right img{
    width: 100%;
    height: 100%;
    display: block;
}

.email_phone{
    margin-top: 4rem;
    background-image: url(../image/home/bg_contact_2.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.email_phone .help_right{
    background-image: none;
    width: 100%;
}

.email_phone_left,.email_phone_right{
    flex: 1;
}

form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem;
    box-sizing: border-box;
    /* background-color: #f9f9f9; */
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.38);
}

input[type="email"],
input[type="text"],
textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 2.4rem;
    border: 1px solid rgba(44, 44, 44, 1);
    background: rgba(44, 44, 44, 1);
    border-radius: 10px;
    font-size: 14px;
    color: #fff;
    font-size: 1.8rem;
    padding: 1rem 2rem;
    box-sizing: border-box;
    border: none;
    outline: none;
    
}

input:-webkit-autofill {
    background-color: transparent; /* //设置input输入框的背景颜色为透明色 */
    background-image: none;
    transition: background-color 50000s ease-in-out 0s;
}

input {
    background-color: transparent; /* //设置input输入框的背景颜色为透明色 */
}  

input[type="email"] ::placeholder,
input[type="text"] ::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

button {
    background-color: rgba(44, 44, 44, 1);
    width: 100%;
    color: rgba(255, 255, 255, 0.38);
    padding: 14px ;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.email_phone_tip{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.6rem;
    align-items: center;
    background: #000;
    border-radius: 1rem;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    display: none;
    z-index: 20;
}
.email_phone_tip div{
    margin-left: 2rem;
}


.carousel-container {
    width: 100%; /* 设置轮播图容器宽度 */
    max-width: 144rem;
    margin: 0 auto; /* 水平居中 */
    overflow: hidden; /* 隐藏超出容器的内容，对于轮播图切换很关键 */
    position: relative; /* 相对定位，方便放置切换按钮等子元素 */
}

.carousel-inner ,.carousel-inner_1{
    width: 100%;
    display: flex; /* 使用flex布局方便图片排列和切换 */
    transition: transform 0.5s ease-in-out; /* 设置切换动画效果，这里是图片平移的过渡效果 */
}

.carousel-inner img {
    width: 100%;
    height: auto;
    margin-right: 3rem;
}

.carousel-container_box{
    width: 90%;
    margin: auto;
    overflow: hidden;
}



.navigation_h5{
    position: fixed;
    top: 0;
    left: -70%;
    width: 70%;
    background: #fff;
    background-image: url(../image/home/bg_line1.png);
    height: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    box-sizing: border-box;
    border-right: 1px solid #fff;
    transition: left 0.5s ease;
}
.navigation_h5 a,.navigation_h5 span{
    font-weight: bold;
    font-size: 1.8rem;
    color: #000;
    padding: 1rem;
    border-bottom: 2px solid #f1f1f1;
    display: block;
}
.navigation_h5 .email{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.navigation_h5 .logo_h5{
    left: 20px;
    width: 65%;
    max-width: 200px;
    top: 24px;
}
.navigation_h5 .login{
    background:rgba(2, 198, 165, 1);;
    color: #fff;
    margin: 1rem auto;
}
.navigation_h5 .Sigin{
    color: #fff;
    /* margin: 1rem auto; */
}
.navigation_h5 img{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
}

.navigation_right{
    display: block;
}
.NavMenu_h5{
    display: none;
}
.navigation_left{
    justify-content: flex-start;
}
.AlreadyLogged{
    /* display: flex; */
    font-size: 15px;
    background: none;
    border: none;
    border-radius: 0;
    line-height: normal;
    height: auto;
    width: auto;
    cursor: pointer;
    position: relative;
    display: none;
}
.AlreadyLogged img{
    display: block;
    width: 44px;
    height: 44px;
    margin-right: 1rem;
}
.AlreadyLogged div{
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: space-between;
    width: 16rem;
}
.AlreadyLogged span{
    width: 20rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: justify;
}
.AlreadyLogged .NavMenu_list_menu{
    flex-direction: column;
    padding-top: 1rem;
}
.AlreadyLogged:hover .NavMenu_list_menu{
    display: flex;
}
.navigation_right_box{
    display: contents;
}

.top_box .email_phone_tip{
    position: fixed;
    color: #fff;
}
.pass_eye{
    width: 24px;
    position: absolute;
    right: 7px;
    bottom: 10px;
}
.form-group input[type="password"]{
    padding-right: 35px;
}

#create-account .terms span a{
    color: rgba(2, 198, 165, 1);
}

.btn_a{
    display: block;
    width: 100%;
    height: 100%;
}
.NavMenu_h5 img{
    width: 30px;
}

.logo_box{
    width: 100%;
    max-width: 1200px;
    height: 50px;
    margin: 0 auto;
    text-align: center;
    position: relative;

}
.logo_box p{
    font-size: 17px;
    font-family: 'PoppinsMedium';
    font-weight: 600;
    color: #000;
    line-height: 50px;
}
.logo_box p span {
    color: rgba(2, 198, 165, 1);
    margin-left: 10px;
    margin-right: 10px;
    padding-bottom: 5px;
    text-decoration: none;
    border-bottom: 1px solid rgba(2, 198, 165, 1);
    cursor: pointer;
}
.logo_box img{
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.title_img_bg{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0 0;
}
.title_img_box {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    /* justify-content: space-around; */
    align-items: center;
    overflow: hidden;
    flex-wrap: wrap;
}
.title_img,.title_box{
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
    box-sizing: border-box;
    /* height: 400px; */
}
.title_box{
    text-align: center;
}
.title_box p {
    font-size: 42px;
    font-family: 'PoppinsMedium';
    font-weight: 700;
    color: #000;
    line-height: 60px;
    text-align: left;
}
.title_box span{
    font-size: 24px;
    font-family: 'PoppinsRegular';
    font-weight: 600;
    color: rgba(0,0,0,0.68);
    margin: 20px auto;
    display: block;
    text-align: left;
}
.title_img_bg .btn,.title_img_box .btn{
    width: 260px;
    height: 50px;
    background: rgba(2, 198, 165, 1);
    text-align: center;
    line-height: 50px;
    margin-top: 50px;
    font-size: 20px;
    font-family: 'PoppinsRegular';
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}
.info_box{
    padding-top: 100px;
}
.info_box_flex{
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.info_box_flex img,.info_box_flex_text{
    width: 50%;
} 
.info_box_flex_text p{
    font-size: 40px;
    font-family: 'PoppinsMedium';
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    line-height: 56px;
    text-align: center;
}
.info_box_flex_text span {
    font-size: 34px;
    font-family: 'PoppinsRegular';
    font-weight: 600;
    color: rgba(0,0,0,0.68);
    margin-bottom: 70px;
    line-height: 56px;
    display: inline-block;
    text-align: center;
    width: 100%;
}
.info_box_flex_text1 span {
    font-size: 20px;
    display: block;
    margin-bottom: 0;
    text-align: left;
}
.info_box_flex_text1 i {
    width: 15px;
    height: 15px;
    background:rgba(2, 198, 165, 1);
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}
.title_box1 p,.title_box1 span{
    text-align: center;
}
.title_box1 .btn {
    margin: 30px auto;
}


/* 手机样式 */
@media screen and (max-width: 767px) {
    html,body{
        font-size: 62.5%;
    }
    /* 调整图片大小以适应手机屏幕 */
    img {
        max-width: 100%;
        height: auto;
    }
    video,.background_box,.home_top{
        height: auto !important;
    }
    video{
        margin-top: 6rem !important;
    }

    .bg_line_1_box,.bg_line_2_box{
        display: none;
    }
    .home_top_tetle{
        font-size: 3rem;
        line-height: 3rem;
    }
    .home_top_cam_title{
        font-size: 2rem;
    }
    .help{
        height: auto;
    }
    .help_left{
        padding: 3rem;
    }
    .Partners_logo div{
        width: 100%;
        text-align: center;
        margin-bottom: 4rem;
    }
    .help_right_list_box{
        flex-direction: column;
        margin: 2rem auto;

    }
    .Voordelen_Prestaties_box{
        width: 100%;
        margin-bottom: 5rem;
        height: 32rem;
        padding: 2rem;
    }
    .Our_story_left,.Our_story_right{
        width: 100%;
        flex: none;
    }
    .Our_story_right{
        text-align: center;
    }
    .countries_left,.countries_right{
        width: 100%;
        flex: none;
    }
    .countries_left_text{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .countries_left_text span{
        margin: 1rem;
    }
    .Voordelen_Prestaties_box_text{
        font-size: 2.6rem;
        line-height: 3rem;
    }
    .help_left_input .email{
        width: 100%;
        margin-right: 0;
    }
    .help_right{
        padding: 2rem;
    }
    .help_title{
        font-size: 2.2rem;
    }
    .Voordelen_Prestaties_title, .Customer_stories_title, .Our_story_title {
        font-size: 2.6rem;
        margin-bottom: 4rem;
    }
    .Partners_logo, 
    .Voordelen_Prestaties, 
    .Voordelen_Prestaties_list, 
    .Customer_stories, .Our_story, 
    .countries, 
    .Breadcrumb, 
    .email_phone{
        margin: 4rem auto;
    }

    .NavMenu,
    .background_box .navigation_right,
    .navigation_right_box,
    .data_box .navigation_right{
        display: none;
    }
    .NavMenu_h5{
        display: block;
    }
    .navigation_left{
        justify-content: space-between;
    }
    .navigation{
        margin: auto;
    }
    form{
        padding: 2rem;
    }
    .Breadcrumb{
        display: none;
    }
    .email_phone_tip {
        width: 90%;
        top: 75%;
    }
    .top_box .email_phone_tip {
        width: 90%;
        top:50%
    }
    .footer{
        flex-direction: column;
        gap: 20px;
        height: auto;
    }
    .footer_left,.footer_right{
        width: 100%;
    }
    .Email_break_all{
        word-break: break-all;
        max-width: 300px;
        width: 100vh;
        text-align: left;
    }
    .Plan_cameras_box{
        justify-content: center;
    }
    .Plan_cameras{
        width: 100%;
        max-width: 100%;
    }
    .Plan_cameras_next{
        transform: rotate(90deg);
    }

    .logo_box p{
        font-size: 14px !important;
        text-align: left;
    }
    .info_box_flex_text p{
        font-size: 30px!important;
    }
    .info_box_flex_text1 span,.info_box_flex_text span{
        font-size: 18px!important;
        line-height:40px;
    }
    .info_box_flex img,.info_box_flex_text,.title_img,.title_box{
        width: 90% !important;
        box-sizing: border-box;
        margin: auto;
    } 
    .title_box p{
        line-height: 50px;
        font-size: 24px;
        text-align: center;
    }
    .title_box span{
        font-size: 18px;
        text-align: center;
    }
    .title_img_bg .btn, .title_img_box .btn{
        margin: 30px auto;
    }
    .logo_box{
        width: 90%;
        margin: auto;
    }
    .logo_box img{
        width: 20px;
        height: 20px;
    } 
    .info_box{
        padding-top: 40px;
    } 
    .info_box_flex{
        margin-bottom: 40px;
        padding-bottom: 0px;
    }  
    .hidden-xs-only{
        margin-bottom: 60px;
    }  
    .home_top::before,.background_box{
        height: 50px !important;
    }
    .navigation .logo{
        line-height: 8rem;
    }
}

/* 平板样式 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    html,body{
        font-size: 62.5%;
    }
   .help{
    height: auto;
   }
   .Partners_logo div{
        width: 100%;
        text-align: center;
        margin-bottom: 6rem;
    }
    .home_top_tetle{
        font-size: 6rem;
    }
    .NavMenu,.background_box .navigation_right,.data_box .navigation_right,.navigation_right_box{
        display: none;
    }
    .NavMenu_h5{
        display: block;
    }
    .navigation_left{
        justify-content: space-between;
    }
    .Our_story_left,.Our_story_right{
        width: 100%;
    }
    .Plan_cameras_box{
        justify-content: center;
    }
    .Plan_cameras{
        width: 100%;
        max-width: 100%;
    }
    .Plan_cameras_next{
        transform: rotate(90deg);
    }
}

/* 电脑（桌面端）样式 */
@media screen and (max-width: 1360px) {
    .help{
        height: auto;
    }
    .NavMenu,.background_box .navigation_right,.data_box .navigation_right{
        display: none;
    }
    .AlreadyLogged span{
        width: 16rem;
    }
    .NavMenu_h5{
        display: block;
    }
    .navigation_left{
        justify-content: space-between;
    }
    .footer_right{
        justify-content: flex-start;
    }
    
}