/* 
 * 湛澜科技（深圳）有限公司 - 网站样式
 * Zhanlan Technology (Shenzhen) Co., Ltd
 */

/* 全局样式 */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

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

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* 首页英雄区域 */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 30px;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section .btn {
    margin-top: 20px;
    padding: 10px 25px;
    font-weight: 500;
}

/* 特性卡片 */
.feature-icon {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* 页面标题区域 */
.page-header {
    padding: 60px 0;
    margin-bottom: 30px;
}

.breadcrumb {
    margin-top: 15px;
}

/* 关于我们页面 */
.company-intro {
    margin-bottom: 50px;
}

.team-avatar {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* 产品页面 */
.product-categories .card {
    margin-bottom: 30px;
}

.featured-products .badge {
    padding: 8px 12px;
    font-weight: 500;
}

/* 联系我们页面 */
.contact-info .card {
    margin-bottom: 20px;
}

.faq .accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
}

/* 隐私政策和服务条款页面 */
.privacy-policy h2, .terms-of-service h2 {
    color: var(--primary-color);
    font-weight: 600;
}

/* 页脚样式 */
.footer {
    margin-top: 50px;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff !important;
    text-decoration: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 40px 0;
    }
}

/* 动画效果 */
.btn {
    transition: all 0.3s ease;
}

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

/* 自定义表单样式 */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* 图片样式 */
img {
    max-width: 100%;
    height: auto;
}
