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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            /*max-height: 890px;*/
            /*background-image: url('../images/ads2/banner/2.png');*/
            /*background-repeat: no-repeat;*/
            /*background-size: 100%;*/
            /*background-position: bottom;*/
            border-radius: 20px;
            margin: 10px 20px 20px 20px;
            overflow: hidden; 
            display: flex;
            align-items: center;
            /*margin-top:120px;*/
            height:auto;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /*background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.8) 100%);*/
            background:none; 
        }
        .hero-img{
            width:100%;
        }
        
        .hero-section img{
            width:100%; 
            border-radius: 15px;
        }

        .hero-content {
            position: absolute;
            top: 20%;
            left: 0;
            /*right: 0;*/
            /*bottom: 0;*/
            z-index: 2;
            color: white;
            padding: 60px;
            max-width: 1000px;
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            line-height: 4rem;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            
        }



        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background-color: #3b82f6;
            color: white;
        }

        .btn-primary:hover {
            background-color: #2563eb;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: #059669;
            color: white;
        }

        .btn-secondary:hover {
            background-color: #047857;
            transform: translateY(-2px);
        }

        /* Trust Signals Section */
        .trust-section {
			margin: 20px;
			border-radius: 15px;
            padding: 50px 10px;
            background-color: #f8fafc;
        }

        .container {
            
            margin:  auto 10%;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
            color: #1f2937;
        }

        .trust-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .world-map {
            position: relative;
            width:100%;
            border-radius: 15px;
            opacity: 1;
        }
        
        .world-map img{
            width: 100%;
            border-radius: 15px;
        }

        .map-dots {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .trust-section .testimonial-quote {
  font-style: italic;
  color: #444;
  line-height: 1.8;
  text-align: center;
  margin-top:30px;
}

        .dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: #3b82f6;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .dot:nth-child(1) { top: 30%; left: 20%; }
        .dot:nth-child(2) { top: 25%; left: 45%; }
        .dot:nth-child(3) { top: 40%; left: 55%; }
        .dot:nth-child(4) { top: 60%; left: 75%; }
        .dot:nth-child(5) { top: 70%; left: 85%; }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.7;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .certificates {
            display: flex;
            gap: 30px;
            justify-content: flex-start;
            align-items: center;
        }

        .certificate-item {
            width: 200px;
            background-color: white;
            border-radius: 12px;
            padding: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .certificate-item:hover {
            transform: translateY(-5px);
        }

        .certificate-image {
            width: 100%;
/*            height: 150px;*/
            /*background-color: #f1f5f9;*/
            border-radius: 8px;
            /*margin-bottom: 10px;*/
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }
		.certificate-image img{
			width: 100%;
		}

        .certificate-title {
            font-size: 14px;
            color: #374151;
        }

        /* Company Logos Section */
        .logos-section {
           padding-top: 40px;
            
        }

        .logos-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            opacity: 1;
        }

        .company-logo {
            width: 8%;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }

        .company-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        
        /* 外层容器：设置固定宽高 + 隐藏溢出 */
.scroll-container {
  width: 100%;       /* 或固定如 800px */
  /*height: 150px;*/
  overflow: hidden;  /* 关键：隐藏滚动出去的部分 */
  white-space: nowrap; /* 防止图片换行 */
  /*border: 2px solid #ccc;*/
  position: relative;
}

/* 滚动内容：包含所有图片，设置为一行排列 */
.scroll-content {
  display: flex; 
  width: 1400px;    
  animation: scroll-left 20s linear infinite; /* 关键：横向滚动动画 */
}


/* ✅ 核心动画：从右往左移动整组图片 */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* 关键点：移动 50%，即一半的宽度，因为图片被复制了一份 */
  }
}

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                padding: 40px;
            }

            .hero-title {
                font-size: 3rem;
            }

            .trust-content {
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .trust-section .testimonial-quote {
                    margin-top: 1rem;
            }
            .scroll-container {
                width: 60%; 
                
            }

            .logos-section{
                width: 40%;
                position: absolute;
                bottom: 25%;
                right:0;
            }
            .hero-section {
                border-radius: 15px;
            }

            .hero-content {
                padding: 0 20px;
            }

            .hero-title {
                font-size: 1rem;
               margin-bottom: 10px;
               line-height: 1.3rem;
            }

            .hero-subtitle {
                font-size: .8rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                width: 100%;
                padding: 18px;
            }

            .trust-section {
                padding: 50px 20px;
                position: relative;
            }

            .section-title {
                font-size: 2rem;
            }

            .trust-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .world-map {
                height: auto;
            }

            .certificates {
                flex-direction: row;
                overflow-x: auto;
                padding-bottom: 10px;
            }

            .certificate-item {
                min-width: 200px;
                flex-shrink: 0;
            }

            .logos-container {
                justify-content: center;
                gap: 5px;
            }

            .company-logo {
                width: 46%;
                margin-bottom: 1rem;
            }
            
            .hero-section .cta-buttons{
                display:none;
            }
            
           
        }

        @media (max-width: 480px) {
            .hero-section .cta-buttons{
                display:none;
            }
            .hero-title {
                font-size: 1rem;
                margin-bottom: 10px;
               line-height: 1.3rem;
            }

  

            .trust-section {
                padding: 40px 15px;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }


            .certificates {
                gap: 20px;
            }

            .certificate-item {
                max-width: 180px;
                padding: 10px;
            }

            .certificate-image {
                height: auto;
            }


        }
		
		


        /* Main Products Section */
        .products-section {
			margin: 20px; 
			border-radius: 15px;
            padding: 20px 0;
            background-color: #f8fafc;;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #1f2937;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .product-card {
            background-color: #e5e7eb;
            border-radius: 12px;
            padding: 10px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .product-image {
            width: 100%;
            /*height: 220px;*/
            border-radius: 8px;
            /*margin-bottom: 10px;*/
           
        }
		.product-card .productimg{
			width: 100%;
            height: 100%;
            border-radius: 8px;
		}

        .product-name {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #374151;
        }

        .quote-btn {
            background-color: #3b82f6;
            color: white;
            border: none;
            padding: 15px 20px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 100%;
        }

        .quote-btn:hover {
            background-color: #2563eb;
        }

        /* Why Choose Us Section */
        .why-choose-section {
            background-color: #3b82f6;
            color: white;
            padding: 80px 0;
			margin: 20px;
			border-radius: 15px;
        }

        .why-choose-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .factory-image {
            width: 100%;
            /*height: 300px;*/
            /*background-image: url('../images/ads2/1.png');*/
            /*background-size: cover;*/
            /*background-position: center;*/
            border-radius: 12px;
        }
        .factory-image img{
            width: 100%;
            border-radius: 10px;
        }

        .why-choose-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .why-choose-text p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .features-list {
            list-style: none;
        }

        .features-list li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1rem;
            background-image: url('../images/ads2/gou.png');
            background-size: 25px;
            background-repeat: no-repeat;
            background-position: left;
            padding-left: 35px;
        }

        /*.features-list li::before {
            content: "✓";
            background-color: white;
            color: #3b82f6;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-weight: bold;
        }*/

        /* Application Industries Section */
        .industries-section {
            padding: 80px 0;
  
			margin: 20px;
			    border-radius: 15px;

			    background-color: #f8fafc;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .industry-card {
            text-align: center;
            transition: transform 0.3s ease;
/*            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);*/
        }

        .industry-card:hover {
            transform: translateY(-5px);
        }

        .industry-image {
            width: 100%;
            height: auto;
            background-color: #f3f4f6;
            border-radius: 12px;
            margin-bottom: 20px;
            position: relative;
        }

        .industry-image img{
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }

        .industry-image p{
            font-size: 16px;
            text-align: left;
            padding: 20px;
            position: absolute;
            top:0;
            left: 0;
            bottom: 0;
            right: 0;
            background: rgba(59, 130, 246, .8);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            border-radius: 8px;
            cursor: pointer;
        }

        .industry-card:hover .industry-image p{
            opacity: 1;
        }

        .industry-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #374151;
            height: 4.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        

        /* Customer Testimonial Section */
        .testimonial-section {
            padding: 60px 0;
            background-color: #f8f9fa;
            text-align: center;
			margin: 20px;
			border-radius: 15px;
			
        }

        .testimonial-content {
            max-width: 600px;
            margin: 0 auto;
        }

        /*.customer-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background-color: #e5e7eb;
            margin: 0 auto 20px;
            background-image: url('https://goshanmachinery.com/wp-content/themes/mytheme/images/wai/Diego-Ramirez12.webp');
            background-size: cover;
            background-position: center;
        }

        .testimonial-quote {
            font-size: 1.5rem;
            font-style: italic;
            color: #374151;
            margin-bottom: 20px;
        }*/

        /* Testimonials section */


