* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px !important;
}

em,
i {
  font-style: normal
}

li {
  list-style: none
}

img {
  border: 0;
  vertical-align: middle
}

button {
  cursor: pointer
}

a {
  color: #222;
  text-decoration: none
}

a:hover {
  color: #c81623
}

body {
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
  font-family: "Barlow", sans-serif !important;
  color: #000;
  font-size: 1rem;
   overflow-x: hidden;
}

h1,
h2 {
  font-weight: 500;
}

.hide,
.none {
  display: none
}

.clearfix:after {
  visibility: hidden;
  clear: both;
  display: block;
  content: ".";
  height: 0
}

.container {
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 10rem; 
  transition: height 0.5s, box-shadow 0.5s;
}

/*.header-placeholder {*/
/*  width: 100%;*/
/*  display: block;*/
/*}*/
/*.header-placeholder {*/
/*  height: 10rem;*/
/*}*/
/*.sticky + .header-placeholder {*/
   /* sticky 状态下更小 */
/*}*/


.sticky .header {
  height: 5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); 
  transition: height 0.3s ease;
}

.sticky .main-nav {
  width: 100%;
  z-index: 1000;
  flex-grow: 0;
  height: 4.5rem;
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease-in-out;
}

.header-top {
  padding: 1.1rem  0 ;
  background-color: #222;
}

.header-top-content {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.header-top-content ul {
  list-style: none;
  display: flex;

}

.header-top-content ul li a {
  color: #fff;
  padding: 0 1.5rem;
  border-right: 1px solid #ccc;
}

.header-top-content ul li:first-child a {
  padding-left: 0;
}
.header-top-content ul li:last-child a {
  border-right: none;
  padding-right: 0;
}





.main-nav {
  flex-grow: 1;
  width: 100%;
  background-color: #fff;
  transition: box-shadow 0.3s ease-in-out;
}

.main-nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
  height: 100%;     
  transition: height 0.3s ease;  
}

.nav-logo{
  display: flex;
  align-items: center;
  width: 15%;
  height: 100%;
}
.nav-logo img{
 width: 100%;
 height: 100%;
 object-fit:contain;
}


.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

.nav-menu li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;

}

.nav-menu>li>a {
  display: block;
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
}

.nav-menu a.active {
  color: #003280;
}

/* 二级菜单 */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 20rem;
  padding: 1rem 0;
  list-style: none;
  z-index: 998;
  border: 1px solid #ccc;
}

.submenu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 40px;
  width: 20px;
  height: 10px;
  background-color: #ccc;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.submenu::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 42px;
  width: 16px;
  height: 8px;
  background-color: white;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.submenu li a {
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #222;
  width: 100%;
      font-size: 1.1rem;
}

.submenu li:hover>a {
  color: #003280;
  font-weight: 700;
}

/* 三级菜单 */
.submenuthree {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 20rem;
  padding: 1rem 0;
  list-style: none;
  z-index: 998;
  border: 1px solid #ccc;
}

.submenuthree::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 0.5rem;
  width: 12px;
  height: 1.5rem;
  background-color: #ccc;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  z-index: 1;
}

.submenuthree::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 0.5rem;
  width: 10px;
  height: 1.5rem;
  background-color: #fff;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  z-index: 2;
}

.submenu .submenuthree {
  left: 100%;
  top: 0;
}

.has-submenu:hover>.submenu {
  display: block;
}

.has-submenu:hover>.submenuthree {
  display: block;
}
.has-submenu-a:hover{
    color: #003280;
}

/* 四级菜单（产品图片） */
.submenufour {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  min-width: 300px;
  padding: 1rem;
  border: 1px solid #ccc;
  z-index: 999;
}

.submenufour img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

/* 悬停三级菜单项时显示四级菜单 */
.submenuthree > li {
  position: relative;
}

.submenuthree > li:hover > .submenufour {
  display: block;
}






.headquarters-nav {
  border-left: 1px solid #ccc;
  padding-left: 1.5rem;
  margin-left: 1.5rem;
}
.headquarters-nav a{

 display: inline-block; 
 
}

.headquarters-link {
    display: inline-flex;     /* 支持 flex 布局，适合居中 */
    align-items: center;      /* 垂直居中 */
    justify-content: center;  /* 水平居中 */
    padding: 0.5rem 1.1rem;
    background-color: #080157;
    color: #fff;
    border-radius: 10px;
}


.hero {
  height: calc(100vh - 10rem);
  margin-top: 10rem;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  height: 100%;
}


.index_category_title {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 3% 0;
}

.index_category_title::before,
.index_category_title::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}

.index_category_title span {
  padding: 0 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: #222;
}




.index_category_centent {
  display: flex;
  justify-content: space-between;
  margin: 0.5%;
  align-items: stretch;
}

.index_category_centent_item {
  border-radius: 10px;
  overflow: hidden;
}
.index_category_centent_item>a{
    display: block;
        height: 100%;
}
.index_category_centent_item_center_b>a ,.index_category_centent_item_center_t_l>a, .index_category_centent_item_center_t_r>a{
        display: block;
        height: 100%;
}





.index_category_centent_item_left,
.index_category_centent_item_right {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  height: auto;
}
.index_category_centent_item_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 13% 5%;
}

.bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 27, 150, 0.6);
  z-index: 1;
}


.index_category_centent_item_wrapper .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 27, 150, 0.6);
  opacity: 0;
  transform: scale(0.7);
  z-index: 1;
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}
.index_category_centent_item_wrapper:hover .overlay {
  opacity: 1;
  transform: scale(1);
}

.index_category_centent_item_left_h2 {
  margin-bottom: 5%;
  font-size: 1.2rem;
  font-weight: 700 !important;
}

.index_category_centent_item_left_desc {
  font-size: 1.1rem;
}

.index_category_centent_item_left_h2,
.index_category_centent_item_left_desc {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.index_category_centent_item_wrapper:hover h2,
.index_category_centent_item_wrapper:hover p {
  transform: scale(1.03) translateY(-3px);
  opacity: 0.95;
}


.index_category_centent_item_center {
  width: 33.5%;
  display: flex;
  flex-direction: column;
  justify-content:  space-between;
  height: auto;
}

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

.index_category_centent_item_center_t,
.index_category_centent_item_center_b {
  height: 49%;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}


.index_category_centent_item_center_t_l,
.index_category_centent_item_center_t_r {
  width: 49.6%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(10rem);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

.index_Product {
  margin: 3% 0;
}

.index_Product_title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3% 0;
}

.index_Product_title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.index_Product_list {
  width: 60%;
  margin: 0 auto;
}

.index_Product_list_item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5%;
  overflow: hidden;

}

.index_Product_list_item_left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

}

.index_Product_list_item_left a {
     display: block;
    height: 100%;
    width: 100%;

  
}

.index_Product_list_item_left a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.index_Product_list_item_left:hover a img {
  transform: scale(1.05);
}


.index_Product_list_item_right {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}



.left-box,
.right-box {
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
   will-change: transform, opacity;
}

.left-box {
  transform: translateX(-80px);
}

.right-box {
   transform: translateX(80px);
}

/*.animate-on-scroll.show .left-box {*/
/*  opacity: 1;*/
/*  transform: translateX(0);*/
/*}*/

/*.animate-on-scroll.show .right-box {*/
/*  opacity: 1;*/
/*  transform: translateX(0);*/
/*}*/

.animate-on-scroll.show .left-box,
.animate-on-scroll.show .right-box {
  opacity: 1;
  transform: translateX(0);
}



.index_Product_list_item_right_t {
  margin-bottom: 5%;
}

.index_Product_list_item_right_t h2 a {
  color: #555555;
  font-size: 1.8rem;
  font-weight: 600;
}

.index_Product_list_item_right_c a {
  font-size: 1.3rem;
  color: #003280;
  font-weight: 700;
}

.index_Product_list_item_right_b {
  margin: 5% 0;
}

/*.index_Product_list_item_right_b_ul li {*/
/*  list-style-type: disc;*/
/*  list-style-position: inside;*/
/*  color: #606060;*/
/*  font-size: 1.1rem;*/
/*  line-height: 2rem;*/
/*}*/

/*.index_Product_list_item_right_b_ul li::marker {*/
/*  font-size: 1.5em;*/
/*  color: #003280;*/
/*}*/

.index_Product_list_item_right_submit {

  font-size: 1em;
}

.index_Product_list_item_right_submit a {
  font-weight: 700;
  fill: #F8F5F5;
  color: #F8F5F5;
  background-color: #003280;
  border-style: solid;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  display: inline-block;
  font-size: 0.8rem;
  border: 2px solid transparent;
}

.index_Product_list_item_right_submit:hover a {
  background-color: #fff;
  border: 2px solid #003280;
  color: #003280;
}

/*index_application_centent*/
.index_application_centent{
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
   flex-wrap: wrap; 
}

.index_application_centent_item {
  position: relative;
  width: 24%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1%;
  overflow: hidden;
  border-radius: 8px;
  background: #000; 
}


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



.index_application_centent_item img.item-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.index_application_centent_item .content-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.4); 
  padding: 10%;
    pointer-events: none;
}


.index_application_centent_item h3 {
  margin-bottom: 10%;
  font-size: 1.3rem;
  z-index: 10;
}

.index_application_centent_item a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  z-index: 10;
}




