﻿body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* 右侧悬浮工具样式 */
.right-tools {
    position: fixed;
    right: 30px;
    bottom: 150px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .tool-btn:hover {
        background-color: #0b5ed7;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

#backToTop {
    display: none;
}

/* 二维码按钮样式 */
.qrcode-container {
    position: relative;
}

.qrcode-popup {
    position: absolute;
    right: 50px;
    bottom: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 15px;
    display: none;
    width: 180px;
    z-index: 1000;
}

    .qrcode-container:hover .qrcode-popup,
    .qrcode-popup:hover {
        display: block;
    }

.qrcode-image {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.wechat-info {
    text-align: center;
}

    .wechat-info p {
        margin: 0;
        font-size: 14px;
        color: #333;
    }

.copyable {
    color: #0d6efd;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s;
}

    .copyable:hover {
        color: #0b5ed7;
        text-decoration: underline;
    }

.copy-hint {
    font-size: 12px !important;
    color: #999 !important;
    margin-top: 5px !important;
}

/* 气泡尖角 */
.qrcode-popup::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* 响应式设计 - 在手机端隐藏右侧工具 */
@media (max-width: 768px) {
    .right-tools {
        display: none;
    }
}

/* 移动端底部菜单样式 */
.mobile-footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    /*min-height: 100px;*/
    background-color: white;
    display: none; /* 默认隐藏 */
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    /*padding: 10px 0;*/
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 998;
}

/* 响应式设计 - 仅在移动端显示底部菜单 */
@media (max-width: 768px) {
    .mobile-footer-menu {
        display: flex;
    }
}

.menu-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 8px;
    min-width: 70px;
}

    .menu-item:hover {
        color: #0d6efd;
    }

.menu-icon {
    font-size: 22px;
    margin-bottom: 5px;
    line-height: 1;
}

.menu-item span {
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
}

/* 为底部内容添加足够的padding，避免被固定菜单遮挡 */
.copyright {
    padding-bottom: 100px;
}

/* 常见问题模块样式 */
#faq {
    background-color: #f8f9fa;
}

.faq-item {
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

.faq-question {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

    .faq-question:hover {
        background-color: #f8f9fa;
        color: #007bff;
    }

    .faq-question.active {
        background-color: #f8f9fa;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

.faq-answer {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 1rem 1.5rem;
    display: none;
    color: #6c757d;
    line-height: 1.6;
}

    .faq-answer.show {
        display: block;
    }

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(45deg);
}

/* 响应式样式 */
@media (max-width: 768px) {
    #faq .row > div {
        margin-bottom: 1rem;
    }

    .faq-question {
        font-size: 0.9rem;
    }
}

/* 针对小屏幕的额外调整 */
@media (max-width: 350px) {
    .mobile-footer-menu {
        flex-wrap: wrap;
        min-height: 130px;
        height: auto;
    }

    .menu-item {
        flex-basis: 50%;
        flex: none;
        min-width: 70px;
        padding: 8px 2px;
    }

        .menu-item span {
            font-size: 11px;
            line-height: 1.3;
        }

    .copyright {
        padding-bottom: 120px;
    }
}

/* 联系客服弹窗样式 */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.contact-modal-content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-modal-header {
    position: relative;
    margin-bottom: 20px;
}

.close-modal {
    position: absolute;
    top: -5px;
    right: -5px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.contact-modal-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.contact-modal-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.qrcode-container {
    margin: 5px 0;
}

.contact-qrcode {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
}

.wechat-id {
    font-size: 16px;
    color: #333;
    margin: 15px 0;
    font-weight: 500;
}

.open-wechat-btn {
    background-color: #07c160;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

    .open-wechat-btn:hover {
        background-color: #06b555;
    }

.nav-link {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

    .nav-link:hover {
        color: #0d6efd;
    }

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        border-color: #0a58ca;
        transform: translateY(-2px);
    }

.section-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 2.5rem;
}

.section {
    padding: 80px 0;
    position: relative;
}

    .section:nth-child(odd) {
        background-color: #f8f9fa;
    }

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #0d6efd;
}

.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    overflow: hidden;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.service-item {
    padding: 30px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s;
}

    .service-item:hover {
        background-color: #fff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.article-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .article-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.article-image {
    height: 180px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.article-item:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.25rem;
    transition: color 0.3s;
}

    .article-title:hover {
        color: #0d6efd;
        text-decoration: none;
    }

.article-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
/* 申请流程样式 */
.process-wrapper {
    position: relative;
}

.process-line {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #0d6efd;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
}

.process-icon {
    text-align: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 4px solid #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.process-step:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background-color: #0d6efd;
    color: white;
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #0d6efd;
    transition: color 0.3s ease;
}

.process-step:hover .step-number {
    color: white;
}

.process-content h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.process-content p {
    font-size: 14px;
}

.footer {
    background-color: #343a40;
    color: #fff;
    padding: 50px 0;
    width: 100%;
}

    .footer a {
        color: #ffffff;
        transition: color 0.3s;
        text-decoration: none;
    }

        .footer a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

.copyright {
    background-color: #212529;
    padding: 20px 0;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
}

/* 服务项目详情链接样式 */
.service-detail-link {
    display: block;
    text-align: right;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s;
}

    .service-detail-link:hover {
        color: #0d6efd !important;
        text-decoration: underline !important;
    }

/* 文章全文链接样式 */
.article-read-more {
    display: block;
    text-align: right;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s;
}

    .article-read-more:hover {
        color: #0d6efd !important;
        text-decoration: underline !important;
    }

/* 价格套餐样式 */
.pricing-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;


    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgb(255, 148, 86);
    }

.pricing-header {
    padding: 30px;
    text-align: center;
}

.pricing-basic .pricing-header {
    background-color: #f8f9fa;
}

.pricing-standard .pricing-header {
    background-color: #e9ecef;
}

.pricing-premium .pricing-header {
    background-color: #0d6efd;
    color: white;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-body {
    padding: 30px;
    flex: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

    .pricing-features li {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        align-items: flex-start;
    }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            color: #0d6efd;
            margin-right: 12px;
            margin-top: 4px;
        }

/*.pricing-premium .pricing-features i {
    color: #fff;
}*/

.card-service {
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card-service:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .navbar-brand {
        font-size: 18px;
    }
}







/* 服务项目卡片样式 */
.card-service {
    margin-bottom: 3rem !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card-service:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
/* 增加行间距 */
.row {
    row-gap: 1rem !important;
}
/* 确保响应式布局下的间距 */
@media (max-width: 768px) {
    .card-service {
        margin-bottom: 2.5rem !important;
    }
}
/* 文章项目样式 */
.article-item {
    margin-bottom: 2.5rem !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .article-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }


  