/* 首页专用样式 */

/* 轮播图区域 */
.home {
    position: relative;
    overflow: hidden;
}

.slideWiz {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
}

/* 统计数字动画 */
.counts {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

.count-item {
    text-align: center;
    margin-bottom: 30px;
}

.count {
    font-size: 3rem;
    font-weight: bold;
    display: inline-block;
    margin-right: 5px;
}

.count-plus {
    font-size: 2rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.count-plus.show {
    opacity: 1;
}

.count-label {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
}

/* 产品展示区域 */
.products-showcase {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-showcase-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.product-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-showcase-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

/* 新闻展示区域 */
.news-showcase {
    padding: 80px 0;
}

.news-showcase-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.news-showcase-item:hover {
    transform: translateY(-5px);
}

.news-showcase-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-showcase-content {
    padding: 20px;
}

/* 我们的优势区域 - 确保卡片高度一致 */
.about-list {
    padding: 80px 0;
}

.about-list .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.about-list .about-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 30px;
}

.about-list .about-item .text-center {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.about-list .about-item .text-center:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    border-color: #3999f2;
}

.about-list .about-item .icon {
    width: 100px;
    height: 100px;
    line-height: 1;
    color: #F7CA18;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, #3999f2, #001942);
    border-radius: 10px 0px 200px 200px;
    transition: all 0.3s ease;
}

.about-list .about-item:hover .icon {
    transform: scale(1.05);
}

.about-list .about-item h5 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.about-list .about-item h6 {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-list .about-item p {
    flex-grow: 1;
    margin-bottom: 0;
    line-height: 1.6;
    color: #666;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.8em;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .about-list .about-item .text-center {
        padding: 30px 20px;
    }
    
    .about-list .about-item .icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .about-list .about-item h5 {
        font-size: 18px;
    }
    
    .about-list .about-item h6 {
        font-size: 13px;
    }
    
    .about-list .about-item p {
        font-size: 14px;
        min-height: 4.2em;
    }
} 