.index_evaluate{
  background-image: url('/static/index/index/evaluate.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding:3% 0;
}
.index-evaluate-title{
    margin-bottom: 2%;
    
}

.index-evaluate-title h2{
    font-size: 2rem;
    font-weight: 700;
}


.index-evaluate-subtitle{
   margin-bottom: 3%;
}
.index-evaluate-title  , .index-evaluate-subtitle{
    text-align: center;
    color: #fff;
}


.index-evaluate-swiper-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.testimonial-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-testimonial{
    width: 80%;
    margin-left: 3%!important;
    margin-right: 3% !important;
}
.index-evaluate-swiper-slide1{
    border: 1px solid  #fff;
    padding: 8% 3%;
    margin-bottom: 5%;
}
.testimonial-item{
    color:#fff;
}
.testimonial-content{
    font-size: 1.1rem;
    margin-bottom: 5%;
    opacity: .54;
    line-height: 2rem;
}
.testimonial-author{
    font-weight: 700;
     font-size: 1.1rem;
}
.swiper-pagination {
  margin-top: 3%;
  text-align: center;
}
.swiper-button-next-testimonial , .swiper-button-prev-testimonial{
    font-size: 3rem;
    color: #fff;
    margin-top: -3%;
    opacity: .8;
}
.swiper-button-disabled {
  color: #ccc !important;
  cursor: not-allowed;
  opacity: 0.3;
  pointer-events: none;
}
.swiper-button-next-testimonial:hover , .swiper-button-prev-testimonial:hover{
  cursor: pointer;
}
.testimonial-wrapper .swiper-pagination-bullet {
  background-color: #fff; 
  opacity: 1;          
}
.testimonial-wrapper .swiper-pagination-bullet-active {
  background-color: #007aff; 
   opacity: 1; 
}








.index_news{
    background-color: #F6F6F6;
    padding: 3% 0;
}

.index_news_title{
    width: 80%;
    margin:3% auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.index_news_title_left h2{
    font-size: 2rem;
    font-weight: 700;
}

.index_news_title_right a {
  font-weight: 700;
  background-color: #fff;
  border: 3px solid #003280;
  color: #003280;
  padding: 0.7rem 0.9rem;
  display: inline-block;
  transition: all 0.3s ease; 
}
.index_news_title_right a:hover {
  font-weight: 700;
  fill: #F8F5F5;
  color: #F8F5F5;
  background-color: #003280;
  border: 3px solid transparent;
}


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

.newsSwiper{
    width: 80%;
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

.swiper-slide2{
    display: flex;
    flex-direction: column;
    background-color: #fff;
}
.swiper-slide2_t {
  width: 100%;
   aspect-ratio: 4 / 2.2;
  overflow: hidden;

  background-color: #f2f2f2; /* 防止页面空白跳动 */
}



.swiper-slide2_t a,
.swiper-slide2_t a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.swiper-slide2_desc{
   padding: 2rem 1.5rem;
    border-bottom:  solid 2px rgb(0 0 0 / .07);
    
}
.swiper-slide2_desc h2{  
margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
    
}
.swiper-slide2_desc h2 a{
    display: block;
      font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.33;
    color: #222;
}
.swiper-slide2_desc h2 a:hover{
  color:#003686 ;
}
.swiper-slide2_desc_time{
    margin-bottom: 2rem; 
    font-weight: 600;
    color: #222;
}
.swiper-slide2_desc_d{
     font-size: 1rem;
    line-height: 1.67;
    color: #898989;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; 
  overflow: hidden;
  text-overflow: ellipsis;
   
}
.swiper-slide2_b {
   padding: 2rem 1.5rem;  
}
.swiper-slide2_b a {
    display: block;
   font-size: 1rem;
  font-weight: 600;
}


.swiper-slide2_b a:hover{
  color:#003686 ;
  font-weight: 700;
}
.swiper-button-prev-news , .swiper-button-next-news{
   line-height:2rem;
   display: inline-block;
    font-size: 3rem;
    color: #007aff;
    opacity: .8;
}
.swiper-button-prev-news:hover , .swiper-button-next-news:hover{
cursor: pointer;
}


.footer{
    background-color: #000;
    color: #fff;
}
.footer_center{
        padding: 3% 0;
}


.footer_center {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start; 
  justify-content: space-between;
}
.footer-menu-col{
    width: 23%;
}
.footer-menu-col h4{
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
  align-self: flex-start;
}
.footer-menu-col ul{
    margin-top: 2rem;
}
.footer-menu-col_one li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); 
    padding: 5% 0;
    line-height: 2rem;
}

.footer-menu-col_one li:last-child {
  border-bottom: none;
}
.footer-menu-col_one_l{
    margin-right: 5%;
}
.footer-menu-col_one_r{
    font-size: 1rem;
    color: #AEAEAE;
}
.footer-menu-col_one_r span{
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.footer-menu-col_one_r a {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.footer-menu-col-two li{
    line-height: 2.5rem;
}
.footer-menu-col-two li a{
    font-size: 1.1rem;
    color: #fff;
}
.footer-menu-col-two li a:hover{
    color: #fff;
}
.footer-menu-col-icon {
  display: flex;
  gap: 0.9rem; 
}

.footer-menu-col-icon .iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-menu-col-icon .iconfont:hover {
  background-color: #EDB509;
  color: #000;
  cursor: pointer;
}
.footer-copy{
    padding: 1% 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    font-size: 1.1rem;
}

/*contact_banner*/
.contact_banner{
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    z-index: 1;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3%;
   margin-top: 10rem;
   
     transition: margin-top 0.3s ease;
   
}
.contact_banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); 
}
.contact_banner_nav{
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    color: #fff;
    line-height: 2rem;
    width: 80%;
    overflow: hidden;
    padding: 1%;

}
.contact_banner_nav  h1{
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 5%;
  line-height: 4rem;
    display: -webkit-box;
  -webkit-line-clamp: 2; /* 限制最多显示 2 行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact_banner_nav_list {
  display: flex;  
  gap: 1rem;        
}

.contact_banner_nav_parallelogram {
  padding: 0.1rem 0.6rem;
  cursor: pointer;
  background-color: transparent;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
   font-size:1rem;
}

.contact_banner_nav_parallelogram a {
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
}

.contact_banner_nav_parallelogram.active {
  background-color: #003280;
  transform: skew(-20deg);
  overflow: hidden;
}

.contact_banner_nav_parallelogram.active a {
  transform: skew(20deg);
  white-space: nowrap;
}

.contact-support{
    width: 98%;
    margin: 0 auto;
    height:40vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/static/index/CONTACT/20250623-01.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 1.8rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 2.5rem;
}
.contact-support-center{
    width: 50%;
    margin: 0 auto;
}

.contact-support-box{
  width: 80%;
  display: flex;
  justify-content: space-between;
  margin: -3rem auto 0;
 
  border-radius: 1rem;
  z-index: 2;
  position: relative;
}

.contact-support-box-item{
    width: 32%;
    border-radius: 10px;
    box-shadow: 0 1px 10px 0 RGB(0 0 0 / .13);
    padding:5rem 2%;
    line-height: 2rem;
    text-align: center;
    border: 1px solid  #ccc;
     background: #fff;
}
.contact-support-box-item  h3{
color: #0c264c;
margin-bottom: 5%;
font-size: 1.3rem;
}
.contact-support-box-item  p{
font-size: 1.1rem;
}
.contact-reserve{
    margin: 3% 0;
}


.contact-reserve  .contact-form-input .layui-form-label{
    font-weight: 500;
}




.contact-reserve-center{
    width: 80%;
    margin: 0 auto;
    border-radius: 10px;
    border: 1px solid  #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 
    0 6px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    
}
.contact-reserve-center:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.3s ease;
}

.contact-reserve-center_left{
    width: 60%;
    display: flex;
    justify-content: space-between;
    border-right: 1px solid #ccc;
   padding: 3%;
}
.contact-reserve-center_left_item{
    width: 48%;
   overflow: hidden;

}
.contact-reserve-center_left_item h2{
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5%;
}
.contact-reserve-center_left_item_img{
    margin-bottom: 5%;
}
.contact-reserve-center_desc h3{
     margin-bottom: 5%;
}
.contact-reserve-center_left_item_img img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
}
.contact-reserve-center_desc{
    font-size: 1rem;
    line-height: 2rem;
    
}
.contact-reserve-center_desc a{
color: #000;
}
.contact-reserve-center_desc a:hover{
color: #003280;
}
.contact-reserve-center_right{
    width: 40%;
    padding: 3%;
}
.contact-reserve-center_right_title{
    margin-bottom: 5%;
}
.contact-reserve-center_right_title h3{
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3%;
    color: #003280;
}
.contact-reserve-center_right_desc{
    color: rgb(136,136,136,1);
   
}
.contact-reserve-center_right_center{

    padding: 2% 0 0 0;
}

.contact-reserve-center_right_center .layui-form-label{
    padding: 0;
}



.contact-form-input .layui-form-label{
    font-weight: 600;
}
.contact-form-input input{
    border: 1px solid  #ddd ;
}

.contact-form-input  .layui-textarea{
    border: 1px solid  #ddd ;
}
.contact-form-input .layui-input, .layui-select, .layui-textarea{
    height: 3rem;
}


.contact-form-input .layui-input-block{
    min-height: 3rem;
}
.contact-form-button .layui-btn{
    background-color: #003280;
}

.contact-map{
    width:80%;
   margin: 0 auto;
   margin-bottom: 3%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.contact-map img{
    max-width:100%;
    min-height:100%;
        border-radius: 10px;
}









/*application-content*/
.application-content{
   
}
.application-content-list{
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    
}
.application-content-list > i{
    width:32%;
}
.application-content-list-item{
    width: 32%;
     background-color: #F6F6F6;
    line-height: 1.8rem;
    font-size: 1.2rem;
    overflow: hidden;
    margin-bottom: 3%;

}
.application-content-list-item-img{
       
         height: 25vh;
           overflow: hidden;
}
.application-content-list-item-img a{
    display: block;
    height: 100%;
    width: 100%;
}
.application-content-list-item-img a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}
.application-content-list-item-c{
    padding: 8%  5%;
    border-bottom: 1px solid #ccc;
}
.application-content-list-item-t a{
    font-size: 1.1rem;
    font-weight: 600;
}
.application-content-list-item-t a:hover{
color: #003280;
}
.application-content-list-item-t{
   padding: 8%  5%;
}
.application-content-list-item-c-t{
    margin-bottom: 5%;
}
.application-content-list-item-c-t h2 a{
    font-size: 1.3rem;
    font-weight: 700;
    color: #222222;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.application-content-list-item-c-t h2 a:hover{
color: #003280;
}
/*.application-content-list-item-c-time{*/
/*    margin-bottom: 5%;*/
/*    font-weight: 600;*/
   

/*}*/
.application-content-list-item-c-desc{
    color: rgb(136,136,136);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.application-content-list-page{
    display: flex;
        width: 100%;
}


.application-content-list-page .layui-laypage{
    margin: 3rem auto;
}

.application-content-list-page .layui-laypage a, .layui-laypage span{
        padding: 0.5rem 1.5rem !important;
        font-size: 1rem !important;
}
.application-content-list-page .layui-laypage .layui-laypage-curr .layui-laypage-em{
    background-color: #003280 !important;
}
/*.layui-laypage a, .layui-laypage span{*/
/*padding: 0.5rem 2rem;*/
/*}*/

/*news-details-content*/
.application-details-content{
    width: 70%;
    margin: 0 auto 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    
}
.application-details-content-left-img{
    margin-bottom: 5%;
    height:40vh;
}
.application-details-content-left-img img{
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.application-details-content-left-title{
    margin-bottom: 3%;

}
.application-details-content-left-title h2{

    font-weight: 700;
    font-size: 1.6rem;
}
.application-details-content-left{
    width: 68%;
}
.application-details-content-left-time{
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.application-details-content-right{
    width: 30%;
    padding: 3%;
    background-color:#003280;
    color: #fff;
    position: sticky;
    top: 8rem;
    align-self: flex-start;
    height: fit-content;
}


.application-details-content-right-title{
    
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.application-details-content-right-title-ul{
    line-height: 2rem;
    
}
.application-details-content-right-title-ul  li{
    padding: 1rem 0;
    border-bottom: 1px solid #fff;
}
.application-details-content-right-title-ul  li a{
   color: #fff;
   font-size: 1rem;
    font-weight: 600;
}
.application-details-content-right-title-ul  li a:hover{
   color: #ccc;
}
.application-details-content-right-title-ul li:last-child {
  border-bottom: none;
}

.application-details-content-left-center{
     margin-bottom: 5rem;
}
.application-details-content-sample{
    margin-bottom: 5rem;
}


.application-details-content-sample-title{
   margin-bottom: 5rem;
}
.application-details-content-sample-title h3{
    font-size: 1.6rem;
    font-weight:600 ;
    text-align: center;
    
}
.application-details-content-sample-h{
    margin-bottom: 5rem;
}
.application-details-content-sample-hr{
   border: none; 
    height: 2px; 
    background-color: #000; 
}



.application-details-content-sample-bot{
    width: 100%;
    overflow: hidden;
}
.application-details-content-sample-bot .appSwiper{
     max-width: 100%;        
       visibility: hidden;

}




.appSwiper-slide-t{
    margin-bottom: 2%;
}
.appSwiper-slide-t img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.appSwiper-slide-b{
    text-align: center;
    font-size: 1rem;
}

.products-cate{
    width: 70%;
    margin: 0 auto;
    margin-bottom: 3%;
}

.products-cate-ul{
    display: flex;
    flex-wrap: wrap;
   justify-content: center;
}
.products-cate-ul li{
    margin-right: 1%;
    border:  1px solid  #003280;
    margin-bottom: 1%;
    height: 3rem;
   box-sizing: border-box;
   text-align: center;

}

/*.products-cate-ul li {*/
 
/*  height: 3rem;*/
/*  margin-right: 1%;*/
/*  margin-bottom: 1%;*/
/*  border: 1px solid #003280;*/

/*}*/

/*.products-cate-ul li a {*/

/*  padding: 0;*/
/*  font-size: 1rem;*/
/*  font-weight: 600;*/
/*  color: #003280;*/
/*  text-decoration: none;*/
/*}*/






/* 普通 a 样式 */
.products-cate-ul li a {
      display: flex;
  align-items: center;
  padding: 0.5rem;
  width: 100%;
  height:100%;
  font-size: 1rem;
  font-weight: 600;
  color: #003280;
  background-color: #fff;
  border: 1px solid transparent;
  box-sizing: border-box;
  transition: all 0.2s ease;
  justify-content: center;
}

/* 鼠标悬浮时 */
.products-cate-ul li a:hover {
  color: #003280;
  background-color: #f5f5f5;
  border: 1px solid #003280;
}

/* 选中状态的样式 */
.products-cate-ul li.active a {
  color: #fff;
  background-color: #003280;
  border: 1px solid #003280;

}

/* 选中状态下鼠标移入，也保持样式不变 */
.products-cate-ul li.active a:hover {
  color: #fff;
  background-color: #003280;
  border: 1px solid #003280;
}



.products-content{
    width: 70%;
    margin:  0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
.products-content-item{
    background-color: #F6F6F6;
    width: 32%;
 font-size: 1rem;
 margin-bottom: 3%;

  
}
.products-content > i {
    width: 32%;
}





.products-content-item-img{
    height: 30vh;
    border-bottom:1px solid #ddd;
      display: block;
  position: relative;
  z-index: 1;
}

.products-content-item-img a{
    display: inline-block;
    width: 100%;
    height: 100%;
}

.products-content-item-img  a img{
 width: 100%;
 height: 100%;
 object-fit: contain;
}
.products-content-item-img .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: none; 
}

.overlay-icon {

  color: white;
  font-weight: bold;
  pointer-events: none;
  
}

.products-content-item-img:hover .overlay {
  opacity: 1;
}





.products-content-item-desc{
    padding: 3% 5%;
    margin-top: 5%;
    line-height: 1.5rem;
}
.products-content-item-desc  h2{
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom:8%;
  
}
.products-content-item-desc  h2 a:hover{
color: #003686;
  
}
.products-content-item-desc-c{
    color: rgb(136,136,136);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 2%;
}





.products-content-item-sub{
        border-top:1px solid #ddd;
         padding: 5% 5%;
           display: flex;
           justify-content: center;
}

.products-content-item-sub a{
    text-align: center;
    width: 40%;
    display:block;
    padding: 3% 1.5%;
    border: 2px solid transparent;
    box-shadow: 0 0 0 1px #ccc inset;     
    font-weight: 600;
    font-size: 1rem;
}
.products-content-item-sub a:hover {
  color: #003280;
  border-color: #003280;
}



/*products-details*/


.products-details-title{
    width:70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3%;
}

.products-details-title {
     position: relative; 
}

.products-details-title-left{
    width: 30%;
    overflow: hidden;
    border: 1px solid  #ddd;
}
.products-details-title-left  .main-swiper {
    width: 100%;
    height: 30vh;
    margin-bottom: 1rem;
}
.products-details-title-left  .thumb-swiper  {
     height: 10vh;
    box-sizing: border-box;
  }
  


    .magnifier-glass {
      position: absolute;
      top: 0;
      left: 0;
      width: 70%;
      height: 100%;
      border: 1px solid #ccc;
      background-repeat: no-repeat;
      background-size: 200% auto;
      display: none;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      z-index: 10;
    }



  
  
 .products-details-title-left .thumb-swiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }

.products-details-title-left  .main-swiper .swiper-slide img,
.products-details-title-left .thumb-swiper .swiper-slide img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
.products-details-title-left  .thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border:  1px solid  #003280;
}
.products-details-title-right{
    width: 65%;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 2rem;
    position: relative;
    
}
.products-details-title-right-t{
    margin-bottom: 3%;
}
.products-details-title-right-t  h2{
    font-size: 1.6rem ;
    font-weight: 700;
}
.products-details-title-right-c{
    font-size:1.1rem ;
}

.products-details-title-right-b a{
    display: inline-block;
    padding: 0.5rem 2rem;
    background-color: #003280;
    white-space: normal;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

/*.products-details-video{*/
/*    padding: 5% 2%;*/
/*    background-image: url('https://www.hanslaserus.com/wp-content/uploads/2023/05/fotbag1.jpg');*/
/*}*/

/*.products-details-video-item{*/
/*    width: 70%;*/
/*    margin:  0 auto;*/

/*}*/
/*.products-details-video-item-iframe{*/
/*    height: 60vh;*/
/*    width: 100%;*/
/*}*/

.products-details-content{
      width:70%;
     margin: 0 auto;

}


.products-details-content-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:5% 0;
}
.products-details-content-title-span{
    font-size: 1.8rem;
    font-weight: 700;
    margin-right:1% ;
}
.products-details-content-title-hr{
    flex: 1;
    border: none;
    border-top: 1px solid #cccccc !important;
    margin-left: 1rem;  /* 留点间距 */
}

.products-details-content-c iframe{
    width: 70%;
    height: 50vh;
}





.products-details-which{
        display: flex;
        flex-direction: column;
    /*justify-content: space-between;*/
    /*flex-wrap: wrap;*/
}
.products-details-which-item-list{
        display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.products-details-which > i{
    width:24%;
}
.products-details-which-title{
    margin-bottom: 3%;
}



.products-details-which-item{
    width: 18%;
    margin-bottom: 1%;
}
.products-details-which-item-t{
    overflow: hidden;
        border: 1px solid  #ccc ;
}
.products-details-which-item-t img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.products-details-which-item-t img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.products-details-which-item-b{
    font-size: 1rem;
    text-align: center;
    padding:1rem;
}

.products-details-which table{
    border-spacing: 0;
    border-bottom: solid 1px #222;
    border-collapse: collapse;
    margin: 0 auto;
    width: 100%;
    table-layout: auto;
}
.products-details-which table tbody td{
    border-collapse: collapse;
    padding: 0.3rem;
    color: #666;
    border: 1px solid #949494;
    font-size:1rem;
    vertical-align: middle;
    word-break: break-all;
    height: 3rem;
}



.products-details-random{
    display: flex;
    justify-content: space-between;
}
.products-details-random-item{
    width: 24%;
    margin-bottom: 5%;
    display: flex;
    flex-direction: column;
}
.products-details-random-item-img{
    overflow: hidden;
    border: 1px solid  #ccc ;
    padding: 2%;
    height: 40%;
}
.products-details-random-item-img a{
    display: block;
}
.products-details-random-item-img a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.products-details-random-item-img a img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}




.products-details-random-item-desc{
    flex: 1;
    width: 100%;
    padding: 5% 2%;    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 1.6rem;
    background-color: 	#f6f6f6;
  
}
.products-details-random-item-desc-b{
    text-align: center
}
.products-details-random-item-desc-t-h3{
    margin-bottom: 1.5rem
}
.products-details-random-item-desc-t-h3 h3{
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    
}
.products-details-random-item-desc-t-m{
    font-size: 1rem;
    margin-bottom: 2rem;
        display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-details-random-item-desc-b a{
    display: inline-block;
    padding: 2% 5%;
    font-size: 1rem;
    background-color: #003280;
    color: #fff;
    text-align: center;
     margin: 0 auto; 
}


/*about-introduce*/
.about-introduce{
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3%;
}
.about-introduce-left{
    width: 58%;
}
.about-introduce-right{
    width: 40%;   
}
.about-introduce-right{
    overflow: hidden;
    border-radius: 10px;
}
.about-introduce-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    
}

.about-data{
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    height: 18vh;
    margin-bottom: 3%;
}

.about-data-item{
    width: 15%;
    height: 100%;
    text-align: center;
    padding: 0 0.5%;
     border: 1px solid #003280;
     line-height: 2rem;
}

.about-data-item:hover{

     border: 2px solid #003280;

}

.about-data-item-num, .about-data-item-desc{
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}
.about-data-item-num{
   border-bottom:1px solid #003280;
   font-size: 1.6rem;
   font-weight: 700;
   color:  #080058;
   
   
}
.about-why{
       width: 70%;
   margin:0  auto; 
}
.about-why-title{
    text-align: center;
    margin-bottom: 3%;
}
.about-why-title h2{
    font-size: 1.6rem;
    font-weight: 700;

}
.about-why-content{
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  background: #fff;  
  padding: 5rem 0;

}

#hpchoice{
    margin-bottom: 0 !important;
}

.about-develop{
    /*width: 70%;*/
    /*margin: 0 auto;*/
    /*border: 1px solid  #ff0000;*/
}
.about-develop-title{
    text-align: center;
}
.about-develop-title h2{
    
        font-size: 1.6rem;
    font-weight: 700;
}





/*web-nav*/
.web_nav{
    display: none;
}
/*news-details-content*/
.news-details-content{
    width: 60%;
    margin: 0 auto 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    
}
.news-details-content-left-img{
    margin-bottom: 5%;
    height:40vh;
}
.news-details-content-left-img img{
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.news-details-content-left-title{
    margin-bottom: 3%;

}
.news-details-content-left-title h2{

    font-weight: 700;
    font-size: 1.6rem;
}
.news-details-content-left{
    width: 68%;
}
.news-details-content-left-time{
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.news-details-content-content{
    overflow: hidden;
}
.news-details-content-content img{
    width: 100%;
}





.news-details-content-right{
    width: 30%;
    padding: 3%;
    background-color:#003280;
    color: #fff;
    position: sticky;
    top: 8rem;
    align-self: flex-start;
    height: fit-content;
}


.news-details-content-right-title{
    
    font-size: 1.6rem;
  
    font-weight: 700;
}
/*.news-details-content-right-title-ul{*/
/*   */

    
/*}*/
.news-details-content-right-title-ul  li{
    padding: 2rem 0;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
}
.news-details-content-right-title-ul-li-l{
    width: 30%;
    display: flex;
    align-items: center;
}
.news-details-content-right-title-ul-li-l img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.news-details-content-right-title-ul-l-r{
    width: 65%;

}
.news-details-content-right-title-ul-l-r a{
   color: #fff;
   font-size: 0.9rem;
    font-weight: 600;
     line-height: 1.3rem;
       display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
      text-overflow: ellipsis;
}
.news-details-content-right-title-ul-l-r a:hover{
   color: #ccc;
}
.news-details-content-right-title-ul li:last-child {
  border-bottom: none;
}

/*app-details*/
.app-details{
     width: 70%;
    margin: 0 auto 5%;

}
.app-details-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}
.app-details-content-left{
    width: 66%;

}
.app-details-content-right{
    width: 32%;
   color: #fff;
   padding: 3%;
   background-color:#003280;
}


.app-details-content-left-title{
    margin-bottom: 5%;

}
.app-details-content-left-title h2{

    font-weight: 700;
    font-size: 1.6rem;
}
.app-details-content-left-content{
    margin-bottom: 2rem;
  
    
}
.app-details-content-left-content img{
    max-width: 100%;
}

.app-details-content-bottom-content{
    margin-top: 2rem;

}

.app-details-content-left-content-title{
    text-align: center;

}
.app-details-content-left-content-title h2{
     font-weight: 700;
         font-size: 1.5rem;
   
}
.app-details-content-right-title{
       font-size: 1.6rem;
  
    font-weight: 700;
    margin-bottom:1.5rem ;
}
.app-details-content-right-title-ul  li{
    padding: 1rem 0;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
}

.app-details-content-right-title-ul li a{
   color: #fff;
   font-size: 1rem;
    font-weight: 600;
     line-height: 1.3rem;
       display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
      text-overflow: ellipsis;
}
.app-details-content-right-title-ul li a:hover{
   color: #ccc;
}
.app-details-content-right-title-ul li:last-child {
  border-bottom: none;
}

.appSwiper{
     width: 100%;

  overflow: hidden;
  padding: 5% 0;

}
.app-details-content-left-content-hr{
     margin: 10% 0;
}
.app-details-content-left-content-hr hr{
  
        border-bottom: 1px solid #000 !important;
}
.appSwiper,
.appSwiper * {
  user-select: none;    
  -webkit-user-drag: none;
}
.appSwiper img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}   

.appSwiper  .swiper-wrapper{
    height: 20vh;
 
}
.appSwiper .swiper {
  width: 100%;
 
}

.appSwiper .appswiper-slide2_t {
  width: 100%;
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
}


/*common-footer-bottom-left*/
.common_footer_bottom_left_pc{
    position: fixed;
    bottom: 1%;
    left: 3%;
    z-index: 999;
    background-color: #011689;
    width: 10rem;
    cursor: pointer;
    line-height: 2.5rem;
    height: 2.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    border-radius: 100px;
    box-shadow: 0 0 10px rgba(68, 68, 68, 0.18);
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.common_footer_bottom_left_pc_button{
    margin-left: 5%;
}





/*common_sub*/


/*di-zuo*/
.popup-form-title{
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    padding: 20px ; 
}

.popup-form-title-bottom{
    cursor: pointer;
}
.popup-container {
    position: fixed;
    bottom: 0;
    left: 1%;
    width: 20%;
    transition: transform 0.3s ease-out;
    transform: translateY(100%);
    z-index: 1000;
    background: #fff;
    box-shadow: 0 0 10px rgba(68,68,68,0.18);
    border: 1px solid #ddd;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: auto;
}
.popup-container.active {
    transform: translateY(0);
}

.commom_bottom_from{
    padding: 20px;
}


.common_footer_right_left_pc{
    position: fixed;
    bottom: 0;left: 1%; 
    z-index: 999;
    background-color: #011689;
    width: 170px;
    cursor: pointer;
    line-height: 48px;
    height: 48px;
    color: #ffffff;font-size: 14px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;  
    box-shadow: 0 0 10px rgba(68,68,68,0.18);
    text-align: center;
    overflow: hidden;
}
.common_footer_right_left_web{
    display: none;
     position: fixed;
    bottom: 0;left: 1%; 
    z-index: 999;
    background-color: #011689;
    width: 170px;
    cursor: pointer;
    line-height: 48px;
    height: 48px;
    color: #ffffff;font-size: 14px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;  
    box-shadow: 0 0 10px rgba(68,68,68,0.18);
    text-align: center;
    overflow: hidden;
}

.thank-you-c{
    text-align:center;
    padding-bottom:10%;
    padding-top:15%;
}
.thank-you-c-cen{
    font-size:1.8rem;
    text-align:centent
}
.thank-you-c-cen-t{
    margin-bottom:1%;
}


@media (min-width: 1600px) {
  body {
    font-size: 18px;
  }
  .index_application_centent_item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 1;
        pointer-events: none;
    }
  
  
  
  
}
@media (max-width: 1440px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  body {
    font-size: 15px;
  }
  .header-top-content-item-right{
      font-size: 0.9rem;
  }
  .nav-menu>li>a{
      font-size: 1.1rem;
  }
  .index_category_title span  , .index_Product_title h2 , .index-evaluate-title h2 , .index_news_title_left h2{
      font-size: 1.6rem;
  }
  .index_application_centent_item h3{
      font-size: 1.2rem;
  }
  .testimonial-content,.testimonial-author{
      font-size: 1rem;
  }
  .swiper-slide2_desc h2 a{
        font-size: 1.1rem;
  }
  .swiper-slide2_desc_time{
        font-size: 1rem;
  }

  
  
  

  .contact_banner_nav h1{
  font-size:2.5rem;
  }
 .contact_banner_nav_parallelogram a{
     font-size: 0.9rem;
 } 
 .contact-support-center{
     font-size: 1.5rem;
 }
  .contact-reserve-center_desc h3{
      font-weight: 700;
       font-size: 1.1rem;
  }
  .contact-reserve-center_right_title h3{
      margin-bottom: 5%;
  }
  .contact-reserve-center_left_item h2{
      font-size: 1.3rem;
  }
  
  .contact-support-box-item h3{
      font-size: 1.2rem;
  }

.contact-support-box-item p{
    font-size: 1rem;
    line-height: 1.5rem;
}
  
  
  
  
     .products-details-title-left{
       width: 35%;
   }
  .products-details-title-right{
      width: 62%;
  }
  .products-details-title-left .main-swiper .swiper-slide{
      padding: 10%;
  }
  
  
  
  
/*.about*/
.about-introduce{
    width: 90%;
}
.about-introduce-left-top h2  , .about-why-title h2 , .about-develop-title h2{
    font-size: 1.3rem;
}
.about-introduce-left{
    width: 50%;
}
.about-introduce-right{
    width: 48%;
}
.about-introduce-right img{
    height: auto;
}
.about-introduce{
    margin-bottom: 5%;
}

.about-data{
    width: 90%;
    margin-bottom: 5%;
}
.about-why{
    width: 90%;  
    
}
.about-why-title{
      margin-bottom: 5%;
}

.why_advantage_bottom_center{
        padding-top: 2rem !important;
}
.about-develop{
    padding: 5% 0;
}

/*news-details-content*/
.news-details-content{
    width: 80%;
}  
  
  
.app-details {
    width: 90%;
  
}
  
.popup-container{
    width: 30%;
}  
  
  
  
  
  
}
@media (max-width: 1024px) {
  body {
    font-size: 14px;
  }
  
  .header{
      height: auto;
  }

  .header-top,.main-nav{
      
      display: none;
  }
  .hero{
      margin-top: 6vh;
      height: 30vh;
  }
  
   .index_category_title{
      margin: 6% 0;
  }
  
  .index_category_title span{
      font-size: 1.5rem;
  }

  .index_category_centent_item_left_h2{
      font-size: 1.2rem;
        line-height: 1rem;
  }
.index_category_centent_item_left_desc{
      font-size: 0.9rem;
      line-height: 1rem;
  }
  
  .index_Product_title{
      margin: 6% 0;
  }
  .index_Product_title h2{
      font-size: 1.5rem;
  }
  .index_Product_list{
      width: 90%;
  }


.index_Product_list_item{
    border-bottom: 1px solid #ccc;
    padding-bottom: 3%;
}
.index_Product_list_item_right_t h2 a{
    font-size: 1.1rem;
}
.index_Product_list_item_right_c a{
    font-size: 1rem;
}
.index_Product_list_item_right_b_ul li{
    font-size: 0.9rem;
}
.index_Product_list_item_right_submit a{
       padding: 0.3rem 0.5rem;
}
.index_application{
    margin-bottom: 3%;
}
.index_application_centent_item{
    width: 49%;
    height: 20vh;
    margin-bottom: 2%;
    display: flex;
    justify-content: center;

}
.index_application_centent_item h3{
    font-size: 1.2rem;
}
.index_application_centent_item a{
    font-size: 1rem;
}

.index-evaluate-title h2{
    font-size: 1.5rem;
}
.testimonial-content{
    font-size: 0.9rem;
}

.testimonial-author{
    font-size: 1rem;
}

.testimonial-wrapper .swiper-testimonial{
    width: 80%;
}
.index_news_title_left h2{
    font-size: 1.5rem;
}
.swiper-slide2_desc h2 a{
    font-size: 1.1rem;
}
.swiper-slide2_desc_time{
    font-size: 1rem;
}
.swiper-slide2_desc_d{
    font-size: 0.9rem;
}

.index_news_centent .newsSwiper{
   margin:0 !important;
}
.index_news_title{
    margin: 5% auto;
}

  .footer_center{
      flex-wrap: wrap;
      width: 90%;
      padding: 0;
  }
  .footer-menu-col{
      width: 100%;
      margin: 3% 0;
  }
    .footer-menu-col h4{
      font-size: 1.1rem;
  }
   .footer .footer_center .footer-menu-col:nth-child(3) {
   display: none;
}
 .footer .footer_center  .footer-menu-col:last-child {
    display: none;
}
.footer-menu-col-two li a{
    font-size: 0.9rem;
} 
.footer-copy{
    font-size: 0.9rem;
    padding: 5% 0;
}
  
.footer-menu-col_one li{
    padding: 3% 0;
}
  
 .footer-menu-col ul{
     margin-top: 1rem;
 } 
  
  
  
  
 
 .contact_banner{
    min-height: 25vh;
    padding: 2rem 1rem;
    margin-top: 6vh;
     margin-bottom: 5%;

 } 
 .contact_banner_nav{
     width: 90%;
 }
  .contact_banner_nav h1{
  font-size:2rem;
  line-height: 2rem;
  }
 .contact_banner_nav_parallelogram a{
     font-size: 0.9rem;
 } 
 
 .contact-support-box{
     width: 90%;
 }
 
 
 .contact-support{
     height: 30vh;
 }
 
  .contact-support-center{
    width: 90%;
    font-size: 1.3rem;
    font-family: 'Rubik', 'Arial';
    color: #fff;
    text-shadow: none;
    line-height: 1.8rem
  }

  
  .contact-reserve-center{
      width: 100%;
      display: block;
  }

  .contact-reserve-center_right, .contact-reserve-center_left{
      width: 100%;
  }

  .contact-reserve-center_desc h3{
      font-weight: 700;
       font-size: 1.1rem;
  }
  .contact-reserve-center_right_title h3{
      margin-bottom: 5%;
  }
  .contact-reserve-center_left_item h2{
      font-size: 1.3rem;
  }
  
  .contact-support-box-item{


      padding:2%;
  }
  .contact-support-box-item h3{
      font-size: 1.2rem;
  }

.contact-support-box-item p{
    font-size: 1rem;
    line-height: 1.5rem;
} 
  
  
  
  
.application-content-list{
      width: 95%;
  }
  .application-content-list-item{
      width: 32%;
      margin-bottom: 5%;
  }

  .application-content-list-item-c-t h2 a{
          font-size: 1.1rem;
        -webkit-line-clamp: 2;
  }
  
  /*.application-content-list-item-c-time{*/
  /*    font-size: 1rem;*/
  /*}*/
  .application-content-list-item-c-desc{
      font-size: 0.9rem;
  }
  .application-content-list-item-t a{
       font-size: 1rem;
  }
  
  
  
  

/*productslis*/
 .products-cate{
     width: 90%;
 }

 
 .products-content{
     width: 80%;

 }
 .products-content-item{

     margin-bottom: 5%;
 }
 
.products-content-item-img{
    height: 20vh;
}
 .products-content-item-sub a{
     font-size: 0.9rem;
 }

  
  
  
  /*.products-details*/
   .products-details-title {
    flex-direction: column;
    width: 90%;

  }

  .products-details-title-left,
  .products-details-title-right {
    width: 100%;
  }
.products-details-title-left .main-swiper .swiper-slide{
    padding: 5%;
}
  .main-swiper img,
  .thumb-swiper img {
    width: 100%;
    height: auto;
  }
.products-details-title-left .main-swiper{
    height: 30vh;
}
.swiper-slide-fully-visible{
      padding: 2%;
}
.products-details-title-left{
    margin-bottom: 10%;
}
.products-details-title-right-t{
    margin-bottom: 5%;
}
.products-details-title-right-t h2{
    font-size: 1.3rem;
}
.products-details-title-right-c{
    font-size: 1rem;
    line-height: 1.6rem;
    margin-bottom: 5%;
}

.products-details-title-right-b a{
        padding: 0.3rem 1.3rem;
        font-size: 1rem;
}

.products-details-content{
    width: 90%;
}
.products-details-content-title-span{
    font-size: 1.6rem;
}
.products-details-content-title{
    margin: 10% 0;
}

.products-details-which-item , .products-details-random-item{
    width: 32%;
}
.products-details-random-item-desc{
    line-height: 1.3rem;
}
.products-details-random-item-desc-t-h3 h3{
    font-size: 1rem;
}
.products-details-which-item-b{
        font-size: 0.9rem;
}
.products-details-random-item-desc-t-m{
    font-size: 0.9rem;
}

 .products-details-random-item-desc-b a{
     font-size: 0.9rem;
 }

/*.about*/
.about-introduce{
    width: 90%;
}
.about-introduce-left-top h2  , .about-why-title h2 , .about-develop-title h2{
    font-size: 1.3rem;
}
.about-introduce-left{
    width: 50%;
}
.about-introduce-right{
    width: 48%;
}
.about-introduce-right img{
    height: auto;
}
.about-introduce{
    margin-bottom: 5%;
}

.about-data{
    width: 90%;
    margin-bottom: 5%;
}
.about-why{
    width: 90%;  
    
}
.about-why-title{
      margin-bottom: 5%;
}

.why_advantage_bottom_center{
        padding-top: 2rem !important;
}
.about-develop{
    padding: 5% 0;
}


/*web-nav*/

.web_nav{
    display: block;
    height: 6vh;
    background-color: #fff;
}
.web_right_nav{
    display: none;
}
.web_nav_item{
    height: 100%;
}
.web_nav_item_list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
     height: 100%;
}
.web_nav_item_list .logo{
    width:30%;
    height: 100%;

          display: flex;
          align-items: center;
            justify-content: center;
         
}
.web_nav_item_list .logo a{

         display: flex;
          align-items: center;
              justify-content: center;
}
.web_nav_item_list .logo a img{
  width: 90%;  
  height: auto;
  object-fit:contain  ;
 
}
.web_nav_item_list-go {
  display: flex;
  justify-content: center; 
  align-items: center; 
  height: 100%;
}
.web_nav_item_list_he{
display: inline-flex;
  align-items: center;
  justify-content: center;
    font-size:1.1rem;
     padding: 0.3rem 0.9rem;
 
     border-radius: 10px;
    background-color:#f0b430;
    color:#fff;
    line-height: 1;
}







.logo_chick{
    width:15%;
       height: auto;
       display: flex;
       align-items: center;
        justify-content: center;
}
.logo_icon{
    color:#000;
    font-size:1.6rem !important;
}
  
.web_right_nav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 1.3rem;
}
.web_right_nav a {
    padding: 3%;
    text-decoration: none;
    font-size: 1rem;
    color: #000;
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.web_menu{
     display: flex;
     width: 100%;
     padding: 5% 0;
     margin-bottom: 5%;
     justify-content: space-between;
     align-items: center;
 }
.web_menu h5{
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}
.web_right_nav_guanbi{
    font-size: 1.2rem !important;
}
.web_menu_butt{
    font-size: 1rem;
    color: #000;
}
.web_right_content_ul_oneli{
    width: 100%;
}
.web_right_content_ul_oneli_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; 
}
.web_right_content_ul_oneli_list:hover {
 background-color: #B6CFED;
 color: #fff;
}
.web_right_content_ul_oneli_list a{
    width:90%;
}
.web_right_content_ul_oneli_list a:hover {
 color: #fff;
}
.web_right_content_ul_oneli_child {
    display: none; 
    margin-top: 5px; 
    width: 100%;
    border: 1px solid  rgb(128, 128, 128,0.2);
}
.web_right_content_ul_oneli_list span{
     font-size: 1rem;
     width: 10%;
}
.web_right_content_ul li a{
    font-size: 1.1rem;
}
.web_nav_item , .web_right_nav{
    display: block ;
}

  




/*news-de*/
.news-details-content{
    width: 80%;
    flex-direction: column;
}
.news-details-content-left , .news-details-content-right{
    width: 100%;
}
.news-details-content-left{
    margin-bottom: 10%;
}
.news-details-content-right-title-ul li{
    height: 13vh;
}
.news-details-content-right-title-ul-l-r a{
    font-size: 1rem;
}  
  

.appSwiper img{
    object-fit: contain;
}



.products-details-content-c iframe {
    width: 100%;
    height: 30vh;
}
 
.popup-container{
    width: 50%;
} 
 
 
 
 
 
  
  
}
@media (max-width: 768px) {
  body {
    font-size: 13px;
  }
  .header{
      height: auto;
  }

  .header-top,.main-nav{
      
      display: none;
  }
  .hero{
      margin-top: 6vh;
      height: 30vh;
  }
  
   .index_category_title{
      margin: 6% 0;
  }
  
  .index_category_title span{
      font-size: 1.5rem;
  }

  .index_category_centent_item_left_h2{
      font-size: 1rem;
        line-height: 1rem;
  }
.index_category_centent_item_left_desc{
      font-size: 0.8rem;
        display: -webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
      line-height: 1rem;
  }
  
  .index_Product_title{
      margin: 6% 0;
  }
  .index_Product_title h2{
      font-size: 1.5rem;
  }
  .index_Product_list{
      width: 90%;
  }


.index_Product_list_item{
    border-bottom: 1px solid #ccc;
    padding-bottom: 3%;
}
.index_Product_list_item_right_t h2 a{
    font-size: 1rem;
}
.index_Product_list_item_right_c a{
    font-size: 0.9rem;
}
.index_Product_list_item_right_b_ul li{
    font-size: 0.8rem;
}
.index_Product_list_item_right_submit a{
       padding: 0.3rem 0.5rem;
}
.index_application{
    margin-bottom: 3%;
}
.index_application_centent_item{
    width: 49%;
    height: 20vh;
    margin-bottom: 2%;
    display: flex;
    justify-content: center;

}
.index_application_centent_item h3{
    font-size: 1rem;
}
.index_application_centent_item a{
    font-size: 0.9rem;
}

.index-evaluate-title h2{
    font-size: 1.5rem;
}
.testimonial-content{
    font-size: 0.8rem;
}

.testimonial-author{
    font-size: 0.9rem;
}

.testimonial-wrapper .swiper-testimonial{
    width: 80%;
}
.index_news_title_left h2{
    font-size: 1.5rem;
}
.swiper-slide2_desc h2 a{
    font-size: 1.1rem;
}
.swiper-slide2_desc_time{
    font-size: 1rem;
}
.swiper-slide2_desc_d{
    font-size: 0.8rem;
}

.index_news_centent .newsSwiper{
   margin:0 !important;
}
.index_news_title{
    margin: 5% auto;
}

  .footer_center{
      flex-wrap: wrap;
      width: 90%;
      padding: 0;
  }
  .footer-menu-col{
      width: 100%;
      margin: 3% 0;
  }
    .footer-menu-col h4{
      font-size: 1.1rem;
  }
   .footer .footer_center .footer-menu-col:nth-child(3) {
   display: none;
}
 .footer .footer_center  .footer-menu-col:last-child {
    display: none;
}
.footer-menu-col-two li a{
    font-size: 0.9rem;
} 
.footer-copy{
    font-size: 0.9rem;
    padding: 5% 0;
}
  
.footer-menu-col_one li{
    padding: 3% 0;
}
  
  
  
 



 .contact_banner{
   margin-top: 6vh;
 } 

  .contact_banner_nav h1{
  font-size:2rem;
  }
 .contact_banner_nav_parallelogram a{
     font-size: 0.9rem;
 } 
 
 .contact-support-box{
     width: 90%;
 }
 
 
 .contact-support{
     height: 30vh;
 }
 
  .contact-support-center{
    width: 90%;
    font-size: 1.3rem;
    font-family: 'Rubik', 'Arial';
    color: #fff;
    text-shadow: none;
    line-height: 1.8rem
  }

  
  .contact-reserve-center{
      width: 100%;
      display: block;
  }

  .contact-reserve-center_right, .contact-reserve-center_left{
      width: 100%;
  }

  .contact-reserve-center_desc h3{
      font-weight: 700;
       font-size: 1.1rem;
  }
  .contact-reserve-center_right_title h3{
      margin-bottom: 5%;
  }
  .contact-reserve-center_left_item h2{
      font-size: 1.3rem;
  }
  
  .contact-support-box-item{


      padding:2%;
  }
  .contact-support-box-item h3{
      font-size: 1.2rem;
  }

.contact-support-box-item p{
    font-size: 1rem;
    line-height: 1.5rem;
}



  .application-content-list{
      width: 90%;
  }
  .application-content-list-item{
      width: 49%;
      margin-bottom: 5%;
  }

  .application-content-list-item-c-t h2 a{
          font-size: 1.1rem;
        -webkit-line-clamp: 2;
  }
  
  /*.application-content-list-item-c-time{*/
  /*    font-size: 1rem;*/
  /*}*/
  .application-content-list-item-c-desc{
      font-size: 0.9rem;
  }
  .application-content-list-item-t a{
       font-size: 1rem;
  }
  

/*productslis*/
 .products-cate{
     width: 90%;
 }
 .products-cate-ul{
     align-items: center;
     justify-content:space-between ;
 }
 .products-cate-ul li{

     display: flex;
     justify-content: center;
     align-items: center;
      margin-bottom: 2%;
      text-align: center;
      margin-right: 0;
 }

 
 .products-content{
     width: 80%;
 }
 .products-content-item{
     width: 49%;
     margin-bottom: 5%;
 }
 .products-content-item-sub a{
     font-size: 0.9rem;
 }



  /*.products-details*/
   .products-details-title {
    flex-direction: column;
    width: 90%;

  }

  .products-details-title-left,
  .products-details-title-right {
    width: 100%;
  }
.products-details-title-left .main-swiper .swiper-slide{
    padding: 5%;
}
  .main-swiper img,
  .thumb-swiper img {
    width: 100%;
    height: auto;
  }
.products-details-title-left .main-swiper{
    height: 30vh;
}
.swiper-slide-fully-visible{
      padding: 2%;
}
.products-details-title-left{
    margin-bottom: 10%;
}
.products-details-title-right-t{
    margin-bottom: 5%;
}
.products-details-title-right-t h2{
    font-size: 1.3rem;
}
.products-details-title-right-c{
    font-size: 1rem;
    line-height: 1.6rem;
    margin-bottom: 5%;
}

.products-details-title-right-b a{
        padding: 0.3rem 1.3rem;
        font-size: 1rem;
}

.products-details-content{
    width: 90%;
}
.products-details-content-title-span{
    font-size: 1.6rem;
}
.products-details-content-title{
    margin: 10% 0;
}
.products-details-which-item , .products-details-random-item{
    width: 49%;
}
.products-details-random-item-desc{
    line-height: 1.3rem;
}
.products-details-random-item-desc-t-h3 h3{
    font-size: 1rem;
}
.products-details-which-item-b{
        font-size: 0.9rem;
}
.products-details-random-item-desc-t-m{
    font-size: 0.9rem;
}

 .products-details-random-item-desc-b a{
     font-size: 0.9rem;
 }


/*.about*/
.about-introduce{
    width: 95%;
}
.about-introduce-left-top h2  , .about-why-title h2 , .about-develop-title h2{
    font-size: 1.3rem;
}
.about-introduce-left{
    width: 50%;
}
.about-introduce-right{
    width: 48%;
}
.about-introduce-right img{
    height: auto;
}
.about-introduce{
    margin-bottom: 5%;
}

.about-data{
    width: 95%;
    margin-bottom: 5%;
}
.about-data-item {
        line-height: 1.5rem;
}
.about-data-item-num{
        font-size: 1.2rem;
}
.about-data-item-desc {
    font-size: 0.9rem;
}
.about-why{
    /*width: 95%;  */
    display: none;
}
/*.about-why-title{*/
/*      margin-bottom: 5%;*/
/*}*/

/*.why_advantage_bottom_center{*/
/*        padding-top: 2rem !important;*/
/*}*/
/*.about-develop{*/
/*    padding: 5% 0;*/
/*}*/

/*web-nav*/

.web_nav{
    display: block;
    height: 6vh;
    background-color: #fff;
}
.web_right_nav{
    display: none;
}
.web_nav_item{
    height: 100%;
}
.web_nav_item_list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
     height: 100%;
}
.web_nav_item_list .logo{
    width:30%;
    height: 100%;

          display: flex;
          align-items: center;
            justify-content: center;
         
}
.web_nav_item_list .logo a{

         display: flex;
          align-items: center;
              justify-content: center;
}
.web_nav_item_list .logo a img{
  width: 90%;  
  height: auto;
  object-fit:contain  ;
 
}
.logo_chick{
    width:15%;
       height: auto;
       display: flex;
       align-items: center;
        justify-content: center;
}
.logo_icon{
    color:#000;
    font-size:1.6rem !important;
}
  
