/* ===========================footer.css 页脚组件样式 =====================*/
/* 页脚样式 */
.main-tool-footer {
    background-color: #fff;
    padding: 0 6.25rem;
    padding-top: 4.38rem;
    color: #000;
    position: relative;
    z-index: 999;
}
.main-tool-footer * {
    font-family: 'fzlt', 'Arial', sans-serif;
}

.main-tool-footer .row * {
    padding: 0;
}
.main-tool-footer .mr-b{
    margin-bottom: 0.7rem!important;
}

.main-tool-footer .row-container {
    margin: 0;
}

.main-tool-footer .footer-sections {
    display: flex;
    flex-wrap: wrap;
    /* margin-bottom: 1.875rem; */
}

.main-tool-footer .footer-section {
    flex: 1;
    min-width: 12.5rem;
    margin-bottom: 1.25rem;
    padding-right: 0.9375rem;
}

.main-tool-footer .footer-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.9375rem;
    position: relative;
}

.main-tool-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-tool-footer .footer-links li {
    margin-bottom: 0.5rem;
}
.main-tool-footer .footer-links li>a {
    margin-bottom: 0;
}
.main-tool-footer .footer-section-line .footer-links li{
    margin-bottom: 0.9375rem;
}

.main-tool-footer .footer-links a {
    color: #595757;
    text-decoration: none;
    font-size: 0.9rem;
}

.main-tool-footer .footer-links a:hover {
    color: #000;
}

/* 社交媒体部分 */
.main-tool-footer .social-media {
    margin-bottom: 1.875rem;
}

.main-tool-footer .social-icons {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    align-items: center;
}

.main-tool-footer .social-icon {
    text-align: center;
    margin-bottom: 0.9375rem;
    text-decoration: none;
    color: #000;
    position: relative; /* 添加相对定位以支持二维码弹出 */
}

