
/* 导航栏轮播开始*/

   /* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    padding-top: 80px; /* 为顶部工具栏留出空间 */
    overflow-x: hidden;
}

/* 顶部黑色工具栏 */
.top-toolbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #373a4b;
    color: white;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 5%;
    z-index: 1001;
}


/* 语言选择器 */
.language-selector {
    position: relative;
    margin-left: 20px;
}

.language-selector button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.language-selector button::after {
    content: "▾";
    margin-left: 5px;
    font-size: 12px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1002;
}

.language-dropdown a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.language-dropdown a:hover {
    background-color: #f5f5f5;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
}

/* 主导航栏 */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    width: 90%;

}

.nav-logo {
    width: 15%;
    text-align: center;
  
}

.nav-logo img {
    width: 59px;
}

.nav-links {
    display: flex;
    list-style: none;
    flex-grow: 1;
    justify-content: left;
  
}

.nav-links > li {
    margin: 0 3%;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;

    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding: 10px 0;
    display: block;
}

.nav-links a:hover {
    color: #4baa3c;
}

/* 下拉菜单样式 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown-menu li {
    padding: 0;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu a {
    padding: 12px 20px;
    text-transform: none;
    font-weight: normal;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
}

.nav-links > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
	list-style: none;
}

/* 下拉指示器 */
.has-dropdown > a::after {
    content: "▾";
    margin-left: 5px;
    font-size: 12px;
}

.get-oracle {
   
    background-color: #4baa3c;
    color: white;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    text-decoration: none;
	margin:0 5% 0px 0px;
	height:48px;
	width:150px;
}



.get-oracle:hover  {
    opacity: 0.8;
	
}
.get-oracle:hover  .arrow-jtbz{
 
	 transform: translateX(10px);
}

/* 移动端联系人信息 */
.mobile-contact-info {
    display: none;
    text-align: center;
    padding: 15px;
    background: #f5f5f5;
    width: 100%;
}

.mobile-contact-info p {
    margin: 5px 0;
    color: #333;
    font-size: 14px;
}

.mobile-contact-info img {
    vertical-align: middle;
    margin-right: 5px;
}

/* 移动端按钮 */
.mobile-get-oracle {
    display: none;
    padding: 10px 20px;
    background-color: #4baa3c;
    color: white;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    margin: 10px auto;
    width: 80%;
}

/* 汉堡菜单按钮 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 10px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .nav-links > li {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: auto;
        flex-wrap: wrap;
  margin:-40px 0px 0px 0px;
    }
    
	
	
	
	#searchid{
		display:none;
		
		}
		
	
	
    .nav-container {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-logo {
        width: auto;
        border-right: none;
        margin-bottom: 10px;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        left: 20px;
        top: 10px;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-left: 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links > li {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        width: 100%;
        display: none;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .has-dropdown > a::after {
        content: "+";
        float: right;
    }
    
    .has-dropdown.active > a::after {
        content: "-";
    }
    
    .get-oracle {
        display: none;
    }
    
    .mobile-get-oracle {
        display: block;
    }
    
    .mobile-contact-info {
        display: none;
    }
    
    /* 顶部工具栏调整 */
    .top-toolbar {
		display:none;
    }
    
    .top-toolbar > div {
        display: none;
    }
    
    .top-toolbar img:not(.language-selector img) {
        display: none;
    }
    
    .language-selector {
        margin-left: 0;
    }
}



 .arrow-container-jtbz {
            display: inline-block;
     
            cursor: pointer;
            transition: transform 0.3s ease;
			position:absolute;
        }
        
        /* 纯CSS箭头样式（可被图片替换） */
        .arrow-jtbz {
            width: 40px;
            height: 20px;
            position: relative;
            /* 如果用图片替换，删除以下内容 */
			background:url(../img2/jt.png);	
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
			margin:13px 0px 0px 110px;
        }
        
        /* 如果用图片替换，使用这个样式 */
        /*
        .arrow-jtbz {
            width: 40px;
            height: 20px;
            background-image: url('your-image.png');
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
        }
        */














/* 轮播样式保持不变 */
.carousel-container {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;

}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: url('../img2/lb1.png') no-repeat center center/cover;
    color: white;
    opacity: 0;
    transition: opacity 1s ease-in-out;

}

.carousel-slide.active {
    opacity: 1;
}