.web_right_nav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 1.3rem;
}
.web_right_nav a {
    padding: 3%;
    text-decoration: none;
    font-size: 1rem;
    color: #000;
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.web_menu{
     display: flex;
     width: 100%;
     padding: 5% 0;
     margin-bottom: 5%;
     justify-content: space-between;
     align-items: center;
 }
.web_menu h5{
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}
.web_right_nav_guanbi{
    font-size: 1.2rem !important;
}
.web_menu_butt{
    font-size: 1rem;
    color: #000;
}
.web_right_content_ul_oneli{
    width: 100%;
}
.web_right_content_ul_oneli_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; 
}
.web_right_content_ul_oneli_list:hover {
 background-color: #B6CFED;
 color: #fff;
}
.web_right_content_ul_oneli_list a{
    width:90%;
}
.web_right_content_ul_oneli_list a:hover {
 color: #fff;
}
.web_right_content_ul_oneli_child {
    display: none; 
    margin-top: 5px; 
    width: 100%;
    border: 1px solid  rgb(128, 128, 128,0.2);
}
.web_right_content_ul_oneli_list span{
     font-size: 1rem;
     width: 10%;
}
.web_right_content_ul li a{
    font-size: 1.1rem;
}
.web_nav_item , .web_right_nav{
    display: block ;
}

