

 

	/* 副标题的样式*/
.title-style-1
{
        letter-spacing: .05em;
        text-transform: none;
        font-family: "Kalam", cursive;
        color: #76aa6f;
}
.title-style-1 + h2
{
        margin-top: 10px;
}


.bg_index_about {
     position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background-image: url(/uploads/20241225/52271b53bce00be5d46316d4776356a4.jpg);
    background-size: cover;
    background-position: center;
    filter: grayscale(10%);  /* 去色效果 */
    opacity: 0.06;    /* 降低不透明度 */

    z-index: -1
}


.in_about {
    z-index: 10;
}


/***********************标题1************************/
.in_title {
    text-align: left;
}
.in_title h2{
   /* 
     font-size:50px; 
    font-weight: 700;
    line-height: 56px; 
    */
    color: #1054b0;
    text-transform:capitalize;
    font-family: 'Poppins-Bold'; 
    position: relative;
    display: inline-block;
     
}

.in_title h2::after{ 
    content: '';
    display: inline-block; 
    position: absolute; 
    top: 27px; 
    left: -75px; 
    height: 2px; 
    width: 50px; 
    background: #1054b0; 
}

.in_title h4 { 

    color: #666666;  

    margin-top: 15px
     
}
/***********************标题1结束************************/


/***********************标题2************************/
.in_title_1 {
    text-align: left;
}
.in_title_1 span{
    font-size:30px; 
    font-weight: 700;
    line-height: 56px; 
    color: #1054b0;
    text-transform:capitalize;
    font-family: 'Poppins-Bold'; 
    position: relative;
    display: inline-block;
}



.in_title_1 p{ 
    font-size: clamp(1rem, 2.5vw, 1.5rem); 
    font-weight: 700;
    color: #666666; 
    line-height: clamp(1rem, 2.5vw, 1.5rem); 
    height: auto ;
    overflow: hidden; 
    text-overflow: capitalize; 
    font-family: 'Poppins-Bold'; 
    white-space: nowrap; 
    margin-top: clamp(1rem, 2.5vw, 1.5rem); 
     
}
/***********************标题2结束************************/


/***********************标题3************************/
.in_title_2 {
    text-align: center;
}
.in_title_2 h2{

    line-height: 2.5rem; 
    color: #1054b0;
    text-transform:capitalize;
    font-family: 'Poppins-Bold'; 
    position: relative;
    display: inline-block;
     
}

.in_title_2 h2::before,
.in_title_2 h2::after{ 
    content: '';        /* 必须设置 content 属性，表示伪元素的内容为空 */
    display: inline-block; /* 让伪元素呈现为块级元素 */
    position: absolute; /* 使伪元素使用绝对定位 */
    height: 2px;        /* 设置横条的高度 */
    width: 50px;        /* 设置横条的宽度 */
    background: #1054b0; /* 设置横条的背景色 */
}

.in_title_2 h2::before {
    top: 1.5rem;  /* 调整 ::before 横条的垂直位置 */
    left: -4.5rem;    /* 将 ::before 横条对齐到 span 元素的左边 */
}

.in_title_2 h2::after {
    top: 1.5rem; /* 调整 ::after 横条的垂直位置，放置在元素下方 */
    right: -4.5rem;     /* 将 ::after 横条对齐到 span 元素的右边 */
}

.in_title_2 p{ 
    font-size: clamp(1rem, 2.5vw, 1.5rem); 
    color: #666666; 
    line-height:clamp(1rem, 2.5vw, 1.5rem); 
    height: auto;
    overflow: hidden; 
    text-overflow: capitalize; 
    font-family: 'Poppins-Bold'; 
    white-space: nowrap; 
    margin-top: clamp(1rem, 2.5vw, 1.5rem); 
     
}
/***********************标题3结束************************/



@media (min-width: 1024px) {

.in_about_l{
float: left; 
width: 50%;
padding: 20px 62px 20px 1%

}

.in_about_img{
    float: left;
   width: 50%;
    
}

.in_about_img img{
  float: left;
   width: 100%
    
}

}

