/* 全局样式 */
body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* 导航栏样式 */
.navbar {
    margin-bottom: 0;
    border: none;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    padding: 10px 15px;
}

.logo {
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

.brand-name {
    font-size: 18px;
    font-weight: bold;
    color: #1a5276;
    vertical-align: middle;
}

.navbar-nav > li > a {
    color: #333;
    font-size: 16px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.navbar-nav > li > a:hover,
.navbar-nav > li.active > a {
    color: #1a5276;
    background-color: transparent;
}

/* 轮播图样式 */
.carousel {
    margin-top: 70px;
}

.carousel-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
}

.carousel-caption h3 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
}

.carousel-caption p {
    font-size: 18px;
    color: #fff;
}

/* 通用部分样式 */
.container {
    padding: 60px 0;
}

h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a5276;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1a5276;
}

/* 关于我们部分 */
.about-section {
    padding: 80px 0;
}

.about-section .lead {
    font-size: 20px;
    margin-bottom: 20px;
    color: #666;
}

.about-section p {
    margin-bottom: 20px;
    color: #666;
}

/* 核心业务部分 */
.business-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.business-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.business-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.business-icon {
    width: 80px;
    height: 80px;
    background-color: #1a5276;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.business-icon i {
    font-size: 40px;
    color: #fff;
}

.business-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.business-item p {
    color: #666;
}

/* 产品展示部分 */
.products-section {
    padding: 80px 0;
}

.product-item {
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 5px;
}

.product-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.product-item p {
    color: #666;
}

/* 新闻资讯部分 */
.news-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.news-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.news-date {
    display: inline-block;
    background-color: #1a5276;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.news-item p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #1a5276;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #3498db;
    text-decoration: none;
}

/* 联系我们部分 */
.contact-section {
    padding: 80px 0;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #666;
}

.contact-info i {
    color: #1a5276;
    margin-right: 10px;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: normal;
    color: #666;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1a5276;
    outline: none;
    box-shadow: 0 0 5px rgba(26, 82, 118, 0.3);
}

/* 页脚样式 */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer p,
.footer li {
    color: #ccc;
    margin-bottom: 10px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #1a5276;
    text-decoration: none;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1a5276;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
}

.back-to-top:hover {
    background-color: #3498db;
}