/*news-de*/
.news-details-content-right-title-ul li{
    height: 15vh;
}  


.app-details-content{
    flex-direction: column;
}
.app-details-content-left , .app-details-content-right{
    width: 100%;
}



.products-details-content-c iframe {
    width: 100%;
    height: 26vh;
}



.popup-container{
    width: 80%;
} 
 

.products-details-random-item-img{
    height:auto;
}


.thank-you-c{
    padding-top:20%;
}



}
@media (max-width: 600px) {
  body {
    font-size: 12px;
  }
  .header{
      height: auto;
  }

  .header-top,.main-nav{
      
    display: none;
  }
  .hero{
      margin-top: 6vh;
      height: 30vh;
  }
  
   .index_category_title{
      margin: 8% 0;
  }
  
  .index_category_title span{
      font-size: 1.2rem;
  }
  .index_category_centent{
      flex-wrap: wrap;
  }
    .index_category_centent_item{
      width:100%;
      margin-bottom: 2%;
  }
  .index_category_centent_item_center_t{
      flex-wrap: wrap;

  }
  .index_category_centent_item_center_t_r  {
      width: 100%;
  }
  .index_category_centent_item_center_t, .index_category_centent_item_center_b{
      height: auto;
  }
  .index_category_centent_item_center_t_l, .index_category_centent_item_center_t_r{
          height: auto;
          width: 100%;
           margin-bottom: 2%;
  }

  .index_category_centent_item_left_h2{
      font-size: 1.1rem;
  }
.index_category_centent_item_left_desc{
      font-size: 1rem;
  }
  
  .index_Product_title{
      margin: 8% 0;
  }
  .index_Product_title h2{
      font-size: 1.2rem;
  }
  .index_Product_list{
      width: 90%;
  }

.index_Product_list_item{
    flex-direction: column;
}
.index_Product_list_item_left  , .index_Product_list_item_right{
    width: 100%;
    margin-bottom: 2%;
}

.index_Product_list_item_left{
    padding: 2%;
}
.index_Product_list_item_right_t h2 a{
    font-size: 1rem;
}
.index_Product_list_item_right_c a{
    font-size: 0.9rem;
}
.index_Product_list_item_right_b_ul li{
    font-size: 0.8rem;
}
.index_Product_list_item_right_submit a{
       padding: 0.3rem 0.5rem;
}
.index_application{
    margin-bottom: 3%;
}
.index_application_centent_item{
    width: 49%;
    height: 30vh;
    margin-bottom: 2%;
    display: flex;
    justify-content: center;

}
.index_application_centent_item h3{
    font-size: 1rem;
}
.index_application_centent_item a{
    font-size: 0.9rem;
}

.index-evaluate-title h2{
    font-size: 1.2rem;
}
.testimonial-content{
    font-size: 0.8rem;
}

.testimonial-author{
    font-size: 0.9rem;
}

.testimonial-wrapper .swiper-testimonial{
    width: 80%;
}
.index_news_title_left h2{
    font-size: 1.2rem;
}
.swiper-slide2_desc h2 a{
    font-size: 1.1rem;
}
.swiper-slide2_desc_time{
    font-size: 1rem;
}
.swiper-slide2_desc_d{
    font-size: 0.8rem;
}

.index_news_centent .newsSwiper{
   margin:0 !important;
}
.index_news_title{
    margin: 5% auto;
}

  .footer_center{
      flex-wrap: wrap;
      width: 90%;
  }
  .footer-menu-col{
      width: 100%;
      margin: 5% 0;
  }
    .footer-menu-col h4{
      font-size: 1.1rem;
  }
   .footer .footer_center .footer-menu-col:nth-child(3) {
   display: none;
}
 .footer .footer_center  .footer-menu-col:last-child {
    display: none;
}
.footer-menu-col-two li a{
    font-size: 0.9rem;
} 
.footer-copy{
    font-size: 0.9rem;
    padding: 5% 0;
}
  
  

  .contact_banner_nav h1{
  font-size:1.9rem;
  }
 .contact_banner_nav_parallelogram a{
     font-size: 0.9rem;
 } 
 
 .contact-support-box{
     width: 100%;
 }
 
 
 .contact-support{
     height: 30vh;
 }
 
 
 
  .contact-support-center{
     width: 90%;
     font-size: 1.1rem;
    font-family: 'Rubik', 'Arial';
    color: #fff;
    text-shadow: none;
    line-height: 1.8rem
  }
  .contact-support-box-item p{
      display: none;
  }
  
  .contact-reserve-center{
      width: 100%;
      display: block;
  }
  .contact-reserve-center_right, .contact-reserve-center_left,.contact-reserve-center_left_item{
      width: 100%;
  }
  
  .contact-reserve-center_left{
      display: block;
  }
  .contact-reserve-center_left_item{
      padding: 5% 0;
      border-bottom:1px solid #ddd;
      
  }
  .contact-reserve-center_desc h3{
      font-weight: 700;
       font-size: 1.1rem;
  }
  .contact-reserve-center_right_title h3{
      margin-bottom: 5%;
  }
  .contact-reserve-center_left_item h2{
      font-size: 1.3rem;
  }
  
  .contact-support-box-item{
      padding: 0;
      line-height: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      padding:2%;
  }
  .contact-support-box-item h3{
      font-size: 1rem;
  }


  
   .layui-form-item .layui-form-label {
        white-space: normal !important;      
        overflow: visible !important;       
        text-overflow: unset !important;    
    }





  .application-content-list{
      width: 80%;
  }
  .application-content-list-item{
      width: 100%;
      margin-bottom: 5%;
  }

  .application-content-list-item-c-t h2 a{
          font-size: 1.1rem;
            display: block; /* 或 inline/inline-block，根据你的实际需求 */
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  }
  
  /*.application-content-list-item-c-time{*/
  /*    font-size: 1rem;*/
  /*}*/
  .application-content-list-item-c-desc{
      font-size: 0.9rem;
  }
  .application-content-list-item-t a{
       font-size: 1rem;
  }
  




/*productslis*/
 .products-cate{
     width: 90%;
 }
 .products-cate-ul{
     align-items: center;
     justify-content:space-between ;
 }
 .products-cate-ul li{
     width: 48%;
     display: flex;
     justify-content: center;
     align-items: center;
      margin-bottom: 2%;
      text-align: center;
      margin-right: 0;
 }
 .products-cate-ul li a{
     font-size: 0.8rem;
     font-weight: 500;
         padding: 0.6rem;
 } 
 
 .products-content{
     width: 90%;
 }
 .products-content-item{
     width: 100%;
     margin-bottom: 5%;
 }
 
 .products-content-item-desc-c{
     font-size: 0.9rem;
 }
 
 .products-content-item-sub a{
     font-size: 0.9rem;
 }
 



  /*.products-details*/
   .products-details-title {
    flex-direction: column;
    width: 90%;

  }

  .products-details-title-left,
  .products-details-title-right {
    width: 100%;
  }
.products-details-title-left .main-swiper .swiper-slide{
    padding: 5%;
}
  .main-swiper img,
  .thumb-swiper img {
    width: 100%;
    height: auto;
  }
.products-details-title-left .main-swiper{
    height: 30vh;
}
.swiper-slide-fully-visible{
      padding: 2%;
}
.products-details-title-left{
    margin-bottom: 10%;
}
.products-details-title-right-t{
    margin-bottom: 5%;
}
.products-details-title-right-t h2{
    font-size: 1.3rem;
}
.products-details-title-right-c{
    font-size: 1rem;
    line-height: 1.6rem;
    margin-bottom: 5%;
}

.products-details-title-right-b a{
        padding: 0.3rem 1.3rem;
        font-size: 1rem;
}

.products-details-content{
    width: 90%;
}
.products-details-content-title-span{
    font-size: 1.6rem;
}
.products-details-content-title{
    margin: 10% 0;
}
.products-details-which-item , .products-details-random-item{
    width: 49%;
}
.products-details-random-item-desc{
    line-height: 1.3rem;
}
.products-details-random-item-desc-t-h3 h3{
    font-size: 1rem;
}
.products-details-which-item-b{
        font-size: 0.9rem;
}
.products-details-random-item-desc-t-m{
    font-size: 0.9rem;
}

 .products-details-random-item-desc-b a{
     font-size: 0.9rem;
 }



/*about*/
.about-introduce{
    
    flex-direction: column;
    
}
.about-introduce{
    width: 90%;
    margin-bottom: 10%;
}
.about-introduce-left {
    width: 100%;
}
.about-introduce-left{
    margin-bottom: 5%;
}
.about-introduce-right{
    width: 100%;
}
.about-data{
   width: 90%; 
   flex-wrap: wrap;
   height: auto;
   align-items: stretch;
   overflow: hidden;
}
.about-data-item{
    overflow: hidden;
    width: 32%;
    height: auto;
    margin-bottom: 3%;
    /*border: 1px solid  #ff0000;*/
}
.about-data-item-num, .about-data-item-desc{
    line-height: 1.3rem;
    font-size: 0.9rem;
    height: auto;
}
.about-develop-title h2{
    font-size: 1.3rem;
}
.about-introduce-left-top h2{
  font-size: 1.3rem;   
}
.about-why{
    display: none;
}

.about-data-item-num{
    font-size: 1.2rem;
    padding: 10% 0;
}


/*web-nav*/

.web_nav{
    display: block;
    height: 6vh;
    background-color: #fff;
}
.web_right_nav{
    display: none;
}
.web_nav_item{
    height: 100%;
}
.web_nav_item_list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
     height: 100%;
}
.web_nav_item_list .logo{
    width:30%;
    height: 100%;

          display: flex;
          align-items: center;
            justify-content: center;
         
}
.web_nav_item_list .logo a{

         display: flex;
          align-items: center;
              justify-content: center;
}
.web_nav_item_list .logo a img{
  width: 90%;  
  height: auto;
  object-fit:contain  ;
 
}
.logo_chick{
    width:10%;
       height: auto;
       display: flex;
       align-items: center;
        justify-content: center;
}
.logo_icon{
    color:#000;
    font-size:1.6rem !important;
}
  
