﻿  
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .slider-container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease;
            height: 270px;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 15px;
            cursor: pointer;
            z-index: 10;
        }
        
        .prev {
            left: 10px;
        }
        
        .next {
            right: 10px;
        }
        
        .dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            margin: 0 5px;
            cursor: pointer;
        }
        
        .dot.active {
            background: white;
        }
		
		
		
		
		
		
		
		
		
		
	body {

    max-width: 650px;
    width: 100%;
    margin: auto;
	
		}	
		
		
		
		
		
		
		
		
		
		
		 
        .container {
        
            margin: 0 auto;
            padding: 10px;    margin-bottom: 20px;
        }
        
        .products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }
        
        .product-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .product-info {
            padding: 15px;
        }
        
        .product-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .product-desc {
            color: #7a6a62;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .product-price {
            font-weight: bold;
            color: #b38b6d;
            font-size: 1.1rem;
        }
        
        footer {
            text-align: center;
            padding: 20px;
            background-color: #d4b483;
            margin-top: 40px;
        }
        
        @media (max-width: 768px) {
            .products {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .products {
                grid-template-columns: 1fr;
            }
        }
		  .header1 {
            background-color: #d4b483;
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
		
		
		
	
	
	
	
	 .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background-color: #f8f8f8;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);position: sticky;
    top: 0;
    z-index: 999999;
        }
        .company-name {
            font-size: 20px;
            font-weight: bold;
        }
        .menu-icon {
            cursor: pointer;
            font-size: 24px;
        }
		.uuystt{
			    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
		}
        .nav-menu {
            display: none;
            list-style: none;
            padding: 0;
            margin: 0;
            background-color: #f8f8f8;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
			position: sticky;
    top: 62px;
    z-index: 99999999;
        }
        .nav-menu li {
            padding: 15px 10px;
            border-bottom: 1px solid #e0e0e0;
            cursor: pointer;
			
        }
        .nav-menu li:hover {
            background-color: #e9e9e9;
        }
        .content-section {
            height: 500px;
            padding: 20px;
            border-bottom: 1px solid #ccc;
        }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
.header33 {
    text-align: center;
    margin-bottom: 0px;
	margin-top: 0px;
    padding: 25px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
   /* border-radius: 12px;*/
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.containerui {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;    margin-top: 20px;    margin-bottom: 20px;
}

.sectioniu {
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8f4ff;
    position: relative;
    overflow: hidden;
}

.sectioniu:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.sectioniu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4facfe, #00f2fe);
}

.titleiu {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #e0e0e0;
}

.contentiu {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contentiu strong {
    color: #4facfe;
    font-weight: 600;
}

	
	
	
	
	
	
	
	
	
	
	
    .containeruipp {
            max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
    background: #fff;
    border-radius: 20px;
  /*  box-shadow: 0 15px 35px rgba(0,0,0,0.1);*/
    display: flex;
    flex-wrap: wrap;
        }

        /* 流程块样式 */
        .process-block {
            position: relative;
            padding: 40px 30px;
            margin-bottom: 30px;
            background: #f9f9f9;
            border-radius: 15px;
            box-shadow: 0 3px 5px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s ease;
        }
        .process-block:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
    
        .process-block:last-child::after {
            display: none;
        }

        /* 第一个流程块特殊处理，去除左侧线条 */
        .process-block:first-child::before {
            display: none;
        }

        /* 图标容器 */
        .icon-container {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);
        }
        .icon-container i {
            font-size: 48px;
            color: white;
        }

        /* 标题和内容 */
        .process-block h3 {
            font-size: 1.6rem;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .process-block p {
            color: #7f8c8d;
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 0;
        }

        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .process-block {
            animation: fadeIn 0.8s ease-in-out forwards;
            opacity: 0;
            transform: translateY(20px);
        }
        .process-block:nth-child(1) { animation-delay: 0.2s; }
        .process-block:nth-child(2) { animation-delay: 0.4s; }
        .process-block:nth-child(3) { animation-delay: 0.6s; }
        .process-block:nth-child(4) { animation-delay: 0.8s; }

        /* 响应式布局 */
        @media (max-width: 768px) {
            .process-block {
                margin-bottom: 20px;
            }
            .process-block::after {
                right: -20px;
                width: 40px;
            }
        }
        @media (max-width: 576px) {
            .process-block {
                  padding: 1%;
    width: 46%;
    margin: 2%;
            }
            .icon-container {
                width: 80px;
                height: 80px;
            }
            .icon-container i {
                font-size: 40px;
            }
            .process-block h3 {
                font-size: 1.4rem;
            }
            .process-block p {
                font-size: 0.8rem;
            }
        }	
	
	








        .containerrbh {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
        }
        .box {
            width: 30%;
            padding: 10px;
            text-align: center;
            margin: 5px;
            border: 1px solid #ccc; /* 添加边框以便更清晰地看到每个盒子 */
        }
        .button {
            width: 100%;
            max-width: 300px; /* 限制按钮最大宽度，以适应不同屏幕 */
            padding: 10px;
            background-color: red;
            color: white;
            border: none;
            cursor: pointer;
            margin: 20px auto; /* 按钮居中并添加上下边距 */
        }



		
		
		
		  .floating-div {
position: fixed;
    bottom: 5px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 41%);
    background-color: #ffffffcc;
    width: 96%;
    margin: 2%;border-radius: 8px;    z-index: 9999999;    max-width: 500px;
   
  }
  .floating-div img {
    width: 50px;
    height: 50px;
    &zwnj;**border-radius: 50%;**&zwnj;
    margin-right: 10px;
  }
  
  
    .lopmg {
 display: flex;
    align-items: center;
    justify-content: space-between;    margin: 5px;
  }
  
  .floating-div .text {
    font-size: 14px;
    color: #333;
  }
  .floating-div .button11 {
      display: inline-block;
	    background-color: red;
    padding: 5px 10px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
 
    width: 60px;
    text-align: center;
  }

  .oku{display: inline-block;
	    background-color: #2ecc71;
    padding: 5px 10px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
 margin-left: 5px;
    width: 60px;
    text-align: center;}
	
	
	
	
	        .avatar {
                width: 50px;
    height: 50px;
            border-radius: 50%;
            object-fit: cover;
            position: relative;
            z-index: 2;
            box-shadow: 0 0 20px rgba(0, 150, 255, 0.8);
        }
	
	.halo {
            position: absolute;
                top: 5px;
    left: 5px;
                width: 50px;
    height: 50px;
            border-radius: 50%;
            background: transparent;
            border: 2px solid rgba(0, 150, 255, 0.6);
            animation: ripple 2s infinite;
            z-index: 1;
        }
        
        .halo:nth-child(2) {
            animation-delay: 0.5s;
        }
        
        .halo:nth-child(3) {
            animation-delay: 1s;
        }
        
        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
	
	
	
	
	
	
	
	
	.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ecf0f1;
    padding: 0px 0 20px;margin-bottom: 80px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}