.slide-content {

    width: 40%;
    padding: 0 100px;
    transform: translateY(-50px);
    text-align: left;
}

.slide-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease 0.2s;
}

.slide-description {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease 0.4s;
}

.slide-button {
    display: inline-block;
    padding: 20px 30px;
    background-color: #4baa3c;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0;

    transition: all 0.8s ease 0.6s;
	height:60px;
line-height: normal;
vertical-align: middle;
	
	
	
	
}

.slide-button:hover {
    opacity: 0.4;
}

.active .slide-subtitle,
.active .slide-title,
.active .slide-description,
.active .slide-button {
    opacity: 1;
    transform: translateY(0);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-button {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* 小屏幕轮播调整 */
@media (max-width: 768px) {
    .slide-content {
        padding: 0 20px;
		    width: 100%;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


@media (min-width: 1025px) {
    #getaquote {
        display: none !important;
    }
}

@media (max-width: 1025px) {
    #getaquote {
		color:#FFF;
    }
}
			
/* 导航栏轮播结束*/
		

/*公司介绍开始*/
		
 
    .container {
        padding: 0 20px;
        background: rgb(238,238,238);
    }
    
    .header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .header h1 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .header p {
        font-size: 16px;
        color: #666;
    }
    
    .content-section {
        display: flex;
        gap: 20px;
    }
    
    .numbers-column {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .stat-item {
        margin-bottom: 40px;
    }
    
    .stat-number {
        font-size: 48px;
        font-weight: 700;
        color: #4baa3c;
        margin-bottom: 5px;
    }
    
    .stat-number sup {
        font-size: 0.6em;
        vertical-align: super;
        margin-left: 2px;
    }
    
    .stat-label {
        font-size: 16px;
        color: #666;
    }
    
    .image-column {
        flex: 1.5;
        display: flex;
        align-items: center;
        justify-content: center;
       
    }
	
	


 .image-column:hover {
            opacity: 0.5;
        }
		
	
    
    .image-placeholder {
        color: #999;
        text-align: center;
        padding: 20px;
    }
    
    .text-column {
        flex: 1;
    }
    
    .section-title {
        font-size: 24px;
        font-weight: 700;
        color: #4baa3c;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .content-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .learn-more-btn {
        display: inline-block;
        padding: 15px 25px;
        background-color: #4baa3c;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.3s ease;
		height:50px;
    }
    
    .learn-more-btn:hover {
        opacity: 0.5;
    }

    /* 仅添加手机端响应式样式 */
    @media (max-width: 768px) {
        .header p {
            width: 90% !important;
            text-align: center !important;
            margin: 0 auto;
        }
        
        .content-section {
            flex-direction: column;
        }
        
        .numbers-column {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .stat-item {
            flex: 0 0 calc(50% - 20px);
            margin-bottom: 20px;
        }
        
        .image-column {
            min-height: auto;
            width: 100% !important;
            order: -1;
            margin-bottom: 30px;
        }
        
        .image-placeholder img {
            max-width: 100%;
            height: auto;
        }
        
        .text-column {
            width: 100% !important;
        }
		
		
		
		
		
		

	

		
		
    }
	
	
	
	
	    @media (min-width: 1010px) {
		
	.content-section {
	text-align:left;
	padding:0 50px;
	
	}
    	
		
		}
    
    @media (max-width: 480px) {
        .stat-item {
            flex: 0 0 100%;
        }
        
        .header p {
            font-size: 14px;
        }
        
        .header p font {
            font-size: 1em !important;
        }
        
        .stat-number {
            font-size: 36px;
        }
        
        .stat-label {
            font-size: 14px;
        }
        
        .section-title {
            font-size: 20px;
        }
        
        .content-text {
            font-size: 14px;
        }
    }

/*公司介绍结束*/		
		
			
/*产品页开始*/


      .container1 {
           
     
            padding: 0 50px;
			background:rgb(238,238,238);
        }
  
        .header1 {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
           
            padding-bottom: 20px;
        }
        
        .title {
            font-size: 32px;
            font-weight: bold;
            line-height: 1.2;
        }
        
        .more-link {
            font-size: 14px;
            color: #666;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 30%);
            gap: 5%;
			
        }
        
        .product-card {
		
           
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .product-image {
		

            background-color: #e0e0e0;
            display: block; 
            align-items: center;
            justify-content: center;
            color: #999;

        }
        
        .product-label {
            padding: 15px 40px 15px 15px; /* 右侧增加内边距给箭头留空间 */
            text-align: left;
            background-color: #f0f0f0;
            transition: all 0.3s ease;
            border-radius: 0 0 10px 10px;
            position: relative;
			margin-top:-80px;
        }
		
		
				@media (min-width: 1010px) {

	 .product-label {
	 height:70px;
	 
	 
	 }
	 
	 
	 
	 #searchphoneid {
		 
		 
		 display:none;
		 }
	 
	 
	 
	 
	 
	 
	 
	 
		
	}	
			
		
        
        .product-card:hover .product-label {
            background-color: rgba(75, 186, 60, 0.8);
            color: white;
        }
		
	       .product-card:hover .product-label  P{
           
            color: white;
        }
        
        .product-name {
       
            margin: 10px;
            position: relative;
            display: block;
			
        }
        
        /* 添加箭头样式 - 固定在右侧 */
        .product-label::after {
               content: url("../img2/hsjt.png"); 
            position: absolute;
            right: 20px;
            top: 50%;
           transform: translateY(-50%) rotate(-45deg);
            transition: all 0.5s ease;
        }
        
        .product-card:hover .product-label::after {
            right: 50px; /* 悬停时向左移动 */
			font-size:25px;
			   content: url("../img/jt2.png"); 
        }
		
		    @media (max-width: 768px) {
			
			
			     .product-grid {
       
            grid-template-columns: repeat(1, 100%);
			margin-bottom:20px;
         
			
        }
			
 
    }
		
		/*产品页结束*/		
		
	/*开始友情链接*/
	 .carousel-container1 {

	 padding: 0 20px 30px 0px;
      position: relative;
      overflow: hidden;
      width: 90%;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.6s ease;
      will-change: transform;
    }

    .carousel-item {
      flex: 0 0 12.5%; /* 100% / 8 logos */
      padding: 10px;
      box-sizing: border-box;
    }

    .carousel-item img {
      max-width: 100%;
      max-height: 60px;
      filter: grayscale(100%);
      display: block;
      margin: 0 auto;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.8);
      border: none;
      font-size: 24px;
      cursor: pointer;
      z-index: 2;
      padding: 5px 10px;
    }

    .carousel-btn.left {
      left: 0;
    }

    .carousel-btn.right {
      right: 0;
    }

    @media (max-width: 768px) {
      .carousel-item {
        flex: 0 0 25%;
      }
    }

    @media (max-width: 480px) {
      .carousel-item {
        flex: 0 0 50%;
      }
    }
	<!--结束友情链接-->	
		
		<!--小轮播开始-->
		
		
		.carousel-container2 {
    position: relative;
    width: 100%;
    overflow: hidden;
}
		
	
   .slideshow-wrapper {
          
            margin: 50px auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
         
        }
        
        .slideshow-images {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
          
        }
        
        .slideshow-image {
            min-width: 100%;
            position: relative;
        }
        
        .slideshow-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slideshow-description {
            position: absolute;
            bottom: 60px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            padding: 20px;
            /*background: linear-gradient(transparent, rgba(0,0,0,0.7));*/
        }
        
        .slideshow-controls {
		
            position: absolute;
            bottom: 90px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            box-sizing: border-box;
            z-index: 10;
        }
        
        .slideshow-button {
            background-color: rgba(255,255,255,0.2);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .slideshow-button:hover {
            background-color: rgba(255,255,255,0.4);
            transform: translateY(-2px);
        }
        
        .slideshow-button.previous::before {
            content: "PREV ←";
            margin-right: 5px;
        }
        
        .slideshow-button.next::after {
            content: "→ NEXT";
            margin-left: 5px;
        }
        
        .slideshow-markers {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .marker {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .marker.current {
            background-color: white;
            transform: scale(1.2);
        }
        
  	
		
		
		
	@media (max-width: 768px) {
	
	
			
		
		.carousel-container2 {
    position: relative;
    width: 100%;
	height:200px;
    overflow: hidden;
}
	
    .slideshow-wrapper {
        height: 200px;
    }
    
    .slideshow-button {
        padding: 10px 15px;
        font-size: 14px;
		z-index:99999;
    }
	
	
	
    
    /* 新增的移动端按钮位置调整 */
    .slideshow-controls {
        position: static; /* 取消绝对定位 */
        margin-top:-40px;
        justify-content: center;
        gap: 20px;
        padding: 0;
    }
    
    .slideshow-markers {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 10px;
        padding-bottom: 20px;
    }
    
    /* 调整描述文字位置 */
    .slideshow-description {
        bottom: 20px;
    }
}	
		
		
		
		
		
		
		
		
		
		
		
		<!--小轮播结束-->
		
		
		<!--show project开始-->
		
	   .main-container {

            margin: 0 auto;
        }
        
        .top-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 30px;
        }
        
        .main-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .secondary-title {
          font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
        }
        
        .slider-controls {
            display: flex;
            gap: 10px;
			margin-right:35px;
        }
        
        .slider-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #4baa3c;
            color: white;
            border: none;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .slider-btn:hover {
          
            transform: scale(1.1);
			opacity: 0.5;
        }
        
        .slider-wrapper {
            position: relative;
            width: 99%;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .slider-items {
            display: flex;
            transition: transform 0.5s ease;
            gap: 40px;
            padding: 10px 0;
			
        }
        
        .slider-card {
            min-width: 32%;
            background: white;
            border-radius: 10px;
            overflow: hidden;
           /* box-shadow: 0 4px 8px rgba(0,0,0,0.1);
*/        }
        
        .card-image {
     
            /*background-color: #e0e0e0;*/
            border-radius: 10px 10px 0 0;
        }
        
        .card-content {
            padding: 20px;
        }
        
        .item-title {
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .item-description {
            color: #666;
            font-size: 14px;
        }
        
        .bottom-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .see-all-link {
            color: #4baa3c;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
			width: 30%;
  text-align: right;
  margin-right:50px;
        }
        
        .see-all-link:hover {
            color: #3a8dd8;
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .slider-card {
                min-width: 80%;
            }
            
            .top-section {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		<!--show projedt结束-->
		
		
		
		
		
		
		
		
		<!--Advantage开始-->
		
		   .page-header {
            margin-top: 0px;
        }
        
        .page-header .subheading {
            font-size: 24px;
            font-weight: normal;
            margin-bottom: 10px;
        }
        
        .page-header .main-heading {
            font-size: 48px;
            font-weight: bold;
            margin: 0;
        }
        
        .benefits-grid {
            display: flex;      
            position: relative;
            min-height: 1200px;
        }
        
        .benefit-column {
            width: 22%;
            margin-right: 4%;
            position: absolute;
        }
        
        /* First row - columns 1-4 */
        .benefit-column:nth-child(1) {
            top: 0;
            left: 0;
        }
        
        .benefit-column:nth-child(2) {
            top: 200px;
            left: 26%;
        }
        
        .benefit-column:nth-child(3) {
            top: 400px;
            left: 52%;
        }
        
        .benefit-column:nth-child(4) {
            top: 400px;
            left: 78%;
        }
        
        /* Second row - columns 5-7 (after 5 empty rows) */
        .benefit-column:nth-child(5) {
            top: 900px;
            left: 26%;
        }
        
        .benefit-column:nth-child(6) {
            top: 900px;
            left: 52%;
        }
        
        .benefit-column:nth-child(7) {
            top: 900px;
            left: 78%;
        }
        
        .benefit-card {
            margin-bottom: 60px;
        }
        
        .card-number {
            font-size: 36px;
            font-weight: bold;
            color: #4baa3c;
            margin-bottom: 10px;
        }
        
        .card-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .card-description {
            color: #666;
            font-size: 16px;
        }
        
        @media (max-width: 1200px) {
            .benefits-grid {
                min-height: auto;
                display: block;
            }
            
            .benefit-column {
                position: static;
                width: 100%;
                margin-bottom: 60px;
            }
            
            .benefit-card {
                margin-bottom: 40px;
            }
        }
		
		
		
		
		
	@media (max-width: 1020px) {
    .benefits-grid {
        min-height: auto;
        display: block;
    }
    
    .benefit-column {
        position: static;
        width: 100%;
        margin-right: 0;
        margin-bottom: 60px;
    }
    
    .benefit-card {
        margin-bottom: 40px;
    }
    
    /* 新增的移动端调整 */
    .carousel-container {
        padding: 0 20px 60px 20px !important; /* 减少两侧padding */
        background-size: cover !important; /* 确保背景图适配 */
		min-height: 500px;
		margin:-40px 0px 0px 0px;
    }
    
    .page-header {
        margin-top: 80px !important; /* 调整顶部间距 */
    }
    
    .benefits-grid {
        margin-top: 80px !important; /* 调整网格顶部间距 */
    }
    
    .main-heading {
        font-size: 36px !important; /* 调整标题大小 */
    }
    
    /* 移除所有行内样式的影响 */
    .benefit-column[style] {
        margin-top: 0 !important;
    }
}	
		
		
		
		
		
		
		
		
		
		
		
		
				<!--Advantage结束-->
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				<!--开始相册->
				
		 .gallery-container {
            display: flex;
            width: 70%;
            height: 100%;
        }
        
        .left-column {
            width: 60%;
            display: grid;
            grid-template-columns: repeat(1, 80%);
		
			
        }
        
        .right-column {
            width: 30%;
       
            display: flex;
            flex-direction: column;
            justify-content: center;
			
			
        }
        
        .gallery-item {
            width: 100%;  
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;

            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .gallery-item img:hover {
            transform: scale(1.1);
        }
        
        .title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .description {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.5;
        }
        
        .contact-btn {
            padding: 12px 30px;
            background-color: #4baa3c;
            color: white;
            border: none;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: fit-content;
			border-radius: 4px;
        }
        
        .contact-btn:hover {
            background-color: #4baa3c;
			   opacity: 0.8;
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 100;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            max-width: 80%;
            max-height: 80%;
        }
        
        .close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            cursor: pointer;
        }
				
				
				
	@media (min-width: 1020px) {
	
	.right-column {
	 margin-left:61%; 
	margin-top:-230px; color:#fff;
	color:#fff; text-align:left;
	
		}
	
	
	
		
 #xcid{
	 
	 padding:40px 50px 100px 200px; background:rgb(48,51,68); min-height:300px; text-align:center; width:100%;
	 
	 }

				
	}
	
	@media (max-width: 1020px) {
	
	.left-column{
	width:100%;
	}
	
	.right-column {
	
		width:100%;
	}
	

     #xcid{
	 

	margin:40px 0px 0px 0px;
	 
	 }
	 
	 #xctpid {
		 
		 
	margin:40px 0px 0px 100px;
		 
		 }

    

}	
	
	
	
	
	
	
	
	
	
	
				
				<!--结束相册-->
				
				
				
				
	<!--开始appin-->
	
	   /* Base Styles */
    .tent-app-body {

        margin: 0;
        padding: 20px;
        margin: 0 auto;
        background-color: #f9f9f9;
    }
    
    /* Header Section */
    .tent-app-header {
        display: flex;
	
        justify-content: space-between;
        align-items: right;
        margin-bottom: 40px;
        padding-bottom: 15px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .tent-app-main-title {
        font-size: 32px;
        font-weight: 700;
        color: #333;
        margin: 0;
    }
    
    .tent-app-view-more {
        color: #6ab04c;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: color 0.3s;
    }
    
    .tent-app-view-more:hover {
        color: #4a8b2d;
    }
    
    /* Product Grid Section */
    .tent-app-product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 70px;
        margin:50px;
    }
    
    .tent-app-product-card {
        border-radius: 25px;
        overflow: hidden;
        position: relative;
       
       
        transition: transform 0.3s;
    }
    
    .tent-app-product-card:hover {
        transform: translateY(-5px);
    }
    
    .tent-app-product-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
    }
    
    /* Modified Product Description Style */
    .tent-app-product-desc {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.2);
        color: white;
        padding: 15px;
	
        transition: all 0.4s ease;

        flex-direction: column;
		height:70px;
    }
    
    /* First two product cards specific styles */
    section.tent-app-product-grid:first-of-type .tent-app-product-desc {
        height: 70%; /* Larger height for first two products */
    }
    
    /* Arrow container */
    .tent-app-desc-arrow-container {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
       /* height: 30%;*/
	   min-height:50px;
        padding-top: 5px;
    }
    
    /* Diagonal arrow style - initially hidden */
    .tent-app-desc-arrow {
        display: none; /* Initially hidden */
        font-size: 22px;
        color: white;
        transform: rotate(-45deg); /* Points to top-right */
        transition: all 0.3s ease;
	
    }
    
    .tent-app-product-card:hover .tent-app-product-img {
        background-color: rgba(106, 176, 76, 0.5);
    }
    
    .tent-app-product-card:hover .tent-app-product-desc {
        background-color: rgba(75, 170, 60, 0.7);
    }
    
    .tent-app-product-desc::after {
        content: attr(data-hover-text);
        display: none;
        font-size: 15px;
        line-height: 1.5;
		margin-top: -50px;
	
    }
    
    .tent-app-product-card:hover .tent-app-product-desc::after {
        display: block;
    }
    
    .tent-app-product-card:hover .tent-app-product-desc p {
        display: none;
    }
    
    /* Show arrow on hover */
    .tent-app-product-card:hover .tent-app-desc-arrow {
        display: inline-block; /* Show on hover */
        transform: rotate(-45deg); /* Keep pointing to top-right */
        color: #fff;
    }
    
    /* Content Sections */
    .tent-app-content-block {
        display: flex;
        padding:50px;
        gap: 30px;
        align-items: center;
    }
    
    .tent-app-text-block {
        flex: 0 0 30%;
        padding: 15px;
    }
    
    .tent-app-image-block {
        border-radius: 12px;
        overflow: hidden;
       /* height: 400px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);*/
		width:100%;
    }
    
    .tent-app-image-block img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
	
	        .tent-app-image-block:hover {
            opacity: 0.5;
        }
		
	
	
	
	
	
    .tent-app-section-title {
        font-size: 26px;
        margin-bottom: 20px;
        color: #000000;
    }
    
    .tent-app-section-text {
        color: #000000;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .tent-app-arrow {
        display: inline-block;
        margin-top: 10px;
        font-size: 22px;
        color: #6ab04c;
        transition: transform 0.3s ease;
        cursor: pointer;
    }
    
    .tent-app-arrow:hover {
        transform: rotate(-45deg); /* Points to top-right */
        color: #4a8b2d;
    }
    
    /* Alternate Layout */
    .tent-app-content-block.reverse {
        flex-direction: row-reverse;
    }
    
    /* Mobile Styles */
    @media (max-width: 768px) {
        .tent-app-product-grid {
            grid-template-columns: 1fr; /* Single column layout */
            margin: 20px 15px; /* Adjusted margins */
            gap: 15px;
        }
        
        .tent-app-product-card {
            height: 300px; /* Adjusted height */
        }
        
        .tent-app-content-block {
            flex-direction: column; /* Vertical layout */
            padding: 20px 15px; /* Adjusted padding */
            gap: 20px;
        }
        
        .tent-app-text-block, 
        .tent-app-text-block[style] {
            width: 100% !important; /* Force full width */
            flex: none !important;
            padding: 0;
        }
        
        .tent-app-image-block, 
        .tent-app-image-block[style] {
            width: 100% !important; /* Force full width */
            height: 250px; /* Adjusted height */
        }
        
        .tent-app-content-block.reverse {
            flex-direction: column; /* Override reverse style */
        }
        
        .tent-app-section-title {
            font-size: 22px; /* Adjusted title size */
        }
        
        .tent-app-section-text {
            font-size: 15px; /* Adjusted text size */
        }
		
		
		
		
			mobile-contact-info{
			display:none;
			
			
			}
			
	
		
		
		
		
		
		
		
		
    }
		
		
		
		
		<!--结束APP IN -->	
		
		
		<!--联系我们开始-->
		.superb-contact-page {
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
            background-color: #000;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 500px;
        }

        .superb-contact-wrapper {
            width: 100%;
            max-width:1000px;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .superb-logo {
            font-size: 42px;
            font-weight: bold;
  
            letter-spacing: 2px;
        }

        .superb-phone-container {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .superb-phone-symbol {
            font-size: 24px;
            margin-right: 15px;
            color: #4baa3c;
        }

        .superb-phone-list {
            display: flex;
            flex-direction: column;
        }

        .superb-phone-item {
            font-size: 22px;
           
  
			color:#4baa3c;
        }

        .superb-email {
            font-size: 22px;
         
            color: #4baa3c;
        }

        .superb-address {
            font-size: 22px;
			color:#FFFFFF;
            text-align: center;
     
            /*max-width: 300px;*/
        }

        .superb-social-links {
            display: flex;
            justify-content: center;
          
            gap: 15px;
        }

        .superb-social-icon {
            font-size: 24px;
            color: #fff;
            transition: color 0.3s;
        }

        .superb-social-icon:hover {
            color: #4baa3c;
        }

        .superb-certifications {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;

        }

        .superb-certification-logo {
            height: 30px;
			margin-top:15px;
   
            transition: opacity 0.3s;
		
        }

        .superb-certification-logo:hover {
            opacity: 0.5;
        }
		
		
		
		
		
	   .superb-social-links {
            display: flex;
            gap: 10px;
			
      
        }
        
        .superb-social-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            position: relative;
            text-decoration: none;
        }
        
        .superb-social-icon img {
            width: 75%;
            height: 75%;
            object-fit: contain;
            transition: opacity 0.1s ease;
        }
        
        .superb-social-icon i {
            display: none; /* 隐藏Font Awesome图标，我们使用图片 */
        }

		
		<!--联系我们结束-->		
				
				
				
				
				
		<!--微调-->	
			@media (max-width: 1010px) {




		#headerproduct	  {
  max-height: 200vh;         /* 最大高度为屏幕80% */
  overflow-y: auto;         /* 内容超出时允许滚动 */
  position: relative;       /* 确保定位正常 */
  z-index: 9999;            /* 保证在最上层，不被遮挡 */
}	
	

		
	}	
		



.form-control {
	width: 80%;
	height: 40px;
	padding: 8px 12px;
	font-size: 10px;
	color: #cccccc;
	background-color: #ffffff;
	background-image: none;
	border: 1px solid #cccccc;
	border-radius: 2px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	-webkit-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
	display: block;
}

.form-control:focus {
	border-color: #bbc46a;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);
}

.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control {
	cursor: not-allowed;
	background-color: #eeeeee;
}

textarea.form-control {
	height: auto;
}

.form-group {
	margin-bottom: 15px;
}
		
				
		/*CSS HERDER PROCUCT START*/
		    @media (min-width: 1024px) {
				
				
			
				
				
				
				
		#headerproduct	 {
min-width: 980px;
margin: 12px 0px 0px -400px;
  display: flex;
      flex-wrap: wrap;        /* 超过三项换行 */

}		
		
		
		
	
		
		
		#headerproduct li {
    flex: 0 0 33.33%;       /* 每个 li 占一行的三分之一 */
      box-sizing: border-box;
      text-align: left;
      padding: 10px;
	  border-bottom: none; 
   
}	



  #headerproduct li:nth-child(1) {
      flex: 0 0 66%;
    }
   #headerproduct li:nth-child(2) {
      flex: 0 0 34%;
    }


   #headerproductlj a:hover {
    background-color: #00000;
}
	
	
	   #headerprobtn {
      display: inline-block;
      padding: 10px 20px;
      background-color: #fff;       /* 中间白色 */
      color: #4CAF50;               /* 文字绿色 */
      border: 2px solid #4CAF50;    /* 绿色边框 */
      border-radius: 25px;          /* 圆角半径 */
      cursor: pointer;              /* 鼠标小手 */
      font-size: 16px;
      transition: all 0.3s;         /* 动画过渡 */
    }
	
	
	
	 #headerprobtn:hover {
      background-color: #4CAF50;    /* 悬停时背景变绿 */
      color: #fff;                  /* 文字变白 */
    }
	
	
	
	
		
			
				
			}
			/*CSS HERDER PROCUCT STOP*/	
				
			
			
			
			
			
			
			
				
				
		@media (max-width: 768px) {
			
		#yqljid2  {margin:330px 0px 0px 0px;}		
			
			    .navbar {
        max-height: 600px;   /* 占满屏幕 */
        overflow-y: auto;    /* 超出时可上下滚动 */
		 overflow-x: hidden;      
		     -webkit-overflow-scrolling: touch; /* iOS 平滑滚动 */
    box-sizing: border-box;
		
    }
			
			
			

    .has-dropdown.active .dropdown-menu {
        display: block;
    }
	
	
	
	
	
	#headerproductlj {
		display:none;
		
		
		}
		
		
		
		
		
		#xlbidhao   {
			min-height:250px;
			
			}
		
		
		
		
		
}
		