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




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

.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: 3; /* 限制显示3行 */
  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-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;
  }
  

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





