/* 全局样式 */
body {
    padding-top: 56px;
}

/* 导航栏样式 */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    color: #94D6FD;
}

/* 轮播图样式 */
.carousel-item {
    height: 200px;
    background-color: #94D6FD;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    opacity: 0.8;
}

.carousel-caption {
    bottom: 30%;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 产品卡片样式 */
.card {
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 300px;
    object-fit: contain;
    padding: 10px;
    background-color: #f8f9fa;
}

/* 公司介绍样式 */
#about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    border-radius: 10px;
    margin: 20px 0;
}

#about .container {
    position: relative;
    z-index: 1;
}

#about h2 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

#about h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #007bff;
}

#about .lead {
    font-size: 1.25rem;
    color: #34495e;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
    line-height: 1.8;
    padding: 0 20px;
}

#about .intro {
    color: #2c3e50;
    line-height: 2;
    text-indent: 2em;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-top: 20px;
}

#about img {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.intro {
    color: #333;
    line-height: 1.8;
    text-indent: 2em;
}

/* 企业荣誉样式 */
.honor-card {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.honor-card:hover {
    transform: translateY(-5px);
}

.honor-card img {
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.honor-card h5 {
    color: #333;
    margin-top: 15px;
}

/* 页脚样式 */
footer {
    background-color: #94D6FD;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    padding: 2.5rem 0;
    position: relative;
}

footer h5 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: #fff;
    position: relative;
    display: inline-block;
}

footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

footer h5:hover:after {
    width: 100%;
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

footer p:hover {
    color: #fff;
}

footer .contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
}

footer .contact-info i {
    font-size: 1.1rem;
    color: #fff;
}

footer .copyright {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    footer {
        text-align: center;
        padding: 2rem 0;
    }
    
    footer h5:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    footer .text-md-end {
        text-align: center !important;
        margin-top: 2rem;
    }
    
    footer .contact-info p {
        justify-content: center;
    }
}