.testimonial-section h2 {
  font-size: 2.5rem;
  padding-bottom: 0;
  color: #1a1a1a;
  font-weight: 700;
}

.testimonial-section .testimonials-container {
  position: relative;
  overflow: hidden;
}

.testimonial-section .testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-section .testimonial-slide {
  min-width: 33.33%;
  padding: 0 15px;
}

.testimonial-section .testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
/*  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
  margin: 0 auto;
  max-width: 600px;
  display: flex;
}

.testimonial-section .testimonial-image {
 width: 100px;
  height: 100px;
   border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
}

.testimonial-section .testimonial-name {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.testimonial-section .testimonial-title {
  color: #666;
/*  margin-bottom: 20px;*/
  font-size: 1rem;
  padding-left: 10px;
}

.testimonial-section .testimonial-quote {
  font-style: italic;
  color: #444;
  line-height: 1.8;
  text-align: left;
  padding-left: 20px;
}
.zuozhe{
    /*display: flex;*/
    /*justify-content: flex-end;*/
    /*align-items: center;*/
    
    text-align:right;
}
/* Slider navigation */
.testimonial-section .slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-section .nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease;
}

.testimonial-section .nav-dot.active {
  background-color: #666;
}

.container-lunbo {
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.container-lunbo .content-lunbo-wrapper {
/*    display: flex;*/
    width: 6000px;
    padding-top: 10px;
    transition: transform 0.5s ease;
}

.container-lunbo .content-lunbo-block {
    width: 560px;
    margin: 20px;
    box-sizing: border-box;
    float: left;
}

.container-lunbo #prevBtn,
.container-lunbo #nextBtn {
    margin-top: 10px;
}