.back-to-top.show {
    opacity: 1;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .carousel-img {
        height: 300px;
    }
    
    .carousel-caption h3 {
        font-size: 24px;
    }
    
    .carousel-caption p {
        font-size: 14px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .about-section,
    .business-section,
    .products-section,
    .news-section,
    .contact-section {
        padding: 40px 0;
    }
    
    .business-item,
    .product-item,
    .news-item {
        margin-bottom: 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}

/* 关于我们页面样式 */
.about-header {
    background-image: url('https://p26-doubao-search-sign.byteimg.com/labis/2c50eb75c5d6951725f72d044f208cb7~tplv-be4g95zd3a-image.jpeg?lk3s=feb11e32&x-expires=1792912042&x-signature=RhLpZUsdd2I3GLkCQHaV0pi6pi4%3D');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.about-header h1 {
    color: #fff;
    font-size: 48px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.about-content {
    padding: 60px 0;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.about-values {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-item i {
    font-size: 40px;
    color: #1a5276;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.team-section {
    padding: 60px 0;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #1a5276;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #333;
}

.team-member p {
    color: #666;
}

/* 产品服务页面样式 */
.products-header {
    background-image: url('https://p11-doubao-search-sign.byteimg.com/labis/1a66f2620ac671e8cb2637bcb7397610~tplv-be4g95zd3a-image.jpeg?lk3s=feb11e32&x-expires=1792912042&x-signature=t3e6312VWN%2BaJ525kIVDUQY4sa8%3D');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.products-header h1 {
    color: #fff;
    font-size: 48px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.product-categories {
    padding: 60px 0;
}

.category-item {
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 5px;
}

.category-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.product-details {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.product-detail-item {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-detail-img {
    padding: 0;
}

.product-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-content {
    padding: 30px;
}

.product-detail-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.product-detail-content p {
    color: #666;
    margin-bottom: 20px;
}

.product-price {
    font-size: 24px;
    color: #1a5276;
    font-weight: bold;
    margin-bottom: 20px;
}

/* 成功案例页面样式 */
.cases-header {
    background-image: url('https://p26-doubao-search-sign.byteimg.com/labis/96b5b2fa1a9d292e9fee5077edc0afe6~tplv-be4g95zd3a-image.jpeg?lk3s=feb11e32&x-expires=1792912042&x-signature=tZJoVNVn0ukW7J2iKu8bPWhC45Q%3D');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.cases-header h1 {
    color: #fff;
    font-size: 48px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cases-section {
    padding: 60px 0;
}

.case-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.case-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.case-img {
    padding: 0;
}

.case-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-content {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
}

.case-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.case-content p {
    color: #666;
    margin-bottom: 15px;
}

/* 新闻资讯页面样式 */
.news-header {
    background-image: url('https://p26-doubao-search-sign.byteimg.com/labis/4a2b5bce3f5d06e473ae4b3c355ee619~tplv-be4g95zd3a-image.jpeg?lk3s=feb11e32&x-expires=1792912042&x-signature=4BGbmyvCM4SCqxltva4qX2zyNWg%3D');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.news-header h1 {
    color: #fff;
    font-size: 48px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.news-list {
    padding: 60px 0;
}

.news-list-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.news-list-img {
    padding: 0;
}

.news-list-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.news-list-content {
    padding-left: 30px;
}

.news-list-content .news-date {
    display: inline-block;
    background-color: #1a5276;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-list-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.news-list-content p {
    color: #666;
    margin-bottom: 15px;
}

.pagination {
    margin-top: 30px;
    text-align: center;
}

.pagination li a {
    color: #333;
    border: 1px solid #ddd;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.pagination li a:hover,
.pagination li.active a {
    color: #fff;
    background-color: #1a5276;
    border-color: #1a5276;
}

/* 招聘中心页面样式 */
.recruit-header {
    background-image: url('https://p3-doubao-search-sign.byteimg.com/labis/93c4ee989168565e9dcc090daa4e5ed9~tplv-be4g95zd3a-image.jpeg?lk3s=feb11e32&x-expires=1792912042&x-signature=LOaunJMX8BDgKvi4MuVnQDvNZMU%3D');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.recruit-header h1 {
    color: #fff;
    font-size: 48px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.recruit-section {
    padding: 60px 0;
}

.job-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.job-header h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.job-salary {
    font-size: 18px;
    color: #1a5276;
    font-weight: bold;
}

.job-info {
    margin-bottom: 15px;
}

.job-info span {
    display: inline-block;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #666;
}

.job-desc {
    color: #666;
    margin-bottom: 20px;
}

.job-apply {
    text-align: right;
}

.job-apply a {
    display: inline-block;
    background-color: #1a5276;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.job-apply a:hover {
    background-color: #3498db;
}

/* 联系我们页面样式 */
.contact-header {
    background-image: url('https://p3-doubao-search-sign.byteimg.com/labis/ee11b15094ebd894f7be5898c65f1b3b~tplv-be4g95zd3a-image.jpeg?lk3s=feb11e32&x-expires=1792912042&x-signature=C%2FwZ%2BHzfbOogmR7UTFOSrgiddV4%3D');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.contact-header h1 {
    color: #fff;
    font-size: 48px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-info-section {
    padding: 60px 0;
}

.contact-info-item {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 40px;
    color: #1a5276;
    margin-bottom: 20px;
}

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.contact-info-item p {
    color: #666;
}

.map-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.map-container {
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
}

.form-section {
    padding: 60px 0;
}

/* 时间线样式 */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #1a5276;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: white;
    border: 4px solid #1a5276;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even)::after {
    left: -13px;
}

.timeline-date {
    padding: 10px;
    background-color: #1a5276;
    color: white;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    top: 15px;
    width: 100px;
    right: -50px;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -50px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

@media screen and (max-width: 700px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
    }
    
    .timeline-item::after {
        left: 18px;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 18px;
    }
    
    .timeline-date {
        left: 10px !important;
        right: auto !important;
        top: 15px;
    }
}

/* 服务流程样式 */
.process-icon {
    width: 60px;
    height: 60px;
    background-color: #1a5276;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-icon span {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

/* 客户评价样式 */
.quote-icon {
    font-size: 40px;
    color: #1a5276;
    margin-bottom: 20px;
}

.client-info {
    margin-top: 20px;
}

.client-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.client-info p {
    color: #666;
    font-size: 14px;
}

/* FAQ样式 */
.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 18px;
    color: #1a5276;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

/* 验证码样式 */
.verify-code {
    background-color: #1a5276;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 5px;
    border-radius: 4px;
}