@media (max-width: 1024px) {

.in_about_l{ 
width: 100%;
}

.in_about_img{
   
   width: 100%;
    
}

.in_about_img img{
  float: left;
   width: 100%
    
}

}





/**********************************************首页********************************/

/************************** 首页关于我们*/


.content-ab
{

  }
	


/* 按钮在容器那居中显示，多个按钮，每个按钮间距30px */
.bt-center {
     display: flex;              /* 启用 Flexbox 布局 */
     justify-content: center;    /* 水平居中所有子元素 */
     gap: 30px; 
    font-size: 25px;
    padding: 25px
   
}




.property-item{
     border: 5px solid white; /* 添加3px白色边框 */
      transition: transform 0.3s ease, box-shadow 0.3s ease; /* 添加平滑过渡 */
        padding: 15px; /* 添加内边距 */
        overflow: hidden; /* 确保放大的图片不会溢出容器 */
           
        }


.property-item:hover {
   
   transform: translateY(-5px); /* 轻微上移效果，增强浮动感 */
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 阴影效果 */
}

 .property-item .set-bg   {

    position: relative;  /* 定位背景图片 */

    transition: transform 400ms ease;  /* 背景图变换（如缩放）的平滑过渡 */
  }
  
  .property-item .set-bg .label {
    position: absolute;  /* 固定位置，避免transform影响 */
}
  
  /* 鼠标悬停时对 img 元素进行放大 */
  .property-item .set-bg:hover {
       /* 鼠标悬停时增加 3D 缩放效果，使背景图片放大 */
    -webkit-transform: perspective(1px) scale3d(1.1, 1.1, 1);   /* Safari 浏览器的前缀版本，放大 15% */
    transform: perspective(1px) scale3d(1.1, 1.1, 1);  /* 放大背景图片至 1.15 倍（15%） */
  }
  

.home-company h2,.home-company a{
    
    text-align: center;  /* 使容器内的内容水平居中 */
}

/************************** 首页关于我们*/



         /*********************合作伙伴*********************/
         
   /* 外层容器样式 */
.project-area {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

/* 高度固定的容器样式 */
.project-area .container > div[style*="height: 130px"] {
    height: 130px !important;
    position: relative;
    overflow: hidden;
    margin: 0 -60px;
}



       /*********************slider*********************/
.slider {
    width: auto;
    max-height: 100%;
    margin: 0 auto;
    position: relative;
}

.slider.autoplay4  .li1 {
    padding: 0 10px;
    height: 150px;
    display: flex;
    align-items: center;
}

.slider.autoplay5  .li1 {
        padding: 0 10px;
       height:  400px;
       display: flex;
       align-items: center; /* 垂直居中 */
      
        }

.cmn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 修改为正方形容器 */
.ie {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    padding: 0px;
    margin: 0 auto; /* 居中显示 */
    overflow: hidden; /* 隐藏溢出的内容 */
}

/* 图片适应容器 */
.ie img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 保持比例完整显示 */
    transition: all .5s;
}
/* 悬停效果 */
.ie:hover img {
    -webkit-transform: perspective(1px) scale3d(1.15, 1.15, 1);
    transform: perspective(1px) scale3d(1.15, 1.15, 1);
}



/* 轮播容器样式 */
.slider.autoplay4 {
    padding: 0px 60px;
    box-sizing: border-box;
}

 /*********************slider结束**************************/
        
       
/**********************统计面板 i.html****************************/
.s-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 统计面板包装器 */
.stats-wrapper {
    background: linear-gradient(135deg, #f6f9fc 0%, #edf1f7 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23e0e5ec33"/></svg>');
    opacity: 0.5;
}



/* 统计面板 */
.stats-panel {
    position: relative;
    z-index: 1;
}

/* 修改列表样式，使用grid布局 */
.stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    /* 默认小屏幕两列 */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* 缩小间距，适应更多列 */
}

/* 修改列表项样式 */
.stats-list li {
    display: flex; /* 使用flex确保子元素填充 */
    min-height: 100%;
}