.product .dd-web{
  display: flex;
  width: 56%;
}

.product .dd-phone{
  display: none;
}
.button-fa{
  font-size: 1.2rem;
}

        /* Case Study Section */
        .case-study-section {
            padding: 80px 0;
            background-color: white;
			margin: 20px;
			border-radius: 15px;
			background-color: #f8fafc;
        }

        .case-study-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .case-study-image {
            width: 100%;
            height: auto;
            background-color: #f3f4f6;
            border-radius: 12px;
        }
		.case-study-image img{
			width: 100%;
            height: 100%;
            border-radius: 15px;
		}

        /* CTA Section */
        .cta-section {
            background-color: #1e3a8a;
            color: white;
            padding: 60px 0;
            text-align: center;
			margin: 20px;
			border-radius: 15px;
        }

        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-buttons-ban{
           justify-content: flex-start; 
        }

        .cta-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn-primary {
            background-color: #3b82f6;
            color: white;
        }

        .cta-btn-primary:hover {
            background-color: #EE8128;
            transform: translateY(-2px);
        }
        
        .cta-btn-primary2{
            background-color: #1e3a8a;
        }

        .cta-btn-secondary {
            color: #000;
            background: #fff url('../images/ads2/whatsapp.png') no-repeat 25px center;
            background-size: 30px;
            padding-left: 60px;

        }

        .cta-btn-secondary:hover {
            color: white;
            transform: translateY(-2px);
            background: #059669 url('../images/WhatsApp.png') no-repeat 25px center;
            background-size: 30px;
            padding-left: 60px;
        }

        .accordion {
          width: 100%;
          /*max-width: 600px;*/
          margin: 0 auto;
        }
        
        .accordion-item {
          margin-bottom: 5px;
        }
        
        .accordion-header {
          background-color: #f5f5f5;
          color: #333;
          padding: 10px 15px;
          cursor: pointer;
          border: 1px solid #ddd;
          margin: 0;
          font-weight: 700;
          font-size:1.2rem;
        }
        
        .accordion-header:hover {
          background-color: #e9e9e9;
        }
        
        .accordion-content {
          padding: 0;
          border: 1px solid #ddd;
          border-top: none;
          overflow: hidden;
          display: none;
        }
        
        .accordion-content p {
          padding: 15px;
          margin: 0;
          line-height: 30px;
        }
        

        /* Responsive Design */
        @media (max-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-choose-content {
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
                margin: 0;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 20px;
            }

            .products-section {
                padding: 20px 0;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0;
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
            }

            .product-card {
                width: 48%;
                padding: 10px;
                margin-bottom: 4%;
            }

            .product-image {
                height: auto;
            }

            .why-choose-section {
                padding: 50px 0;
            }

            .why-choose-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .factory-image {
                height: 250px;
            }

            .why-choose-text h2 {
                font-size: 1.8rem;
            }

            .industries-section {
                padding: 50px 0;
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0;
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
            }
            
            .industry-card {
                width: 48%;
                margin-bottom: 4%;
            }

            .industry-name {
                font-size: 1.1rem;
            }

            .testimonial-section {
                padding: 40px 0;
            }

            .testimonial-quote {
                font-size: .8rem;
            }

            .case-study-section {
                padding: 30px 0;
            }

            .case-study-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .case-study-image {
                height: 250px;
            }

            .cta-section {
                padding: 40px 0 20px 0;
            }

            .cta-title {
                font-size: 1.8rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-btn {
                width: 100%;
                max-width: 300px;
            }
            
            .container-lunbo .content-lunbo-block{
                width: 320px;
            }
            
             .testimonial-section .testimonial-card{
                padding:10px;
                display:block;
            }
            .industry-name{
                align-items: flex-start;
            }
            .industry-image{
                margin-bottom: 0;
            }
            .form-container{
                display:none;
            }
            .contact-page{
                padding: 0 10px 30px 10px;
            }
            .industry-card:hover .industry-image p{
                opacity: 0;
                /*display: none;*/
            }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
            }

            .industries-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .why-choose-text h2 {
                font-size: 1.6rem;
            }

            .cta-title {
                font-size: 1.6rem;
            }

    
        }			