.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    opacity: 0.7;
}








     /* 主容器 */
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 0px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            overflow: hidden;
            position: relative;
        }
        
        /* 装饰元素 */
        .decor-circle {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(74, 144, 226, 0.05) 100%);
            top: -150px;
            right: -150px;
            z-index: 0;
        }
        
        /* 头部区域 */
        .about-header {
            padding: 40px  20px;
            background: linear-gradient(135deg, #4a90e2 0%, #3a7bc8 100%);
            color: white;
            position: relative;
            z-index: 1;
        }
        
        .about-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .about-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: white;
            border-radius: 2px;
        }
        
        .about-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
        }
        
        /* 内容区域 */
        .about-content {
            display: flex;
            flex-wrap: wrap;
            padding: 20px;
            position: relative;
            z-index: 1;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #4a5568;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .about-image:hover {
            transform: translateY(-5px);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 特色部分 */
        .about-features {
            padding: 2%;
        }
        
        .features-title {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 30px;
            font-weight: 600;text-align: center;
        }
        
        .features-grid {
            display: flex;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2%;    flex-wrap: wrap;
        }
        
        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border: 1px solid rgba(0,0,0,0.05);    width: 49%;text-align: center;margin-bottom: 10px;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 3.5rem;
            color: #4a90e2;
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .feature-desc {
            color: #718096;
            font-size: 1rem;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-text {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .about-title {
                font-size: 2.2rem;
            }
        }
		
		
		
		
		
		
		.uuystt a{
			
	text-decoration: none;
    color: black;
			
			
		}
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
	