.web_right_nav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 1.3rem;
}
.web_right_nav a {
    padding: 3%;
    text-decoration: none;
    font-size: 1rem;
    color: #000;
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.web_menu{
     display: flex;
     width: 100%;
     padding: 5% 0;
     margin-bottom: 5%;
     justify-content: space-between;
     align-items: center;
 }
.web_menu h5{
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}
.web_right_nav_guanbi{
    font-size: 1.2rem !important;
}
.web_menu_butt{
    font-size: 1rem;
    color: #000;
}
.web_right_content_ul_oneli{
    width: 100%;
}
.web_right_content_ul_oneli_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; 
}
.web_right_content_ul_oneli_list:hover {
 background-color: #B6CFED;
 color: #fff;
}
.web_right_content_ul_oneli_list a{
    width:90%;
}
.web_right_content_ul_oneli_list a:hover {
 color: #fff;
}
.web_right_content_ul_oneli_child {
    display: none; 
    margin-top: 5px; 
    width: 100%;
    border: 1px solid  rgb(128, 128, 128,0.2);
}
.web_right_content_ul_oneli_list span{
     font-size: 1rem;
     width: 10%;
     color: #000;
}
.web_right_content_ul li a{
    font-size: 1.1rem;
}
.web_nav_item , .web_right_nav{
    display: block ;
}

  
 .contact_banner_nav_list{
         gap: 0.5rem;
 }

