/* 响应式设计样式 */
* {
    box-sizing: border-box;

}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}



/* Banner响应式 */
.banner {
    height: auto;
    margin-top: 0; /* 移除原来的margin-top */
}

.wy-mod-banner {
    height: auto;
    min-height: 300px;
}

.wy-mod-banner .banners,
.wy-mod-banner .banner {
    position: relative;
    width: 100%;
    height: auto;
    margin-left: 0;
}

.wy-mod-banner img {
    width: 100%;
    height: auto;
}

.wy-mod-banner .focus {
    padding-top: 20px;
    text-align: center;
}

.wy-mod-banner .focus a {
    margin: 0 5px;
}

/* 解决方案区域 */
.solution-section {
    padding: 40px 0;
    background-color: #f8f8f8;
}

.section-header {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    margin-bottom: 0;
}

.section-title h2 {
    font-size: 28px;
    color: #333;
    margin: 0;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}
.section-desc{
    color: #a6a6a6;
}
.section-title h2:after {
  /*  content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #0DA891;*/
}

.solution-list {
    display: flex;
    flex-wrap: wrap;
}

.solution-item {
    padding: 0 5px;
    margin-bottom: 10px;
}

.solution-card {
    height: 100%;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.solution-icon {
    text-align: center;
    margin-bottom: 15px;
}

.solution-icon img {
    width: 60px;
    height: 60px;
}

.solution-item h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
    text-align: center;
}

.solution-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    text-align: center;
    flex-grow: 1;
}

.more-link a {
    color: #0DA891;
    text-decoration: none;
    font-size: 14px;
}

/* 新闻动态区域 */
.news-section {
    padding: 40px 0;
    background-color: #ffffff;
}


.news-item {
    margin-bottom: 13px;
}

.news-card {
    display: flex;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    flex-direction: column;
}

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

.news-thumb {
    flex: 0 0 200px;
}

.news-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-content {
    flex: 1;
    padding: 15px;
}

.news-content h3 {
    margin-top: 0;
    font-size: 16px;
}

.news-content h3 a {
    color: #333;
    text-decoration: none;
}

.news-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 10px 0;
}

.news-meta {
    font-size: 12px;
    color: #999;
    margin-top: auto;
}

/* 在线咨询按钮 */
.online-service {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #0DA891;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #013e7b;
    transform: scale(1.1);
}

.service-btn span {
    font-size: 14px;
    line-height: 1.2;
}

/* 底部区域 */
.bottom_box {
    width: 100%;
}

.bottom {
    width: 100%;
    max-width: 1200px;
}

/* Bootstrap增强样式 */
@media (max-width: 1199px) {
    .solution-item h3 {
        font-size: 16px;
    }
    
    .news-content h3 {
        font-size: 15px;
    }
}

/* 平板设备 (992px及以上) */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .solution-card {
        padding: 15px;
    }
    
    .solution-icon img {
        width: 50px;
        height: 50px;
    }
    
    .solution-item h3 {
        font-size: 16px;
    }
    
    .news-thumb {
        flex: 0 0 150px;
    }
}

/* 平板设备 (768px及以上) */
@media (max-width: 768px) {
    .head {
        position: relative;
    }
    .wy-mod-banner{
        min-height: auto;
    }


    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .news-thumb {
        flex: 0 0 200px;
    }


    .solution-section {
        padding: 30px 0;
    }
    
    .news-section {
        padding: 30px 0;
    }
}

/* 手机设备 (480px及以下) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .solution-section {
        padding: 20px 0;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .solution-card {
        padding: 10px;
    }
    
    .solution-icon img {
        width: 40px;
        height: 40px;
    }
    
    .solution-item h3 {
        font-size: 14px;
    }
    
    .solution-item p {
        font-size: 12px;
    }
    
    .news-section {
        padding: 20px 0;
    }
    
    .news-content {
        padding: 10px;
    }
    
    .news-content h3 {
        font-size: 14px;
    }
    
    .news-content p {
        font-size: 12px;
    }
    
    .online-service {
        right: 10px;
        bottom: 10px;
    }
    
    .service-btn {
        width: 50px;
        height: 50px;
    }
    
    .service-btn span {
        font-size: 12px;
    }

    

}