/* 自定义导航栏样式 */
.navbar-white {
    background-color: #fff;
    border-bottom: 1px solid #e7e7e7;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-white .navbar-brand {
    font-weight: bold;
    color: #337ab7;
}

.navbar-white .navbar-nav > li > a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-white .navbar-nav > li > a:hover,
.navbar-white .navbar-nav > li > a:focus {
    color: #337ab7;
    background-color: transparent;
}

.navbar-white .navbar-nav > .active > a,
.navbar-white .navbar-nav > .active > a:hover,
.navbar-white .navbar-nav > .active > a:focus {
    color: #337ab7;
    background-color: transparent;
    border-bottom: 2px solid #337ab7;
}

/* 页面内容样式 */
.page-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 20px 0;
    margin-bottom: 30px;
}

.page-header h1 {
    margin: 0;
    color: #333;
}

/* 服务项样式 */
.service-item {
    padding: 30px 20px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
    transform: translateY(-2px);
}

.service-icon {
    margin-bottom: 20px;
}

/* 时间线样式 */
.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
    border-left: 2px solid #337ab7;
}

.timeline-year {
    position: absolute;
    left: -15px;
    top: 0;
    background-color: #337ab7;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 12px;
}

.timeline-content h5 {
    margin-top: 0;
    color: #333;
    font-weight: bold;
}

/* 团队成员样式 */
.team-member {
    padding: 20px;
    margin-bottom: 20px;
}

.member-avatar {
    margin-bottom: 15px;
}

/* 流程步骤样式 */
.process-step {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #337ab7;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 联系表单样式 */
.contact-info p {
    margin-bottom: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .navbar-nav > li > a {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-header {
        margin-top: 50px;
    }
    
    .jumbotron {
        margin-top: 50px;
        padding: 30px 15px;
    }
}

/* 按钮间距 */
.ml-3 {
    margin-left: 15px;
}

/* 面板标题图标间距 */
.panel-title i {
    margin-right: 8px;
}