/* 平台标题 */
.solutions-header {
    background-image: url('../images/about-1.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 380px;
    padding: 85px 0;
    padding-left: 280px;
    text-align: left;
    color: white;
}

.solutions-header h1 {
    font-size: 100px;
    margin-bottom: 10px;
}

.solutions-header h2 {
    font-size: 48px;
    margin: 0;
}

/* 解决方案内容 */
.solutions-content {
    background-color: white;
}

/* 解决方案部分 */
.solution-section > img {
    width: 100%;
    height: auto;
}
.solution-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.solution-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* 解决方案项 */
.solution-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.solution-image {
    flex: 1;
    max-width: 400px;
}

.solution-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.solution-content {
    flex: 1;
    text-align: left;
}

.solution-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.solution-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.solution-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-content li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.solution-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #BE0110;
    font-size: 16px;
    font-weight: bold;
}

.background{
     background: linear-gradient(180deg, #fff 0%, #F1F6FD 24%);
}

/* 行业密销场景解决方案 */
.industry-solutions-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.industry-solution-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.industry-solution-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.industry-solution-item h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

/* 行业商业密销解决方案 */
.industry-grid {
    display: flex;
    gap: 8px;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 auto 60px;
    max-width: 1360px;
    height: 320px;
}

.industry-item {
    position: relative;
    flex: 1;
    min-width: 80px;
    height: 100%;
    transition: flex 0.4s ease;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.industry-item.active {
    flex: 4;
}

.industry-item:not(.active) {
    flex: 1;
}

.industry-content {
    position: relative;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    z-index: 2;
}

.industry-content h3 {
    font-size: 14px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.industry-item.active .industry-content h3 {
    white-space: normal;
    font-size: 18px;
    margin-bottom: 15px;
}

.industry-content ul {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.industry-item.active .industry-content ul {
    display: block;
}

.industry-content li {
    margin-bottom: 8px;
}

.industry-content li strong {
    display: block;
    margin-bottom: 3px;
    color: #BE0110;
}

.industry-number {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.6);
}

.industry-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.industry-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* 销毁基地全案规划建设方案 */
.planning-solutions {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 16px;
max-width: 1200px;
margin: 0 auto;
}

.planning-item {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #fff;
border: 1px solid #e8e8e8;
border-radius: 12px;
padding: 16px 20px;
transition: all 0.3s ease;
}

.planning-item:hover {
border-color: #d0d0d0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.planning-item span {
font-size: 16px;
color: #333;
font-weight: 500;
}

.planning-item img {
width: 48px;
height: 48px;
object-fit: contain;
}

footer{
    margin-top: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .solution-item {
        flex-direction: column;
        text-align: center;
    }
    
    .solution-image {
        max-width: 100%;
    }
    
    .industry-solutions-grid,
    .planning-solutions,
    .center-features,
    .factory-features,
    .workshop-features {
        flex-direction: column;
        align-items: center;
    }
    
    .industry-solution-item,
    .planning-item,
    .center-features .feature-item,
    .factory-features .feature-item,
    .workshop-features .feature-item {
        max-width: 100%;
    }
}