/* index.html 页面样式 */

/* 顶部联系栏 */
.top-contact-bar {
    background: #002663;
    padding: 10px 0;
    border-bottom: 2px solid #00e2d6;
}
.top-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-contact-info {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}
.top-contact-info i {
    color: #00e2d6;
    margin-right: 8px;
    font-size: 18px;
}
.top-contact-info a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.top-contact-info a:hover {
    color: #fa5d07;
}

/* Logo */
.logo-text {
    font-size: 14px !important;
    line-height: 1.3 !important;
    max-width: 300px;
    white-space: normal !important;
    word-wrap: break-word;
}
.logo-text a {
    color: #fff !important;
    font-size: 14px !important;
    text-decoration: none;
}
.logo-text a:hover {
    color: #fa5d07 !important;
}
.navbar-header {
    margin-top: 0 !important;
}
.navbar-default {
    margin-top: 0 !important;
}
.header-nav {
    padding-top: 0 !important;
}

/* 欢迎区 */
.welcome-section {
    background: linear-gradient(135deg, #002663 0%, #004080 100%);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}
.welcome-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00e2d6;
}
.welcome-section p {
    font-size: 16px;
    line-height: 28px;
    max-width: 900px;
    margin: 0 auto;
    color: #e0e0e0;
}

/* 统计数据 */
.stats-section {
    background: #f5f5f5;
    padding: 50px 0;
}
.stat-item {
    text-align: center;
    padding: 20px;
}
.stat-item .num {
    font-size: 48px;
    color: #fa5d07;
    font-weight: 700;
}
.stat-item .label {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

/* 服务高亮 */
.service-highlight {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    text-align: center;
}
.service-highlight i {
    font-size: 48px;
    color: #00e2d6;
    margin-bottom: 20px;
}
.service-highlight h4 {
    font-size: 20px;
    color: #002663;
    margin-bottom: 15px;
}
.service-highlight p {
    font-size: 14px;
    color: #666;
    line-height: 24px;
}
.service-highlight a {
    color: #002663;
    text-decoration: none;
}
.service-highlight a:hover {
    color: #fa5d07;
}

/* 发展历程 */
.history-timeline {
    position: relative;
    padding: 20px 0;
}
.history-item {
    padding: 20px;
    border-left: 3px solid #00e2d6;
    margin-left: 30px;
    position: relative;
    margin-bottom: 20px;
}
.history-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 25px;
    width: 16px;
    height: 16px;
    background: #fa5d07;
    border-radius: 50%;
}
.history-item h4 {
    color: #fa5d07;
    font-size: 20px;
    margin-bottom: 10px;
}
.history-item p {
    color: #666;
    line-height: 24px;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #fa5d07 0%, #ff7b3b 100%);
    padding: 50px 0;
    text-align: center;
    color: #fff;
}
.cta-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
}
.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
}
.cta-section .btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #fa5d07;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}
.cta-section .btn-cta:hover {
    background: #002663;
    color: #fff;
}

/* 服务区域背景 */
.services-bg-gray {
    padding: 5em 0;
    background: #f9f9f9;
}

/* 服务链接颜色 */
.service-link {
    color: #002663;
    text-decoration: none;
}
.service-link:hover {
    color: #fa5d07;
}

/* 发展历程区域 */
.history-section {
    padding: 5em 0;
}

/* 页脚文本 */
.footer-text {
    color: #ccc;
    line-height: 24px;
    margin-bottom: 15px;
}
.footer-text-last {
    color: #ccc;
    line-height: 24px;
}

/* 页脚链接 */
.footer-link {
    color: #00e2d6;
    text-decoration: none;
}
.footer-link:hover {
    color: #fa5d07;
}

/* 返回顶部按钮 */
#toTop {
    display: block;
}
#toTopHover {
    opacity: 1;
}