.contact_banner_nav_parallelogram{
        padding: 0rem 0.1rem;
}


.contact-map{
    width:90%;
}




}
@media (max-width: 480px) {
  body {
    font-size: 11px;
  }
  .header-top,.main-nav{
      display: none;
    
  }
  .hero{
      margin-top: 6vh;
      height: 26vh;
  }
  .index_category_title{
      margin: 5% 0;
  }
  .index_category_title span{
      font-size: 1.1rem;
  }
  .index_category_centent{
      flex-direction:column;
  }
  .index_category_centent_item_left, .index_category_centent_item_right{
      width: 100%;
  }
  
  .index_category_centent_item_left_h2{
      font-size: 1.1rem;
  }
  .index_category_centent_item_left_desc{
      font-size: 0.9rem;
  }
  
  .index_category_centent_item_center{
      width: 100%;
  }
  
  .index_category_centent_item_center_t, .index_category_centent_item_center_b{
      width: 100%;
  }
  .index_category_centent_item , .index_category_centent_item_center_t , .index_category_centent_item_center_t_l{
      margin-bottom: 2%;
  }
  .index_category_centent_item_center_t{
      flex-direction: column;
  }
  .index_category_centent_item_center_t_l , .index_category_centent_item_center_t_r {
      width: 100%;
  }
  .index_Product_list{
      width: 90%;
  }
  .index_Product_title{
      margin: 5% 0;
  }
  .index_Product_title h2{
      font-size: 1.3rem;
  }
  .index_Product_list_item{
     flex-direction: column;
      padding-bottom: 5%;
           border-bottom: 1px solid #ccc;
  }
    .index_Product_list_item_left {
        margin-bottom: 2%;
    }
  .index_Product_list_item_left , .index_Product_list_item_right{
      width: 100%;
      margin-bottom: 3%;

  }
  .index_Product_list_item_right_t h2 a{
      font-size: 1rem;
  }
  .index_Product_list_item_right_c a{
       font-size: 0.9rem;
  }
  .index_Product_list_item_right_b_ul li{
      font-size: 0.8rem;
  }
  
  .index_Product_list_item_right_submit a{
      padding: 0.4rem 0.6rem;
  }
  
  .index_application_centent_item{
      width: 49%;
      height: 30vh;
      padding: 0;
      display:block;
      margin-bottom: 2%;
  }
  
  .index_application_centent_item h3{
       font-size: 1rem;
  }
  
  .index_application_centent_item a{
      font-size: 0.8rem;
  }
  .index_application_centent{
      margin-bottom: 3%;
  }
  .index-evaluate-title h2{
      font-size: 1.3rem;
  }
  
  .swiper-testimonial{
      width: 80%;
  }
  .testimonial-content{
      font-size: 0.8rem;
  }
  .testimonial-author{
      font-size: 0.9rem;
  }

  .index_evaluate-prev , .index_evaluate-next {
      font-size: 1.5rem;
      margin-top: -10%;
  }
  .index_news_title_left h2{
      font-size: 1.2rem;
  }
  
  .index_news_title_right a{
          padding: 0.4rem 0.6rem;
  }
  .index_news_centent{
      overflow: hidden;
  }
  
  .newsSwiper{
      margin: 0 !important;
  }
  
  .index_Product_list_item_left a {
      width: 100%;
  }
  
  
  .swiper-slide2_desc h2 a{
      font-size: 1rem;
  }

  .swiper-slide2_desc_d{
      font-size: 0.9rem;
  }
  .swiper-slide2_desc_time{
      font-size: 0.8rem;
  }
  .swiper-slide2_b a{
      font-size: 0.9rem;
  }
  
  .footer_center{
      flex-wrap: wrap;
      width: 90%;
  }
  .footer-menu-col{
      width: 100%;
      margin: 5% 0;
  }
    .footer-menu-col h4{
      font-size: 1.1rem;
  }
   .footer .footer_center .footer-menu-col:nth-child(3) {
   display: none;
}
 .footer .footer_center  .footer-menu-col:last-child {
    display: none;
}
.footer-menu-col-two li a{
    font-size: 0.9rem;
} 
.footer-menu-col-two li{
    line-height: 2rem;
}
.footer-copy{
    font-size: 0.9rem;
    padding: 5% 0;
}
  

  .contact_banner_nav h1{
      font-size:1.9rem;
  }
  
  .contact_banner_nav.news-page h1 {
    font-size: 1.3rem;
  }
  
 .contact_banner_nav_parallelogram a{
     font-size: 0.9rem;
 } 
 
 .contact-support-box{
     width: 100%;
 }
 
 
 .contact-support{
     height: 30vh;
 }
 
 
 
  .contact-support-center{
     width: 90%;
     font-size: 1.1rem;
    font-family: 'Rubik', 'Arial';
    color: #fff;
    text-shadow: none;
    line-height: 1.8rem
  }
  .contact-support-box-item p{
      display: none;
  }
  
  .contact-reserve-center{
      width: 100%;
      display: block;
  }
  .contact-reserve-center_right, .contact-reserve-center_left,.contact-reserve-center_left_item{
      width: 100%;
  }
  
  .contact-reserve-center_left{
      display: block;
  }
  .contact-reserve-center_left_item{
      padding: 5% 0;
      border-bottom:1px solid #ddd;
      
  }
  .contact-reserve-center_desc h3{
      font-weight: 700;
       font-size: 1.1rem;
  }
  .contact-reserve-center_right_title h3{
      margin-bottom: 5%;
  }
  .contact-reserve-center_left_item h2{
      font-size: 1.3rem;
  }
  .contact-support-box-item{
      padding: 0;
      line-height: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      padding:2%;
  }
  .contact-support-box-item h3{
      font-size: 1rem;
  }
  

  
  .application-content-list{
      width: 80%;
  }
  .application-content-list-item{
      width: 100%;
      margin-bottom: 5%;
  }

  .application-content-list-item-c-t h2 a{
          font-size: 1.1rem;
            display: block; /* 或 inline/inline-block，根据你的实际需求 */
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  }
  
  /*.application-content-list-item-c-time{*/
  /*    font-size: 1rem;*/
  /*}*/
  .application-content-list-item-c-desc{
      font-size: 0.9rem;
  }
  .application-content-list-item-t a{
       font-size: 1rem;
  }
  
/*productslis*/
 .products-cate{
     width: 90%;
 }
 .products-cate-ul{
     align-items: center;
     justify-content:space-between ;
 }
 .products-cate-ul li{
     width: 48%;
     display: flex;
     justify-content: center;
     align-items: center;
      margin-bottom: 2%;
      text-align: center;
      margin-right: 0;
 }
 .products-cate-ul li a{
     font-size: 0.8rem;
     font-weight: 500;
 } 
 
 .products-content{
     width: 90%;
 }
 .products-content-item{
     width: 100%;
     margin-bottom: 5%;
 }
 
 .products-content-item-desc-c{
     font-size: 0.9rem;
 }
 
 .products-content-item-sub a{
     font-size: 0.9rem;
 }
 
  
  /*.products-details*/
   .products-details-title {
    flex-direction: column;
    width: 90%;

  }

  .products-details-title-left,
  .products-details-title-right {
    width: 100%;
  }
/*.products-details-title-left .main-swiper .swiper-slide{*/
/*    padding: 10%;*/
/*}*/
  .main-swiper img,
  .thumb-swiper img {
    width: 100%;
    height: auto;
  }
.products-details-title-left .main-swiper{
    height: 30vh;
}
.swiper-slide-fully-visible{
      padding: 2%;
}
.products-details-title-left{
    margin-bottom: 10%;
}
.products-details-title-right-t{
    margin-bottom: 5%;
}
.products-details-title-right-t h2{
    font-size: 1.3rem;
}
.products-details-title-right-c{
    font-size: 1rem;
    line-height: 1.6rem;
    margin-bottom: 5%;
}

.products-details-title-right-b a{
        padding: 0.3rem 1.3rem;
        font-size: 1rem;
}

.products-details-content{
    width: 90%;
}
.products-details-content-title-span{
    font-size: 1.6rem;
}
.products-details-content-title{
    margin: 10% 0;
}
.products-details-which-item , .products-details-random-item{
    width: 49%;
}
.products-details-random-item-desc{
    line-height: 1.3rem;
}
.products-details-random-item-desc-t-h3 h3{
    font-size: 1rem;
}
.products-details-which-item-b{
        font-size: 0.9rem;
}
.products-details-random-item-desc-t-m{
    font-size: 0.9rem;
}

 .products-details-random-item-desc-b a{
     font-size: 0.9rem;
 }



/*about*/
.about-introduce{
    
    flex-direction: column;
    
}
.about-introduce{
    width: 90%;
    margin-bottom: 10%;
}
.about-introduce-left {
    width: 100%;
}

.about-introduce-left{
    margin-bottom: 5%;
}
.about-introduce-right{
    width: 100%;
}
.about-data{
   width: 90%; 
   flex-wrap: wrap;
   height: auto;
   align-items: stretch;
   overflow: hidden;
}
.about-data-item{
    overflow: hidden;
    width: 32%;
    height: auto;
    margin-bottom: 3%;
}
.about-data-item-num, .about-data-item-desc{
    line-height: 1.3rem;
    font-size: 0.9rem;
    height: auto;
}
.about-develop-title h2{
    font-size: 1.3rem;
}
.about-introduce-left-top h2{
  font-size: 1.3rem;   
}
.about-why{
    display: none;
}

.about-data-item-num{
    font-size: 1.2rem;
    padding: 10% 0;
}



/*web-nav*/

.web_nav{
    display: block;
    height: 6vh;
    background-color: #fff;
}
.web_right_nav{
    display: none;
}
.web_nav_item{
    height: 100%;
}
.web_nav_item_list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
     height: 100%;
}
.web_nav_item_list .logo{
    width:30%;
    height: 100%;

          display: flex;
          align-items: center;
            justify-content: center;
         
}
.web_nav_item_list .logo a{

         display: flex;
          align-items: center;
              justify-content: center;
}
.web_nav_item_list .logo a img{
  width: 90%;  
  height: auto;
  object-fit:contain  ;
 
}
.logo_chick{
    width:20%;
       height: auto;
       display: flex;
       align-items: center;
        justify-content: center;
}
.logo_icon{
    color:#000;
    font-size:1.6rem !important;
}
  
