/* 面包屑导航样式 */
.crumbs-wrap {
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

.crumbs {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.crumbs span {
    color: #999;
}

.crumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.crumbs a:hover {
    color: #0066cc;
}

/* 分隔符样式 */
.crumbs > * {
    margin: 0 5px;
}

.crumbs > *:first-child {
    margin-left: 0;
}

.crumbs > *:last-child {
    margin-right: 0;
}

/* 当前位置样式 */
.crumbs > span:last-child {
    color: #333;
}

/* 响应式调整 */
@media screen and (max-width: 1400px) {
    .crumbs {
        max-width: 95%;
    }
}

@media screen and (max-width: 480px) {
    .crumbs-wrap {
        padding: 10px 0;
    }
    
    .crumbs {
        font-size: 12px;
    }
}

/* 案例详情页样式 */
.solu {
    padding: 60px 0;
    background: #f7f7f7;
}

.solu .wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

/* 左侧图片区域 */
.solu .imgbox {
    flex: 0 0 600px;
    border: 1px solid #eee;
    background: #fff;
    padding: 10px;
}

.solu .imgbox img {
    height: auto;
    display: block;
    height: 100%;
}

/* 右侧内容区域 */
.solu .solut_r {
    flex: 1;
}

.solu .solut_r h1 {
    font-size: 24px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: bold;
}

/* 属性列表 */
.solu .shuxing {
    margin-bottom: 30px;
}

.solu .shuxing p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

.solu .shuxing strong {
    color: #333;
    font-weight: 600;
    margin-right: 5px;
}

/* 邮箱联系方式 */
.solu .p_yj {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: #666;
}

.solu .p_yj img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.solu .p_yj a {
    color: #f78001;
    text-decoration: none;
    margin-left: 5px;
    font-size: 16px;
}

.solu .p_yj a:hover {
    text-decoration: underline;
}

/* 按钮样式 */
.solu .btnbox {
    margin-top: 20px;
}

.solu .btnbox a {
    display: inline-block;
    padding: 12px 35px;
    background: #f78001;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.solu .btnbox a:hover {
    background: #f78001;
}

/* 响应式布局 */
@media screen and (max-width: 1400px) {
    .solu .wrap {
        max-width: 95%;
    }
}

@media screen and (max-width: 992px) {
    .solu .wrap {
        flex-direction: column;
    }
    
    .solu .imgbox {
        flex: none;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .solu .solut_r {
        padding: 0 20px;
    }
    
    .solu .solut_r h1 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .solu {
        padding: 30px 0;
    }
    
    .solu .solut_r h1 {
        font-size: 18px;
    }
    
    .solu .btnbox a {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* 通用工具类 */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 产品详情样式 */
.pro1 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0;
}

.pro_m {
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

/* 标题样式 */
.pro_m h3 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin: 30px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
    position: relative;
}

/* 标题下的装饰线 */
.pro_m h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: #f78001;
}

/* 第一个标题去掉上边距 */
.pro_m h3:first-child {
    margin-top: 0;
}

/* 段落样式 */
.pro_m p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 图片样式 */
.pro_m p img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* 文本对齐 */  
.pro_m p[style*="text-align:center"] {
    text-align: center;
}

/* 响应式调整 */
@media screen and (max-width: 1400px) {
    .pro1 {
        max-width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .pro1 {
        padding: 30px 0;
    }
    
    .pro_m {
        padding: 20px;
    }
    
    .pro_m h3 {
        font-size: 20px;
        margin: 20px 0 15px;
        padding-bottom: 10px;
    }
    
    .pro_m p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .pro_m p img {
        margin: 20px auto;
    }
}

@media screen and (max-width: 480px) {
    .pro1 {
        padding: 20px 0;
    }
    
    .pro_m {
        padding: 15px;
    }
    
    .pro_m h3 {
        font-size: 18px;
    }
    
    .pro_m p {
        font-size: 13px;
    }
}


/* 解决方案优势部分 */
.solution {
    background: #f7f7f7;
    padding: 80px 0 60px; /* 增加顶部内边距，为图标留出空间 */
}

.solution_fw {
    max-width: 1400px;
    margin: 0 auto;
}

/* 标题部分 */
.insideprofivetit {
    text-align: center;
    margin-bottom: 50px;
}

.insideprofivetit h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.insideprofivetit p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* 优势列表 */
.textC {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.textC li {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: left; /* 改为左对齐 */
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 30px; /* 为图标留出空间 */
}

/* 图标样式修改 */
.textC li .icon1 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 5px;
    background-color: #E84620;
    transition: all .3s ease;
    display: block;
    position: absolute;
    left: 30px; /* 从左边开始计算 */
    top: -30px;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

/* 图标悬停效果 */
.textC li:hover .icon1 {
    transform: rotate(360deg);
    background-color: #d63a16;
}

/* 标题和描述文字样式调整 */
.textC li h5 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
    padding-right: 20px;
}

.textC li p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 响应式调整 */
@media screen and (max-width: 992px) {
    .textC {
        gap: 50px 20px; /* 增加垂直间距 */
    }
    
    .textC li {
        min-width: calc(50% - 20px);
        margin-top: 40px;
    }
}

@media screen and (max-width: 480px) {
    .solution {
        padding: 60px 0 30px;
    }
    
    .textC li {
        min-width: 100%;
        margin-top: 40px;
    }
    
    .textC li .icon1 {
        width: 50px;
        height: 50px;
        left: 20px;
        top: -25px;
    }
}
.params p{
    line-height: 30px;
}