/* 修改图表卡片样式 */
.chart {
    width: 100%; /* 确保宽度100% */
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.chart:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* 图标样式 */
.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.icon-wrapper i {
    font-size: 30px;
    color: #fff;
}

/* 数字计数器 */
.counter {
    font-size: 1.5rem;
    font-weight:700;
    color: #2c3e50;
    display: block;
    margin: 0px 0;
    position: relative;
    z-index: 1;
    line-height: 1.5; /* 添加行高 */
}

/* 描述文本 */
.chart p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 1;
    flex-grow: 1; /* 让描述文字占据剩余空间 */
}

/* 背景装饰 */
.chart-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

/* 响应式设计 */
/* 中等屏幕 - 三列 */
@media (min-width: 768px) {
    .stats-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 大屏幕 - 六列 */
@media (min-width: 1200px) {
    .stats-list {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px; /* 更小的间距适应六列 */
    }
    
    /* 调整卡片内边距，适应更窄的宽度 */
    .chart {
        padding: 20px 15px;
    }
    
    /* 调整图标大小 */
    .icon-wrapper {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }
    
    .icon-wrapper i {
        font-size: 20px;
    }
    
    /* 调整文字大小 */
    .counter {
        font-size: 1.2rem;
    }
    
    .chart p {
        font-size: 0.9rem;
    }
}

/* 超小屏幕保持两列 */
@media (max-width: 576px) {
    .stats-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .chart {
        padding: 15px 10px;
    }
    
    .counter {
        font-size: 1.2rem;
    }
    
    .chart p {
        font-size: 0.85rem;
    }
}
       

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-list li {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.stats-list li:nth-child(1) { animation-delay: 0.1s; }
.stats-list li:nth-child(2) { animation-delay: 0.2s; }
.stats-list li:nth-child(3) { animation-delay: 0.3s; }
.stats-list li:nth-child(4) { animation-delay: 0.4s; } 

/*统计面板结束*


/**********************************************首页 结束********************************/




/**********************************************关于我们单页********************************/

  /* 服务展示区域 */
        .services-section {
            padding: 60px 0; /* 只需要上下padding */
        }

        /* 服务内容网格布局 */
        .services-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            position: relative;
        }

        /* 左侧图片容器样式 */
        .services-image-container {
            position: relative; /* 为浮动数字框定位提供参考 */
            width: 100%;
            height: 100%; /* 确保容器占满整个区域 */
        }

        /* 图片样式 */
        .services-image {
            width: 100%;
            object-fit: cover; /* 保持图片比例填充容器 */
            border-radius: 8px; /* 圆角效果 */
            box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* 轻微阴影效果 */
        }

        /* 浮动数字展示框样式 */
        .services-number {
            position: absolute; /* 相对于图片容器绝对定位 */
            top: -1.5rem;
            left: -1.5rem; /* 位置偏移，使其悬浮在图片左上角 */
            background: white;
            padding:  clamp(0.25rem, 2.5vw, 1.25rem);
            border-radius: 50% 50% 0% 49% / 51% 50% 50% 50%; /* 特殊的不规则圆角形状 */
            text-align: center;
      
        }

        /* 数字样式 */
        .number {
            color: #00a884; /* 绿色 */
        }

        /* 数字下方描述文字样式 */
        .number-description {
            color: #666; /* 浅灰色*/
                 margin-bottom: 0;
        }
        


        /* 右侧文字内容区域样式 */
        .services-content {
            padding: 20px 0; /* 上下留白 */
        }

        /* 标题样式 */
        .services-title {
            font-size: 2.2em;
            margin-bottom: 25px;
            color: #333;
            font-weight: 600; /* 粗体 */
        }

        /* 描述文字样式 */
        .services-description p {
            font-size: clamp(0.75rem, 2.5vw, 1.25rem);
            color: #666;
            line-height: 1.6px; /* 适合阅读的行高 */
        }

        /* 响应式布局适配 */
        @media (max-width: 1500px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

        .services-image {
            width: 120%;
            height: 120%;
            margin-left: -2rem
        }

    
          .services-number  {
            margin-left: -1rem;
    
            }
            .services-number h2 {
          
             margin-bottom: 0;
            }
            
        .number-description {
             margin-left: 0.2rem;
           line-height:1.25rem;
        }

            .services-image-container {
                height: 400px;
            }

        }







/**********************************************关于我们单页********************************/

 
 