.web_right_nav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 1.3rem;
}
.web_right_nav a {
    padding: 3%;
    text-decoration: none;
    font-size: 1rem;
    color: #000;
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.web_menu{
     display: flex;
     width: 100%;
     padding: 5% 0;
     margin-bottom: 5%;
     justify-content: space-between;
     align-items: center;
 }
.web_menu h5{
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}
.web_right_nav_guanbi{
    font-size: 1.2rem !important;
}
.web_menu_butt{
    font-size: 1rem;
    color: #000;
}
.web_right_content_ul_oneli{
    width: 100%;
}
.web_right_content_ul_oneli_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; 
}
.web_right_content_ul_oneli_list:hover {
 background-color: #B6CFED;
 color: #fff;
}
.web_right_content_ul_oneli_list a{
    width:90%;
}
.web_right_content_ul_oneli_list a:hover {
 color: #fff;
}
.web_right_content_ul_oneli_child {
    display: none; 
    margin-top: 5px; 
    width: 100%;
    border: 1px solid  rgb(128, 128, 128,0.2);
}
.web_right_content_ul_oneli_list span{
     font-size: 1rem;
     width: 10%;
}
.web_right_content_ul li a{
    font-size: 1.1rem;
}
.web_nav_item , .web_right_nav{
    display: block ;
}

/*.news-details*/
.news-details-content{
    width: 90%;
}
.news-details-content-left-title h2{
    font-size: 1.3rem;
}  
.news-details-content-right-title-ul-l-r a{
    font-size: 0.9rem;
}  
.news-details-content-left-time{
    font-size:1rem; 
}  
  
  
  
  
  
  
  
  
  
  
}

