/* 全局样式 */
body {
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    color: #1a3a5c;
}
a:hover {
    color: #c9a84c;
}

.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.qq-bar {
    font-size: 14px;
    color: #666;
    border-top: 1px solid #f0f0f0;
}
.qq-bar a {
    color: #1a3a5c;
    font-weight: 500;
}

/* 按钮样式 */
.btn-gold {
    background-color: #c9a84c;
    border-color: #c9a84c;
    color: #fff;
}
.btn-gold:hover {
    background-color: #b8943a;
    border-color: #b8943a;
    color: #fff;
}
.btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

/* 导航激活状态 */
.navbar-nav .nav-link.active {
    color: #c9a84c !important;
    font-weight: 600;
}

/* 首页横幅 */
.hero-section {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 卡片悬停效果 */
.card-hover {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 底部样式 */
.site-footer {
    border-top: 3px solid #c9a84c;
    background-color: #fff;
}
.site-footer h5 {
    color: #1a3a5c;
    font-weight: 600;
    margin-bottom: 20px;
}
.site-footer ul li {
    margin-bottom: 8px;
}
.site-footer a {
    color: #555;
}
.site-footer a:hover {
    color: #c9a84c;
}

/* 手机固定底部按钮 */
.mobile-fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1000;
    background-color: #1a3a5c;
    padding: 8px;
    gap: 8px;
}
.mobile-fixed-buttons .btn {
    flex: 1;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
}
.mobile-fixed-buttons .btn-gold {
    background-color: #c9a84c;
    color: #fff;
}
.mobile-fixed-buttons .btn-outline-light {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .mobile-fixed-buttons {
        display: flex;
    }
    .site-footer {
        padding-bottom: 70px; /* 避免内容被固定按钮遮挡 */
    }
}
/* ===== 新增样式 ===== */

/* 时间线 */
.timeline {
    list-style: none;
    padding: 0;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #c9a84c;
}
.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}
.timeline-badge {
    position: absolute;
    left: 12px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a3a5c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.timeline-panel {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.timeline-title {
    color: #1a3a5c;
    font-weight: bold;
}

/* 开户流程步骤 */
.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #1a3a5c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

/* 新闻图片固定高度 */
.news-image {
    height: 200px;
    object-fit: cover;
}
.news-image-placeholder {
    height: 200px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ddd;
}

/* 内容区排版 */
.content {
    font-size: 1rem;
    line-height: 1.8;
}