.main-tool-footer .icon-circle {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.main-tool-footer .social-icon img {
    width: 100%;
    height: 100%;
}

.main-tool-footer .social-icon span {
    display: block;
    font-size: 0.875rem;
}

/* 二维码弹出框样式 */
.main-tool-footer .qr-code-popup {
    position: absolute;
    width: 25rem;
    height: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.main-tool-footer .qr-code-popup:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}
.main-tool-footer .social-icons .social-icon:last-child .qr-code-popup {
    left: -50%;
}
.main-tool-footer .social-icons .social-icon:last-child .qr-code-popup:after {
    left: 70%;
}

/* 联系信息部分 */
.main-tool-footer .contact-info {
    margin-bottom: 1.875rem;
}

.main-tool-footer .phone-numbers {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.9375rem;
}

.main-tool-footer .phone-item {
    margin-right: 2.5rem;
    margin-bottom: 0.625rem;
}

.main-tool-footer .phone-number {
    font-size: 1.125rem;
    font-weight: bold;
    margin: 0.3125rem 0;
}

.main-tool-footer .service-hours {
    margin-bottom: 1.25rem;
}

.main-tool-footer .service-hours p {
    margin: 0.3125rem 0;
}

/* 版权信息 */
.main-tool-footer .copyright {
    padding-top: 0.9375rem;
    color: #999;
}

.main-tool-footer .copyright p {
    margin: 0.3125rem 0;
}
.main-tool-footer .copyright p a:hover {
    color: #000;
}

.main-tool-footer .vv-mob {
    display: none;
}

.main-tool-footer p {
    font-size: 0.7rem;
}

/* 响应式调整 */
/* PC端hover显示二维码 */
@media screen and (min-width: 769px) {
    .main-tool-footer .social-icon:hover .qr-code-popup {
        opacity: 1;
        visibility: visible;
    }
    .main-tool-footer .col-9{
        width: 70%;
    }
    .main-tool-footer .col-3{
       flex: 1;
    }
}
@media screen and (max-width: 1680px) {
    .main-tool-footer{
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
@media screen and (max-width: 992px) {
    /* .main-tool-footer {
        padding: 0 1.5rem;
    } */

    .main-tool-footer .footer-section {
        flex: 0 0 50%;
    }

    .main-tool-footer .phone-numbers {
        flex-direction: column;
    }

    .main-tool-footer .phone-item {
        margin-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .main-tool-footer .vv-mob {
        display: block;
    }
    .qr-code-popup{
        display: none;
    }

    .main-tool-footer .vv-pc {
        display: none;
    }

    .main-tool-footer {
        margin-top: 1.25rem;
        padding: 0 1.25rem;
    }

    .main-tool-footer .col-9,
    .main-tool-footer .col-3 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .main-tool-footer .footer-sections {
        margin-bottom: 0;
    }

    .main-tool-footer .footer-section {
        flex: 0 0 100%;
    }

    .main-tool-footer .footer-title {
        padding: 1.25rem 0;
        border-bottom: 1px solid #eee;
        font-weight: 400;
        font-size: 1rem;
        margin-bottom: 0;
    }

    .main-tool-footer .footer-title::after {
        content: "";
        display: inline-block;
        border: 2px #666 solid;
        width: 0.6rem;
        height: 0.6rem;
        transform: translate(0, -50%) rotate(-45deg);
        border-width: 0 0 2px 2px;
        position: absolute;
        right: 0;
        top: 50%;
        transition: transform 0.3s ease;
    }

    .main-tool-footer .footer-section:last-child .footer-title {
        border-bottom: none;
    }

    .main-tool-footer .footer-section {
        margin-bottom: 0;
    }

    .main-tool-footer .footer-section.active .footer-title::after {
        transform: translate(0, -50%) rotate(135deg);
    }

    .main-tool-footer .footer-links {
        display: none;
        margin-top: 0.5rem;
    }
    .main-tool-footer .footer-links li{
        margin-bottom: 0;
        padding: 0.5rem 0;
    }
    .main-tool-footer .footer-links a{
        font-size: 1rem;
    }

    .main-tool-footer .footer-section.active .footer-links {
        display: block;
    }

    .main-tool-footer .social-media {
        margin-bottom: 1.5rem;
    }

    .main-tool-footer .social-media .footer-title {
        border-bottom: none;
        padding-bottom: 2rem;
    }

    .main-tool-footer .social-media .footer-title::after {
        display: none;
    }

    .main-tool-footer .social-icons {
        justify-content: space-between;
    }

    .main-tool-footer .social-icon {
        margin-right: 0;
        flex: 0 0 25%;
        margin-bottom: 1rem;
    }

    .main-tool-footer .icon-circle {
        width: 3rem;
        height: 3rem;
    }

    .main-tool-footer .social-icon span {
        white-space: nowrap;
        font-size: 0.875rem;
    }

    .main-tool-footer .contact-info {
        margin-bottom: 1.5rem;
    }

    .main-tool-footer .contact-info .footer-title {
        border-bottom: none;
        display: none;
    }

    .main-tool-footer .contact-info .phone-numbers {
        margin-bottom: 0;
    }

    .main-tool-footer .contact-info .service-hours {
        text-align: center;
        font-size: 0.875rem;
    }

    .main-tool-footer .contact-info .phone-item p {
        text-align: center;
        margin-bottom: 0;
        font-size: 0.875rem;
    }

    .main-tool-footer .contact-info .phone-item .phone-number {
        font-size: 1.5rem;
        margin: 0;
    }

    .main-tool-footer .service-hours p {
        margin: 0;
        font-size: 0.875rem;
    }

    .main-tool-footer .vv-mob.copyright {
        padding-top: 0;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .main-tool-footer .vv-mob.copyright p {
        text-align: center;
        font-size: 0.75rem;
        color: #000;
        margin: 0;
    } 
}


/* QR Code Modal Styles */
.qr-code-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.qr-modal-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    width: 80%;
    max-width: 300px;
    border-radius: 10px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.qr-close-btn {
    position: absolute;
    top: 0px;
    right: 5px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.qr-close-btn:hover,
.qr-close-btn:focus {
    color: #000;
}

.qr-modal-image-container {
    padding: 10px;
}

.qr-modal-image-container img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

.footer-showImg {
    cursor: pointer;
} 

#service_layer{
    display: none;
}